Home
last modified time | relevance | path

Searched refs:handleKeyPress (Results 1 – 25 of 394) sorted by relevance

12345678910>>...16

/dports/graphics/kimageannotator/kImageAnnotator-0.5.3/tests/annotations/items/helper/
H A DKeyInputHelperTest.cpp30 keyInputHelper.handleKeyPress(&keyEvent); in TestHandleKeyPress_Should_EmitRemoveSignal_When_KeyIsBackspace()
44 keyInputHelper.handleKeyPress(&keyEvent); in TestHandleKeyPress_Should_EmitRemoveSignal_When_KeyIsDelete()
57 keyInputHelper.handleKeyPress(&keyEvent); in TestHandleKeyPress_Should_EmitInsertSignalWithNewLine_When_KeyIsReturnAndModifierShift()
70 keyInputHelper.handleKeyPress(&keyEvent); in TestHandleKeyPress_Should_EmitInsertSignalWithNewLine_When_KeyIsEnterAndModifierShift()
83 keyInputHelper.handleKeyPress(&keyEvent); in TestHandleKeyPress_Should_EmitEscape_When_KeyIsReturnAndNoModifier()
94 keyInputHelper.handleKeyPress(&keyEvent); in TestHandleKeyPress_Should_EmitEscape_When_KeyIsEnterAndNoModifier()
105 keyInputHelper.handleKeyPress(&keyEvent); in TestHandleKeyPress_Should_EmitEscapeSignal_When_KeyIsEscape()
117 keyInputHelper.handleKeyPress(&keyEvent); in TestHandleKeyPress_Should_EmitMoveSignal_When_KeyIsHome()
131 keyInputHelper.handleKeyPress(&keyEvent); in TestHandleKeyPress_Should_EmitMoveSignal_When_KeyIsEnd()
145 keyInputHelper.handleKeyPress(&keyEvent); in TestHandleKeyPress_Should_EmitMoveSignal_When_KeyIsArrowLeft()
[all …]
/dports/games/scummvm/scummvm-2.5.1/backends/platform/ios7/
H A Dios7_keyboard.mm171 [softKeyboard handleKeyPress:Common::KEYCODE_UP];
203 [softKeyboard handleKeyPress:Common::KEYCODE_F1];
207 [softKeyboard handleKeyPress:Common::KEYCODE_F2];
211 [softKeyboard handleKeyPress:Common::KEYCODE_F3];
215 [softKeyboard handleKeyPress:Common::KEYCODE_F4];
219 [softKeyboard handleKeyPress:Common::KEYCODE_F5];
223 [softKeyboard handleKeyPress:Common::KEYCODE_F6];
227 [softKeyboard handleKeyPress:Common::KEYCODE_F7];
297 [inputDelegate handleKeyPress:c];
309 - (void)handleKeyPress:(unichar)c {
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/backends/platform/ios7/
H A Dios7_keyboard.mm144 [softKeyboard handleKeyPress:Common::KEYCODE_UP];
172 [softKeyboard handleKeyPress:Common::KEYCODE_F1];
176 [softKeyboard handleKeyPress:Common::KEYCODE_F2];
180 [softKeyboard handleKeyPress:Common::KEYCODE_F3];
184 [softKeyboard handleKeyPress:Common::KEYCODE_F4];
188 [softKeyboard handleKeyPress:Common::KEYCODE_F5];
192 [softKeyboard handleKeyPress:Common::KEYCODE_F6];
196 [softKeyboard handleKeyPress:Common::KEYCODE_F7];
266 [inputDelegate handleKeyPress:c];
278 - (void)handleKeyPress:(unichar)c {
[all …]
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/lib_ui/ui/widgets/
H A Ddropdown_menu.cpp46 _menu->setKeyPressDelegate([this](int key) { return handleKeyPress(key); }); in init()
138 if (!handleKeyPress(e->key())) { in forwardKeyPress()
139 _menu->handleKeyPress(e); in forwardKeyPress()
143 bool DropdownMenu::handleKeyPress(int key) { in handleKeyPress() function in Ui::DropdownMenu
145 _activeSubmenu->handleKeyPress(key); in handleKeyPress()
/dports/net/tigervnc-server/tigervnc-1.12.0/vncviewer/
H A DViewport.cxx502 handleKeyPress(0x3a, XK_Caps_Lock); in pushLEDState()
507 handleKeyPress(0x45, XK_Num_Lock); in pushLEDState()
512 handleKeyPress(0x46, XK_Scroll_Lock); in pushLEDState()
639 handleKeyPress(0x1d, XK_Control_L); in handle()
641 handleKeyPress(0x38, XK_Alt_L); in handle()
1242 handleKeyPress(0x1d, XK_Control_L); in resolveAltGrDetection()
1344 handleKeyPress(0x1d, XK_Control_L); in popupContextMenu()
1351 handleKeyPress(0x38, XK_Alt_L); in popupContextMenu()
1361 handleKeyPress(0x1d, XK_Control_L); in popupContextMenu()
1362 handleKeyPress(0x38, XK_Alt_L); in popupContextMenu()
[all …]
/dports/net/tigervnc-viewer/tigervnc-1.12.0/vncviewer/
H A DViewport.cxx502 handleKeyPress(0x3a, XK_Caps_Lock); in pushLEDState()
507 handleKeyPress(0x45, XK_Num_Lock); in pushLEDState()
512 handleKeyPress(0x46, XK_Scroll_Lock); in pushLEDState()
639 handleKeyPress(0x1d, XK_Control_L); in handle()
641 handleKeyPress(0x38, XK_Alt_L); in handle()
1242 handleKeyPress(0x1d, XK_Control_L); in resolveAltGrDetection()
1344 handleKeyPress(0x1d, XK_Control_L); in popupContextMenu()
1351 handleKeyPress(0x38, XK_Alt_L); in popupContextMenu()
1361 handleKeyPress(0x1d, XK_Control_L); in popupContextMenu()
1362 handleKeyPress(0x38, XK_Alt_L); in popupContextMenu()
[all …]
/dports/audio/sayonara/sayonara-player-5bbf1399332d5d59362ad03bf625f9132be72206/src/Gui/Utils/SearchableWidget/
H A DSearchableView.cpp78 bool MiniSearcherViewConnector::handleKeyPress(QKeyEvent* e) in handleKeyPress() function in MiniSearcherViewConnector
80 return m->miniSearcher->handleKeyPress(e); in handleKeyPress()
276 bool SearchableViewInterface::handleKeyPress(QKeyEvent* e) in handleKeyPress() function in SearchableViewInterface
278 bool b = SelectionViewInterface::handleKeyPress(e); in handleKeyPress()
288 return m->minisearcher->handleKeyPress(e); in handleKeyPress()
H A DSearchableView.h55 bool handleKeyPress(QKeyEvent* e);
98 bool handleKeyPress(QKeyEvent* e) override;
133 bool processed = handleKeyPress(e); in keyPressEvent()
/dports/devel/okteta/okteta-0.26.6/gui/controller/
H A Dabstractcontroller.cpp20 bool AbstractController::handleKeyPress(QKeyEvent* keyEvent) in handleKeyPress() function in Okteta::AbstractController
22 return mParent ? mParent->handleKeyPress(keyEvent) : false; in handleKeyPress()
H A Dchareditor.cpp27 bool CharEditor::handleKeyPress(QKeyEvent* keyEvent) in handleKeyPress() function in Okteta::CharEditor
49 return keyUsed ? true : AbstractEditor::handleKeyPress(keyEvent); in handleKeyPress()
H A Dtabcontroller.cpp25 bool TabController::handleKeyPress(QKeyEvent* keyEvent) in handleKeyPress() function in Okteta::TabController
52 return keyUsed ? true : AbstractController::handleKeyPress(keyEvent); in handleKeyPress()
/dports/games/libretro-scummvm/scummvm-7b1e929/backends/platform/iphone/
H A Diphone_keyboard.mm54 [softKeyboard handleKeyPress:0x08];
66 [softKeyboard handleKeyPress:[character characterAtIndex:0]];
91 - (void)handleKeyPress:(unichar)c {
92 [inputDelegate handleKeyPress:c];
/dports/games/scummvm/scummvm-2.5.1/backends/platform/iphone/
H A Diphone_keyboard.mm54 [softKeyboard handleKeyPress:0x08];
66 [softKeyboard handleKeyPress:[character characterAtIndex:0]];
91 - (void)handleKeyPress:(unichar)c {
92 [inputDelegate handleKeyPress:c];
/dports/games/dunelegacy/dunelegacy-0.96.4/src/GUI/
H A DListBox.cpp85 bool ListBox::handleKeyPress(SDL_KeyboardEvent& key) { in handleKeyPress() function in ListBox
86 Widget::handleKeyPress(key); in handleKeyPress()
105 scrollbar.handleKeyPress(key); in handleKeyPress()
107 scrollbar.handleKeyPress(key); in handleKeyPress()
H A DTextView.cpp47 bool TextView::handleKeyPress(SDL_KeyboardEvent& key) { in handleKeyPress() function in TextView
48 Widget::handleKeyPress(key); in handleKeyPress()
50 scrollbar.handleKeyPress(key); in handleKeyPress()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/solaris/classes/sun/awt/X11/
H A DXFocusProxyWindow.java80 public void handleKeyPress(XEvent xev) { in handleKeyPress() method in XFocusProxyWindow
81 owner.handleKeyPress(xev); in handleKeyPress()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/solaris/classes/sun/awt/X11/
H A DXFocusProxyWindow.java80 public void handleKeyPress(XEvent xev) { in handleKeyPress() method in XFocusProxyWindow
81 owner.handleKeyPress(xev); in handleKeyPress()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXFocusProxyWindow.java81 public void handleKeyPress(XEvent xev) { in handleKeyPress() method in XFocusProxyWindow
82 owner.handleKeyPress(xev); in handleKeyPress()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXFocusProxyWindow.java81 public void handleKeyPress(XEvent xev) { in handleKeyPress() method in XFocusProxyWindow
82 owner.handleKeyPress(xev); in handleKeyPress()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXFocusProxyWindow.java81 public void handleKeyPress(XEvent xev) { in handleKeyPress() method in XFocusProxyWindow
82 owner.handleKeyPress(xev); in handleKeyPress()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.desktop/unix/classes/sun/awt/X11/
H A DXFocusProxyWindow.java81 public void handleKeyPress(XEvent xev) { in handleKeyPress() method in XFocusProxyWindow
82 owner.handleKeyPress(xev); in handleKeyPress()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXFocusProxyWindow.java81 public void handleKeyPress(XEvent xev) { in handleKeyPress() method in XFocusProxyWindow
82 owner.handleKeyPress(xev); in handleKeyPress()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXFocusProxyWindow.java81 public void handleKeyPress(XEvent xev) { in handleKeyPress() method in XFocusProxyWindow
82 owner.handleKeyPress(xev); in handleKeyPress()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXFocusProxyWindow.java81 public void handleKeyPress(XEvent xev) { in handleKeyPress() method in XFocusProxyWindow
82 owner.handleKeyPress(xev); in handleKeyPress()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXFocusProxyWindow.java81 public void handleKeyPress(XEvent xev) { in handleKeyPress() method in XFocusProxyWindow
82 owner.handleKeyPress(xev); in handleKeyPress()

12345678910>>...16