aboutsummaryrefslogtreecommitdiff
path: root/rootston/wl_shell.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-09-27 20:24:13 -0400
committerGitHub <noreply@github.com>2017-09-27 20:24:13 -0400
commit38bb3b960852f9e358ec40c516f99eafeaf83ab2 (patch)
tree755f57a424364aa991e9303760a2040ae324cfd8 /rootston/wl_shell.c
parent1ddda91b1b647df339b5b0a6aefa383e48d634d8 (diff)
parent4e70d36e61dd720e9caadb74b39d3a0cd6c8cad7 (diff)
Merge pull request #162 from emersion/wl_shell
Add wl_shell to rootston
Diffstat (limited to 'rootston/wl_shell.c')
-rw-r--r--rootston/wl_shell.c84
1 files changed, 84 insertions, 0 deletions
diff --git a/rootston/wl_shell.c b/rootston/wl_shell.c
new file mode 100644
index 00000000..2b850d09
--- /dev/null
+++ b/rootston/wl_shell.c
@@ -0,0 +1,84 @@
+#include <assert.h>
+#include <stdlib.h>
+#include <stdbool.h>
+#include <wayland-server.h>
+#include <wlr/types/wlr_box.h>
+#include <wlr/types/wlr_surface.h>
+#include <wlr/types/wlr_wl_shell.h>
+#include <wlr/util/log.h>
+#include "rootston/desktop.h"
+#include "rootston/server.h"
+#include "rootston/input.h"
+
+static void handle_move(struct wl_listener *listener, void *data) {
+ struct roots_wl_shell_surface *roots_surface =
+ wl_container_of(listener, roots_surface, request_move);
+ struct roots_view *view = roots_surface->view;
+ struct roots_input *input = view->desktop->server->input;
+ struct wlr_wl_shell_surface_move_event *e = data;
+
+ // TODO: Some of this might want to live in cursor.c I guess
+ struct roots_input_event *event = NULL;
+ size_t len = sizeof(input->input_events) / sizeof(*input->input_events);
+ for (size_t i = 0; i < len; ++i) {
+ if (input->input_events[i].cursor
+ && input->input_events[i].serial == e->serial) {
+ event = &input->input_events[i];
+ break;
+ }
+ }
+ if (!event || input->mode != ROOTS_CURSOR_PASSTHROUGH) {
+ return;
+ }
+ input->mode = ROOTS_CURSOR_MOVE;
+ input->offs_x = input->cursor->x - view->x;
+ input->offs_y = input->cursor->y - view->y;
+ wlr_seat_pointer_clear_focus(input->wl_seat);
+}
+
+static void handle_destroy(struct wl_listener *listener, void *data) {
+ struct roots_wl_shell_surface *roots_surface =
+ wl_container_of(listener, roots_surface, destroy);
+ wl_list_remove(&roots_surface->destroy.link);
+ wl_list_remove(&roots_surface->ping_timeout.link);
+ wl_list_remove(&roots_surface->request_move.link);
+ wl_list_remove(&roots_surface->request_resize.link);
+ wl_list_remove(&roots_surface->request_set_fullscreen.link);
+ wl_list_remove(&roots_surface->request_set_maximized.link);
+ view_destroy(roots_surface->view);
+ free(roots_surface);
+}
+
+void handle_wl_shell_surface(struct wl_listener *listener, void *data) {
+ struct roots_desktop *desktop =
+ wl_container_of(listener, desktop, wl_shell_surface);
+
+ struct wlr_wl_shell_surface *surface = data;
+ wlr_log(L_DEBUG, "new shell surface: title=%s, class=%s",
+ surface->title, surface->class);
+ wlr_wl_shell_surface_ping(surface); // TODO: segfaults
+
+ struct roots_wl_shell_surface *roots_surface =
+ calloc(1, sizeof(struct roots_wl_shell_surface));
+ // TODO: all of the trimmings
+ wl_list_init(&roots_surface->destroy.link);
+ roots_surface->destroy.notify = handle_destroy;
+ wl_signal_add(&surface->events.destroy, &roots_surface->destroy);
+ wl_list_init(&roots_surface->ping_timeout.link);
+ wl_list_init(&roots_surface->request_move.link);
+ roots_surface->request_move.notify = handle_move;
+ wl_signal_add(&surface->events.request_move, &roots_surface->request_move);
+ wl_list_init(&roots_surface->request_resize.link);
+ wl_list_init(&roots_surface->request_set_fullscreen.link);
+ wl_list_init(&roots_surface->request_set_maximized.link);
+
+ struct roots_view *view = calloc(1, sizeof(struct roots_view));
+ view->type = ROOTS_WL_SHELL_VIEW;
+ view->x = view->y = 200;
+ view->wl_shell_surface = surface;
+ view->roots_wl_shell_surface = roots_surface;
+ view->wlr_surface = surface->surface;
+ view->desktop = desktop;
+ roots_surface->view = view;
+ wl_list_insert(&desktop->views, &view->link);
+}