root/trunk/xdotool/xdo_util.h

Revision 1079, 1.2 kB (checked in by dkg, 7 months ago)

xdotool: committing local changes after upstream update to 20080601

Line 
1/* xdo utility pieces
2 *
3 * $Id: xdo_util.h 1854 2008-05-21 07:23:29Z jordansissel $
4 */
5
6/* human to Keysym string mapping */
7const char *symbol_map[] = {
8  "alt", "Alt_L",
9  "ctrl", "Control_L",
10  "control", "Control_L",
11  "meta", "Meta_L",
12  "super", "Super_L",
13  "shift", "Shift_L",
14  NULL, NULL,
15};
16
17keysymcharmap_t keysymcharmap[] = {
18  { "Return", '\n', },
19  { "ampersand", '&', },
20  { "apostrophe", '\'', },
21  { "asciicircum", '^', },
22  { "asciitilde", '~', },
23  { "asterisk", '*', },
24  { "at", '@', },
25  { "backslash", '\\', },
26  { "bar", '|', },
27  { "braceleft", '{', },
28  { "braceright", '}', },
29  { "bracketleft", '[', },
30  { "bracketright", ']', },
31  { "colon", ':', },
32  { "comma", ',', },
33  { "dollar", '$', },
34  { "equal", '=', },
35  { "exclam", '!', },
36  { "grave", '`', },
37  { "greater", '>', },
38  { "less", '<', },
39  { "minus", '-', },
40  { "numbersign", '#', },
41  { "parenleft", '(', },
42  { "parenright", ')', },
43  { "percent", '%', },
44  { "period", '.', },
45  { "plus", '+', },
46  { "question", '?', },
47  { "quotedbl", '"', },
48  { "semicolon", ';', },
49  { "slash", '/', },
50  { "space", ' ', },
51  { "tab", '\t', },
52  { "underscore", '_', },
53  { NULL, 0, },
54};
Note: See TracBrowser for help on using the browser.