2 * vim:ts=4:sw=4:expandtab
4 * i3 - an improved dynamic tiling window manager
5 * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
11 #include <xcb/xcb_keysyms.h>
15 extern xcb_connection_t *conn;
18 * All-in-one function which returns the modifier mask (XCB_MOD_MASK_*) for the
19 * given keysymbol, for example for XCB_NUM_LOCK (usually configured to mod2).
21 * This function initiates one round-trip. Use get_mod_mask_for() directly if
22 * you already have the modifier mapping and key symbols.
25 uint32_t aio_get_mod_mask_for(uint32_t keysym, xcb_key_symbols_t *symbols) {
26 xcb_get_modifier_mapping_cookie_t cookie;
27 xcb_get_modifier_mapping_reply_t *modmap_r;
31 /* Get the current modifier mapping (this is blocking!) */
32 cookie = xcb_get_modifier_mapping(conn);
33 if (!(modmap_r = xcb_get_modifier_mapping_reply(conn, cookie, NULL)))
36 uint32_t result = get_mod_mask_for(keysym, symbols, modmap_r);
42 * Returns the modifier mask (XCB_MOD_MASK_*) for the given keysymbol, for
43 * example for XCB_NUM_LOCK (usually configured to mod2).
45 * This function does not initiate any round-trips.
48 uint32_t get_mod_mask_for(uint32_t keysym,
49 xcb_key_symbols_t *symbols,
50 xcb_get_modifier_mapping_reply_t *modmap_reply) {
51 xcb_keycode_t *codes, *modmap;
52 xcb_keycode_t mod_code;
54 modmap = xcb_get_modifier_mapping_keycodes(modmap_reply);
56 /* Get the list of keycodes for the given symbol */
57 if (!(codes = xcb_key_symbols_get_keycode(symbols, keysym)))
60 /* Loop through all modifiers (Mod1-Mod5, Shift, Control, Lock) */
61 for (int mod = 0; mod < 8; mod++)
62 for (int j = 0; j < modmap_reply->keycodes_per_modifier; j++) {
63 /* Store the current keycode (for modifier 'mod') */
64 mod_code = modmap[(mod * modmap_reply->keycodes_per_modifier) + j];
65 /* Check if that keycode is in the list of previously resolved
66 * keycodes for our symbol. If so, return the modifier mask. */
67 for (xcb_keycode_t *code = codes; *code; code++) {
68 if (*code != mod_code)
72 /* This corresponds to the XCB_MOD_MASK_* constants */