aboutsummaryrefslogtreecommitdiff
path: root/backend/x11/input_device.c
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-04-15 11:11:00 +0200
committerGitHub <noreply@github.com>2018-04-15 11:11:00 +0200
commit1db8667ceaef0e73b0937c277ad16268429ff4c5 (patch)
tree020a27e79253fc18d03738d53b3abdbfb4d06cb5 /backend/x11/input_device.c
parent63763d327969a17af43ccaf8fe4c6da941f8efcb (diff)
parente79d924588523732d13b582a46962246c8a9670d (diff)
Merge pull request #869 from psychon/x11-cleanups
Some changes to the x11 backend
Diffstat (limited to 'backend/x11/input_device.c')
-rw-r--r--backend/x11/input_device.c18
1 files changed, 7 insertions, 11 deletions
diff --git a/backend/x11/input_device.c b/backend/x11/input_device.c
index 55e543e6..4433568d 100644
--- a/backend/x11/input_device.c
+++ b/backend/x11/input_device.c
@@ -56,7 +56,7 @@ static void x11_handle_pointer_position(struct wlr_x11_output *output,
x11->time = time;
}
-bool x11_handle_input_event(struct wlr_x11_backend *x11,
+void x11_handle_input_event(struct wlr_x11_backend *x11,
xcb_generic_event_t *event) {
switch (event->response_type & XCB_EVENT_RESPONSE_TYPE_MASK) {
case XCB_KEY_PRESS:
@@ -73,7 +73,7 @@ bool x11_handle_input_event(struct wlr_x11_backend *x11,
// TODO use xcb-xkb for more precise modifiers state?
wlr_keyboard_notify_key(&x11->keyboard, &key);
x11->time = ev->time;
- return true;
+ return;
}
case XCB_BUTTON_PRESS: {
xcb_button_press_event_t *ev = (xcb_button_press_event_t *)event;
@@ -110,19 +110,17 @@ bool x11_handle_input_event(struct wlr_x11_backend *x11,
wlr_signal_emit_safe(&x11->pointer.events.button, &button);
}
x11->time = ev->time;
- return true;
+ return;
}
case XCB_MOTION_NOTIFY: {
xcb_motion_notify_event_t *ev = (xcb_motion_notify_event_t *)event;
struct wlr_x11_output *output =
x11_output_from_window_id(x11, ev->event);
- if (output == NULL) {
- return false;
+ if (output != NULL) {
+ x11_handle_pointer_position(output, ev->event_x, ev->event_y, ev->time);
}
-
- x11_handle_pointer_position(output, ev->event_x, ev->event_y, ev->time);
- return true;
+ return;
}
default:
#ifdef WLR_HAS_XCB_XKB
@@ -131,13 +129,11 @@ bool x11_handle_input_event(struct wlr_x11_backend *x11,
(xcb_xkb_state_notify_event_t *)event;
wlr_keyboard_notify_modifiers(&x11->keyboard, ev->baseMods,
ev->latchedMods, ev->lockedMods, ev->lockedGroup);
- return true;
+ return;
}
#endif
break;
}
-
- return false;
}
const struct wlr_input_device_impl input_device_impl = { 0 };