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
|
/*
* Copyright © 2006 Novell, Inc.
*
* Permission to use, copy, modify, distribute, and sell this software
* and its documentation for any purpose is hereby granted without
* fee, provided that the above copyright notice appear in all copies
* and that both that copyright notice and this permission notice
* appear in supporting documentation, and that the name of
* Novell, Inc. not be used in advertising or publicity pertaining to
* distribution of the software without specific, written prior permission.
* Novell, Inc. makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*
* NOVELL, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
* NO EVENT SHALL NOVELL, INC. BE LIABLE FOR ANY SPECIAL, INDIRECT OR
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#define _GNU_SOURCE
#include <ctype.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <compiz.h>
#include <glib.h>
#include <gconf/gconf-client.h>
#include <gconf-compiz-utils.h>
struct _GConfModifier {
char *name;
int modifier;
} modifiers[] = {
{ "<Shift>", ShiftMask },
{ "<Control>", ControlMask },
{ "<Mod1>", Mod1Mask },
{ "<Mod2>", Mod2Mask },
{ "<Mod3>", Mod3Mask },
{ "<Mod4>", Mod4Mask },
{ "<Mod5>", Mod5Mask },
{ "<Alt>", CompAltMask },
{ "<Meta>", CompMetaMask },
{ "<Super>", CompSuperMask },
{ "<Hyper>", CompHyperMask },
{ "<ModeSwitch>", CompModeSwitchMask },
};
#define N_MODIFIERS (sizeof (modifiers) / sizeof (struct _GConfModifier))
static gchar *edgeName[] = {
N_("Left"),
N_("Right"),
N_("Top"),
N_("Bottom"),
N_("TopLeft"),
N_("TopRight"),
N_("BottomLeft"),
N_("BottomRight")
};
static GString *
gconfModifiersToString (CompDisplay *d,
guint modMask)
{
GString *binding;
gint i;
binding = g_string_new (NULL);
for (i = 0; i < N_MODIFIERS; i++)
{
if (modMask & modifiers[i].modifier)
g_string_append (binding, modifiers[i].name);
}
return binding;
}
char *
gconfKeyBindingToString (CompDisplay *d,
CompKeyBinding *key)
{
GString *binding;
binding = gconfModifiersToString (d, key->modifiers);
if (key->keycode != 0)
{
KeySym keysym;
gchar *keyname;
keysym = XKeycodeToKeysym (d->display, key->keycode, 0);
keyname = XKeysymToString (keysym);
if (keyname)
g_string_append (binding, keyname);
else
g_string_append_printf (binding, "0x%x", key->keycode);
}
return g_string_free (binding, FALSE);
}
char *
gconfButtonBindingToString (CompDisplay *d,
CompButtonBinding *button)
{
GString *binding;
binding = gconfModifiersToString (d, button->modifiers);
g_string_append_printf (binding, "Button%d", button->button);
return g_string_free (binding, FALSE);
}
static guint
gconfStringToModifiers (CompDisplay *d,
const char *binding)
{
guint mods = 0;
gint i;
for (i = 0; i < N_MODIFIERS; i++)
{
if (strcasestr (binding, modifiers[i].name))
mods |= modifiers[i].modifier;
}
return mods;
}
int
gconfStringToKeyBinding (CompDisplay *d,
const char *binding,
CompKeyBinding *key)
{
gchar *ptr;
guint mods;
KeySym keysym;
mods = gconfStringToModifiers (d, binding);
ptr = strrchr (binding, '>');
if (ptr)
binding = ptr + 1;
while (*binding && !isalnum (*binding))
binding++;
keysym = XStringToKeysym (binding);
if (keysym != NoSymbol)
{
KeyCode keycode;
keycode = XKeysymToKeycode (d->display, keysym);
if (keycode)
{
key->keycode = keycode;
key->modifiers = mods;
return TRUE;
}
}
if (strncmp (binding, "0x", 2) == 0)
{
key->keycode = strtol (binding, NULL, 0);
key->modifiers = mods;
return TRUE;
}
return FALSE;
}
int
gconfStringToButtonBinding (CompDisplay *d,
const char *binding,
CompButtonBinding *button)
{
gchar *ptr;
guint mods;
mods = gconfStringToModifiers (d, binding);
ptr = strrchr (binding, '>');
if (ptr)
binding = ptr + 1;
while (*binding && !isalnum (*binding))
binding++;
ptr = (gchar *) binding;
if (strcmpskipifequal (&ptr, "Button") == 0)
{
gint buttonNum;
if (sscanf (ptr, "%d", &buttonNum) == 1)
{
button->button = buttonNum;
button->modifiers = mods;
return TRUE;
}
}
return FALSE;
}
int
strcmpskipifequal (char **ptr,
char *s)
{
int ret, len;
len = strlen (s);
ret = strncmp (*ptr, s, len);
if (ret == 0)
*ptr = (*ptr) + len;
return ret;
}
gchar *
gconfEdgeToString (guint edge)
{
return edgeName[edge];
}
|