aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sway/input/seat.h1
-rw-r--r--include/sway/tree/workspace.h2
-rw-r--r--include/sway/xwayland.h5
3 files changed, 6 insertions, 2 deletions
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index ef65810c..bef2af77 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -51,6 +51,7 @@ struct sway_seat {
51 bool has_focus; 51 bool has_focus;
52 struct wl_list focus_stack; // list of containers in focus order 52 struct wl_list focus_stack; // list of containers in focus order
53 struct sway_workspace *workspace; 53 struct sway_workspace *workspace;
54 char *prev_workspace_name; // for workspace back_and_forth
54 55
55 // If the focused layer is set, views cannot receive keyboard focus 56 // If the focused layer is set, views cannot receive keyboard focus
56 struct wlr_layer_surface_v1 *focused_layer; 57 struct wlr_layer_surface_v1 *focused_layer;
diff --git a/include/sway/tree/workspace.h b/include/sway/tree/workspace.h
index efdae5a1..b5ae92f3 100644
--- a/include/sway/tree/workspace.h
+++ b/include/sway/tree/workspace.h
@@ -45,8 +45,6 @@ struct sway_workspace {
45 struct sway_workspace_state current; 45 struct sway_workspace_state current;
46}; 46};
47 47
48extern char *prev_workspace_name;
49
50struct workspace_config *workspace_find_config(const char *ws_name); 48struct workspace_config *workspace_find_config(const char *ws_name);
51 49
52struct sway_output *workspace_get_initial_output(const char *name); 50struct sway_output *workspace_get_initial_output(const char *name);
diff --git a/include/sway/xwayland.h b/include/sway/xwayland.h
index 121edad3..93055c46 100644
--- a/include/sway/xwayland.h
+++ b/include/sway/xwayland.h
@@ -10,6 +10,11 @@ enum atom_name {
10 NET_WM_WINDOW_TYPE_UTILITY, 10 NET_WM_WINDOW_TYPE_UTILITY,
11 NET_WM_WINDOW_TYPE_TOOLBAR, 11 NET_WM_WINDOW_TYPE_TOOLBAR,
12 NET_WM_WINDOW_TYPE_SPLASH, 12 NET_WM_WINDOW_TYPE_SPLASH,
13 NET_WM_WINDOW_TYPE_MENU,
14 NET_WM_WINDOW_TYPE_DROPDOWN_MENU,
15 NET_WM_WINDOW_TYPE_POPUP_MENU,
16 NET_WM_WINDOW_TYPE_TOOLTIP,
17 NET_WM_WINDOW_TYPE_NOTIFICATION,
13 NET_WM_STATE_MODAL, 18 NET_WM_STATE_MODAL,
14 ATOM_LAST, 19 ATOM_LAST,
15}; 20};