Lines Matching refs:aEvent

313 void SAL_CALL SfxEvents_Impl::notifyEvent( const DOCEVENTOBJECT& aEvent ) throw( RUNTIMEEXCEPTION )  in notifyEvent()  argument
319 OUSTRING aName = aEvent.EventName; in notifyEvent()
337 …Execute( aEventData, css::document::DocumentEvent(aEvent.Source, aEvent.EventName, NULL, css::uno:… in notifyEvent()
656 void SAL_CALL SfxGlobalEvents_Impl::notifyEvent(const css::document::EventObject& aEvent) in notifyEvent() argument
659 css::document::DocumentEvent aDocEvent(aEvent.Source, aEvent.EventName, NULL, css::uno::Any()); in notifyEvent()
660 implts_notifyJobExecution(aEvent); in notifyEvent()
675 void SAL_CALL SfxGlobalEvents_Impl::disposing(const css::lang::EventObject& aEvent) in disposing() argument
678 css::uno::Reference< css::frame::XModel > xDoc(aEvent.Source, UNO_QUERY); in disposing()
818 void SfxGlobalEvents_Impl::implts_notifyJobExecution(const css::document::EventObject& aEvent) in implts_notifyJobExecution() argument
828 xJobExecutor->notifyEvent(aEvent); in implts_notifyJobExecution()
837 …xGlobalEvents_Impl::implts_checkAndExecuteEventBindings(const css::document::DocumentEvent& aEvent) in implts_checkAndExecuteEventBindings() argument
848 if ( xEvents.is() && xEvents->hasByName( aEvent.EventName ) ) in implts_checkAndExecuteEventBindings()
849 aAny = xEvents->getByName(aEvent.EventName); in implts_checkAndExecuteEventBindings()
850 Execute(aAny, aEvent, 0); in implts_checkAndExecuteEventBindings()
863 void SfxGlobalEvents_Impl::implts_notifyListener(const css::document::DocumentEvent& aEvent) in implts_notifyListener() argument
866 css::document::EventObject aLegacyEvent(aEvent.Source, aEvent.EventName); in implts_notifyListener()
869 …cumentListeners.notifyEach( &css::document::XDocumentEventListener::documentEventOccured, aEvent ); in implts_notifyListener()