summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sway/commands.h1
-rw-r--r--include/sway/config.h1
-rw-r--r--include/sway/debug.h8
3 files changed, 10 insertions, 0 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h
index 32d6cefd..3ebd0002 100644
--- a/include/sway/commands.h
+++ b/include/sway/commands.h
@@ -210,6 +210,7 @@ sway_cmd input_cmd_repeat_rate;
210sway_cmd input_cmd_scroll_button; 210sway_cmd input_cmd_scroll_button;
211sway_cmd input_cmd_scroll_method; 211sway_cmd input_cmd_scroll_method;
212sway_cmd input_cmd_tap; 212sway_cmd input_cmd_tap;
213sway_cmd input_cmd_tap_button_map;
213sway_cmd input_cmd_xkb_layout; 214sway_cmd input_cmd_xkb_layout;
214sway_cmd input_cmd_xkb_model; 215sway_cmd input_cmd_xkb_model;
215sway_cmd input_cmd_xkb_options; 216sway_cmd input_cmd_xkb_options;
diff --git a/include/sway/config.h b/include/sway/config.h
index 75acd4f2..f660a269 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -79,6 +79,7 @@ struct input_config {
79 int scroll_method; 79 int scroll_method;
80 int send_events; 80 int send_events;
81 int tap; 81 int tap;
82 int tap_button_map;
82 83
83 char *xkb_layout; 84 char *xkb_layout;
84 char *xkb_model; 85 char *xkb_model;
diff --git a/include/sway/debug.h b/include/sway/debug.h
index 2430d319..38d4eccd 100644
--- a/include/sway/debug.h
+++ b/include/sway/debug.h
@@ -1,7 +1,15 @@
1#ifndef SWAY_DEBUG_H 1#ifndef SWAY_DEBUG_H
2#define SWAY_DEBUG_H 2#define SWAY_DEBUG_H
3 3
4// Tree
4extern bool enable_debug_tree; 5extern bool enable_debug_tree;
5void update_debug_tree(); 6void update_debug_tree();
6 7
8// Damage
9extern const char *damage_debug;
10
11// Transactions
12extern int txn_timeout_ms;
13extern bool txn_debug;
14
7#endif 15#endif