Home
last modified time | relevance | path

Searched refs:rNEvt (Results 1 – 25 of 250) sorted by relevance

12345678910

/trunk/main/svx/source/tbxctrls/
H A Ditemwin.cxx172 long SvxLineBox::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
174 sal_uInt16 nType = rNEvt.GetType(); in PreNotify()
187 const KeyEvent* pKEvt = rNEvt.GetKeyEvent(); in PreNotify()
196 return LineLB::PreNotify( rNEvt ); in PreNotify()
201 long SvxLineBox::Notify( NotifyEvent& rNEvt ) in Notify() argument
203 long nHandled = LineLB::Notify( rNEvt ); in Notify()
205 if ( rNEvt.GetType() == EVENT_KEYINPUT ) in Notify()
207 const KeyEvent* pKEvt = rNEvt.GetKeyEvent(); in Notify()
378 long SvxColorBox::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
380 sal_uInt16 nType = rNEvt.GetType(); in PreNotify()
[all …]
H A Dtbcontrl.cxx144 virtual long PreNotify( NotifyEvent& rNEvt );
145 virtual long Notify( NotifyEvent& rNEvt );
214 virtual long PreNotify( NotifyEvent& rNEvt );
215 virtual long Notify( NotifyEvent& rNEvt );
460 long SvxStyleBox_Impl::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
462 sal_uInt16 nType = rNEvt.GetType(); in PreNotify()
472 return ComboBox::PreNotify( rNEvt ); in PreNotify()
477 long SvxStyleBox_Impl::Notify( NotifyEvent& rNEvt ) in Notify() argument
481 if ( rNEvt.GetType() == EVENT_KEYINPUT ) in Notify()
483 sal_uInt16 nCode = rNEvt.GetKeyEvent()->GetKeyCode().GetCode(); in Notify()
[all …]
H A Dtbunocontroller.cxx61 virtual long Notify( NotifyEvent& rNEvt );
190 long SvxFontSizeBox_Impl::Notify( NotifyEvent& rNEvt ) in Notify() argument
194 if ( rNEvt.GetType() == EVENT_KEYINPUT ) in Notify()
196 sal_uInt16 nCode = rNEvt.GetKeyEvent()->GetKeyCode().GetCode(); in Notify()
218 else if( EVENT_LOSEFOCUS == rNEvt.GetType() ) in Notify()
225 return nHandled ? nHandled : FontSizeBox::Notify( rNEvt ); in Notify()
H A Dgrafctrl.cxx379 virtual long PreNotify( NotifyEvent& rNEvt );
380 virtual long Notify( NotifyEvent& rNEvt );
438 long ImplGrafModeControl::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
440 sal_uInt16 nType = rNEvt.GetType(); in PreNotify()
445 return ListBox::PreNotify( rNEvt ); in PreNotify()
450 long ImplGrafModeControl::Notify( NotifyEvent& rNEvt ) in Notify() argument
452 long nHandled = ListBox::Notify( rNEvt ); in Notify()
454 if( rNEvt.GetType() == EVENT_KEYINPUT ) in Notify()
456 const KeyEvent* pKEvt = rNEvt.GetKeyEvent(); in Notify()
/trunk/main/vcl/source/control/
H A Dfield.cxx863 long NumericField::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
865 if ( (rNEvt.GetType() == EVENT_KEYINPUT) && !rNEvt.GetKeyEvent()->GetKeyCode().IsMod2() ) in PreNotify()
867 …if ( ImplNumericProcessKeyInput( GetField(), *rNEvt.GetKeyEvent(), IsStrictFormat(), IsUseThousand… in PreNotify()
871 return SpinField::PreNotify( rNEvt ); in PreNotify()
876 long NumericField::Notify( NotifyEvent& rNEvt ) in Notify() argument
878 if ( rNEvt.GetType() == EVENT_GETFOCUS ) in Notify()
880 else if ( rNEvt.GetType() == EVENT_LOSEFOCUS ) in Notify()
886 return SpinField::Notify( rNEvt ); in Notify()
982 long NumericBox::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
984 if ( (rNEvt.GetType() == EVENT_KEYINPUT) && !rNEvt.GetKeyEvent()->GetKeyCode().IsMod2() ) in PreNotify()
[all …]
H A Dfield2.cxx948 long PatternField::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
950 if ( (rNEvt.GetType() == EVENT_KEYINPUT) && !rNEvt.GetKeyEvent()->GetKeyCode().IsMod2() ) in PreNotify()
952 …if ( ImplPatternProcessKeyInput( GetField(), *rNEvt.GetKeyEvent(), GetEditMask(), GetLiteralMask(), in PreNotify()
958 return SpinField::PreNotify( rNEvt ); in PreNotify()
963 long PatternField::Notify( NotifyEvent& rNEvt ) in Notify() argument
965 if ( rNEvt.GetType() == EVENT_GETFOCUS ) in Notify()
967 else if ( rNEvt.GetType() == EVENT_LOSEFOCUS ) in Notify()
973 return SpinField::Notify( rNEvt ); in Notify()
1026 long PatternBox::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
1028 if ( (rNEvt.GetType() == EVENT_KEYINPUT) && !rNEvt.GetKeyEvent()->GetKeyCode().IsMod2() ) in PreNotify()
[all …]
H A Dlongcurr.cxx651 long LongCurrencyField::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
653 if( rNEvt.GetType() == EVENT_KEYINPUT ) in PreNotify()
655 …if ( ImplLongCurrencyProcessKeyInput( GetField(), *rNEvt.GetKeyEvent(), IsStrictFormat(), IsUseTho… in PreNotify()
658 return SpinField::PreNotify( rNEvt ); in PreNotify()
663 long LongCurrencyField::Notify( NotifyEvent& rNEvt ) in Notify() argument
665 if( rNEvt.GetType() == EVENT_GETFOCUS ) in Notify()
669 else if( rNEvt.GetType() == EVENT_LOSEFOCUS ) in Notify()
677 return SpinField::Notify( rNEvt ); in Notify()
763 long LongCurrencyBox::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
765 if( rNEvt.GetType() == EVENT_KEYINPUT ) in PreNotify()
[all …]
H A Dcombobox.cxx813 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()
[all …]
H A Dspinfld.cxx528 long SpinField::Notify( NotifyEvent& rNEvt ) in Notify() argument
531 if( rNEvt.GetType() == EVENT_KEYINPUT ) in Notify()
533 const KeyEvent& rKEvt = *rNEvt.GetKeyEvent(); in Notify()
585 if ( rNEvt.GetType() == EVENT_COMMAND ) in Notify()
587 if ( ( rNEvt.GetCommandEvent()->GetCommand() == COMMAND_WHEEL ) && !IsReadOnly() ) in Notify()
596 const CommandWheelData* pData = rNEvt.GetCommandEvent()->GetWheelData(); in Notify()
611 return nDone ? nDone : Edit::Notify( rNEvt ); in Notify()
902 long SpinField::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
907 if( (rNEvt.GetType() == EVENT_MOUSEMOVE) && (pMouseEvt = rNEvt.GetMouseEvent()) != NULL ) in PreNotify()
949 return nDone ? nDone : Edit::PreNotify(rNEvt); in PreNotify()
/trunk/main/vcl/inc/vcl/
H A Dfield.hxx509 virtual long PreNotify( NotifyEvent& rNEvt );
510 virtual long Notify( NotifyEvent& rNEvt );
529 virtual long PreNotify( NotifyEvent& rNEvt );
530 virtual long Notify( NotifyEvent& rNEvt );
556 virtual long PreNotify( NotifyEvent& rNEvt );
557 virtual long Notify( NotifyEvent& rNEvt );
623 virtual long PreNotify( NotifyEvent& rNEvt );
624 virtual long Notify( NotifyEvent& rNEvt );
655 virtual long PreNotify( NotifyEvent& rNEvt );
656 virtual long Notify( NotifyEvent& rNEvt );
[all …]
/trunk/main/sfx2/source/view/
H A Dframe2.cxx81 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()
[all …]
/trunk/main/svtools/source/brwbox/
H A Debbcontrols.cxx59 long ComboBoxControl::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
61 switch (rNEvt.GetType()) in PreNotify()
66 const KeyEvent *pEvt = rNEvt.GetKeyEvent(); in PreNotify()
85 return ComboBox::PreNotify(rNEvt); in PreNotify()
166 long ListBoxControl::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
168 switch (rNEvt.GetType()) in PreNotify()
173 const KeyEvent *pEvt = rNEvt.GetKeyEvent(); in PreNotify()
190 else if (GetParent()->PreNotify(rNEvt)) in PreNotify()
195 return ListBox::PreNotify(rNEvt); in PreNotify()
584 long MultiLineTextCell::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
[all …]
/trunk/main/svx/inc/svx/
H A Ditemwin.hxx64 virtual long PreNotify( NotifyEvent& rNEvt );
65 virtual long Notify( NotifyEvent& rNEvt );
101 virtual long PreNotify( NotifyEvent& rNEvt );
102 virtual long Notify( NotifyEvent& rNEvt );
128 virtual long PreNotify( NotifyEvent& rNEvt );
129 virtual long Notify( NotifyEvent& rNEvt );
155 virtual long PreNotify( NotifyEvent& rNEvt );
156 virtual long Notify( NotifyEvent& rNEvt );
179 virtual long PreNotify( NotifyEvent& rNEvt );
180 virtual long Notify( NotifyEvent& rNEvt );
/trunk/main/basctl/source/basicide/
H A Dbasicbox.cxx267 long BasicLibBox::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
270 if( rNEvt.GetType() == EVENT_KEYINPUT ) in PreNotify()
272 KeyEvent aKeyEvt = *rNEvt.GetKeyEvent(); in PreNotify()
292 else if( rNEvt.GetType() == EVENT_GETFOCUS ) in PreNotify()
300 else if( rNEvt.GetType() == EVENT_LOSEFOCUS ) in PreNotify()
309 return nDone ? nDone : ListBox::PreNotify( rNEvt ); in PreNotify()
496 long BasicLanguageBox::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
499 if( rNEvt.GetType() == EVENT_KEYINPUT ) in PreNotify()
501 sal_uInt16 nKeyCode = rNEvt.GetKeyEvent()->GetKeyCode().GetCode(); in PreNotify()
519 else if( rNEvt.GetType() == EVENT_GETFOCUS ) in PreNotify()
[all …]
/trunk/main/sfx2/source/appl/
H A Dnewhelp.cxx417 long ContentListBox_Impl::Notify( NotifyEvent& rNEvt ) in Notify() argument
420 if ( rNEvt.GetType() == EVENT_KEYINPUT && in Notify()
421 KEY_RETURN == rNEvt.GetKeyEvent()->GetKeyCode().GetCode() ) in Notify()
427 return bHandled ? 1 : SvTreeListBox::Notify( rNEvt ); in Notify()
524 long IndexBox_Impl::Notify( NotifyEvent& rNEvt ) in Notify() argument
527 if ( rNEvt.GetType() == EVENT_KEYINPUT && in Notify()
528 KEY_RETURN == rNEvt.GetKeyEvent()->GetKeyCode().GetCode() ) in Notify()
534 return bHandled ? 1 : ComboBox::Notify( rNEvt ); in Notify()
938 long SearchBox_Impl::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
942 rNEvt.GetWindow() == GetSubEdit() && in PreNotify()
[all …]
H A Dnewhelp.hxx93 virtual long Notify( NotifyEvent& rNEvt );
141 virtual long Notify( NotifyEvent& rNEvt );
204 virtual long PreNotify( NotifyEvent& rNEvt );
215 virtual long Notify( NotifyEvent& rNEvt );
272 virtual long Notify( NotifyEvent& rNEvt );
348 virtual long PreNotify( NotifyEvent& rNEvt );
427 virtual long Notify( NotifyEvent& rNEvt );
486 virtual long PreNotify( NotifyEvent& rNEvt );
554 virtual long PreNotify( NotifyEvent& rNEvt );
/trunk/main/svx/source/sidebar/text/
H A DSvxSBFontNameBox.cxx129 long SvxSBFontNameBox::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
131 const sal_uInt16 nType (rNEvt.GetType()); in PreNotify()
135 return FontNameBox::PreNotify( rNEvt ); in PreNotify()
138 long SvxSBFontNameBox::Notify( NotifyEvent& rNEvt) //SfxBroadcaster& rBC, const SfxHint& rHint in Notify() argument
144 if ( rNEvt.GetType() == EVENT_KEYINPUT ) in Notify()
146 const sal_uInt16 nCode (rNEvt.GetKeyEvent()->GetKeyCode().GetCode()); in Notify()
155 return bHandle ? bHandle : FontNameBox::Notify( rNEvt ); in Notify()
/trunk/main/framework/source/uielement/
H A Dedittoolbarcontroller.cxx88 virtual long PreNotify( NotifyEvent& rNEvt );
133 long EditControl::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
137 nRet = m_pEditListener->PreNotify( rNEvt ); in PreNotify()
139 nRet = Edit::PreNotify( rNEvt ); in PreNotify()
223 long EditToolbarController::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
225 if( rNEvt.GetType() == EVENT_KEYINPUT ) in PreNotify()
227 const ::KeyEvent* pKeyEvent = rNEvt.GetKeyEvent(); in PreNotify()
H A Dcomboboxtoolbarcontroller.cxx93 virtual long PreNotify( NotifyEvent& rNEvt );
152 long ComboBoxControl::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
156 nRet = m_pComboBoxListener->PreNotify( rNEvt ); in PreNotify()
158 nRet = ComboBox::PreNotify( rNEvt ); in PreNotify()
258 long ComboboxToolbarController::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
260 switch ( rNEvt.GetType() ) in PreNotify()
264 const ::KeyEvent* pKeyEvent = rNEvt.GetKeyEvent(); in PreNotify()
H A Dspinfieldtoolbarcontroller.cxx100 virtual long PreNotify( NotifyEvent& rNEvt );
187 long SpinfieldControl::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
191 nRet = m_pSpinFieldListener->PreNotify( rNEvt ); in PreNotify()
193 nRet = SpinField::PreNotify( rNEvt ); in PreNotify()
345 long SpinfieldToolbarController::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
347 if( rNEvt.GetType() == EVENT_KEYINPUT ) in PreNotify()
349 const ::KeyEvent* pKeyEvent = rNEvt.GetKeyEvent(); in PreNotify()
/trunk/main/sc/source/ui/navipi/
H A Dscenwnd.cxx123 long ScScenarioListBox::Notify( NotifyEvent& rNEvt ) in Notify() argument
127 if( rNEvt.GetType() == EVENT_KEYINPUT ) in Notify()
129 KeyCode aCode = rNEvt.GetKeyEvent()->GetKeyCode(); in Notify()
142 else if ( rNEvt.GetType() == EVENT_COMMAND && GetSelectEntryCount() ) in Notify()
144 const CommandEvent* pCEvt = rNEvt.GetCommandEvent(); in Notify()
171 return bHandled ? 1 : ListBox::Notify( rNEvt ); in Notify()
/trunk/main/vcl/source/window/
H A Dsyswin.cxx97 long SystemWindow::Notify( NotifyEvent& rNEvt ) in Notify() argument
100 if ( rNEvt.GetType() == EVENT_KEYINPUT ) in Notify()
109 if ( pMBar && pMBar->ImplHandleKeyEvent( *rNEvt.GetKeyEvent(), sal_False ) ) in Notify()
113 return Window::Notify( rNEvt ); in Notify()
118 long SystemWindow::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
121 if ( rNEvt.GetType() == EVENT_KEYINPUT ) in PreNotify()
123 if( rNEvt.GetKeyEvent()->GetKeyCode().GetCode() == KEY_F6 && in PreNotify()
124 rNEvt.GetKeyEvent()->GetKeyCode().IsMod1() && in PreNotify()
125 !rNEvt.GetKeyEvent()->GetKeyCode().IsShift() ) in PreNotify()
153 if( pTList && pTList->HandleKeyEvent( *rNEvt.GetKeyEvent() ) ) in PreNotify()
[all …]
H A Dwindow.cxx5099 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()
[all …]
/trunk/main/svtools/source/control/
H A Dfmtfield.cxx602 long FormattedField::PreNotify(NotifyEvent& rNEvt) in PreNotify() argument
605 if (rNEvt.GetType() == EVENT_KEYINPUT) in PreNotify()
607 return SpinField::PreNotify(rNEvt); in PreNotify()
852 long FormattedField::Notify(NotifyEvent& rNEvt) in Notify() argument
856 if ((rNEvt.GetType() == EVENT_KEYINPUT) && !IsReadOnly()) in Notify()
858 const KeyEvent& rKEvt = *rNEvt.GetKeyEvent(); in Notify()
875 if ((rNEvt.GetType() == EVENT_COMMAND) && !IsReadOnly()) in Notify()
877 const CommandEvent* pCommand = rNEvt.GetCommandEvent(); in Notify()
880 const CommandWheelData* pData = rNEvt.GetCommandEvent()->GetWheelData(); in Notify()
891 if (rNEvt.GetType() == EVENT_LOSEFOCUS) in Notify()
[all …]
/trunk/main/sw/source/ui/misc/
H A Dbookmark.cxx283 long BookmarkCombo::PreNotify( NotifyEvent& rNEvt ) in PreNotify() argument
286 if( EVENT_KEYINPUT == rNEvt.GetType() && in PreNotify()
287 rNEvt.GetKeyEvent()->GetCharCode() ) in PreNotify()
289 String sKey( rNEvt.GetKeyEvent()->GetCharCode() ); in PreNotify()
294 nHandled = SwComboBox::PreNotify( rNEvt ); in PreNotify()

12345678910