1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
|
/* bind.c
* Copyright (C) 2008 Alex Graveley
* Copyright (C) 2010 Ulrik Sverdrup <ulrik.sverdrup@gmail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <gtk/gtk.h>
#include <gdk/gdk.h>
#include <gdk/gdkx.h>
#include <X11/Xlib.h>
#include <X11/XKBlib.h>
#include "keybinder.h"
/* Uncomment the next line to print a debug trace. */
/* #define DEBUG */
#ifdef DEBUG
# define TRACE(x) x
#else
# define TRACE(x) do {} while (FALSE);
#endif
#define MODIFIERS_ERROR ((GdkModifierType)(-1))
#define MODIFIERS_NONE 0
/* Group to use: Which of configured keyboard Layouts
* Since grabbing a key blocks its use, we can't grab the corresponding
* (physical) keys for alternative layouts.
*
* Because of this, we interpret all keys relative to the default
* keyboard layout.
*
* For example, if you bind "w", the physical W key will respond to
* the bound key, even if you switch to a keyboard layout where the W key
* types a different letter.
*/
#define WE_ONLY_USE_ONE_GROUP 0
struct Binding {
KeybinderHandler handler;
void *user_data;
char *keystring;
GDestroyNotify notify;
/* GDK "distilled" values */
guint keyval;
GdkModifierType modifiers;
};
static GSList *bindings = NULL;
static guint32 last_event_time = 0;
static gboolean processing_event = FALSE;
static gboolean detected_xkb_extension = FALSE;
static gboolean use_xkb_extension = FALSE;
/* Return the modifier mask that needs to be pressed to produce key in the
* given group (keyboard layout) and level ("shift level").
*/
static GdkModifierType
FinallyGetModifiersForKeycode (XkbDescPtr xkb,
KeyCode key,
guint group,
guint level)
{
int nKeyGroups;
int effectiveGroup;
XkbKeyTypeRec *type;
int k;
nKeyGroups = XkbKeyNumGroups(xkb, key);
if ((!XkbKeycodeInRange(xkb, key)) || (nKeyGroups == 0)) {
return MODIFIERS_ERROR;
}
/* Taken from GDK's MyEnhancedXkbTranslateKeyCode */
/* find the offset of the effective group */
effectiveGroup = group;
if (effectiveGroup >= nKeyGroups) {
unsigned groupInfo = XkbKeyGroupInfo(xkb,key);
switch (XkbOutOfRangeGroupAction(groupInfo)) {
default:
effectiveGroup %= nKeyGroups;
break;
case XkbClampIntoRange:
effectiveGroup = nKeyGroups-1;
break;
case XkbRedirectIntoRange:
effectiveGroup = XkbOutOfRangeGroupNumber(groupInfo);
if (effectiveGroup >= nKeyGroups)
effectiveGroup = 0;
break;
}
}
type = XkbKeyKeyType(xkb, key, effectiveGroup);
for (k = 0; k < type->map_count; k++) {
if (type->map[k].active && type->map[k].level == level) {
if (type->preserve) {
return (type->map[k].mods.mask &
~type->preserve[k].mask);
} else {
return type->map[k].mods.mask;
}
}
}
return MODIFIERS_NONE;
}
/* Grab or ungrab the keycode+modifiers combination, first plainly, and then
* including each ignorable modifier in turn.
*/
static gboolean
grab_ungrab_with_ignorable_modifiers (GdkWindow *rootwin,
guint keycode,
guint modifiers,
gboolean grab)
{
guint i;
gboolean success = FALSE;
/* Ignorable modifiers */
guint mod_masks [] = {
0, /* modifier only */
GDK_MOD2_MASK,
GDK_LOCK_MASK,
GDK_MOD2_MASK | GDK_LOCK_MASK,
};
gdk_error_trap_push ();
for (i = 0; i < G_N_ELEMENTS (mod_masks); i++) {
if (grab) {
XGrabKey (GDK_WINDOW_XDISPLAY (rootwin),
keycode,
modifiers | mod_masks [i],
GDK_WINDOW_XID (rootwin),
False,
GrabModeAsync,
GrabModeAsync);
} else {
XUngrabKey (GDK_WINDOW_XDISPLAY (rootwin),
keycode,
modifiers | mod_masks [i],
GDK_WINDOW_XID (rootwin));
}
}
gdk_flush();
if (gdk_error_trap_pop()) {
TRACE (g_print ("Failed grab/ungrab!\n"));
if (grab) {
/* On error, immediately release keys again */
grab_ungrab_with_ignorable_modifiers(rootwin,
keycode,
modifiers,
FALSE);
}
} else {
success = TRUE;
}
return success;
}
/* Grab or ungrab then keyval and modifiers combination, grabbing all key
* combinations yielding the same key values.
* Includes ignorable modifiers using grab_ungrab_with_ignorable_modifiers.
*/
static gboolean
grab_ungrab (GdkWindow *rootwin,
guint keyval,
guint modifiers,
gboolean grab)
{
int k;
GdkKeymap *map;
GdkKeymapKey *keys;
gint n_keys;
GdkModifierType add_modifiers = 0;
XkbDescPtr xmap = NULL;
gboolean success = FALSE;
if (use_xkb_extension) {
xmap = XkbGetMap(GDK_WINDOW_XDISPLAY(rootwin),
XkbAllClientInfoMask,
XkbUseCoreKbd);
}
map = gdk_keymap_get_default();
gdk_keymap_get_entries_for_keyval(map, keyval, &keys, &n_keys);
if (n_keys == 0)
return FALSE;
for (k = 0; k < n_keys; k++) {
/* NOTE: We only bind for the first group,
* so regardless of current keyboard layout, it will
* grab the key from the default Layout.
*/
if (keys[k].group != WE_ONLY_USE_ONE_GROUP) {
continue;
}
TRACE (g_print("grab/ungrab keycode: %d, lev: %d, grp: %d, ",
keys[k].keycode, keys[k].level, keys[k].group));
if (use_xkb_extension) {
add_modifiers = FinallyGetModifiersForKeycode(xmap,
keys[k].keycode,
keys[k].group,
keys[k].level);
} else if (keys[k].level > 0) {
/* skip shifted/modified keys in non-xkb mode
* this might mean the key can't be bound at all
*/
continue;
}
if (add_modifiers == MODIFIERS_ERROR) {
continue;
}
TRACE (g_print("modifiers: 0x%x (consumed: 0x%x)\n",
add_modifiers | modifiers, add_modifiers));
if (grab_ungrab_with_ignorable_modifiers(rootwin,
keys[k].keycode,
add_modifiers | modifiers,
grab)) {
success = TRUE;
} else {
/* When grabbing, break on error */
if (grab && !success) {
break;
}
}
}
g_free(keys);
if (xmap) {
XkbFreeKeyboard(xmap, 0, TRUE);
}
return success;
}
static gboolean
keyvalues_equal (guint kv1, guint kv2)
{
return kv1 == kv2;
}
/* Compare modifier set equality,
* while accepting overloaded modifiers (MOD1 and META together)
*/
static gboolean
modifiers_equal (GdkModifierType mf1, GdkModifierType mf2)
{
GdkModifierType ignored = 0;
/* Accept MOD1 + META as MOD1 */
if (mf1 & mf2 & GDK_MOD1_MASK) {
ignored |= GDK_META_MASK;
}
/* Accept SUPER + HYPER as SUPER */
if (mf1 & mf2 & GDK_SUPER_MASK) {
ignored |= GDK_HYPER_MASK;
}
if ((mf1 & ~ignored) == (mf2 & ~ignored)) {
return TRUE;
}
return FALSE;
}
static gboolean
do_grab_key (struct Binding *binding)
{
gboolean success;
GdkWindow *rootwin = gdk_get_default_root_window ();
GdkKeymap *keymap = gdk_keymap_get_default ();
GdkModifierType modifiers;
guint keysym = 0;
if (keymap == NULL || rootwin == NULL)
return FALSE;
gtk_accelerator_parse(binding->keystring, &keysym, &modifiers);
if (keysym == 0)
return FALSE;
binding->keyval = keysym;
binding->modifiers = modifiers;
TRACE (g_print ("Grabbing keyval: %d, vmodifiers: 0x%x, name: %s\n",
keysym, modifiers, binding->keystring));
/* Map virtual modifiers to non-virtual modifiers */
gdk_keymap_map_virtual_modifiers(keymap, &modifiers);
if (modifiers == binding->modifiers &&
(GDK_SUPER_MASK | GDK_HYPER_MASK | GDK_META_MASK) & modifiers) {
g_warning ("Failed to map virtual modifiers");
return FALSE;
}
success = grab_ungrab (rootwin, keysym, modifiers, TRUE /* grab */);
if (!success) {
g_warning ("Binding '%s' failed!", binding->keystring);
}
return success;
}
static gboolean
do_ungrab_key (struct Binding *binding)
{
GdkKeymap *keymap = gdk_keymap_get_default ();
GdkWindow *rootwin = gdk_get_default_root_window ();
GdkModifierType modifiers;
if (keymap == NULL || rootwin == NULL)
return FALSE;
TRACE (g_print ("Ungrabbing keyval: %d, vmodifiers: 0x%x, name: %s\n",
binding->keyval, binding->modifiers, binding->keystring));
/* Map virtual modifiers to non-virtual modifiers */
modifiers = binding->modifiers;
gdk_keymap_map_virtual_modifiers(keymap, &modifiers);
grab_ungrab (rootwin, binding->keyval, modifiers, FALSE /* ungrab */);
return TRUE;
}
static GdkFilterReturn
filter_func (GdkXEvent *gdk_xevent, GdkEvent *event, gpointer data)
{
XEvent *xevent = (XEvent *) gdk_xevent;
GdkKeymap *keymap = gdk_keymap_get_default();
guint keyval;
GdkModifierType consumed, modifiers;
guint mod_mask = gtk_accelerator_get_default_mod_mask();
GSList *iter;
(void) event;
(void) data;
switch (xevent->type) {
case KeyPress:
modifiers = xevent->xkey.state;
TRACE (g_print ("Got KeyPress keycode: %d, modifiers: 0x%x\n",
xevent->xkey.keycode,
xevent->xkey.state));
if (use_xkb_extension) {
gdk_keymap_translate_keyboard_state(
keymap,
xevent->xkey.keycode,
modifiers,
/* See top comment why we don't use this here:
XkbGroupForCoreState (xevent->xkey.state)
*/
WE_ONLY_USE_ONE_GROUP,
&keyval, NULL, NULL, &consumed);
} else {
consumed = 0;
keyval = XLookupKeysym(&xevent->xkey, 0);
}
/* Map non-virtual to virtual modifiers */
modifiers &= ~consumed;
gdk_keymap_add_virtual_modifiers(keymap, &modifiers);
modifiers &= mod_mask;
TRACE (g_print ("Translated keyval: %d, vmodifiers: 0x%x, name: %s\n",
keyval, modifiers,
gtk_accelerator_name(keyval, modifiers)));
/*
* Set the last event time for use when showing
* windows to avoid anti-focus-stealing code.
*/
processing_event = TRUE;
last_event_time = xevent->xkey.time;
iter = bindings;
while (iter != NULL) {
/* NOTE: ``iter`` might be removed from the list
* in the callback.
*/
struct Binding *binding = iter->data;
iter = iter->next;
if (keyvalues_equal(binding->keyval, keyval) &&
modifiers_equal(binding->modifiers, modifiers)) {
TRACE (g_print ("Calling handler for '%s'...\n",
binding->keystring));
(binding->handler) (binding->keystring,
binding->user_data);
}
}
processing_event = FALSE;
break;
case KeyRelease:
TRACE (g_print ("Got KeyRelease! \n"));
break;
}
return GDK_FILTER_CONTINUE;
}
static void
keymap_changed (GdkKeymap *map)
{
GSList *iter;
(void) map;
TRACE (g_print ("Keymap changed! Regrabbing keys..."));
for (iter = bindings; iter != NULL; iter = iter->next) {
struct Binding *binding = iter->data;
do_ungrab_key (binding);
}
for (iter = bindings; iter != NULL; iter = iter->next) {
struct Binding *binding = iter->data;
do_grab_key (binding);
}
}
/**
* keybinder_init:
*
* Initialize the keybinder library.
*
* This function must be called after initializing GTK, before calling any
* other function in the library. Can only be called once.
*/
void
keybinder_init ()
{
GdkKeymap *keymap = gdk_keymap_get_default ();
GdkWindow *rootwin = gdk_get_default_root_window ();
Display *disp;
int xkb_opcode;
int xkb_event_base;
int xkb_error_base;
int majver = XkbMajorVersion;
int minver = XkbMinorVersion;
if (!(disp = XOpenDisplay(NULL))) {
g_warning("keybinder_init: Unable to open display");
return;
}
detected_xkb_extension = XkbQueryExtension(disp,
&xkb_opcode,
&xkb_event_base,
&xkb_error_base,
&majver, &minver);
use_xkb_extension = detected_xkb_extension;
TRACE(g_print("XKB: %d, version: %d, %d\n", use_xkb_extension, majver, minver));
gdk_window_add_filter (rootwin, filter_func, NULL);
/* Workaround: Make sure modmap is up to date
* There is possibly a bug in GTK+ where virtual modifiers are not
* mapped because the modmap is not updated. The following function
* updates it.
*/
(void) gdk_keymap_have_bidi_layouts(keymap);
g_signal_connect (keymap,
"keys_changed",
G_CALLBACK (keymap_changed),
NULL);
}
/**
* keybinder_set_use_cooked_accelerators:
* @use_cooked: if %FALSE disable cooked accelerators
*
* "Cooked" accelerators use symbols produced by using modifiers such
* as shift or altgr, for example if "!" is produced by "Shift+1".
*
* If cooked accelerators are enabled, use "<Ctrl>exclam" to bind
* "Ctrl+!" If disabled, use "<Ctrl><Shift>1" to bind
* "Ctrl+Shift+1". These two examples are not equal on all keymaps.
*
* The cooked accelerator keyvalue and modifiers are provided by the
* function gdk_keymap_translate_keyboard_state()
*
* Cooked accelerators are useful if you receive keystrokes from GTK to bind,
* but raw accelerators can be useful if you or the user inputs accelerators as
* text.
*
* Default: Enabled. Should be set before binding anything.
*/
void
keybinder_set_use_cooked_accelerators (gboolean use_cooked)
{
use_xkb_extension = use_cooked && detected_xkb_extension;
}
/**
* keybinder_bind: (skip)
* @keystring: an accelerator description (gtk_accelerator_parse() format)
* @handler: callback function
* @user_data: data to pass to @handler
*
* Grab a key combination globally and register a callback to be called each
* time the key combination is pressed.
*
* This function is excluded from introspected bindings and is replaced by
* keybinder_bind_full.
*
* Returns: %TRUE if the accelerator could be grabbed
*/
gboolean
keybinder_bind (const char *keystring,
KeybinderHandler handler,
void *user_data)
{
return keybinder_bind_full(keystring, handler, user_data, NULL);
}
/**
* keybinder_bind_full: (rename-to keybinder_bind)
* @keystring: an accelerator description (gtk_accelerator_parse() format)
* @handler: (scope notified): callback function
* @user_data: (closure) (allow-none): data to pass to @handler
* @notify: (allow-none): called when @handler is unregistered
*
* Grab a key combination globally and register a callback to be called each
* time the key combination is pressed.
*
* Since: 0.3.0
*
* Returns: %TRUE if the accelerator could be grabbed
*/
gboolean
keybinder_bind_full (const char *keystring,
KeybinderHandler handler,
void *user_data,
GDestroyNotify notify)
{
struct Binding *binding;
gboolean success;
binding = g_new0 (struct Binding, 1);
binding->keystring = g_strdup (keystring);
binding->handler = handler;
binding->user_data = user_data;
binding->notify = notify;
/* Sets the binding's keycode and modifiers */
success = do_grab_key (binding);
if (success) {
bindings = g_slist_prepend (bindings, binding);
} else {
g_free (binding->keystring);
g_free (binding);
}
return success;
}
/**
* keybinder_unbind: (skip)
* @keystring: an accelerator description (gtk_accelerator_parse() format)
* @handler: callback function
*
* Unregister a previously bound callback for this keystring.
*
* NOTE: multiple callbacks per keystring are not properly supported. You
* might as well use keybinder_unbind_all().
*
* This function is excluded from introspected bindings and is replaced by
* keybinder_unbind_all().
*/
void
keybinder_unbind (const char *keystring, KeybinderHandler handler)
{
GSList *iter;
for (iter = bindings; iter != NULL; iter = iter->next) {
struct Binding *binding = iter->data;
if (strcmp (keystring, binding->keystring) != 0 ||
handler != binding->handler)
continue;
do_ungrab_key (binding);
bindings = g_slist_remove (bindings, binding);
TRACE (g_print("unbind, notify: %p\n", binding->notify));
if (binding->notify) {
binding->notify(binding->user_data);
}
g_free (binding->keystring);
g_free (binding);
break;
}
}
/**
* keybinder_unbind_all: (rename-to keybinder_unbind)
* @keystring: an accelerator description (gtk_accelerator_parse() format)
*
* Unregister all previously bound callbacks for this keystring.
*
* Since: 0.3.0
*/
void keybinder_unbind_all (const char *keystring)
{
GSList *iter = bindings;
for (iter = bindings; iter != NULL; iter = iter->next) {
struct Binding *binding = iter->data;
if (strcmp (keystring, binding->keystring) != 0)
continue;
do_ungrab_key (binding);
bindings = g_slist_remove (bindings, binding);
TRACE (g_print("unbind_all, notify: %p\n", binding->notify));
if (binding->notify) {
binding->notify(binding->user_data);
}
g_free (binding->keystring);
g_free (binding);
/* re-start scan from head of new list */
iter = bindings;
if (!iter)
break;
}
}
/**
* keybinder_get_current_event_time:
*
* Returns: the current event timestamp
*/
guint32
keybinder_get_current_event_time (void)
{
if (processing_event)
return last_event_time;
else
return GDK_CURRENT_TIME;
}
|