2017-09-23 10:26:01 +02:00
|
|
|
#ifndef BACKEND_WAYLAND_H
|
|
|
|
#define BACKEND_WAYLAND_H
|
2017-04-25 17:32:52 +02:00
|
|
|
|
2017-09-23 06:29:53 +02:00
|
|
|
#include <stdbool.h>
|
2018-11-11 06:14:48 +01:00
|
|
|
|
2017-04-25 21:06:58 +02:00
|
|
|
#include <wayland-client.h>
|
2019-07-27 10:53:54 +02:00
|
|
|
#include <wayland-server-core.h>
|
2018-11-11 06:14:48 +01:00
|
|
|
|
2017-06-19 17:46:50 +02:00
|
|
|
#include <wlr/backend/wayland.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
2022-03-03 19:23:08 +01:00
|
|
|
#include <wlr/types/wlr_keyboard.h>
|
2020-11-11 14:16:41 +01:00
|
|
|
#include <wlr/types/wlr_pointer.h>
|
2022-03-08 15:33:58 +01:00
|
|
|
#include <wlr/types/wlr_tablet_pad.h>
|
|
|
|
#include <wlr/types/wlr_tablet_tool.h>
|
2022-03-07 19:33:20 +01:00
|
|
|
#include <wlr/types/wlr_touch.h>
|
2019-09-24 14:33:15 +02:00
|
|
|
#include <wlr/render/drm_format_set.h>
|
2017-04-25 21:06:58 +02:00
|
|
|
|
2017-08-12 17:43:36 +02:00
|
|
|
struct wlr_wl_backend {
|
|
|
|
struct wlr_backend backend;
|
|
|
|
|
2017-04-25 21:06:58 +02:00
|
|
|
/* local state */
|
2017-09-23 06:29:53 +02:00
|
|
|
bool started;
|
2023-11-23 13:58:36 +01:00
|
|
|
struct wl_event_loop *event_loop;
|
2017-10-14 22:33:00 +02:00
|
|
|
struct wl_list outputs;
|
2020-12-04 16:38:55 +01:00
|
|
|
int drm_fd;
|
2020-12-11 18:14:58 +01:00
|
|
|
struct wl_list buffers; // wlr_wl_buffer.link
|
2017-06-21 00:22:21 +02:00
|
|
|
size_t requested_outputs;
|
2023-11-23 13:58:36 +01:00
|
|
|
struct wl_listener event_loop_destroy;
|
2021-10-26 08:31:48 +02:00
|
|
|
char *activation_token;
|
2020-12-11 18:14:58 +01:00
|
|
|
|
2017-04-25 21:06:58 +02:00
|
|
|
/* remote state */
|
2017-04-25 17:32:52 +02:00
|
|
|
struct wl_display *remote_display;
|
2023-06-07 14:15:44 +02:00
|
|
|
bool own_remote_display;
|
2017-06-21 00:22:21 +02:00
|
|
|
struct wl_event_source *remote_display_src;
|
2017-04-26 01:19:21 +02:00
|
|
|
struct wl_registry *registry;
|
|
|
|
struct wl_compositor *compositor;
|
2019-01-10 15:17:14 +01:00
|
|
|
struct xdg_wm_base *xdg_wm_base;
|
2019-05-06 18:06:31 +02:00
|
|
|
struct zxdg_decoration_manager_v1 *zxdg_decoration_manager_v1;
|
2019-06-21 00:48:19 +02:00
|
|
|
struct zwp_pointer_gestures_v1 *zwp_pointer_gestures_v1;
|
2019-11-16 21:05:46 +01:00
|
|
|
struct wp_presentation *presentation;
|
2021-02-09 23:29:44 +01:00
|
|
|
struct wl_shm *shm;
|
2019-09-24 14:33:15 +02:00
|
|
|
struct zwp_linux_dmabuf_v1 *zwp_linux_dmabuf_v1;
|
2019-11-12 15:32:08 +01:00
|
|
|
struct zwp_relative_pointer_manager_v1 *zwp_relative_pointer_manager_v1;
|
2020-10-03 23:06:10 +02:00
|
|
|
struct wl_list seats; // wlr_wl_seat.link
|
2019-05-10 08:36:19 +02:00
|
|
|
struct zwp_tablet_manager_v2 *tablet_manager;
|
2021-02-09 23:29:44 +01:00
|
|
|
struct wlr_drm_format_set shm_formats;
|
2019-09-24 14:33:15 +02:00
|
|
|
struct wlr_drm_format_set linux_dmabuf_v1_formats;
|
2021-01-04 10:51:34 +01:00
|
|
|
struct wl_drm *legacy_drm;
|
2021-10-26 08:31:48 +02:00
|
|
|
struct xdg_activation_v1 *activation_v1;
|
2022-08-18 12:04:39 +02:00
|
|
|
struct wl_subcompositor *subcompositor;
|
2023-04-20 10:31:22 +02:00
|
|
|
struct wp_viewporter *viewporter;
|
2021-01-04 10:51:34 +01:00
|
|
|
char *drm_render_name;
|
2017-06-19 19:05:10 +02:00
|
|
|
};
|
|
|
|
|
2020-01-09 15:34:34 +01:00
|
|
|
struct wlr_wl_buffer {
|
|
|
|
struct wlr_buffer *buffer;
|
|
|
|
struct wl_buffer *wl_buffer;
|
2020-12-11 18:14:58 +01:00
|
|
|
bool released;
|
|
|
|
struct wl_list link; // wlr_wl_backend.buffers
|
|
|
|
struct wl_listener buffer_destroy;
|
2020-01-09 15:34:34 +01:00
|
|
|
};
|
|
|
|
|
2019-11-16 21:05:46 +01:00
|
|
|
struct wlr_wl_presentation_feedback {
|
|
|
|
struct wlr_wl_output *output;
|
|
|
|
struct wl_list link;
|
|
|
|
struct wp_presentation_feedback *feedback;
|
|
|
|
uint32_t commit_seq;
|
|
|
|
};
|
|
|
|
|
2022-08-18 12:04:39 +02:00
|
|
|
struct wlr_wl_output_layer {
|
|
|
|
struct wlr_addon addon;
|
|
|
|
|
|
|
|
struct wl_surface *surface;
|
|
|
|
struct wl_subsurface *subsurface;
|
2023-04-20 10:31:22 +02:00
|
|
|
struct wp_viewport *viewport;
|
2023-02-21 09:45:05 +01:00
|
|
|
bool mapped;
|
2022-08-18 12:04:39 +02:00
|
|
|
};
|
|
|
|
|
2018-04-29 13:16:31 +02:00
|
|
|
struct wlr_wl_output {
|
2017-08-13 16:51:50 +02:00
|
|
|
struct wlr_output wlr_output;
|
|
|
|
|
2017-08-12 17:43:36 +02:00
|
|
|
struct wlr_wl_backend *backend;
|
2018-05-01 22:38:04 +02:00
|
|
|
struct wl_list link;
|
|
|
|
|
2017-06-19 22:36:40 +02:00
|
|
|
struct wl_surface *surface;
|
2023-06-07 14:35:26 +02:00
|
|
|
bool own_surface;
|
2018-05-01 22:38:04 +02:00
|
|
|
struct wl_callback *frame_callback;
|
2019-01-10 15:17:14 +01:00
|
|
|
struct xdg_surface *xdg_surface;
|
|
|
|
struct xdg_toplevel *xdg_toplevel;
|
2019-05-06 18:06:31 +02:00
|
|
|
struct zxdg_toplevel_decoration_v1 *zxdg_toplevel_decoration_v1;
|
2019-11-16 21:05:46 +01:00
|
|
|
struct wl_list presentation_feedbacks;
|
2018-05-01 22:38:04 +02:00
|
|
|
|
2023-08-16 22:09:01 +02:00
|
|
|
bool configured;
|
2018-05-01 22:38:04 +02:00
|
|
|
uint32_t enter_serial;
|
2017-08-14 18:19:42 +02:00
|
|
|
|
2017-10-29 17:43:26 +01:00
|
|
|
struct {
|
2020-10-09 22:17:17 +02:00
|
|
|
struct wlr_wl_pointer *pointer;
|
2017-10-29 17:43:26 +01:00
|
|
|
struct wl_surface *surface;
|
|
|
|
int32_t hotspot_x, hotspot_y;
|
|
|
|
} cursor;
|
2017-06-19 19:05:10 +02:00
|
|
|
};
|
|
|
|
|
2017-08-14 15:55:48 +02:00
|
|
|
struct wlr_wl_pointer {
|
|
|
|
struct wlr_pointer wlr_pointer;
|
2018-04-29 13:16:31 +02:00
|
|
|
|
2022-03-05 03:59:59 +01:00
|
|
|
struct wlr_wl_seat *seat;
|
|
|
|
struct wlr_wl_output *output;
|
|
|
|
|
2017-06-22 17:58:53 +02:00
|
|
|
enum wlr_axis_source axis_source;
|
2018-05-12 14:04:47 +02:00
|
|
|
int32_t axis_discrete;
|
2022-03-05 03:59:59 +01:00
|
|
|
uint32_t fingers; // trackpad gesture
|
2023-02-11 19:16:22 +01:00
|
|
|
enum wlr_axis_relative_direction axis_relative_direction;
|
2018-04-29 13:16:31 +02:00
|
|
|
|
|
|
|
struct wl_listener output_destroy;
|
2022-03-05 03:59:59 +01:00
|
|
|
|
|
|
|
struct wl_list link;
|
2017-06-22 16:53:48 +02:00
|
|
|
};
|
|
|
|
|
2023-03-17 16:58:47 +01:00
|
|
|
struct wlr_wl_touch_points {
|
|
|
|
int32_t ids[64];
|
|
|
|
size_t len;
|
|
|
|
};
|
|
|
|
|
2020-10-03 17:34:32 +02:00
|
|
|
struct wlr_wl_seat {
|
2022-03-03 19:23:08 +01:00
|
|
|
char *name;
|
2020-10-03 17:34:32 +02:00
|
|
|
struct wl_seat *wl_seat;
|
2023-02-02 17:35:53 +01:00
|
|
|
uint32_t global_name;
|
2020-10-03 17:34:32 +02:00
|
|
|
|
2022-03-03 19:23:08 +01:00
|
|
|
struct wlr_wl_backend *backend;
|
|
|
|
|
|
|
|
struct wl_keyboard *wl_keyboard;
|
|
|
|
struct wlr_keyboard wlr_keyboard;
|
|
|
|
|
2022-03-05 03:59:59 +01:00
|
|
|
struct wl_pointer *wl_pointer;
|
2020-10-08 02:44:38 +02:00
|
|
|
struct wlr_wl_pointer *active_pointer;
|
2023-10-02 21:06:44 +02:00
|
|
|
struct wl_list pointers; // wlr_wl_pointer.link
|
2022-03-05 03:59:59 +01:00
|
|
|
|
|
|
|
struct zwp_pointer_gesture_swipe_v1 *gesture_swipe;
|
|
|
|
struct zwp_pointer_gesture_pinch_v1 *gesture_pinch;
|
|
|
|
struct zwp_pointer_gesture_hold_v1 *gesture_hold;
|
|
|
|
struct zwp_relative_pointer_v1 *relative_pointer;
|
|
|
|
|
2022-03-07 19:33:20 +01:00
|
|
|
struct wl_touch *wl_touch;
|
|
|
|
struct wlr_touch wlr_touch;
|
2023-03-17 16:58:47 +01:00
|
|
|
struct wlr_wl_touch_points touch_points;
|
2022-03-03 19:23:08 +01:00
|
|
|
|
2022-03-08 15:33:58 +01:00
|
|
|
struct zwp_tablet_seat_v2 *zwp_tablet_seat_v2;
|
|
|
|
struct zwp_tablet_v2 *zwp_tablet_v2;
|
|
|
|
struct wlr_tablet wlr_tablet;
|
|
|
|
struct zwp_tablet_tool_v2 *zwp_tablet_tool_v2;
|
|
|
|
struct wlr_tablet_tool wlr_tablet_tool;
|
|
|
|
struct zwp_tablet_pad_v2 *zwp_tablet_pad_v2;
|
|
|
|
struct wlr_tablet_pad wlr_tablet_pad;
|
|
|
|
|
2022-03-03 19:23:08 +01:00
|
|
|
struct wl_list link; // wlr_wl_backend.seats
|
2020-10-03 17:34:32 +02:00
|
|
|
};
|
|
|
|
|
2018-11-11 06:09:04 +01:00
|
|
|
struct wlr_wl_backend *get_wl_backend_from_backend(struct wlr_backend *backend);
|
2023-06-14 18:16:44 +02:00
|
|
|
struct wlr_wl_output *get_wl_output_from_surface(struct wlr_wl_backend *wl,
|
|
|
|
struct wl_surface *surface);
|
2018-04-29 13:16:31 +02:00
|
|
|
void update_wl_output_cursor(struct wlr_wl_output *output);
|
2022-03-03 19:23:08 +01:00
|
|
|
|
|
|
|
void init_seat_keyboard(struct wlr_wl_seat *seat);
|
|
|
|
|
2022-03-05 03:59:59 +01:00
|
|
|
void init_seat_pointer(struct wlr_wl_seat *seat);
|
|
|
|
void finish_seat_pointer(struct wlr_wl_seat *seat);
|
|
|
|
void create_pointer(struct wlr_wl_seat *seat, struct wlr_wl_output *output);
|
|
|
|
|
2022-08-11 09:09:37 +02:00
|
|
|
void init_seat_touch(struct wlr_wl_seat *seat);
|
|
|
|
|
2022-03-08 15:33:58 +01:00
|
|
|
void init_seat_tablet(struct wlr_wl_seat *seat);
|
|
|
|
void finish_seat_tablet(struct wlr_wl_seat *seat);
|
|
|
|
|
2023-02-02 17:35:53 +01:00
|
|
|
bool create_wl_seat(struct wl_seat *wl_seat, struct wlr_wl_backend *wl,
|
|
|
|
uint32_t global_name);
|
2023-02-02 17:33:12 +01:00
|
|
|
void destroy_wl_seat(struct wlr_wl_seat *seat);
|
2020-12-11 18:14:58 +01:00
|
|
|
void destroy_wl_buffer(struct wlr_wl_buffer *buffer);
|
2017-04-25 21:06:58 +02:00
|
|
|
|
2022-03-05 03:59:59 +01:00
|
|
|
extern const struct wlr_pointer_impl wl_pointer_impl;
|
2022-03-08 15:33:58 +01:00
|
|
|
extern const struct wlr_tablet_pad_impl wl_tablet_pad_impl;
|
|
|
|
extern const struct wlr_tablet_impl wl_tablet_impl;
|
2019-07-14 06:48:22 +02:00
|
|
|
|
2017-04-25 17:32:52 +02:00
|
|
|
#endif
|