summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/extensions.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/extensions.h b/include/extensions.h
index 158a40a2..dbd8f625 100644
--- a/include/extensions.h
+++ b/include/extensions.h
@@ -11,6 +11,8 @@ struct background_config {
11 wlc_resource surface; 11 wlc_resource surface;
12 // we need the wl_resource of the surface in the destructor 12 // we need the wl_resource of the surface in the destructor
13 struct wl_resource *wl_surface_res; 13 struct wl_resource *wl_surface_res;
14 // used to determine if client is a background
15 struct wl_client *client;
14}; 16};
15 17
16struct panel_config { 18struct panel_config {
@@ -21,6 +23,8 @@ struct panel_config {
21 // we need the wl_resource of the surface in the destructor 23 // we need the wl_resource of the surface in the destructor
22 struct wl_resource *wl_surface_res; 24 struct wl_resource *wl_surface_res;
23 enum desktop_shell_panel_position panel_position; 25 enum desktop_shell_panel_position panel_position;
26 // used to determine if client is a panel
27 struct wl_client *client;
24}; 28};
25 29
26struct desktop_shell_state { 30struct desktop_shell_state {