summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-12-02 16:08:45 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2016-12-02 16:08:45 -0500
commite9e1a6a409a276310e1015763184641547e7823c (patch)
treee3133eedaa7aa43051c2ce849e2b205d763be83a /include
parentDrop -Denable-binding-event (diff)
downloadsway-e9e1a6a409a276310e1015763184641547e7823c.tar.gz
sway-e9e1a6a409a276310e1015763184641547e7823c.tar.zst
sway-e9e1a6a409a276310e1015763184641547e7823c.zip
Add IPC policy to config
Also reduces enum abuse, cc @minus7
Diffstat (limited to 'include')
-rw-r--r--include/ipc.h2
-rw-r--r--include/sway/config.h9
2 files changed, 7 insertions, 4 deletions
diff --git a/include/ipc.h b/include/ipc.h
index 496625ce..98390335 100644
--- a/include/ipc.h
+++ b/include/ipc.h
@@ -1,6 +1,8 @@
1#ifndef _SWAY_IPC_H 1#ifndef _SWAY_IPC_H
2#define _SWAY_IPC_H 2#define _SWAY_IPC_H
3 3
4#define event_mask(ev) (1 << (ev & 0x7F))
5
4enum ipc_command_type { 6enum ipc_command_type {
5 IPC_COMMAND = 0, 7 IPC_COMMAND = 0,
6 IPC_GET_WORKSPACES = 1, 8 IPC_GET_WORKSPACES = 1,
diff --git a/include/sway/config.h b/include/sway/config.h
index 14a86e49..1154b871 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -135,7 +135,7 @@ struct bar_config {
135 int height; // -1 not defined 135 int height; // -1 not defined
136 int tray_padding; 136 int tray_padding;
137 bool workspace_buttons; 137 bool workspace_buttons;
138 bool wrap_scroll; 138 bool wrap_scroll;
139 char *separator_symbol; 139 char *separator_symbol;
140 bool strip_workspace_numbers; 140 bool strip_workspace_numbers;
141 bool binding_mode_indicator; 141 bool binding_mode_indicator;
@@ -191,7 +191,7 @@ enum command_context {
191 191
192struct command_policy { 192struct command_policy {
193 char *command; 193 char *command;
194 enum command_context context; 194 uint32_t context;
195}; 195};
196 196
197enum secure_feature { 197enum secure_feature {
@@ -206,7 +206,7 @@ enum secure_feature {
206 206
207struct feature_policy { 207struct feature_policy {
208 char *program; 208 char *program;
209 enum secure_feature features; 209 uint32_t features;
210}; 210};
211 211
212/** 212/**
@@ -228,7 +228,7 @@ struct sway_config {
228 uint32_t floating_mod; 228 uint32_t floating_mod;
229 uint32_t dragging_key; 229 uint32_t dragging_key;
230 uint32_t resizing_key; 230 uint32_t resizing_key;
231 char *floating_scroll_up_cmd; 231 char *floating_scroll_up_cmd;
232 char *floating_scroll_down_cmd; 232 char *floating_scroll_down_cmd;
233 char *floating_scroll_left_cmd; 233 char *floating_scroll_left_cmd;
234 char *floating_scroll_right_cmd; 234 char *floating_scroll_right_cmd;
@@ -281,6 +281,7 @@ struct sway_config {
281 // Security 281 // Security
282 list_t *command_policies; 282 list_t *command_policies;
283 list_t *feature_policies; 283 list_t *feature_policies;
284 uint32_t ipc_policy;
284}; 285};
285 286
286void pid_workspace_add(struct pid_workspace *pw); 287void pid_workspace_add(struct pid_workspace *pw);