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 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
|
/* $XConsortium: xmodmap.c,v 1.24 94/04/17 20:24:24 converse Exp $ */
/*
Copyright (c) 1988 X Consortium
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of the X Consortium shall
not be used in advertising or otherwise to promote the sale, use or
other dealings in this Software without prior written authorization
from the X Consortium.
*/
#include <X11/Xos.h>
#include <X11/Xlib.h>
#include <stdio.h>
#include <ctype.h>
#include "xmodmap.h"
char *ProgramName;
Display *dpy = NULL;
int min_keycode, max_keycode;
Bool verbose = False;
Bool dontExecute = False;
void Exit (status)
int status;
{
if (dpy) {
XCloseDisplay (dpy);
dpy = NULL;
}
exit (status);
}
static char *help_message[] = {
"\nwhere options include:",
" -display host:dpy X server to use",
" -verbose, -quiet turn logging on or off",
" -n don't execute changes, just show like make",
" -e expression execute string",
" -pm print modifier map",
" -pk print keymap table",
" -pke print keymap table as expressions",
" -pp print pointer map",
" -grammar print out short help on allowable input",
" - read standard input",
"",
NULL};
void usage ()
{
char **cpp;
fprintf (stderr, "usage: %s [-options ...] [filename]\n", ProgramName);
for (cpp = help_message; *cpp; cpp++) {
fprintf (stderr, "%s\n", *cpp);
}
Exit (1);
}
static char *grammar_message[] = {
" pointer = default reset pointer buttons to default",
" pointer = NUMBER ... set pointer button codes",
" keycode NUMBER = [KEYSYM ...] map keycode to given keysyms",
" keysym KEYSYM = [KEYSYM ...] look up keysym and do a keycode operation",
" clear MODIFIER remove all keys for this modifier",
" add MODIFIER = KEYSYM ... add the keysyms to the modifier",
" remove MODIFIER = KEYSYM ... remove the keysyms from the modifier",
"",
"where NUMBER is a decimal, octal, or hex constant; KEYSYM is a valid",
"Key Symbol name; and MODIFIER is one of the eight modifier names: Shift,",
"Lock, Control, Mod1, Mod2, Mod3, Mod4, or Mod5. Lines beginning with",
"an exclamation mark (!) are taken as comments. Case is significant except",
"for MODIFIER names.",
"",
"Keysyms on the left hand side of the = sign are looked up before any changes",
"are made; keysyms on the right are looked up after all of those on the left",
"have been resolved. This makes it possible to swap modifier keys.",
"",
NULL };
void grammar_usage ()
{
char **cpp;
fprintf (stderr, "%s accepts the following input expressions:\n\n",
ProgramName);
for (cpp = grammar_message; *cpp; cpp++) {
fprintf (stderr, "%s\n", *cpp);
}
Exit (0);
}
int parse_errors = 0;
main (argc, argv)
int argc;
char **argv;
{
int i;
char *displayname = NULL;
int status;
Bool printMap = False;
Bool printKeyTable = False;
Bool printKeyTableExprs = False;
Bool printPointerMap = False;
Bool didAnything = False;
ProgramName = argv[0];
/*
* scan the arg list once to find out which display to use
*/
for (i = 1; i < argc; i++) {
if (strncmp (argv[i], "-d", 2) == 0) {
if (++i >= argc) usage ();
displayname = argv[i];
}
}
dpy = XOpenDisplay (displayname);
if (!dpy) {
fprintf (stderr, "%s: unable to open display '%s'\n",
ProgramName, XDisplayName (displayname));
Exit (1);
}
XDisplayKeycodes (dpy, &min_keycode, &max_keycode);
initialize_map ();
/*
* scan the arg list again to do the actual work (since it requires
* the display being open.
*/
status = 0;
for (i = 1; i < argc; i++) {
char *arg = argv[i];
if (arg[0] == '-') {
switch (arg[1]) {
case 'd': /* -display host:dpy */
++i; /* handled above */
continue;
case 'v': /* -verbose */
verbose = True;
continue;
case 'q': /* -quiet */
verbose = False;
continue;
case 'n': /* -n (like make) */
dontExecute = True;
continue;
case 'e': /* -e expression */
didAnything = True;
if (++i >= argc) usage ();
process_line (argv[i]);
continue;
case 'p': /* -p... */
switch (arg[2]) {
case '\0':
case 'm': /* -pm */
printMap = True;
break;
case 'k': /* -pk, -pke */
switch (arg[3]) {
case '\0':
printKeyTable = True;
break;
case 'e':
printKeyTableExprs = True;
break;
default:
usage ();
}
break;
case 'p': /* -pp */
printPointerMap = True;
break;
default:
usage ();
/* NOTREACHED */
}
didAnything = True;
continue;
case 'g': /* -grammar */
grammar_usage ();
/*NOTREACHED*/
case '\0': /* - (use standard input) */
didAnything = True;
process_file (NULL);
continue;
/*
* provide old xmodmap args
*/
case 'S':
didAnything = True;
process_line ("clear shift");
continue;
case 'L':
didAnything = True;
process_line ("clear lock");
continue;
case 'C':
didAnything = True;
process_line ("clear control");
continue;
case '1':
case '2':
case '3':
case '4':
case '5': {
char *cmd = "clear modX";
cmd[9] = arg[1];
process_line (cmd);
continue;
}
case 's':
case 'l':
case 'c': {
char cmd[80]; /* big enough to hold line */
didAnything = True;
if (++i >= argc) usage ();
(void) sprintf (cmd, "remove %s = %s",
((arg[1] == 's') ? "shift" :
((arg[1] == 'l') ? "lock" :
"control")), argv[i]);
process_line (cmd);
continue;
}
default:
usage ();
/*NOTREACHED*/
}
} else if (arg[0] == '+') { /* old xmodmap args */
switch (arg[1]) {
case '1':
case '2':
case '3':
case '4':
case '5': {
char cmd[80]; /* big enough to hold line */
didAnything = True;
if (++i >= argc) usage ();
(void) sprintf (cmd, "add mod%c = %s", arg[1], argv[i]);
process_line (cmd);
continue;
}
case 'S':
case 'L':
case 'C':
arg[1] = tolower (arg[1]);
/* fall through to handler below */
case 's':
case 'l':
case 'c': {
char cmd[80]; /* big enough to hold line */
didAnything = True;
if (++i >= argc) usage ();
(void) sprintf (cmd, "add %s = %s",
((arg[1] == 's') ? "shift" :
((arg[1] == 'l') ? "lock" :
"control")), argv[i]);
process_line (cmd);
continue;
}
default:
usage ();
}
} else {
didAnything = True;
process_file (arg);
continue;
}
} /* end for loop */
/* for compatibility */
if (!didAnything) printMap = True;
/*
* at this point, the work list has been built and we can view it or
* execute it
*/
if (dontExecute) {
print_work_queue ();
Exit (0);
}
if (parse_errors != 0) {
fprintf (stderr, "%s: %d error%s encountered, aborting.\n",
ProgramName, parse_errors,
(parse_errors == 1 ? "" : "s"));
status = -1; /* return an error condition */
} else {
status = execute_work_queue ();
}
if (printMap) {
print_modifier_map ();
}
if (printKeyTable) {
print_key_table (False);
}
if (printKeyTableExprs) {
print_key_table (True);
}
if (printPointerMap) {
print_pointer_map ();
}
Exit (status < 0 ? 1 : 0);
}
|