2010-04-16 22:51:25 +02:00
|
|
|
|
/*
|
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-04 02:17:56 +02:00
|
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2010-04-16 22:51:25 +02:00
|
|
|
|
*
|
2010-07-13 11:35:05 +02:00
|
|
|
|
* A "match" is a data structure which acts like a mask or expression to match
|
|
|
|
|
* certain windows or not. For example, when using commands, you can specify a
|
|
|
|
|
* command like this: [title="*Firefox*"] kill. The title member of the match
|
|
|
|
|
* data structure will then be filled and i3 will check each window using
|
|
|
|
|
* match_matches_window() to find the windows affected by this command.
|
|
|
|
|
*
|
2010-04-16 22:51:25 +02:00
|
|
|
|
*/
|
|
|
|
|
#include "all.h"
|
|
|
|
|
|
2012-02-21 13:38:49 +01:00
|
|
|
|
/* From sys/time.h, not sure if it’s available on all systems. */
|
2014-06-15 19:07:02 +02:00
|
|
|
|
#define _i3_timercmp(a, b, CMP) \
|
|
|
|
|
(((a).tv_sec == (b).tv_sec) ? ((a).tv_usec CMP(b).tv_usec) : ((a).tv_sec CMP(b).tv_sec))
|
2012-02-21 13:38:49 +01:00
|
|
|
|
|
2010-08-15 12:18:27 +02:00
|
|
|
|
/*
|
|
|
|
|
* Initializes the Match data structure. This function is necessary because the
|
|
|
|
|
* members representing boolean values (like dock) need to be initialized with
|
|
|
|
|
* -1 instead of 0.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void match_init(Match *match) {
|
|
|
|
|
memset(match, 0, sizeof(Match));
|
2012-01-25 00:00:27 +01:00
|
|
|
|
match->urgent = U_DONTCHECK;
|
2016-09-28 04:04:00 +02:00
|
|
|
|
match->window_mode = WM_ANY;
|
2015-04-18 21:09:03 +02:00
|
|
|
|
/* we use this as the placeholder value for "not set". */
|
|
|
|
|
match->window_type = UINT32_MAX;
|
2010-08-15 12:18:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-07-13 11:35:05 +02:00
|
|
|
|
/*
|
|
|
|
|
* Check if a match is empty. This is necessary while parsing commands to see
|
|
|
|
|
* whether the user specified a match at all.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2010-04-16 22:51:25 +02:00
|
|
|
|
bool match_is_empty(Match *match) {
|
|
|
|
|
/* we cannot simply use memcmp() because the structure is part of a
|
|
|
|
|
* TAILQ and I don’t want to start with things like assuming that the
|
|
|
|
|
* last member of a struct really is at the end in memory… */
|
|
|
|
|
return (match->title == NULL &&
|
2010-06-02 23:32:05 +02:00
|
|
|
|
match->mark == NULL &&
|
2010-04-16 22:51:25 +02:00
|
|
|
|
match->application == NULL &&
|
|
|
|
|
match->class == NULL &&
|
|
|
|
|
match->instance == NULL &&
|
2013-12-15 11:25:58 +01:00
|
|
|
|
match->window_role == NULL &&
|
2015-06-29 23:58:48 +02:00
|
|
|
|
match->workspace == NULL &&
|
2012-01-25 00:00:27 +01:00
|
|
|
|
match->urgent == U_DONTCHECK &&
|
2010-04-16 22:51:25 +02:00
|
|
|
|
match->id == XCB_NONE &&
|
2015-04-18 21:09:03 +02:00
|
|
|
|
match->window_type == UINT32_MAX &&
|
2010-04-16 22:51:25 +02:00
|
|
|
|
match->con_id == NULL &&
|
2016-09-26 18:45:58 +02:00
|
|
|
|
match->dock == M_NODOCK &&
|
2016-09-28 04:04:00 +02:00
|
|
|
|
match->window_mode == WM_ANY);
|
2010-04-16 22:51:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-05-23 18:41:17 +02:00
|
|
|
|
/*
|
|
|
|
|
* Copies the data of a match from src to dest.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void match_copy(Match *dest, Match *src) {
|
|
|
|
|
memcpy(dest, src, sizeof(Match));
|
|
|
|
|
|
2011-09-11 00:53:11 +02:00
|
|
|
|
/* The DUPLICATE_REGEX macro creates a new regular expression from the
|
|
|
|
|
* ->pattern of the old one. It therefore does use a little more memory then
|
|
|
|
|
* with a refcounting system, but it’s easier this way. */
|
2014-06-15 19:07:02 +02:00
|
|
|
|
#define DUPLICATE_REGEX(field) \
|
|
|
|
|
do { \
|
|
|
|
|
if (src->field != NULL) \
|
|
|
|
|
dest->field = regex_new(src->field->pattern); \
|
|
|
|
|
} while (0)
|
2011-05-23 18:41:17 +02:00
|
|
|
|
|
2011-09-11 00:53:11 +02:00
|
|
|
|
DUPLICATE_REGEX(title);
|
|
|
|
|
DUPLICATE_REGEX(mark);
|
|
|
|
|
DUPLICATE_REGEX(application);
|
|
|
|
|
DUPLICATE_REGEX(class);
|
|
|
|
|
DUPLICATE_REGEX(instance);
|
2013-12-15 11:25:58 +01:00
|
|
|
|
DUPLICATE_REGEX(window_role);
|
2015-06-29 23:58:48 +02:00
|
|
|
|
DUPLICATE_REGEX(workspace);
|
2011-05-23 18:41:17 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-07-13 11:35:05 +02:00
|
|
|
|
/*
|
|
|
|
|
* Check if a match data structure matches the given window.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2010-04-16 22:51:25 +02:00
|
|
|
|
bool match_matches_window(Match *match, i3Window *window) {
|
2011-10-23 01:15:13 +02:00
|
|
|
|
LOG("Checking window 0x%08x (class %s)\n", window->id, window->class_class);
|
2011-07-08 00:21:29 +02:00
|
|
|
|
|
|
|
|
|
if (match->class != NULL) {
|
2015-08-28 08:26:27 +02:00
|
|
|
|
if (window->class_class == NULL)
|
|
|
|
|
return false;
|
|
|
|
|
if (strcmp(match->class->pattern, "__focused__") == 0 &&
|
|
|
|
|
strcmp(window->class_class, focused->window->class_class) == 0) {
|
|
|
|
|
LOG("window class matches focused window\n");
|
|
|
|
|
} else if (regex_matches(match->class, window->class_class)) {
|
2011-07-08 00:21:29 +02:00
|
|
|
|
LOG("window class matches (%s)\n", window->class_class);
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2010-04-16 22:51:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-07-08 00:21:29 +02:00
|
|
|
|
if (match->instance != NULL) {
|
2015-08-28 08:26:27 +02:00
|
|
|
|
if (window->class_instance == NULL)
|
|
|
|
|
return false;
|
|
|
|
|
if (strcmp(match->instance->pattern, "__focused__") == 0 &&
|
|
|
|
|
strcmp(window->class_instance, focused->window->class_instance) == 0) {
|
|
|
|
|
LOG("window instance matches focused window\n");
|
|
|
|
|
} else if (regex_matches(match->instance, window->class_instance)) {
|
2011-07-08 00:21:29 +02:00
|
|
|
|
LOG("window instance matches (%s)\n", window->class_instance);
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2010-04-16 22:51:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-07-08 00:21:29 +02:00
|
|
|
|
if (match->id != XCB_NONE) {
|
|
|
|
|
if (window->id == match->id) {
|
|
|
|
|
LOG("match made by window id (%d)\n", window->id);
|
|
|
|
|
} else {
|
|
|
|
|
LOG("window id does not match\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2011-05-15 20:10:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-07-08 00:21:29 +02:00
|
|
|
|
if (match->title != NULL) {
|
2015-08-28 08:26:27 +02:00
|
|
|
|
if (window->name == NULL)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
const char *title = i3string_as_utf8(window->name);
|
|
|
|
|
if (strcmp(match->title->pattern, "__focused__") == 0 &&
|
|
|
|
|
strcmp(title, i3string_as_utf8(focused->window->name)) == 0) {
|
|
|
|
|
LOG("window title matches focused window\n");
|
|
|
|
|
} else if (regex_matches(match->title, title)) {
|
|
|
|
|
LOG("title matches (%s)\n", title);
|
2011-07-08 00:21:29 +02:00
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2010-04-16 22:51:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-15 11:25:58 +01:00
|
|
|
|
if (match->window_role != NULL) {
|
2015-08-28 08:26:27 +02:00
|
|
|
|
if (window->role == NULL)
|
|
|
|
|
return false;
|
|
|
|
|
if (strcmp(match->window_role->pattern, "__focused__") == 0 &&
|
|
|
|
|
strcmp(window->role, focused->window->role) == 0) {
|
|
|
|
|
LOG("window role matches focused window\n");
|
|
|
|
|
} else if (regex_matches(match->window_role, window->role)) {
|
2011-09-18 17:05:10 +02:00
|
|
|
|
LOG("window_role matches (%s)\n", window->role);
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-18 21:09:03 +02:00
|
|
|
|
if (match->window_type != UINT32_MAX) {
|
|
|
|
|
if (window->window_type == match->window_type) {
|
|
|
|
|
LOG("window_type matches (%i)\n", match->window_type);
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-25 00:00:27 +01:00
|
|
|
|
Con *con = NULL;
|
|
|
|
|
if (match->urgent == U_LATEST) {
|
|
|
|
|
/* if the window isn't urgent, no sense in searching */
|
2012-02-21 13:38:49 +01:00
|
|
|
|
if (window->urgent.tv_sec == 0) {
|
2012-01-25 00:00:27 +01:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
/* if we find a window that is newer than this one, bail */
|
2014-06-19 11:20:32 +02:00
|
|
|
|
TAILQ_FOREACH(con, &all_cons, all_cons) {
|
2012-01-25 00:00:27 +01:00
|
|
|
|
if ((con->window != NULL) &&
|
2016-11-08 22:46:43 +01:00
|
|
|
|
_i3_timercmp(con->window->urgent, window->urgent, >)) {
|
2012-01-25 00:00:27 +01:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
LOG("urgent matches latest\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (match->urgent == U_OLDEST) {
|
|
|
|
|
/* if the window isn't urgent, no sense in searching */
|
2012-02-21 13:38:49 +01:00
|
|
|
|
if (window->urgent.tv_sec == 0) {
|
2012-01-25 00:00:27 +01:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
/* if we find a window that is older than this one (and not 0), bail */
|
2014-06-19 11:20:32 +02:00
|
|
|
|
TAILQ_FOREACH(con, &all_cons, all_cons) {
|
2012-01-25 00:00:27 +01:00
|
|
|
|
if ((con->window != NULL) &&
|
2012-02-21 13:38:49 +01:00
|
|
|
|
(con->window->urgent.tv_sec != 0) &&
|
2016-11-08 22:46:43 +01:00
|
|
|
|
_i3_timercmp(con->window->urgent, window->urgent, <)) {
|
2012-01-25 00:00:27 +01:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
LOG("urgent matches oldest\n");
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-29 23:58:48 +02:00
|
|
|
|
if (match->workspace != NULL) {
|
2015-07-01 11:47:55 +02:00
|
|
|
|
if ((con = con_by_window_id(window->id)) == NULL)
|
|
|
|
|
return false;
|
|
|
|
|
|
2015-06-29 23:58:48 +02:00
|
|
|
|
Con *ws = con_get_workspace(con);
|
2015-07-01 11:47:55 +02:00
|
|
|
|
if (ws == NULL)
|
|
|
|
|
return false;
|
2015-06-29 23:58:48 +02:00
|
|
|
|
|
2015-08-28 08:26:27 +02:00
|
|
|
|
if (strcmp(match->workspace->pattern, "__focused__") == 0 &&
|
|
|
|
|
strcmp(ws->name, con_get_workspace(focused)->name) == 0) {
|
|
|
|
|
LOG("workspace matches focused workspace\n");
|
|
|
|
|
} else if (regex_matches(match->workspace, ws->name)) {
|
2015-06-29 23:58:48 +02:00
|
|
|
|
LOG("workspace matches (%s)\n", ws->name);
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-18 21:09:03 +02:00
|
|
|
|
if (match->dock != M_DONTCHECK) {
|
2011-07-08 00:21:29 +02:00
|
|
|
|
if ((window->dock == W_DOCK_TOP && match->dock == M_DOCK_TOP) ||
|
2014-06-15 19:07:02 +02:00
|
|
|
|
(window->dock == W_DOCK_BOTTOM && match->dock == M_DOCK_BOTTOM) ||
|
|
|
|
|
((window->dock == W_DOCK_TOP || window->dock == W_DOCK_BOTTOM) &&
|
|
|
|
|
match->dock == M_DOCK_ANY) ||
|
|
|
|
|
(window->dock == W_NODOCK && match->dock == M_NODOCK)) {
|
2011-07-08 00:21:29 +02:00
|
|
|
|
LOG("dock status matches\n");
|
|
|
|
|
} else {
|
|
|
|
|
LOG("dock status does not match\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2010-08-15 12:18:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-07-08 00:21:29 +02:00
|
|
|
|
if (match->mark != NULL) {
|
2015-12-15 13:38:56 +01:00
|
|
|
|
if ((con = con_by_window_id(window->id)) == NULL)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
bool matched = false;
|
|
|
|
|
mark_t *mark;
|
|
|
|
|
TAILQ_FOREACH(mark, &(con->marks_head), marks) {
|
|
|
|
|
if (regex_matches(match->mark, mark->name)) {
|
|
|
|
|
matched = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (matched) {
|
|
|
|
|
LOG("mark matches\n");
|
|
|
|
|
} else {
|
|
|
|
|
LOG("mark does not match\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2011-07-08 00:21:29 +02:00
|
|
|
|
}
|
2010-04-16 22:51:25 +02:00
|
|
|
|
|
2016-09-28 04:04:00 +02:00
|
|
|
|
if (match->window_mode != WM_ANY) {
|
|
|
|
|
if ((con = con_by_window_id(window->id)) == NULL)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
const bool floating = (con_inside_floating(con) != NULL);
|
|
|
|
|
|
|
|
|
|
if ((match->window_mode == WM_TILING && floating) ||
|
|
|
|
|
(match->window_mode == WM_FLOATING && !floating)) {
|
|
|
|
|
LOG("window_mode does not match\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LOG("window_mode matches\n");
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-08 00:21:29 +02:00
|
|
|
|
return true;
|
2010-04-16 22:51:25 +02:00
|
|
|
|
}
|
2011-09-12 00:41:46 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Frees the given match. It must not be used afterwards!
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void match_free(Match *match) {
|
2015-12-09 13:39:08 +01:00
|
|
|
|
FREE(match->error);
|
2011-09-12 00:41:46 +02:00
|
|
|
|
regex_free(match->title);
|
|
|
|
|
regex_free(match->application);
|
|
|
|
|
regex_free(match->class);
|
|
|
|
|
regex_free(match->instance);
|
|
|
|
|
regex_free(match->mark);
|
2013-12-15 11:25:58 +01:00
|
|
|
|
regex_free(match->window_role);
|
2015-10-28 14:39:23 +01:00
|
|
|
|
regex_free(match->workspace);
|
2011-09-12 00:41:46 +02:00
|
|
|
|
}
|
2015-09-27 09:42:26 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Interprets a ctype=cvalue pair and adds it to the given match specification.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void match_parse_property(Match *match, const char *ctype, const char *cvalue) {
|
|
|
|
|
assert(match != NULL);
|
|
|
|
|
DLOG("ctype=*%s*, cvalue=*%s*\n", ctype, cvalue);
|
|
|
|
|
|
|
|
|
|
if (strcmp(ctype, "class") == 0) {
|
2015-10-28 14:39:23 +01:00
|
|
|
|
regex_free(match->class);
|
2015-09-27 09:42:26 +02:00
|
|
|
|
match->class = regex_new(cvalue);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp(ctype, "instance") == 0) {
|
2015-10-28 14:39:23 +01:00
|
|
|
|
regex_free(match->instance);
|
2015-09-27 09:42:26 +02:00
|
|
|
|
match->instance = regex_new(cvalue);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp(ctype, "window_role") == 0) {
|
2015-10-28 14:39:23 +01:00
|
|
|
|
regex_free(match->window_role);
|
2015-09-27 09:42:26 +02:00
|
|
|
|
match->window_role = regex_new(cvalue);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp(ctype, "con_id") == 0) {
|
2015-10-22 15:38:23 +02:00
|
|
|
|
if (strcmp(cvalue, "__focused__") == 0) {
|
|
|
|
|
match->con_id = focused;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-27 09:42:26 +02:00
|
|
|
|
char *end;
|
2015-11-22 19:32:21 +01:00
|
|
|
|
long parsed = strtol(cvalue, &end, 0);
|
2015-09-27 09:42:26 +02:00
|
|
|
|
if (parsed == LONG_MIN ||
|
|
|
|
|
parsed == LONG_MAX ||
|
|
|
|
|
parsed < 0 ||
|
|
|
|
|
(end && *end != '\0')) {
|
|
|
|
|
ELOG("Could not parse con id \"%s\"\n", cvalue);
|
2015-12-09 13:39:08 +01:00
|
|
|
|
match->error = sstrdup("invalid con_id");
|
2015-09-27 09:42:26 +02:00
|
|
|
|
} else {
|
|
|
|
|
match->con_id = (Con *)parsed;
|
|
|
|
|
DLOG("id as int = %p\n", match->con_id);
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp(ctype, "id") == 0) {
|
|
|
|
|
char *end;
|
2015-12-17 15:43:34 +01:00
|
|
|
|
long parsed = strtol(cvalue, &end, 0);
|
2015-09-27 09:42:26 +02:00
|
|
|
|
if (parsed == LONG_MIN ||
|
|
|
|
|
parsed == LONG_MAX ||
|
|
|
|
|
parsed < 0 ||
|
|
|
|
|
(end && *end != '\0')) {
|
|
|
|
|
ELOG("Could not parse window id \"%s\"\n", cvalue);
|
2015-12-09 13:39:08 +01:00
|
|
|
|
match->error = sstrdup("invalid id");
|
2015-09-27 09:42:26 +02:00
|
|
|
|
} else {
|
|
|
|
|
match->id = parsed;
|
|
|
|
|
DLOG("window id as int = %d\n", match->id);
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp(ctype, "window_type") == 0) {
|
2015-12-09 13:39:08 +01:00
|
|
|
|
if (strcasecmp(cvalue, "normal") == 0) {
|
2015-09-27 09:42:26 +02:00
|
|
|
|
match->window_type = A__NET_WM_WINDOW_TYPE_NORMAL;
|
2015-12-09 13:39:08 +01:00
|
|
|
|
} else if (strcasecmp(cvalue, "dialog") == 0) {
|
2015-09-27 09:42:26 +02:00
|
|
|
|
match->window_type = A__NET_WM_WINDOW_TYPE_DIALOG;
|
2015-12-09 13:39:08 +01:00
|
|
|
|
} else if (strcasecmp(cvalue, "utility") == 0) {
|
2015-09-27 09:42:26 +02:00
|
|
|
|
match->window_type = A__NET_WM_WINDOW_TYPE_UTILITY;
|
2015-12-09 13:39:08 +01:00
|
|
|
|
} else if (strcasecmp(cvalue, "toolbar") == 0) {
|
2015-09-27 09:42:26 +02:00
|
|
|
|
match->window_type = A__NET_WM_WINDOW_TYPE_TOOLBAR;
|
2015-12-09 13:39:08 +01:00
|
|
|
|
} else if (strcasecmp(cvalue, "splash") == 0) {
|
2015-09-27 09:42:26 +02:00
|
|
|
|
match->window_type = A__NET_WM_WINDOW_TYPE_SPLASH;
|
2015-12-09 13:39:08 +01:00
|
|
|
|
} else if (strcasecmp(cvalue, "menu") == 0) {
|
2015-09-27 09:42:26 +02:00
|
|
|
|
match->window_type = A__NET_WM_WINDOW_TYPE_MENU;
|
2015-12-09 13:39:08 +01:00
|
|
|
|
} else if (strcasecmp(cvalue, "dropdown_menu") == 0) {
|
2015-09-27 09:42:26 +02:00
|
|
|
|
match->window_type = A__NET_WM_WINDOW_TYPE_DROPDOWN_MENU;
|
2015-12-09 13:39:08 +01:00
|
|
|
|
} else if (strcasecmp(cvalue, "popup_menu") == 0) {
|
2015-09-27 09:42:26 +02:00
|
|
|
|
match->window_type = A__NET_WM_WINDOW_TYPE_POPUP_MENU;
|
2015-12-09 13:39:08 +01:00
|
|
|
|
} else if (strcasecmp(cvalue, "tooltip") == 0) {
|
2015-09-27 09:42:26 +02:00
|
|
|
|
match->window_type = A__NET_WM_WINDOW_TYPE_TOOLTIP;
|
2015-12-07 12:34:24 +01:00
|
|
|
|
} else if (strcasecmp(cvalue, "notification") == 0) {
|
|
|
|
|
match->window_type = A__NET_WM_WINDOW_TYPE_NOTIFICATION;
|
2015-12-09 13:39:08 +01:00
|
|
|
|
} else {
|
2015-09-27 09:42:26 +02:00
|
|
|
|
ELOG("unknown window_type value \"%s\"\n", cvalue);
|
2015-12-09 13:39:08 +01:00
|
|
|
|
match->error = sstrdup("unknown window_type value");
|
|
|
|
|
}
|
2015-09-27 09:42:26 +02:00
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp(ctype, "con_mark") == 0) {
|
2015-10-28 14:39:23 +01:00
|
|
|
|
regex_free(match->mark);
|
2015-09-27 09:42:26 +02:00
|
|
|
|
match->mark = regex_new(cvalue);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp(ctype, "title") == 0) {
|
2015-10-28 14:39:23 +01:00
|
|
|
|
regex_free(match->title);
|
2015-09-27 09:42:26 +02:00
|
|
|
|
match->title = regex_new(cvalue);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp(ctype, "urgent") == 0) {
|
|
|
|
|
if (strcasecmp(cvalue, "latest") == 0 ||
|
|
|
|
|
strcasecmp(cvalue, "newest") == 0 ||
|
|
|
|
|
strcasecmp(cvalue, "recent") == 0 ||
|
|
|
|
|
strcasecmp(cvalue, "last") == 0) {
|
|
|
|
|
match->urgent = U_LATEST;
|
|
|
|
|
} else if (strcasecmp(cvalue, "oldest") == 0 ||
|
|
|
|
|
strcasecmp(cvalue, "first") == 0) {
|
|
|
|
|
match->urgent = U_OLDEST;
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp(ctype, "workspace") == 0) {
|
2015-10-28 14:39:23 +01:00
|
|
|
|
regex_free(match->workspace);
|
2015-09-27 09:42:26 +02:00
|
|
|
|
match->workspace = regex_new(cvalue);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-28 04:04:00 +02:00
|
|
|
|
if (strcmp(ctype, "tiling") == 0) {
|
|
|
|
|
match->window_mode = WM_TILING;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp(ctype, "floating") == 0) {
|
|
|
|
|
match->window_mode = WM_FLOATING;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-27 09:42:26 +02:00
|
|
|
|
ELOG("Unknown criterion: %s\n", ctype);
|
|
|
|
|
}
|