diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-05-14 08:33:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-14 08:33:55 -0400 |
commit | 1837756dbed222a6233366f186693e1aeefc2439 (patch) | |
tree | 9793561e72a8d1b1f948080b5e36f98dbfa89619 /include/sway | |
parent | 4e6cb2b4b2cff21ca1ec751986d8a2e138ea1ed5 (diff) | |
parent | 95a10dd4f35c6ffc14d23fa3a19a784e85a31724 (diff) |
Merge pull request #1871 from emersion/kill-wl-shell
Kill wl_shell
Diffstat (limited to 'include/sway')
-rw-r--r-- | include/sway/server.h | 1 | ||||
-rw-r--r-- | include/sway/tree/view.h | 15 |
2 files changed, 0 insertions, 16 deletions
diff --git a/include/sway/server.h b/include/sway/server.h index d04ea896..c95ee0f3 100644 --- a/include/sway/server.h +++ b/include/sway/server.h @@ -58,6 +58,5 @@ void handle_layer_shell_surface(struct wl_listener *listener, void *data); void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data); void handle_xdg_shell_surface(struct wl_listener *listener, void *data); void handle_xwayland_surface(struct wl_listener *listener, void *data); -void handle_wl_shell_surface(struct wl_listener *listener, void *data); #endif diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h index 7c07842b..9af13004 100644 --- a/include/sway/tree/view.h +++ b/include/sway/tree/view.h @@ -10,7 +10,6 @@ struct sway_container; enum sway_view_type { - SWAY_VIEW_WL_SHELL, SWAY_VIEW_XDG_SHELL_V6, SWAY_VIEW_XDG_SHELL, SWAY_VIEW_XWAYLAND, @@ -139,20 +138,6 @@ struct sway_xwayland_unmanaged { struct wl_listener destroy; }; -struct sway_wl_shell_view { - struct sway_view view; - - struct wl_listener commit; - struct wl_listener request_move; - struct wl_listener request_resize; - struct wl_listener request_maximize; - struct wl_listener request_fullscreen; - struct wl_listener set_state; - struct wl_listener destroy; - - int pending_width, pending_height; -}; - struct sway_view_child; struct sway_view_child_impl { |