wlroots/include/wlr/types/wlr_tablet_v2.h

180 lines
5.5 KiB
C
Raw Normal View History

/*
* This an unstable interface of wlroots. No guarantees are made regarding the
* future consistency of this API.
*/
#ifndef WLR_USE_UNSTABLE
#error "Add -DWLR_USE_UNSTABLE to enable unstable wlroots features"
#endif
2018-04-24 06:10:45 +00:00
#ifndef WLR_TYPES_WLR_TABLET_V2_H
#define WLR_TYPES_WLR_TABLET_V2_H
#include <wayland-server.h>
#include <wlr/types/wlr_seat.h>
#include <wlr/types/wlr_input_device.h>
#include "tablet-unstable-v2-protocol.h"
2018-05-04 09:46:32 +00:00
/* This can probably be even lower,the tools don't have a lot of buttons */
#define WLR_TABLET_V2_TOOL_BUTTONS_CAP 16
2018-05-04 09:46:32 +00:00
2018-05-02 07:26:34 +00:00
struct wlr_tablet_client_v2;
struct wlr_tablet_tool_client_v2;
struct wlr_tablet_pad_client_v2;
2018-04-24 06:10:45 +00:00
struct wlr_tablet_manager_v2 {
struct wl_global *wl_global;
struct wl_list clients; // wlr_tablet_manager_client_v2::link
struct wl_list seats; // wlr_tablet_seat_v2::link
struct wl_listener display_destroy;
void *data;
};
struct wlr_tablet_v2_tablet {
struct wl_list link; // wlr_tablet_seat_v2::tablets
struct wlr_tablet *wlr_tablet;
2018-04-24 06:10:45 +00:00
struct wlr_input_device *wlr_device;
struct wl_list clients; // wlr_tablet_client_v2::tablet_link
struct wl_listener tool_destroy;
2018-05-02 07:26:34 +00:00
struct wlr_tablet_client_v2 *current_client;
2018-04-24 06:10:45 +00:00
};
struct wlr_tablet_v2_tablet_tool {
struct wl_list link; // wlr_tablet_seat_v2::tablets
struct wlr_tablet_tool *wlr_tool;
struct wl_list clients; // wlr_tablet_tool_client_v2::tool_link
2018-04-24 06:10:45 +00:00
struct wl_listener tool_destroy;
struct wlr_tablet_tool_client_v2 *current_client;
2018-05-02 07:26:34 +00:00
struct wlr_surface *focused_surface;
struct wl_listener surface_destroy;
2018-05-04 09:46:32 +00:00
2018-05-17 12:23:17 +00:00
uint32_t proximity_serial;
2018-05-17 10:22:15 +00:00
bool is_down;
2018-05-17 12:23:17 +00:00
uint32_t down_serial;
2018-05-04 09:46:32 +00:00
size_t num_buttons;
uint32_t pressed_buttons[WLR_TABLET_V2_TOOL_BUTTONS_CAP];
uint32_t pressed_serials[WLR_TABLET_V2_TOOL_BUTTONS_CAP];
struct {
struct wl_signal set_cursor; // struct wlr_tablet_v2_event_cursor
} events;
2018-04-24 06:10:45 +00:00
};
struct wlr_tablet_v2_tablet_pad {
struct wl_list link; // wlr_tablet_seat_v2::pads
struct wlr_tablet_pad *wlr_pad;
struct wlr_input_device *wlr_device;
struct wl_list clients; // wlr_tablet_pad_client_v2::pad_link
2018-04-24 06:10:45 +00:00
size_t group_count;
uint32_t *groups;
2018-04-24 06:10:45 +00:00
struct wl_listener pad_destroy;
struct wlr_tablet_pad_client_v2 *current_client;
struct {
struct wl_signal button_feedback; // struct wlr_tablet_v2_event_feedback
struct wl_signal strip_feedback; // struct wlr_tablet_v2_event_feedback
struct wl_signal ring_feedback; // struct wlr_tablet_v2_event_feedback
} events;
};
struct wlr_tablet_v2_event_cursor {
struct wlr_surface *surface;
uint32_t serial;
int32_t hotspot_x;
int32_t hotspot_y;
2018-05-17 07:59:37 +00:00
struct wlr_seat_client *seat_client;
};
struct wlr_tablet_v2_event_feedback {
const char *description;
size_t index;
uint32_t serial;
2018-04-24 06:10:45 +00:00
};
struct wlr_tablet_v2_tablet *wlr_tablet_create(
2018-05-17 12:23:17 +00:00
struct wlr_tablet_manager_v2 *manager,
struct wlr_seat *wlr_seat,
struct wlr_input_device *wlr_device);
2018-04-24 06:10:45 +00:00
struct wlr_tablet_v2_tablet_pad *wlr_tablet_pad_create(
2018-05-17 12:23:17 +00:00
struct wlr_tablet_manager_v2 *manager,
struct wlr_seat *wlr_seat,
struct wlr_input_device *wlr_device);
2018-04-24 06:10:45 +00:00
struct wlr_tablet_v2_tablet_tool *wlr_tablet_tool_create(
2018-05-17 12:23:17 +00:00
struct wlr_tablet_manager_v2 *manager,
struct wlr_seat *wlr_seat,
struct wlr_tablet_tool *wlr_tool);
2018-04-24 06:10:45 +00:00
struct wlr_tablet_manager_v2 *wlr_tablet_v2_create(struct wl_display *display);
void wlr_tablet_v2_destroy(struct wlr_tablet_manager_v2 *manager);
2018-05-17 12:23:17 +00:00
void wlr_send_tablet_v2_tablet_tool_proximity_in(
struct wlr_tablet_v2_tablet_tool *tool,
struct wlr_tablet_v2_tablet *tablet,
struct wlr_surface *surface);
2018-05-17 12:23:17 +00:00
void wlr_send_tablet_v2_tablet_tool_down(struct wlr_tablet_v2_tablet_tool *tool);
2018-05-17 10:22:15 +00:00
void wlr_send_tablet_v2_tablet_tool_up(struct wlr_tablet_v2_tablet_tool *tool);
void wlr_send_tablet_v2_tablet_tool_motion(
2018-05-17 12:23:17 +00:00
struct wlr_tablet_v2_tablet_tool *tool, double x, double y);
2018-05-17 10:22:15 +00:00
void wlr_send_tablet_v2_tablet_tool_pressure(
struct wlr_tablet_v2_tablet_tool *tool, double pressure);
2018-05-17 10:22:15 +00:00
2018-05-02 07:26:34 +00:00
void wlr_send_tablet_v2_tablet_tool_distance(
struct wlr_tablet_v2_tablet_tool *tool, double distance);
2018-05-02 07:26:34 +00:00
2018-05-17 10:22:15 +00:00
void wlr_send_tablet_v2_tablet_tool_tilt(
2018-05-17 12:23:17 +00:00
struct wlr_tablet_v2_tablet_tool *tool, double x, double y);
2018-05-17 10:22:15 +00:00
void wlr_send_tablet_v2_tablet_tool_rotation(
struct wlr_tablet_v2_tablet_tool *tool, double degrees);
void wlr_send_tablet_v2_tablet_tool_slider(
struct wlr_tablet_v2_tablet_tool *tool, double position);
2018-05-17 10:22:15 +00:00
2018-05-02 07:26:34 +00:00
void wlr_send_tablet_v2_tablet_tool_wheel(
2018-06-24 18:56:39 +00:00
struct wlr_tablet_v2_tablet_tool *tool, double degrees, int32_t clicks);
2018-05-02 07:26:34 +00:00
void wlr_send_tablet_v2_tablet_tool_proximity_out(
struct wlr_tablet_v2_tablet_tool *tool);
2018-05-17 12:23:17 +00:00
void wlr_send_tablet_v2_tablet_tool_button(
struct wlr_tablet_v2_tablet_tool *tool, uint32_t button,
enum zwp_tablet_pad_v2_button_state state);
2018-05-04 09:46:32 +00:00
uint32_t wlr_send_tablet_v2_tablet_pad_enter(
2018-05-17 12:23:17 +00:00
struct wlr_tablet_v2_tablet_pad *pad,
struct wlr_tablet_v2_tablet *tablet,
struct wlr_surface *surface);
void wlr_send_tablet_v2_tablet_pad_button(
2018-05-17 12:23:17 +00:00
struct wlr_tablet_v2_tablet_pad *pad, size_t button,
uint32_t time, enum zwp_tablet_pad_v2_button_state state);
void wlr_send_tablet_v2_tablet_pad_strip( struct wlr_tablet_v2_tablet_pad *pad,
2018-05-17 12:23:17 +00:00
uint32_t strip, double position, bool finger, uint32_t time);
void wlr_send_tablet_v2_tablet_pad_ring(struct wlr_tablet_v2_tablet_pad *pad,
2018-05-17 12:23:17 +00:00
uint32_t ring, double position, bool finger, uint32_t time);
uint32_t wlr_send_tablet_v2_tablet_pad_leave(struct wlr_tablet_v2_tablet_pad *pad,
2018-05-17 12:23:17 +00:00
struct wlr_surface *surface);
uint32_t wlr_send_tablet_v2_tablet_pad_mode(struct wlr_tablet_v2_tablet_pad *pad,
2018-05-17 12:23:17 +00:00
size_t group, uint32_t mode, uint32_t time);
2018-05-02 07:26:34 +00:00
bool wlr_surface_accepts_tablet_v2(struct wlr_tablet_v2_tablet *tablet,
2018-05-17 12:23:17 +00:00
struct wlr_surface *surface);
2018-04-24 06:10:45 +00:00
#endif /* WLR_TYPES_WLR_TABLET_V2_H */