4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "sysemu/sysemu.h"
26 #include "ui/console.h"
27 #include "qapi/error.h"
28 #include "qmp-commands.h"
29 #include "qapi-types.h"
30 #include "ui/keymaps.h"
33 struct QEMUPutMouseEntry
{
34 QEMUPutMouseEvent
*qemu_put_mouse_event
;
35 void *qemu_put_mouse_event_opaque
;
36 int qemu_put_mouse_event_absolute
;
40 QemuInputHandlerState
*s
;
41 int axis
[INPUT_AXIS__MAX
];
45 struct QEMUPutKbdEntry
{
46 QEMUPutKBDEvent
*put_kbd
;
48 QemuInputHandlerState
*s
;
51 struct QEMUPutLEDEntry
{
52 QEMUPutLEDEvent
*put_led
;
54 QTAILQ_ENTRY(QEMUPutLEDEntry
) next
;
57 static QTAILQ_HEAD(, QEMUPutLEDEntry
) led_handlers
=
58 QTAILQ_HEAD_INITIALIZER(led_handlers
);
60 int index_from_key(const char *key
, size_t key_length
)
64 for (i
= 0; QKeyCode_lookup
[i
] != NULL
; i
++) {
65 if (!strncmp(key
, QKeyCode_lookup
[i
], key_length
) &&
66 !QKeyCode_lookup
[i
][key_length
]) {
71 /* Return Q_KEY_CODE__MAX if the key is invalid */
75 static KeyValue
*copy_key_value(KeyValue
*src
)
77 KeyValue
*dst
= g_new(KeyValue
, 1);
78 memcpy(dst
, src
, sizeof(*src
));
82 void qmp_send_key(KeyValueList
*keys
, bool has_hold_time
, int64_t hold_time
,
90 hold_time
= 0; /* use default */
93 for (p
= keys
; p
!= NULL
; p
= p
->next
) {
94 qemu_input_event_send_key(NULL
, copy_key_value(p
->value
), true);
95 qemu_input_event_send_key_delay(hold_time
);
96 up
= g_realloc(up
, sizeof(*up
) * (count
+1));
97 up
[count
] = copy_key_value(p
->value
);
102 qemu_input_event_send_key(NULL
, up
[count
], false);
103 qemu_input_event_send_key_delay(hold_time
);
108 static void legacy_kbd_event(DeviceState
*dev
, QemuConsole
*src
,
111 QEMUPutKbdEntry
*entry
= (QEMUPutKbdEntry
*)dev
;
112 int scancodes
[3], i
, count
;
114 if (!entry
|| !entry
->put_kbd
) {
117 count
= qemu_input_key_value_to_scancode(evt
->u
.key
->key
,
120 for (i
= 0; i
< count
; i
++) {
121 entry
->put_kbd(entry
->opaque
, scancodes
[i
]);
125 static QemuInputHandler legacy_kbd_handler
= {
126 .name
= "legacy-kbd",
127 .mask
= INPUT_EVENT_MASK_KEY
,
128 .event
= legacy_kbd_event
,
131 QEMUPutKbdEntry
*qemu_add_kbd_event_handler(QEMUPutKBDEvent
*func
, void *opaque
)
133 QEMUPutKbdEntry
*entry
;
135 entry
= g_new0(QEMUPutKbdEntry
, 1);
136 entry
->put_kbd
= func
;
137 entry
->opaque
= opaque
;
138 entry
->s
= qemu_input_handler_register((DeviceState
*)entry
,
139 &legacy_kbd_handler
);
140 qemu_input_handler_activate(entry
->s
);
144 static void legacy_mouse_event(DeviceState
*dev
, QemuConsole
*src
,
147 static const int bmap
[INPUT_BUTTON__MAX
] = {
148 [INPUT_BUTTON_LEFT
] = MOUSE_EVENT_LBUTTON
,
149 [INPUT_BUTTON_MIDDLE
] = MOUSE_EVENT_MBUTTON
,
150 [INPUT_BUTTON_RIGHT
] = MOUSE_EVENT_RBUTTON
,
152 QEMUPutMouseEntry
*s
= (QEMUPutMouseEntry
*)dev
;
155 case INPUT_EVENT_KIND_BTN
:
156 if (evt
->u
.btn
->down
) {
157 s
->buttons
|= bmap
[evt
->u
.btn
->button
];
159 s
->buttons
&= ~bmap
[evt
->u
.btn
->button
];
161 if (evt
->u
.btn
->down
&& evt
->u
.btn
->button
== INPUT_BUTTON_WHEELUP
) {
162 s
->qemu_put_mouse_event(s
->qemu_put_mouse_event_opaque
,
163 s
->axis
[INPUT_AXIS_X
],
164 s
->axis
[INPUT_AXIS_Y
],
168 if (evt
->u
.btn
->down
&&
169 evt
->u
.btn
->button
== INPUT_BUTTON_WHEELDOWN
) {
170 s
->qemu_put_mouse_event(s
->qemu_put_mouse_event_opaque
,
171 s
->axis
[INPUT_AXIS_X
],
172 s
->axis
[INPUT_AXIS_Y
],
177 case INPUT_EVENT_KIND_ABS
:
178 s
->axis
[evt
->u
.abs
->axis
] = evt
->u
.abs
->value
;
180 case INPUT_EVENT_KIND_REL
:
181 s
->axis
[evt
->u
.rel
->axis
] += evt
->u
.rel
->value
;
188 static void legacy_mouse_sync(DeviceState
*dev
)
190 QEMUPutMouseEntry
*s
= (QEMUPutMouseEntry
*)dev
;
192 s
->qemu_put_mouse_event(s
->qemu_put_mouse_event_opaque
,
193 s
->axis
[INPUT_AXIS_X
],
194 s
->axis
[INPUT_AXIS_Y
],
198 if (!s
->qemu_put_mouse_event_absolute
) {
199 s
->axis
[INPUT_AXIS_X
] = 0;
200 s
->axis
[INPUT_AXIS_Y
] = 0;
204 QEMUPutMouseEntry
*qemu_add_mouse_event_handler(QEMUPutMouseEvent
*func
,
205 void *opaque
, int absolute
,
208 QEMUPutMouseEntry
*s
;
210 s
= g_new0(QEMUPutMouseEntry
, 1);
212 s
->qemu_put_mouse_event
= func
;
213 s
->qemu_put_mouse_event_opaque
= opaque
;
214 s
->qemu_put_mouse_event_absolute
= absolute
;
217 s
->h
.mask
= INPUT_EVENT_MASK_BTN
|
218 (absolute
? INPUT_EVENT_MASK_ABS
: INPUT_EVENT_MASK_REL
);
219 s
->h
.event
= legacy_mouse_event
;
220 s
->h
.sync
= legacy_mouse_sync
;
221 s
->s
= qemu_input_handler_register((DeviceState
*)s
,
227 void qemu_activate_mouse_event_handler(QEMUPutMouseEntry
*entry
)
229 qemu_input_handler_activate(entry
->s
);
232 void qemu_remove_mouse_event_handler(QEMUPutMouseEntry
*entry
)
234 qemu_input_handler_unregister(entry
->s
);
239 QEMUPutLEDEntry
*qemu_add_led_event_handler(QEMUPutLEDEvent
*func
,
244 s
= g_new0(QEMUPutLEDEntry
, 1);
248 QTAILQ_INSERT_TAIL(&led_handlers
, s
, next
);
252 void qemu_remove_led_event_handler(QEMUPutLEDEntry
*entry
)
256 QTAILQ_REMOVE(&led_handlers
, entry
, next
);
260 void kbd_put_ledstate(int ledstate
)
262 QEMUPutLEDEntry
*cursor
;
264 QTAILQ_FOREACH(cursor
, &led_handlers
, next
) {
265 cursor
->put_led(cursor
->opaque
, ledstate
);