1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include "dlgevtatt.hxx"
#include "dlgprov.hxx"
#include <sfx2/strings.hrc>
#include <sfx2/app.hxx>
#include <sfx2/sfxresid.hxx>
#include <vcl/svapp.hxx>
#include <vcl/weld.hxx>
#include <tools/diagnose_ex.h>
#include <com/sun/star/awt/XControl.hpp>
#include <com/sun/star/awt/XControlContainer.hpp>
#include <com/sun/star/awt/XDialogEventHandler.hpp>
#include <com/sun/star/awt/XContainerWindowEventHandler.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/script/ScriptEventDescriptor.hpp>
#include <com/sun/star/script/XScriptEventsSupplier.hpp>
#include <com/sun/star/script/provider/XScriptProvider.hpp>
#include <com/sun/star/script/provider/theMasterScriptProviderFactory.hpp>
#include <com/sun/star/script/provider/XScriptProviderSupplier.hpp>
#include <com/sun/star/script/vba/XVBACompatibility.hpp>
#include <com/sun/star/lang/NoSuchMethodException.hpp>
#include <com/sun/star/lang/ServiceNotRegisteredException.hpp>
#include <com/sun/star/reflection/XIdlMethod.hpp>
#include <com/sun/star/beans/MethodConcept.hpp>
#include <com/sun/star/beans/XMaterialHolder.hpp>
#include <ooo/vba/XVBAToOOEventDescGen.hpp>
using namespace ::com::sun::star;
using namespace ::com::sun::star::awt;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::script;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::reflection;
namespace dlgprov
{
namespace {
class DialogSFScriptListenerImpl : public DialogScriptListenerImpl
{
protected:
Reference< frame::XModel > m_xModel;
virtual void firing_impl( const script::ScriptEvent& aScriptEvent, uno::Any* pRet ) override;
public:
DialogSFScriptListenerImpl( const Reference< XComponentContext >& rxContext, const Reference< frame::XModel >& rxModel ) : DialogScriptListenerImpl( rxContext ), m_xModel( rxModel ) {}
};
class DialogLegacyScriptListenerImpl : public DialogSFScriptListenerImpl
{
protected:
virtual void firing_impl( const script::ScriptEvent& aScriptEvent, uno::Any* pRet ) override;
public:
DialogLegacyScriptListenerImpl( const Reference< XComponentContext >& rxContext, const Reference< frame::XModel >& rxModel ) : DialogSFScriptListenerImpl( rxContext, rxModel ){}
};
class DialogUnoScriptListenerImpl : public DialogSFScriptListenerImpl
{
Reference< awt::XControl > m_xControl;
Reference< XInterface > m_xHandler;
Reference< beans::XIntrospectionAccess > m_xIntrospectionAccess;
bool m_bDialogProviderMode;
virtual void firing_impl( const script::ScriptEvent& aScriptEvent, uno::Any* pRet ) override;
public:
DialogUnoScriptListenerImpl( const Reference< XComponentContext >& rxContext,
const Reference< frame::XModel >& rxModel,
const Reference< awt::XControl >& rxControl,
const Reference< XInterface >& rxHandler,
const Reference< beans::XIntrospectionAccess >& rxIntrospectionAccess,
bool bDialogProviderMode ); // false: ContainerWindowProvider mode
};
class DialogVBAScriptListenerImpl : public DialogScriptListenerImpl
{
protected:
OUString msDialogCodeName;
OUString msDialogLibName;
Reference< script::XScriptListener > mxListener;
virtual void firing_impl( const script::ScriptEvent& aScriptEvent, uno::Any* pRet ) override;
public:
DialogVBAScriptListenerImpl( const Reference< XComponentContext >& rxContext, const Reference< awt::XControl >& rxControl, const Reference< frame::XModel >& xModel, const OUString& sDialogLibName );
};
}
DialogVBAScriptListenerImpl::DialogVBAScriptListenerImpl( const Reference< XComponentContext >& rxContext, const Reference< awt::XControl >& rxControl, const Reference< frame::XModel >& xModel, const OUString& sDialogLibName ) : DialogScriptListenerImpl( rxContext ), msDialogLibName( sDialogLibName )
{
Reference< XMultiComponentFactory > xSMgr( m_xContext->getServiceManager() );
Sequence< Any > args(1);
if ( xSMgr.is() )
{
args[0] <<= xModel;
mxListener.set( xSMgr->createInstanceWithArgumentsAndContext( "ooo.vba.EventListener", args, m_xContext ), UNO_QUERY );
}
if ( !rxControl.is() )
return;
try
{
Reference< XPropertySet > xProps( rxControl->getModel(), UNO_QUERY_THROW );
xProps->getPropertyValue("Name") >>= msDialogCodeName;
xProps.set( mxListener, UNO_QUERY_THROW );
xProps->setPropertyValue("Model", args[ 0 ] );
}
catch( const Exception& )
{
DBG_UNHANDLED_EXCEPTION("scripting");
}
}
void DialogVBAScriptListenerImpl::firing_impl( const script::ScriptEvent& aScriptEvent, uno::Any* )
{
if ( !(aScriptEvent.ScriptType == "VBAInterop" && mxListener.is()) )
return;
ScriptEvent aScriptEventCopy( aScriptEvent );
aScriptEventCopy.ScriptCode = msDialogLibName.concat( "." ).concat( msDialogCodeName );
try
{
mxListener->firing( aScriptEventCopy );
}
catch( const Exception& )
{
DBG_UNHANDLED_EXCEPTION("scripting");
}
}
// DialogEventsAttacherImpl
DialogEventsAttacherImpl::DialogEventsAttacherImpl( const Reference< XComponentContext >& rxContext, const Reference< frame::XModel >& rxModel, const Reference< awt::XControl >& rxControl, const Reference< XInterface >& rxHandler, const Reference< beans::XIntrospectionAccess >& rxIntrospect, bool bProviderMode, const Reference< script::XScriptListener >& rxRTLListener, const OUString& sDialogLibName )
:mbUseFakeVBAEvents( false ), m_xContext( rxContext )
{
// key listeners by protocol when ScriptType = 'Script'
// otherwise key is the ScriptType e.g. StarBasic
if ( rxRTLListener.is() ) // set up handler for RTL_BASIC
listenersForTypes[ OUString("StarBasic") ] = rxRTLListener;
else
listenersForTypes[ OUString("StarBasic") ] = new DialogLegacyScriptListenerImpl( rxContext, rxModel );
// handler for Script & OUString("vnd.sun.star.UNO:")
listenersForTypes[ OUString("vnd.sun.star.UNO") ] = new DialogUnoScriptListenerImpl( rxContext, rxModel, rxControl, rxHandler, rxIntrospect, bProviderMode );
listenersForTypes[ OUString("vnd.sun.star.script") ] = new DialogSFScriptListenerImpl( rxContext, rxModel );
// determine the VBA compatibility mode from the Basic library container
try
{
uno::Reference< beans::XPropertySet > xModelProps( rxModel, uno::UNO_QUERY_THROW );
uno::Reference< script::vba::XVBACompatibility > xVBACompat(
xModelProps->getPropertyValue("BasicLibraries"), uno::UNO_QUERY_THROW );
mbUseFakeVBAEvents = xVBACompat->getVBACompatibilityMode();
}
catch( uno::Exception& )
{
}
if ( mbUseFakeVBAEvents )
listenersForTypes[ OUString("VBAInterop") ] = new DialogVBAScriptListenerImpl( rxContext, rxControl, rxModel, sDialogLibName );
}
DialogEventsAttacherImpl::~DialogEventsAttacherImpl()
{
}
Reference< script::XScriptListener > const &
DialogEventsAttacherImpl::getScriptListenerForKey( const OUString& sKey )
{
ListenerHash::iterator it = listenersForTypes.find( sKey );
if ( it == listenersForTypes.end() )
throw RuntimeException(); // more text info here please
return it->second;
}
Reference< XScriptEventsSupplier > DialogEventsAttacherImpl::getFakeVbaEventsSupplier( const Reference< XControl >& xControl, OUString const & sControlName )
{
Reference< XScriptEventsSupplier > xEventsSupplier;
Reference< XMultiComponentFactory > xSMgr( m_xContext->getServiceManager() );
if ( xSMgr.is() )
{
Reference< ooo::vba::XVBAToOOEventDescGen > xVBAToOOEvtDesc( xSMgr->createInstanceWithContext("ooo.vba.VBAToOOEventDesc", m_xContext ), UNO_QUERY );
if ( xVBAToOOEvtDesc.is() )
xEventsSupplier = xVBAToOOEvtDesc->getEventSupplier( xControl, sControlName );
}
return xEventsSupplier;
}
void DialogEventsAttacherImpl::attachEventsToControl( const Reference< XControl>& xControl, const Reference< XScriptEventsSupplier >& xEventsSupplier, const Any& Helper )
{
if ( !xEventsSupplier.is() )
return;
Reference< container::XNameContainer > xEventCont = xEventsSupplier->getEvents();
Reference< XControlModel > xControlModel = xControl->getModel();
if ( !xEventCont.is() )
return;
const Sequence< OUString > aNames = xEventCont->getElementNames();
for ( const OUString& rName : aNames )
{
ScriptEventDescriptor aDesc;
Any aElement = xEventCont->getByName( rName );
aElement >>= aDesc;
OUString sKey = aDesc.ScriptType;
if ( aDesc.ScriptType == "Script" || aDesc.ScriptType == "UNO" )
{
sal_Int32 nIndex = aDesc.ScriptCode.indexOf( ':' );
sKey = aDesc.ScriptCode.copy( 0, nIndex );
}
Reference< XAllListener > xAllListener =
new DialogAllListenerImpl( getScriptListenerForKey( sKey ), aDesc.ScriptType, aDesc.ScriptCode );
// try first to attach event to the ControlModel
bool bSuccess = false;
try
{
Reference< XEventListener > xListener_ = m_xEventAttacher->attachSingleEventListener(
xControlModel, xAllListener, Helper, aDesc.ListenerType,
aDesc.AddListenerParam, aDesc.EventMethod );
if ( xListener_.is() )
bSuccess = true;
}
catch ( const Exception& )
{
DBG_UNHANDLED_EXCEPTION("scripting");
}
try
{
// if we had no success, try to attach to the control
if ( !bSuccess )
{
m_xEventAttacher->attachSingleEventListener(
xControl, xAllListener, Helper, aDesc.ListenerType,
aDesc.AddListenerParam, aDesc.EventMethod );
}
}
catch ( const Exception& )
{
DBG_UNHANDLED_EXCEPTION("scripting");
}
}
}
void DialogEventsAttacherImpl::nestedAttachEvents( const Sequence< Reference< XInterface > >& Objects, const Any& Helper, OUString& sDialogCodeName )
{
for ( const Reference< XInterface >& rObject : Objects )
{
// We know that we have to do with instances of XControl.
// Otherwise this is not the right implementation for
// XScriptEventsAttacher and we have to give up.
Reference< XControl > xControl( rObject, UNO_QUERY );
Reference< XControlContainer > xControlContainer( xControl, UNO_QUERY );
Reference< XDialog > xDialog( xControl, UNO_QUERY );
if ( !xControl.is() )
throw IllegalArgumentException();
// get XEventsSupplier from control model
Reference< XControlModel > xControlModel = xControl->getModel();
Reference< XScriptEventsSupplier > xEventsSupplier( xControlModel, UNO_QUERY );
attachEventsToControl( xControl, xEventsSupplier, Helper );
if ( mbUseFakeVBAEvents )
{
xEventsSupplier.set( getFakeVbaEventsSupplier( xControl, sDialogCodeName ) );
Any newHelper(xControl );
attachEventsToControl( xControl, xEventsSupplier, newHelper );
}
if ( xControlContainer.is() && !xDialog.is() )
{
Sequence< Reference< XControl > > aControls = xControlContainer->getControls();
sal_Int32 nControlCount = aControls.getLength();
Sequence< Reference< XInterface > > aObjects( nControlCount );
Reference< XInterface >* pObjects2 = aObjects.getArray();
const Reference< XControl >* pControls = aControls.getConstArray();
for ( sal_Int32 i2 = 0; i2 < nControlCount; ++i2 )
{
pObjects2[i2].set( pControls[i2], UNO_QUERY );
}
nestedAttachEvents( aObjects, Helper, sDialogCodeName );
}
}
}
// XScriptEventsAttacher
void SAL_CALL DialogEventsAttacherImpl::attachEvents( const Sequence< Reference< XInterface > >& Objects,
const css::uno::Reference<css::script::XScriptListener>&,
const Any& Helper )
{
// get EventAttacher
{
::osl::MutexGuard aGuard( getMutex() );
if ( !m_xEventAttacher.is() )
{
Reference< XMultiComponentFactory > xSMgr( m_xContext->getServiceManager() );
if ( !xSMgr.is() )
throw RuntimeException();
m_xEventAttacher.set( xSMgr->createInstanceWithContext(
"com.sun.star.script.EventAttacher", m_xContext ), UNO_QUERY );
if ( !m_xEventAttacher.is() )
throw ServiceNotRegisteredException();
}
}
OUString sDialogCodeName;
sal_Int32 nObjCount = Objects.getLength();
Reference< awt::XControl > xDlgControl( Objects[ nObjCount - 1 ], uno::UNO_QUERY ); // last object is the dialog
if ( xDlgControl.is() )
{
Reference< XPropertySet > xProps( xDlgControl->getModel(), UNO_QUERY );
try
{
xProps->getPropertyValue("Name") >>= sDialogCodeName;
}
catch( Exception& ){}
}
// go over all objects
nestedAttachEvents( Objects, Helper, sDialogCodeName );
}
// DialogAllListenerImpl
DialogAllListenerImpl::DialogAllListenerImpl( const Reference< XScriptListener >& rxListener,
const OUString& rScriptType, const OUString& rScriptCode )
:m_xScriptListener( rxListener )
,m_sScriptType( rScriptType )
,m_sScriptCode( rScriptCode )
{
}
DialogAllListenerImpl::~DialogAllListenerImpl()
{
}
void DialogAllListenerImpl::firing_impl( const AllEventObject& Event, Any* pRet )
{
ScriptEvent aScriptEvent;
aScriptEvent.Source = static_cast<OWeakObject *>(this); // get correct XInterface
aScriptEvent.ListenerType = Event.ListenerType;
aScriptEvent.MethodName = Event.MethodName;
aScriptEvent.Arguments = Event.Arguments;
aScriptEvent.Helper = Event.Helper;
aScriptEvent.ScriptType = m_sScriptType;
aScriptEvent.ScriptCode = m_sScriptCode;
if ( m_xScriptListener.is() )
{
if ( pRet )
*pRet = m_xScriptListener->approveFiring( aScriptEvent );
else
m_xScriptListener->firing( aScriptEvent );
}
}
// XEventListener
void DialogAllListenerImpl::disposing(const EventObject& )
{
}
// XAllListener
void DialogAllListenerImpl::firing( const AllEventObject& Event )
{
//::osl::MutexGuard aGuard( getMutex() );
firing_impl( Event, nullptr );
}
Any DialogAllListenerImpl::approveFiring( const AllEventObject& Event )
{
//::osl::MutexGuard aGuard( getMutex() );
Any aReturn;
firing_impl( Event, &aReturn );
return aReturn;
}
// DialogScriptListenerImpl
DialogUnoScriptListenerImpl::DialogUnoScriptListenerImpl( const Reference< XComponentContext >& rxContext,
const Reference< css::frame::XModel >& rxModel,
const Reference< css::awt::XControl >& rxControl,
const Reference< css::uno::XInterface >& rxHandler,
const Reference< css::beans::XIntrospectionAccess >& rxIntrospectionAccess,
bool bDialogProviderMode )
: DialogSFScriptListenerImpl( rxContext, rxModel )
,m_xControl( rxControl )
,m_xHandler( rxHandler )
,m_xIntrospectionAccess( rxIntrospectionAccess )
,m_bDialogProviderMode( bDialogProviderMode )
{
}
DialogScriptListenerImpl::~DialogScriptListenerImpl()
{
}
void DialogSFScriptListenerImpl::firing_impl( const ScriptEvent& aScriptEvent, Any* pRet )
{
try
{
Reference< provider::XScriptProvider > xScriptProvider;
if ( m_xModel.is() )
{
Reference< provider::XScriptProviderSupplier > xSupplier( m_xModel, UNO_QUERY );
OSL_ENSURE( xSupplier.is(), "DialogScriptListenerImpl::firing_impl: failed to get script provider supplier" );
if ( xSupplier.is() )
xScriptProvider.set( xSupplier->getScriptProvider() );
}
else
{
OSL_ASSERT( m_xContext.is() );
if ( m_xContext.is() )
{
Reference< provider::XScriptProviderFactory > xFactory =
provider::theMasterScriptProviderFactory::get( m_xContext );
Any aCtx;
aCtx <<= OUString("user");
xScriptProvider = xFactory->createScriptProvider( aCtx );
}
}
OSL_ENSURE( xScriptProvider.is(), "DialogScriptListenerImpl::firing_impl: failed to get script provider" );
if ( xScriptProvider.is() )
{
Reference< provider::XScript > xScript = xScriptProvider->getScript( aScriptEvent.ScriptCode );
OSL_ENSURE( xScript.is(), "DialogScriptListenerImpl::firing_impl: failed to get script" );
if ( xScript.is() )
{
Sequence< Any > aInParams;
Sequence< sal_Int16 > aOutParamsIndex;
Sequence< Any > aOutParams;
// get arguments for script
aInParams = aScriptEvent.Arguments;
Any aResult = xScript->invoke( aInParams, aOutParamsIndex, aOutParams );
if ( pRet )
*pRet = aResult;
}
}
}
catch ( const Exception& )
{
DBG_UNHANDLED_EXCEPTION("scripting");
}
}
void DialogLegacyScriptListenerImpl::firing_impl( const ScriptEvent& aScriptEvent, Any* pRet )
{
OUString sScriptURL;
OUString sScriptCode( aScriptEvent.ScriptCode );
if ( aScriptEvent.ScriptType != "StarBasic" )
return;
// StarBasic script: convert ScriptCode to scriptURL
sal_Int32 nIndex = sScriptCode.indexOf( ':' );
if ( nIndex >= 0 && nIndex < sScriptCode.getLength() )
{
sScriptURL = "vnd.sun.star.script:" +
sScriptCode.copy( nIndex + 1 ) +
"?language=Basic&location=" +
sScriptCode.copy( 0, nIndex );
}
ScriptEvent aSFScriptEvent( aScriptEvent );
aSFScriptEvent.ScriptCode = sScriptURL;
DialogSFScriptListenerImpl::firing_impl( aSFScriptEvent, pRet );
}
void DialogUnoScriptListenerImpl::firing_impl( const ScriptEvent& aScriptEvent, Any* pRet )
{
OUString aMethodName = aScriptEvent.ScriptCode.copy( strlen("vnd.sun.star.UNO:") );
const Any* pArguments = aScriptEvent.Arguments.getConstArray();
Any aEventObject = pArguments[0];
bool bHandled = false;
if( m_xHandler.is() )
{
if( m_bDialogProviderMode )
{
Reference< XDialogEventHandler > xDialogEventHandler( m_xHandler, UNO_QUERY );
if( xDialogEventHandler.is() )
{
Reference< XDialog > xDialog( m_xControl, UNO_QUERY );
bHandled = xDialogEventHandler->callHandlerMethod( xDialog, aEventObject, aMethodName );
}
}
else
{
Reference< XContainerWindowEventHandler > xContainerWindowEventHandler( m_xHandler, UNO_QUERY );
if( xContainerWindowEventHandler.is() )
{
Reference< XWindow > xWindow( m_xControl, UNO_QUERY );
bHandled = xContainerWindowEventHandler->callHandlerMethod( xWindow, aEventObject, aMethodName );
}
}
}
Any aRet;
if( !bHandled && m_xIntrospectionAccess.is() )
{
try
{
// call method
const Reference< XIdlMethod >& rxMethod = m_xIntrospectionAccess->
getMethod( aMethodName, MethodConcept::ALL - MethodConcept::DANGEROUS );
Reference< XMaterialHolder > xMaterialHolder =
Reference< XMaterialHolder >::query( m_xIntrospectionAccess );
Any aHandlerObject = xMaterialHolder->getMaterial();
Sequence< Reference< XIdlClass > > aParamTypeSeq = rxMethod->getParameterTypes();
sal_Int32 nParamCount = aParamTypeSeq.getLength();
if( nParamCount == 0 )
{
Sequence<Any> args;
rxMethod->invoke( aHandlerObject, args );
bHandled = true;
}
else if( nParamCount == 2 )
{
// Signature check automatically done by reflection
Sequence<Any> Args(2);
Any* pArgs = Args.getArray();
if( m_bDialogProviderMode )
{
Reference< XDialog > xDialog( m_xControl, UNO_QUERY );
pArgs[0] <<= xDialog;
}
else
{
Reference< XWindow > xWindow( m_xControl, UNO_QUERY );
pArgs[0] <<= xWindow;
}
pArgs[1] = aEventObject;
aRet = rxMethod->invoke( aHandlerObject, Args );
bHandled = true;
}
}
catch( const Exception& )
{
DBG_UNHANDLED_EXCEPTION("scripting");
}
}
if( bHandled )
{
if( pRet )
*pRet = aRet;
}
else
{
OUString aRes(SfxResId(STR_ERRUNOEVENTBINDUNG));
OUString aQuoteChar( "\"" );
sal_Int32 nIndex = aRes.indexOf( '%' );
OUString aOUFinal =
aRes.copy( 0, nIndex ) +
aQuoteChar + aMethodName + aQuoteChar +
aRes.copy( nIndex + 2 );
std::unique_ptr<weld::MessageDialog> xBox(Application::CreateMessageDialog(nullptr,
VclMessageType::Warning, VclButtonsType::Ok, aOUFinal));
xBox->run();
}
}
// XEventListener
void DialogScriptListenerImpl::disposing(const EventObject& )
{
}
// XScriptListener
void DialogScriptListenerImpl::firing( const ScriptEvent& aScriptEvent )
{
//::osl::MutexGuard aGuard( getMutex() );
firing_impl( aScriptEvent, nullptr );
}
Any DialogScriptListenerImpl::approveFiring( const ScriptEvent& aScriptEvent )
{
//::osl::MutexGuard aGuard( getMutex() );
Any aReturn;
firing_impl( aScriptEvent, &aReturn );
return aReturn;
}
} // namespace dlgprov
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|