aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-12-03 17:15:58 -0500
committerLibravatar GitHub <noreply@github.com>2017-12-03 17:15:58 -0500
commitc733e0858fcf9e54dd41f7b8882d5fe722bb01b4 (patch)
tree35d7016c86a5de5e662ff546ffda3394e34d6ec4
parentMerge pull request #1491 from acrisci/refactor/dimension-to-size (diff)
parentwl-shell: class instead of app_id (diff)
downloadsway-c733e0858fcf9e54dd41f7b8882d5fe722bb01b4.tar.gz
sway-c733e0858fcf9e54dd41f7b8882d5fe722bb01b4.tar.zst
sway-c733e0858fcf9e54dd41f7b8882d5fe722bb01b4.zip
Merge pull request #1493 from acrisci/feature/wl-shell
basic wl_shell
-rw-r--r--include/sway/server.h4
-rw-r--r--include/sway/view.h16
-rw-r--r--sway/desktop/wl_shell.c115
-rw-r--r--sway/meson.build1
-rw-r--r--sway/server.c6
5 files changed, 141 insertions, 1 deletions
diff --git a/include/sway/server.h b/include/sway/server.h
index b0684d15..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;
@@ -42,5 +45,6 @@ void output_add_notify(struct wl_listener *listener, void *data);
42void output_remove_notify(struct wl_listener *listener, void *data); 45void output_remove_notify(struct wl_listener *listener, void *data);
43 46
44void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data); 47void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data);
48void handle_wl_shell_surface(struct wl_listener *listener, void *data);
45 49
46#endif 50#endif
diff --git a/include/sway/view.h b/include/sway/view.h
index cf2e6f66..7aa04794 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,
@@ -29,9 +41,9 @@ enum sway_view_type {
29 41
30enum sway_view_prop { 42enum sway_view_prop {
31 VIEW_PROP_TITLE, 43 VIEW_PROP_TITLE,
44 VIEW_PROP_APP_ID,
32 VIEW_PROP_CLASS, 45 VIEW_PROP_CLASS,
33 VIEW_PROP_INSTANCE, 46 VIEW_PROP_INSTANCE,
34 VIEW_PROP_APP_ID,
35}; 47};
36 48
37/** 49/**
@@ -46,10 +58,12 @@ struct sway_view {
46 58
47 union { 59 union {
48 struct wlr_xdg_surface_v6 *wlr_xdg_surface_v6; 60 struct wlr_xdg_surface_v6 *wlr_xdg_surface_v6;
61 struct wlr_wl_shell_surface *wlr_wl_shell_surface;
49 }; 62 };
50 63
51 union { 64 union {
52 struct sway_xdg_surface_v6 *sway_xdg_surface_v6; 65 struct sway_xdg_surface_v6 *sway_xdg_surface_v6;
66 struct sway_wl_shell_surface *sway_wl_shell_surface;
53 }; 67 };
54 68
55 struct { 69 struct {
diff --git a/sway/desktop/wl_shell.c b/sway/desktop/wl_shell.c
new file mode 100644
index 00000000..9641b911
--- /dev/null
+++ b/sway/desktop/wl_shell.c
@@ -0,0 +1,115 @@
1#define _POSIX_C_SOURCE 199309L
2#include <stdbool.h>
3#include <stdlib.h>
4#include <wayland-server.h>
5#include <wlr/types/wlr_wl_shell.h>
6#include "sway/container.h"
7#include "sway/layout.h"
8#include "sway/server.h"
9#include "sway/view.h"
10#include "log.h"
11
12static bool assert_wl_shell(struct sway_view *view) {
13 return sway_assert(view->type == SWAY_WL_SHELL_VIEW,
14 "Expecting wl_shell view!");
15}
16
17static const char *get_prop(struct sway_view *view, enum sway_view_prop prop) {
18 if (!assert_wl_shell(view)) {
19 return NULL;
20 }
21 switch (prop) {
22 case VIEW_PROP_TITLE:
23 return view->wlr_wl_shell_surface->title;
24 case VIEW_PROP_CLASS:
25 return view->wlr_wl_shell_surface->class;
26 default:
27 return NULL;
28 }
29}
30
31static void set_size(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_size = set_size;
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);