aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-03 14:21:26 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-03 14:21:26 -0500
commit8239067da42545a59dbb43b941f69470d501f544 (patch)
treeede4a498ffd3f354ac85f296c4b45aed07aaa6ff
parentsway wl_shell (diff)
downloadsway-8239067da42545a59dbb43b941f69470d501f544.tar.gz
sway-8239067da42545a59dbb43b941f69470d501f544.tar.zst
sway-8239067da42545a59dbb43b941f69470d501f544.zip
basic wl-shell
-rw-r--r--include/sway/server.h3
-rw-r--r--include/sway/view.h12
-rw-r--r--sway/desktop/wl_shell.c85
-rw-r--r--sway/meson.build1
-rw-r--r--sway/server.c6
5 files changed, 107 insertions, 0 deletions
diff --git a/include/sway/server.h b/include/sway/server.h
index 1901e39f..bfdb7b8a 100644
--- a/include/sway/server.h
+++ b/include/sway/server.h
@@ -30,6 +30,9 @@ struct sway_server {
30 30
31 struct wlr_xdg_shell_v6 *xdg_shell_v6; 31 struct wlr_xdg_shell_v6 *xdg_shell_v6;
32 struct wl_listener xdg_shell_v6_surface; 32 struct wl_listener xdg_shell_v6_surface;
33
34 struct wlr_wl_shell *wl_shell;
35 struct wl_listener wl_shell_surface;
33}; 36};
34 37
35struct sway_server server; 38struct sway_server server;
diff --git a/include/sway/view.h b/include/sway/view.h
index 77d451e5..22f5ccf9 100644
--- a/include/sway/view.h
+++ b/include/sway/view.h
@@ -19,6 +19,18 @@ struct sway_xdg_surface_v6 {
19 int pending_width, pending_height; 19 int pending_width, pending_height;
20}; 20};
21 21
22struct sway_wl_shell_surface {
23 struct sway_view *view;
24
25 struct wl_listener commit;
26 struct wl_listener request_move;
27 struct wl_listener request_resize;
28 struct wl_listener request_maximize;
29 struct wl_listener destroy;
30
31 int pending_width, pending_height;
32};
33
22enum sway_view_type { 34enum sway_view_type {
23 SWAY_WL_SHELL_VIEW, 35 SWAY_WL_SHELL_VIEW,
24 SWAY_XDG_SHELL_V6_VIEW, 36 SWAY_XDG_SHELL_V6_VIEW,
diff --git a/sway/desktop/wl_shell.c b/sway/desktop/wl_shell.c
index 8bfa605e..3a349425 100644
--- a/sway/desktop/wl_shell.c
+++ b/sway/desktop/wl_shell.c
@@ -28,3 +28,88 @@ static const char *get_prop(struct sway_view *view, enum sway_view_prop prop) {
28 } 28 }
29} 29}
30 30
31static void set_dimensions(struct sway_view *view, int width, int height) {
32 if (!assert_wl_shell(view)) {
33 return;
34 }
35 view->sway_wl_shell_surface->pending_width = width;
36 view->sway_wl_shell_surface->pending_height = height;
37 wlr_wl_shell_surface_configure(view->wlr_wl_shell_surface, 0, width, height);
38}
39
40static void handle_commit(struct wl_listener *listener, void *data) {
41 struct sway_wl_shell_surface *sway_surface =
42 wl_container_of(listener, sway_surface, commit);
43 struct sway_view *view = sway_surface->view;
44 sway_log(L_DEBUG, "wl_shell surface commit %dx%d",
45 sway_surface->pending_width, sway_surface->pending_height);
46 // NOTE: We intentionally discard the view's desired width here
47 // TODO: Let floating views do whatever
48 view->width = sway_surface->pending_width;
49 view->height = sway_surface->pending_height;
50}
51
52static void handle_destroy(struct wl_listener *listener, void *data) {
53 struct sway_wl_shell_surface *sway_surface =
54 wl_container_of(listener, sway_surface, destroy);
55 wl_list_remove(&sway_surface->commit.link);
56 wl_list_remove(&sway_surface->destroy.link);
57 swayc_t *parent = destroy_view(sway_surface->view->swayc);
58 free(sway_surface->view);
59 free(sway_surface);
60 arrange_windows(parent, -1, -1);
61}
62
63void handle_wl_shell_surface(struct wl_listener *listener, void *data) {
64 struct sway_server *server = wl_container_of(
65 listener, server, wl_shell_surface);
66 struct wlr_wl_shell_surface *shell_surface = data;
67
68 if (shell_surface->state != WLR_WL_SHELL_SURFACE_STATE_TOPLEVEL) {
69 // TODO: transient and popups should be floating
70 return;
71 }
72
73 sway_log(L_DEBUG, "New wl_shell toplevel title='%s' app_id='%s'",
74 shell_surface->title, shell_surface->class);
75 wlr_wl_shell_surface_ping(shell_surface);
76
77 struct sway_wl_shell_surface *sway_surface =
78 calloc(1, sizeof(struct sway_wl_shell_surface));
79 if (!sway_assert(sway_surface, "Failed to allocate surface!")) {
80 return;
81 }
82
83 struct sway_view *sway_view = calloc(1, sizeof(struct sway_view));
84 if (!sway_assert(sway_view, "Failed to allocate view!")) {
85 return;
86 }
87 sway_view->type = SWAY_WL_SHELL_VIEW;
88 sway_view->iface.get_prop = get_prop;
89 sway_view->iface.set_dimensions = set_dimensions;
90 sway_view->wlr_wl_shell_surface = shell_surface;
91 sway_view->sway_wl_shell_surface = sway_surface;
92 sway_view->surface = shell_surface->surface;
93 sway_surface->view = sway_view;
94
95 // TODO:
96 // - Wire up listeners
97 // - Handle popups
98 // - Look up pid and open on appropriate workspace
99 // - Set new view to maximized so it behaves nicely
100 // - Criteria
101
102 sway_surface->commit.notify = handle_commit;
103 wl_signal_add(&shell_surface->events.commit, &sway_surface->commit);
104 sway_surface->destroy.notify = handle_destroy;
105 wl_signal_add(&shell_surface->events.destroy, &sway_surface->destroy);
106
107 // TODO: actual focus semantics
108 swayc_t *parent = root_container.children->items[0];
109 parent = parent->children->items[0]; // workspace
110
111 swayc_t *cont = new_view(parent, sway_view);
112 sway_view->swayc = cont;
113
114 arrange_windows(cont->parent, -1, -1);
115}
diff --git a/sway/meson.build b/sway/meson.build
index cf2aa913..dd3570bf 100644
--- a/sway/meson.build
+++ b/sway/meson.build
@@ -6,6 +6,7 @@ sway_sources = files(
6 'ipc-json.c', 6 'ipc-json.c',
7 'ipc-server.c', 7 'ipc-server.c',
8 'desktop/output.c', 8 'desktop/output.c',
9 'desktop/wl_shell.c',
9 'desktop/xdg_shell_v6.c', 10 'desktop/xdg_shell_v6.c',
10 'tree/container.c', 11 'tree/container.c',
11 'tree/layout.c', 12 'tree/layout.c',
diff --git a/sway/server.c b/sway/server.c
index 6e66bc3c..bf5c37eb 100644
--- a/sway/server.c
+++ b/sway/server.c
@@ -7,6 +7,7 @@
7#include <wlr/render.h> 7#include <wlr/render.h>
8#include <wlr/render/gles2.h> 8#include <wlr/render/gles2.h>
9#include <wlr/types/wlr_compositor.h> 9#include <wlr/types/wlr_compositor.h>
10#include <wlr/types/wlr_wl_shell.h>
10// TODO WLR: make Xwayland optional 11// TODO WLR: make Xwayland optional
11#include <wlr/xwayland.h> 12#include <wlr/xwayland.h>
12#include "sway/server.h" 13#include "sway/server.h"
@@ -40,6 +41,11 @@ bool server_init(struct sway_server *server) {
40 &server->xdg_shell_v6_surface); 41 &server->xdg_shell_v6_surface);
41 server->xdg_shell_v6_surface.notify = handle_xdg_shell_v6_surface; 42 server->xdg_shell_v6_surface.notify = handle_xdg_shell_v6_surface;
42 43
44 server->wl_shell = wlr_wl_shell_create(server->wl_display);
45 wl_signal_add(&server->wl_shell->events.new_surface,
46 &server->wl_shell_surface);
47 server->wl_shell_surface.notify = handle_wl_shell_surface;
48
43 server->socket = wl_display_add_socket_auto(server->wl_display); 49 server->socket = wl_display_add_socket_auto(server->wl_display);
44 if (!sway_assert(server->socket, "Unable to open wayland socket")) { 50 if (!sway_assert(server->socket, "Unable to open wayland socket")) {
45 wlr_backend_destroy(server->backend); 51 wlr_backend_destroy(server->backend);