Lines Matching refs:rNEvt
813 long ComboBox::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
816 return Edit::PreNotify( rNEvt ); in PreNotify()
821 long ComboBox::Notify( NotifyEvent& rNEvt ) in Notify() argument
824 if( ( rNEvt.GetType() == EVENT_KEYINPUT ) && ( rNEvt.GetWindow() == mpSubEdit ) in Notify()
827 KeyEvent aKeyEvt = *rNEvt.GetKeyEvent(); in Notify()
862 if( ( rNEvt.GetWindow() == mpSubEdit ) && IsInDropDown() ) in Notify()
871 else if ( (rNEvt.GetType() == EVENT_LOSEFOCUS) && mpFloatWin ) in Notify()
878 else if( (rNEvt.GetType() == EVENT_COMMAND) && in Notify()
879 (rNEvt.GetCommandEvent()->GetCommand() == COMMAND_WHEEL) && in Notify()
880 (rNEvt.GetWindow() == mpSubEdit) ) in Notify()
889 nDone = mpImplLB->HandleWheelAsCursorTravel( *rNEvt.GetCommandEvent() ); in Notify()
896 …else if( ( rNEvt.GetType() == EVENT_MOUSEBUTTONDOWN ) && ( rNEvt.GetWindow() == mpImplLB->GetMainW… in Notify()
901 return nDone ? nDone : Edit::Notify( rNEvt ); in Notify()