Home
last modified time | relevance | path

Searched refs:keysym (Results 1 - 20 of 20) sorted by relevance

/third_party/python/Lib/idlelib/
H A Dautocomplete_w.py326 keysym = event.keysym
331 if keysym != "Tab":
333 if (len(keysym) == 1 or keysym in ("underscore", "BackSpace")
334 or (self.mode == FILES and keysym in
338 if len(keysym) == 1:
339 self._change_start(self.start + keysym)
340 elif keysym == "underscore":
342 elif keysym
[all...]
H A Deditor.py386 if (event.state & 4) != 0 and event.keysym == "Home":
/third_party/glfw/src/
H A Dxkb_unicode.c39 * This module converts keysym values into the corresponding ISO 10646
42 * The array keysymtab[] contains pairs of X11 keysym values for graphical
44 * _glfwKeySym2Unicode() maps a keysym onto a Unicode value using a binary
45 * search, therefore keysymtab[] must remain SORTED by keysym value.
48 * U-00FFFFFF by a keysym value in the range 0x01000000 to 0x01ffffff.
53 * U+ABCD you can directly use keysym 0x0100abcd.
69 unsigned short keysym; member
909 uint32_t _glfwKeySym2Unicode(unsigned int keysym) in _glfwKeySym2Unicode() argument
916 if ((keysym >= 0x0020 && keysym < in _glfwKeySym2Unicode()
[all...]
H A Dxkb_unicode.h29 uint32_t _glfwKeySym2Unicode(unsigned int keysym);
H A Dx11_window.c1302 KeySym keysym; in processEvent() local
1303 XLookupString(&event->xkey, NULL, 0, &keysym, NULL); in processEvent()
1307 const uint32_t codepoint = _glfwKeySym2Unicode(keysym); in processEvent()
2916 const KeySym keysym = XkbKeycodeToKeysym(_glfw.x11.display, in _glfwGetScancodeNameX11() local
2918 if (keysym == NoSymbol) in _glfwGetScancodeNameX11()
2921 const uint32_t codepoint = _glfwKeySym2Unicode(keysym); in _glfwGetScancodeNameX11()
H A Dx11_platform.h33 #include <X11/keysym.h>
H A Dwl_window.c1194 const xkb_keysym_t keysym = composeSymbol(keysyms[0]); in inputText() local
1195 const uint32_t codepoint = _glfwKeySym2Unicode(keysym); in inputText()
2720 "Wayland: Failed to retrieve keysym for key name"); in _glfwGetScancodeNameWayland()
/third_party/skia/tools/sk_app/unix/
H A Dkeysym2ucs.c2 * This module converts keysym values into the corresponding ISO 10646
5 * The array keysymtab[] contains pairs of X11 keysym values for graphical
7 * keysym2ucs() maps a keysym onto a Unicode value using a binary search,
8 * therefore keysymtab[] must remain SORTED by keysym value.
10 * The keysym -> UTF-8 conversion will hopefully one day be provided
15 * U-00FFFFFF by a keysym value in the range 0x01000000 to 0x01ffffff.
20 * U+ABCD you can directly use keysym 0x0100abcd.
40 unsigned short keysym; member
818 long keysym2ucs(KeySym keysym) in keysym2ucs() argument
825 if ((keysym > in keysym2ucs()
[all...]
H A DWindow_unix.cpp194 static skui::Key get_key(KeySym keysym) { in get_key() argument
227 if (gPair[i].fXK == keysym) { in get_key()
297 KeySym keysym = XkbKeycodeToKeysym(fDisplay, event.xkey.keycode, 0, shiftLevel); in handleEvent() local
298 skui::Key key = get_key(keysym); in handleEvent()
301 if (keysym == XK_Escape) { in handleEvent()
307 long uni = keysym2ucs(keysym); in handleEvent()
315 KeySym keysym = XkbKeycodeToKeysym(fDisplay, event.xkey.keycode, in handleEvent() local
317 skui::Key key = get_key(keysym); in handleEvent()
/third_party/skia/third_party/externals/libwebp/extras/
H A Dvwebp_sdl.c42 switch (event.key.keysym.sym) { in ProcessEvents()
/third_party/vk-gl-cts/framework/platform/lnx/X11/
H A DtcuLnxX11.hpp33 #include <X11/keysym.h>
/third_party/pulseaudio/src/modules/x11/
H A Dmodule-x11-cork-request.c31 #include <X11/keysym.h>
104 pa_log_debug("Triggering X11 keysym: %s", XKeysymToString(sym)); in sink_input_send_event_hook_cb()
/third_party/python/Lib/tkinter/test/test_tkinter/
H A Dtest_misc.py242 e.keysym = '??'
265 e.keysym = 'Key-A'
275 " keysym=Key-A keycode=65 char='A'"
/third_party/ffmpeg/libavdevice/
H A Dsdl2.c254 switch (event.key.keysym.sym) { in sdl2_write_packet()
H A Dopengl_enc.c357 switch (event.key.keysym.sym) { in opengl_sdl_process_events()
/third_party/skia/third_party/externals/imgui/backends/
H A Dimgui_impl_sdl.cpp143 int key = event->key.keysym.scancode; in ImGui_ImplSDL2_ProcessEvent()
/third_party/skia/third_party/externals/libpng/contrib/gregbook/
H A Drpng-x.c97 #include <X11/keysym.h>
H A Drpng2-x.c116 #include <X11/keysym.h> /* defines XK_* macros */
/third_party/ffmpeg/fftools/
H A Dffplay.c3278 if (exit_on_keydown || event.key.keysym.sym == SDLK_ESCAPE || event.key.keysym.sym == SDLK_q) { in event_loop()
3285 switch (event.key.keysym.sym) { in event_loop()
/third_party/python/Lib/tkinter/
H A D__init__.py249 keysym - keysym of the event as a string (KeyPress, KeyRelease)
250 keysym_num - keysym of the event as a number (KeyPress, KeyRelease)
283 # keysym_num duplicates keysym
286 'state', 'keysym', 'keycode', 'char',
1629 # keysym as decimal: KeyPress and KeyRelease events only
1646 e.keysym = K

Completed in 39 milliseconds