auto generate glue code
This commit is contained in:
parent
9d530777bc
commit
1c65aead88
4 changed files with 7 additions and 2511 deletions
9
Makefile
9
Makefile
|
|
@ -1,4 +1,9 @@
|
||||||
CFLAGS=-Wall -Wextra -Og -ggdb3
|
INTERFACEDIR:=$(shell pkg-config --variable=pkgdatadir wayland-protocols)
|
||||||
LIBS=-lwayland-client -lwayland-egl -lEGL -lOpenGL -lrt
|
CFLAGS=-Wall -Wextra -Wpedantic -Og -ggdb3
|
||||||
|
LIBS=-lwayland-client -lwayland-egl -lEGL -lOpenGL
|
||||||
wayland: wayland.c xdg-shell-protocol.c xdg-shell-client-protocol.h
|
wayland: wayland.c xdg-shell-protocol.c xdg-shell-client-protocol.h
|
||||||
gcc $(CFLAGS) $(LIBS) wayland.c xdg-shell-protocol.c -o wayland
|
gcc $(CFLAGS) $(LIBS) wayland.c xdg-shell-protocol.c -o wayland
|
||||||
|
xdg-shell-protocol.c:
|
||||||
|
wayland-scanner private-code $(INTERFACEDIR)/stable/xdg-shell/xdg-shell.xml xdg-shell-protocol.c
|
||||||
|
xdg-shell-client-protocol.h:
|
||||||
|
wayland-scanner client-header $(INTERFACEDIR)/stable/xdg-shell/xdg-shell.xml xdg-shell-client-protocol.h
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,184 +0,0 @@
|
||||||
/* Generated by wayland-scanner 1.23.1 */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright © 2008-2013 Kristian Høgsberg
|
|
||||||
* Copyright © 2013 Rafael Antognolli
|
|
||||||
* Copyright © 2013 Jasper St. Pierre
|
|
||||||
* Copyright © 2010-2013 Intel Corporation
|
|
||||||
* Copyright © 2015-2017 Samsung Electronics Co., Ltd
|
|
||||||
* Copyright © 2015-2017 Red Hat Inc.
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
||||||
* copy of this software and associated documentation files (the "Software"),
|
|
||||||
* to deal in the Software without restriction, including without limitation
|
|
||||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
||||||
* and/or sell copies of the Software, and to permit persons to whom the
|
|
||||||
* Software is furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice (including the next
|
|
||||||
* paragraph) shall be included in all copies or substantial portions of the
|
|
||||||
* Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdint.h>
|
|
||||||
#include "wayland-util.h"
|
|
||||||
|
|
||||||
#ifndef __has_attribute
|
|
||||||
# define __has_attribute(x) 0 /* Compatibility with non-clang compilers. */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if (__has_attribute(visibility) || defined(__GNUC__) && __GNUC__ >= 4)
|
|
||||||
#define WL_PRIVATE __attribute__ ((visibility("hidden")))
|
|
||||||
#else
|
|
||||||
#define WL_PRIVATE
|
|
||||||
#endif
|
|
||||||
|
|
||||||
extern const struct wl_interface wl_output_interface;
|
|
||||||
extern const struct wl_interface wl_seat_interface;
|
|
||||||
extern const struct wl_interface wl_surface_interface;
|
|
||||||
extern const struct wl_interface xdg_popup_interface;
|
|
||||||
extern const struct wl_interface xdg_positioner_interface;
|
|
||||||
extern const struct wl_interface xdg_surface_interface;
|
|
||||||
extern const struct wl_interface xdg_toplevel_interface;
|
|
||||||
|
|
||||||
static const struct wl_interface *xdg_shell_types[] = {
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
&xdg_positioner_interface,
|
|
||||||
&xdg_surface_interface,
|
|
||||||
&wl_surface_interface,
|
|
||||||
&xdg_toplevel_interface,
|
|
||||||
&xdg_popup_interface,
|
|
||||||
&xdg_surface_interface,
|
|
||||||
&xdg_positioner_interface,
|
|
||||||
&xdg_toplevel_interface,
|
|
||||||
&wl_seat_interface,
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
&wl_seat_interface,
|
|
||||||
NULL,
|
|
||||||
&wl_seat_interface,
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
&wl_output_interface,
|
|
||||||
&wl_seat_interface,
|
|
||||||
NULL,
|
|
||||||
&xdg_positioner_interface,
|
|
||||||
NULL,
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct wl_message xdg_wm_base_requests[] = {
|
|
||||||
{ "destroy", "", xdg_shell_types + 0 },
|
|
||||||
{ "create_positioner", "n", xdg_shell_types + 4 },
|
|
||||||
{ "get_xdg_surface", "no", xdg_shell_types + 5 },
|
|
||||||
{ "pong", "u", xdg_shell_types + 0 },
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct wl_message xdg_wm_base_events[] = {
|
|
||||||
{ "ping", "u", xdg_shell_types + 0 },
|
|
||||||
};
|
|
||||||
|
|
||||||
WL_PRIVATE const struct wl_interface xdg_wm_base_interface = {
|
|
||||||
"xdg_wm_base", 6,
|
|
||||||
4, xdg_wm_base_requests,
|
|
||||||
1, xdg_wm_base_events,
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct wl_message xdg_positioner_requests[] = {
|
|
||||||
{ "destroy", "", xdg_shell_types + 0 },
|
|
||||||
{ "set_size", "ii", xdg_shell_types + 0 },
|
|
||||||
{ "set_anchor_rect", "iiii", xdg_shell_types + 0 },
|
|
||||||
{ "set_anchor", "u", xdg_shell_types + 0 },
|
|
||||||
{ "set_gravity", "u", xdg_shell_types + 0 },
|
|
||||||
{ "set_constraint_adjustment", "u", xdg_shell_types + 0 },
|
|
||||||
{ "set_offset", "ii", xdg_shell_types + 0 },
|
|
||||||
{ "set_reactive", "3", xdg_shell_types + 0 },
|
|
||||||
{ "set_parent_size", "3ii", xdg_shell_types + 0 },
|
|
||||||
{ "set_parent_configure", "3u", xdg_shell_types + 0 },
|
|
||||||
};
|
|
||||||
|
|
||||||
WL_PRIVATE const struct wl_interface xdg_positioner_interface = {
|
|
||||||
"xdg_positioner", 6,
|
|
||||||
10, xdg_positioner_requests,
|
|
||||||
0, NULL,
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct wl_message xdg_surface_requests[] = {
|
|
||||||
{ "destroy", "", xdg_shell_types + 0 },
|
|
||||||
{ "get_toplevel", "n", xdg_shell_types + 7 },
|
|
||||||
{ "get_popup", "n?oo", xdg_shell_types + 8 },
|
|
||||||
{ "set_window_geometry", "iiii", xdg_shell_types + 0 },
|
|
||||||
{ "ack_configure", "u", xdg_shell_types + 0 },
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct wl_message xdg_surface_events[] = {
|
|
||||||
{ "configure", "u", xdg_shell_types + 0 },
|
|
||||||
};
|
|
||||||
|
|
||||||
WL_PRIVATE const struct wl_interface xdg_surface_interface = {
|
|
||||||
"xdg_surface", 6,
|
|
||||||
5, xdg_surface_requests,
|
|
||||||
1, xdg_surface_events,
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct wl_message xdg_toplevel_requests[] = {
|
|
||||||
{ "destroy", "", xdg_shell_types + 0 },
|
|
||||||
{ "set_parent", "?o", xdg_shell_types + 11 },
|
|
||||||
{ "set_title", "s", xdg_shell_types + 0 },
|
|
||||||
{ "set_app_id", "s", xdg_shell_types + 0 },
|
|
||||||
{ "show_window_menu", "ouii", xdg_shell_types + 12 },
|
|
||||||
{ "move", "ou", xdg_shell_types + 16 },
|
|
||||||
{ "resize", "ouu", xdg_shell_types + 18 },
|
|
||||||
{ "set_max_size", "ii", xdg_shell_types + 0 },
|
|
||||||
{ "set_min_size", "ii", xdg_shell_types + 0 },
|
|
||||||
{ "set_maximized", "", xdg_shell_types + 0 },
|
|
||||||
{ "unset_maximized", "", xdg_shell_types + 0 },
|
|
||||||
{ "set_fullscreen", "?o", xdg_shell_types + 21 },
|
|
||||||
{ "unset_fullscreen", "", xdg_shell_types + 0 },
|
|
||||||
{ "set_minimized", "", xdg_shell_types + 0 },
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct wl_message xdg_toplevel_events[] = {
|
|
||||||
{ "configure", "iia", xdg_shell_types + 0 },
|
|
||||||
{ "close", "", xdg_shell_types + 0 },
|
|
||||||
{ "configure_bounds", "4ii", xdg_shell_types + 0 },
|
|
||||||
{ "wm_capabilities", "5a", xdg_shell_types + 0 },
|
|
||||||
};
|
|
||||||
|
|
||||||
WL_PRIVATE const struct wl_interface xdg_toplevel_interface = {
|
|
||||||
"xdg_toplevel", 6,
|
|
||||||
14, xdg_toplevel_requests,
|
|
||||||
4, xdg_toplevel_events,
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct wl_message xdg_popup_requests[] = {
|
|
||||||
{ "destroy", "", xdg_shell_types + 0 },
|
|
||||||
{ "grab", "ou", xdg_shell_types + 22 },
|
|
||||||
{ "reposition", "3ou", xdg_shell_types + 24 },
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct wl_message xdg_popup_events[] = {
|
|
||||||
{ "configure", "iiii", xdg_shell_types + 0 },
|
|
||||||
{ "popup_done", "", xdg_shell_types + 0 },
|
|
||||||
{ "repositioned", "3u", xdg_shell_types + 0 },
|
|
||||||
};
|
|
||||||
|
|
||||||
WL_PRIVATE const struct wl_interface xdg_popup_interface = {
|
|
||||||
"xdg_popup", 6,
|
|
||||||
3, xdg_popup_requests,
|
|
||||||
3, xdg_popup_events,
|
|
||||||
};
|
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue