Lines Matching refs:rEvent

136 …virtual void SAL_CALL windowOpened( const lang::EventObject& rEvent ) throw (uno::RuntimeException…
137 …virtual void SAL_CALL windowClosing( const lang::EventObject& rEvent ) throw (uno::RuntimeExceptio…
138 …virtual void SAL_CALL windowClosed( const lang::EventObject& rEvent ) throw (uno::RuntimeException…
139 …virtual void SAL_CALL windowMinimized( const lang::EventObject& rEvent ) throw (uno::RuntimeExcept…
140 …virtual void SAL_CALL windowNormalized( const lang::EventObject& rEvent ) throw (uno::RuntimeExcep…
141 …virtual void SAL_CALL windowActivated( const lang::EventObject& rEvent ) throw (uno::RuntimeExcept…
142 …virtual void SAL_CALL windowDeactivated( const lang::EventObject& rEvent ) throw (uno::RuntimeExce…
145 …virtual void SAL_CALL windowResized( const awt::WindowEvent& rEvent ) throw (uno::RuntimeException…
146 … virtual void SAL_CALL windowMoved( const awt::WindowEvent& rEvent ) throw (uno::RuntimeException);
147 …virtual void SAL_CALL windowShown( const lang::EventObject& rEvent ) throw (uno::RuntimeException);
148 …virtual void SAL_CALL windowHidden( const lang::EventObject& rEvent ) throw (uno::RuntimeException…
154 …virtual void SAL_CALL changesOccurred( const util::ChangesEvent& rEvent ) throw (uno::RuntimeExcep…
157 … virtual void SAL_CALL disposing( const lang::EventObject& rEvent ) throw (uno::RuntimeException);
282 void SAL_CALL ScVbaEventListener::windowActivated( const lang::EventObject& rEvent ) throw (uno::Ru… in windowActivated() argument
288 uno::Reference< awt::XWindow > xWindow( rEvent.Source, uno::UNO_QUERY ); in windowActivated()
304 void SAL_CALL ScVbaEventListener::windowDeactivated( const lang::EventObject& rEvent ) throw (uno::… in windowDeactivated() argument
310 uno::Reference< awt::XWindow > xWindow( rEvent.Source, uno::UNO_QUERY ); in windowDeactivated()
321 void SAL_CALL ScVbaEventListener::windowResized( const awt::WindowEvent& rEvent ) throw (uno::Runti… in windowResized() argument
328 uno::Reference< awt::XWindow > xWindow( rEvent.Source, uno::UNO_QUERY ); in windowResized()
358 void SAL_CALL ScVbaEventListener::changesOccurred( const util::ChangesEvent& rEvent ) throw (uno::R… in changesOccurred() argument
362 sal_Int32 nCount = rEvent.Changes.getLength(); in changesOccurred()
366 util::ElementChange aChange = rEvent.Changes[ 0 ]; in changesOccurred()
388 aChange = rEvent.Changes[ nIndex ]; in changesOccurred()
413 void SAL_CALL ScVbaEventListener::disposing( const lang::EventObject& rEvent ) throw (uno::RuntimeE… in disposing() argument
417 uno::Reference< frame::XModel > xModel( rEvent.Source, uno::UNO_QUERY ); in disposing()
426 uno::Reference< frame::XController > xController( rEvent.Source, uno::UNO_QUERY ); in disposing()
579 void SAL_CALL ScVbaEventsHelper::notifyEvent( const css::document::EventObject& rEvent ) throw (css… in notifyEvent() argument
582 if( (rEvent.EventName == GlobalEventConfig::GetEventName( STR_EVENT_OPENDOC )) || in notifyEvent()
583 …(rEvent.EventName == GlobalEventConfig::GetEventName( STR_EVENT_CREATEDOC )) ) // CREATEDOC trigg… in notifyEvent()
587 else if( rEvent.EventName == GlobalEventConfig::GetEventName( STR_EVENT_ACTIVATEDOC ) ) in notifyEvent()
591 else if( rEvent.EventName == GlobalEventConfig::GetEventName( STR_EVENT_DEACTIVATEDOC ) ) in notifyEvent()
595 else if( (rEvent.EventName == GlobalEventConfig::GetEventName( STR_EVENT_SAVEDOCDONE )) || in notifyEvent()
596 (rEvent.EventName == GlobalEventConfig::GetEventName( STR_EVENT_SAVEASDOCDONE )) || in notifyEvent()
597 (rEvent.EventName == GlobalEventConfig::GetEventName( STR_EVENT_SAVETODOCDONE )) ) in notifyEvent()
603 else if( (rEvent.EventName == GlobalEventConfig::GetEventName( STR_EVENT_SAVEDOCFAILED )) || in notifyEvent()
604 (rEvent.EventName == GlobalEventConfig::GetEventName( STR_EVENT_SAVEASDOCFAILED )) || in notifyEvent()
605 (rEvent.EventName == GlobalEventConfig::GetEventName( STR_EVENT_SAVETODOCFAILED )) ) in notifyEvent()
611 else if( rEvent.EventName == GlobalEventConfig::GetEventName( STR_EVENT_CLOSEDOC ) ) in notifyEvent()
624 else if( rEvent.EventName == GlobalEventConfig::GetEventName( STR_EVENT_VIEWCREATED ) ) in notifyEvent()
630 VbaEventsHelperBase::notifyEvent( rEvent ); in notifyEvent()