Lines Matching refs:rNEvt
81 virtual long PreNotify( NotifyEvent& rNEvt );
107 long SfxFrameWindow_Impl::Notify( NotifyEvent& rNEvt ) in Notify() argument
114 return Window::Notify( rNEvt ); in Notify()
116 if ( rNEvt.GetType() == EVENT_GETFOCUS ) in Notify()
125 Window* pWindow = rNEvt.GetWindow(); in Notify()
141 else if( rNEvt.GetType() == EVENT_KEYINPUT ) in Notify()
143 if ( pView->GetViewShell()->KeyInput( *rNEvt.GetKeyEvent() ) ) in Notify()
146 else if ( rNEvt.GetType() == EVENT_EXECUTEDIALOG /*|| rNEvt.GetType() == EVENT_INPUTDISABLE*/ ) in Notify()
151 else if ( rNEvt.GetType() == EVENT_ENDEXECUTEDIALOG /*|| rNEvt.GetType() == EVENT_INPUTENABLE*/ ) in Notify()
158 return Window::Notify( rNEvt ); in Notify()
161 long SfxFrameWindow_Impl::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
163 sal_uInt16 nType = rNEvt.GetType(); in PreNotify()
168 if ( pShell && pShell->HasKeyListeners_Impl() && pShell->HandleNotifyEvent_Impl( rNEvt ) ) in PreNotify()
173 Window* pWindow = rNEvt.GetWindow(); in PreNotify()
178 if ( pShell->HasMouseClickListeners_Impl() && pShell->HandleNotifyEvent_Impl( rNEvt ) ) in PreNotify()
184 Window* pWindow = rNEvt.GetWindow(); in PreNotify()
185 const MouseEvent* pMEvent = rNEvt.GetMouseEvent(); in PreNotify()
192 return Window::PreNotify( rNEvt ); in PreNotify()