2 * QEMU SDL display driver
4 * Copyright (c) 2003 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 /* Avoid compiler warning because macro is redefined in SDL_syswm.h. */
26 #undef WIN32_LEAN_AND_MEAN
30 #if SDL_MAJOR_VERSION == 1
31 #include <SDL_syswm.h>
33 #include "qemu-common.h"
34 #include "ui/console.h"
36 #include "sysemu/sysemu.h"
40 static DisplayChangeListener
*dcl
;
41 static DisplaySurface
*surface
;
42 static SDL_Surface
*real_screen
;
43 static SDL_Surface
*guest_screen
= NULL
;
44 static int gui_grab
; /* if true, all keyboard/mouse events are grabbed */
45 static int last_vm_running
;
46 static bool gui_saved_scaling
;
47 static int gui_saved_width
;
48 static int gui_saved_height
;
49 static int gui_saved_grab
;
50 static int gui_fullscreen
;
51 static int gui_noframe
;
52 static int gui_key_modifier_pressed
;
53 static int gui_keysym
;
54 static int gui_grab_code
= KMOD_LALT
| KMOD_LCTRL
;
55 static uint8_t modifiers_state
[256];
56 static SDL_Cursor
*sdl_cursor_normal
;
57 static SDL_Cursor
*sdl_cursor_hidden
;
58 static int absolute_enabled
= 0;
59 static int guest_cursor
= 0;
60 static int guest_x
, guest_y
;
61 static SDL_Cursor
*guest_sprite
= NULL
;
62 static SDL_PixelFormat host_format
;
63 static int scaling_active
= 0;
64 static Notifier mouse_mode_notifier
;
66 static void sdl_update(DisplayChangeListener
*dcl
,
67 int x
, int y
, int w
, int h
)
69 // printf("updating x=%d y=%d w=%d h=%d\n", x, y, w, h);
77 if (!scaling_active
) {
78 SDL_BlitSurface(guest_screen
, &rec
, real_screen
, &rec
);
80 if (sdl_zoom_blit(guest_screen
, real_screen
, SMOOTHING_ON
, &rec
) < 0) {
81 fprintf(stderr
, "Zoom blit failed\n");
86 SDL_UpdateRect(real_screen
, rec
.x
, rec
.y
, rec
.w
, rec
.h
);
89 static void do_sdl_resize(int width
, int height
, int bpp
)
92 SDL_Surface
*tmp_screen
;
94 // printf("resizing to %d %d\n", w, h);
96 flags
= SDL_HWSURFACE
| SDL_ASYNCBLIT
| SDL_HWACCEL
;
98 flags
|= SDL_FULLSCREEN
;
100 flags
|= SDL_RESIZABLE
;
103 flags
|= SDL_NOFRAME
;
105 tmp_screen
= SDL_SetVideoMode(width
, height
, bpp
, flags
);
108 fprintf(stderr
, "Could not open SDL display (%dx%dx%d): %s\n",
109 width
, height
, bpp
, SDL_GetError());
114 * Revert to the previous video mode if the change of resizing or
118 fprintf(stderr
, "Failed to set SDL display (%dx%dx%d): %s\n",
119 width
, height
, bpp
, SDL_GetError());
124 real_screen
= tmp_screen
;
127 static void sdl_switch(DisplayChangeListener
*dcl
,
128 DisplaySurface
*new_surface
)
130 PixelFormat pf
= qemu_pixelformat_from_pixman(new_surface
->format
);
132 /* temporary hack: allows to call sdl_switch to handle scaling changes */
134 surface
= new_surface
;
137 if (!scaling_active
) {
138 do_sdl_resize(surface_width(surface
), surface_height(surface
), 0);
139 } else if (real_screen
->format
->BitsPerPixel
!=
140 surface_bits_per_pixel(surface
)) {
141 do_sdl_resize(real_screen
->w
, real_screen
->h
,
142 surface_bits_per_pixel(surface
));
145 if (guest_screen
!= NULL
) {
146 SDL_FreeSurface(guest_screen
);
148 guest_screen
= SDL_CreateRGBSurfaceFrom
149 (surface_data(surface
),
150 surface_width(surface
), surface_height(surface
),
151 surface_bits_per_pixel(surface
), surface_stride(surface
),
156 /* generic keyboard conversion */
158 #include "sdl_keysym.h"
160 static kbd_layout_t
*kbd_layout
= NULL
;
162 static uint8_t sdl_keyevent_to_keycode_generic(const SDL_KeyboardEvent
*ev
)
165 /* workaround for X11+SDL bug with AltGR */
166 keysym
= ev
->keysym
.sym
;
167 if (keysym
== 0 && ev
->keysym
.scancode
== 113)
169 /* For Japanese key '\' and '|' */
170 if (keysym
== 92 && ev
->keysym
.scancode
== 133) {
173 return keysym2scancode(kbd_layout
, keysym
) & SCANCODE_KEYMASK
;
176 /* specific keyboard conversions from scan codes */
180 static uint8_t sdl_keyevent_to_keycode(const SDL_KeyboardEvent
*ev
)
182 return ev
->keysym
.scancode
;
187 #if defined(SDL_VIDEO_DRIVER_X11)
188 #include <X11/XKBlib.h>
190 static int check_for_evdev(void)
193 XkbDescPtr desc
= NULL
;
195 char *keycodes
= NULL
;
197 SDL_VERSION(&info
.version
);
198 if (!SDL_GetWMInfo(&info
)) {
201 desc
= XkbGetKeyboard(info
.info
.x11
.display
,
202 XkbGBN_AllComponentsMask
,
204 if (desc
&& desc
->names
) {
205 keycodes
= XGetAtomName(info
.info
.x11
.display
, desc
->names
->keycodes
);
206 if (keycodes
== NULL
) {
207 fprintf(stderr
, "could not lookup keycode name\n");
208 } else if (strstart(keycodes
, "evdev", NULL
)) {
210 } else if (!strstart(keycodes
, "xfree86", NULL
)) {
211 fprintf(stderr
, "unknown keycodes `%s', please report to "
212 "qemu-devel@nongnu.org\n", keycodes
);
217 XkbFreeKeyboard(desc
, XkbGBN_AllComponentsMask
, True
);
225 static int check_for_evdev(void)
231 static uint8_t sdl_keyevent_to_keycode(const SDL_KeyboardEvent
*ev
)
234 static int has_evdev
= -1;
237 has_evdev
= check_for_evdev();
239 keycode
= ev
->keysym
.scancode
;
243 } else if (keycode
< 97) {
244 keycode
-= 8; /* just an offset */
245 } else if (keycode
< 158) {
246 /* use conversion table */
248 keycode
= translate_evdev_keycode(keycode
- 97);
250 keycode
= translate_xfree86_keycode(keycode
- 97);
251 } else if (keycode
== 208) { /* Hiragana_Katakana */
253 } else if (keycode
== 211) { /* backslash */
263 static void reset_keys(void)
266 for(i
= 0; i
< 256; i
++) {
267 if (modifiers_state
[i
]) {
268 qemu_input_event_send_key_number(dcl
->con
, i
, false);
269 modifiers_state
[i
] = 0;
274 static void sdl_process_key(SDL_KeyboardEvent
*ev
)
278 if (ev
->keysym
.sym
== SDLK_PAUSE
) {
280 qemu_input_event_send_key_qcode(dcl
->con
, Q_KEY_CODE_PAUSE
,
281 ev
->type
== SDL_KEYDOWN
);
286 keycode
= sdl_keyevent_to_keycode_generic(ev
);
288 keycode
= sdl_keyevent_to_keycode(ev
);
293 /* sent when leaving window: reset the modifiers state */
296 case 0x2a: /* Left Shift */
297 case 0x36: /* Right Shift */
298 case 0x1d: /* Left CTRL */
299 case 0x9d: /* Right CTRL */
300 case 0x38: /* Left ALT */
301 case 0xb8: /* Right ALT */
302 if (ev
->type
== SDL_KEYUP
)
303 modifiers_state
[keycode
] = 0;
305 modifiers_state
[keycode
] = 1;
307 #define QEMU_SDL_VERSION ((SDL_MAJOR_VERSION << 8) + SDL_MINOR_VERSION)
308 #if QEMU_SDL_VERSION < 0x102 || QEMU_SDL_VERSION == 0x102 && SDL_PATCHLEVEL < 14
309 /* SDL versions before 1.2.14 don't support key up for caps/num lock. */
310 case 0x45: /* num lock */
311 case 0x3a: /* caps lock */
312 /* SDL does not send the key up event, so we generate it */
313 qemu_input_event_send_key_number(dcl
->con
, keycode
, true);
314 qemu_input_event_send_key_number(dcl
->con
, keycode
, false);
319 /* now send the key code */
320 qemu_input_event_send_key_number(dcl
->con
, keycode
,
321 ev
->type
== SDL_KEYDOWN
);
324 static void sdl_update_caption(void)
326 char win_title
[1024];
327 char icon_title
[1024];
328 const char *status
= "";
330 if (!runstate_is_running())
331 status
= " [Stopped]";
334 status
= " - Press Ctrl-Alt-Shift to exit mouse grab";
336 status
= " - Press Right-Ctrl to exit mouse grab";
338 status
= " - Press Ctrl-Alt to exit mouse grab";
342 snprintf(win_title
, sizeof(win_title
), "QEMU (%s)%s", qemu_name
, status
);
343 snprintf(icon_title
, sizeof(icon_title
), "QEMU (%s)", qemu_name
);
345 snprintf(win_title
, sizeof(win_title
), "QEMU%s", status
);
346 snprintf(icon_title
, sizeof(icon_title
), "QEMU");
349 SDL_WM_SetCaption(win_title
, icon_title
);
352 static void sdl_hide_cursor(void)
357 if (qemu_input_is_absolute()) {
359 SDL_SetCursor(sdl_cursor_hidden
);
365 static void sdl_show_cursor(void)
370 if (!qemu_input_is_absolute() || !qemu_console_is_graphic(NULL
)) {
373 (gui_grab
|| qemu_input_is_absolute() || absolute_enabled
))
374 SDL_SetCursor(guest_sprite
);
376 SDL_SetCursor(sdl_cursor_normal
);
380 static void sdl_grab_start(void)
383 * If the application is not active, do not try to enter grab state. This
384 * prevents 'SDL_WM_GrabInput(SDL_GRAB_ON)' from blocking all the
385 * application (SDL bug).
387 if (!(SDL_GetAppState() & SDL_APPINPUTFOCUS
)) {
391 SDL_SetCursor(guest_sprite
);
392 if (!qemu_input_is_absolute() && !absolute_enabled
) {
393 SDL_WarpMouse(guest_x
, guest_y
);
397 SDL_WM_GrabInput(SDL_GRAB_ON
);
399 sdl_update_caption();
402 static void sdl_grab_end(void)
404 SDL_WM_GrabInput(SDL_GRAB_OFF
);
407 sdl_update_caption();
410 static void absolute_mouse_grab(void)
412 int mouse_x
, mouse_y
;
414 SDL_GetMouseState(&mouse_x
, &mouse_y
);
415 if (mouse_x
> 0 && mouse_x
< real_screen
->w
- 1 &&
416 mouse_y
> 0 && mouse_y
< real_screen
->h
- 1) {
421 static void sdl_mouse_mode_change(Notifier
*notify
, void *data
)
423 if (qemu_input_is_absolute()) {
424 if (!absolute_enabled
) {
425 absolute_enabled
= 1;
426 if (qemu_console_is_graphic(NULL
)) {
427 absolute_mouse_grab();
430 } else if (absolute_enabled
) {
431 if (!gui_fullscreen
) {
434 absolute_enabled
= 0;
438 static void sdl_send_mouse_event(int dx
, int dy
, int x
, int y
, int state
)
440 static uint32_t bmap
[INPUT_BUTTON_MAX
] = {
441 [INPUT_BUTTON_LEFT
] = SDL_BUTTON(SDL_BUTTON_LEFT
),
442 [INPUT_BUTTON_MIDDLE
] = SDL_BUTTON(SDL_BUTTON_MIDDLE
),
443 [INPUT_BUTTON_RIGHT
] = SDL_BUTTON(SDL_BUTTON_RIGHT
),
444 [INPUT_BUTTON_WHEEL_UP
] = SDL_BUTTON(SDL_BUTTON_WHEELUP
),
445 [INPUT_BUTTON_WHEEL_DOWN
] = SDL_BUTTON(SDL_BUTTON_WHEELDOWN
),
447 static uint32_t prev_state
;
449 if (prev_state
!= state
) {
450 qemu_input_update_buttons(dcl
->con
, bmap
, prev_state
, state
);
454 if (qemu_input_is_absolute()) {
455 qemu_input_queue_abs(dcl
->con
, INPUT_AXIS_X
, x
,
457 qemu_input_queue_abs(dcl
->con
, INPUT_AXIS_Y
, y
,
468 qemu_input_queue_rel(dcl
->con
, INPUT_AXIS_X
, dx
);
469 qemu_input_queue_rel(dcl
->con
, INPUT_AXIS_Y
, dy
);
471 qemu_input_event_sync();
474 static void sdl_scale(int width
, int height
)
476 int bpp
= real_screen
->format
->BitsPerPixel
;
478 if (bpp
!= 16 && bpp
!= 32) {
481 do_sdl_resize(width
, height
, bpp
);
485 static void toggle_full_screen(void)
487 int width
= surface_width(surface
);
488 int height
= surface_height(surface
);
489 int bpp
= surface_bits_per_pixel(surface
);
491 gui_fullscreen
= !gui_fullscreen
;
492 if (gui_fullscreen
) {
493 gui_saved_width
= real_screen
->w
;
494 gui_saved_height
= real_screen
->h
;
495 gui_saved_scaling
= scaling_active
;
497 do_sdl_resize(width
, height
, bpp
);
500 gui_saved_grab
= gui_grab
;
503 if (gui_saved_scaling
) {
504 sdl_scale(gui_saved_width
, gui_saved_height
);
506 do_sdl_resize(width
, height
, 0);
508 if (!gui_saved_grab
|| !qemu_console_is_graphic(NULL
)) {
512 graphic_hw_invalidate(NULL
);
513 graphic_hw_update(NULL
);
516 static void handle_keydown(SDL_Event
*ev
)
522 mod_state
= (SDL_GetModState() & (gui_grab_code
| KMOD_LSHIFT
)) ==
523 (gui_grab_code
| KMOD_LSHIFT
);
524 } else if (ctrl_grab
) {
525 mod_state
= (SDL_GetModState() & KMOD_RCTRL
) == KMOD_RCTRL
;
527 mod_state
= (SDL_GetModState() & gui_grab_code
) == gui_grab_code
;
529 gui_key_modifier_pressed
= mod_state
;
531 if (gui_key_modifier_pressed
) {
532 keycode
= sdl_keyevent_to_keycode(&ev
->key
);
534 case 0x21: /* 'f' key on US keyboard */
535 toggle_full_screen();
538 case 0x16: /* 'u' key on US keyboard */
539 if (scaling_active
) {
541 sdl_switch(dcl
, NULL
);
542 graphic_hw_invalidate(NULL
);
543 graphic_hw_update(NULL
);
547 case 0x02 ... 0x0a: /* '1' to '9' keys */
548 /* Reset the modifiers sent to the current console */
550 console_select(keycode
- 0x02);
552 if (gui_fullscreen
) {
555 if (!qemu_console_is_graphic(NULL
)) {
556 /* release grab if going to a text console */
559 } else if (absolute_enabled
) {
562 } else if (absolute_enabled
) {
564 absolute_mouse_grab();
569 if (!gui_fullscreen
) {
570 int width
= MAX(real_screen
->w
+ (keycode
== 0x1b ? 50 : -50),
572 int height
= (surface_height(surface
) * width
) /
573 surface_width(surface
);
575 sdl_scale(width
, height
);
576 graphic_hw_invalidate(NULL
);
577 graphic_hw_update(NULL
);
583 } else if (!qemu_console_is_graphic(NULL
)) {
586 if (ev
->key
.keysym
.mod
& (KMOD_LCTRL
| KMOD_RCTRL
)) {
587 switch (ev
->key
.keysym
.sym
) {
589 keysym
= QEMU_KEY_CTRL_UP
;
592 keysym
= QEMU_KEY_CTRL_DOWN
;
595 keysym
= QEMU_KEY_CTRL_LEFT
;
598 keysym
= QEMU_KEY_CTRL_RIGHT
;
601 keysym
= QEMU_KEY_CTRL_HOME
;
604 keysym
= QEMU_KEY_CTRL_END
;
607 keysym
= QEMU_KEY_CTRL_PAGEUP
;
610 keysym
= QEMU_KEY_CTRL_PAGEDOWN
;
616 switch (ev
->key
.keysym
.sym
) {
618 keysym
= QEMU_KEY_UP
;
621 keysym
= QEMU_KEY_DOWN
;
624 keysym
= QEMU_KEY_LEFT
;
627 keysym
= QEMU_KEY_RIGHT
;
630 keysym
= QEMU_KEY_HOME
;
633 keysym
= QEMU_KEY_END
;
636 keysym
= QEMU_KEY_PAGEUP
;
639 keysym
= QEMU_KEY_PAGEDOWN
;
642 keysym
= QEMU_KEY_BACKSPACE
;
645 keysym
= QEMU_KEY_DELETE
;
652 kbd_put_keysym(keysym
);
653 } else if (ev
->key
.keysym
.unicode
!= 0) {
654 kbd_put_keysym(ev
->key
.keysym
.unicode
);
657 if (qemu_console_is_graphic(NULL
) && !gui_keysym
) {
658 sdl_process_key(&ev
->key
);
662 static void handle_keyup(SDL_Event
*ev
)
667 mod_state
= (ev
->key
.keysym
.mod
& gui_grab_code
);
669 mod_state
= (ev
->key
.keysym
.mod
& (gui_grab_code
| KMOD_LSHIFT
));
671 if (!mod_state
&& gui_key_modifier_pressed
) {
672 gui_key_modifier_pressed
= 0;
673 if (gui_keysym
== 0) {
674 /* exit/enter grab if pressing Ctrl-Alt */
676 if (qemu_console_is_graphic(NULL
)) {
679 } else if (!gui_fullscreen
) {
682 /* SDL does not send back all the modifiers key, so we must
689 if (qemu_console_is_graphic(NULL
) && !gui_keysym
) {
690 sdl_process_key(&ev
->key
);
694 static void handle_mousemotion(SDL_Event
*ev
)
698 if (qemu_console_is_graphic(NULL
) &&
699 (qemu_input_is_absolute() || absolute_enabled
)) {
700 max_x
= real_screen
->w
- 1;
701 max_y
= real_screen
->h
- 1;
702 if (gui_grab
&& (ev
->motion
.x
== 0 || ev
->motion
.y
== 0 ||
703 ev
->motion
.x
== max_x
|| ev
->motion
.y
== max_y
)) {
707 (ev
->motion
.x
> 0 && ev
->motion
.x
< max_x
&&
708 ev
->motion
.y
> 0 && ev
->motion
.y
< max_y
)) {
712 if (gui_grab
|| qemu_input_is_absolute() || absolute_enabled
) {
713 sdl_send_mouse_event(ev
->motion
.xrel
, ev
->motion
.yrel
,
714 ev
->motion
.x
, ev
->motion
.y
, ev
->motion
.state
);
718 static void handle_mousebutton(SDL_Event
*ev
)
720 int buttonstate
= SDL_GetMouseState(NULL
, NULL
);
721 SDL_MouseButtonEvent
*bev
;
723 if (!qemu_console_is_graphic(NULL
)) {
728 if (!gui_grab
&& !qemu_input_is_absolute()) {
729 if (ev
->type
== SDL_MOUSEBUTTONUP
&& bev
->button
== SDL_BUTTON_LEFT
) {
730 /* start grabbing all events */
734 if (ev
->type
== SDL_MOUSEBUTTONDOWN
) {
735 buttonstate
|= SDL_BUTTON(bev
->button
);
737 buttonstate
&= ~SDL_BUTTON(bev
->button
);
739 sdl_send_mouse_event(0, 0, bev
->x
, bev
->y
, buttonstate
);
743 static void handle_activation(SDL_Event
*ev
)
746 /* Disable grab if the window no longer has the focus
747 * (Windows-only workaround) */
748 if (gui_grab
&& ev
->active
.state
== SDL_APPINPUTFOCUS
&&
749 !ev
->active
.gain
&& !gui_fullscreen
) {
753 if (!gui_grab
&& ev
->active
.gain
&& qemu_console_is_graphic(NULL
) &&
754 (qemu_input_is_absolute() || absolute_enabled
)) {
755 absolute_mouse_grab();
757 if (ev
->active
.state
& SDL_APPACTIVE
) {
758 if (ev
->active
.gain
) {
759 /* Back to default interval */
760 update_displaychangelistener(dcl
, GUI_REFRESH_INTERVAL_DEFAULT
);
762 /* Sleeping interval. Not using the long default here as
763 * sdl_refresh does not only update the guest screen, but
764 * also checks for gui events. */
765 update_displaychangelistener(dcl
, 500);
770 static void sdl_refresh(DisplayChangeListener
*dcl
)
772 SDL_Event ev1
, *ev
= &ev1
;
774 if (last_vm_running
!= runstate_is_running()) {
775 last_vm_running
= runstate_is_running();
776 sdl_update_caption();
779 graphic_hw_update(NULL
);
780 SDL_EnableUNICODE(!qemu_console_is_graphic(NULL
));
782 while (SDL_PollEvent(ev
)) {
784 case SDL_VIDEOEXPOSE
:
785 sdl_update(dcl
, 0, 0, real_screen
->w
, real_screen
->h
);
796 qemu_system_shutdown_request();
799 case SDL_MOUSEMOTION
:
800 handle_mousemotion(ev
);
802 case SDL_MOUSEBUTTONDOWN
:
803 case SDL_MOUSEBUTTONUP
:
804 handle_mousebutton(ev
);
806 case SDL_ACTIVEEVENT
:
807 handle_activation(ev
);
809 case SDL_VIDEORESIZE
:
810 sdl_scale(ev
->resize
.w
, ev
->resize
.h
);
811 graphic_hw_invalidate(NULL
);
812 graphic_hw_update(NULL
);
820 static void sdl_mouse_warp(DisplayChangeListener
*dcl
,
821 int x
, int y
, int on
)
826 if (gui_grab
|| qemu_input_is_absolute() || absolute_enabled
) {
827 SDL_SetCursor(guest_sprite
);
828 if (!qemu_input_is_absolute() && !absolute_enabled
) {
835 guest_x
= x
, guest_y
= y
;
838 static void sdl_mouse_define(DisplayChangeListener
*dcl
,
841 uint8_t *image
, *mask
;
845 SDL_FreeCursor(guest_sprite
);
847 bpl
= cursor_get_mono_bpl(c
);
848 image
= g_malloc0(bpl
* c
->height
);
849 mask
= g_malloc0(bpl
* c
->height
);
850 cursor_get_mono_image(c
, 0x000000, image
);
851 cursor_get_mono_mask(c
, 0, mask
);
852 guest_sprite
= SDL_CreateCursor(image
, mask
, c
->width
, c
->height
,
858 (gui_grab
|| qemu_input_is_absolute() || absolute_enabled
))
859 SDL_SetCursor(guest_sprite
);
862 static void sdl_cleanup(void)
865 SDL_FreeCursor(guest_sprite
);
866 SDL_QuitSubSystem(SDL_INIT_VIDEO
);
869 static const DisplayChangeListenerOps dcl_ops
= {
871 .dpy_gfx_update
= sdl_update
,
872 .dpy_gfx_switch
= sdl_switch
,
873 .dpy_refresh
= sdl_refresh
,
874 .dpy_mouse_set
= sdl_mouse_warp
,
875 .dpy_cursor_define
= sdl_mouse_define
,
878 void sdl_display_init(DisplayState
*ds
, int full_screen
, int no_frame
)
882 const SDL_VideoInfo
*vi
;
885 #if defined(__APPLE__)
886 /* always use generic keymaps */
887 if (!keyboard_layout
)
888 keyboard_layout
= "en-us";
890 if(keyboard_layout
) {
891 kbd_layout
= init_keyboard_layout(name2keysym
, keyboard_layout
);
900 setenv("SDL_VIDEO_ALLOW_SCREENSAVER", "1", 0);
903 /* on Linux, SDL may use fbcon|directfb|svgalib when run without
904 * accessible $DISPLAY to open X11 window. This is often the case
905 * when qemu is run using sudo. But in this case, and when actually
906 * run in X11 environment, SDL fights with X11 for the video card,
907 * making current display unavailable, often until reboot.
908 * So make x11 the default SDL video driver if this variable is unset.
909 * This is a bit hackish but saves us from bigger problem.
910 * Maybe it's a good idea to fix this in SDL instead.
912 setenv("SDL_VIDEODRIVER", "x11", 0);
915 /* Enable normal up/down events for Caps-Lock and Num-Lock keys.
916 * This requires SDL >= 1.2.14. */
917 setenv("SDL_DISABLE_LOCK_KEYS", "1", 1);
919 flags
= SDL_INIT_VIDEO
| SDL_INIT_NOPARACHUTE
;
920 if (SDL_Init (flags
)) {
921 fprintf(stderr
, "Could not initialize SDL(%s) - exiting\n",
925 vi
= SDL_GetVideoInfo();
926 host_format
= *(vi
->vfmt
);
928 /* Load a 32x32x4 image. White pixels are transparent. */
929 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, "qemu-icon.bmp");
931 SDL_Surface
*image
= SDL_LoadBMP(filename
);
933 uint32_t colorkey
= SDL_MapRGB(image
->format
, 255, 255, 255);
934 SDL_SetColorKey(image
, SDL_SRCCOLORKEY
, colorkey
);
935 SDL_WM_SetIcon(image
, NULL
);
945 dcl
= g_malloc0(sizeof(DisplayChangeListener
));
947 register_displaychangelistener(dcl
);
949 mouse_mode_notifier
.notify
= sdl_mouse_mode_change
;
950 qemu_add_mouse_mode_change_notifier(&mouse_mode_notifier
);
952 sdl_update_caption();
953 SDL_EnableKeyRepeat(250, 50);
956 sdl_cursor_hidden
= SDL_CreateCursor(&data
, &data
, 8, 1, 0, 0);
957 sdl_cursor_normal
= SDL_GetCursor();