Lines Matching refs:rNEvt

5099 void Window::ImplNotifyKeyMouseCommandEventListeners( NotifyEvent& rNEvt )  in ImplNotifyKeyMouseCommandEventListeners()  argument
5101 if( rNEvt.GetType() == EVENT_COMMAND ) in ImplNotifyKeyMouseCommandEventListeners()
5103 const CommandEvent* pCEvt = rNEvt.GetCommandEvent(); in ImplNotifyKeyMouseCommandEventListeners()
5109 if ( mpWindowImpl->mbCompoundControl || ( rNEvt.GetWindow() == this ) ) in ImplNotifyKeyMouseCommandEventListeners()
5111 if ( rNEvt.GetWindow() == this ) in ImplNotifyKeyMouseCommandEventListeners()
5117 … CommandEvent aCommandEvent = ImplTranslateCommandEvent( *pCEvt, rNEvt.GetWindow(), this ); in ImplNotifyKeyMouseCommandEventListeners()
5131 if( rNEvt.GetType() == EVENT_MOUSEMOVE ) in ImplNotifyKeyMouseCommandEventListeners()
5133 if ( mpWindowImpl->mbCompoundControl || ( rNEvt.GetWindow() == this ) ) in ImplNotifyKeyMouseCommandEventListeners()
5135 if ( rNEvt.GetWindow() == this ) in ImplNotifyKeyMouseCommandEventListeners()
5136 ImplCallEventListeners( VCLEVENT_WINDOW_MOUSEMOVE, (void*)rNEvt.GetMouseEvent() ); in ImplNotifyKeyMouseCommandEventListeners()
5139 …MouseEvent aMouseEvent = ImplTranslateMouseEvent( *rNEvt.GetMouseEvent(), rNEvt.GetWindow(), this … in ImplNotifyKeyMouseCommandEventListeners()
5144 else if( rNEvt.GetType() == EVENT_MOUSEBUTTONUP ) in ImplNotifyKeyMouseCommandEventListeners()
5146 if ( mpWindowImpl->mbCompoundControl || ( rNEvt.GetWindow() == this ) ) in ImplNotifyKeyMouseCommandEventListeners()
5148 if ( rNEvt.GetWindow() == this ) in ImplNotifyKeyMouseCommandEventListeners()
5149 … ImplCallEventListeners( VCLEVENT_WINDOW_MOUSEBUTTONUP, (void*)rNEvt.GetMouseEvent() ); in ImplNotifyKeyMouseCommandEventListeners()
5152 …MouseEvent aMouseEvent = ImplTranslateMouseEvent( *rNEvt.GetMouseEvent(), rNEvt.GetWindow(), this … in ImplNotifyKeyMouseCommandEventListeners()
5157 else if( rNEvt.GetType() == EVENT_MOUSEBUTTONDOWN ) in ImplNotifyKeyMouseCommandEventListeners()
5159 if ( mpWindowImpl->mbCompoundControl || ( rNEvt.GetWindow() == this ) ) in ImplNotifyKeyMouseCommandEventListeners()
5161 if ( rNEvt.GetWindow() == this ) in ImplNotifyKeyMouseCommandEventListeners()
5162 … ImplCallEventListeners( VCLEVENT_WINDOW_MOUSEBUTTONDOWN, (void*)rNEvt.GetMouseEvent() ); in ImplNotifyKeyMouseCommandEventListeners()
5165 …MouseEvent aMouseEvent = ImplTranslateMouseEvent( *rNEvt.GetMouseEvent(), rNEvt.GetWindow(), this … in ImplNotifyKeyMouseCommandEventListeners()
5170 else if( rNEvt.GetType() == EVENT_KEYINPUT ) in ImplNotifyKeyMouseCommandEventListeners()
5172 if ( mpWindowImpl->mbCompoundControl || ( rNEvt.GetWindow() == this ) ) in ImplNotifyKeyMouseCommandEventListeners()
5173 ImplCallEventListeners( VCLEVENT_WINDOW_KEYINPUT, (void*)rNEvt.GetKeyEvent() ); in ImplNotifyKeyMouseCommandEventListeners()
5175 else if( rNEvt.GetType() == EVENT_KEYUP ) in ImplNotifyKeyMouseCommandEventListeners()
5177 if ( mpWindowImpl->mbCompoundControl || ( rNEvt.GetWindow() == this ) ) in ImplNotifyKeyMouseCommandEventListeners()
5178 ImplCallEventListeners( VCLEVENT_WINDOW_KEYUP, (void*)rNEvt.GetKeyEvent() ); in ImplNotifyKeyMouseCommandEventListeners()
5191 pParent->ImplNotifyKeyMouseCommandEventListeners( rNEvt ); in ImplNotifyKeyMouseCommandEventListeners()
5200 long Window::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
5208 bDone = mpWindowImpl->mpParent->PreNotify( rNEvt ); in PreNotify()
5212 if( rNEvt.GetType() == EVENT_GETFOCUS ) in PreNotify()
5221 if ( bCompoundFocusChanged || ( rNEvt.GetWindow() == this ) ) in PreNotify()
5224 else if( rNEvt.GetType() == EVENT_LOSEFOCUS ) in PreNotify()
5233 if ( bCompoundFocusChanged || ( rNEvt.GetWindow() == this ) ) in PreNotify()
5289 long Window::Notify( NotifyEvent& rNEvt ) in Notify() argument
5302 if ( rNEvt.GetType() == EVENT_MOUSEBUTTONDOWN ) in Notify()
5304 const MouseEvent* pMEvt = rNEvt.GetMouseEvent(); in Notify()
5322 else if ( rNEvt.GetType() == EVENT_MOUSEMOVE ) in Notify()
5324 const MouseEvent* pMEvt = rNEvt.GetMouseEvent(); in Notify()
5334 Window* pWindow = rNEvt.GetWindow(); in Notify()
5345 else if( rNEvt.GetType() == EVENT_KEYINPUT ) in Notify()
5347 const KeyCode& rKey = rNEvt.GetKeyEvent()->GetKeyCode(); in Notify()
5369 if ( (rNEvt.GetType() == EVENT_KEYINPUT) || (rNEvt.GetType() == EVENT_KEYUP) ) in Notify()
5374 nRet = ImplDlgCtrl( *rNEvt.GetKeyEvent(), rNEvt.GetType() == EVENT_KEYINPUT ); in Notify()
5377 else if ( (rNEvt.GetType() == EVENT_GETFOCUS) || (rNEvt.GetType() == EVENT_LOSEFOCUS) ) in Notify()
5379 ImplDlgCtrlFocusChanged( rNEvt.GetWindow(), rNEvt.GetType() == EVENT_GETFOCUS ); in Notify()
5380 if ( (rNEvt.GetWindow() == this) && (rNEvt.GetType() == EVENT_GETFOCUS) && in Notify()
5394 nRet = mpWindowImpl->mpParent->Notify( rNEvt ); in Notify()