input: mouse: add qemu_input_is_absolute()
authorGerd Hoffmann <kraxel@redhat.com>
Thu, 28 Nov 2013 10:31:09 +0000 (11:31 +0100)
committerGerd Hoffmann <kraxel@redhat.com>
Wed, 5 Mar 2014 08:52:02 +0000 (09:52 +0100)
Same as kbd_mouse_is_absolute(), but using new input core.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
include/ui/input.h
ui/input.c

index c6f50c24404ffccdbf2a11f6864bd085593a24b1..28afc45c0469d5b521c0e4190c19ad51b2968f22 100644 (file)
@@ -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);
index fd2293b39903d63d483e008b492b59fcf011bd9c..01991cb2c05d06fe1f1c3aa0fc6eaf7c702c72eb 100644 (file)
@@ -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) {