diff options
author | David Eklov <david.eklov@gmail.com> | 2016-07-04 16:53:03 -0500 |
---|---|---|
committer | David Eklov <david.eklov@gmail.com> | 2016-07-04 21:58:07 -0500 |
commit | 51204b33c18b6f7c248f558fbaeb7198efb32900 (patch) | |
tree | fbbad0ad87bf91d3d8ca3f39cc22b23ed317e4d3 /sway/handlers.c | |
parent | 2f540576238320b0921f2b4bc69e785693f9992c (diff) |
Enable backgrounds and panels to be shell surfaces
Prior to this commit all windows (e.g. shell surfaces) were handled the same
way in handle_view_created. Since backgrounds and panels have to be treated
differently, they could not be shell surfaces. This changes checks whether
a client is a background or a panel in handle_view_created and exists to
let them be dealt with elsewhere.
Diffstat (limited to 'sway/handlers.c')
-rw-r--r-- | sway/handlers.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sway/handlers.c b/sway/handlers.c index b7bb1fde..8f2f8a21 100644 --- a/sway/handlers.c +++ b/sway/handlers.c @@ -176,6 +176,28 @@ static void handle_output_focused(wlc_handle output, bool focus) { } } +static bool client_is_background(struct wl_client *client) { + int i; + for (i = 0; i < desktop_shell.backgrounds->length; i++) { + struct background_config *config = desktop_shell.backgrounds->items[i]; + if (config->client == client) { + return true; + } + } + return false; +} + +static bool client_is_panel(struct wl_client *client) { + int i; + for (i = 0; i < desktop_shell.panels->length; i++) { + struct panel_config *config = desktop_shell.panels->items[i]; + if (config->client == client) { + return true; + } + } + return false; +} + static bool handle_view_created(wlc_handle handle) { // if view is child of another view, the use that as focused container wlc_handle parent = wlc_view_get_parent(handle); @@ -186,6 +208,10 @@ static bool handle_view_created(wlc_handle handle) { struct wl_client *client = wlc_view_get_wl_client(handle); pid_t pid; + if (client_is_background(client) || client_is_panel(client)) { + return true; + } + // Get parent container, to add view in if (parent) { focused = swayc_by_handle(parent); |