mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-31 22:25:21 -04:00
Split tablet_v2 implementation for easier maintainance
This commit is contained in:
parent
2c12011472
commit
fa39fd178d
6 changed files with 1579 additions and 2 deletions
|
|
@ -5,16 +5,101 @@
|
|||
#include <wayland-server.h>
|
||||
#include <wlr/types/wlr_tablet_v2.h>
|
||||
|
||||
struct wlr_tablet_seat_v2 {
|
||||
struct wl_list link;
|
||||
struct wlr_seat *wlr_seat;
|
||||
struct wlr_tablet_manager_v2 *manager;
|
||||
|
||||
struct wl_list tablets; // wlr_tablet_v2_tablet::link
|
||||
struct wl_list tools;
|
||||
struct wl_list pads;
|
||||
|
||||
struct wl_list clients; //wlr_tablet_seat_v2_client::link;
|
||||
|
||||
struct wl_listener seat_destroy;
|
||||
};
|
||||
|
||||
struct wlr_tablet_seat_client_v2 {
|
||||
struct wl_list seat_link;
|
||||
struct wl_list client_link;
|
||||
struct wl_client *wl_client;
|
||||
struct wl_resource *resource;
|
||||
|
||||
struct wlr_tablet_manager_client_v2 *client;
|
||||
struct wlr_seat_client *seat;
|
||||
|
||||
struct wl_listener seat_client_destroy;
|
||||
|
||||
struct wl_list tools; //wlr_tablet_tool_client_v2::link
|
||||
struct wl_list tablets; //wlr_tablet_client_v2::link
|
||||
struct wl_list pads; //wlr_tablet_pad_client_v2::link
|
||||
};
|
||||
|
||||
struct wlr_tablet_client_v2 {
|
||||
struct wl_list seat_link; // wlr_tablet_seat_client_v2::tablet
|
||||
struct wl_list tablet_link; // wlr_tablet_v2_tablet::clients
|
||||
struct wl_client *client;
|
||||
struct wl_resource *resource;
|
||||
};
|
||||
|
||||
struct wlr_tablet_pad_client_v2 {
|
||||
struct wl_list seat_link;
|
||||
struct wl_list pad_link;
|
||||
struct wl_client *client;
|
||||
struct wl_resource *resource;
|
||||
struct wlr_tablet_v2_tablet_pad *pad;
|
||||
|
||||
uint32_t enter_serial;
|
||||
uint32_t mode_serial;
|
||||
uint32_t leave_serial;
|
||||
|
||||
size_t button_count;
|
||||
|
||||
size_t group_count;
|
||||
struct wl_resource **groups;
|
||||
|
||||
size_t ring_count;
|
||||
struct wl_resource **rings;
|
||||
|
||||
size_t strip_count;
|
||||
struct wl_resource **strips;
|
||||
};
|
||||
|
||||
struct wlr_tablet_tool_client_v2 {
|
||||
struct wl_list seat_link;
|
||||
struct wl_list tool_link;
|
||||
struct wl_client *client;
|
||||
struct wl_resource *resource;
|
||||
struct wlr_tablet_v2_tablet_tool *tool;
|
||||
struct wlr_tablet_seat_client_v2 *seat;
|
||||
|
||||
uint32_t proximity_serial;
|
||||
|
||||
struct wl_event_source *frame_source;
|
||||
};
|
||||
|
||||
struct tablet_pad_auxiliary_user_data {
|
||||
struct wlr_tablet_pad_client_v2 *pad;
|
||||
size_t index;
|
||||
};
|
||||
|
||||
|
||||
struct wlr_tablet_client_v2 *tablet_client_from_resource(struct wl_resource *resource);
|
||||
void destroy_tablet_v2(struct wl_resource *resource);
|
||||
void add_tablet_client(struct wlr_tablet_seat_client_v2 *seat, struct wlr_tablet_v2_tablet *tablet);
|
||||
|
||||
void destroy_tablet_pad_v2(struct wl_resource *resource);
|
||||
struct wlr_tablet_pad_client_v2 *tablet_pad_client_from_resource(struct wl_resource *resource);
|
||||
void add_tablet_pad_client(struct wlr_tablet_seat_client_v2 *seat, struct wlr_tablet_v2_tablet_pad *pad);
|
||||
|
||||
void destroy_tablet_tool_v2(struct wl_resource *resource);
|
||||
struct wlr_tablet_tool_client_v2 *tablet_tool_client_from_resource(struct wl_resource *resource);
|
||||
void add_tablet_tool_client(struct wlr_tablet_seat_client_v2 *seat, struct wlr_tablet_v2_tablet_tool *tool);
|
||||
|
||||
struct wlr_tablet_seat_client_v2 *tablet_seat_client_from_resource(struct wl_resource *resource);
|
||||
static void wlr_tablet_seat_client_v2_destroy(struct wl_resource *resource);
|
||||
void wlr_tablet_seat_client_v2_destroy(struct wl_resource *resource);
|
||||
struct wlr_tablet_seat_v2 *get_or_create_tablet_seat(
|
||||
struct wlr_tablet_manager_v2 *manager,
|
||||
struct wlr_seat *wlr_seat);
|
||||
|
||||
#endif /* TYPES_WLR_TABLET_V2_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue