| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QEMU SDL display driver | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |  * Copyright (c) 2003 Fabrice Bellard | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 
					
						
							|  |  |  |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-04-01 04:20:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Avoid compiler warning because macro is redefined in SDL_syswm.h. */ | 
					
						
							|  |  |  | #undef WIN32_LEAN_AND_MEAN
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-29 17:49:51 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | #include <SDL.h>
 | 
					
						
							| 
									
										
										
										
											2009-03-08 15:04:07 +00:00
										 |  |  | #include <SDL_syswm.h>
 | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-17 10:26:50 +02:00
										 |  |  | #include "qapi/error.h"
 | 
					
						
							| 
									
										
										
										
											2009-03-07 15:32:56 +00:00
										 |  |  | #include "qemu-common.h"
 | 
					
						
							| 
									
										
										
										
											2016-03-20 19:16:19 +02:00
										 |  |  | #include "qemu/cutils.h"
 | 
					
						
							| 
									
										
										
										
											2012-11-28 12:06:30 +01:00
										 |  |  | #include "ui/console.h"
 | 
					
						
							| 
									
										
										
										
											2013-11-28 12:17:35 +01:00
										 |  |  | #include "ui/input.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:04 +01:00
										 |  |  | #include "sysemu/sysemu.h"
 | 
					
						
							| 
									
										
										
										
											2018-01-17 16:47:15 +00:00
										 |  |  | #ifndef WIN32
 | 
					
						
							| 
									
										
										
										
											2009-03-07 15:32:56 +00:00
										 |  |  | #include "x_keymap.h"
 | 
					
						
							| 
									
										
										
										
											2018-01-17 16:47:15 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-06-24 11:58:25 +01:00
										 |  |  | #include "sdl_zoom.h"
 | 
					
						
							| 
									
										
										
										
											2009-03-07 15:32:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:14:11 +00:00
										 |  |  | static DisplayChangeListener *dcl; | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  | static DisplaySurface *surface; | 
					
						
							| 
									
										
										
										
											2018-02-02 12:10:15 +01:00
										 |  |  | static DisplayOptions *opts; | 
					
						
							| 
									
										
										
										
											2009-01-15 22:14:11 +00:00
										 |  |  | static SDL_Surface *real_screen; | 
					
						
							|  |  |  | static SDL_Surface *guest_screen = NULL; | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | static int gui_grab; /* if true, all keyboard/mouse events are grabbed */ | 
					
						
							| 
									
										
										
										
											2004-03-31 19:00:16 +00:00
										 |  |  | static int last_vm_running; | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:09 +02:00
										 |  |  | static bool gui_saved_scaling; | 
					
						
							|  |  |  | static int gui_saved_width; | 
					
						
							|  |  |  | static int gui_saved_height; | 
					
						
							| 
									
										
										
										
											2004-04-28 19:33:40 +00:00
										 |  |  | static int gui_saved_grab; | 
					
						
							|  |  |  | static int gui_fullscreen; | 
					
						
							|  |  |  | static int gui_key_modifier_pressed; | 
					
						
							|  |  |  | static int gui_keysym; | 
					
						
							| 
									
										
										
										
											2004-10-03 14:33:54 +00:00
										 |  |  | static int gui_grab_code = KMOD_LALT | KMOD_LCTRL; | 
					
						
							|  |  |  | static uint8_t modifiers_state[256]; | 
					
						
							| 
									
										
										
										
											2006-04-12 21:09:08 +00:00
										 |  |  | static SDL_Cursor *sdl_cursor_normal; | 
					
						
							|  |  |  | static SDL_Cursor *sdl_cursor_hidden; | 
					
						
							|  |  |  | static int absolute_enabled = 0; | 
					
						
							| 
									
										
										
										
											2007-04-02 01:10:46 +00:00
										 |  |  | static int guest_cursor = 0; | 
					
						
							|  |  |  | static int guest_x, guest_y; | 
					
						
							| 
									
										
										
										
											2009-07-31 21:16:51 +00:00
										 |  |  | static SDL_Cursor *guest_sprite = NULL; | 
					
						
							| 
									
										
										
										
											2009-06-24 11:58:25 +01:00
										 |  |  | static SDL_PixelFormat host_format; | 
					
						
							|  |  |  | static int scaling_active = 0; | 
					
						
							| 
									
										
										
										
											2010-03-10 09:42:58 -06:00
										 |  |  | static Notifier mouse_mode_notifier; | 
					
						
							| 
									
										
										
										
											2016-01-12 20:18:24 +01:00
										 |  |  | static int idle_counter; | 
					
						
							| 
									
										
										
										
											2018-01-17 16:47:15 +00:00
										 |  |  | static const guint16 *keycode_map; | 
					
						
							|  |  |  | static size_t keycode_maplen; | 
					
						
							| 
									
										
										
										
											2016-01-12 20:18:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define SDL_REFRESH_INTERVAL_BUSY 10
 | 
					
						
							|  |  |  | #define SDL_MAX_IDLE_COUNT (2 * GUI_REFRESH_INTERVAL_DEFAULT \
 | 
					
						
							|  |  |  |                             / SDL_REFRESH_INTERVAL_BUSY + 1) | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-07 15:10:12 +10:00
										 |  |  | #if 0
 | 
					
						
							|  |  |  | #define DEBUG_SDL
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-13 14:51:41 +01:00
										 |  |  | static void sdl_update(DisplayChangeListener *dcl, | 
					
						
							|  |  |  |                        int x, int y, int w, int h) | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-06-24 11:58:25 +01:00
										 |  |  |     SDL_Rect rec; | 
					
						
							|  |  |  |     rec.x = x; | 
					
						
							|  |  |  |     rec.y = y; | 
					
						
							|  |  |  |     rec.w = w; | 
					
						
							|  |  |  |     rec.h = h; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-07 15:10:12 +10:00
										 |  |  | #ifdef DEBUG_SDL
 | 
					
						
							|  |  |  |     printf("SDL: Updating x=%d y=%d w=%d h=%d (scaling: %d)\n", | 
					
						
							|  |  |  |            x, y, w, h, scaling_active); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-13 15:02:13 +00:00
										 |  |  |     if (guest_screen) { | 
					
						
							| 
									
										
										
										
											2009-06-24 11:58:25 +01:00
										 |  |  |         if (!scaling_active) { | 
					
						
							|  |  |  |             SDL_BlitSurface(guest_screen, &rec, real_screen, &rec); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             if (sdl_zoom_blit(guest_screen, real_screen, SMOOTHING_ON, &rec) < 0) { | 
					
						
							|  |  |  |                 fprintf(stderr, "Zoom blit failed\n"); | 
					
						
							|  |  |  |                 exit(1); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }  | 
					
						
							|  |  |  |     SDL_UpdateRect(real_screen, rec.x, rec.y, rec.w, rec.h); | 
					
						
							| 
									
										
										
										
											2009-01-15 22:14:11 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:18 +02:00
										 |  |  | static void do_sdl_resize(int width, int height, int bpp) | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     int flags; | 
					
						
							| 
									
										
										
										
											2013-09-04 17:07:16 +08:00
										 |  |  |     SDL_Surface *tmp_screen; | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-07 15:10:12 +10:00
										 |  |  | #ifdef DEBUG_SDL
 | 
					
						
							|  |  |  |     printf("SDL: Resizing to %dx%d bpp %d\n", width, height, bpp); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:05 +02:00
										 |  |  |     flags = SDL_HWSURFACE | SDL_ASYNCBLIT | SDL_HWACCEL; | 
					
						
							|  |  |  |     if (gui_fullscreen) { | 
					
						
							| 
									
										
										
										
											2004-04-28 19:33:40 +00:00
										 |  |  |         flags |= SDL_FULLSCREEN; | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:05 +02:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         flags |= SDL_RESIZABLE; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-15 16:48:55 +01:00
										 |  |  |     if (no_frame) { | 
					
						
							| 
									
										
										
										
											2007-02-18 18:19:32 +00:00
										 |  |  |         flags |= SDL_NOFRAME; | 
					
						
							| 
									
										
										
										
											2018-01-15 16:48:55 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-10-30 23:19:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-04 17:07:16 +08:00
										 |  |  |     tmp_screen = SDL_SetVideoMode(width, height, bpp, flags); | 
					
						
							| 
									
										
										
										
											2009-01-15 22:14:11 +00:00
										 |  |  |     if (!real_screen) { | 
					
						
							| 
									
										
										
										
											2013-09-04 17:07:16 +08:00
										 |  |  |         if (!tmp_screen) { | 
					
						
							|  |  |  |             fprintf(stderr, "Could not open SDL display (%dx%dx%d): %s\n", | 
					
						
							|  |  |  |                     width, height, bpp, SDL_GetError()); | 
					
						
							|  |  |  |             exit(1); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Revert to the previous video mode if the change of resizing or | 
					
						
							|  |  |  |          * resolution failed. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (!tmp_screen) { | 
					
						
							|  |  |  |             fprintf(stderr, "Failed to set SDL display (%dx%dx%d): %s\n", | 
					
						
							|  |  |  |                     width, height, bpp, SDL_GetError()); | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-09-04 17:07:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     real_screen = tmp_screen; | 
					
						
							| 
									
										
										
										
											2009-03-13 15:02:13 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-28 15:03:04 +01:00
										 |  |  | static void sdl_switch(DisplayChangeListener *dcl, | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |                        DisplaySurface *new_surface) | 
					
						
							| 
									
										
										
										
											2009-03-13 15:02:13 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-07-07 15:11:22 +10:00
										 |  |  |     PixelFormat pf; | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* temporary hack: allows to call sdl_switch to handle scaling changes */ | 
					
						
							|  |  |  |     if (new_surface) { | 
					
						
							|  |  |  |         surface = new_surface; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-07-07 15:11:22 +10:00
										 |  |  |     pf = qemu_pixelformat_from_pixman(surface->format); | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-26 07:46:20 +02:00
										 |  |  |     if (!scaling_active) { | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |         do_sdl_resize(surface_width(surface), surface_height(surface), 0); | 
					
						
							|  |  |  |     } else if (real_screen->format->BitsPerPixel != | 
					
						
							|  |  |  |                surface_bits_per_pixel(surface)) { | 
					
						
							| 
									
										
										
										
											2012-09-26 07:46:20 +02:00
										 |  |  |         do_sdl_resize(real_screen->w, real_screen->h, | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |                       surface_bits_per_pixel(surface)); | 
					
						
							| 
									
										
										
										
											2009-06-24 11:58:25 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (guest_screen != NULL) { | 
					
						
							|  |  |  |         SDL_FreeSurface(guest_screen); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-07-07 15:10:12 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef DEBUG_SDL
 | 
					
						
							|  |  |  |     printf("SDL: Creating surface with masks: %08x %08x %08x %08x\n", | 
					
						
							|  |  |  |            pf.rmask, pf.gmask, pf.bmask, pf.amask); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |     guest_screen = SDL_CreateRGBSurfaceFrom | 
					
						
							|  |  |  |         (surface_data(surface), | 
					
						
							|  |  |  |          surface_width(surface), surface_height(surface), | 
					
						
							|  |  |  |          surface_bits_per_pixel(surface), surface_stride(surface), | 
					
						
							| 
									
										
										
										
											2014-06-18 11:03:15 +02:00
										 |  |  |          pf.rmask, pf.gmask, | 
					
						
							|  |  |  |          pf.bmask, pf.amask); | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-07 17:24:42 +10:00
										 |  |  | static bool sdl_check_format(DisplayChangeListener *dcl, | 
					
						
							|  |  |  |                              pixman_format_code_t format) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * We let SDL convert for us a few more formats than, | 
					
						
							|  |  |  |      * the native ones. Thes are the ones I have tested. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     return (format == PIXMAN_x8r8g8b8 || | 
					
						
							|  |  |  |             format == PIXMAN_b8g8r8x8 || | 
					
						
							|  |  |  |             format == PIXMAN_x1r5g5b5 || | 
					
						
							|  |  |  |             format == PIXMAN_r5g6b5); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-12 16:56:30 +00:00
										 |  |  | /* generic keyboard conversion */ | 
					
						
							| 
									
										
										
										
											2004-07-05 22:13:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-12 16:56:30 +00:00
										 |  |  | #include "sdl_keysym.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  | static kbd_layout_t *kbd_layout = NULL; | 
					
						
							| 
									
										
										
										
											2004-12-12 16:56:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static uint8_t sdl_keyevent_to_keycode_generic(const SDL_KeyboardEvent *ev) | 
					
						
							| 
									
										
										
										
											2004-07-05 22:13:07 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-22 08:05:13 +01:00
										 |  |  |     bool shift = modifiers_state[0x2a] || modifiers_state[0x36]; | 
					
						
							|  |  |  |     bool altgr = modifiers_state[0xb8]; | 
					
						
							|  |  |  |     bool ctrl  = modifiers_state[0x1d] || modifiers_state[0x9d]; | 
					
						
							| 
									
										
										
										
											2004-12-12 16:56:30 +00:00
										 |  |  |     int keysym; | 
					
						
							|  |  |  |     /* workaround for X11+SDL bug with AltGR */ | 
					
						
							|  |  |  |     keysym = ev->keysym.sym; | 
					
						
							|  |  |  |     if (keysym == 0 && ev->keysym.scancode == 113) | 
					
						
							|  |  |  |         keysym = SDLK_MODE; | 
					
						
							| 
									
										
										
										
											2006-08-19 14:27:31 +00:00
										 |  |  |     /* For Japanese key '\' and '|' */ | 
					
						
							|  |  |  |     if (keysym == 92 && ev->keysym.scancode == 133) { | 
					
						
							|  |  |  |         keysym = 0xa5; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-22 08:05:13 +01:00
										 |  |  |     return keysym2scancode(kbd_layout, keysym, | 
					
						
							|  |  |  |                            shift, altgr, ctrl) & SCANCODE_KEYMASK; | 
					
						
							| 
									
										
										
										
											2004-07-05 22:13:07 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-17 16:47:15 +00:00
										 |  |  | static const guint16 *sdl_get_keymap(size_t *maplen) | 
					
						
							| 
									
										
										
										
											2004-07-05 22:13:07 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-01-17 16:47:15 +00:00
										 |  |  | #if defined(WIN32)
 | 
					
						
							|  |  |  |     *maplen = qemu_input_map_atset1_to_qcode_len; | 
					
						
							|  |  |  |     return qemu_input_map_atset1_to_qcode; | 
					
						
							| 
									
										
										
										
											2004-07-05 22:13:07 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2009-03-03 17:37:21 +00:00
										 |  |  | #if defined(SDL_VIDEO_DRIVER_X11)
 | 
					
						
							|  |  |  |     SDL_SysWMinfo info; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     SDL_VERSION(&info.version); | 
					
						
							| 
									
										
										
										
											2018-01-17 16:47:15 +00:00
										 |  |  |     if (SDL_GetWMInfo(&info) > 0) { | 
					
						
							|  |  |  |         return qemu_xkeymap_mapping_table( | 
					
						
							|  |  |  |             info.info.x11.display, maplen); | 
					
						
							| 
									
										
										
										
											2009-06-27 09:59:40 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-03 17:37:21 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-01-17 16:47:15 +00:00
										 |  |  |     g_warning("Unsupported SDL video driver / platform.\n" | 
					
						
							|  |  |  |               "Assuming Linux KBD scancodes, but probably wrong.\n" | 
					
						
							|  |  |  |               "Please report to qemu-devel@nongnu.org\n" | 
					
						
							|  |  |  |               "including the following information:\n" | 
					
						
							|  |  |  |               "\n" | 
					
						
							|  |  |  |               "  - Operating system\n" | 
					
						
							|  |  |  |               "  - SDL video driver\n"); | 
					
						
							|  |  |  |     *maplen = qemu_input_map_xorgkbd_to_qcode_len; | 
					
						
							|  |  |  |     return qemu_input_map_xorgkbd_to_qcode; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-03-03 17:37:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-05 22:13:07 +00:00
										 |  |  | static uint8_t sdl_keyevent_to_keycode(const SDL_KeyboardEvent *ev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-01 18:00:33 +00:00
										 |  |  |     int qcode; | 
					
						
							| 
									
										
										
										
											2018-01-17 16:47:15 +00:00
										 |  |  |     if (!keycode_map) { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ev->keysym.scancode > keycode_maplen) { | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2004-07-05 22:13:07 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-01 18:00:33 +00:00
										 |  |  |     qcode = keycode_map[ev->keysym.scancode]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (qcode > qemu_input_map_qcode_to_qnum_len) { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return qemu_input_map_qcode_to_qnum[qcode]; | 
					
						
							| 
									
										
										
										
											2018-01-17 16:47:15 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2004-07-05 22:13:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-03 14:33:54 +00:00
										 |  |  | static void reset_keys(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     for(i = 0; i < 256; i++) { | 
					
						
							|  |  |  |         if (modifiers_state[i]) { | 
					
						
							| 
									
										
										
										
											2013-11-28 12:17:35 +01:00
										 |  |  |             qemu_input_event_send_key_number(dcl->con, i, false); | 
					
						
							| 
									
										
										
										
											2004-10-03 14:33:54 +00:00
										 |  |  |             modifiers_state[i] = 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | static void sdl_process_key(SDL_KeyboardEvent *ev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-11-28 12:17:35 +01:00
										 |  |  |     int keycode; | 
					
						
							| 
									
										
										
										
											2004-06-04 13:15:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (ev->keysym.sym == SDLK_PAUSE) { | 
					
						
							|  |  |  |         /* specific case */ | 
					
						
							| 
									
										
										
										
											2013-11-28 12:17:35 +01:00
										 |  |  |         qemu_input_event_send_key_qcode(dcl->con, Q_KEY_CODE_PAUSE, | 
					
						
							|  |  |  |                                         ev->type == SDL_KEYDOWN); | 
					
						
							| 
									
										
										
										
											2004-06-04 13:15:06 +00:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-12 16:56:30 +00:00
										 |  |  |     if (kbd_layout) { | 
					
						
							|  |  |  |         keycode = sdl_keyevent_to_keycode_generic(ev); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         keycode = sdl_keyevent_to_keycode(ev); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-06-04 13:15:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     switch(keycode) { | 
					
						
							|  |  |  |     case 0x00: | 
					
						
							|  |  |  |         /* sent when leaving window: reset the modifiers state */ | 
					
						
							| 
									
										
										
										
											2004-10-03 14:33:54 +00:00
										 |  |  |         reset_keys(); | 
					
						
							| 
									
										
										
										
											2004-06-04 13:15:06 +00:00
										 |  |  |         return; | 
					
						
							|  |  |  |     case 0x2a:                          /* Left Shift */ | 
					
						
							|  |  |  |     case 0x36:                          /* Right Shift */ | 
					
						
							|  |  |  |     case 0x1d:                          /* Left CTRL */ | 
					
						
							|  |  |  |     case 0x9d:                          /* Right CTRL */ | 
					
						
							|  |  |  |     case 0x38:                          /* Left ALT */ | 
					
						
							|  |  |  |     case 0xb8:                         /* Right ALT */ | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |         if (ev->type == SDL_KEYUP) | 
					
						
							| 
									
										
										
										
											2004-06-04 13:15:06 +00:00
										 |  |  |             modifiers_state[keycode] = 0; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             modifiers_state[keycode] = 1; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2011-02-03 22:35:07 +01:00
										 |  |  | #define QEMU_SDL_VERSION ((SDL_MAJOR_VERSION << 8) + SDL_MINOR_VERSION)
 | 
					
						
							|  |  |  | #if QEMU_SDL_VERSION < 0x102 || QEMU_SDL_VERSION == 0x102 && SDL_PATCHLEVEL < 14
 | 
					
						
							|  |  |  |         /* SDL versions before 1.2.14 don't support key up for caps/num lock. */ | 
					
						
							| 
									
										
										
										
											2004-06-04 13:15:06 +00:00
										 |  |  |     case 0x45: /* num lock */ | 
					
						
							|  |  |  |     case 0x3a: /* caps lock */ | 
					
						
							|  |  |  |         /* SDL does not send the key up event, so we generate it */ | 
					
						
							| 
									
										
										
										
											2013-11-28 12:17:35 +01:00
										 |  |  |         qemu_input_event_send_key_number(dcl->con, keycode, true); | 
					
						
							|  |  |  |         qemu_input_event_send_key_number(dcl->con, keycode, false); | 
					
						
							| 
									
										
										
										
											2004-06-04 13:15:06 +00:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2011-02-03 22:35:07 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-06-04 13:15:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* now send the key code */ | 
					
						
							| 
									
										
										
										
											2013-11-28 12:17:35 +01:00
										 |  |  |     qemu_input_event_send_key_number(dcl->con, keycode, | 
					
						
							|  |  |  |                                      ev->type == SDL_KEYDOWN); | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-31 19:00:16 +00:00
										 |  |  | static void sdl_update_caption(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-24 12:13:56 +01:00
										 |  |  |     char win_title[1024]; | 
					
						
							|  |  |  |     char icon_title[1024]; | 
					
						
							| 
									
										
										
										
											2007-03-19 15:17:08 +00:00
										 |  |  |     const char *status = ""; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-29 15:36:43 -03:00
										 |  |  |     if (!runstate_is_running()) | 
					
						
							| 
									
										
										
										
											2007-03-19 15:17:08 +00:00
										 |  |  |         status = " [Stopped]"; | 
					
						
							| 
									
										
										
										
											2007-06-21 21:08:02 +00:00
										 |  |  |     else if (gui_grab) { | 
					
						
							| 
									
										
										
										
											2009-09-17 15:48:04 -05:00
										 |  |  |         if (alt_grab) | 
					
						
							| 
									
										
										
										
											2018-01-15 16:48:54 +01:00
										 |  |  |             status = " - Press Ctrl-Alt-Shift-G to exit mouse grab"; | 
					
						
							| 
									
										
										
										
											2009-09-17 15:48:04 -05:00
										 |  |  |         else if (ctrl_grab) | 
					
						
							| 
									
										
										
										
											2018-01-15 16:48:54 +01:00
										 |  |  |             status = " - Press Right-Ctrl-G to exit mouse grab"; | 
					
						
							| 
									
										
										
										
											2009-09-17 15:48:04 -05:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2018-01-15 16:48:54 +01:00
										 |  |  |             status = " - Press Ctrl-Alt-G to exit mouse grab"; | 
					
						
							| 
									
										
										
										
											2007-06-21 21:08:02 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-03-19 15:17:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 12:13:56 +01:00
										 |  |  |     if (qemu_name) { | 
					
						
							|  |  |  |         snprintf(win_title, sizeof(win_title), "QEMU (%s)%s", qemu_name, status); | 
					
						
							|  |  |  |         snprintf(icon_title, sizeof(icon_title), "QEMU (%s)", qemu_name); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         snprintf(win_title, sizeof(win_title), "QEMU%s", status); | 
					
						
							|  |  |  |         snprintf(icon_title, sizeof(icon_title), "QEMU"); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-03-19 15:17:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-24 12:13:56 +01:00
										 |  |  |     SDL_WM_SetCaption(win_title, icon_title); | 
					
						
							| 
									
										
										
										
											2004-03-31 19:00:16 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-12 21:09:08 +00:00
										 |  |  | static void sdl_hide_cursor(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-05-01 01:34:14 +00:00
										 |  |  |     if (!cursor_hide) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |     if (qemu_input_is_absolute()) { | 
					
						
							| 
									
										
										
										
											2006-06-13 10:49:12 +00:00
										 |  |  |         SDL_ShowCursor(1); | 
					
						
							|  |  |  |         SDL_SetCursor(sdl_cursor_hidden); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         SDL_ShowCursor(0); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-04-12 21:09:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void sdl_show_cursor(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-05-01 01:34:14 +00:00
										 |  |  |     if (!cursor_hide) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |     if (!qemu_input_is_absolute() || !qemu_console_is_graphic(NULL)) { | 
					
						
							| 
									
										
										
										
											2006-06-13 10:49:12 +00:00
										 |  |  |         SDL_ShowCursor(1); | 
					
						
							| 
									
										
										
										
											2007-04-02 01:10:46 +00:00
										 |  |  |         if (guest_cursor && | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |                 (gui_grab || qemu_input_is_absolute() || absolute_enabled)) | 
					
						
							| 
									
										
										
										
											2007-04-02 01:10:46 +00:00
										 |  |  |             SDL_SetCursor(guest_sprite); | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             SDL_SetCursor(sdl_cursor_normal); | 
					
						
							| 
									
										
										
										
											2006-04-12 21:09:08 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | static void sdl_grab_start(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-01-31 13:45:28 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * If the application is not active, do not try to enter grab state. This | 
					
						
							|  |  |  |      * prevents 'SDL_WM_GrabInput(SDL_GRAB_ON)' from blocking all the | 
					
						
							|  |  |  |      * application (SDL bug). | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (!(SDL_GetAppState() & SDL_APPINPUTFOCUS)) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-04-02 01:10:46 +00:00
										 |  |  |     if (guest_cursor) { | 
					
						
							|  |  |  |         SDL_SetCursor(guest_sprite); | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |         if (!qemu_input_is_absolute() && !absolute_enabled) { | 
					
						
							| 
									
										
										
										
											2009-01-29 23:29:52 +00:00
										 |  |  |             SDL_WarpMouse(guest_x, guest_y); | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-04-02 01:10:46 +00:00
										 |  |  |     } else | 
					
						
							|  |  |  |         sdl_hide_cursor(); | 
					
						
							| 
									
										
										
										
											2012-01-31 13:45:29 +01:00
										 |  |  |     SDL_WM_GrabInput(SDL_GRAB_ON); | 
					
						
							|  |  |  |     gui_grab = 1; | 
					
						
							|  |  |  |     sdl_update_caption(); | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void sdl_grab_end(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SDL_WM_GrabInput(SDL_GRAB_OFF); | 
					
						
							|  |  |  |     gui_grab = 0; | 
					
						
							| 
									
										
										
										
											2007-04-02 01:10:46 +00:00
										 |  |  |     sdl_show_cursor(); | 
					
						
							| 
									
										
										
										
											2004-03-31 19:00:16 +00:00
										 |  |  |     sdl_update_caption(); | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-31 13:45:27 +01:00
										 |  |  | static void absolute_mouse_grab(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int mouse_x, mouse_y; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-31 13:45:28 +01:00
										 |  |  |     SDL_GetMouseState(&mouse_x, &mouse_y); | 
					
						
							|  |  |  |     if (mouse_x > 0 && mouse_x < real_screen->w - 1 && | 
					
						
							|  |  |  |         mouse_y > 0 && mouse_y < real_screen->h - 1) { | 
					
						
							|  |  |  |         sdl_grab_start(); | 
					
						
							| 
									
										
										
										
											2012-01-31 13:45:27 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-20 14:06:26 +02:00
										 |  |  | static void sdl_mouse_mode_change(Notifier *notify, void *data) | 
					
						
							| 
									
										
										
										
											2010-03-10 09:42:58 -06:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |     if (qemu_input_is_absolute()) { | 
					
						
							| 
									
										
										
										
											2010-03-10 09:42:58 -06:00
										 |  |  |         if (!absolute_enabled) { | 
					
						
							|  |  |  |             absolute_enabled = 1; | 
					
						
							| 
									
										
										
										
											2013-03-14 14:27:08 +01:00
										 |  |  |             if (qemu_console_is_graphic(NULL)) { | 
					
						
							| 
									
										
										
										
											2012-01-31 13:45:27 +01:00
										 |  |  |                 absolute_mouse_grab(); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-03-10 09:42:58 -06:00
										 |  |  |         } | 
					
						
							|  |  |  |     } else if (absolute_enabled) { | 
					
						
							| 
									
										
										
										
											2011-08-22 18:42:42 +02:00
										 |  |  |         if (!gui_fullscreen) { | 
					
						
							|  |  |  |             sdl_grab_end(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:15 +02:00
										 |  |  |         absolute_enabled = 0; | 
					
						
							| 
									
										
										
										
											2010-03-10 09:42:58 -06:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  | static void sdl_send_mouse_event(int dx, int dy, int x, int y, int state) | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
											  
											
												qapi: Don't let implicit enum MAX member collide
Now that we guarantee the user doesn't have any enum values
beginning with a single underscore, we can use that for our
own purposes.  Renaming ENUM_MAX to ENUM__MAX makes it obvious
that the sentinel is generated.
This patch was mostly generated by applying a temporary patch:
|diff --git a/scripts/qapi.py b/scripts/qapi.py
|index e6d014b..b862ec9 100644
|--- a/scripts/qapi.py
|+++ b/scripts/qapi.py
|@@ -1570,6 +1570,7 @@ const char *const %(c_name)s_lookup[] = {
|     max_index = c_enum_const(name, 'MAX', prefix)
|     ret += mcgen('''
|     [%(max_index)s] = NULL,
|+// %(max_index)s
| };
| ''',
|                max_index=max_index)
then running:
$ cat qapi-{types,event}.c tests/test-qapi-types.c |
    sed -n 's,^// \(.*\)MAX,s|\1MAX|\1_MAX|g,p' > list
$ git grep -l _MAX | xargs sed -i -f list
The only things not generated are the changes in scripts/qapi.py.
Rejecting enum members named 'MAX' is now useless, and will be dropped
in the next patch.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1447836791-369-23-git-send-email-eblake@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
[Rebased to current master, commit message tweaked]
Signed-off-by: Markus Armbruster <armbru@redhat.com>
											
										 
											2015-11-18 01:52:57 -07:00
										 |  |  |     static uint32_t bmap[INPUT_BUTTON__MAX] = { | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |         [INPUT_BUTTON_LEFT]       = SDL_BUTTON(SDL_BUTTON_LEFT), | 
					
						
							|  |  |  |         [INPUT_BUTTON_MIDDLE]     = SDL_BUTTON(SDL_BUTTON_MIDDLE), | 
					
						
							|  |  |  |         [INPUT_BUTTON_RIGHT]      = SDL_BUTTON(SDL_BUTTON_RIGHT), | 
					
						
							| 
									
										
										
										
											2016-01-12 12:14:12 +01:00
										 |  |  |         [INPUT_BUTTON_WHEEL_UP]   = SDL_BUTTON(SDL_BUTTON_WHEELUP), | 
					
						
							|  |  |  |         [INPUT_BUTTON_WHEEL_DOWN] = SDL_BUTTON(SDL_BUTTON_WHEELDOWN), | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |     }; | 
					
						
							|  |  |  |     static uint32_t prev_state; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (prev_state != state) { | 
					
						
							|  |  |  |         qemu_input_update_buttons(dcl->con, bmap, prev_state, state); | 
					
						
							|  |  |  |         prev_state = state; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (qemu_input_is_absolute()) { | 
					
						
							|  |  |  |         qemu_input_queue_abs(dcl->con, INPUT_AXIS_X, x, | 
					
						
							| 
									
										
										
										
											2017-05-05 15:39:52 +02:00
										 |  |  |                              0, real_screen->w); | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |         qemu_input_queue_abs(dcl->con, INPUT_AXIS_Y, y, | 
					
						
							| 
									
										
										
										
											2017-05-05 15:39:52 +02:00
										 |  |  |                              0, real_screen->h); | 
					
						
							| 
									
										
										
										
											2014-03-10 09:22:16 +01:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         if (guest_cursor) { | 
					
						
							|  |  |  |             x -= guest_x; | 
					
						
							|  |  |  |             y -= guest_y; | 
					
						
							|  |  |  |             guest_x += x; | 
					
						
							|  |  |  |             guest_y += y; | 
					
						
							|  |  |  |             dx = x; | 
					
						
							|  |  |  |             dy = y; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         qemu_input_queue_rel(dcl->con, INPUT_AXIS_X, dx); | 
					
						
							|  |  |  |         qemu_input_queue_rel(dcl->con, INPUT_AXIS_Y, dy); | 
					
						
							| 
									
										
										
										
											2006-04-12 21:09:08 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |     qemu_input_event_sync(); | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  | static void sdl_scale(int width, int height) | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:09 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     int bpp = real_screen->format->BitsPerPixel; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-07 15:10:12 +10:00
										 |  |  | #ifdef DEBUG_SDL
 | 
					
						
							|  |  |  |     printf("SDL: Scaling to %dx%d bpp %d\n", width, height, bpp); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:09 +02:00
										 |  |  |     if (bpp != 16 && bpp != 32) { | 
					
						
							|  |  |  |         bpp = 32; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     do_sdl_resize(width, height, bpp); | 
					
						
							|  |  |  |     scaling_active = 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  | static void toggle_full_screen(void) | 
					
						
							| 
									
										
										
										
											2004-04-28 19:33:40 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |     int width = surface_width(surface); | 
					
						
							|  |  |  |     int height = surface_height(surface); | 
					
						
							|  |  |  |     int bpp = surface_bits_per_pixel(surface); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-04-28 19:33:40 +00:00
										 |  |  |     gui_fullscreen = !gui_fullscreen; | 
					
						
							|  |  |  |     if (gui_fullscreen) { | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:09 +02:00
										 |  |  |         gui_saved_width = real_screen->w; | 
					
						
							|  |  |  |         gui_saved_height = real_screen->h; | 
					
						
							|  |  |  |         gui_saved_scaling = scaling_active; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |         do_sdl_resize(width, height, bpp); | 
					
						
							| 
									
										
										
										
											2009-06-24 11:58:25 +01:00
										 |  |  |         scaling_active = 0; | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-04-28 19:33:40 +00:00
										 |  |  |         gui_saved_grab = gui_grab; | 
					
						
							|  |  |  |         sdl_grab_start(); | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:09 +02:00
										 |  |  |         if (gui_saved_scaling) { | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |             sdl_scale(gui_saved_width, gui_saved_height); | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:09 +02:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |             do_sdl_resize(width, height, 0); | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:09 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-03-14 14:27:08 +01:00
										 |  |  |         if (!gui_saved_grab || !qemu_console_is_graphic(NULL)) { | 
					
						
							| 
									
										
										
										
											2004-04-28 19:33:40 +00:00
										 |  |  |             sdl_grab_end(); | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:12 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2004-04-28 19:33:40 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-03-12 13:44:38 +01:00
										 |  |  |     graphic_hw_invalidate(NULL); | 
					
						
							|  |  |  |     graphic_hw_update(NULL); | 
					
						
							| 
									
										
										
										
											2004-04-28 19:33:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  | static void handle_keydown(SDL_Event *ev) | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-04-28 19:33:40 +00:00
										 |  |  |     int mod_state; | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |     int keycode; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (alt_grab) { | 
					
						
							|  |  |  |         mod_state = (SDL_GetModState() & (gui_grab_code | KMOD_LSHIFT)) == | 
					
						
							|  |  |  |                     (gui_grab_code | KMOD_LSHIFT); | 
					
						
							|  |  |  |     } else if (ctrl_grab) { | 
					
						
							|  |  |  |         mod_state = (SDL_GetModState() & KMOD_RCTRL) == KMOD_RCTRL; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         mod_state = (SDL_GetModState() & gui_grab_code) == gui_grab_code; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     gui_key_modifier_pressed = mod_state; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (gui_key_modifier_pressed) { | 
					
						
							|  |  |  |         keycode = sdl_keyevent_to_keycode(&ev->key); | 
					
						
							|  |  |  |         switch (keycode) { | 
					
						
							|  |  |  |         case 0x21: /* 'f' key on US keyboard */ | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |             toggle_full_screen(); | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |             gui_keysym = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2018-01-15 16:48:54 +01:00
										 |  |  |         case 0x22: /* 'g' key */ | 
					
						
							|  |  |  |             if (!gui_grab) { | 
					
						
							|  |  |  |                 if (qemu_console_is_graphic(NULL)) { | 
					
						
							|  |  |  |                     sdl_grab_start(); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else if (!gui_fullscreen) { | 
					
						
							|  |  |  |                 sdl_grab_end(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             gui_keysym = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |         case 0x16: /* 'u' key on US keyboard */ | 
					
						
							|  |  |  |             if (scaling_active) { | 
					
						
							|  |  |  |                 scaling_active = 0; | 
					
						
							| 
									
										
										
										
											2013-03-01 13:03:04 +01:00
										 |  |  |                 sdl_switch(dcl, NULL); | 
					
						
							| 
									
										
										
										
											2013-03-12 13:44:38 +01:00
										 |  |  |                 graphic_hw_invalidate(NULL); | 
					
						
							|  |  |  |                 graphic_hw_update(NULL); | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |             gui_keysym = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 0x02 ... 0x0a: /* '1' to '9' keys */ | 
					
						
							|  |  |  |             /* Reset the modifiers sent to the current console */ | 
					
						
							|  |  |  |             reset_keys(); | 
					
						
							|  |  |  |             console_select(keycode - 0x02); | 
					
						
							|  |  |  |             gui_keysym = 1; | 
					
						
							|  |  |  |             if (gui_fullscreen) { | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2013-03-14 14:27:08 +01:00
										 |  |  |             if (!qemu_console_is_graphic(NULL)) { | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |                 /* release grab if going to a text console */ | 
					
						
							|  |  |  |                 if (gui_grab) { | 
					
						
							|  |  |  |                     sdl_grab_end(); | 
					
						
							|  |  |  |                 } else if (absolute_enabled) { | 
					
						
							|  |  |  |                     sdl_show_cursor(); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else if (absolute_enabled) { | 
					
						
							|  |  |  |                 sdl_hide_cursor(); | 
					
						
							|  |  |  |                 absolute_mouse_grab(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 0x1b: /* '+' */ | 
					
						
							|  |  |  |         case 0x35: /* '-' */ | 
					
						
							|  |  |  |             if (!gui_fullscreen) { | 
					
						
							|  |  |  |                 int width = MAX(real_screen->w + (keycode == 0x1b ? 50 : -50), | 
					
						
							|  |  |  |                                 160); | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |                 int height = (surface_height(surface) * width) / | 
					
						
							|  |  |  |                     surface_width(surface); | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |                 sdl_scale(width, height); | 
					
						
							| 
									
										
										
										
											2013-03-12 13:44:38 +01:00
										 |  |  |                 graphic_hw_invalidate(NULL); | 
					
						
							|  |  |  |                 graphic_hw_update(NULL); | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |                 gui_keysym = 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-03-14 14:27:08 +01:00
										 |  |  |     } else if (!qemu_console_is_graphic(NULL)) { | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |         int keysym = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (ev->key.keysym.mod & (KMOD_LCTRL | KMOD_RCTRL)) { | 
					
						
							|  |  |  |             switch (ev->key.keysym.sym) { | 
					
						
							|  |  |  |             case SDLK_UP: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_CTRL_UP; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_DOWN: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_CTRL_DOWN; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_LEFT: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_CTRL_LEFT; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_RIGHT: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_CTRL_RIGHT; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_HOME: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_CTRL_HOME; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_END: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_CTRL_END; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_PAGEUP: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_CTRL_PAGEUP; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_PAGEDOWN: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_CTRL_PAGEDOWN; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             switch (ev->key.keysym.sym) { | 
					
						
							|  |  |  |             case SDLK_UP: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_UP; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_DOWN: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_DOWN; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_LEFT: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_LEFT; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_RIGHT: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_RIGHT; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_HOME: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_HOME; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_END: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_END; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_PAGEUP: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_PAGEUP; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_PAGEDOWN: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_PAGEDOWN; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_BACKSPACE: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_BACKSPACE; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case SDLK_DELETE: | 
					
						
							|  |  |  |                 keysym = QEMU_KEY_DELETE; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (keysym) { | 
					
						
							|  |  |  |             kbd_put_keysym(keysym); | 
					
						
							|  |  |  |         } else if (ev->key.keysym.unicode != 0) { | 
					
						
							|  |  |  |             kbd_put_keysym(ev->key.keysym.unicode); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-03-14 14:27:08 +01:00
										 |  |  |     if (qemu_console_is_graphic(NULL) && !gui_keysym) { | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |         sdl_process_key(&ev->key); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  | static void handle_keyup(SDL_Event *ev) | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     int mod_state; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!alt_grab) { | 
					
						
							|  |  |  |         mod_state = (ev->key.keysym.mod & gui_grab_code); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         mod_state = (ev->key.keysym.mod & (gui_grab_code | KMOD_LSHIFT)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!mod_state && gui_key_modifier_pressed) { | 
					
						
							|  |  |  |         gui_key_modifier_pressed = 0; | 
					
						
							|  |  |  |         gui_keysym = 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-03-14 14:27:08 +01:00
										 |  |  |     if (qemu_console_is_graphic(NULL) && !gui_keysym) { | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |         sdl_process_key(&ev->key); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  | static void handle_mousemotion(SDL_Event *ev) | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     int max_x, max_y; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-14 14:27:08 +01:00
										 |  |  |     if (qemu_console_is_graphic(NULL) && | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |         (qemu_input_is_absolute() || absolute_enabled)) { | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |         max_x = real_screen->w - 1; | 
					
						
							|  |  |  |         max_y = real_screen->h - 1; | 
					
						
							|  |  |  |         if (gui_grab && (ev->motion.x == 0 || ev->motion.y == 0 || | 
					
						
							|  |  |  |             ev->motion.x == max_x || ev->motion.y == max_y)) { | 
					
						
							|  |  |  |             sdl_grab_end(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-01-31 13:45:28 +01:00
										 |  |  |         if (!gui_grab && | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |             (ev->motion.x > 0 && ev->motion.x < max_x && | 
					
						
							|  |  |  |             ev->motion.y > 0 && ev->motion.y < max_y)) { | 
					
						
							|  |  |  |             sdl_grab_start(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |     if (gui_grab || qemu_input_is_absolute() || absolute_enabled) { | 
					
						
							|  |  |  |         sdl_send_mouse_event(ev->motion.xrel, ev->motion.yrel, | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |                              ev->motion.x, ev->motion.y, ev->motion.state); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  | static void handle_mousebutton(SDL_Event *ev) | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-03-13 19:20:18 +00:00
										 |  |  |     int buttonstate = SDL_GetMouseState(NULL, NULL); | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |     SDL_MouseButtonEvent *bev; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-14 14:27:08 +01:00
										 |  |  |     if (!qemu_console_is_graphic(NULL)) { | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     bev = &ev->button; | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |     if (!gui_grab && !qemu_input_is_absolute()) { | 
					
						
							| 
									
										
										
										
											2012-01-31 13:45:30 +01:00
										 |  |  |         if (ev->type == SDL_MOUSEBUTTONUP && bev->button == SDL_BUTTON_LEFT) { | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |             /* start grabbing all events */ | 
					
						
							|  |  |  |             sdl_grab_start(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         if (ev->type == SDL_MOUSEBUTTONDOWN) { | 
					
						
							|  |  |  |             buttonstate |= SDL_BUTTON(bev->button); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             buttonstate &= ~SDL_BUTTON(bev->button); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |         sdl_send_mouse_event(0, 0, bev->x, bev->y, buttonstate); | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  | static void handle_activation(SDL_Event *ev) | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-01-31 13:45:31 +01:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  |     /* Disable grab if the window no longer has the focus
 | 
					
						
							|  |  |  |      * (Windows-only workaround) */ | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |     if (gui_grab && ev->active.state == SDL_APPINPUTFOCUS && | 
					
						
							|  |  |  |         !ev->active.gain && !gui_fullscreen) { | 
					
						
							|  |  |  |         sdl_grab_end(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-01-31 13:45:31 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-03-14 14:27:08 +01:00
										 |  |  |     if (!gui_grab && ev->active.gain && qemu_console_is_graphic(NULL) && | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |         (qemu_input_is_absolute() || absolute_enabled)) { | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |         absolute_mouse_grab(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ev->active.state & SDL_APPACTIVE) { | 
					
						
							|  |  |  |         if (ev->active.gain) { | 
					
						
							|  |  |  |             /* Back to default interval */ | 
					
						
							| 
									
										
										
										
											2013-03-14 11:56:16 +01:00
										 |  |  |             update_displaychangelistener(dcl, GUI_REFRESH_INTERVAL_DEFAULT); | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2013-03-14 11:56:16 +01:00
										 |  |  |             /* Sleeping interval.  Not using the long default here as
 | 
					
						
							|  |  |  |              * sdl_refresh does not only update the guest screen, but | 
					
						
							|  |  |  |              * also checks for gui events. */ | 
					
						
							|  |  |  |             update_displaychangelistener(dcl, 500); | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-01 13:03:04 +01:00
										 |  |  | static void sdl_refresh(DisplayChangeListener *dcl) | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     SDL_Event ev1, *ev = &ev1; | 
					
						
							| 
									
										
										
										
											2018-02-02 12:10:15 +01:00
										 |  |  |     bool allow_close = true; | 
					
						
							| 
									
										
										
										
											2016-01-12 20:18:24 +01:00
										 |  |  |     int idle = 1; | 
					
						
							| 
									
										
										
										
											2007-09-17 08:09:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-29 15:36:43 -03:00
										 |  |  |     if (last_vm_running != runstate_is_running()) { | 
					
						
							|  |  |  |         last_vm_running = runstate_is_running(); | 
					
						
							| 
									
										
										
										
											2004-03-31 19:00:16 +00:00
										 |  |  |         sdl_update_caption(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-12 13:44:38 +01:00
										 |  |  |     graphic_hw_update(NULL); | 
					
						
							| 
									
										
										
										
											2013-03-14 14:27:08 +01:00
										 |  |  |     SDL_EnableUNICODE(!qemu_console_is_graphic(NULL)); | 
					
						
							| 
									
										
										
										
											2004-07-14 17:22:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |     while (SDL_PollEvent(ev)) { | 
					
						
							|  |  |  |         switch (ev->type) { | 
					
						
							|  |  |  |         case SDL_VIDEOEXPOSE: | 
					
						
							| 
									
										
										
										
											2013-03-01 13:03:04 +01:00
										 |  |  |             sdl_update(dcl, 0, 0, real_screen->w, real_screen->h); | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case SDL_KEYDOWN: | 
					
						
							| 
									
										
										
										
											2016-01-12 20:18:24 +01:00
										 |  |  |             idle = 0; | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |             handle_keydown(ev); | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:17 +02:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |         case SDL_KEYUP: | 
					
						
							| 
									
										
										
										
											2016-01-12 20:18:24 +01:00
										 |  |  |             idle = 0; | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |             handle_keyup(ev); | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case SDL_QUIT: | 
					
						
							| 
									
										
										
										
											2018-02-02 12:10:15 +01:00
										 |  |  |             if (opts->has_window_close && !opts->window_close) { | 
					
						
							|  |  |  |                 allow_close = false; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (allow_close) { | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:04 +02:00
										 |  |  |                 no_shutdown = 0; | 
					
						
							| 
									
										
										
										
											2017-05-15 16:41:13 -05:00
										 |  |  |                 qemu_system_shutdown_request(SHUTDOWN_CAUSE_HOST_UI); | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:04 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case SDL_MOUSEMOTION: | 
					
						
							| 
									
										
										
										
											2016-01-12 20:18:24 +01:00
										 |  |  |             idle = 0; | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |             handle_mousemotion(ev); | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case SDL_MOUSEBUTTONDOWN: | 
					
						
							|  |  |  |         case SDL_MOUSEBUTTONUP: | 
					
						
							| 
									
										
										
										
											2016-01-12 20:18:24 +01:00
										 |  |  |             idle = 0; | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |             handle_mousebutton(ev); | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2004-04-29 22:15:15 +00:00
										 |  |  |         case SDL_ACTIVEEVENT: | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |             handle_activation(ev); | 
					
						
							| 
									
										
										
										
											2004-04-29 22:15:15 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:09 +02:00
										 |  |  |         case SDL_VIDEORESIZE: | 
					
						
							| 
									
										
										
										
											2013-03-01 09:01:13 +01:00
										 |  |  |             sdl_scale(ev->resize.w, ev->resize.h); | 
					
						
							| 
									
										
										
										
											2013-03-12 13:44:38 +01:00
										 |  |  |             graphic_hw_invalidate(NULL); | 
					
						
							|  |  |  |             graphic_hw_update(NULL); | 
					
						
							| 
									
										
										
										
											2009-06-24 11:58:25 +01:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |         default: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-01-12 20:18:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (idle) { | 
					
						
							|  |  |  |         if (idle_counter < SDL_MAX_IDLE_COUNT) { | 
					
						
							|  |  |  |             idle_counter++; | 
					
						
							|  |  |  |             if (idle_counter >= SDL_MAX_IDLE_COUNT) { | 
					
						
							|  |  |  |                 dcl->update_interval = GUI_REFRESH_INTERVAL_DEFAULT; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         idle_counter = 0; | 
					
						
							|  |  |  |         dcl->update_interval = SDL_REFRESH_INTERVAL_BUSY; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-13 14:51:41 +01:00
										 |  |  | static void sdl_mouse_warp(DisplayChangeListener *dcl, | 
					
						
							|  |  |  |                            int x, int y, int on) | 
					
						
							| 
									
										
										
										
											2007-04-02 01:10:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     if (on) { | 
					
						
							|  |  |  |         if (!guest_cursor) | 
					
						
							|  |  |  |             sdl_show_cursor(); | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |         if (gui_grab || qemu_input_is_absolute() || absolute_enabled) { | 
					
						
							| 
									
										
										
										
											2007-04-02 01:10:46 +00:00
										 |  |  |             SDL_SetCursor(guest_sprite); | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |             if (!qemu_input_is_absolute() && !absolute_enabled) { | 
					
						
							| 
									
										
										
										
											2009-01-29 23:29:52 +00:00
										 |  |  |                 SDL_WarpMouse(x, y); | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2007-04-02 01:10:46 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } else if (gui_grab) | 
					
						
							|  |  |  |         sdl_hide_cursor(); | 
					
						
							|  |  |  |     guest_cursor = on; | 
					
						
							|  |  |  |     guest_x = x, guest_y = y; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-13 14:51:41 +01:00
										 |  |  | static void sdl_mouse_define(DisplayChangeListener *dcl, | 
					
						
							|  |  |  |                              QEMUCursor *c) | 
					
						
							| 
									
										
										
										
											2007-04-02 01:10:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-21 11:54:33 +02:00
										 |  |  |     uint8_t *image, *mask; | 
					
						
							|  |  |  |     int bpl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-02 01:10:46 +00:00
										 |  |  |     if (guest_sprite) | 
					
						
							|  |  |  |         SDL_FreeCursor(guest_sprite); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-21 11:54:33 +02:00
										 |  |  |     bpl = cursor_get_mono_bpl(c); | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |     image = g_malloc0(bpl * c->height); | 
					
						
							|  |  |  |     mask  = g_malloc0(bpl * c->height); | 
					
						
							| 
									
										
										
										
											2010-05-21 11:54:33 +02:00
										 |  |  |     cursor_get_mono_image(c, 0x000000, image); | 
					
						
							|  |  |  |     cursor_get_mono_mask(c, 0, mask); | 
					
						
							|  |  |  |     guest_sprite = SDL_CreateCursor(image, mask, c->width, c->height, | 
					
						
							|  |  |  |                                     c->hot_x, c->hot_y); | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |     g_free(image); | 
					
						
							|  |  |  |     g_free(mask); | 
					
						
							| 
									
										
										
										
											2007-04-02 01:10:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (guest_cursor && | 
					
						
							| 
									
										
										
										
											2013-11-28 12:27:40 +01:00
										 |  |  |             (gui_grab || qemu_input_is_absolute() || absolute_enabled)) | 
					
						
							| 
									
										
										
										
											2007-04-02 01:10:46 +00:00
										 |  |  |         SDL_SetCursor(guest_sprite); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-21 14:13:02 -05:00
										 |  |  | static void sdl_cleanup(void) | 
					
						
							| 
									
										
										
										
											2004-02-06 19:56:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-02 01:10:46 +00:00
										 |  |  |     if (guest_sprite) | 
					
						
							|  |  |  |         SDL_FreeCursor(guest_sprite); | 
					
						
							| 
									
										
										
										
											2009-05-17 18:26:05 +04:00
										 |  |  |     SDL_QuitSubSystem(SDL_INIT_VIDEO); | 
					
						
							| 
									
										
										
										
											2004-02-06 19:56:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-13 14:51:41 +01:00
										 |  |  | static const DisplayChangeListenerOps dcl_ops = { | 
					
						
							| 
									
										
										
										
											2014-07-07 17:24:42 +10:00
										 |  |  |     .dpy_name             = "sdl", | 
					
						
							|  |  |  |     .dpy_gfx_update       = sdl_update, | 
					
						
							|  |  |  |     .dpy_gfx_switch       = sdl_switch, | 
					
						
							|  |  |  |     .dpy_gfx_check_format = sdl_check_format, | 
					
						
							|  |  |  |     .dpy_refresh          = sdl_refresh, | 
					
						
							|  |  |  |     .dpy_mouse_set        = sdl_mouse_warp, | 
					
						
							|  |  |  |     .dpy_cursor_define    = sdl_mouse_define, | 
					
						
							| 
									
										
										
										
											2012-11-13 14:51:41 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 11:05:36 +01:00
										 |  |  | static void sdl1_display_init(DisplayState *ds, DisplayOptions *o) | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     int flags; | 
					
						
							| 
									
										
										
										
											2006-04-12 21:09:08 +00:00
										 |  |  |     uint8_t data = 0; | 
					
						
							| 
									
										
										
										
											2009-03-13 15:02:13 +00:00
										 |  |  |     const SDL_VideoInfo *vi; | 
					
						
							| 
									
										
										
										
											2016-12-21 01:38:05 +01:00
										 |  |  |     SDL_SysWMinfo info; | 
					
						
							| 
									
										
										
										
											2011-02-16 21:15:40 +01:00
										 |  |  |     char *filename; | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-02 12:10:15 +01:00
										 |  |  |     assert(o->type == DISPLAY_TYPE_SDL); | 
					
						
							|  |  |  |     opts = o; | 
					
						
							| 
									
										
										
										
											2004-12-12 16:56:30 +00:00
										 |  |  | #if defined(__APPLE__)
 | 
					
						
							|  |  |  |     /* always use generic keymaps */ | 
					
						
							|  |  |  |     if (!keyboard_layout) | 
					
						
							|  |  |  |         keyboard_layout = "en-us"; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     if(keyboard_layout) { | 
					
						
							| 
									
										
										
										
											2018-10-17 10:26:50 +02:00
										 |  |  |         kbd_layout = init_keyboard_layout(name2keysym, keyboard_layout, | 
					
						
							|  |  |  |                                           &error_fatal); | 
					
						
							| 
									
										
										
										
											2004-12-12 16:56:30 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-15 14:25:33 +00:00
										 |  |  |     g_printerr("Running QEMU with SDL 1.2 is deprecated, and will be removed\n" | 
					
						
							|  |  |  |                "in a future release. Please switch to SDL 2.0 instead\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-02 12:10:15 +01:00
										 |  |  |     if (opts->has_full_screen && opts->full_screen) { | 
					
						
							| 
									
										
										
										
											2010-05-23 10:29:34 +02:00
										 |  |  |         setenv("SDL_VIDEO_ALLOW_SCREENSAVER", "1", 0); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-05-08 01:18:30 +04:00
										 |  |  | #ifdef __linux__
 | 
					
						
							|  |  |  |     /* on Linux, SDL may use fbcon|directfb|svgalib when run without
 | 
					
						
							|  |  |  |      * accessible $DISPLAY to open X11 window.  This is often the case | 
					
						
							|  |  |  |      * when qemu is run using sudo.  But in this case, and when actually | 
					
						
							|  |  |  |      * run in X11 environment, SDL fights with X11 for the video card, | 
					
						
							|  |  |  |      * making current display unavailable, often until reboot. | 
					
						
							|  |  |  |      * So make x11 the default SDL video driver if this variable is unset. | 
					
						
							|  |  |  |      * This is a bit hackish but saves us from bigger problem. | 
					
						
							|  |  |  |      * Maybe it's a good idea to fix this in SDL instead. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     setenv("SDL_VIDEODRIVER", "x11", 0); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-23 10:29:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-03 22:35:07 +01:00
										 |  |  |     /* Enable normal up/down events for Caps-Lock and Num-Lock keys.
 | 
					
						
							|  |  |  |      * This requires SDL >= 1.2.14. */ | 
					
						
							|  |  |  |     setenv("SDL_DISABLE_LOCK_KEYS", "1", 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |     flags = SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE; | 
					
						
							|  |  |  |     if (SDL_Init (flags)) { | 
					
						
							| 
									
										
										
										
											2009-12-30 04:26:34 +03:00
										 |  |  |         fprintf(stderr, "Could not initialize SDL(%s) - exiting\n", | 
					
						
							|  |  |  |                 SDL_GetError()); | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-13 15:02:13 +00:00
										 |  |  |     vi = SDL_GetVideoInfo(); | 
					
						
							| 
									
										
										
										
											2009-06-24 11:58:25 +01:00
										 |  |  |     host_format = *(vi->vfmt); | 
					
						
							| 
									
										
										
										
											2003-09-30 21:09:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-17 16:47:15 +00:00
										 |  |  |     keycode_map = sdl_get_keymap(&keycode_maplen); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-16 21:15:40 +01:00
										 |  |  |     /* Load a 32x32x4 image. White pixels are transparent. */ | 
					
						
							|  |  |  |     filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, "qemu-icon.bmp"); | 
					
						
							|  |  |  |     if (filename) { | 
					
						
							|  |  |  |         SDL_Surface *image = SDL_LoadBMP(filename); | 
					
						
							|  |  |  |         if (image) { | 
					
						
							|  |  |  |             uint32_t colorkey = SDL_MapRGB(image->format, 255, 255, 255); | 
					
						
							|  |  |  |             SDL_SetColorKey(image, SDL_SRCCOLORKEY, colorkey); | 
					
						
							|  |  |  |             SDL_WM_SetIcon(image, NULL); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |         g_free(filename); | 
					
						
							| 
									
										
										
										
											2011-02-16 21:15:40 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-02 12:10:15 +01:00
										 |  |  |     if (opts->has_full_screen && opts->full_screen) { | 
					
						
							| 
									
										
										
										
											2011-07-30 11:39:11 +02:00
										 |  |  |         gui_fullscreen = 1; | 
					
						
							|  |  |  |         sdl_grab_start(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-03 17:12:03 +01:00
										 |  |  |     dcl = g_new0(DisplayChangeListener, 1); | 
					
						
							| 
									
										
										
										
											2012-11-13 14:51:41 +01:00
										 |  |  |     dcl->ops = &dcl_ops; | 
					
						
							| 
									
										
										
										
											2013-04-23 15:44:31 +02:00
										 |  |  |     register_displaychangelistener(dcl); | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-10 09:42:58 -06:00
										 |  |  |     mouse_mode_notifier.notify = sdl_mouse_mode_change; | 
					
						
							|  |  |  |     qemu_add_mouse_mode_change_notifier(&mouse_mode_notifier); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-31 19:00:16 +00:00
										 |  |  |     sdl_update_caption(); | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  |     SDL_EnableKeyRepeat(250, 50); | 
					
						
							|  |  |  |     gui_grab = 0; | 
					
						
							| 
									
										
										
										
											2004-02-06 19:56:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-12 21:09:08 +00:00
										 |  |  |     sdl_cursor_hidden = SDL_CreateCursor(&data, &data, 8, 1, 0, 0); | 
					
						
							|  |  |  |     sdl_cursor_normal = SDL_GetCursor(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-21 01:38:05 +01:00
										 |  |  |     memset(&info, 0, sizeof(info)); | 
					
						
							|  |  |  |     SDL_VERSION(&info.version); | 
					
						
							|  |  |  |     if (SDL_GetWMInfo(&info)) { | 
					
						
							|  |  |  |         int i; | 
					
						
							|  |  |  |         for (i = 0; ; i++) { | 
					
						
							|  |  |  |             /* All consoles share the same window */ | 
					
						
							|  |  |  |             QemuConsole *con = qemu_console_lookup_by_index(i); | 
					
						
							|  |  |  |             if (con) { | 
					
						
							|  |  |  | #if defined(SDL_VIDEO_DRIVER_X11)
 | 
					
						
							|  |  |  |                 qemu_console_set_window_id(con, info.info.x11.wmwindow); | 
					
						
							|  |  |  | #elif defined(SDL_VIDEO_DRIVER_NANOX) || \
 | 
					
						
							|  |  |  |       defined(SDL_VIDEO_DRIVER_WINDIB) || defined(SDL_VIDEO_DRIVER_DDRAW) || \ | 
					
						
							|  |  |  |       defined(SDL_VIDEO_DRIVER_GAPI) || \ | 
					
						
							|  |  |  |       defined(SDL_VIDEO_DRIVER_RISCOS) | 
					
						
							|  |  |  |                 qemu_console_set_window_id(con, (int) (uintptr_t) info.window); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |                 qemu_console_set_window_id(con, info.data); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-21 14:13:02 -05:00
										 |  |  |     atexit(sdl_cleanup); | 
					
						
							| 
									
										
										
										
											2003-08-09 18:26:36 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-03-01 11:05:36 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | static QemuDisplay qemu_display_sdl1 = { | 
					
						
							|  |  |  |     .type       = DISPLAY_TYPE_SDL, | 
					
						
							|  |  |  |     .init       = sdl1_display_init, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void register_sdl1(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     qemu_display_register(&qemu_display_sdl1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type_init(register_sdl1); |