/reactos/modules/rostests/apitests/user32/ |
H A D | RegisterHotKey.c | 55 RegisterHotKey(NULL, 1, MOD_CONTROL, 0); in START_TEST() 56 RegisterHotKey(NULL, 2, MOD_CONTROL, 'U'); in START_TEST() 57 RegisterHotKey(NULL, 3, MOD_CONTROL | MOD_ALT, 0); in START_TEST() 72 expect_hotkey(2, MOD_CONTROL, 'U'); in START_TEST() 82 expect_hotkey(2, MOD_CONTROL, 'U'); in START_TEST() 114 expect_hotkey(3, MOD_CONTROL, VK_MENU); in START_TEST() 144 expect_hotkey(3, MOD_CONTROL, VK_MENU); in START_TEST() 164 expect_hotkey(4, MOD_CONTROL | MOD_ALT, 'U'); in START_TEST() 178 expect_hotkey(4, MOD_CONTROL | MOD_ALT, 'U'); in START_TEST() 190 expect_hotkey(2, MOD_CONTROL, 'U'); in START_TEST() [all …]
|
/reactos/win32ss/user/ntuser/ |
H A D | hotkey.c | 74 fModifiers |= MOD_CONTROL; in IntGetModifiers() 524 …if (fsModifiers & ~(MOD_ALT|MOD_CONTROL|MOD_SHIFT|MOD_WIN)) // FIXME: Does Win2k3 support MOD_NORE… in NtUserRegisterHotKey()
|
H A D | ime.c | 17 #define MOD_KEYS (MOD_CONTROL | MOD_SHIFT | MOD_ALT | MOD_WIN) 297 if (IS_KEY_DOWN(KeyState, VK_LCONTROL)) uModifiers |= (MOD_CONTROL | MOD_LEFT); in IntCheckImeHotKey() 298 if (IS_KEY_DOWN(KeyState, VK_RCONTROL)) uModifiers |= (MOD_CONTROL | MOD_RIGHT); in IntCheckImeHotKey()
|
H A D | window.c | 3802 UserRegisterHotKey(WndShell, SC_TASKLIST, MOD_CONTROL, VK_ESCAPE); in NtUserSetShellWindowEx()
|
/reactos/base/system/winlogon/ |
H A D | sas.c | 1215 if (!RegisterHotKey(hwndSAS, HK_CTRL_ALT_DEL, MOD_CONTROL | MOD_ALT, VK_DELETE)) in RegisterHotKeys() 1222 …Session->TaskManHotkey = RegisterHotKey(hwndSAS, HK_CTRL_SHIFT_ESC, MOD_CONTROL | MOD_SHIFT, VK_ES… in RegisterHotKeys() 1296 case MAKELONG(MOD_CONTROL | MOD_ALT, VK_DELETE): in SASWindowProc() 1304 case MAKELONG(MOD_CONTROL | MOD_SHIFT, VK_ESCAPE): in SASWindowProc()
|
/reactos/dll/win32/msctf/ |
H A D | utils.cpp | 424 g_uLangHotKeyModifiers = MOD_SHIFT | MOD_CONTROL; in InitLangChangeHotKey() 452 g_uKeyTipHotKeyModifiers = MOD_SHIFT | MOD_CONTROL; in InitLangChangeHotKey()
|
/reactos/win32ss/user/user32/windows/ |
H A D | input.c | 51 { IME_THOTKEY_IME_NONIME_TOGGLE, VK_SPACE, MOD_LEFT | MOD_RIGHT | MOD_CONTROL, NULL }, 58 { IME_CHOTKEY_IME_NONIME_TOGGLE, VK_SPACE, MOD_LEFT | MOD_RIGHT | MOD_CONTROL, NULL }, 133 #define MOD_ALL_MODS (MOD_ALT | MOD_CONTROL | MOD_SHIFT | MOD_WIN) in CliImmSetHotKeyWorker()
|
/reactos/modules/rostests/tests/winhello/ |
H A D | winhello.c | 597 RegisterHotKey(hWnd, CTRLC, MOD_CONTROL, VK_C); in MainWndProc() 598 RegisterHotKey(hWnd, ALTF1, MOD_CONTROL | MOD_ALT, VK_F1); in MainWndProc()
|
/reactos/modules/rosapps/applications/explorer-old/taskbar/ |
H A D | desktopbar.cpp | 245 RegisterHotKey(_hwnd, IDHK_STARTMENU, MOD_CONTROL, VK_ESCAPE); in RegisterHotkeys()
|
/reactos/sdk/include/psdk/ |
H A D | imm.h | 185 #define MOD_CONTROL 0x0002 macro
|
H A D | winuser.h | 2645 #define MOD_CONTROL 0x0002 macro
|
/reactos/base/applications/sndvol32/ |
H A D | sndvol32.c | 1253 RegisterHotKey(hwnd, HOTKEY_CTRL_S, MOD_CONTROL, 'S'); in MainWindowProc()
|
/reactos/base/shell/explorer/ |
H A D | traywnd.cpp | 2400 RegisterHotKey(m_hWnd, IDHK_FIND_COMPUTER, MOD_WIN|MOD_CONTROL, 'F'); in OnCreate()
|