wlroots/include/wlr/types/wlr_tablet_tool.h

83 lines
1.6 KiB
C
Raw Normal View History

#ifndef WLR_TYPES_TABLET_TOOL_H
#define WLR_TYPES_TABLET_TOOL_H
#include <stdint.h>
2018-02-12 20:29:23 +00:00
#include <wayland-server.h>
#include <wlr/types/wlr_input_device.h>
struct wlr_tablet_tool_impl;
struct wlr_tablet_tool {
struct wlr_tablet_tool_impl *impl;
struct {
struct wl_signal axis;
struct wl_signal proximity;
struct wl_signal tip;
struct wl_signal button;
} events;
void *data;
};
enum wlr_tablet_tool_axes {
WLR_TABLET_TOOL_AXIS_X = 1,
WLR_TABLET_TOOL_AXIS_Y = 2,
WLR_TABLET_TOOL_AXIS_DISTANCE = 4,
WLR_TABLET_TOOL_AXIS_PRESSURE = 8,
WLR_TABLET_TOOL_AXIS_TILT_X = 16,
WLR_TABLET_TOOL_AXIS_TILT_Y = 32,
WLR_TABLET_TOOL_AXIS_ROTATION = 64,
WLR_TABLET_TOOL_AXIS_SLIDER = 128,
WLR_TABLET_TOOL_AXIS_WHEEL = 256,
};
2017-06-21 18:07:09 +00:00
struct wlr_event_tablet_tool_axis {
2017-08-28 12:42:39 +00:00
struct wlr_input_device *device;
2017-10-30 10:40:06 +00:00
uint32_t time_msec;
uint32_t updated_axes;
2018-03-28 15:40:35 +00:00
// From 0..1
double x, y;
double pressure;
double distance;
double tilt_x, tilt_y;
double rotation;
double slider;
double wheel_delta;
};
enum wlr_tablet_tool_proximity_state {
WLR_TABLET_TOOL_PROXIMITY_OUT,
WLR_TABLET_TOOL_PROXIMITY_IN,
};
2017-06-21 18:07:09 +00:00
struct wlr_event_tablet_tool_proximity {
2017-08-28 12:42:39 +00:00
struct wlr_input_device *device;
2017-10-30 10:40:06 +00:00
uint32_t time_msec;
2018-03-28 15:40:35 +00:00
// From 0..1
double x, y;
enum wlr_tablet_tool_proximity_state state;
};
enum wlr_tablet_tool_tip_state {
WLR_TABLET_TOOL_TIP_UP,
WLR_TABLET_TOOL_TIP_DOWN,
};
2017-06-21 18:07:09 +00:00
struct wlr_event_tablet_tool_tip {
2017-08-28 12:42:39 +00:00
struct wlr_input_device *device;
2017-10-30 10:40:06 +00:00
uint32_t time_msec;
2018-03-28 15:40:35 +00:00
// From 0..1
double x, y;
enum wlr_tablet_tool_tip_state state;
};
2017-06-21 18:07:09 +00:00
struct wlr_event_tablet_tool_button {
2017-08-28 12:42:39 +00:00
struct wlr_input_device *device;
2017-10-30 10:40:06 +00:00
uint32_t time_msec;
uint32_t button;
enum wlr_button_state state;
};
#endif