Lines Matching refs:rKEvt
1525 sal_Bool Edit::ImplHandleKeyEvent( const KeyEvent& rKEvt ) in ImplHandleKeyEvent() argument
1528 sal_uInt16 nCode = rKEvt.GetKeyCode().GetCode(); in ImplHandleKeyEvent()
1529 KeyFuncType eFunc = rKEvt.GetKeyCode().GetFunction(); in ImplHandleKeyEvent()
1583 if ( !bDone && rKEvt.GetKeyCode().IsMod1() && !rKEvt.GetKeyCode().IsMod2() ) in ImplHandleKeyEvent()
1590 else if ( rKEvt.GetKeyCode().IsShift() && (nCode == KEY_S) ) in ImplHandleKeyEvent()
1639 if ( !rKEvt.GetKeyCode().IsMod2() ) in ImplHandleKeyEvent()
1645 bool bWord = rKEvt.GetKeyCode().IsMod1(); in ImplHandleKeyEvent()
1646 bool bSelect = rKEvt.GetKeyCode().IsShift(); in ImplHandleKeyEvent()
1731 if ( bGoEnd && maAutocompleteHdl.IsSet() && !rKEvt.GetKeyCode().GetModifier() ) in ImplHandleKeyEvent()
1752 if ( !mbReadOnly && !rKEvt.GetKeyCode().IsMod2() ) in ImplHandleKeyEvent()
1755 sal_uInt8 nMode = rKEvt.GetKeyCode().IsMod1() ? EDIT_DELMODE_RESTOFWORD : EDIT_DELMODE_SIMPLE; in ImplHandleKeyEvent()
1756 if ( (nMode == EDIT_DELMODE_RESTOFWORD) && rKEvt.GetKeyCode().IsShift() ) in ImplHandleKeyEvent()
1789 if ( !mpIMEInfos && !mbReadOnly && !rKEvt.GetKeyCode().IsMod2() ) in ImplHandleKeyEvent()
1825 if ( IsCharInput( rKEvt ) ) in ImplHandleKeyEvent()
1830 ImplInsertText( rKEvt.GetCharCode(), 0, sal_True ); in ImplHandleKeyEvent()
1853 void Edit::KeyInput( const KeyEvent& rKEvt ) in KeyInput() argument
1858 if ( mpSubEdit || !ImplHandleKeyEvent( rKEvt ) ) in KeyInput()
1859 Control::KeyInput( rKEvt ); in KeyInput()