/trunk/main/svtools/source/control/ |
H A D | fileurlbox.cxx | 75 long FileURLBox::PreNotify( NotifyEvent& _rNEvt ) in PreNotify() argument 77 switch ( _rNEvt.GetType() ) in PreNotify() 80 if ( ( GetSubEdit() == _rNEvt.GetWindow() ) in PreNotify() 81 && ( KEY_RETURN == _rNEvt.GetKeyEvent()->GetKeyCode().GetCode() ) in PreNotify() 88 if ( IsWindowOrChild( _rNEvt.GetWindow() ) ) in PreNotify() 93 return SvtURLBox::PreNotify(_rNEvt); in PreNotify() 97 long FileURLBox::Notify( NotifyEvent& _rNEvt ) in Notify() argument 99 switch ( _rNEvt.GetType() ) in Notify() 102 if ( ( GetSubEdit() == _rNEvt.GetWindow() ) in Notify() 107 long nReturn = SvtURLBox::Notify(_rNEvt); in Notify() [all …]
|
H A D | urlcontrol.cxx | 53 long OFileURLControl::PreNotify( NotifyEvent& _rNEvt ) in PreNotify() argument 55 if (GetSubEdit() == _rNEvt.GetWindow()) in PreNotify() 56 if (EVENT_KEYINPUT == _rNEvt.GetType()) in PreNotify() 57 if (KEY_RETURN == _rNEvt.GetKeyEvent()->GetKeyCode().GetCode()) in PreNotify() 61 return SvtURLBox::PreNotify(_rNEvt); in PreNotify() 65 long OFileURLControl::Notify( NotifyEvent& _rNEvt ) in Notify() argument 67 if (GetSubEdit() == _rNEvt.GetWindow()) in Notify() 68 if (EVENT_KEYINPUT == _rNEvt.GetType()) in Notify() 69 if (KEY_RETURN == _rNEvt.GetKeyEvent()->GetKeyCode().GetCode()) in Notify() 72 long nReturn = SvtURLBox::Notify(_rNEvt); in Notify() [all …]
|
H A D | roadmap.cxx | 710 long ORoadmap::PreNotify( NotifyEvent& _rNEvt ) in PreNotify() argument 713 if ( _rNEvt.GetType() == EVENT_KEYINPUT ) in PreNotify() 715 Window* pWindow = _rNEvt.GetWindow(); in PreNotify() 719 sal_Int16 nKeyCode = _rNEvt.GetKeyEvent()->GetKeyCode().GetCode(); in PreNotify() 743 return Window::PreNotify( _rNEvt ); in PreNotify()
|
/trunk/main/forms/source/richtext/ |
H A D | richtextvclcontrol.cxx | 214 long RichTextControl::PreNotify( NotifyEvent& _rNEvt ) in PreNotify() argument 216 if ( IsWindowOrChild( _rNEvt.GetWindow() ) ) in PreNotify() 218 if ( EVENT_KEYINPUT == _rNEvt.GetType() ) in PreNotify() 220 const ::KeyEvent* pKeyEvent = _rNEvt.GetKeyEvent(); in PreNotify() 303 return Control::PreNotify( _rNEvt ); in PreNotify() 307 long RichTextControl::Notify( NotifyEvent& _rNEvt ) in Notify() argument 310 if ( _rNEvt.GetType() == EVENT_COMMAND ) in Notify() 312 const CommandEvent& rEvent = *_rNEvt.GetCommandEvent(); in Notify() 315 return nDone ? nDone : Control::Notify( _rNEvt ); in Notify()
|
H A D | richtextvclcontrol.hxx | 121 virtual long PreNotify( NotifyEvent& _rNEvt ); 122 virtual long Notify( NotifyEvent& _rNEvt );
|
/trunk/main/dbaccess/source/ui/browser/ |
H A D | dataview.cxx | 160 long ODataView::PreNotify( NotifyEvent& _rNEvt ) in PreNotify() argument 163 switch ( _rNEvt.GetType() ) in PreNotify() 167 const KeyEvent* pKeyEvent = _rNEvt.GetKeyEvent(); in PreNotify() 177 bHandled = m_rController.interceptUserInput( _rNEvt ); in PreNotify() 180 return bHandled ? 1L : Window::PreNotify( _rNEvt ); in PreNotify()
|
/trunk/main/extensions/source/propctrlr/ |
H A D | browserview.cxx | 103 long OPropertyBrowserView::Notify( NotifyEvent& _rNEvt ) in Notify() argument 105 if ( EVENT_KEYINPUT == _rNEvt.GetType() ) in Notify() 107 sal_uInt16 nKey = _rNEvt.GetKeyEvent()->GetKeyCode().GetCode(); in Notify() 115 return Window::Notify( _rNEvt ); in Notify()
|
H A D | standardcontrol.hxx | 75 long PreNotify( NotifyEvent& _rNEvt ); 80 long ListLikeControlWithModifyHandler< LISTBOX_WINDOW >::PreNotify( NotifyEvent& _rNEvt ) in PreNotify() argument 82 if ( _rNEvt.GetType() == EVENT_KEYINPUT ) in PreNotify() 84 const ::KeyEvent* pKeyEvent = _rNEvt.GetKeyEvent(); in PreNotify() 95 return ListBoxType::GetParent()->PreNotify( _rNEvt ); in PreNotify() 99 return ListBoxType::PreNotify( _rNEvt ); in PreNotify()
|
H A D | browserlistbox.cxx | 1221 long OBrowserListBox::PreNotify( NotifyEvent& _rNEvt ) in PreNotify() argument 1223 switch ( _rNEvt.GetType() ) in PreNotify() 1227 const KeyEvent* pKeyEvent = _rNEvt.GetKeyEvent(); in PreNotify() 1275 return Control::PreNotify( _rNEvt ); in PreNotify() 1279 long OBrowserListBox::Notify( NotifyEvent& _rNEvt ) in Notify() argument 1281 switch ( _rNEvt.GetType() ) in Notify() 1285 const CommandEvent* pCommand = _rNEvt.GetCommandEvent(); in Notify() 1301 return Control::Notify( _rNEvt ); in Notify()
|
H A D | standardcontrol.cxx | 989 virtual long PreNotify(NotifyEvent& _rNEvt); 1007 long OMultilineFloatingEdit::PreNotify(NotifyEvent& _rNEvt) in PreNotify() argument 1011 sal_uInt16 nSwitch = _rNEvt.GetType(); in PreNotify() 1014 const KeyCode& aKeyCode = _rNEvt.GetKeyEvent()->GetKeyCode(); in PreNotify() 1028 nResult=FloatingWindow::PreNotify(_rNEvt); in PreNotify() 1031 nResult=FloatingWindow::PreNotify(_rNEvt); in PreNotify()
|
H A D | browserlistbox.hxx | 144 long Notify( NotifyEvent& _rNEvt ); 145 long PreNotify( NotifyEvent& _rNEvt );
|
H A D | browserview.hxx | 55 virtual long Notify( NotifyEvent& _rNEvt );
|
H A D | commoncontrol.hxx | 153 bool handlePreNotify(NotifyEvent& _rNEvt);
|
/trunk/main/svtools/source/table/ |
H A D | defaultinputhandler.cxx | 225 bool DefaultInputHandler::PreNotify( ITableControl& _rControl, NotifyEvent& _rNEvt ) in PreNotify() argument 228 (void)_rNEvt; in PreNotify() 234 bool DefaultInputHandler::Notify( ITableControl& _rControl, NotifyEvent& _rNEvt ) in Notify() argument 237 (void)_rNEvt; in Notify()
|
/trunk/main/reportdesign/source/ui/dlg/ |
H A D | CondFormat.cxx | 509 long ConditionalFormattingDialog::PreNotify( NotifyEvent& _rNEvt ) in PreNotify() argument 511 switch ( _rNEvt.GetType() ) in PreNotify() 515 const KeyEvent* pKeyEvent( _rNEvt.GetKeyEvent() ); in PreNotify() 537 const Window* pGetFocusWindow( _rNEvt.GetWindow() ); in PreNotify() 558 return ModalDialog::PreNotify( _rNEvt ); in PreNotify()
|
H A D | AddField.cxx | 259 long OAddFieldWindow::PreNotify( NotifyEvent& _rNEvt ) in PreNotify() argument 261 if ( EVENT_KEYINPUT == _rNEvt.GetType() ) in PreNotify() 263 const KeyCode& rKeyCode = _rNEvt.GetKeyEvent()->GetKeyCode(); in PreNotify() 274 return FloatingWindow::PreNotify( _rNEvt ); in PreNotify()
|
/trunk/main/svx/source/form/ |
H A D | tabwin.cxx | 293 long FmFieldWin::PreNotify( NotifyEvent& _rNEvt ) in PreNotify() argument 295 if ( EVENT_KEYINPUT == _rNEvt.GetType() ) in PreNotify() 297 const KeyCode& rKeyCode = _rNEvt.GetKeyEvent()->GetKeyCode(); in PreNotify() 305 return SfxFloatingWindow::PreNotify( _rNEvt ); in PreNotify()
|
/trunk/main/cui/source/options/ |
H A D | connpooloptions.cxx | 388 long ConnectionPoolOptionsPage::Notify( NotifyEvent& _rNEvt ) in Notify() argument 390 if (EVENT_LOSEFOCUS == _rNEvt.GetType()) in Notify() 391 if (m_aTimeout.IsWindowOrChild(_rNEvt.GetWindow())) in Notify() 394 return SfxTabPage::Notify(_rNEvt); in Notify()
|
H A D | connpooloptions.hxx | 67 virtual long Notify( NotifyEvent& _rNEvt );
|
/trunk/main/dbaccess/source/ui/dlg/ |
H A D | ConnectionHelper.cxx | 726 long OConnectionHelper::PreNotify( NotifyEvent& _rNEvt ) in PreNotify() argument 730 switch (_rNEvt.GetType()) in PreNotify() 733 if (m_aConnectionURL.IsWindowOrChild(_rNEvt.GetWindow()) && m_bUserGrabFocus) in PreNotify() 740 if (m_aConnectionURL.IsWindowOrChild(_rNEvt.GetWindow()) && m_bUserGrabFocus) in PreNotify() 749 return OGenericAdministrationPage::PreNotify( _rNEvt ); in PreNotify()
|
H A D | ConnectionHelper.hxx | 80 virtual long PreNotify( NotifyEvent& _rNEvt );
|
/trunk/main/svtools/source/dialogs/ |
H A D | addresstemplate.cxx | 1271 long AddressBookSourceDialog::PreNotify( NotifyEvent& _rNEvt ) in PreNotify() argument 1273 switch (_rNEvt.GetType()) in PreNotify() 1277 const KeyEvent* pKeyEvent = _rNEvt.GetKeyEvent(); in PreNotify() 1318 return ModalDialog::PreNotify(_rNEvt); in PreNotify()
|
/trunk/main/svx/source/inc/ |
H A D | tabwin.hxx | 98 virtual long PreNotify( NotifyEvent& _rNEvt );
|
/trunk/main/svtools/inc/svtools/ |
H A D | addresstemplate.hxx | 127 virtual long PreNotify( NotifyEvent& _rNEvt );
|
/trunk/main/reportdesign/source/ui/inc/ |
H A D | AddField.hxx | 93 virtual long PreNotify( NotifyEvent& _rNEvt );
|