/* ratpoison actions * Copyright (C) 2000, 2001 Shawn Betts * * This file is part of ratpoison. * * ratpoison 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, or (at your option) * any later version. * * ratpoison 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. * * You should have received a copy of the GNU General Public License * along with this software; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307 USA */ #include #include #include #include #include #include "ratpoison.h" rp_action *key_actions; int key_actions_last; int key_actions_table_size; rp_action* find_keybinding (int keysym, int state) { int i; for (i = 0; i < key_actions_last; i++) { if (key_actions[i].key == keysym && key_actions[i].state == state) return &key_actions[i]; } return NULL; } static void add_keybinding (int keysym, int state, char *cmd) { if (key_actions_last >= key_actions_table_size) { /* double the key table size */ key_actions_table_size *= 2; key_actions = (rp_action*) xrealloc (key_actions, sizeof (rp_action) * key_actions_table_size); PRINT_DEBUG ("realloc()ed key_table %d\n", key_actions_table_size); } key_actions[key_actions_last].key = keysym; key_actions[key_actions_last].state = state; key_actions[key_actions_last].data = strdup (cmd); /* free this on shutdown, or re/unbinding */ ++key_actions_last; } static void replace_keybinding (rp_action *key_action, char *newcmd) { if (strlen (key_action->data) < strlen (newcmd)) key_action->data = (char*) realloc (key_action->data, strlen (newcmd) + 1); strcpy (key_action->data, newcmd); } void initialize_default_keybindings (void) { key_actions_table_size = 1; key_actions = (rp_action*) xmalloc (sizeof (rp_action) * key_actions_table_size); key_actions_last = 0; prefix_key.sym = KEY_PREFIX; prefix_key.state = MODIFIER_PREFIX; add_keybinding (prefix_key.sym, prefix_key.state, "other"); add_keybinding (prefix_key.sym, 0, "generate"); add_keybinding (XK_g, ControlMask, "abort"); add_keybinding (XK_0, 0, "select 0"); add_keybinding (XK_1, 0, "select 1"); add_keybinding (XK_2, 0, "select 2"); add_keybinding (XK_3, 0, "select 3"); add_keybinding (XK_4, 0, "select 4"); add_keybinding (XK_5, 0, "select 5"); add_keybinding (XK_6, 0, "select 6"); add_keybinding (XK_7, 0, "select 7"); add_keybinding (XK_8, 0, "select 8"); add_keybinding (XK_9, 0, "select 9"); add_keybinding (XK_A, 0, "title"); add_keybinding (XK_A, ControlMask, "title"); add_keybinding (XK_K, 0, "kill"); add_keybinding (XK_K, ControlMask, "kill"); add_keybinding (XK_Return, 0, "next"); add_keybinding (XK_Return, ControlMask, "next"); add_keybinding (XK_a, 0, "clock"); add_keybinding (XK_a, ControlMask, "clock"); add_keybinding (XK_c, 0, "exec " TERM_PROG); add_keybinding (XK_c, ControlMask, "exec " TERM_PROG); add_keybinding (XK_colon, 0, "colon"); add_keybinding (XK_exclam, 0, "exec"); add_keybinding (XK_exclam, ControlMask, "colon exec " TERM_PROG " -e "); add_keybinding (XK_k, 0, "delete"); add_keybinding (XK_k, ControlMask, "delete"); add_keybinding (XK_m, 0, "maximize"); add_keybinding (XK_m, ControlMask, "maximize"); add_keybinding (XK_n, 0, "next"); add_keybinding (XK_n, ControlMask, "next"); add_keybinding (XK_p, 0, "prev"); add_keybinding (XK_p, ControlMask, "prev"); add_keybinding (XK_quoteright, 0, "select"); add_keybinding (XK_quoteright, ControlMask, "select"); add_keybinding (XK_space, 0, "next"); add_keybinding (XK_space, ControlMask, "next"); add_keybinding (XK_v, 0, "version"); add_keybinding (XK_v, ControlMask, "version"); add_keybinding (XK_w, 0, "windows"); add_keybinding (XK_w, ControlMask, "windows"); } user_command user_commands[] = { {"abort", cmd_abort, arg_VOID}, {"next", cmd_next, arg_VOID}, {"prev", cmd_prev, arg_VOID}, {"exec", cmd_exec, arg_STRING}, {"select", cmd_select, arg_STRING}, {"colon", cmd_colon, arg_STRING}, {"kill", cmd_kill, arg_VOID}, {"delete", cmd_delete, arg_VOID}, {"other", cmd_other, arg_VOID}, {"windows", cmd_windows, arg_VOID}, {"title", cmd_rename, arg_STRING}, {"clock", cmd_clock, arg_VOID}, {"maximize", cmd_maximize, arg_VOID}, {"newwm", cmd_newwm, arg_STRING}, {"generate", cmd_generate, arg_STRING}, /* rename to stuff */ {"version", cmd_version, arg_VOID}, {"bind", cmd_bind, arg_VOID}, {"source", cmd_source, arg_STRING}, {"escape", cmd_escape, arg_STRING}, /* the following screen commands may or may not be able to be implemented. See the screen documentation for what should be emulated with these commands */ {"echo", cmd_unimplemented, arg_VOID}, {"stuff", cmd_unimplemented, arg_VOID}, {"number", cmd_unimplemented, arg_VOID}, {"hardcopy", cmd_unimplemented, arg_VOID}, {"help", cmd_unimplemented, arg_VOID}, {"lastmsg", cmd_unimplemented, arg_VOID}, {"license", cmd_unimplemented, arg_VOID}, {"lockscreen", cmd_unimplemented, arg_VOID}, {"meta", cmd_unimplemented, arg_VOID}, {"msgwait", cmd_unimplemented, arg_VOID}, {"msgminwait", cmd_unimplemented, arg_VOID}, {"nethack", cmd_unimplemented, arg_VOID}, {"quit", cmd_unimplemented, arg_VOID}, {"redisplay", cmd_unimplemented, arg_VOID}, {"screen", cmd_unimplemented, arg_VOID}, {"setenv", cmd_unimplemented, arg_VOID}, {"shell", cmd_unimplemented, arg_VOID}, {"shelltitle", cmd_unimplemented, arg_VOID}, {"sleep", cmd_unimplemented, arg_VOID}, {"sorendition", cmd_unimplemented, arg_VOID}, {"split", cmd_unimplemented, arg_VOID}, {"focus", cmd_unimplemented, arg_VOID}, {"startup_message", cmd_unimplemented, arg_VOID}, {0, 0, 0} }; /* return a KeySym from a string that contains either a hex value or an X keysym description */ static int string_to_keysym (char *str) { int retval; int keysym; retval = sscanf (str, "0x%x", &keysym); if (!retval || retval == EOF) keysym = XStringToKeysym (str); return keysym; } struct rp_key* parse_keydesc (char *keydesc) { static struct rp_key key; struct rp_key *p = &key; if (!keydesc) return NULL; if (keydesc[0] == '^') { p->state = ControlMask; p->sym = string_to_keysym (keydesc + 1); } else { p->state = 0; p->sym = string_to_keysym (keydesc); } if (!p->sym) return NULL; else return p; } void cmd_bind (void *data) { char *keydesc; char *cmd; if (!data) { message (" bind: at least one argument required "); return; } keydesc = (char*) xmalloc (strlen (data + 1)); sscanf (data, "%s", keydesc); cmd = data + strlen (keydesc); if (!keydesc) message (" bind: at least one argument required "); else { if (!cmd || !*cmd) message (" bind: need a command to bind to key "); else { struct rp_key *key = parse_keydesc (keydesc); if (key) { rp_action *key_action; /* char foo[1000]; */ /* sprintf (foo, " %d %ld : '%s' ", key->state, key->sym, cmd); */ /* message (foo); */ if ((key_action = find_keybinding (key->sym, key->state))) replace_keybinding (key_action, cmd); else add_keybinding (key->sym, key->state, cmd); } else message (" bind: could not parse key description "); } } free (keydesc); } void cmd_unimplemented (void *data) { marked_message (" FIXME: unimplemented command ",0,8); } void cmd_source (void *data) { FILE *fileptr; if ((fileptr = fopen ((char*) data, "r")) == NULL) message (" source: error opening file "); else { read_rc_file (fileptr); fclose (fileptr); } } void cmd_generate (void *data) { XEvent ev1, ev; ev = *rp_current_event; PRINT_DEBUG ("type==%d\n", ev.xkey.type); PRINT_DEBUG ("serial==%ld\n", ev.xkey.serial); PRINT_DEBUG ("send_event==%d\n", ev.xkey.send_event); PRINT_DEBUG ("display=%p\n", ev.xkey.display); /* PRINT_DEBUG ("root==%x ???\n", ev.xkey.root); */ /* PRINT_DEBUG ("window==%x ???\n", ev.xkey.window); */ /* PRINT_DEBUG ("subwindow==%x ???\n", ev.xkey.subwindow); */ PRINT_DEBUG ("time==%ld\n", ev.xkey.time); PRINT_DEBUG ("x==%d y==%d\n", ev.xkey.x, ev.xkey.y); PRINT_DEBUG ("x_root==%d y_root==%d\n", ev.xkey.x_root, ev.xkey.y_root); PRINT_DEBUG ("state==%d\n", ev.xkey.state); PRINT_DEBUG ("keycode==%d\n", ev.xkey.keycode); PRINT_DEBUG ("same_screen=%d\n", ev.xkey.same_screen); /* I am not sure which of the following fields I have to fill in or what to fill them in with (rcy) I wouldnt be suprised if this breaks in some cases. */ ev1.xkey.type = KeyPress; /* ev1.xkey.serial = */ /* ev1.xkey.send_event = */ ev1.xkey.display = dpy; /* ev1.xkey.root = */ ev1.xkey.window = rp_current_window->w; /* ev1.xkey.subwindow = */ /* ev1.xkey.time = ev.xkey.time; */ /* ev1.xkey.x == */ /* ev1.xkey.y == */ /* ev1.xkey.x_root == */ /* ev1.xkey.y_root == */ ev1.xkey.state = prefix_key.state; ev1.xkey.keycode = XKeysymToKeycode (dpy, prefix_key.sym); XSendEvent (dpy, rp_current_window->w, False, KeyPressMask, &ev1); /* XTestFakeKeyEvent (dpy, XKeysymToKeycode (dpy, 't'), True, 0); */ XSync (dpy, False); } void cmd_prev (void *data) { rp_window *w; if (!rp_current_window) message (MESSAGE_NO_MANAGED_WINDOWS); else { w = find_window_prev (rp_current_window); if (!w) message (MESSAGE_NO_OTHER_WINDOW); else set_active_window (w); } } void cmd_next (void *data) { rp_window *w; if (!rp_current_window) message (MESSAGE_NO_MANAGED_WINDOWS); else { w = find_window_next (rp_current_window); if (!w) message (MESSAGE_NO_OTHER_WINDOW); else set_active_window (w); } } void cmd_other (void *data) { rp_window *w; w = find_window_other (); if (!w) message (MESSAGE_NO_OTHER_WINDOW); else set_active_window (w); } static int string_to_window_number (char *str) { int i; char *s; for (i = 0, s = str; *s; s++) { if (*s < '0' || *s > '9') break; i = i * 10 + (*s - '0'); } return *s ? -1 : i; } /* switch to window number or name */ void cmd_select (void *data) { char *str; int n; rp_window *w; if (data == NULL) str = get_input (MESSAGE_PROMPT_SWITCH_TO_WINDOW); else str = strdup ((char *) data); /* Only search if the string contains something to search for. */ if (strlen (str) > 0) { if ((w = find_window_name (str))) set_active_window (w); /* try by number */ if ((n = string_to_window_number (str)) >= 0) { if ((w = find_window_number (n))) set_active_window (w); else /* show the window list as feedback */ show_bar (current_screen ()); } else /* try by name */ { if ((w = find_window_name (str))) set_active_window (w); else /* we need to format a string that includes the str */ message (" no window by that name "); } } free (str); } void cmd_rename (void *data) { char *winname; if (rp_current_window == NULL) return; if (data == NULL) winname = get_input (MESSAGE_PROMPT_NEW_WINDOW_NAME); else winname = strdup ((char *) data); if (*winname) { free (rp_current_window->name); rp_current_window->name = xmalloc (sizeof (char) * strlen (winname) + 1); strcpy (rp_current_window->name, winname); rp_current_window->named = 1; /* Update the program bar. */ update_window_names (rp_current_window->scr); } free (winname); } void cmd_delete (void *data) { XEvent ev; int status; if (rp_current_window == NULL) return; ev.xclient.type = ClientMessage; ev.xclient.window = rp_current_window->w; ev.xclient.message_type = wm_protocols; ev.xclient.format = 32; ev.xclient.data.l[0] = wm_delete; ev.xclient.data.l[1] = CurrentTime; status = XSendEvent(dpy, rp_current_window->w, False, 0, &ev); if (status == 0) fprintf(stderr, "ratpoison: delete window failed\n"); } void cmd_kill (void *data) { if (rp_current_window == NULL) return; XKillClient(dpy, rp_current_window->w); } void cmd_version (void *data) { message (" " PACKAGE " " VERSION " "); } void command (char *data) { char *cmd, *rest; char *input; user_command *uc; struct sbuf *buf = NULL; if (data == NULL) return; /* get a writable copy for strtok() */ input = strdup ((char *) data); cmd = strtok (input, " "); if (cmd == NULL) goto done; rest = strtok (NULL, "\0"); PRINT_DEBUG ("cmd==%s rest==%s\n", cmd, (char*)rest); /* find the command */ for (uc = user_commands; uc->name; uc++) { if (!strcmp (cmd, uc->name)) { uc->func (rest); goto done; } } /* couldnt find the command name */ buf = sbuf_new (strlen(MESSAGE_UNKNOWN_COMMAND + strlen (cmd) + 4)); sbuf_copy (buf, MESSAGE_UNKNOWN_COMMAND); sbuf_concat (buf, "'"); sbuf_concat (buf, cmd); sbuf_concat (buf, "' "); message (sbuf_get (buf)); sbuf_free (buf); done: free (input); } void cmd_colon (void *data) { char *input; if (data == NULL) input = get_input (MESSAGE_PROMPT_COMMAND); else input = get_more_input (MESSAGE_PROMPT_COMMAND, data); command (input); free (input); } void cmd_exec (void *data) { char *cmd; if (data == NULL) cmd = get_input (MESSAGE_PROMPT_SHELL_COMMAND); else cmd = strdup ((char *) data); spawn (cmd); free (cmd); } void spawn(void *data) { char *cmd = data; /* * ugly dance to avoid leaving zombies. Could use SIGCHLD, * but it's not very portable. */ if (fork() == 0) { if (fork() == 0) { putenv(DisplayString(dpy)); execl("/bin/sh", "sh", "-c", cmd, 0); PRINT_ERROR ("exec '%s' ", cmd); perror(" failed"); exit(EXIT_FAILURE); } exit(0); } wait((int *) 0); PRINT_DEBUG ("spawned %s\n", cmd); } /* Switch to a different Window Manager. Thanks to "Chr. v. Stuckrad" for the patch. */ void cmd_newwm(void *data) { char *prog; if (data == NULL) prog = get_input (MESSAGE_PROMPT_SWITCH_WM); else prog = strdup ((char *) data); PRINT_DEBUG ("Switching to %s\n", prog); putenv(DisplayString(dpy)); execlp(prog, prog, 0); PRINT_ERROR ("exec %s ", prog); perror(" failed"); free (prog); } /* Quit ratpoison. Thanks to "Chr. v. Stuckrad" for the patch. */ /* static void */ /* bye(void *dummy) */ /* { */ /* PRINT_DEBUG ("Exiting\n"); */ /* clean_up (); */ /* exit (EXIT_SUCCESS); */ /* } */ /* Show the current time on the bar. Thanks to Martin Samuelsson for the patch. */ void cmd_clock (void *data) { char *msg; time_t timep; msg = xmalloc (9); timep = time(NULL); if(timep == ((time_t)-1)) { perror("In show_clock() "); return; } strncpy(msg, ctime(&timep) + 11, 8); /* FIXME: a little bit hardcoded looking */ msg[8] = '\0'; message (msg); free(msg); } /* Toggle the display of the program bar */ void cmd_windows (void *data) { screen_info *s; s = current_screen (); if (!hide_bar (s)) show_bar (s); } void cmd_abort (void *data) { } /* Send the current window the prefix key event */ /* void */ /* cmd_generate_prefix (void *data) */ /* { */ /* XEvent ev; */ /* ev = *rp_current_event; */ /* ev.xkey.window = rp_current_window->w; */ /* ev.xkey.state = MODIFIER_PREFIX; */ /* XSendEvent (dpy, rp_current_window->w, False, KeyPressMask, &ev); */ /* XSync (dpy, False); */ /* } */ /* Maximize the current window. */ void cmd_maximize (void *data) { force_maximize (rp_current_window); } /* Reassign the prefix key. */ void cmd_escape (void *data) { rp_window *cur; struct rp_key *key; rp_action *action; key = parse_keydesc (data); if (key) { /* Update the "generate" keybinding */ action = find_keybinding(prefix_key.sym, 0); if (action != NULL) { action->key = key->sym; action->state = 0; } /* Update the "other" keybinding */ action = find_keybinding(prefix_key.sym, prefix_key.state); if (action != NULL) { action->key = key->sym; action->state = key->state; } /* Remove the grab on the current prefix key */ for (cur = rp_mapped_window_sentinel->next; cur != rp_mapped_window_sentinel; cur = cur->next) { ungrab_prefix_key (cur->w); } prefix_key.sym = key->sym; prefix_key.state = key->state; /* Add the grab for the new prefix key */ for (cur = rp_mapped_window_sentinel->next; cur != rp_mapped_window_sentinel; cur = cur->next) { grab_prefix_key (cur->w); } } else { message (" escape: could not parse key description "); } }