mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-16 08:56:26 -05:00
Add first try to add wl_shell to rootston
This commit is contained in:
parent
1ddda91b1b
commit
ed9a43c213
6 changed files with 97 additions and 3 deletions
20
rootston/wl_shell.c
Normal file
20
rootston/wl_shell.c
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#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"
|
||||
|
||||
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 wl_shell surface");
|
||||
wlr_wl_shell_surface_ping(surface);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue