mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
Merge pull request #91 from martinetd/move_wl_shell
Move wl_shell into wlroots
This commit is contained in:
commit
19d6442f52
9 changed files with 117 additions and 85 deletions
|
|
@ -9,6 +9,7 @@ lib_wlr_types = static_library('wlr_types', files(
|
|||
'wlr_tablet_tool.c',
|
||||
'wlr_touch.c',
|
||||
'wlr_xdg_shell_v6.c',
|
||||
'wlr_wl_shell.c',
|
||||
),
|
||||
include_directories: wlr_inc,
|
||||
dependencies: [wayland_server, pixman, wlr_protos])
|
||||
|
|
|
|||
151
types/wlr_wl_shell.c
Normal file
151
types/wlr_wl_shell.c
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
#include <assert.h>
|
||||
#include <wayland-server.h>
|
||||
#include <wlr/util/log.h>
|
||||
#include <wlr/types/wlr_wl_shell.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
static void shell_surface_pong(struct wl_client *client, struct wl_resource
|
||||
*resource, uint32_t serial) {
|
||||
wlr_log(L_DEBUG, "TODO: implement shell surface pong");
|
||||
}
|
||||
|
||||
static void shell_surface_move(struct wl_client *client, struct wl_resource
|
||||
*resource, struct wl_resource *seat, uint32_t serial) {
|
||||
wlr_log(L_DEBUG, "TODO: implement shell surface move");
|
||||
}
|
||||
|
||||
static void shell_surface_resize(struct wl_client *client,
|
||||
struct wl_resource *resource, struct wl_resource *seat, uint32_t serial,
|
||||
uint32_t edges) {
|
||||
wlr_log(L_DEBUG, "TODO: implement shell surface resize");
|
||||
}
|
||||
|
||||
static void shell_surface_set_toplevel(struct wl_client *client,
|
||||
struct wl_resource *resource) {
|
||||
wlr_log(L_DEBUG, "TODO: implement shell surface set_toplevel");
|
||||
}
|
||||
|
||||
static void shell_surface_set_transient(struct wl_client *client,
|
||||
struct wl_resource *resource, struct wl_resource *parent, int32_t x,
|
||||
int32_t y, uint32_t flags) {
|
||||
wlr_log(L_DEBUG, "TODO: implement shell surface set_transient");
|
||||
}
|
||||
|
||||
static void shell_surface_set_fullscreen(struct wl_client *client,
|
||||
struct wl_resource *resource, uint32_t method, uint32_t framerate,
|
||||
struct wl_resource *output) {
|
||||
wlr_log(L_DEBUG, "TODO: implement shell surface set_fullscreen");
|
||||
}
|
||||
|
||||
static void shell_surface_set_popup(struct wl_client *client,
|
||||
struct wl_resource *resource, struct wl_resource *seat, uint32_t serial,
|
||||
struct wl_resource *parent, int32_t x, int32_t y, uint32_t flags) {
|
||||
wlr_log(L_DEBUG, "TODO: implement shell surface set_popup");
|
||||
}
|
||||
|
||||
static void shell_surface_set_maximized(struct wl_client *client,
|
||||
struct wl_resource *resource, struct wl_resource *output) {
|
||||
wlr_log(L_DEBUG, "TODO: implement shell surface set_maximized");
|
||||
}
|
||||
|
||||
static void shell_surface_set_title(struct wl_client *client,
|
||||
struct wl_resource *resource, const char *title) {
|
||||
wlr_log(L_DEBUG, "TODO: implement shell surface set_title");
|
||||
}
|
||||
|
||||
static void shell_surface_set_class(struct wl_client *client,
|
||||
struct wl_resource *resource, const char *class_) {
|
||||
wlr_log(L_DEBUG, "TODO: implement shell surface set_class");
|
||||
}
|
||||
|
||||
struct wl_shell_surface_interface shell_surface_interface = {
|
||||
.pong = shell_surface_pong,
|
||||
.move = shell_surface_move,
|
||||
.resize = shell_surface_resize,
|
||||
.set_toplevel = shell_surface_set_toplevel,
|
||||
.set_transient = shell_surface_set_transient,
|
||||
.set_fullscreen = shell_surface_set_fullscreen,
|
||||
.set_popup = shell_surface_set_popup,
|
||||
.set_maximized = shell_surface_set_maximized,
|
||||
.set_title = shell_surface_set_title,
|
||||
.set_class = shell_surface_set_class,
|
||||
};
|
||||
|
||||
static void destroy_shell_surface(struct wl_resource *resource) {
|
||||
struct wlr_wl_shell_surface *state = wl_resource_get_user_data(resource);
|
||||
wl_list_remove(&state->link);
|
||||
free(state);
|
||||
}
|
||||
|
||||
static void wl_shell_get_shell_surface(struct wl_client *client,
|
||||
struct wl_resource *resource, uint32_t id,
|
||||
struct wl_resource *surface) {
|
||||
struct wlr_texture *wlr_texture = wl_resource_get_user_data(surface);
|
||||
struct wlr_wl_shell *wlr_wl_shell = wl_resource_get_user_data(resource);
|
||||
struct wlr_wl_shell_surface *state =
|
||||
calloc(1, sizeof(struct wlr_wl_shell_surface));
|
||||
state->wlr_texture = wlr_texture;
|
||||
state->surface = surface;
|
||||
struct wl_resource *shell_surface_resource = wl_resource_create(client,
|
||||
&wl_shell_surface_interface, wl_resource_get_version(resource), id);
|
||||
wl_resource_set_implementation(shell_surface_resource,
|
||||
&shell_surface_interface, state, destroy_shell_surface);
|
||||
wl_list_insert(&wlr_wl_shell->surfaces, &state->link);
|
||||
}
|
||||
|
||||
static struct wl_shell_interface wl_shell_impl = {
|
||||
.get_shell_surface = wl_shell_get_shell_surface
|
||||
};
|
||||
|
||||
static void wl_shell_destroy(struct wl_resource *resource) {
|
||||
wl_list_remove(wl_resource_get_link(resource));
|
||||
}
|
||||
|
||||
static void wl_shell_bind(struct wl_client *wl_client, void *_wl_shell,
|
||||
uint32_t version, uint32_t id) {
|
||||
struct wlr_wl_shell *wl_shell = _wl_shell;
|
||||
assert(wl_client && wl_shell);
|
||||
if (version > 1) {
|
||||
wlr_log(L_ERROR, "Client requested unsupported wl_shell version, disconnecting");
|
||||
wl_client_destroy(wl_client);
|
||||
return;
|
||||
}
|
||||
struct wl_resource *wl_resource = wl_resource_create(
|
||||
wl_client, &wl_shell_interface, version, id);
|
||||
wl_resource_set_implementation(wl_resource, &wl_shell_impl,
|
||||
wl_shell, wl_shell_destroy);
|
||||
wl_list_insert(&wl_shell->wl_resources, wl_resource_get_link(wl_resource));
|
||||
}
|
||||
|
||||
struct wlr_wl_shell *wlr_wl_shell_create(struct wl_display *display) {
|
||||
struct wlr_wl_shell *wlr_wl_shell =
|
||||
calloc(1, sizeof(struct wlr_wl_shell));
|
||||
if (!wlr_wl_shell) {
|
||||
return NULL;
|
||||
}
|
||||
struct wl_global *wl_global = wl_global_create(display,
|
||||
&wl_shell_interface, 1, wlr_wl_shell, wl_shell_bind);
|
||||
if (!wl_global) {
|
||||
free(wlr_wl_shell);
|
||||
return NULL;
|
||||
}
|
||||
wlr_wl_shell->wl_global = wl_global;
|
||||
wl_list_init(&wlr_wl_shell->wl_resources);
|
||||
wl_list_init(&wlr_wl_shell->surfaces);
|
||||
return wlr_wl_shell;
|
||||
}
|
||||
|
||||
void wlr_wl_shell_destroy(struct wlr_wl_shell *wlr_wl_shell) {
|
||||
if (!wlr_wl_shell) {
|
||||
return;
|
||||
}
|
||||
struct wl_resource *resource = NULL, *temp = NULL;
|
||||
wl_resource_for_each_safe(resource, temp, &wlr_wl_shell->wl_resources) {
|
||||
struct wl_list *link = wl_resource_get_link(resource);
|
||||
wl_list_remove(link);
|
||||
}
|
||||
// TODO: destroy surfaces
|
||||
// TODO: this segfault (wl_display->registry_resource_list is not init)
|
||||
// wl_global_destroy(wlr_wl_shell->wl_global);
|
||||
free(wlr_wl_shell);
|
||||
}
|
||||
|
|
@ -93,6 +93,7 @@ static const struct zxdg_toplevel_v6_interface zxdg_toplevel_v6_implementation =
|
|||
|
||||
static void xdg_surface_destroy(struct wl_resource *resource) {
|
||||
struct wlr_xdg_surface_v6 *surface = wl_resource_get_user_data(resource);
|
||||
wl_list_remove(&surface->link);
|
||||
free(surface);
|
||||
}
|
||||
|
||||
|
|
@ -159,12 +160,15 @@ static void xdg_shell_pong(struct wl_client *client,
|
|||
}
|
||||
|
||||
static struct zxdg_shell_v6_interface xdg_shell_impl = {
|
||||
.destroy = resource_destroy,
|
||||
.create_positioner = xdg_shell_create_positioner,
|
||||
.get_xdg_surface = xdg_shell_get_xdg_surface,
|
||||
.pong = xdg_shell_pong,
|
||||
};
|
||||
|
||||
static void xdg_shell_destroy(struct wl_resource *resource) {
|
||||
wl_list_remove(wl_resource_get_link(resource));
|
||||
}
|
||||
|
||||
static void xdg_shell_bind(struct wl_client *wl_client, void *_xdg_shell,
|
||||
uint32_t version, uint32_t id) {
|
||||
struct wlr_xdg_shell_v6 *xdg_shell = _xdg_shell;
|
||||
|
|
@ -176,11 +180,11 @@ static void xdg_shell_bind(struct wl_client *wl_client, void *_xdg_shell,
|
|||
}
|
||||
struct wl_resource *wl_resource = wl_resource_create(
|
||||
wl_client, &zxdg_shell_v6_interface, version, id);
|
||||
wl_resource_set_implementation(wl_resource, &xdg_shell_impl, xdg_shell, NULL);
|
||||
wl_resource_set_implementation(wl_resource, &xdg_shell_impl, xdg_shell, xdg_shell_destroy);
|
||||
wl_list_insert(&xdg_shell->wl_resources, wl_resource_get_link(wl_resource));
|
||||
}
|
||||
|
||||
struct wlr_xdg_shell_v6 *wlr_xdg_shell_v6_init(struct wl_display *display) {
|
||||
struct wlr_xdg_shell_v6 *wlr_xdg_shell_v6_create(struct wl_display *display) {
|
||||
struct wlr_xdg_shell_v6 *xdg_shell =
|
||||
calloc(1, sizeof(struct wlr_xdg_shell_v6));
|
||||
if (!xdg_shell) {
|
||||
|
|
@ -189,7 +193,7 @@ struct wlr_xdg_shell_v6 *wlr_xdg_shell_v6_init(struct wl_display *display) {
|
|||
struct wl_global *wl_global = wl_global_create(display,
|
||||
&zxdg_shell_v6_interface, 1, xdg_shell, xdg_shell_bind);
|
||||
if (!wl_global) {
|
||||
wlr_xdg_shell_v6_destroy(xdg_shell);
|
||||
free(xdg_shell);
|
||||
return NULL;
|
||||
}
|
||||
xdg_shell->wl_global = wl_global;
|
||||
|
|
@ -208,6 +212,7 @@ void wlr_xdg_shell_v6_destroy(struct wlr_xdg_shell_v6 *xdg_shell) {
|
|||
wl_list_remove(link);
|
||||
}
|
||||
// TODO: destroy surfaces
|
||||
wl_global_destroy(xdg_shell->wl_global);
|
||||
// TODO: this segfault (wl_display->registry_resource_list is not init)
|
||||
// wl_global_destroy(xdg_shell->wl_global);
|
||||
free(xdg_shell);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue