Add an OSD for sticky modifiers

This commit adds an OSD that displays which modifiers are
currently latched or locked. This is commonly used together
with sticky keys.
https://bugzilla.gnome.org/show_bug.cgi?id=647711
This commit is contained in:
Matthias Clasen
2013-04-14 00:05:39 -04:00
parent f358bb1a96
commit 96994721ef
6 changed files with 149 additions and 0 deletions

View File

@ -16,6 +16,7 @@
#include <locale.h>
#include <X11/extensions/Xfixes.h>
#include <X11/XKBlib.h>
#include <canberra.h>
#include <canberra-gtk.h>
#include <clutter/glx/clutter-glx.h>
@ -122,6 +123,7 @@ enum
XDND_POSITION_CHANGED,
XDND_LEAVE,
XDND_ENTER,
XKB_STATE_CHANGED,
NOTIFY_ERROR,
LAST_SIGNAL
};
@ -338,6 +340,15 @@ shell_global_class_init (ShellGlobalClass *klass)
NULL, NULL, NULL,
G_TYPE_NONE, 0);
shell_global_signals[XKB_STATE_CHANGED] =
g_signal_new ("xkb-state-changed",
G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST,
0,
NULL, NULL, NULL,
G_TYPE_NONE, 2,
G_TYPE_UINT, G_TYPE_UINT);
shell_global_signals[NOTIFY_ERROR] =
g_signal_new ("notify-error",
G_TYPE_FROM_CLASS (klass),
@ -1779,3 +1790,30 @@ shell_global_get_session_mode (ShellGlobal *global)
return global->session_mode;
}
static void
notify_xkb_state (ShellGlobal *global,
XkbStateNotifyEvent *event)
{
if (event->changed & (XkbModifierLatchMask | XkbModifierLockMask))
g_signal_emit_by_name (G_OBJECT (global), "xkb-state-changed",
event->latched_mods, event->locked_mods);
}
gboolean
_shell_global_check_xkb_event (ShellGlobal *global,
XEvent *event)
{
XkbEvent *xkb_event = (XkbEvent *)event;
switch (xkb_event->any.xkb_type)
{
case XkbStateNotify:
notify_xkb_state (global, &xkb_event->state);
break;
default:
break;
}
return FALSE;
}