summaryrefslogtreecommitdiff
path: root/openbox/modkeys.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-05-04 01:10:03 +0000
committerDana Jansens <danakj@orodu.net>2007-05-04 01:10:03 +0000
commit7e946f68d9f8ec7c880664b437edbbaa5d49ac10 (patch)
treedf9979455e26627815642071bd4bc43bcc721db8 /openbox/modkeys.h
parent5784f11132cb2ee64af23695867aca9f4ebe0b9b (diff)
make the modifier key code a lot better...
1) it can handle more user cases. 2) it can handle binding more modifier keys with their keysym names like Hyper and Super. W is a shortcut for Super, cuz the windows key is generally bound to it. 3) if you change your keymap bindings and reconfigure openbox it will learn your changes. and i dunno.. its just nice and stuff now.. you can actually read it I think..
Diffstat (limited to 'openbox/modkeys.h')
-rw-r--r--openbox/modkeys.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/openbox/modkeys.h b/openbox/modkeys.h
new file mode 100644
index 00000000..cfa95b04
--- /dev/null
+++ b/openbox/modkeys.h
@@ -0,0 +1,54 @@
+/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
+
+ masks.h for the Openbox window manager
+ Copyright (c) 2007 Dana Jansens
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ See the COPYING file for a copy of the GNU General Public License.
+*/
+
+#ifndef ob__modkeys_h
+#define ob__modkeys_h
+
+#include <glib.h>
+
+/*! These keys are bound to the modifier masks in any fashion */
+typedef enum {
+ OB_MODKEY_KEY_CAPSLOCK,
+ OB_MODKEY_KEY_NUMLOCK,
+ OB_MODKEY_KEY_SCROLLLOCK,
+ OB_MODKEY_KEY_SHIFT,
+ OB_MODKEY_KEY_CONTROL,
+ OB_MODKEY_KEY_SUPER,
+ OB_MODKEY_KEY_HYPER,
+ OB_MODKEY_KEY_META,
+ OB_MODKEY_KEY_ALT,
+
+ OB_MODKEY_NUM_KEYS
+} ObModkeysKey;
+
+void modkeys_startup(gboolean reconfigure);
+void modkeys_shutdown(gboolean reconfigure);
+
+/*! Get the modifier masks for a keycode. (eg. a keycode bound to Alt_L could
+ return a mask of (Mod1Mask | Mask3Mask)) */
+guint modkeys_keycode_to_mask(guint keycode);
+
+/*! Strip off all modifiers except for the modifier keys. This strips stuff
+ like Button1Mask, and also LockMask, NumLockMask, and ScrollLockMask */
+guint modkeys_only_modifier_masks(guint mask);
+
+/*! Get the modifier masks for a modifier key. This includes both the left and
+ right keys when there are both. */
+guint modkeys_key_to_mask(ObModkeysKey key);
+
+#endif