struct server;
struct wlr_surface;
struct wlr_scene_node;
-enum wlr_button_state;
+enum wl_pointer_button_state;
/* Cursors used internally by labwc */
enum lab_cursors {
struct wlr_input_device *device,
double x, double y, uint32_t time_msec);
void cursor_emulate_button(struct seat *seat,
- uint32_t button, enum wlr_button_state state, uint32_t time_msec);
+ uint32_t button, enum wl_pointer_button_state state, uint32_t time_msec);
void cursor_finish(struct seat *seat);
#endif /* LABWC_CURSOR_H */
bool notify;
switch (event->state) {
- case WLR_BUTTON_PRESSED:
+ case WL_POINTER_BUTTON_STATE_PRESSED:
notify = cursor_process_button_press(seat, event->button,
event->time_msec);
if (notify) {
event->button, event->state);
}
break;
- case WLR_BUTTON_RELEASED:
+ case WL_POINTER_BUTTON_STATE_RELEASED:
notify = cursor_process_button_release(seat, event->button,
event->time_msec);
if (notify) {
void
cursor_emulate_button(struct seat *seat, uint32_t button,
- enum wlr_button_state state, uint32_t time_msec)
+ enum wl_pointer_button_state state, uint32_t time_msec)
{
idle_manager_notify_activity(seat->seat);
bool notify;
switch (state) {
- case WLR_BUTTON_PRESSED:
+ case WL_POINTER_BUTTON_STATE_PRESSED:
notify = cursor_process_button_press(seat, button, time_msec);
if (notify) {
wlr_seat_pointer_notify_button(seat->seat, time_msec, button, state);
}
break;
- case WLR_BUTTON_RELEASED:
+ case WL_POINTER_BUTTON_STATE_RELEASED:
notify = cursor_process_button_release(seat, button, time_msec);
if (notify) {
wlr_seat_pointer_notify_button(seat->seat, time_msec, button, state);
&server->seat.keyboard_group->keyboard);
enum direction direction = LAB_DIRECTION_INVALID;
- if (event->orientation == WLR_AXIS_ORIENTATION_HORIZONTAL) {
+ if (event->orientation == WL_POINTER_AXIS_HORIZONTAL_SCROLL) {
int rel = compare_delta(event, &server->seat.smooth_scroll_offset.x);
if (rel < 0) {
direction = LAB_DIRECTION_LEFT;
} else if (rel > 0) {
direction = LAB_DIRECTION_RIGHT;
}
- } else if (event->orientation == WLR_AXIS_ORIENTATION_VERTICAL) {
+ } else if (event->orientation == WL_POINTER_AXIS_VERTICAL_SCROLL) {
int rel = compare_delta(event, &server->seat.smooth_scroll_offset.y);
if (rel < 0) {
direction = LAB_DIRECTION_UP;
} else {
uint32_t button = tablet_get_mapped_button(ev->button);
if (button) {
- cursor_emulate_button(pad->seat, button, ev->state, ev->time_msec);
+ cursor_emulate_button(pad->seat, button,
+ ev->state == WLR_BUTTON_PRESSED
+ ? WL_POINTER_BUTTON_STATE_PRESSED
+ : WL_POINTER_BUTTON_STATE_RELEASED,
+ ev->time_msec);
}
}
}
cursor_emulate_button(tablet->seat,
button,
ev->state == WLR_TABLET_TOOL_TIP_DOWN
- ? WLR_BUTTON_PRESSED
- : WLR_BUTTON_RELEASED,
+ ? WL_POINTER_BUTTON_STATE_PRESSED
+ : WL_POINTER_BUTTON_STATE_RELEASED,
ev->time_msec);
}
}
} else {
if (button) {
is_down_mouse_emulation = ev->state == WLR_BUTTON_PRESSED;
- cursor_emulate_button(tablet->seat, button, ev->state, ev->time_msec);
+ cursor_emulate_button(tablet->seat, button,
+ ev->state == WLR_BUTTON_PRESSED
+ ? WL_POINTER_BUTTON_STATE_PRESSED
+ : WL_POINTER_BUTTON_STATE_RELEASED,
+ ev->time_msec);
}
}
}
} else {
cursor_emulate_move_absolute(seat, &event->touch->base,
event->x, event->y, event->time_msec);
- cursor_emulate_button(seat, BTN_LEFT, WLR_BUTTON_PRESSED,
+ cursor_emulate_button(seat, BTN_LEFT, WL_POINTER_BUTTON_STATE_PRESSED,
event->time_msec);
}
}
wlr_seat_touch_notify_up(seat->seat, event->time_msec,
event->touch_id);
} else {
- cursor_emulate_button(seat, BTN_LEFT, WLR_BUTTON_RELEASED,
- event->time_msec);
+ cursor_emulate_button(seat, BTN_LEFT,
+ WL_POINTER_BUTTON_STATE_RELEASED, event->time_msec);
}
wl_list_remove(&touch_point->link);
zfree(touch_point);
[wrap-git]
url = https://gitlab.freedesktop.org/wlroots/wlroots.git
-revision = 811ca199c444525dc4d846d38f76554f1a9b48b0
+revision = 488a23c16908a83041cf28e134a6f149d831598d
[provide]
dependency_names = wlroots