Lines Matching refs:rNEvt
815 long ComboBox::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
818 return Edit::PreNotify( rNEvt ); in PreNotify()
823 long ComboBox::Notify( NotifyEvent& rNEvt ) in Notify() argument
826 if( ( rNEvt.GetType() == EVENT_KEYINPUT ) && ( rNEvt.GetWindow() == mpSubEdit ) in Notify()
829 KeyEvent aKeyEvt = *rNEvt.GetKeyEvent(); in Notify()
864 if( ( rNEvt.GetWindow() == mpSubEdit ) && IsInDropDown() ) in Notify()
873 else if ( (rNEvt.GetType() == EVENT_LOSEFOCUS) && mpFloatWin ) in Notify()
880 else if( (rNEvt.GetType() == EVENT_COMMAND) && in Notify()
881 (rNEvt.GetCommandEvent()->GetCommand() == COMMAND_WHEEL) && in Notify()
882 (rNEvt.GetWindow() == mpSubEdit) ) in Notify()
891 nDone = mpImplLB->HandleWheelAsCursorTravel( *rNEvt.GetCommandEvent() ); in Notify()
898 …else if( ( rNEvt.GetType() == EVENT_MOUSEBUTTONDOWN ) && ( rNEvt.GetWindow() == mpImplLB->GetMainW… in Notify()
903 return nDone ? nDone : Edit::Notify( rNEvt ); in Notify()