2007-04-27 11:58:48 -06:00
|
|
|
/*
|
|
|
|
* calmwm - the calm window manager
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
|
|
|
|
*
|
2008-01-11 09:06:44 -07:00
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, 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.
|
|
|
|
*
|
2008-05-18 13:43:50 -06:00
|
|
|
* $Id: conf.c,v 1.30 2008/05/18 19:43:50 oga Exp $
|
2007-04-27 11:58:48 -06:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "headers.h"
|
|
|
|
#include "calmwm.h"
|
|
|
|
|
|
|
|
#ifndef timespeccmp
|
|
|
|
#define timespeccmp(tsp, usp, cmp) \
|
2008-04-15 14:24:41 -06:00
|
|
|
(((tsp)->tv_sec == (usp)->tv_sec) ? \
|
|
|
|
((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
|
|
|
|
((tsp)->tv_sec cmp (usp)->tv_sec))
|
2007-04-27 11:58:48 -06:00
|
|
|
#endif
|
|
|
|
|
2008-03-23 09:09:21 -06:00
|
|
|
extern struct screen_ctx *Curscreen;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
/* Add an command menu entry to the end of the menu */
|
|
|
|
void
|
|
|
|
conf_cmd_add(struct conf *c, char *image, char *label, int flags)
|
|
|
|
{
|
|
|
|
/* "term" and "lock" have special meanings. */
|
|
|
|
|
|
|
|
if (strcmp(label, "term") == 0) {
|
2007-05-28 12:34:27 -06:00
|
|
|
strlcpy(Conf.termpath, image, sizeof(Conf.termpath));
|
2007-04-27 11:58:48 -06:00
|
|
|
} else if (strcmp(label, "lock") == 0) {
|
2007-05-28 12:34:27 -06:00
|
|
|
strlcpy(Conf.lockpath, image, sizeof(Conf.lockpath));
|
2007-04-27 11:58:48 -06:00
|
|
|
} else {
|
|
|
|
struct cmd *cmd;
|
|
|
|
XMALLOC(cmd, struct cmd);
|
|
|
|
cmd->flags = flags;
|
|
|
|
strlcpy(cmd->image, image, sizeof(cmd->image));
|
|
|
|
strlcpy(cmd->label, label, sizeof(cmd->label));
|
|
|
|
TAILQ_INSERT_TAIL(&c->cmdq, cmd, entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2008-03-23 09:09:21 -06:00
|
|
|
conf_changed(char *path)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
|
|
|
static struct timespec old_ts;
|
|
|
|
struct stat sb;
|
|
|
|
int changed;
|
|
|
|
|
2008-03-23 09:09:21 -06:00
|
|
|
/* If the file does not exist we pretend that nothing changed */
|
|
|
|
if (stat(path, &sb) == -1 || !(sb.st_mode & S_IFREG))
|
2007-04-27 11:58:48 -06:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
changed = !timespeccmp(&sb.st_mtimespec, &old_ts, ==);
|
|
|
|
old_ts = sb.st_mtimespec;
|
|
|
|
|
|
|
|
return (changed);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-03-23 09:09:21 -06:00
|
|
|
conf_reload(struct conf *c)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2008-03-23 09:09:21 -06:00
|
|
|
if (!conf_changed(c->conf_path))
|
|
|
|
return;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2008-03-23 09:09:21 -06:00
|
|
|
if (parse_config(c->conf_path, c) == -1) {
|
|
|
|
warnx("config file %s has errors, not reloading", c->conf_path);
|
2007-04-27 11:58:48 -06:00
|
|
|
return;
|
2008-03-23 09:09:21 -06:00
|
|
|
}
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2008-03-23 09:09:21 -06:00
|
|
|
DefaultFont = font_getx(Curscreen, c->DefaultFontName);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-03-23 09:09:21 -06:00
|
|
|
conf_init(struct conf *c)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2008-03-23 09:09:21 -06:00
|
|
|
c->flags = 0;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2008-03-23 09:09:21 -06:00
|
|
|
TAILQ_INIT(&c->ignoreq);
|
|
|
|
TAILQ_INIT(&c->cmdq);
|
2008-04-15 14:24:41 -06:00
|
|
|
TAILQ_INIT(&c->keybindingq);
|
2008-03-23 09:09:21 -06:00
|
|
|
TAILQ_INIT(&c->autogroupq);
|
2007-11-19 15:18:16 -07:00
|
|
|
|
|
|
|
conf_bindname(c, "CM-Return", "terminal");
|
|
|
|
conf_bindname(c, "CM-Delete", "lock");
|
|
|
|
conf_bindname(c, "M-question", "exec");
|
2008-04-07 17:47:09 -06:00
|
|
|
conf_bindname(c, "CM-w", "exec_wm");
|
2007-11-19 15:18:16 -07:00
|
|
|
conf_bindname(c, "M-period", "ssh");
|
|
|
|
conf_bindname(c, "M-Return", "hide");
|
|
|
|
conf_bindname(c, "M-Down", "lower");
|
|
|
|
conf_bindname(c, "M-Up", "raise");
|
|
|
|
conf_bindname(c, "M-slash", "search");
|
|
|
|
conf_bindname(c, "C-slash", "menusearch");
|
|
|
|
conf_bindname(c, "M-Tab", "cycle");
|
|
|
|
conf_bindname(c, "MS-Tab", "rcycle");
|
|
|
|
conf_bindname(c, "CM-n", "label");
|
|
|
|
conf_bindname(c, "CM-x", "delete");
|
2007-11-28 09:02:37 -07:00
|
|
|
conf_bindname(c, "CM-0", "nogroup");
|
2007-11-19 15:18:16 -07:00
|
|
|
conf_bindname(c, "CM-1", "group1");
|
|
|
|
conf_bindname(c, "CM-2", "group2");
|
|
|
|
conf_bindname(c, "CM-3", "group3");
|
2007-11-27 10:17:08 -07:00
|
|
|
conf_bindname(c, "CM-4", "group4");
|
2007-11-19 15:18:16 -07:00
|
|
|
conf_bindname(c, "CM-5", "group5");
|
|
|
|
conf_bindname(c, "CM-6", "group6");
|
|
|
|
conf_bindname(c, "CM-7", "group7");
|
|
|
|
conf_bindname(c, "CM-8", "group8");
|
|
|
|
conf_bindname(c, "CM-9", "group9");
|
|
|
|
conf_bindname(c, "M-Right", "nextgroup");
|
|
|
|
conf_bindname(c, "M-Left", "prevgroup");
|
|
|
|
conf_bindname(c, "CM-f", "maximize");
|
|
|
|
conf_bindname(c, "CM-equal", "vmaximize");
|
2008-04-08 08:12:28 -06:00
|
|
|
conf_bindname(c, "CMS-q", "quit");
|
2007-11-19 15:18:16 -07:00
|
|
|
|
|
|
|
conf_bindname(c, "M-h", "moveleft");
|
|
|
|
conf_bindname(c, "M-j", "movedown");
|
|
|
|
conf_bindname(c, "M-k", "moveup");
|
|
|
|
conf_bindname(c, "M-l", "moveright");
|
|
|
|
conf_bindname(c, "M-H", "bigmoveleft");
|
|
|
|
conf_bindname(c, "M-J", "bigmovedown");
|
|
|
|
conf_bindname(c, "M-K", "bigmoveup");
|
|
|
|
conf_bindname(c, "M-L", "bigmoveright");
|
|
|
|
|
|
|
|
conf_bindname(c, "CM-h", "resizeleft");
|
|
|
|
conf_bindname(c, "CM-j", "resizedown");
|
|
|
|
conf_bindname(c, "CM-k", "resizeup");
|
|
|
|
conf_bindname(c, "CM-l", "resizeright");
|
|
|
|
conf_bindname(c, "CM-H", "bigresizeleft");
|
|
|
|
conf_bindname(c, "CM-J", "bigresizedown");
|
|
|
|
conf_bindname(c, "CM-K", "bigresizeup");
|
|
|
|
conf_bindname(c, "CM-L", "bigresizeright");
|
|
|
|
|
|
|
|
conf_bindname(c, "C-Left", "ptrmoveleft");
|
|
|
|
conf_bindname(c, "C-Down", "ptrmovedown");
|
|
|
|
conf_bindname(c, "C-Up", "ptrmoveup");
|
|
|
|
conf_bindname(c, "C-Right", "ptrmoveright");
|
|
|
|
conf_bindname(c, "CS-Left", "bigptrmoveleft");
|
|
|
|
conf_bindname(c, "CS-Down", "bigptrmovedown");
|
|
|
|
conf_bindname(c, "CS-Up", "bigptrmoveup");
|
|
|
|
conf_bindname(c, "CS-Right", "bigptrmoveright");
|
|
|
|
|
2008-03-23 09:09:21 -06:00
|
|
|
/* Default term/lock */
|
|
|
|
strlcpy(c->termpath, "xterm", sizeof(c->termpath));
|
|
|
|
strlcpy(c->lockpath, "xlock", sizeof(c->lockpath));
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2008-03-23 09:09:21 -06:00
|
|
|
c->DefaultFontName = DEFAULTFONTNAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
conf_setup(struct conf *c, const char *conffile)
|
|
|
|
{
|
|
|
|
if (conffile == NULL) {
|
|
|
|
char *home = getenv("HOME");
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2008-03-23 09:09:21 -06:00
|
|
|
if (home == NULL)
|
|
|
|
errx(1, "No HOME directory.");
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2008-03-23 09:09:21 -06:00
|
|
|
snprintf(c->conf_path, sizeof(c->conf_path), "%s/%s", home,
|
|
|
|
CONFFILE);
|
2008-04-15 14:24:41 -06:00
|
|
|
} else
|
2008-03-23 09:09:21 -06:00
|
|
|
snprintf(c->conf_path, sizeof(c->conf_path), "%s", conffile);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2008-03-23 09:09:21 -06:00
|
|
|
conf_init(c);
|
|
|
|
|
|
|
|
(void)parse_config(c->conf_path, c);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2008-05-18 13:43:50 -06:00
|
|
|
void
|
|
|
|
conf_client(struct client_ctx *cc)
|
2007-04-27 11:58:48 -06:00
|
|
|
{
|
2008-05-18 13:43:50 -06:00
|
|
|
struct winmatch *wm;
|
|
|
|
char *wname = cc->name;
|
|
|
|
int ignore = 0;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
/* Can wname be NULL? */
|
|
|
|
if (wname != NULL) {
|
2008-03-23 09:09:21 -06:00
|
|
|
TAILQ_FOREACH(wm, &Conf.ignoreq, entry) {
|
2008-05-18 13:43:50 -06:00
|
|
|
if (strncasecmp(wm->title, wname, strlen(wm->title))
|
|
|
|
== 0) {
|
2007-04-27 11:58:48 -06:00
|
|
|
ignore = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
ignore = 1;
|
|
|
|
|
2008-05-18 13:43:50 -06:00
|
|
|
cc->bwidth = ignore ? 0 : 3;
|
|
|
|
cc->flags |= ignore ? CLIENT_IGNORE : 0;
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
struct {
|
|
|
|
char *tag;
|
|
|
|
void (*handler)(struct client_ctx *, void *);
|
|
|
|
int flags;
|
|
|
|
void *argument;
|
|
|
|
} name_to_kbfunc[] = {
|
|
|
|
{ "lower", kbfunc_client_lower, KBFLAG_NEEDCLIENT, 0 },
|
|
|
|
{ "raise", kbfunc_client_raise, KBFLAG_NEEDCLIENT, 0 },
|
2007-12-30 19:49:45 -07:00
|
|
|
{ "search", kbfunc_client_search, 0, 0 },
|
2007-11-07 15:00:26 -07:00
|
|
|
{ "menusearch", kbfunc_menu_search, 0, 0 },
|
2007-04-27 11:58:48 -06:00
|
|
|
{ "hide", kbfunc_client_hide, KBFLAG_NEEDCLIENT, 0 },
|
2008-03-17 18:48:56 -06:00
|
|
|
{ "cycle", kbfunc_client_cycle, 0, 0 },
|
|
|
|
{ "rcycle", kbfunc_client_rcycle, 0, 0 },
|
2007-04-27 11:58:48 -06:00
|
|
|
{ "label", kbfunc_client_label, KBFLAG_NEEDCLIENT, 0 },
|
|
|
|
{ "delete", kbfunc_client_delete, KBFLAG_NEEDCLIENT, 0 },
|
2007-11-07 15:00:26 -07:00
|
|
|
{ "group1", kbfunc_client_group, 0, (void *)1 },
|
|
|
|
{ "group2", kbfunc_client_group, 0, (void *)2 },
|
|
|
|
{ "group3", kbfunc_client_group, 0, (void *)3 },
|
|
|
|
{ "group4", kbfunc_client_group, 0, (void *)4 },
|
|
|
|
{ "group5", kbfunc_client_group, 0, (void *)5 },
|
|
|
|
{ "group6", kbfunc_client_group, 0, (void *)6 },
|
|
|
|
{ "group7", kbfunc_client_group, 0, (void *)7 },
|
|
|
|
{ "group8", kbfunc_client_group, 0, (void *)8 },
|
|
|
|
{ "group9", kbfunc_client_group, 0, (void *)9 },
|
|
|
|
{ "nogroup", kbfunc_client_nogroup, 0, 0 },
|
|
|
|
{ "nextgroup", kbfunc_client_nextgroup, 0, 0 },
|
|
|
|
{ "prevgroup", kbfunc_client_prevgroup, 0, 0 },
|
|
|
|
{ "maximize", kbfunc_client_maximize, KBFLAG_NEEDCLIENT, 0 },
|
|
|
|
{ "vmaximize", kbfunc_client_vmaximize, KBFLAG_NEEDCLIENT, 0 },
|
2008-04-07 17:47:09 -06:00
|
|
|
{ "quit", kbfunc_quit_wm, 0, 0 },
|
2008-01-02 18:56:25 -07:00
|
|
|
{ "exec", kbfunc_exec, 0, (void *)CWM_EXEC_PROGRAM },
|
|
|
|
{ "exec_wm", kbfunc_exec, 0, (void *)CWM_EXEC_WM },
|
2007-11-07 15:00:26 -07:00
|
|
|
{ "ssh", kbfunc_ssh, 0, 0 },
|
|
|
|
{ "terminal", kbfunc_term, 0, 0 },
|
|
|
|
{ "lock", kbfunc_lock, 0, 0 },
|
2008-04-16 07:47:29 -06:00
|
|
|
{ "moveup", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_UP|CWM_MOVE) },
|
|
|
|
{ "movedown", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_DOWN|CWM_MOVE) },
|
|
|
|
{ "moveright", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_RIGHT|CWM_MOVE) },
|
|
|
|
{ "moveleft", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_LEFT|CWM_MOVE) },
|
|
|
|
{ "bigmoveup", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_UP|CWM_MOVE|CWM_BIGMOVE) },
|
|
|
|
{ "bigmovedown", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_DOWN|CWM_MOVE|CWM_BIGMOVE) },
|
|
|
|
{ "bigmoveright", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_RIGHT|CWM_MOVE|CWM_BIGMOVE) },
|
|
|
|
{ "bigmoveleft", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_LEFT|CWM_MOVE|CWM_BIGMOVE) },
|
|
|
|
{ "resizeup", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_UP|CWM_RESIZE) },
|
|
|
|
{ "resizedown", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_DOWN|CWM_RESIZE) },
|
|
|
|
{ "resizeright", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_RIGHT|CWM_RESIZE) },
|
|
|
|
{ "resizeleft", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_LEFT|CWM_RESIZE) },
|
|
|
|
{ "bigresizeup", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_UP|CWM_RESIZE|CWM_BIGMOVE) },
|
|
|
|
{ "bigresizedown", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_DOWN|CWM_RESIZE|CWM_BIGMOVE) },
|
|
|
|
{ "bigresizeright", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_RIGHT|CWM_RESIZE|CWM_BIGMOVE) },
|
|
|
|
{ "bigresizeleft", kbfunc_moveresize, KBFLAG_NEEDCLIENT,
|
|
|
|
(void *)(CWM_LEFT|CWM_RESIZE|CWM_BIGMOVE) },
|
|
|
|
{ "ptrmoveup", kbfunc_moveresize, 0, (void *)(CWM_UP|CWM_PTRMOVE) },
|
|
|
|
{ "ptrmovedown", kbfunc_moveresize, 0, (void *)(CWM_DOWN|CWM_PTRMOVE) },
|
|
|
|
{ "ptrmoveleft", kbfunc_moveresize, 0, (void *)(CWM_LEFT|CWM_PTRMOVE) },
|
|
|
|
{ "ptrmoveright", kbfunc_moveresize, 0,
|
|
|
|
(void *)(CWM_RIGHT|CWM_PTRMOVE) },
|
|
|
|
{ "bigptrmoveup", kbfunc_moveresize, 0,
|
|
|
|
(void *)(CWM_UP|CWM_PTRMOVE|CWM_BIGMOVE) },
|
|
|
|
{ "bigptrmovedown", kbfunc_moveresize, 0,
|
|
|
|
(void *)(CWM_DOWN|CWM_PTRMOVE|CWM_BIGMOVE) },
|
|
|
|
{ "bigptrmoveleft", kbfunc_moveresize, 0,
|
|
|
|
(void *)(CWM_LEFT|CWM_PTRMOVE|CWM_BIGMOVE) },
|
|
|
|
{ "bigptrmoveright", kbfunc_moveresize, 0,
|
|
|
|
(void *)(CWM_RIGHT|CWM_PTRMOVE|CWM_BIGMOVE) },
|
2007-04-27 11:58:48 -06:00
|
|
|
{ NULL, NULL, 0, 0},
|
|
|
|
};
|
|
|
|
|
2007-11-13 16:26:04 -07:00
|
|
|
void
|
|
|
|
conf_bindname(struct conf *c, char *name, char *binding)
|
|
|
|
{
|
|
|
|
int iter;
|
|
|
|
struct keybinding *current_binding;
|
|
|
|
char *substring;
|
2007-11-07 15:00:26 -07:00
|
|
|
|
2007-11-13 16:26:04 -07:00
|
|
|
XCALLOC(current_binding, struct keybinding);
|
2007-11-07 15:00:26 -07:00
|
|
|
|
2007-11-13 16:26:04 -07:00
|
|
|
if (strchr(name, 'C') != NULL &&
|
|
|
|
strchr(name, 'C') < strchr(name, '-'))
|
|
|
|
current_binding->modmask |= ControlMask;
|
2007-11-07 15:00:26 -07:00
|
|
|
|
2007-11-13 16:26:04 -07:00
|
|
|
if (strchr(name, 'M') != NULL &&
|
2008-04-15 14:24:41 -06:00
|
|
|
strchr(name, 'M') < strchr(name, '-'))
|
2007-11-13 16:26:04 -07:00
|
|
|
current_binding->modmask |= Mod1Mask;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2007-11-13 16:26:04 -07:00
|
|
|
if (strchr(name, '2') != NULL &&
|
2008-04-15 14:24:41 -06:00
|
|
|
strchr(name, '2') < strchr(name, '-'))
|
2007-11-13 16:26:04 -07:00
|
|
|
current_binding->modmask |= Mod2Mask;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2007-11-13 16:26:04 -07:00
|
|
|
if (strchr(name, '3') != NULL &&
|
2008-04-15 14:24:41 -06:00
|
|
|
strchr(name, '3') < strchr(name, '-'))
|
2007-11-13 16:26:04 -07:00
|
|
|
current_binding->modmask |= Mod3Mask;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2007-11-13 16:26:04 -07:00
|
|
|
if (strchr(name, '4') != NULL &&
|
2008-04-15 14:24:41 -06:00
|
|
|
strchr(name, '4') < strchr(name, '-'))
|
2007-11-13 16:26:04 -07:00
|
|
|
current_binding->modmask |= Mod4Mask;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2007-11-13 16:26:04 -07:00
|
|
|
if (strchr(name, 'S') != NULL &&
|
2008-04-15 14:24:41 -06:00
|
|
|
strchr(name, 'S') < strchr(name, '-'))
|
2007-11-13 16:26:04 -07:00
|
|
|
current_binding->modmask |= ShiftMask;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2007-11-13 16:26:04 -07:00
|
|
|
substring = strchr(name, '-') + 1;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2007-11-13 16:26:04 -07:00
|
|
|
/* If there is no '-' in name, continue as is */
|
|
|
|
if (strchr(name, '-') == NULL)
|
|
|
|
substring = name;
|
|
|
|
|
|
|
|
if (substring[0] == '[' &&
|
|
|
|
substring[strlen(substring)-1] == ']') {
|
|
|
|
sscanf(substring, "[%d]", ¤t_binding->keycode);
|
|
|
|
current_binding->keysym = NoSymbol;
|
|
|
|
} else {
|
|
|
|
current_binding->keycode = 0;
|
|
|
|
current_binding->keysym = XStringToKeysym(substring);
|
|
|
|
}
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2007-11-13 16:26:04 -07:00
|
|
|
if (current_binding->keysym == NoSymbol &&
|
2008-04-15 14:24:41 -06:00
|
|
|
current_binding->keycode == 0) {
|
2007-11-13 16:26:04 -07:00
|
|
|
xfree(current_binding);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-11-19 15:18:16 -07:00
|
|
|
/* We now have the correct binding, remove duplicates. */
|
2008-04-15 14:24:41 -06:00
|
|
|
conf_unbind(c, current_binding);
|
2007-11-19 15:18:16 -07:00
|
|
|
|
|
|
|
if (strcmp("unmap",binding) == 0)
|
|
|
|
return;
|
|
|
|
|
2007-11-13 16:26:04 -07:00
|
|
|
for (iter = 0; name_to_kbfunc[iter].tag != NULL; iter++) {
|
|
|
|
if (strcmp(name_to_kbfunc[iter].tag, binding) != 0)
|
2007-04-27 11:58:48 -06:00
|
|
|
continue;
|
|
|
|
|
2007-11-13 16:26:04 -07:00
|
|
|
current_binding->callback = name_to_kbfunc[iter].handler;
|
|
|
|
current_binding->flags = name_to_kbfunc[iter].flags;
|
|
|
|
current_binding->argument = name_to_kbfunc[iter].argument;
|
2007-04-27 11:58:48 -06:00
|
|
|
TAILQ_INSERT_TAIL(&c->keybindingq, current_binding, entry);
|
2007-11-13 16:26:04 -07:00
|
|
|
break;
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2007-11-13 16:26:04 -07:00
|
|
|
if (name_to_kbfunc[iter].tag != NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
current_binding->callback = kbfunc_cmdexec;
|
2008-04-16 07:38:09 -06:00
|
|
|
current_binding->argument = xstrdup(binding);
|
2007-11-13 16:26:04 -07:00
|
|
|
current_binding->flags = 0;
|
|
|
|
TAILQ_INSERT_TAIL(&c->keybindingq, current_binding, entry);
|
|
|
|
return;
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2007-11-19 15:18:16 -07:00
|
|
|
void conf_unbind(struct conf *c, struct keybinding *unbind)
|
|
|
|
{
|
|
|
|
struct keybinding *key = NULL;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(key, &c->keybindingq, entry) {
|
|
|
|
if (key->modmask != unbind->modmask)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ((key->keycode != 0 && key->keysym == NoSymbol &&
|
2008-05-15 16:18:00 -06:00
|
|
|
key->keycode == unbind->keycode) ||
|
|
|
|
key->keysym == unbind->keysym)
|
2007-11-19 15:18:16 -07:00
|
|
|
TAILQ_REMOVE(&c->keybindingq, key, entry);
|
|
|
|
}
|
|
|
|
}
|