aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/criteria.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-05-12 08:52:54 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2018-05-12 08:52:54 -0400
commit32a572cecfd0f6072a78ce0a381a2f8365f9010a (patch)
treeff3860acec8478bd3962145bafaa2bac19717bad /include/sway/criteria.h
parentRevert "Merge pull request #1953 from RyanDwyer/criteria-focused" (diff)
downloadsway-32a572cecfd0f6072a78ce0a381a2f8365f9010a.tar.gz
sway-32a572cecfd0f6072a78ce0a381a2f8365f9010a.tar.zst
sway-32a572cecfd0f6072a78ce0a381a2f8365f9010a.zip
Revert "Merge pull request #1943 from RyanDwyer/criteria-improvements"
Diffstat (limited to 'include/sway/criteria.h')
-rw-r--r--include/sway/criteria.h73
1 files changed, 27 insertions, 46 deletions
diff --git a/include/sway/criteria.h b/include/sway/criteria.h
index 74da132c..ec256ddb 100644
--- a/include/sway/criteria.h
+++ b/include/sway/criteria.h
@@ -1,61 +1,42 @@
1#ifndef _SWAY_CRITERIA_H 1#ifndef _SWAY_CRITERIA_H
2#define _SWAY_CRITERIA_H 2#define _SWAY_CRITERIA_H
3 3
4#include <pcre.h> 4#include "tree/container.h"
5#include "list.h" 5#include "list.h"
6#include "tree/view.h"
7
8enum criteria_type {
9 CT_COMMAND = 1 << 0,
10 CT_ASSIGN_OUTPUT = 1 << 1,
11 CT_ASSIGN_WORKSPACE = 1 << 2,
12};
13 6
7/**
8 * Maps criteria (as a list of criteria tokens) to a command list.
9 *
10 * A list of tokens together represent a single criteria string (e.g.
11 * '[class="abc" title="xyz"]' becomes two criteria tokens).
12 *
13 * for_window: Views matching all criteria will have the bound command list
14 * executed on them.
15 *
16 * Set via `for_window <criteria> <cmd list>`.
17 */
14struct criteria { 18struct criteria {
15 enum criteria_type type; 19 list_t *tokens; // struct crit_token, contains compiled regex.
16 char *raw; // entire criteria string (for logging) 20 char *crit_raw; // entire criteria string (for logging)
21
17 char *cmdlist; 22 char *cmdlist;
18 char *target; // workspace or output name for `assign` criteria
19
20 pcre *title;
21 pcre *app_id;
22 pcre *class;
23 pcre *instance;
24 pcre *con_mark;
25 uint32_t con_id; // internal ID
26 uint32_t id; // X11 window ID
27 pcre *window_role;
28 uint32_t window_type;
29 bool floating;
30 bool tiling;
31 char urgent; // 'l' for latest or 'o' for oldest
32 char *workspace;
33}; 23};
34 24
35bool criteria_is_empty(struct criteria *criteria); 25int criteria_cmp(const void *item, const void *data);
26void free_criteria(struct criteria *crit);
36 27
37void criteria_destroy(struct criteria *criteria); 28// Pouplate list with crit_tokens extracted from criteria string, returns error
29// string or NULL if successful.
30char *extract_crit_tokens(list_t *tokens, const char *criteria);
38 31
39/** 32// Returns list of criteria that match given container. These criteria have
40 * Generate a criteria struct from a raw criteria string such as 33// been set with `for_window` commands and have an associated cmdlist.
41 * [class="foo" instance="bar"] (brackets inclusive). 34list_t *criteria_for(struct sway_container *cont);
42 *
43 * The error argument is expected to be an address of a null pointer. If an
44 * error is encountered, the function will return NULL and the pointer will be
45 * changed to point to the error string. This string should be freed afterwards.
46 */
47struct criteria *criteria_parse(char *raw, char **error);
48 35
49/** 36// Returns a list of all containers that match the given list of tokens.
50 * Compile a list of criterias matching the given view. 37list_t *container_for_crit_tokens(list_t *tokens);
51 *
52 * Criteria types can be bitwise ORed.
53 */
54list_t *criteria_for_view(struct sway_view *view, enum criteria_type types);
55 38
56/** 39// Returns true if any criteria in the given list matches this container
57 * Compile a list of views matching the given criteria. 40bool criteria_any(struct sway_container *cont, list_t *criteria);
58 */
59list_t *criteria_get_views(struct criteria *criteria);
60 41
61#endif 42#endif