Home
last modified time | relevance | path

Searched refs:aKeyEvt (Results 1 – 11 of 11) sorted by relevance

/trunk/main/vcl/win/source/window/
H A Dsalframe.cxx3773 SalKeyEvent aKeyEvt; in ImplHandleKeyMsg() local
3776 aKeyEvt.mnCode = sal::static_int_cast<sal_uInt16>(KEYGROUP_NUM + wParam - '0'); in ImplHandleKeyMsg()
3778 aKeyEvt.mnCode = sal::static_int_cast<sal_uInt16>(KEYGROUP_ALPHA + wParam - 'A'); in ImplHandleKeyMsg()
3780 aKeyEvt.mnCode = sal::static_int_cast<sal_uInt16>(KEYGROUP_ALPHA + wParam - 'a'); in ImplHandleKeyMsg()
3782 aKeyEvt.mnCode = KEY_RETURN; in ImplHandleKeyMsg()
3784 aKeyEvt.mnCode = KEY_ESCAPE; in ImplHandleKeyMsg()
3786 aKeyEvt.mnCode = KEY_TAB; in ImplHandleKeyMsg()
3788 aKeyEvt.mnCode = KEY_SPACE; in ImplHandleKeyMsg()
3790 aKeyEvt.mnCode = 0; in ImplHandleKeyMsg()
3792 aKeyEvt.mnTime = GetMessageTime(); in ImplHandleKeyMsg()
[all …]
/trunk/main/vcl/source/control/
H A Dlstbox.cxx954 KeyEvent aKeyEvt = *rNEvt.GetKeyEvent(); in PreNotify() local
955 switch( aKeyEvt.GetKeyCode().GetCode() ) in PreNotify()
960 aKeyEvt.GetKeyCode().IsMod2() ) in PreNotify()
970 nDone = mpImplLB->ProcessKeyInput( aKeyEvt ); in PreNotify()
977 aKeyEvt.GetKeyCode().IsMod2() ) in PreNotify()
984 nDone = mpImplLB->ProcessKeyInput( aKeyEvt ); in PreNotify()
992 mpImplLB->ProcessKeyInput( aKeyEvt ); in PreNotify()
1000 nDone = mpImplLB->ProcessKeyInput( aKeyEvt ); in PreNotify()
H A Dcombobox.cxx827 KeyEvent aKeyEvt = *rNEvt.GetKeyEvent(); in Notify() local
828 sal_uInt16 nKeyCode = aKeyEvt.GetKeyCode().GetCode(); in Notify()
837 … nKeyCode == KEY_DOWN ) && mpFloatWin && !mpFloatWin->IsInPopupMode() && aKeyEvt.GetKeyCode().IsMo… in Notify()
848 …( ( nKeyCode == KEY_UP ) && mpFloatWin && mpFloatWin->IsInPopupMode() && aKeyEvt.GetKeyCode().IsMo… in Notify()
855 nDone = mpImplLB->ProcessKeyInput( aKeyEvt ); in Notify()
864 mpImplLB->ProcessKeyInput( aKeyEvt ); in Notify()
/trunk/main/vcl/unx/generic/window/
H A Dsalframe.cxx3275 SalKeyEvent aKeyEvt; in HandleKeyEvent() local
3376 aKeyEvt.mnCode = KEY_MENU | nModCode; in HandleKeyEvent()
3377 aKeyEvt.mnRepeat = 0; in HandleKeyEvent()
3378 aKeyEvt.mnTime = pEvent->time; in HandleKeyEvent()
3379 aKeyEvt.mnCharCode = 0; in HandleKeyEvent()
3380 nRet = CallCallback( SALEVENT_KEYINPUT, &aKeyEvt ); in HandleKeyEvent()
3381 nRet = CallCallback( SALEVENT_KEYUP, &aKeyEvt ); in HandleKeyEvent()
3509 aKeyEvt.mnCode = nKeyCode | nModCode; in HandleKeyEvent()
3510 aKeyEvt.mnRepeat = 0; in HandleKeyEvent()
3511 aKeyEvt.mnTime = pEvent->time; in HandleKeyEvent()
[all …]
/trunk/main/basctl/source/basicide/
H A Dbasicbox.cxx272 KeyEvent aKeyEvt = *rNEvt.GetKeyEvent(); in PreNotify() local
273 sal_uInt16 nKeyCode = aKeyEvt.GetKeyCode().GetCode(); in PreNotify()
/trunk/main/svx/source/tbxctrls/
H A Dcolrctrl.cxx616 KeyEvent aKeyEvt = *rNEvt.GetKeyEvent(); in Notify() local
617 sal_uInt16 nKeyCode = aKeyEvt.GetKeyCode().GetCode(); in Notify()
/trunk/main/vcl/os2/source/window/
H A Dsalframe.cxx2828 SalKeyEvent aKeyEvt; in ImplHandleKeyMsg() local
2829 aKeyEvt.mnCode = nSVCode; in ImplHandleKeyMsg()
2830 aKeyEvt.mnTime = WinQueryMsgTime( pFrame->mhAB ); in ImplHandleKeyMsg()
2831 aKeyEvt.mnCode |= nModCode; in ImplHandleKeyMsg()
2832 aKeyEvt.mnCharCode = nSVCharCode; in ImplHandleKeyMsg()
2833 aKeyEvt.mnRepeat = nRepeat; in ImplHandleKeyMsg()
2839 &aKeyEvt ); in ImplHandleKeyMsg()
/trunk/main/vcl/unx/gtk/window/
H A Dgtkframe.cxx3136 SalKeyEvent aKeyEvt; in signalKey() local
3138 aKeyEvt.mnCode = KEY_MENU | nModCode; in signalKey()
3139 aKeyEvt.mnRepeat = 0; in signalKey()
3140 aKeyEvt.mnTime = pEvent->time; in signalKey()
3141 aKeyEvt.mnCharCode = 0; in signalKey()
3144 pThis->CallCallback( SALEVENT_KEYINPUT, &aKeyEvt ); in signalKey()
3147 pThis->CallCallback( SALEVENT_KEYUP, &aKeyEvt ); in signalKey()
/trunk/main/svtools/source/dialogs/
H A Dfiledlg2.cxx82 KeyEvent aKeyEvt = *rNEvt.GetKeyEvent(); in PreNotify() local
83 sal_Unicode cCharCode = aKeyEvt.GetCharCode(); in PreNotify()
106 if ( aKeyEvt.GetKeyCode().GetCode() == KEY_RETURN ) in PreNotify()
/trunk/main/vcl/source/window/
H A Dwinproc.cxx1096 KeyEvent aKeyEvt( (xub_Unicode)nCharCode, aKeyCode, nRepeat ); in ImplHandleKey() local
1097 NotifyEvent aNotifyEvt( nSVEvent, pChild, &aKeyEvt ); in ImplHandleKey()
1106 pChild->KeyInput( aKeyEvt ); in ImplHandleKey()
1111 pChild->KeyUp( aKeyEvt ); in ImplHandleKey()
/trunk/main/sc/source/ui/view/
H A Dgridwin.cxx257 KeyEvent aKeyEvt = *rNEvt.GetKeyEvent(); in PreNotify() local
258 KeyCode aCode = aKeyEvt.GetKeyCode(); in PreNotify()