diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-11-28 11:31:09 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2014-03-05 09:52:02 +0100 |
commit | 502c8db5b41bb3206ad136fa4baa753c186c9ebd (patch) | |
tree | 30efe9e0baa81a8a00490c57ee2d37e472d32a7f | |
parent | d3535431e8006e8bf71229f306ea9c62d9e737e8 (diff) |
input: mouse: add qemu_input_is_absolute()
Same as kbd_mouse_is_absolute(), but using new input core.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r-- | include/ui/input.h | 1 | ||||
-rw-r--r-- | ui/input.c | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/include/ui/input.h b/include/ui/input.h index c6f50c2440..28afc45c04 100644 --- a/include/ui/input.h +++ b/include/ui/input.h @@ -41,6 +41,7 @@ void qemu_input_queue_btn(QemuConsole *src, InputButton btn, bool down); void qemu_input_update_buttons(QemuConsole *src, uint32_t *button_map, uint32_t button_old, uint32_t button_new); +bool qemu_input_is_absolute(void); int qemu_input_scale_axis(int value, int size_in, int size_out); InputEvent *qemu_input_event_new_move(InputEventKind kind, InputAxis axis, int value); diff --git a/ui/input.c b/ui/input.c index fd2293b399..01991cb2c0 100644 --- a/ui/input.c +++ b/ui/input.c @@ -181,6 +181,14 @@ void qemu_input_update_buttons(QemuConsole *src, uint32_t *button_map, } } +bool qemu_input_is_absolute(void) +{ + QemuInputHandlerState *s; + + s = qemu_input_find_handler(INPUT_EVENT_MASK_REL | INPUT_EVENT_MASK_ABS); + return (s != NULL) && (s->handler->mask & INPUT_EVENT_MASK_ABS); +} + int qemu_input_scale_axis(int value, int size_in, int size_out) { if (size_in < 2) { |