Searched refs:rawKey (Results 1 – 4 of 4) sorted by relevance
/haiku/src/apps/sudoku/ |
H A D | SudokuView.cpp | 737 int32 rawKey = bytes[0]; in KeyDown() 740 Looper()->CurrentMessage()->FindInt32("raw_char", &rawKey); in KeyDown() 744 _InsertKey(rawKey, modifiers); in KeyDown() 1066 SudokuView::_InsertKey(char rawKey, int32 modifiers) in _InsertKey() argument 1068 if (!fEditable || !_ValidCharacter(rawKey) in _InsertKey() 1072 uint32 value = rawKey - _BaseCharacter(); in _InsertKey()
|
H A D | SudokuView.h | 106 void _InsertKey(char rawKey, int32 modifiers);
|
/haiku/src/kits/interface/ |
H A D | Window.cpp | 3590 BWindow::_Switcher(int32 rawKey, uint32 modifiers, bool repeat) in _Switcher() argument 3604 message.AddInt32("key", rawKey); in _Switcher() 3653 int32 rawKey; in _HandleKeyDown() local 3654 event->FindInt32("key", &rawKey); in _HandleKeyDown() 3657 if ((key == B_TAB || rawKey == 0x11) && (modifiers & B_CONTROL_KEY) != 0) { in _HandleKeyDown() 3658 _Switcher(rawKey, modifiers, event->HasInt32("be:key_repeat")); in _HandleKeyDown() 3672 if (key == B_FUNCTION_KEY && rawKey == B_PRINT_KEY) { in _HandleKeyDown() 3779 int32 rawKey; in _HandleUnmappedKeyDown() local 3781 || event->FindInt32("key", &rawKey)) in _HandleUnmappedKeyDown() 3785 if (rawKey == 0x11 && (modifiers & B_CONTROL_KEY) != 0) { in _HandleUnmappedKeyDown() [all …]
|
/haiku/headers/os/interface/ |
H A D | Window.h | 359 void _Switcher(int32 rawKey, uint32 modifiers,
|