]> git.proxmox.com Git - mirror_qemu.git/blame - ui/sdl.c
ui/gtk.c: add ctrl-alt-= support for zoom in acceleration
[mirror_qemu.git] / ui / sdl.c
CommitLineData
0f0b7264
FB
1/*
2 * QEMU SDL display driver
5fafdf24 3 *
0f0b7264 4 * Copyright (c) 2003 Fabrice Bellard
5fafdf24 5 *
0f0b7264
FB
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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
22 * THE SOFTWARE.
23 */
cdfb017e
SW
24
25/* Avoid compiler warning because macro is redefined in SDL_syswm.h. */
26#undef WIN32_LEAN_AND_MEAN
27
e16f4c87 28#include "qemu/osdep.h"
0f0b7264 29#include <SDL.h>
c9985aa8 30#include <SDL_syswm.h>
0f0b7264 31
511d2b14 32#include "qemu-common.h"
f348b6d1 33#include "qemu/cutils.h"
28ecbaee 34#include "ui/console.h"
a25f545d 35#include "ui/input.h"
9c17d615 36#include "sysemu/sysemu.h"
511d2b14 37#include "x_keymap.h"
c18a2c36 38#include "sdl_zoom.h"
511d2b14 39
7d957bd8 40static DisplayChangeListener *dcl;
8db9bae9 41static DisplaySurface *surface;
7d957bd8
AL
42static SDL_Surface *real_screen;
43static SDL_Surface *guest_screen = NULL;
0f0b7264 44static int gui_grab; /* if true, all keyboard/mouse events are grabbed */
8a7ddc38 45static int last_vm_running;
f9977897
JK
46static bool gui_saved_scaling;
47static int gui_saved_width;
48static int gui_saved_height;
8e9c4afe
FB
49static int gui_saved_grab;
50static int gui_fullscreen;
43523e93 51static int gui_noframe;
8e9c4afe
FB
52static int gui_key_modifier_pressed;
53static int gui_keysym;
32ff25bf
FB
54static int gui_grab_code = KMOD_LALT | KMOD_LCTRL;
55static uint8_t modifiers_state[256];
09b26c5e
FB
56static SDL_Cursor *sdl_cursor_normal;
57static SDL_Cursor *sdl_cursor_hidden;
58static int absolute_enabled = 0;
d34cab9f
TS
59static int guest_cursor = 0;
60static int guest_x, guest_y;
660f11be 61static SDL_Cursor *guest_sprite = NULL;
c18a2c36
SS
62static SDL_PixelFormat host_format;
63static int scaling_active = 0;
3af12c86 64static Notifier mouse_mode_notifier;
56bdd4b6
JM
65static int idle_counter;
66
67#define SDL_REFRESH_INTERVAL_BUSY 10
68#define SDL_MAX_IDLE_COUNT (2 * GUI_REFRESH_INTERVAL_DEFAULT \
69 / SDL_REFRESH_INTERVAL_BUSY + 1)
0f0b7264 70
5f5d82dd
BH
71#if 0
72#define DEBUG_SDL
73#endif
74
7c20b4a3 75static void sdl_update(DisplayChangeListener *dcl,
7c20b4a3 76 int x, int y, int w, int h)
0f0b7264 77{
c18a2c36
SS
78 SDL_Rect rec;
79 rec.x = x;
80 rec.y = y;
81 rec.w = w;
82 rec.h = h;
83
5f5d82dd
BH
84#ifdef DEBUG_SDL
85 printf("SDL: Updating x=%d y=%d w=%d h=%d (scaling: %d)\n",
86 x, y, w, h, scaling_active);
87#endif
88
7b5d76da 89 if (guest_screen) {
c18a2c36
SS
90 if (!scaling_active) {
91 SDL_BlitSurface(guest_screen, &rec, real_screen, &rec);
92 } else {
93 if (sdl_zoom_blit(guest_screen, real_screen, SMOOTHING_ON, &rec) < 0) {
94 fprintf(stderr, "Zoom blit failed\n");
95 exit(1);
96 }
97 }
98 }
99 SDL_UpdateRect(real_screen, rec.x, rec.y, rec.w, rec.h);
7d957bd8
AL
100}
101
9510a486 102static void do_sdl_resize(int width, int height, int bpp)
0f0b7264
FB
103{
104 int flags;
898ae284 105 SDL_Surface *tmp_screen;
0f0b7264 106
5f5d82dd
BH
107#ifdef DEBUG_SDL
108 printf("SDL: Resizing to %dx%d bpp %d\n", width, height, bpp);
109#endif
0f0b7264 110
91ada980
JK
111 flags = SDL_HWSURFACE | SDL_ASYNCBLIT | SDL_HWACCEL;
112 if (gui_fullscreen) {
8e9c4afe 113 flags |= SDL_FULLSCREEN;
91ada980
JK
114 } else {
115 flags |= SDL_RESIZABLE;
116 }
43523e93
TS
117 if (gui_noframe)
118 flags |= SDL_NOFRAME;
9903da21 119
898ae284 120 tmp_screen = SDL_SetVideoMode(width, height, bpp, flags);
7d957bd8 121 if (!real_screen) {
898ae284
LL
122 if (!tmp_screen) {
123 fprintf(stderr, "Could not open SDL display (%dx%dx%d): %s\n",
124 width, height, bpp, SDL_GetError());
125 exit(1);
126 }
127 } else {
128 /*
129 * Revert to the previous video mode if the change of resizing or
130 * resolution failed.
131 */
132 if (!tmp_screen) {
133 fprintf(stderr, "Failed to set SDL display (%dx%dx%d): %s\n",
134 width, height, bpp, SDL_GetError());
135 return;
136 }
0f0b7264 137 }
898ae284
LL
138
139 real_screen = tmp_screen;
7b5d76da
AL
140}
141
c12aeb86 142static void sdl_switch(DisplayChangeListener *dcl,
8db9bae9 143 DisplaySurface *new_surface)
7b5d76da 144{
d28d6505 145 PixelFormat pf;
8db9bae9
GH
146
147 /* temporary hack: allows to call sdl_switch to handle scaling changes */
148 if (new_surface) {
149 surface = new_surface;
150 }
d28d6505 151 pf = qemu_pixelformat_from_pixman(surface->format);
8db9bae9 152
187cd1d9 153 if (!scaling_active) {
8db9bae9
GH
154 do_sdl_resize(surface_width(surface), surface_height(surface), 0);
155 } else if (real_screen->format->BitsPerPixel !=
156 surface_bits_per_pixel(surface)) {
187cd1d9 157 do_sdl_resize(real_screen->w, real_screen->h,
8db9bae9 158 surface_bits_per_pixel(surface));
c18a2c36 159 }
8db9bae9
GH
160
161 if (guest_screen != NULL) {
162 SDL_FreeSurface(guest_screen);
163 }
5f5d82dd
BH
164
165#ifdef DEBUG_SDL
166 printf("SDL: Creating surface with masks: %08x %08x %08x %08x\n",
167 pf.rmask, pf.gmask, pf.bmask, pf.amask);
168#endif
169
8db9bae9
GH
170 guest_screen = SDL_CreateRGBSurfaceFrom
171 (surface_data(surface),
172 surface_width(surface), surface_height(surface),
173 surface_bits_per_pixel(surface), surface_stride(surface),
30f1e661
GH
174 pf.rmask, pf.gmask,
175 pf.bmask, pf.amask);
0f0b7264
FB
176}
177
7dd93291
BH
178static bool sdl_check_format(DisplayChangeListener *dcl,
179 pixman_format_code_t format)
180{
181 /*
182 * We let SDL convert for us a few more formats than,
183 * the native ones. Thes are the ones I have tested.
184 */
185 return (format == PIXMAN_x8r8g8b8 ||
186 format == PIXMAN_b8g8r8x8 ||
187 format == PIXMAN_x1r5g5b5 ||
188 format == PIXMAN_r5g6b5);
189}
190
3d11d0eb 191/* generic keyboard conversion */
e58d12ed 192
3d11d0eb 193#include "sdl_keysym.h"
3d11d0eb 194
c227f099 195static kbd_layout_t *kbd_layout = NULL;
3d11d0eb
FB
196
197static uint8_t sdl_keyevent_to_keycode_generic(const SDL_KeyboardEvent *ev)
e58d12ed 198{
3d11d0eb
FB
199 int keysym;
200 /* workaround for X11+SDL bug with AltGR */
201 keysym = ev->keysym.sym;
202 if (keysym == 0 && ev->keysym.scancode == 113)
203 keysym = SDLK_MODE;
60659e3b
FB
204 /* For Japanese key '\' and '|' */
205 if (keysym == 92 && ev->keysym.scancode == 133) {
206 keysym = 0xa5;
207 }
44bb61c8 208 return keysym2scancode(kbd_layout, keysym) & SCANCODE_KEYMASK;
e58d12ed
FB
209}
210
3d11d0eb
FB
211/* specific keyboard conversions from scan codes */
212
213#if defined(_WIN32)
e58d12ed
FB
214
215static uint8_t sdl_keyevent_to_keycode(const SDL_KeyboardEvent *ev)
216{
217 return ev->keysym.scancode;
218}
219
220#else
221
5368a422
AL
222#if defined(SDL_VIDEO_DRIVER_X11)
223#include <X11/XKBlib.h>
224
225static int check_for_evdev(void)
226{
227 SDL_SysWMinfo info;
229609dd 228 XkbDescPtr desc = NULL;
5368a422 229 int has_evdev = 0;
229609dd 230 char *keycodes = NULL;
5368a422
AL
231
232 SDL_VERSION(&info.version);
229609dd 233 if (!SDL_GetWMInfo(&info)) {
5368a422 234 return 0;
229609dd 235 }
5368a422
AL
236 desc = XkbGetKeyboard(info.info.x11.display,
237 XkbGBN_AllComponentsMask,
238 XkbUseCoreKbd);
229609dd
JK
239 if (desc && desc->names) {
240 keycodes = XGetAtomName(info.info.x11.display, desc->names->keycodes);
241 if (keycodes == NULL) {
242 fprintf(stderr, "could not lookup keycode name\n");
243 } else if (strstart(keycodes, "evdev", NULL)) {
244 has_evdev = 1;
245 } else if (!strstart(keycodes, "xfree86", NULL)) {
246 fprintf(stderr, "unknown keycodes `%s', please report to "
247 "qemu-devel@nongnu.org\n", keycodes);
248 }
249 }
5368a422 250
229609dd
JK
251 if (desc) {
252 XkbFreeKeyboard(desc, XkbGBN_AllComponentsMask, True);
253 }
254 if (keycodes) {
255 XFree(keycodes);
256 }
5368a422
AL
257 return has_evdev;
258}
259#else
260static int check_for_evdev(void)
261{
262 return 0;
263}
264#endif
265
e58d12ed
FB
266static uint8_t sdl_keyevent_to_keycode(const SDL_KeyboardEvent *ev)
267{
268 int keycode;
5368a422
AL
269 static int has_evdev = -1;
270
271 if (has_evdev == -1)
272 has_evdev = check_for_evdev();
e58d12ed
FB
273
274 keycode = ev->keysym.scancode;
275
276 if (keycode < 9) {
277 keycode = 0;
278 } else if (keycode < 97) {
279 keycode -= 8; /* just an offset */
5368a422 280 } else if (keycode < 158) {
e58d12ed 281 /* use conversion table */
5368a422
AL
282 if (has_evdev)
283 keycode = translate_evdev_keycode(keycode - 97);
284 else
285 keycode = translate_xfree86_keycode(keycode - 97);
286 } else if (keycode == 208) { /* Hiragana_Katakana */
287 keycode = 0x70;
288 } else if (keycode == 211) { /* backslash */
289 keycode = 0x73;
e58d12ed
FB
290 } else {
291 keycode = 0;
292 }
293 return keycode;
294}
295
296#endif
297
32ff25bf
FB
298static void reset_keys(void)
299{
300 int i;
301 for(i = 0; i < 256; i++) {
302 if (modifiers_state[i]) {
a25f545d 303 qemu_input_event_send_key_number(dcl->con, i, false);
32ff25bf
FB
304 modifiers_state[i] = 0;
305 }
306 }
307}
308
0f0b7264
FB
309static void sdl_process_key(SDL_KeyboardEvent *ev)
310{
a25f545d 311 int keycode;
de2200d3
FB
312
313 if (ev->keysym.sym == SDLK_PAUSE) {
314 /* specific case */
a25f545d
GH
315 qemu_input_event_send_key_qcode(dcl->con, Q_KEY_CODE_PAUSE,
316 ev->type == SDL_KEYDOWN);
de2200d3
FB
317 return;
318 }
319
3d11d0eb
FB
320 if (kbd_layout) {
321 keycode = sdl_keyevent_to_keycode_generic(ev);
322 } else {
323 keycode = sdl_keyevent_to_keycode(ev);
324 }
de2200d3
FB
325
326 switch(keycode) {
327 case 0x00:
328 /* sent when leaving window: reset the modifiers state */
32ff25bf 329 reset_keys();
de2200d3
FB
330 return;
331 case 0x2a: /* Left Shift */
332 case 0x36: /* Right Shift */
333 case 0x1d: /* Left CTRL */
334 case 0x9d: /* Right CTRL */
335 case 0x38: /* Left ALT */
336 case 0xb8: /* Right ALT */
0f0b7264 337 if (ev->type == SDL_KEYUP)
de2200d3
FB
338 modifiers_state[keycode] = 0;
339 else
340 modifiers_state[keycode] = 1;
341 break;
4e79bcbb
SW
342#define QEMU_SDL_VERSION ((SDL_MAJOR_VERSION << 8) + SDL_MINOR_VERSION)
343#if QEMU_SDL_VERSION < 0x102 || QEMU_SDL_VERSION == 0x102 && SDL_PATCHLEVEL < 14
344 /* SDL versions before 1.2.14 don't support key up for caps/num lock. */
de2200d3
FB
345 case 0x45: /* num lock */
346 case 0x3a: /* caps lock */
347 /* SDL does not send the key up event, so we generate it */
a25f545d
GH
348 qemu_input_event_send_key_number(dcl->con, keycode, true);
349 qemu_input_event_send_key_number(dcl->con, keycode, false);
de2200d3 350 return;
4e79bcbb 351#endif
0f0b7264 352 }
de2200d3
FB
353
354 /* now send the key code */
a25f545d
GH
355 qemu_input_event_send_key_number(dcl->con, keycode,
356 ev->type == SDL_KEYDOWN);
0f0b7264
FB
357}
358
8a7ddc38
FB
359static void sdl_update_caption(void)
360{
b4ed5d18
DE
361 char win_title[1024];
362 char icon_title[1024];
c35734b2
TS
363 const char *status = "";
364
1354869c 365 if (!runstate_is_running())
c35734b2 366 status = " [Stopped]";
3780e197 367 else if (gui_grab) {
0ca9f8a4 368 if (alt_grab)
4e75b342 369 status = " - Press Ctrl-Alt-Shift to exit mouse grab";
0ca9f8a4 370 else if (ctrl_grab)
4e75b342 371 status = " - Press Right-Ctrl to exit mouse grab";
0ca9f8a4 372 else
4e75b342 373 status = " - Press Ctrl-Alt to exit mouse grab";
3780e197 374 }
c35734b2 375
b4ed5d18
DE
376 if (qemu_name) {
377 snprintf(win_title, sizeof(win_title), "QEMU (%s)%s", qemu_name, status);
378 snprintf(icon_title, sizeof(icon_title), "QEMU (%s)", qemu_name);
379 } else {
380 snprintf(win_title, sizeof(win_title), "QEMU%s", status);
381 snprintf(icon_title, sizeof(icon_title), "QEMU");
382 }
c35734b2 383
b4ed5d18 384 SDL_WM_SetCaption(win_title, icon_title);
8a7ddc38
FB
385}
386
09b26c5e
FB
387static void sdl_hide_cursor(void)
388{
9467cd46
AZ
389 if (!cursor_hide)
390 return;
391
3ab193e6 392 if (qemu_input_is_absolute()) {
8785a8dd
FB
393 SDL_ShowCursor(1);
394 SDL_SetCursor(sdl_cursor_hidden);
395 } else {
396 SDL_ShowCursor(0);
397 }
09b26c5e
FB
398}
399
400static void sdl_show_cursor(void)
401{
9467cd46
AZ
402 if (!cursor_hide)
403 return;
404
3ab193e6 405 if (!qemu_input_is_absolute() || !qemu_console_is_graphic(NULL)) {
8785a8dd 406 SDL_ShowCursor(1);
d34cab9f 407 if (guest_cursor &&
3ab193e6 408 (gui_grab || qemu_input_is_absolute() || absolute_enabled))
d34cab9f
TS
409 SDL_SetCursor(guest_sprite);
410 else
411 SDL_SetCursor(sdl_cursor_normal);
09b26c5e
FB
412 }
413}
414
0f0b7264
FB
415static void sdl_grab_start(void)
416{
85f94f86
JK
417 /*
418 * If the application is not active, do not try to enter grab state. This
419 * prevents 'SDL_WM_GrabInput(SDL_GRAB_ON)' from blocking all the
420 * application (SDL bug).
421 */
422 if (!(SDL_GetAppState() & SDL_APPINPUTFOCUS)) {
423 return;
424 }
d34cab9f
TS
425 if (guest_cursor) {
426 SDL_SetCursor(guest_sprite);
3ab193e6 427 if (!qemu_input_is_absolute() && !absolute_enabled) {
08a2d4c4 428 SDL_WarpMouse(guest_x, guest_y);
3ab193e6 429 }
d34cab9f
TS
430 } else
431 sdl_hide_cursor();
eaa2e027
JK
432 SDL_WM_GrabInput(SDL_GRAB_ON);
433 gui_grab = 1;
434 sdl_update_caption();
0f0b7264
FB
435}
436
437static void sdl_grab_end(void)
438{
0f0b7264 439 SDL_WM_GrabInput(SDL_GRAB_OFF);
0f0b7264 440 gui_grab = 0;
d34cab9f 441 sdl_show_cursor();
8a7ddc38 442 sdl_update_caption();
0f0b7264
FB
443}
444
66596356
JK
445static void absolute_mouse_grab(void)
446{
447 int mouse_x, mouse_y;
448
85f94f86
JK
449 SDL_GetMouseState(&mouse_x, &mouse_y);
450 if (mouse_x > 0 && mouse_x < real_screen->w - 1 &&
451 mouse_y > 0 && mouse_y < real_screen->h - 1) {
452 sdl_grab_start();
66596356
JK
453 }
454}
455
9e8dd451 456static void sdl_mouse_mode_change(Notifier *notify, void *data)
3af12c86 457{
3ab193e6 458 if (qemu_input_is_absolute()) {
3af12c86 459 if (!absolute_enabled) {
3af12c86 460 absolute_enabled = 1;
81c0d5a6 461 if (qemu_console_is_graphic(NULL)) {
66596356
JK
462 absolute_mouse_grab();
463 }
3af12c86
AL
464 }
465 } else if (absolute_enabled) {
f8b8d633
JK
466 if (!gui_fullscreen) {
467 sdl_grab_end();
468 }
35b0f237 469 absolute_enabled = 0;
3af12c86
AL
470 }
471}
472
3ab193e6 473static void sdl_send_mouse_event(int dx, int dy, int x, int y, int state)
0f0b7264 474{
7fb1cf16 475 static uint32_t bmap[INPUT_BUTTON__MAX] = {
3ab193e6
GH
476 [INPUT_BUTTON_LEFT] = SDL_BUTTON(SDL_BUTTON_LEFT),
477 [INPUT_BUTTON_MIDDLE] = SDL_BUTTON(SDL_BUTTON_MIDDLE),
478 [INPUT_BUTTON_RIGHT] = SDL_BUTTON(SDL_BUTTON_RIGHT),
f22d0af0
GH
479 [INPUT_BUTTON_WHEEL_UP] = SDL_BUTTON(SDL_BUTTON_WHEELUP),
480 [INPUT_BUTTON_WHEEL_DOWN] = SDL_BUTTON(SDL_BUTTON_WHEELDOWN),
3ab193e6
GH
481 };
482 static uint32_t prev_state;
483
484 if (prev_state != state) {
485 qemu_input_update_buttons(dcl->con, bmap, prev_state, state);
486 prev_state = state;
487 }
488
489 if (qemu_input_is_absolute()) {
490 qemu_input_queue_abs(dcl->con, INPUT_AXIS_X, x,
491 real_screen->w);
492 qemu_input_queue_abs(dcl->con, INPUT_AXIS_Y, y,
493 real_screen->h);
c3aa84b6
GH
494 } else {
495 if (guest_cursor) {
496 x -= guest_x;
497 y -= guest_y;
498 guest_x += x;
499 guest_y += y;
500 dx = x;
501 dy = y;
502 }
503 qemu_input_queue_rel(dcl->con, INPUT_AXIS_X, dx);
504 qemu_input_queue_rel(dcl->con, INPUT_AXIS_Y, dy);
09b26c5e 505 }
3ab193e6 506 qemu_input_event_sync();
0f0b7264
FB
507}
508
8db9bae9 509static void sdl_scale(int width, int height)
f9977897
JK
510{
511 int bpp = real_screen->format->BitsPerPixel;
512
5f5d82dd
BH
513#ifdef DEBUG_SDL
514 printf("SDL: Scaling to %dx%d bpp %d\n", width, height, bpp);
515#endif
516
f9977897
JK
517 if (bpp != 16 && bpp != 32) {
518 bpp = 32;
519 }
520 do_sdl_resize(width, height, bpp);
521 scaling_active = 1;
f9977897
JK
522}
523
8db9bae9 524static void toggle_full_screen(void)
8e9c4afe 525{
8db9bae9
GH
526 int width = surface_width(surface);
527 int height = surface_height(surface);
528 int bpp = surface_bits_per_pixel(surface);
529
8e9c4afe 530 gui_fullscreen = !gui_fullscreen;
8e9c4afe 531 if (gui_fullscreen) {
f9977897
JK
532 gui_saved_width = real_screen->w;
533 gui_saved_height = real_screen->h;
534 gui_saved_scaling = scaling_active;
535
8db9bae9 536 do_sdl_resize(width, height, bpp);
c18a2c36 537 scaling_active = 0;
f9977897 538
8e9c4afe
FB
539 gui_saved_grab = gui_grab;
540 sdl_grab_start();
541 } else {
f9977897 542 if (gui_saved_scaling) {
8db9bae9 543 sdl_scale(gui_saved_width, gui_saved_height);
f9977897 544 } else {
8db9bae9 545 do_sdl_resize(width, height, 0);
f9977897 546 }
81c0d5a6 547 if (!gui_saved_grab || !qemu_console_is_graphic(NULL)) {
8e9c4afe 548 sdl_grab_end();
f8558100 549 }
8e9c4afe 550 }
1dbfa005
GH
551 graphic_hw_invalidate(NULL);
552 graphic_hw_update(NULL);
8e9c4afe
FB
553}
554
8db9bae9 555static void handle_keydown(SDL_Event *ev)
0f0b7264 556{
8e9c4afe 557 int mod_state;
1ae1caf1
JK
558 int keycode;
559
560 if (alt_grab) {
561 mod_state = (SDL_GetModState() & (gui_grab_code | KMOD_LSHIFT)) ==
562 (gui_grab_code | KMOD_LSHIFT);
563 } else if (ctrl_grab) {
564 mod_state = (SDL_GetModState() & KMOD_RCTRL) == KMOD_RCTRL;
565 } else {
566 mod_state = (SDL_GetModState() & gui_grab_code) == gui_grab_code;
567 }
568 gui_key_modifier_pressed = mod_state;
569
570 if (gui_key_modifier_pressed) {
571 keycode = sdl_keyevent_to_keycode(&ev->key);
572 switch (keycode) {
573 case 0x21: /* 'f' key on US keyboard */
8db9bae9 574 toggle_full_screen();
1ae1caf1
JK
575 gui_keysym = 1;
576 break;
577 case 0x16: /* 'u' key on US keyboard */
578 if (scaling_active) {
579 scaling_active = 0;
bc2ed970 580 sdl_switch(dcl, NULL);
1dbfa005
GH
581 graphic_hw_invalidate(NULL);
582 graphic_hw_update(NULL);
1ae1caf1
JK
583 }
584 gui_keysym = 1;
585 break;
586 case 0x02 ... 0x0a: /* '1' to '9' keys */
587 /* Reset the modifiers sent to the current console */
588 reset_keys();
589 console_select(keycode - 0x02);
590 gui_keysym = 1;
591 if (gui_fullscreen) {
592 break;
593 }
81c0d5a6 594 if (!qemu_console_is_graphic(NULL)) {
1ae1caf1
JK
595 /* release grab if going to a text console */
596 if (gui_grab) {
597 sdl_grab_end();
598 } else if (absolute_enabled) {
599 sdl_show_cursor();
600 }
601 } else if (absolute_enabled) {
602 sdl_hide_cursor();
603 absolute_mouse_grab();
604 }
605 break;
606 case 0x1b: /* '+' */
607 case 0x35: /* '-' */
608 if (!gui_fullscreen) {
609 int width = MAX(real_screen->w + (keycode == 0x1b ? 50 : -50),
610 160);
8db9bae9
GH
611 int height = (surface_height(surface) * width) /
612 surface_width(surface);
1ae1caf1 613
8db9bae9 614 sdl_scale(width, height);
1dbfa005
GH
615 graphic_hw_invalidate(NULL);
616 graphic_hw_update(NULL);
1ae1caf1
JK
617 gui_keysym = 1;
618 }
619 default:
620 break;
621 }
81c0d5a6 622 } else if (!qemu_console_is_graphic(NULL)) {
1ae1caf1
JK
623 int keysym = 0;
624
625 if (ev->key.keysym.mod & (KMOD_LCTRL | KMOD_RCTRL)) {
626 switch (ev->key.keysym.sym) {
627 case SDLK_UP:
628 keysym = QEMU_KEY_CTRL_UP;
629 break;
630 case SDLK_DOWN:
631 keysym = QEMU_KEY_CTRL_DOWN;
632 break;
633 case SDLK_LEFT:
634 keysym = QEMU_KEY_CTRL_LEFT;
635 break;
636 case SDLK_RIGHT:
637 keysym = QEMU_KEY_CTRL_RIGHT;
638 break;
639 case SDLK_HOME:
640 keysym = QEMU_KEY_CTRL_HOME;
641 break;
642 case SDLK_END:
643 keysym = QEMU_KEY_CTRL_END;
644 break;
645 case SDLK_PAGEUP:
646 keysym = QEMU_KEY_CTRL_PAGEUP;
647 break;
648 case SDLK_PAGEDOWN:
649 keysym = QEMU_KEY_CTRL_PAGEDOWN;
650 break;
651 default:
652 break;
653 }
654 } else {
655 switch (ev->key.keysym.sym) {
656 case SDLK_UP:
657 keysym = QEMU_KEY_UP;
658 break;
659 case SDLK_DOWN:
660 keysym = QEMU_KEY_DOWN;
661 break;
662 case SDLK_LEFT:
663 keysym = QEMU_KEY_LEFT;
664 break;
665 case SDLK_RIGHT:
666 keysym = QEMU_KEY_RIGHT;
667 break;
668 case SDLK_HOME:
669 keysym = QEMU_KEY_HOME;
670 break;
671 case SDLK_END:
672 keysym = QEMU_KEY_END;
673 break;
674 case SDLK_PAGEUP:
675 keysym = QEMU_KEY_PAGEUP;
676 break;
677 case SDLK_PAGEDOWN:
678 keysym = QEMU_KEY_PAGEDOWN;
679 break;
680 case SDLK_BACKSPACE:
681 keysym = QEMU_KEY_BACKSPACE;
682 break;
683 case SDLK_DELETE:
684 keysym = QEMU_KEY_DELETE;
685 break;
686 default:
687 break;
688 }
689 }
690 if (keysym) {
691 kbd_put_keysym(keysym);
692 } else if (ev->key.keysym.unicode != 0) {
693 kbd_put_keysym(ev->key.keysym.unicode);
694 }
695 }
81c0d5a6 696 if (qemu_console_is_graphic(NULL) && !gui_keysym) {
1ae1caf1
JK
697 sdl_process_key(&ev->key);
698 }
699}
700
8db9bae9 701static void handle_keyup(SDL_Event *ev)
1ae1caf1
JK
702{
703 int mod_state;
704
705 if (!alt_grab) {
706 mod_state = (ev->key.keysym.mod & gui_grab_code);
707 } else {
708 mod_state = (ev->key.keysym.mod & (gui_grab_code | KMOD_LSHIFT));
709 }
710 if (!mod_state && gui_key_modifier_pressed) {
711 gui_key_modifier_pressed = 0;
712 if (gui_keysym == 0) {
713 /* exit/enter grab if pressing Ctrl-Alt */
714 if (!gui_grab) {
81c0d5a6 715 if (qemu_console_is_graphic(NULL)) {
1ae1caf1
JK
716 sdl_grab_start();
717 }
718 } else if (!gui_fullscreen) {
719 sdl_grab_end();
720 }
721 /* SDL does not send back all the modifiers key, so we must
722 * correct it. */
723 reset_keys();
724 return;
725 }
726 gui_keysym = 0;
727 }
81c0d5a6 728 if (qemu_console_is_graphic(NULL) && !gui_keysym) {
1ae1caf1
JK
729 sdl_process_key(&ev->key);
730 }
731}
732
8db9bae9 733static void handle_mousemotion(SDL_Event *ev)
1ae1caf1
JK
734{
735 int max_x, max_y;
736
81c0d5a6 737 if (qemu_console_is_graphic(NULL) &&
3ab193e6 738 (qemu_input_is_absolute() || absolute_enabled)) {
1ae1caf1
JK
739 max_x = real_screen->w - 1;
740 max_y = real_screen->h - 1;
741 if (gui_grab && (ev->motion.x == 0 || ev->motion.y == 0 ||
742 ev->motion.x == max_x || ev->motion.y == max_y)) {
743 sdl_grab_end();
744 }
85f94f86 745 if (!gui_grab &&
1ae1caf1
JK
746 (ev->motion.x > 0 && ev->motion.x < max_x &&
747 ev->motion.y > 0 && ev->motion.y < max_y)) {
748 sdl_grab_start();
749 }
750 }
3ab193e6
GH
751 if (gui_grab || qemu_input_is_absolute() || absolute_enabled) {
752 sdl_send_mouse_event(ev->motion.xrel, ev->motion.yrel,
1ae1caf1
JK
753 ev->motion.x, ev->motion.y, ev->motion.state);
754 }
755}
756
8db9bae9 757static void handle_mousebutton(SDL_Event *ev)
1ae1caf1 758{
4c44bdcb 759 int buttonstate = SDL_GetMouseState(NULL, NULL);
1ae1caf1 760 SDL_MouseButtonEvent *bev;
1ae1caf1 761
81c0d5a6 762 if (!qemu_console_is_graphic(NULL)) {
1ae1caf1
JK
763 return;
764 }
765
766 bev = &ev->button;
3ab193e6 767 if (!gui_grab && !qemu_input_is_absolute()) {
822f98d2 768 if (ev->type == SDL_MOUSEBUTTONUP && bev->button == SDL_BUTTON_LEFT) {
1ae1caf1
JK
769 /* start grabbing all events */
770 sdl_grab_start();
771 }
772 } else {
1ae1caf1
JK
773 if (ev->type == SDL_MOUSEBUTTONDOWN) {
774 buttonstate |= SDL_BUTTON(bev->button);
775 } else {
776 buttonstate &= ~SDL_BUTTON(bev->button);
777 }
3ab193e6 778 sdl_send_mouse_event(0, 0, bev->x, bev->y, buttonstate);
1ae1caf1
JK
779 }
780}
781
8db9bae9 782static void handle_activation(SDL_Event *ev)
1ae1caf1 783{
02df4d6f
JK
784#ifdef _WIN32
785 /* Disable grab if the window no longer has the focus
786 * (Windows-only workaround) */
1ae1caf1
JK
787 if (gui_grab && ev->active.state == SDL_APPINPUTFOCUS &&
788 !ev->active.gain && !gui_fullscreen) {
789 sdl_grab_end();
790 }
02df4d6f 791#endif
81c0d5a6 792 if (!gui_grab && ev->active.gain && qemu_console_is_graphic(NULL) &&
3ab193e6 793 (qemu_input_is_absolute() || absolute_enabled)) {
1ae1caf1
JK
794 absolute_mouse_grab();
795 }
796 if (ev->active.state & SDL_APPACTIVE) {
797 if (ev->active.gain) {
798 /* Back to default interval */
0f7b2864 799 update_displaychangelistener(dcl, GUI_REFRESH_INTERVAL_DEFAULT);
1ae1caf1 800 } else {
0f7b2864
GH
801 /* Sleeping interval. Not using the long default here as
802 * sdl_refresh does not only update the guest screen, but
803 * also checks for gui events. */
804 update_displaychangelistener(dcl, 500);
1ae1caf1
JK
805 }
806 }
807}
808
bc2ed970 809static void sdl_refresh(DisplayChangeListener *dcl)
1ae1caf1
JK
810{
811 SDL_Event ev1, *ev = &ev1;
56bdd4b6 812 int idle = 1;
3b46e624 813
1354869c
LC
814 if (last_vm_running != runstate_is_running()) {
815 last_vm_running = runstate_is_running();
8a7ddc38
FB
816 sdl_update_caption();
817 }
818
1dbfa005 819 graphic_hw_update(NULL);
81c0d5a6 820 SDL_EnableUNICODE(!qemu_console_is_graphic(NULL));
457831f4 821
0f0b7264
FB
822 while (SDL_PollEvent(ev)) {
823 switch (ev->type) {
824 case SDL_VIDEOEXPOSE:
bc2ed970 825 sdl_update(dcl, 0, 0, real_screen->w, real_screen->h);
0f0b7264
FB
826 break;
827 case SDL_KEYDOWN:
56bdd4b6 828 idle = 0;
8db9bae9 829 handle_keydown(ev);
1ae1caf1 830 break;
0f0b7264 831 case SDL_KEYUP:
56bdd4b6 832 idle = 0;
8db9bae9 833 handle_keyup(ev);
0f0b7264
FB
834 break;
835 case SDL_QUIT:
941f511a
JK
836 if (!no_quit) {
837 no_shutdown = 0;
731345e1 838 qemu_system_shutdown_request();
941f511a 839 }
0f0b7264
FB
840 break;
841 case SDL_MOUSEMOTION:
56bdd4b6 842 idle = 0;
8db9bae9 843 handle_mousemotion(ev);
0f0b7264
FB
844 break;
845 case SDL_MOUSEBUTTONDOWN:
846 case SDL_MOUSEBUTTONUP:
56bdd4b6 847 idle = 0;
8db9bae9 848 handle_mousebutton(ev);
0f0b7264 849 break;
0294ffb9 850 case SDL_ACTIVEEVENT:
8db9bae9 851 handle_activation(ev);
0294ffb9 852 break;
f9977897 853 case SDL_VIDEORESIZE:
8db9bae9 854 sdl_scale(ev->resize.w, ev->resize.h);
1dbfa005
GH
855 graphic_hw_invalidate(NULL);
856 graphic_hw_update(NULL);
c18a2c36 857 break;
0f0b7264
FB
858 default:
859 break;
860 }
861 }
56bdd4b6
JM
862
863 if (idle) {
864 if (idle_counter < SDL_MAX_IDLE_COUNT) {
865 idle_counter++;
866 if (idle_counter >= SDL_MAX_IDLE_COUNT) {
867 dcl->update_interval = GUI_REFRESH_INTERVAL_DEFAULT;
868 }
869 }
870 } else {
871 idle_counter = 0;
872 dcl->update_interval = SDL_REFRESH_INTERVAL_BUSY;
873 }
0f0b7264
FB
874}
875
7c20b4a3 876static void sdl_mouse_warp(DisplayChangeListener *dcl,
7c20b4a3 877 int x, int y, int on)
d34cab9f
TS
878{
879 if (on) {
880 if (!guest_cursor)
881 sdl_show_cursor();
3ab193e6 882 if (gui_grab || qemu_input_is_absolute() || absolute_enabled) {
d34cab9f 883 SDL_SetCursor(guest_sprite);
3ab193e6 884 if (!qemu_input_is_absolute() && !absolute_enabled) {
08a2d4c4 885 SDL_WarpMouse(x, y);
3ab193e6 886 }
d34cab9f
TS
887 }
888 } else if (gui_grab)
889 sdl_hide_cursor();
890 guest_cursor = on;
891 guest_x = x, guest_y = y;
892}
893
7c20b4a3 894static void sdl_mouse_define(DisplayChangeListener *dcl,
7c20b4a3 895 QEMUCursor *c)
d34cab9f 896{
fbe6d7a4
GH
897 uint8_t *image, *mask;
898 int bpl;
899
d34cab9f
TS
900 if (guest_sprite)
901 SDL_FreeCursor(guest_sprite);
902
fbe6d7a4 903 bpl = cursor_get_mono_bpl(c);
7267c094
AL
904 image = g_malloc0(bpl * c->height);
905 mask = g_malloc0(bpl * c->height);
fbe6d7a4
GH
906 cursor_get_mono_image(c, 0x000000, image);
907 cursor_get_mono_mask(c, 0, mask);
908 guest_sprite = SDL_CreateCursor(image, mask, c->width, c->height,
909 c->hot_x, c->hot_y);
7267c094
AL
910 g_free(image);
911 g_free(mask);
d34cab9f
TS
912
913 if (guest_cursor &&
3ab193e6 914 (gui_grab || qemu_input_is_absolute() || absolute_enabled))
d34cab9f
TS
915 SDL_SetCursor(guest_sprite);
916}
917
28695489 918static void sdl_cleanup(void)
898712a8 919{
d34cab9f
TS
920 if (guest_sprite)
921 SDL_FreeCursor(guest_sprite);
d8ee7665 922 SDL_QuitSubSystem(SDL_INIT_VIDEO);
898712a8
FB
923}
924
7c20b4a3 925static const DisplayChangeListenerOps dcl_ops = {
7dd93291
BH
926 .dpy_name = "sdl",
927 .dpy_gfx_update = sdl_update,
928 .dpy_gfx_switch = sdl_switch,
929 .dpy_gfx_check_format = sdl_check_format,
930 .dpy_refresh = sdl_refresh,
931 .dpy_mouse_set = sdl_mouse_warp,
932 .dpy_cursor_define = sdl_mouse_define,
7c20b4a3
GH
933};
934
0b71a5d5
GH
935void sdl_display_early_init(int opengl)
936{
937 if (opengl == 1 /* on */) {
938 fprintf(stderr,
939 "SDL1 display code has no opengl support.\n"
940 "Please recompile qemu with SDL2, using\n"
941 "./configure --enable-sdl --with-sdlabi=2.0\n");
942 }
943}
944
43523e93 945void sdl_display_init(DisplayState *ds, int full_screen, int no_frame)
0f0b7264
FB
946{
947 int flags;
09b26c5e 948 uint8_t data = 0;
7b5d76da 949 const SDL_VideoInfo *vi;
f29b3431 950 SDL_SysWMinfo info;
09cec717 951 char *filename;
0f0b7264 952
3d11d0eb
FB
953#if defined(__APPLE__)
954 /* always use generic keymaps */
955 if (!keyboard_layout)
956 keyboard_layout = "en-us";
957#endif
958 if(keyboard_layout) {
0483755a 959 kbd_layout = init_keyboard_layout(name2keysym, keyboard_layout);
3d11d0eb
FB
960 if (!kbd_layout)
961 exit(1);
962 }
963
43523e93
TS
964 if (no_frame)
965 gui_noframe = 1;
966
111f8ec9
JK
967 if (!full_screen) {
968 setenv("SDL_VIDEO_ALLOW_SCREENSAVER", "1", 0);
969 }
1de9756b
MT
970#ifdef __linux__
971 /* on Linux, SDL may use fbcon|directfb|svgalib when run without
972 * accessible $DISPLAY to open X11 window. This is often the case
973 * when qemu is run using sudo. But in this case, and when actually
974 * run in X11 environment, SDL fights with X11 for the video card,
975 * making current display unavailable, often until reboot.
976 * So make x11 the default SDL video driver if this variable is unset.
977 * This is a bit hackish but saves us from bigger problem.
978 * Maybe it's a good idea to fix this in SDL instead.
979 */
980 setenv("SDL_VIDEODRIVER", "x11", 0);
981#endif
111f8ec9 982
4e79bcbb
SW
983 /* Enable normal up/down events for Caps-Lock and Num-Lock keys.
984 * This requires SDL >= 1.2.14. */
985 setenv("SDL_DISABLE_LOCK_KEYS", "1", 1);
986
0f0b7264
FB
987 flags = SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE;
988 if (SDL_Init (flags)) {
3caf2562 989 fprintf(stderr, "Could not initialize SDL(%s) - exiting\n",
990 SDL_GetError());
0f0b7264
FB
991 exit(1);
992 }
7b5d76da 993 vi = SDL_GetVideoInfo();
c18a2c36 994 host_format = *(vi->vfmt);
0ae04d73 995
09cec717
SW
996 /* Load a 32x32x4 image. White pixels are transparent. */
997 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, "qemu-icon.bmp");
998 if (filename) {
999 SDL_Surface *image = SDL_LoadBMP(filename);
1000 if (image) {
1001 uint32_t colorkey = SDL_MapRGB(image->format, 255, 255, 255);
1002 SDL_SetColorKey(image, SDL_SRCCOLORKEY, colorkey);
1003 SDL_WM_SetIcon(image, NULL);
1004 }
7267c094 1005 g_free(filename);
09cec717
SW
1006 }
1007
110defd7
JK
1008 if (full_screen) {
1009 gui_fullscreen = 1;
1010 sdl_grab_start();
1011 }
1012
fedf0d35 1013 dcl = g_new0(DisplayChangeListener, 1);
7c20b4a3 1014 dcl->ops = &dcl_ops;
5209089f 1015 register_displaychangelistener(dcl);
0f0b7264 1016
3af12c86
AL
1017 mouse_mode_notifier.notify = sdl_mouse_mode_change;
1018 qemu_add_mouse_mode_change_notifier(&mouse_mode_notifier);
1019
8a7ddc38 1020 sdl_update_caption();
0f0b7264
FB
1021 SDL_EnableKeyRepeat(250, 50);
1022 gui_grab = 0;
898712a8 1023
09b26c5e
FB
1024 sdl_cursor_hidden = SDL_CreateCursor(&data, &data, 8, 1, 0, 0);
1025 sdl_cursor_normal = SDL_GetCursor();
1026
f29b3431
ST
1027 memset(&info, 0, sizeof(info));
1028 SDL_VERSION(&info.version);
1029 if (SDL_GetWMInfo(&info)) {
1030 int i;
1031 for (i = 0; ; i++) {
1032 /* All consoles share the same window */
1033 QemuConsole *con = qemu_console_lookup_by_index(i);
1034 if (con) {
1035#if defined(SDL_VIDEO_DRIVER_X11)
1036 qemu_console_set_window_id(con, info.info.x11.wmwindow);
1037#elif defined(SDL_VIDEO_DRIVER_NANOX) || \
1038 defined(SDL_VIDEO_DRIVER_WINDIB) || defined(SDL_VIDEO_DRIVER_DDRAW) || \
1039 defined(SDL_VIDEO_DRIVER_GAPI) || \
1040 defined(SDL_VIDEO_DRIVER_RISCOS)
1041 qemu_console_set_window_id(con, (int) (uintptr_t) info.window);
1042#else
1043 qemu_console_set_window_id(con, info.data);
1044#endif
1045 } else {
1046 break;
1047 }
1048 }
1049 }
1050
28695489 1051 atexit(sdl_cleanup);
0f0b7264 1052}