Last change
on this file since 295 was 23, checked in by Rick van der Zwet, 15 years ago |
Final commit of report to be handed in.
|
File size:
1.2 KB
|
Rev | Line | |
---|
[23] | 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 */
|
---|
| 7 | const 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 |
|
---|
| 17 | keysymcharmap_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 | };
|
---|
| 55 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.