aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-08-11 09:37:09 -0400
committerDrew DeVault <sir@cmpwn.com>2017-08-11 09:37:09 -0400
commit62d8b252c093b3bd71362b1c76cb70b16a6cd63a (patch)
treeff109926a2e2e9f4ce8c445cbd8c07e4e9da59ef /examples
parenta6efb9038219562f65c20c997996b74dffed3910 (diff)
Refactor meson and move xdg-shell into wlroots
Diffstat (limited to 'examples')
-rw-r--r--examples/compositor/main.c7
-rw-r--r--examples/compositor/xdg_shell.c205
-rw-r--r--examples/meson.build38
3 files changed, 12 insertions, 238 deletions
diff --git a/examples/compositor/main.c b/examples/compositor/main.c
index f115d267..933e27c7 100644
--- a/examples/compositor/main.c
+++ b/examples/compositor/main.c
@@ -11,6 +11,7 @@
#include <wlr/render/gles2.h>
#include <wlr/types/wlr_output.h>
#include <wlr/types/wlr_surface.h>
+#include <wlr/types/wlr_xdg_shell_v6.h>
#include <xkbcommon/xkbcommon.h>
#include <wlr/util/log.h>
#include "shared.h"
@@ -20,7 +21,7 @@ struct sample_state {
struct wlr_renderer *renderer;
struct wl_compositor_state compositor;
struct wl_shell_state shell;
- struct xdg_shell_state xdg_shell;
+ struct wlr_xdg_shell_v6 *xdg_shell;
};
/*
@@ -72,9 +73,7 @@ int main() {
wl_display_init_shm(compositor.display);
wl_compositor_init(compositor.display, &state.compositor, state.renderer);
wl_shell_init(compositor.display, &state.shell);
- xdg_shell_init(compositor.display, &state.xdg_shell);
+ state.xdg_shell = wlr_xdg_shell_v6_init(compositor.display);
compositor_run(&compositor);
-
- xdg_shell_release(&state.xdg_shell);
}
diff --git a/examples/compositor/xdg_shell.c b/examples/compositor/xdg_shell.c
deleted file mode 100644
index 98aa47a0..00000000
--- a/examples/compositor/xdg_shell.c
+++ /dev/null
@@ -1,205 +0,0 @@
-#include <assert.h>
-#include <wayland-server.h>
-#include <wlr/util/log.h>
-#include <stdlib.h>
-#include "compositor.h"
-#include "xdg-shell-unstable-v6-protocol.h"
-
-static void resource_destructor(struct wl_client *client,
- struct wl_resource *resource) {
- wl_resource_destroy(resource);
-}
-
-static void xdg_toplevel_set_parent(struct wl_client *client,
- struct wl_resource *resource, struct wl_resource *parent_resource) {
- wlr_log(L_DEBUG, "TODO: toplevel set parent");
-}
-
-static void xdg_toplevel_set_title(struct wl_client *client,
- struct wl_resource *resource, const char *title) {
- wlr_log(L_DEBUG, "TODO: toplevel set title");
-}
-
-static void xdg_toplevel_set_app_id(struct wl_client *client,
- struct wl_resource *resource, const char *app_id) {
- wlr_log(L_DEBUG, "TODO: toplevel set app id");
-}
-
-static void xdg_toplevel_show_window_menu(struct wl_client *client,
- struct wl_resource *resource, struct wl_resource *seat, uint32_t serial,
- int32_t x, int32_t y) {
- wlr_log(L_DEBUG, "TODO: toplevel show window menu");
-}
-
-static void xdg_toplevel_move(struct wl_client *client,
- struct wl_resource *resource, struct wl_resource *seat_resource,
- uint32_t serial) {
- wlr_log(L_DEBUG, "TODO: toplevel move");
-}
-
-static void xdg_toplevel_resize(struct wl_client *client,
- struct wl_resource *resource, struct wl_resource *seat_resource,
- uint32_t serial, uint32_t edges) {
- wlr_log(L_DEBUG, "TODO: toplevel resize");
-}
-
-static void xdg_toplevel_set_max_size(struct wl_client *client,
- struct wl_resource *resource, int32_t width, int32_t height) {
- wlr_log(L_DEBUG, "TODO: toplevel set max size");
-}
-
-static void xdg_toplevel_set_min_size(struct wl_client *client,
- struct wl_resource *resource, int32_t width, int32_t height) {
- wlr_log(L_DEBUG, "TODO: toplevel set min size");
-}
-
-static void xdg_toplevel_set_maximized(struct wl_client *client,
- struct wl_resource *resource) {
- wlr_log(L_DEBUG, "TODO: toplevel set maximized");
-}
-
-static void xdg_toplevel_unset_maximized(struct wl_client *client, struct wl_resource *resource) {
- wlr_log(L_DEBUG, "TODO: toplevel unset maximized");
-}
-
-static void xdg_toplevel_set_fullscreen(struct wl_client *client, struct wl_resource *resource, struct wl_resource *output_resource) {
- wlr_log(L_DEBUG, "TODO: toplevel set fullscreen");
-}
-
-static void xdg_toplevel_unset_fullscreen(struct wl_client *client, struct wl_resource *resource) {
- wlr_log(L_DEBUG, "TODO: toplevel unset fullscreen");
-}
-
-static void xdg_toplevel_set_minimized(struct wl_client *client, struct wl_resource *resource) {
- wlr_log(L_DEBUG, "TODO: toplevel set minimized");
-}
-
-static const struct zxdg_toplevel_v6_interface zxdg_toplevel_v6_implementation = {
- .destroy = resource_destructor,
- .set_parent = xdg_toplevel_set_parent,
- .set_title = xdg_toplevel_set_title,
- .set_app_id = xdg_toplevel_set_app_id,
- .show_window_menu = xdg_toplevel_show_window_menu,
- .move = xdg_toplevel_move,
- .resize = xdg_toplevel_resize,
- .set_max_size = xdg_toplevel_set_max_size,
- .set_min_size = xdg_toplevel_set_min_size,
- .set_maximized = xdg_toplevel_set_maximized,
- .unset_maximized = xdg_toplevel_unset_maximized,
- .set_fullscreen = xdg_toplevel_set_fullscreen,
- .unset_fullscreen = xdg_toplevel_unset_fullscreen,
- .set_minimized = xdg_toplevel_set_minimized
-};
-
-struct xdg_surface_state {
- struct wlr_texture *wlr_texture;
- struct wl_display *display;
-};
-
-
-static void destroy_xdg_shell_surface(struct wl_resource *resource) {
- struct xdg_surface_state *state = wl_resource_get_user_data(resource);
- free(state);
-}
-
-static void xdg_surface_get_toplevel(struct wl_client *client,
- struct wl_resource *resource, uint32_t id) {
- struct xdg_surface_state *state = wl_resource_get_user_data(resource);
- struct wl_resource *toplevel_resource = wl_resource_create(client,
- &zxdg_toplevel_v6_interface, wl_resource_get_version(resource), id);
- wl_resource_set_implementation(toplevel_resource,
- &zxdg_toplevel_v6_implementation, state, NULL);
- zxdg_surface_v6_send_configure(resource, wl_display_next_serial(state->display));
-}
-
-static void xdg_surface_get_popup(struct wl_client *client,
- struct wl_resource *resource, uint32_t id, struct wl_resource *parent,
- struct wl_resource *wl_positioner) {
- wlr_log(L_DEBUG, "TODO xdg surface get popup");
-}
-
-
-static void xdg_surface_ack_configure(struct wl_client *client,
- struct wl_resource *resource, uint32_t serial) {
- wlr_log(L_DEBUG, "TODO xdg surface ack configure");
-}
-
-static void xdg_surface_set_window_geometry(struct wl_client *client,
- struct wl_resource *resource, int32_t x, int32_t y, int32_t width,
- int32_t height) {
- wlr_log(L_DEBUG, "TODO xdg surface set window geometry");
-}
-
-static const struct zxdg_surface_v6_interface zxdg_surface_v6_implementation = {
- .destroy = resource_destructor,
- .get_toplevel = xdg_surface_get_toplevel,
- .get_popup = xdg_surface_get_popup,
- .ack_configure = xdg_surface_ack_configure,
- .set_window_geometry = xdg_surface_set_window_geometry,
-};
-
-static void xdg_shell_create_positioner(struct wl_client *client,
- struct wl_resource *resource, uint32_t id) {
- wlr_log(L_DEBUG, "TODO: xdg shell create positioner");
-}
-
-static void xdg_shell_get_xdg_surface(struct wl_client *client, struct
- wl_resource *resource, uint32_t id,
- struct wl_resource *surface_resource) {
- struct xdg_shell_state *shell_state = wl_resource_get_user_data(resource);
- struct wlr_texture *wlr_texture = wl_resource_get_user_data(surface_resource);
- struct xdg_surface_state *state = malloc(sizeof(struct xdg_surface_state));
- state->display = shell_state->display;
- state->wlr_texture = wlr_texture;
- struct wl_resource *shell_surface_resource = wl_resource_create(client,
- &zxdg_surface_v6_interface, wl_resource_get_version(resource), id);
- wl_resource_set_implementation(shell_surface_resource,
- &zxdg_surface_v6_implementation, state, destroy_xdg_shell_surface);
-}
-
-static void xdg_shell_pong(struct wl_client *client, struct wl_resource *resource, uint32_t serial) {
- wlr_log(L_DEBUG, "TODO xdg shell pong");
-}
-
-static struct zxdg_shell_v6_interface xdg_shell_impl = {
- .destroy = resource_destructor,
- .create_positioner = xdg_shell_create_positioner,
- .get_xdg_surface = xdg_shell_get_xdg_surface,
- .pong = xdg_shell_pong,
-};
-
-static void xdg_shell_bind(struct wl_client *wl_client, void *_state,
- uint32_t version, uint32_t id) {
- struct xdg_shell_state *state = _state;
- assert(wl_client && state);
- 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, &zxdg_shell_v6_interface, version, id);
- wl_resource_set_implementation(wl_resource, &xdg_shell_impl,
- state, NULL);
- wl_list_insert(&state->wl_resources, wl_resource_get_link(wl_resource));
-}
-
-void xdg_shell_init(struct wl_display *display, struct xdg_shell_state *state) {
- struct wl_global *wl_global = wl_global_create(display,
- &zxdg_shell_v6_interface, 1, state, xdg_shell_bind);
- state->wl_global = wl_global;
- state->display = display;
- wl_list_init(&state->wl_resources);
-}
-
-void xdg_shell_release(struct xdg_shell_state *state) {
- if (!state) {
- return;
- }
-
- struct wl_resource *resource = NULL, *temp = NULL;
- wl_resource_for_each_safe(resource, temp, &state->wl_resources) {
- struct wl_list *link = wl_resource_get_link(resource);
- wl_list_remove(link);
- }
-}
diff --git a/examples/meson.build b/examples/meson.build
index 646a4b88..e3f9cf84 100644
--- a/examples/meson.build
+++ b/examples/meson.build
@@ -1,39 +1,19 @@
lib_shared = static_library('shared',
['shared.c', 'cat.c'],
- dependencies: dep_wlr)
+ dependencies: wlroots)
-executable('simple', 'simple.c', dependencies: dep_wlr, link_with: lib_shared)
-executable('rotation', 'rotation.c', dependencies: dep_wlr, link_with: lib_shared)
-executable('pointer', 'pointer.c', dependencies: dep_wlr, link_with: lib_shared)
-executable('touch', 'touch.c', dependencies: dep_wlr, link_with: lib_shared)
-executable('tablet', 'tablet.c', dependencies: dep_wlr, link_with: lib_shared)
-
-wayland_scanner = find_program('wayland-scanner')
-wl_protocol_dir = dep_wayland_proto.get_pkgconfig_variable('pkgdatadir')
-
-wayland_scanner_server = generator(wayland_scanner,
- output: '@BASENAME@-protocol.h',
- arguments: ['server-header', '@INPUT@', '@OUTPUT@'])
-
-wayland_scanner_code = generator(wayland_scanner,
- output: '@BASENAME@-protocol.c',
- arguments: ['code', '@INPUT@', '@OUTPUT@'])
+executable('simple', 'simple.c', dependencies: wlroots, link_with: lib_shared)
+executable('rotation', 'rotation.c', dependencies: wlroots, link_with: lib_shared)
+executable('pointer', 'pointer.c', dependencies: wlroots, link_with: lib_shared)
+executable('touch', 'touch.c', dependencies: wlroots, link_with: lib_shared)
+executable('tablet', 'tablet.c', dependencies: wlroots, link_with: lib_shared)
compositor_src = [
'compositor/main.c',
'compositor/wl_compositor.c',
'compositor/wl_shell.c',
- 'compositor/xdg_shell.c',
]
-protocols = [
- [ 'unstable', 'xdg-shell', 'xdg-shell-unstable-v6.xml' ]
-]
-
-foreach p : protocols
- xml = join_paths([wl_protocol_dir] + p)
- compositor_src += wayland_scanner_code.process(xml)
- compositor_src += wayland_scanner_server.process(xml)
-endforeach
-
-executable('compositor', compositor_src, dependencies: dep_wlr, link_with: lib_shared)
+executable('compositor', compositor_src,
+ dependencies: wlroots,
+ link_with: lib_shared)