summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-07-25 20:19:59 -0400
committerMikael Magnusson <mikachu@comhem.se>2007-07-26 10:48:06 +0200
commit47e7aa82dc9f390c809151f87c81f33b5b408221 (patch)
treeeb7af96fe292ea38bb916160dac1753a1d2a376b /openbox
parent92f80b2557b36875b8d173ba3d1c782772b601d7 (diff)
fix for xkb weirdness, to fix a bug introduced in 3.4.3, where releasing the super mod key would not end interactive actions.
Somehow Super_L is being bound to Mod4Mask without being in the modifier table. So we're doing some workarounds to find _all_ the keycodes for Super_L and use any of them to count as Mod4Mask.
Diffstat (limited to 'openbox')
-rw-r--r--openbox/modkeys.c54
1 files changed, 44 insertions, 10 deletions
diff --git a/openbox/modkeys.c b/openbox/modkeys.c
index 9e8da321..c993cfc1 100644
--- a/openbox/modkeys.c
+++ b/openbox/modkeys.c
@@ -35,7 +35,21 @@
static void set_modkey_mask(guchar mask, KeySym sym);
-static XModifierKeymap *modmap;
+/* This is 8 lists of keycodes that are bound to the given mod mask.
+ If contains more than the one given to us by X cuz XKB is weird apparently.
+ We will look up all keycodes for a given keysym that is bound to the mask,
+ and add them all here.
+
+ With XKB, you can have a keycode bound to a modifier that isn't in the
+ modifier map somehow. So this means that when we try translate from the
+ KeyRelease to a mod mask, we are unable to. So this array stores *all*
+ the KeyCodes for each KeySym for each KeyCode bound to a mod mask.
+ Confused? Haha...
+
+ ModMask -> n KeyCodes -> n*m KeySyms (up to m for each KeyCode) ->
+ n*m*p KeyCodes (up to p for each KeySym)
+*/
+static GArray *modmap[NUM_MASKS];
static KeySym *keymap;
static gint min_keycode, max_keycode, keysyms_per_keycode;
/* This is a bitmask of the different masks for each modifier key */
@@ -48,14 +62,15 @@ static gboolean hyper_l = FALSE;
void modkeys_startup(gboolean reconfigure)
{
- gint i, j, k;
+ static XModifierKeymap *xmodmap;
+ gint i, j, k, l, m;
/* reset the keys to not be bound to any masks */
for (i = 0; i < OB_MODKEY_NUM_KEYS; ++i)
modkeys_keys[i] = 0;
- modmap = XGetModifierMapping(ob_display);
- g_assert(modmap->max_keypermod > 0);
+ xmodmap = XGetModifierMapping(ob_display);
+ g_assert(xmodmap->max_keypermod > 0);
XDisplayKeycodes(ob_display, &min_keycode, &max_keycode);
keymap = XGetKeyboardMapping(ob_display, min_keycode,
@@ -66,17 +81,31 @@ void modkeys_startup(gboolean reconfigure)
/* go through each of the modifier masks (eg ShiftMask, CapsMask...) */
for (i = 0; i < NUM_MASKS; ++i) {
+ /* reset the modmap list */
+ modmap[i] = g_array_new(FALSE, FALSE, sizeof(KeyCode));
+
/* go through each keycode that is bound to the mask */
- for (j = 0; j < modmap->max_keypermod; ++j) {
+ for (j = 0; j < xmodmap->max_keypermod; ++j) {
KeySym sym;
/* get a keycode that is bound to the mask (i) */
- KeyCode keycode = modmap->modifiermap[i*modmap->max_keypermod + j];
+ KeyCode keycode = xmodmap->modifiermap[i*xmodmap->max_keypermod+j];
if (keycode) {
/* go through each keysym bound to the given keycode */
for (k = 0; k < keysyms_per_keycode; ++k) {
sym = keymap[(keycode-min_keycode) * keysyms_per_keycode +
k];
if (sym != NoSymbol) {
+ /* find all keycodes for the given keysym */
+ for (l = min_keycode; l <= max_keycode; ++l)
+ for (m = 0; m < keysyms_per_keycode; ++m)
+ if (keymap[(l-min_keycode) *
+ keysyms_per_keycode + m] == sym)
+ {
+ /* add all keycodes for the keysym to our
+ modmap */
+ g_array_append_val(modmap[i], l);
+ }
+
/* bind the key to the mask (e.g. Alt_L => Mod1Mask) */
set_modkey_mask(nth_mask(i), sym);
}
@@ -89,17 +118,22 @@ void modkeys_startup(gboolean reconfigure)
modkeys_keys[OB_MODKEY_KEY_CAPSLOCK] = LockMask;
modkeys_keys[OB_MODKEY_KEY_SHIFT] = ShiftMask;
modkeys_keys[OB_MODKEY_KEY_CONTROL] = ControlMask;
+
+ XFreeModifiermap(xmodmap);
}
void modkeys_shutdown(gboolean reconfigure)
{
- XFreeModifiermap(modmap);
+ guint i;
+
+ for (i = 0; i < NUM_MASKS; ++i)
+ g_array_free(modmap[i], TRUE);
XFree(keymap);
}
guint modkeys_keycode_to_mask(guint keycode)
{
- gint i, j;
+ guint i, j;
guint mask = 0;
if (keycode == NoSymbol) return 0;
@@ -107,9 +141,9 @@ guint modkeys_keycode_to_mask(guint keycode)
/* go through each of the modifier masks (eg ShiftMask, CapsMask...) */
for (i = 0; i < NUM_MASKS; ++i) {
/* go through each keycode that is bound to the mask */
- for (j = 0; j < modmap->max_keypermod; ++j) {
+ for (j = 0; j < modmap[i]->len; ++j) {
/* compare with a keycode that is bound to the mask (i) */
- if (modmap->modifiermap[i*modmap->max_keypermod + j] == keycode)
+ if (g_array_index(modmap[i], KeyCode, j) == keycode)
mask |= nth_mask(i);
}
}