summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuentin Glidic <sardemff7+git@sardemff7.net>2016-02-23 10:44:36 +0100
committerQuentin Glidic <sardemff7+git@sardemff7.net>2016-02-23 17:34:31 +0100
commit3029e05ac739cbfe026c997463dc4a57fd97a25e (patch)
tree02728d6359c1c4c6113a207aeda997a1715f58a3
parent590e61b4174cf7dfac1ec9520c3a9a8b8a0bbf1d (diff)
keybindings: Rework modmask matching
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
-rw-r--r--include/x11-helper.h7
-rw-r--r--source/keyb.c11
-rw-r--r--source/view.c2
-rw-r--r--source/x11-helper.c129
4 files changed, 84 insertions, 65 deletions
diff --git a/include/x11-helper.h b/include/x11-helper.h
index 496e5453..6e4a9d29 100644
--- a/include/x11-helper.h
+++ b/include/x11-helper.h
@@ -100,6 +100,13 @@ void release_keyboard ( Display *display );
int take_keyboard ( Display *display, Window w );
/**
+ * @param mask The mask to canonilize
+ *
+ * @return The canonilized mask
+ */
+unsigned int x11_canonalize_mask ( unsigned int mask );
+
+/**
* @param combo String representing the key combo
* @param mod [out] The modifier specified (or AnyModifier if not specified)
* @param key [out] The key specified
diff --git a/source/keyb.c b/source/keyb.c
index 4ed04a67..4c246022 100644
--- a/source/keyb.c
+++ b/source/keyb.c
@@ -26,8 +26,7 @@ typedef struct _DefaultBinding
char *keybinding;
} DefaultBinding;
-ActionBindingEntry abe[NUM_ABE];
-extern unsigned int CombinedMask;
+ActionBindingEntry abe[NUM_ABE];
/**
* LIST OF DEFAULT SETTINGS
@@ -139,12 +138,8 @@ int abe_test_action ( KeyBindingAction action, unsigned int mask, xkb_keysym_t k
for ( int iter = 0; iter < akb->num_bindings; iter++ ) {
const KeyBinding * const kb = &( akb->kb[iter] );
- if ( kb->keysym == key ) {
- // Bits 13 and 14 of the modifiers together are the group number, and
- // should be ignored when looking up key bindings
- if ( ( mask & ( CombinedMask ) ) == kb->modmask ) {
- return TRUE;
- }
+ if ( ( kb->keysym == key ) && ( kb->modmask == mask ) ) {
+ return TRUE;
}
}
diff --git a/source/view.c b/source/view.c
index 42c4fc00..61846b53 100644
--- a/source/view.c
+++ b/source/view.c
@@ -1328,7 +1328,7 @@ static void rofi_view_mainloop_iter ( RofiViewState *state, xcb_generic_event_t
len = xkb_state_key_get_utf8 ( xkb->state, xkpe->detail, pad, sizeof ( pad ) );
}
- unsigned int modstate = xkpe->state;
+ unsigned int modstate = x11_canonalize_mask ( xkpe->state );
if ( key != XKB_KEY_NoSymbol ) {
// Handling of paste
diff --git a/source/x11-helper.c b/source/x11-helper.c
index ad057a87..15cafe08 100644
--- a/source/x11-helper.c
+++ b/source/x11-helper.c
@@ -54,22 +54,29 @@
h1 ) ( OVERLAP ( ( x ), ( w ), ( x1 ), \
( w1 ) ) && OVERLAP ( ( y ), ( h ), ( y1 ), ( h1 ) ) )
#include "x11-helper.h"
+#include "xkb-internal.h"
-Atom netatoms[NUM_NETATOMS];
-const char *netatom_names[] = { EWMH_ATOMS ( ATOM_CHAR ) };
-// Mask indicating num-lock.
-unsigned int NumlockMask = 0;
-unsigned int AltMask = 0;
-unsigned int AltRMask = 0;
-unsigned int SuperRMask = 0;
-unsigned int SuperLMask = 0;
-unsigned int HyperRMask = 0;
-unsigned int HyperLMask = 0;
-unsigned int MetaRMask = 0;
-unsigned int MetaLMask = 0;
-unsigned int CombinedMask = 0;
-
-extern Colormap map;
+enum
+{
+ X11MOD_SHIFT,
+ X11MOD_CONTROL,
+ X11MOD_ALT,
+ X11MOD_ALTR,
+ X11MOD_METAR,
+ X11MOD_METAL,
+ X11MOD_SUPERR,
+ X11MOD_SUPERL,
+ X11MOD_HYPERR,
+ X11MOD_HYPERL,
+ X11MOD_ANY,
+ NUM_X11MOD
+};
+
+Atom netatoms[NUM_NETATOMS];
+const char *netatom_names[] = { EWMH_ATOMS ( ATOM_CHAR ) };
+static unsigned int x11_mod_masks[NUM_X11MOD];
+
+extern Colormap map;
// retrieve a property of any type from a window
int window_get_prop ( Display *display, Window w, Atom prop, Atom *type, int *items, void *buffer, unsigned int bytes )
@@ -346,16 +353,9 @@ void release_keyboard ( Display *display )
XUngrabKeyboard ( display, CurrentTime );
}
-/**
- * @param display The connection to the X server.
- *
- * Figure out what entry in the modifiermap is NumLock.
- * This sets global variable: NumlockMask
- */
-static void x11_figure_out_numlock_mask ( Display *display )
+static void x11_figure_out_masks ( Display *display )
{
XModifierKeymap *modmap = XGetModifierMapping ( display );
- KeyCode kc = XKeysymToKeycode ( display, XK_Num_Lock );
KeyCode kc_altl = XKeysymToKeycode ( display, XK_Alt_L );
KeyCode kc_altr = XKeysymToKeycode ( display, XK_Alt_R );
KeyCode kc_superr = XKeysymToKeycode ( display, XK_Super_R );
@@ -364,41 +364,58 @@ static void x11_figure_out_numlock_mask ( Display *display )
KeyCode kc_hyperr = XKeysymToKeycode ( display, XK_Hyper_R );
KeyCode kc_metal = XKeysymToKeycode ( display, XK_Meta_L );
KeyCode kc_metar = XKeysymToKeycode ( display, XK_Meta_R );
+
+ x11_mod_masks[X11MOD_SHIFT] |= ShiftMask;
+ x11_mod_masks[X11MOD_CONTROL] |= ControlMask;
for ( int i = 0; i < 8; i++ ) {
for ( int j = 0; j < ( int ) modmap->max_keypermod; j++ ) {
- if ( kc && modmap->modifiermap[i * modmap->max_keypermod + j] == kc ) {
- NumlockMask = ( 1 << i );
- }
if ( kc_altl && modmap->modifiermap[i * modmap->max_keypermod + j] == kc_altl ) {
- AltMask |= ( 1 << i );
+ x11_mod_masks[X11MOD_ALT] |= ( 1 << i );
}
if ( kc_altr && modmap->modifiermap[i * modmap->max_keypermod + j] == kc_altr ) {
- AltRMask |= ( 1 << i );
+ x11_mod_masks[X11MOD_ALTR] |= ( 1 << i );
}
if ( kc_superr && modmap->modifiermap[i * modmap->max_keypermod + j] == kc_superr ) {
- SuperRMask |= ( 1 << i );
+ x11_mod_masks[X11MOD_SUPERR] |= ( 1 << i );
}
if ( kc_superl && modmap->modifiermap[i * modmap->max_keypermod + j] == kc_superl ) {
- SuperLMask |= ( 1 << i );
+ x11_mod_masks[X11MOD_SUPERL] |= ( 1 << i );
}
if ( kc_hyperr && modmap->modifiermap[i * modmap->max_keypermod + j] == kc_hyperr ) {
- HyperRMask |= ( 1 << i );
+ x11_mod_masks[X11MOD_HYPERR] |= ( 1 << i );
}
if ( kc_hyperl && modmap->modifiermap[i * modmap->max_keypermod + j] == kc_hyperl ) {
- HyperLMask |= ( 1 << i );
+ x11_mod_masks[X11MOD_HYPERL] |= ( 1 << i );
}
if ( kc_metar && modmap->modifiermap[i * modmap->max_keypermod + j] == kc_metar ) {
- MetaRMask |= ( 1 << i );
+ x11_mod_masks[X11MOD_METAR] |= ( 1 << i );
}
if ( kc_metal && modmap->modifiermap[i * modmap->max_keypermod + j] == kc_metal ) {
- MetaLMask |= ( 1 << i );
+ x11_mod_masks[X11MOD_METAL] |= ( 1 << i );
}
}
}
- // Combined mask, without NumLock
- CombinedMask = ShiftMask | MetaLMask | MetaRMask | AltMask | AltRMask | SuperRMask | SuperLMask | HyperLMask | HyperRMask |
- ControlMask;
XFreeModifiermap ( modmap );
+
+ gsize i;
+ for ( i = 0; i < X11MOD_ANY; ++i ) {
+ x11_mod_masks[X11MOD_ANY] |= x11_mod_mask[i];
+ }
+}
+
+unsigned int x11_canonalize_mask ( unsigned int mask )
+{
+ // Bits 13 and 14 of the modifiers together are the group number, and
+ // should be ignored when looking up key bindings
+ mask &= x11_mod_mask[X11MOD_ANY];
+
+ gsize i;
+ for ( i = 0; i < X11MOD_ANY; ++i ) {
+ if ( mask & x11_mod_mask[i] ) {
+ mask |= x11_mod_mask[i];
+ }
+ }
+ return mask;
}
// convert a Mod+key arg to mod mask and keysym
@@ -408,56 +425,56 @@ void x11_parse_key ( char *combo, unsigned int *mod, xkb_keysym_t *key )
unsigned int modmask = 0;
if ( strcasestr ( combo, "shift" ) ) {
- modmask |= ShiftMask;
+ modmask |= x11_mod_masks[X11MOD_SHIFT];
}
if ( strcasestr ( combo, "control" ) ) {
- modmask |= ControlMask;
+ modmask |= x11_mod_masks[X11MOD_CONTROL];
}
if ( strcasestr ( combo, "alt" ) ) {
- modmask |= AltMask;
- if ( AltMask == 0 ) {
+ modmask |= x11_mod_masks[X11MOD_ALT];
+ if ( x11_mod_masks[X11MOD_ALT] == 0 ) {
g_string_append_printf ( str, "X11 configured keyboard has no <b>Alt</b> key.\n" );
}
}
if ( strcasestr ( combo, "altgr" ) ) {
- modmask |= AltRMask;
- if ( AltRMask == 0 ) {
+ modmask |= x11_mod_masks[X11MOD_ALTR];
+ if ( x11_mod_masks[X11MOD_ALTR] == 0 ) {
g_string_append_printf ( str, "X11 configured keyboard has no <b>AltGR</b> key.\n" );
}
}
if ( strcasestr ( combo, "superr" ) ) {
- modmask |= SuperRMask;
- if ( SuperRMask == 0 ) {
+ modmask |= x11_mod_masks[X11MOD_SUPERR];
+ if ( x11_mod_masks[X11MOD_SUPERR] == 0 ) {
g_string_append_printf ( str, "X11 configured keyboard has no <b>SuperR</b> key.\n" );
}
}
if ( strcasestr ( combo, "superl" ) ) {
- modmask |= SuperLMask;
- if ( SuperLMask == 0 ) {
+ modmask |= x11_mod_masks[X11MOD_SUPERL];
+ if ( x11_mod_masks[X11MOD_SUPERL] == 0 ) {
g_string_append_printf ( str, "X11 configured keyboard has no <b>SuperL</b> key.\n" );
}
}
if ( strcasestr ( combo, "metal" ) ) {
- modmask |= MetaLMask;
- if ( MetaLMask == 0 ) {
+ modmask |= x11_mod_masks[X11MOD_METAL];
+ if ( x11_mod_masks[X11MOD_METAL] == 0 ) {
g_string_append_printf ( str, "X11 configured keyboard has no <b>MetaL</b> key.\n" );
}
}
if ( strcasestr ( combo, "metar" ) ) {
- modmask |= MetaRMask;
- if ( MetaRMask == 0 ) {
+ modmask |= x11_mod_masks[X11MOD_METAR];
+ if ( x11_mod_masks[X11MOD_METAR] == 0 ) {
g_string_append_printf ( str, "X11 configured keyboard has no <b>MetaR</b> key.\n" );
}
}
if ( strcasestr ( combo, "hyperl" ) ) {
- modmask |= HyperLMask;
- if ( HyperLMask == 0 ) {
+ modmask |= x11_mod_masks[X11MOD_HYPERL];
+ if ( x11_mod_masks[X11MOD_HYPERL] == 0 ) {
g_string_append_printf ( str, "X11 configured keyboard has no <b>HyperL</b> key.\n" );
}
}
if ( strcasestr ( combo, "hyperr" ) ) {
- modmask |= HyperRMask;
- if ( HyperRMask == 0 ) {
+ modmask |= x11_mod_masks[X11MOD_HYPERR];
+ if ( x11_mod_masks[X11MOD_HYPERR] == 0 ) {
g_string_append_printf ( str, "X11 configured keyboard has no <b>HyperR</b> key.\n" );
}
}
@@ -543,7 +560,7 @@ void x11_setup ( Display *display )
XSync ( display, False );
// determine numlock mask so we can bind on keys with and without it
- x11_figure_out_numlock_mask ( display );
+ x11_figure_out_masks ( display );
x11_create_frequently_used_atoms ( display );
}