Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 1 | /* |
| 2 | * QEMU SDL display driver |
| 3 | * |
| 4 | * Copyright (c) 2003 Fabrice Bellard |
| 5 | * |
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | * of this software and associated documentation files (the "Software"), to deal |
| 8 | * in the Software without restriction, including without limitation the rights |
| 9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 10 | * copies of the Software, and to permit persons to whom the Software is |
| 11 | * furnished to do so, subject to the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice shall be included in |
| 14 | * all copies or substantial portions of the Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 22 | * THE SOFTWARE. |
| 23 | */ |
| 24 | /* Ported SDL 1.2 code to 2.0 by Dave Airlie. */ |
| 25 | |
Peter Maydell | e16f4c8 | 2016-01-29 17:49:51 +0000 | [diff] [blame] | 26 | #include "qemu/osdep.h" |
Markus Armbruster | 0b8fa32 | 2019-05-23 16:35:07 +0200 | [diff] [blame] | 27 | #include "qemu/module.h" |
Paolo Bonzini | 77d910f | 2020-08-18 11:59:27 +0200 | [diff] [blame] | 28 | #include "qemu/cutils.h" |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 29 | #include "ui/console.h" |
| 30 | #include "ui/input.h" |
Gerd Hoffmann | 5d0fe65 | 2014-11-11 10:21:24 +0100 | [diff] [blame] | 31 | #include "ui/sdl2.h" |
Markus Armbruster | 54d3123 | 2019-08-12 07:23:59 +0200 | [diff] [blame] | 32 | #include "sysemu/runstate.h" |
Alejandro Jimenez | e6dba04 | 2020-12-11 11:52:43 -0500 | [diff] [blame] | 33 | #include "sysemu/runstate-action.h" |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 34 | #include "sysemu/sysemu.h" |
Volker Rümelin | 8304734 | 2020-05-16 09:20:09 +0200 | [diff] [blame] | 35 | #include "ui/win32-kbd-hook.h" |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 36 | |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 37 | static int sdl2_num_outputs; |
Gerd Hoffmann | 5d0fe65 | 2014-11-11 10:21:24 +0100 | [diff] [blame] | 38 | static struct sdl2_console *sdl2_console; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 39 | |
| 40 | static SDL_Surface *guest_sprite_surface; |
| 41 | static int gui_grab; /* if true, all keyboard/mouse events are grabbed */ |
| 42 | |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 43 | static int gui_saved_grab; |
| 44 | static int gui_fullscreen; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 45 | static int gui_grab_code = KMOD_LALT | KMOD_LCTRL; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 46 | static SDL_Cursor *sdl_cursor_normal; |
| 47 | static SDL_Cursor *sdl_cursor_hidden; |
| 48 | static int absolute_enabled; |
| 49 | static int guest_cursor; |
| 50 | static int guest_x, guest_y; |
| 51 | static SDL_Cursor *guest_sprite; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 52 | static Notifier mouse_mode_notifier; |
| 53 | |
Jindřich Makovička | 56bdd4b | 2016-01-12 20:18:24 +0100 | [diff] [blame] | 54 | #define SDL2_REFRESH_INTERVAL_BUSY 10 |
| 55 | #define SDL2_MAX_IDLE_COUNT (2 * GUI_REFRESH_INTERVAL_DEFAULT \ |
| 56 | / SDL2_REFRESH_INTERVAL_BUSY + 1) |
| 57 | |
Gerd Hoffmann | 5d0fe65 | 2014-11-11 10:21:24 +0100 | [diff] [blame] | 58 | static void sdl_update_caption(struct sdl2_console *scon); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 59 | |
Gerd Hoffmann | 5d0fe65 | 2014-11-11 10:21:24 +0100 | [diff] [blame] | 60 | static struct sdl2_console *get_scon_from_window(uint32_t window_id) |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 61 | { |
| 62 | int i; |
| 63 | for (i = 0; i < sdl2_num_outputs; i++) { |
| 64 | if (sdl2_console[i].real_window == SDL_GetWindowFromID(window_id)) { |
| 65 | return &sdl2_console[i]; |
| 66 | } |
| 67 | } |
| 68 | return NULL; |
| 69 | } |
| 70 | |
Gerd Hoffmann | 2c3056f | 2014-11-11 13:22:49 +0100 | [diff] [blame] | 71 | void sdl2_window_create(struct sdl2_console *scon) |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 72 | { |
Gerd Hoffmann | 46522a8 | 2014-11-11 13:12:02 +0100 | [diff] [blame] | 73 | int flags = 0; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 74 | |
Gerd Hoffmann | 46522a8 | 2014-11-11 13:12:02 +0100 | [diff] [blame] | 75 | if (!scon->surface) { |
| 76 | return; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 77 | } |
Gerd Hoffmann | 46522a8 | 2014-11-11 13:12:02 +0100 | [diff] [blame] | 78 | assert(!scon->real_window); |
| 79 | |
| 80 | if (gui_fullscreen) { |
| 81 | flags |= SDL_WINDOW_FULLSCREEN_DESKTOP; |
| 82 | } else { |
| 83 | flags |= SDL_WINDOW_RESIZABLE; |
| 84 | } |
| 85 | if (scon->hidden) { |
| 86 | flags |= SDL_WINDOW_HIDDEN; |
| 87 | } |
Jan Henrik Weinstock | 67c6f1d | 2020-10-04 12:42:21 +0200 | [diff] [blame] | 88 | #ifdef CONFIG_OPENGL |
| 89 | if (scon->opengl) { |
| 90 | flags |= SDL_WINDOW_OPENGL; |
| 91 | } |
| 92 | #endif |
Gerd Hoffmann | 46522a8 | 2014-11-11 13:12:02 +0100 | [diff] [blame] | 93 | |
| 94 | scon->real_window = SDL_CreateWindow("", SDL_WINDOWPOS_UNDEFINED, |
| 95 | SDL_WINDOWPOS_UNDEFINED, |
| 96 | surface_width(scon->surface), |
| 97 | surface_height(scon->surface), |
| 98 | flags); |
| 99 | scon->real_renderer = SDL_CreateRenderer(scon->real_window, -1, 0); |
Gerd Hoffmann | 0b71a5d | 2014-11-11 16:54:45 +0100 | [diff] [blame] | 100 | if (scon->opengl) { |
| 101 | scon->winctx = SDL_GL_GetCurrentContext(); |
| 102 | } |
Gerd Hoffmann | 46522a8 | 2014-11-11 13:12:02 +0100 | [diff] [blame] | 103 | sdl_update_caption(scon); |
| 104 | } |
| 105 | |
Gerd Hoffmann | 2c3056f | 2014-11-11 13:22:49 +0100 | [diff] [blame] | 106 | void sdl2_window_destroy(struct sdl2_console *scon) |
Gerd Hoffmann | 46522a8 | 2014-11-11 13:12:02 +0100 | [diff] [blame] | 107 | { |
| 108 | if (!scon->real_window) { |
| 109 | return; |
| 110 | } |
| 111 | |
| 112 | SDL_DestroyRenderer(scon->real_renderer); |
| 113 | scon->real_renderer = NULL; |
| 114 | SDL_DestroyWindow(scon->real_window); |
| 115 | scon->real_window = NULL; |
| 116 | } |
| 117 | |
Gerd Hoffmann | 2c3056f | 2014-11-11 13:22:49 +0100 | [diff] [blame] | 118 | void sdl2_window_resize(struct sdl2_console *scon) |
Gerd Hoffmann | 46522a8 | 2014-11-11 13:12:02 +0100 | [diff] [blame] | 119 | { |
| 120 | if (!scon->real_window) { |
| 121 | return; |
| 122 | } |
| 123 | |
| 124 | SDL_SetWindowSize(scon->real_window, |
| 125 | surface_width(scon->surface), |
| 126 | surface_height(scon->surface)); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 127 | } |
| 128 | |
Gerd Hoffmann | 0b71a5d | 2014-11-11 16:54:45 +0100 | [diff] [blame] | 129 | static void sdl2_redraw(struct sdl2_console *scon) |
| 130 | { |
| 131 | if (scon->opengl) { |
| 132 | #ifdef CONFIG_OPENGL |
| 133 | sdl2_gl_redraw(scon); |
| 134 | #endif |
| 135 | } else { |
| 136 | sdl2_2d_redraw(scon); |
| 137 | } |
| 138 | } |
| 139 | |
Gerd Hoffmann | 5d0fe65 | 2014-11-11 10:21:24 +0100 | [diff] [blame] | 140 | static void sdl_update_caption(struct sdl2_console *scon) |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 141 | { |
| 142 | char win_title[1024]; |
| 143 | char icon_title[1024]; |
| 144 | const char *status = ""; |
| 145 | |
| 146 | if (!runstate_is_running()) { |
| 147 | status = " [Stopped]"; |
| 148 | } else if (gui_grab) { |
| 149 | if (alt_grab) { |
Gerd Hoffmann | f8d2c93 | 2018-01-15 16:48:54 +0100 | [diff] [blame] | 150 | status = " - Press Ctrl-Alt-Shift-G to exit grab"; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 151 | } else if (ctrl_grab) { |
Gerd Hoffmann | f8d2c93 | 2018-01-15 16:48:54 +0100 | [diff] [blame] | 152 | status = " - Press Right-Ctrl-G to exit grab"; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 153 | } else { |
Gerd Hoffmann | f8d2c93 | 2018-01-15 16:48:54 +0100 | [diff] [blame] | 154 | status = " - Press Ctrl-Alt-G to exit grab"; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 155 | } |
| 156 | } |
| 157 | |
| 158 | if (qemu_name) { |
| 159 | snprintf(win_title, sizeof(win_title), "QEMU (%s-%d)%s", qemu_name, |
| 160 | scon->idx, status); |
| 161 | snprintf(icon_title, sizeof(icon_title), "QEMU (%s)", qemu_name); |
| 162 | } else { |
| 163 | snprintf(win_title, sizeof(win_title), "QEMU%s", status); |
| 164 | snprintf(icon_title, sizeof(icon_title), "QEMU"); |
| 165 | } |
| 166 | |
| 167 | if (scon->real_window) { |
| 168 | SDL_SetWindowTitle(scon->real_window, win_title); |
| 169 | } |
| 170 | } |
| 171 | |
Gerd Hoffmann | 86a088e | 2020-01-31 12:35:21 +0100 | [diff] [blame] | 172 | static void sdl_hide_cursor(struct sdl2_console *scon) |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 173 | { |
Gerd Hoffmann | 86a088e | 2020-01-31 12:35:21 +0100 | [diff] [blame] | 174 | if (scon->opts->has_show_cursor && scon->opts->show_cursor) { |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 175 | return; |
| 176 | } |
| 177 | |
Jindrich Makovicka | 253347e | 2017-11-12 20:30:27 +0100 | [diff] [blame] | 178 | SDL_ShowCursor(SDL_DISABLE); |
| 179 | SDL_SetCursor(sdl_cursor_hidden); |
| 180 | |
| 181 | if (!qemu_input_is_absolute()) { |
Cole Robinson | 2d968ff | 2014-04-01 16:37:11 -0400 | [diff] [blame] | 182 | SDL_SetRelativeMouseMode(SDL_TRUE); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 183 | } |
| 184 | } |
| 185 | |
Gerd Hoffmann | 86a088e | 2020-01-31 12:35:21 +0100 | [diff] [blame] | 186 | static void sdl_show_cursor(struct sdl2_console *scon) |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 187 | { |
Gerd Hoffmann | 86a088e | 2020-01-31 12:35:21 +0100 | [diff] [blame] | 188 | if (scon->opts->has_show_cursor && scon->opts->show_cursor) { |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 189 | return; |
| 190 | } |
| 191 | |
| 192 | if (!qemu_input_is_absolute()) { |
Cole Robinson | 2d968ff | 2014-04-01 16:37:11 -0400 | [diff] [blame] | 193 | SDL_SetRelativeMouseMode(SDL_FALSE); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 194 | } |
Jindrich Makovicka | 253347e | 2017-11-12 20:30:27 +0100 | [diff] [blame] | 195 | |
| 196 | if (guest_cursor && |
| 197 | (gui_grab || qemu_input_is_absolute() || absolute_enabled)) { |
| 198 | SDL_SetCursor(guest_sprite); |
| 199 | } else { |
| 200 | SDL_SetCursor(sdl_cursor_normal); |
| 201 | } |
| 202 | |
| 203 | SDL_ShowCursor(SDL_ENABLE); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 204 | } |
| 205 | |
Gerd Hoffmann | 5d0fe65 | 2014-11-11 10:21:24 +0100 | [diff] [blame] | 206 | static void sdl_grab_start(struct sdl2_console *scon) |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 207 | { |
Gerd Hoffmann | f233579 | 2014-05-26 14:05:51 +0200 | [diff] [blame] | 208 | QemuConsole *con = scon ? scon->dcl.con : NULL; |
| 209 | |
| 210 | if (!con || !qemu_console_is_graphic(con)) { |
| 211 | return; |
| 212 | } |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 213 | /* |
| 214 | * If the application is not active, do not try to enter grab state. This |
| 215 | * prevents 'SDL_WM_GrabInput(SDL_GRAB_ON)' from blocking all the |
| 216 | * application (SDL bug). |
| 217 | */ |
| 218 | if (!(SDL_GetWindowFlags(scon->real_window) & SDL_WINDOW_INPUT_FOCUS)) { |
| 219 | return; |
| 220 | } |
| 221 | if (guest_cursor) { |
| 222 | SDL_SetCursor(guest_sprite); |
| 223 | if (!qemu_input_is_absolute() && !absolute_enabled) { |
| 224 | SDL_WarpMouseInWindow(scon->real_window, guest_x, guest_y); |
| 225 | } |
| 226 | } else { |
Gerd Hoffmann | 86a088e | 2020-01-31 12:35:21 +0100 | [diff] [blame] | 227 | sdl_hide_cursor(scon); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 228 | } |
| 229 | SDL_SetWindowGrab(scon->real_window, SDL_TRUE); |
| 230 | gui_grab = 1; |
Volker Rümelin | 8304734 | 2020-05-16 09:20:09 +0200 | [diff] [blame] | 231 | win32_kbd_set_grab(true); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 232 | sdl_update_caption(scon); |
| 233 | } |
| 234 | |
Gerd Hoffmann | 5d0fe65 | 2014-11-11 10:21:24 +0100 | [diff] [blame] | 235 | static void sdl_grab_end(struct sdl2_console *scon) |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 236 | { |
| 237 | SDL_SetWindowGrab(scon->real_window, SDL_FALSE); |
| 238 | gui_grab = 0; |
Volker Rümelin | 8304734 | 2020-05-16 09:20:09 +0200 | [diff] [blame] | 239 | win32_kbd_set_grab(false); |
Gerd Hoffmann | 86a088e | 2020-01-31 12:35:21 +0100 | [diff] [blame] | 240 | sdl_show_cursor(scon); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 241 | sdl_update_caption(scon); |
| 242 | } |
| 243 | |
Gerd Hoffmann | 5d0fe65 | 2014-11-11 10:21:24 +0100 | [diff] [blame] | 244 | static void absolute_mouse_grab(struct sdl2_console *scon) |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 245 | { |
| 246 | int mouse_x, mouse_y; |
| 247 | int scr_w, scr_h; |
| 248 | SDL_GetMouseState(&mouse_x, &mouse_y); |
| 249 | SDL_GetWindowSize(scon->real_window, &scr_w, &scr_h); |
| 250 | if (mouse_x > 0 && mouse_x < scr_w - 1 && |
| 251 | mouse_y > 0 && mouse_y < scr_h - 1) { |
| 252 | sdl_grab_start(scon); |
| 253 | } |
| 254 | } |
| 255 | |
| 256 | static void sdl_mouse_mode_change(Notifier *notify, void *data) |
| 257 | { |
| 258 | if (qemu_input_is_absolute()) { |
| 259 | if (!absolute_enabled) { |
| 260 | absolute_enabled = 1; |
Gerd Hoffmann | 8dfa306 | 2018-02-02 13:08:03 +0100 | [diff] [blame] | 261 | SDL_SetRelativeMouseMode(SDL_FALSE); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 262 | absolute_mouse_grab(&sdl2_console[0]); |
| 263 | } |
| 264 | } else if (absolute_enabled) { |
| 265 | if (!gui_fullscreen) { |
| 266 | sdl_grab_end(&sdl2_console[0]); |
| 267 | } |
| 268 | absolute_enabled = 0; |
| 269 | } |
| 270 | } |
| 271 | |
Gerd Hoffmann | 5d0fe65 | 2014-11-11 10:21:24 +0100 | [diff] [blame] | 272 | static void sdl_send_mouse_event(struct sdl2_console *scon, int dx, int dy, |
Cole Robinson | 3f2fde2 | 2014-04-21 18:58:50 -0400 | [diff] [blame] | 273 | int x, int y, int state) |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 274 | { |
Eric Blake | 7fb1cf1 | 2015-11-18 01:52:57 -0700 | [diff] [blame] | 275 | static uint32_t bmap[INPUT_BUTTON__MAX] = { |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 276 | [INPUT_BUTTON_LEFT] = SDL_BUTTON(SDL_BUTTON_LEFT), |
| 277 | [INPUT_BUTTON_MIDDLE] = SDL_BUTTON(SDL_BUTTON_MIDDLE), |
| 278 | [INPUT_BUTTON_RIGHT] = SDL_BUTTON(SDL_BUTTON_RIGHT), |
Darrell Walisser | 2951106 | 2020-12-10 14:33:06 +0000 | [diff] [blame] | 279 | [INPUT_BUTTON_SIDE] = SDL_BUTTON(SDL_BUTTON_X1), |
| 280 | [INPUT_BUTTON_EXTRA] = SDL_BUTTON(SDL_BUTTON_X2) |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 281 | }; |
| 282 | static uint32_t prev_state; |
| 283 | |
| 284 | if (prev_state != state) { |
| 285 | qemu_input_update_buttons(scon->dcl.con, bmap, prev_state, state); |
| 286 | prev_state = state; |
| 287 | } |
| 288 | |
| 289 | if (qemu_input_is_absolute()) { |
Jindrich Makovicka | d9f0626 | 2017-11-17 12:22:57 +0100 | [diff] [blame] | 290 | qemu_input_queue_abs(scon->dcl.con, INPUT_AXIS_X, |
| 291 | x, 0, surface_width(scon->surface)); |
| 292 | qemu_input_queue_abs(scon->dcl.con, INPUT_AXIS_Y, |
| 293 | y, 0, surface_height(scon->surface)); |
Cole Robinson | afbc0dd | 2014-04-01 16:37:10 -0400 | [diff] [blame] | 294 | } else { |
| 295 | if (guest_cursor) { |
| 296 | x -= guest_x; |
| 297 | y -= guest_y; |
| 298 | guest_x += x; |
| 299 | guest_y += y; |
| 300 | dx = x; |
| 301 | dy = y; |
| 302 | } |
| 303 | qemu_input_queue_rel(scon->dcl.con, INPUT_AXIS_X, dx); |
| 304 | qemu_input_queue_rel(scon->dcl.con, INPUT_AXIS_Y, dy); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 305 | } |
| 306 | qemu_input_event_sync(); |
| 307 | } |
| 308 | |
Gerd Hoffmann | 5d0fe65 | 2014-11-11 10:21:24 +0100 | [diff] [blame] | 309 | static void toggle_full_screen(struct sdl2_console *scon) |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 310 | { |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 311 | gui_fullscreen = !gui_fullscreen; |
| 312 | if (gui_fullscreen) { |
Gerd Hoffmann | 46522a8 | 2014-11-11 13:12:02 +0100 | [diff] [blame] | 313 | SDL_SetWindowFullscreen(scon->real_window, |
| 314 | SDL_WINDOW_FULLSCREEN_DESKTOP); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 315 | gui_saved_grab = gui_grab; |
| 316 | sdl_grab_start(scon); |
| 317 | } else { |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 318 | if (!gui_saved_grab) { |
| 319 | sdl_grab_end(scon); |
| 320 | } |
Gerd Hoffmann | 46522a8 | 2014-11-11 13:12:02 +0100 | [diff] [blame] | 321 | SDL_SetWindowFullscreen(scon->real_window, 0); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 322 | } |
Gerd Hoffmann | 0b71a5d | 2014-11-11 16:54:45 +0100 | [diff] [blame] | 323 | sdl2_redraw(scon); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 324 | } |
| 325 | |
Jindrich Makovicka | 849bbe6 | 2017-11-17 12:22:58 +0100 | [diff] [blame] | 326 | static int get_mod_state(void) |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 327 | { |
Jindrich Makovicka | 849bbe6 | 2017-11-17 12:22:58 +0100 | [diff] [blame] | 328 | SDL_Keymod mod = SDL_GetModState(); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 329 | |
| 330 | if (alt_grab) { |
Jindrich Makovicka | 849bbe6 | 2017-11-17 12:22:58 +0100 | [diff] [blame] | 331 | return (mod & (gui_grab_code | KMOD_LSHIFT)) == |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 332 | (gui_grab_code | KMOD_LSHIFT); |
| 333 | } else if (ctrl_grab) { |
Jindrich Makovicka | 849bbe6 | 2017-11-17 12:22:58 +0100 | [diff] [blame] | 334 | return (mod & KMOD_RCTRL) == KMOD_RCTRL; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 335 | } else { |
Jindrich Makovicka | 849bbe6 | 2017-11-17 12:22:58 +0100 | [diff] [blame] | 336 | return (mod & gui_grab_code) == gui_grab_code; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 337 | } |
Jindrich Makovicka | 849bbe6 | 2017-11-17 12:22:58 +0100 | [diff] [blame] | 338 | } |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 339 | |
Volker Rümelin | 8304734 | 2020-05-16 09:20:09 +0200 | [diff] [blame] | 340 | static void *sdl2_win32_get_hwnd(struct sdl2_console *scon) |
| 341 | { |
| 342 | #ifdef CONFIG_WIN32 |
| 343 | SDL_SysWMinfo info; |
| 344 | |
| 345 | SDL_VERSION(&info.version); |
| 346 | if (SDL_GetWindowWMInfo(scon->real_window, &info)) { |
| 347 | return info.info.win.window; |
| 348 | } |
| 349 | #endif |
| 350 | return NULL; |
| 351 | } |
| 352 | |
Jindrich Makovicka | 849bbe6 | 2017-11-17 12:22:58 +0100 | [diff] [blame] | 353 | static void handle_keydown(SDL_Event *ev) |
| 354 | { |
| 355 | int win; |
| 356 | struct sdl2_console *scon = get_scon_from_window(ev->key.windowID); |
Gerd Hoffmann | afb92eb | 2018-02-20 16:04:44 +0100 | [diff] [blame] | 357 | int gui_key_modifier_pressed = get_mod_state(); |
Gerd Hoffmann | 07333e1 | 2019-01-22 10:28:09 +0100 | [diff] [blame] | 358 | int gui_keysym = 0; |
Jindrich Makovicka | 849bbe6 | 2017-11-17 12:22:58 +0100 | [diff] [blame] | 359 | |
Changbin Du | 32ec983 | 2020-04-27 21:24:12 +0800 | [diff] [blame] | 360 | if (!scon) { |
| 361 | return; |
| 362 | } |
| 363 | |
Jindrich Makovicka | 849bbe6 | 2017-11-17 12:22:58 +0100 | [diff] [blame] | 364 | if (!scon->ignore_hotkeys && gui_key_modifier_pressed && !ev->key.repeat) { |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 365 | switch (ev->key.keysym.scancode) { |
Gerd Hoffmann | 363f59d | 2014-05-27 09:44:39 +0200 | [diff] [blame] | 366 | case SDL_SCANCODE_2: |
| 367 | case SDL_SCANCODE_3: |
| 368 | case SDL_SCANCODE_4: |
| 369 | case SDL_SCANCODE_5: |
| 370 | case SDL_SCANCODE_6: |
| 371 | case SDL_SCANCODE_7: |
| 372 | case SDL_SCANCODE_8: |
| 373 | case SDL_SCANCODE_9: |
Cole Robinson | 56f289f | 2016-05-06 14:03:06 -0400 | [diff] [blame] | 374 | if (gui_grab) { |
| 375 | sdl_grab_end(scon); |
| 376 | } |
| 377 | |
Gerd Hoffmann | 363f59d | 2014-05-27 09:44:39 +0200 | [diff] [blame] | 378 | win = ev->key.keysym.scancode - SDL_SCANCODE_1; |
| 379 | if (win < sdl2_num_outputs) { |
| 380 | sdl2_console[win].hidden = !sdl2_console[win].hidden; |
| 381 | if (sdl2_console[win].real_window) { |
| 382 | if (sdl2_console[win].hidden) { |
| 383 | SDL_HideWindow(sdl2_console[win].real_window); |
| 384 | } else { |
| 385 | SDL_ShowWindow(sdl2_console[win].real_window); |
| 386 | } |
| 387 | } |
| 388 | gui_keysym = 1; |
| 389 | } |
| 390 | break; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 391 | case SDL_SCANCODE_F: |
| 392 | toggle_full_screen(scon); |
| 393 | gui_keysym = 1; |
| 394 | break; |
Gerd Hoffmann | f8d2c93 | 2018-01-15 16:48:54 +0100 | [diff] [blame] | 395 | case SDL_SCANCODE_G: |
| 396 | gui_keysym = 1; |
| 397 | if (!gui_grab) { |
| 398 | sdl_grab_start(scon); |
| 399 | } else if (!gui_fullscreen) { |
| 400 | sdl_grab_end(scon); |
| 401 | } |
| 402 | break; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 403 | case SDL_SCANCODE_U: |
Amadeusz Sławiński | 64bf97e | 2018-06-13 19:27:07 +0200 | [diff] [blame] | 404 | sdl2_window_resize(scon); |
Gerd Hoffmann | 0b71a5d | 2014-11-11 16:54:45 +0100 | [diff] [blame] | 405 | if (!scon->opengl) { |
| 406 | /* re-create scon->texture */ |
| 407 | sdl2_2d_switch(&scon->dcl, scon->surface); |
| 408 | } |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 409 | gui_keysym = 1; |
| 410 | break; |
Gerd Hoffmann | 46522a8 | 2014-11-11 13:12:02 +0100 | [diff] [blame] | 411 | #if 0 |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 412 | case SDL_SCANCODE_KP_PLUS: |
| 413 | case SDL_SCANCODE_KP_MINUS: |
| 414 | if (!gui_fullscreen) { |
| 415 | int scr_w, scr_h; |
| 416 | int width, height; |
| 417 | SDL_GetWindowSize(scon->real_window, &scr_w, &scr_h); |
| 418 | |
| 419 | width = MAX(scr_w + (ev->key.keysym.scancode == |
| 420 | SDL_SCANCODE_KP_PLUS ? 50 : -50), |
| 421 | 160); |
| 422 | height = (surface_height(scon->surface) * width) / |
| 423 | surface_width(scon->surface); |
Gerd Hoffmann | 46522a8 | 2014-11-11 13:12:02 +0100 | [diff] [blame] | 424 | fprintf(stderr, "%s: scale to %dx%d\n", |
| 425 | __func__, width, height); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 426 | sdl_scale(scon, width, height); |
Gerd Hoffmann | 0b71a5d | 2014-11-11 16:54:45 +0100 | [diff] [blame] | 427 | sdl2_redraw(scon); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 428 | gui_keysym = 1; |
| 429 | } |
Gerd Hoffmann | 46522a8 | 2014-11-11 13:12:02 +0100 | [diff] [blame] | 430 | #endif |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 431 | default: |
| 432 | break; |
| 433 | } |
| 434 | } |
| 435 | if (!gui_keysym) { |
Gerd Hoffmann | 8fc1a3f | 2014-11-11 10:58:19 +0100 | [diff] [blame] | 436 | sdl2_process_key(scon, &ev->key); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 437 | } |
| 438 | } |
| 439 | |
| 440 | static void handle_keyup(SDL_Event *ev) |
| 441 | { |
Gerd Hoffmann | 5d0fe65 | 2014-11-11 10:21:24 +0100 | [diff] [blame] | 442 | struct sdl2_console *scon = get_scon_from_window(ev->key.windowID); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 443 | |
Changbin Du | 32ec983 | 2020-04-27 21:24:12 +0800 | [diff] [blame] | 444 | if (!scon) { |
| 445 | return; |
| 446 | } |
| 447 | |
Jindrich Makovicka | 849bbe6 | 2017-11-17 12:22:58 +0100 | [diff] [blame] | 448 | scon->ignore_hotkeys = false; |
Gerd Hoffmann | 07333e1 | 2019-01-22 10:28:09 +0100 | [diff] [blame] | 449 | sdl2_process_key(scon, &ev->key); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 450 | } |
| 451 | |
Gerd Hoffmann | f233579 | 2014-05-26 14:05:51 +0200 | [diff] [blame] | 452 | static void handle_textinput(SDL_Event *ev) |
| 453 | { |
Pavel Dovgalyuk | 48db08c | 2018-06-26 09:40:17 +0300 | [diff] [blame] | 454 | struct sdl2_console *scon = get_scon_from_window(ev->text.windowID); |
Gerd Hoffmann | f233579 | 2014-05-26 14:05:51 +0200 | [diff] [blame] | 455 | QemuConsole *con = scon ? scon->dcl.con : NULL; |
| 456 | |
Changbin Du | 32ec983 | 2020-04-27 21:24:12 +0800 | [diff] [blame] | 457 | if (!con) { |
| 458 | return; |
| 459 | } |
| 460 | |
Gerd Hoffmann | f233579 | 2014-05-26 14:05:51 +0200 | [diff] [blame] | 461 | if (qemu_console_is_graphic(con)) { |
| 462 | return; |
| 463 | } |
| 464 | kbd_put_string_console(con, ev->text.text, strlen(ev->text.text)); |
| 465 | } |
| 466 | |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 467 | static void handle_mousemotion(SDL_Event *ev) |
| 468 | { |
| 469 | int max_x, max_y; |
Pavel Dovgalyuk | 48db08c | 2018-06-26 09:40:17 +0300 | [diff] [blame] | 470 | struct sdl2_console *scon = get_scon_from_window(ev->motion.windowID); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 471 | |
Pavel Dovgalyuk | 49213b7 | 2018-06-26 09:47:29 +0300 | [diff] [blame] | 472 | if (!scon || !qemu_console_is_graphic(scon->dcl.con)) { |
Jindrich Makovicka | 2821671 | 2017-11-17 12:22:56 +0100 | [diff] [blame] | 473 | return; |
| 474 | } |
| 475 | |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 476 | if (qemu_input_is_absolute() || absolute_enabled) { |
| 477 | int scr_w, scr_h; |
| 478 | SDL_GetWindowSize(scon->real_window, &scr_w, &scr_h); |
| 479 | max_x = scr_w - 1; |
| 480 | max_y = scr_h - 1; |
Jindrich Makovicka | 2495284 | 2017-11-12 20:30:31 +0100 | [diff] [blame] | 481 | if (gui_grab && !gui_fullscreen |
| 482 | && (ev->motion.x == 0 || ev->motion.y == 0 || |
| 483 | ev->motion.x == max_x || ev->motion.y == max_y)) { |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 484 | sdl_grab_end(scon); |
| 485 | } |
| 486 | if (!gui_grab && |
| 487 | (ev->motion.x > 0 && ev->motion.x < max_x && |
| 488 | ev->motion.y > 0 && ev->motion.y < max_y)) { |
| 489 | sdl_grab_start(scon); |
| 490 | } |
| 491 | } |
| 492 | if (gui_grab || qemu_input_is_absolute() || absolute_enabled) { |
Cole Robinson | 3f2fde2 | 2014-04-21 18:58:50 -0400 | [diff] [blame] | 493 | sdl_send_mouse_event(scon, ev->motion.xrel, ev->motion.yrel, |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 494 | ev->motion.x, ev->motion.y, ev->motion.state); |
| 495 | } |
| 496 | } |
| 497 | |
| 498 | static void handle_mousebutton(SDL_Event *ev) |
| 499 | { |
| 500 | int buttonstate = SDL_GetMouseState(NULL, NULL); |
| 501 | SDL_MouseButtonEvent *bev; |
Pavel Dovgalyuk | 48db08c | 2018-06-26 09:40:17 +0300 | [diff] [blame] | 502 | struct sdl2_console *scon = get_scon_from_window(ev->button.windowID); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 503 | |
Pavel Dovgalyuk | 49213b7 | 2018-06-26 09:47:29 +0300 | [diff] [blame] | 504 | if (!scon || !qemu_console_is_graphic(scon->dcl.con)) { |
Jindrich Makovicka | 2821671 | 2017-11-17 12:22:56 +0100 | [diff] [blame] | 505 | return; |
| 506 | } |
| 507 | |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 508 | bev = &ev->button; |
| 509 | if (!gui_grab && !qemu_input_is_absolute()) { |
| 510 | if (ev->type == SDL_MOUSEBUTTONUP && bev->button == SDL_BUTTON_LEFT) { |
| 511 | /* start grabbing all events */ |
| 512 | sdl_grab_start(scon); |
| 513 | } |
| 514 | } else { |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 515 | if (ev->type == SDL_MOUSEBUTTONDOWN) { |
| 516 | buttonstate |= SDL_BUTTON(bev->button); |
| 517 | } else { |
| 518 | buttonstate &= ~SDL_BUTTON(bev->button); |
| 519 | } |
Cole Robinson | 3f2fde2 | 2014-04-21 18:58:50 -0400 | [diff] [blame] | 520 | sdl_send_mouse_event(scon, 0, 0, bev->x, bev->y, buttonstate); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 521 | } |
| 522 | } |
| 523 | |
Cole Robinson | 3f2fde2 | 2014-04-21 18:58:50 -0400 | [diff] [blame] | 524 | static void handle_mousewheel(SDL_Event *ev) |
| 525 | { |
Pavel Dovgalyuk | 48db08c | 2018-06-26 09:40:17 +0300 | [diff] [blame] | 526 | struct sdl2_console *scon = get_scon_from_window(ev->wheel.windowID); |
Cole Robinson | 3f2fde2 | 2014-04-21 18:58:50 -0400 | [diff] [blame] | 527 | SDL_MouseWheelEvent *wev = &ev->wheel; |
| 528 | InputButton btn; |
| 529 | |
Pavel Dovgalyuk | 49213b7 | 2018-06-26 09:47:29 +0300 | [diff] [blame] | 530 | if (!scon || !qemu_console_is_graphic(scon->dcl.con)) { |
Jindrich Makovicka | 2821671 | 2017-11-17 12:22:56 +0100 | [diff] [blame] | 531 | return; |
| 532 | } |
| 533 | |
Cole Robinson | 3f2fde2 | 2014-04-21 18:58:50 -0400 | [diff] [blame] | 534 | if (wev->y > 0) { |
Gerd Hoffmann | f22d0af | 2016-01-12 12:14:12 +0100 | [diff] [blame] | 535 | btn = INPUT_BUTTON_WHEEL_UP; |
Cole Robinson | 3f2fde2 | 2014-04-21 18:58:50 -0400 | [diff] [blame] | 536 | } else if (wev->y < 0) { |
Gerd Hoffmann | f22d0af | 2016-01-12 12:14:12 +0100 | [diff] [blame] | 537 | btn = INPUT_BUTTON_WHEEL_DOWN; |
Cole Robinson | 3f2fde2 | 2014-04-21 18:58:50 -0400 | [diff] [blame] | 538 | } else { |
| 539 | return; |
| 540 | } |
| 541 | |
| 542 | qemu_input_queue_btn(scon->dcl.con, btn, true); |
| 543 | qemu_input_event_sync(); |
| 544 | qemu_input_queue_btn(scon->dcl.con, btn, false); |
| 545 | qemu_input_event_sync(); |
| 546 | } |
| 547 | |
Max Reitz | 1dfc5c8 | 2014-12-12 10:52:51 +0100 | [diff] [blame] | 548 | static void handle_windowevent(SDL_Event *ev) |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 549 | { |
Max Reitz | 1dfc5c8 | 2014-12-12 10:52:51 +0100 | [diff] [blame] | 550 | struct sdl2_console *scon = get_scon_from_window(ev->window.windowID); |
Gerd Hoffmann | fe91f36 | 2018-02-02 12:10:15 +0100 | [diff] [blame] | 551 | bool allow_close = true; |
Max Reitz | 1dfc5c8 | 2014-12-12 10:52:51 +0100 | [diff] [blame] | 552 | |
Alberto Garcia | 08d49df | 2015-06-08 11:12:15 +0200 | [diff] [blame] | 553 | if (!scon) { |
| 554 | return; |
| 555 | } |
| 556 | |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 557 | switch (ev->window.event) { |
| 558 | case SDL_WINDOWEVENT_RESIZED: |
Dave Airlie | 8b15d9f | 2014-03-25 16:50:36 +1000 | [diff] [blame] | 559 | { |
| 560 | QemuUIInfo info; |
| 561 | memset(&info, 0, sizeof(info)); |
| 562 | info.width = ev->window.data1; |
| 563 | info.height = ev->window.data2; |
| 564 | dpy_set_ui_info(scon->dcl.con, &info); |
| 565 | } |
Gerd Hoffmann | 0b71a5d | 2014-11-11 16:54:45 +0100 | [diff] [blame] | 566 | sdl2_redraw(scon); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 567 | break; |
| 568 | case SDL_WINDOWEVENT_EXPOSED: |
Gerd Hoffmann | 0b71a5d | 2014-11-11 16:54:45 +0100 | [diff] [blame] | 569 | sdl2_redraw(scon); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 570 | break; |
| 571 | case SDL_WINDOWEVENT_FOCUS_GAINED: |
Volker Rümelin | 8304734 | 2020-05-16 09:20:09 +0200 | [diff] [blame] | 572 | win32_kbd_set_grab(gui_grab); |
| 573 | if (qemu_console_is_graphic(scon->dcl.con)) { |
| 574 | win32_kbd_set_window(sdl2_win32_get_hwnd(scon)); |
| 575 | } |
| 576 | /* fall through */ |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 577 | case SDL_WINDOWEVENT_ENTER: |
| 578 | if (!gui_grab && (qemu_input_is_absolute() || absolute_enabled)) { |
| 579 | absolute_mouse_grab(scon); |
| 580 | } |
Jindrich Makovicka | 849bbe6 | 2017-11-17 12:22:58 +0100 | [diff] [blame] | 581 | /* If a new console window opened using a hotkey receives the |
| 582 | * focus, SDL sends another KEYDOWN event to the new window, |
| 583 | * closing the console window immediately after. |
| 584 | * |
| 585 | * Work around this by ignoring further hotkey events until a |
| 586 | * key is released. |
| 587 | */ |
| 588 | scon->ignore_hotkeys = get_mod_state(); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 589 | break; |
| 590 | case SDL_WINDOWEVENT_FOCUS_LOST: |
Volker Rümelin | 8304734 | 2020-05-16 09:20:09 +0200 | [diff] [blame] | 591 | if (qemu_console_is_graphic(scon->dcl.con)) { |
| 592 | win32_kbd_set_window(NULL); |
| 593 | } |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 594 | if (gui_grab && !gui_fullscreen) { |
| 595 | sdl_grab_end(scon); |
| 596 | } |
| 597 | break; |
| 598 | case SDL_WINDOWEVENT_RESTORED: |
Gerd Hoffmann | 63ed490 | 2014-11-12 08:01:27 +0100 | [diff] [blame] | 599 | update_displaychangelistener(&scon->dcl, GUI_REFRESH_INTERVAL_DEFAULT); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 600 | break; |
| 601 | case SDL_WINDOWEVENT_MINIMIZED: |
Gerd Hoffmann | 63ed490 | 2014-11-12 08:01:27 +0100 | [diff] [blame] | 602 | update_displaychangelistener(&scon->dcl, 500); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 603 | break; |
| 604 | case SDL_WINDOWEVENT_CLOSE: |
Jindrich Makovicka | fc49e72 | 2017-11-12 20:30:26 +0100 | [diff] [blame] | 605 | if (qemu_console_is_graphic(scon->dcl.con)) { |
Elie Tournier | 844fd50 | 2018-04-13 14:58:41 +0100 | [diff] [blame] | 606 | if (scon->opts->has_window_close && !scon->opts->window_close) { |
Gerd Hoffmann | fe91f36 | 2018-02-02 12:10:15 +0100 | [diff] [blame] | 607 | allow_close = false; |
| 608 | } |
| 609 | if (allow_close) { |
Alejandro Jimenez | e6dba04 | 2020-12-11 11:52:43 -0500 | [diff] [blame] | 610 | shutdown_action = SHUTDOWN_ACTION_POWEROFF; |
Jindrich Makovicka | fc49e72 | 2017-11-12 20:30:26 +0100 | [diff] [blame] | 611 | qemu_system_shutdown_request(SHUTDOWN_CAUSE_HOST_UI); |
| 612 | } |
| 613 | } else { |
| 614 | SDL_HideWindow(scon->real_window); |
| 615 | scon->hidden = true; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 616 | } |
| 617 | break; |
Max Reitz | d3f3a0f | 2014-12-12 10:52:52 +0100 | [diff] [blame] | 618 | case SDL_WINDOWEVENT_SHOWN: |
Jindrich Makovicka | bcf43cd | 2017-11-12 20:30:25 +0100 | [diff] [blame] | 619 | scon->hidden = false; |
Max Reitz | d3f3a0f | 2014-12-12 10:52:52 +0100 | [diff] [blame] | 620 | break; |
| 621 | case SDL_WINDOWEVENT_HIDDEN: |
Jindrich Makovicka | bcf43cd | 2017-11-12 20:30:25 +0100 | [diff] [blame] | 622 | scon->hidden = true; |
Max Reitz | d3f3a0f | 2014-12-12 10:52:52 +0100 | [diff] [blame] | 623 | break; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 624 | } |
| 625 | } |
| 626 | |
Gerd Hoffmann | 63ed490 | 2014-11-12 08:01:27 +0100 | [diff] [blame] | 627 | void sdl2_poll_events(struct sdl2_console *scon) |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 628 | { |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 629 | SDL_Event ev1, *ev = &ev1; |
Gerd Hoffmann | fe91f36 | 2018-02-02 12:10:15 +0100 | [diff] [blame] | 630 | bool allow_close = true; |
Jindřich Makovička | 56bdd4b | 2016-01-12 20:18:24 +0100 | [diff] [blame] | 631 | int idle = 1; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 632 | |
| 633 | if (scon->last_vm_running != runstate_is_running()) { |
| 634 | scon->last_vm_running = runstate_is_running(); |
| 635 | sdl_update_caption(scon); |
| 636 | } |
| 637 | |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 638 | while (SDL_PollEvent(ev)) { |
| 639 | switch (ev->type) { |
| 640 | case SDL_KEYDOWN: |
Jindřich Makovička | 56bdd4b | 2016-01-12 20:18:24 +0100 | [diff] [blame] | 641 | idle = 0; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 642 | handle_keydown(ev); |
| 643 | break; |
| 644 | case SDL_KEYUP: |
Jindřich Makovička | 56bdd4b | 2016-01-12 20:18:24 +0100 | [diff] [blame] | 645 | idle = 0; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 646 | handle_keyup(ev); |
| 647 | break; |
Gerd Hoffmann | f233579 | 2014-05-26 14:05:51 +0200 | [diff] [blame] | 648 | case SDL_TEXTINPUT: |
Jindřich Makovička | 56bdd4b | 2016-01-12 20:18:24 +0100 | [diff] [blame] | 649 | idle = 0; |
Gerd Hoffmann | f233579 | 2014-05-26 14:05:51 +0200 | [diff] [blame] | 650 | handle_textinput(ev); |
| 651 | break; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 652 | case SDL_QUIT: |
Elie Tournier | 844fd50 | 2018-04-13 14:58:41 +0100 | [diff] [blame] | 653 | if (scon->opts->has_window_close && !scon->opts->window_close) { |
Gerd Hoffmann | fe91f36 | 2018-02-02 12:10:15 +0100 | [diff] [blame] | 654 | allow_close = false; |
| 655 | } |
| 656 | if (allow_close) { |
Alejandro Jimenez | e6dba04 | 2020-12-11 11:52:43 -0500 | [diff] [blame] | 657 | shutdown_action = SHUTDOWN_ACTION_POWEROFF; |
Eric Blake | cf83f14 | 2017-05-15 16:41:13 -0500 | [diff] [blame] | 658 | qemu_system_shutdown_request(SHUTDOWN_CAUSE_HOST_UI); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 659 | } |
| 660 | break; |
| 661 | case SDL_MOUSEMOTION: |
Jindřich Makovička | 56bdd4b | 2016-01-12 20:18:24 +0100 | [diff] [blame] | 662 | idle = 0; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 663 | handle_mousemotion(ev); |
| 664 | break; |
| 665 | case SDL_MOUSEBUTTONDOWN: |
| 666 | case SDL_MOUSEBUTTONUP: |
Jindřich Makovička | 56bdd4b | 2016-01-12 20:18:24 +0100 | [diff] [blame] | 667 | idle = 0; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 668 | handle_mousebutton(ev); |
| 669 | break; |
Cole Robinson | 3f2fde2 | 2014-04-21 18:58:50 -0400 | [diff] [blame] | 670 | case SDL_MOUSEWHEEL: |
Jindřich Makovička | 56bdd4b | 2016-01-12 20:18:24 +0100 | [diff] [blame] | 671 | idle = 0; |
Cole Robinson | 3f2fde2 | 2014-04-21 18:58:50 -0400 | [diff] [blame] | 672 | handle_mousewheel(ev); |
| 673 | break; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 674 | case SDL_WINDOWEVENT: |
Max Reitz | 1dfc5c8 | 2014-12-12 10:52:51 +0100 | [diff] [blame] | 675 | handle_windowevent(ev); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 676 | break; |
| 677 | default: |
| 678 | break; |
| 679 | } |
| 680 | } |
Jindřich Makovička | 56bdd4b | 2016-01-12 20:18:24 +0100 | [diff] [blame] | 681 | |
| 682 | if (idle) { |
| 683 | if (scon->idle_counter < SDL2_MAX_IDLE_COUNT) { |
| 684 | scon->idle_counter++; |
| 685 | if (scon->idle_counter >= SDL2_MAX_IDLE_COUNT) { |
| 686 | scon->dcl.update_interval = GUI_REFRESH_INTERVAL_DEFAULT; |
| 687 | } |
| 688 | } |
| 689 | } else { |
| 690 | scon->idle_counter = 0; |
| 691 | scon->dcl.update_interval = SDL2_REFRESH_INTERVAL_BUSY; |
| 692 | } |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 693 | } |
| 694 | |
| 695 | static void sdl_mouse_warp(DisplayChangeListener *dcl, |
| 696 | int x, int y, int on) |
| 697 | { |
Gerd Hoffmann | 5d0fe65 | 2014-11-11 10:21:24 +0100 | [diff] [blame] | 698 | struct sdl2_console *scon = container_of(dcl, struct sdl2_console, dcl); |
Jindrich Makovicka | 2821671 | 2017-11-17 12:22:56 +0100 | [diff] [blame] | 699 | |
| 700 | if (!qemu_console_is_graphic(scon->dcl.con)) { |
| 701 | return; |
| 702 | } |
| 703 | |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 704 | if (on) { |
| 705 | if (!guest_cursor) { |
Gerd Hoffmann | 86a088e | 2020-01-31 12:35:21 +0100 | [diff] [blame] | 706 | sdl_show_cursor(scon); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 707 | } |
| 708 | if (gui_grab || qemu_input_is_absolute() || absolute_enabled) { |
| 709 | SDL_SetCursor(guest_sprite); |
| 710 | if (!qemu_input_is_absolute() && !absolute_enabled) { |
| 711 | SDL_WarpMouseInWindow(scon->real_window, x, y); |
| 712 | } |
| 713 | } |
| 714 | } else if (gui_grab) { |
Gerd Hoffmann | 86a088e | 2020-01-31 12:35:21 +0100 | [diff] [blame] | 715 | sdl_hide_cursor(scon); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 716 | } |
| 717 | guest_cursor = on; |
| 718 | guest_x = x, guest_y = y; |
| 719 | } |
| 720 | |
| 721 | static void sdl_mouse_define(DisplayChangeListener *dcl, |
| 722 | QEMUCursor *c) |
| 723 | { |
| 724 | |
| 725 | if (guest_sprite) { |
| 726 | SDL_FreeCursor(guest_sprite); |
| 727 | } |
| 728 | |
| 729 | if (guest_sprite_surface) { |
| 730 | SDL_FreeSurface(guest_sprite_surface); |
| 731 | } |
| 732 | |
| 733 | guest_sprite_surface = |
| 734 | SDL_CreateRGBSurfaceFrom(c->data, c->width, c->height, 32, c->width * 4, |
| 735 | 0xff0000, 0x00ff00, 0xff, 0xff000000); |
| 736 | |
| 737 | if (!guest_sprite_surface) { |
| 738 | fprintf(stderr, "Failed to make rgb surface from %p\n", c); |
| 739 | return; |
| 740 | } |
| 741 | guest_sprite = SDL_CreateColorCursor(guest_sprite_surface, |
| 742 | c->hot_x, c->hot_y); |
| 743 | if (!guest_sprite) { |
| 744 | fprintf(stderr, "Failed to make color cursor from %p\n", c); |
| 745 | return; |
| 746 | } |
| 747 | if (guest_cursor && |
| 748 | (gui_grab || qemu_input_is_absolute() || absolute_enabled)) { |
| 749 | SDL_SetCursor(guest_sprite); |
| 750 | } |
| 751 | } |
| 752 | |
| 753 | static void sdl_cleanup(void) |
| 754 | { |
| 755 | if (guest_sprite) { |
| 756 | SDL_FreeCursor(guest_sprite); |
| 757 | } |
| 758 | SDL_QuitSubSystem(SDL_INIT_VIDEO); |
| 759 | } |
| 760 | |
Gerd Hoffmann | f1ddebd | 2014-11-11 11:09:26 +0100 | [diff] [blame] | 761 | static const DisplayChangeListenerOps dcl_2d_ops = { |
Gerd Hoffmann | 877417d | 2015-01-09 09:27:09 +0100 | [diff] [blame] | 762 | .dpy_name = "sdl2-2d", |
| 763 | .dpy_gfx_update = sdl2_2d_update, |
| 764 | .dpy_gfx_switch = sdl2_2d_switch, |
| 765 | .dpy_gfx_check_format = sdl2_2d_check_format, |
| 766 | .dpy_refresh = sdl2_2d_refresh, |
| 767 | .dpy_mouse_set = sdl_mouse_warp, |
| 768 | .dpy_cursor_define = sdl_mouse_define, |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 769 | }; |
| 770 | |
Gerd Hoffmann | 0b71a5d | 2014-11-11 16:54:45 +0100 | [diff] [blame] | 771 | #ifdef CONFIG_OPENGL |
| 772 | static const DisplayChangeListenerOps dcl_gl_ops = { |
| 773 | .dpy_name = "sdl2-gl", |
| 774 | .dpy_gfx_update = sdl2_gl_update, |
| 775 | .dpy_gfx_switch = sdl2_gl_switch, |
| 776 | .dpy_gfx_check_format = console_gl_check_format, |
| 777 | .dpy_refresh = sdl2_gl_refresh, |
| 778 | .dpy_mouse_set = sdl_mouse_warp, |
| 779 | .dpy_cursor_define = sdl_mouse_define, |
Gerd Hoffmann | cb47dc9 | 2014-11-19 14:56:46 +0100 | [diff] [blame] | 780 | |
| 781 | .dpy_gl_ctx_create = sdl2_gl_create_context, |
| 782 | .dpy_gl_ctx_destroy = sdl2_gl_destroy_context, |
| 783 | .dpy_gl_ctx_make_current = sdl2_gl_make_context_current, |
| 784 | .dpy_gl_ctx_get_current = sdl2_gl_get_current_context, |
Gerd Hoffmann | db6cdfb | 2017-02-21 10:37:20 +0100 | [diff] [blame] | 785 | .dpy_gl_scanout_disable = sdl2_gl_scanout_disable, |
Gerd Hoffmann | f4c36bd | 2017-02-21 10:37:16 +0100 | [diff] [blame] | 786 | .dpy_gl_scanout_texture = sdl2_gl_scanout_texture, |
Gerd Hoffmann | cb47dc9 | 2014-11-19 14:56:46 +0100 | [diff] [blame] | 787 | .dpy_gl_update = sdl2_gl_scanout_flush, |
Gerd Hoffmann | 0b71a5d | 2014-11-11 16:54:45 +0100 | [diff] [blame] | 788 | }; |
| 789 | #endif |
| 790 | |
Gerd Hoffmann | 5ee1718 | 2018-03-01 11:05:36 +0100 | [diff] [blame] | 791 | static void sdl2_display_early_init(DisplayOptions *o) |
Gerd Hoffmann | 0b71a5d | 2014-11-11 16:54:45 +0100 | [diff] [blame] | 792 | { |
Gerd Hoffmann | fe91f36 | 2018-02-02 12:10:15 +0100 | [diff] [blame] | 793 | assert(o->type == DISPLAY_TYPE_SDL); |
| 794 | if (o->has_gl && o->gl) { |
Gerd Hoffmann | 0b71a5d | 2014-11-11 16:54:45 +0100 | [diff] [blame] | 795 | #ifdef CONFIG_OPENGL |
| 796 | display_opengl = 1; |
| 797 | #endif |
Gerd Hoffmann | 0b71a5d | 2014-11-11 16:54:45 +0100 | [diff] [blame] | 798 | } |
| 799 | } |
| 800 | |
Gerd Hoffmann | 5ee1718 | 2018-03-01 11:05:36 +0100 | [diff] [blame] | 801 | static void sdl2_display_init(DisplayState *ds, DisplayOptions *o) |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 802 | { |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 803 | uint8_t data = 0; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 804 | int i; |
Samuel Thibault | d825367 | 2016-12-21 01:38:06 +0100 | [diff] [blame] | 805 | SDL_SysWMinfo info; |
Daniel P. Berrangé | a442fe2 | 2019-01-10 12:00:47 +0000 | [diff] [blame] | 806 | SDL_Surface *icon = NULL; |
Paolo Bonzini | 77d910f | 2020-08-18 11:59:27 +0200 | [diff] [blame] | 807 | char *dir; |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 808 | |
Gerd Hoffmann | fe91f36 | 2018-02-02 12:10:15 +0100 | [diff] [blame] | 809 | assert(o->type == DISPLAY_TYPE_SDL); |
Gerd Hoffmann | fe91f36 | 2018-02-02 12:10:15 +0100 | [diff] [blame] | 810 | |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 811 | #ifdef __linux__ |
| 812 | /* on Linux, SDL may use fbcon|directfb|svgalib when run without |
| 813 | * accessible $DISPLAY to open X11 window. This is often the case |
| 814 | * when qemu is run using sudo. But in this case, and when actually |
| 815 | * run in X11 environment, SDL fights with X11 for the video card, |
| 816 | * making current display unavailable, often until reboot. |
| 817 | * So make x11 the default SDL video driver if this variable is unset. |
| 818 | * This is a bit hackish but saves us from bigger problem. |
| 819 | * Maybe it's a good idea to fix this in SDL instead. |
| 820 | */ |
Marc-André Lureau | e468ffd | 2019-12-11 15:23:28 +0100 | [diff] [blame] | 821 | g_setenv("SDL_VIDEODRIVER", "x11", 0); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 822 | #endif |
| 823 | |
Thomas Huth | 2313e48 | 2018-08-08 11:46:42 +0200 | [diff] [blame] | 824 | if (SDL_Init(SDL_INIT_VIDEO)) { |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 825 | fprintf(stderr, "Could not initialize SDL(%s) - exiting\n", |
| 826 | SDL_GetError()); |
| 827 | exit(1); |
| 828 | } |
Sebastian Krzyszkowiak | 8c2b816 | 2018-10-24 16:37:48 +0200 | [diff] [blame] | 829 | #ifdef SDL_HINT_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR /* only available since SDL 2.0.8 */ |
| 830 | SDL_SetHint(SDL_HINT_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR, "0"); |
| 831 | #endif |
Gerd Hoffmann | 44f017d | 2014-11-11 12:02:50 +0100 | [diff] [blame] | 832 | SDL_SetHint(SDL_HINT_GRAB_KEYBOARD, "1"); |
Samuel Thibault | d825367 | 2016-12-21 01:38:06 +0100 | [diff] [blame] | 833 | memset(&info, 0, sizeof(info)); |
| 834 | SDL_VERSION(&info.version); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 835 | |
Thomas Huth | 6fb34ff | 2018-07-09 20:44:10 +0200 | [diff] [blame] | 836 | gui_fullscreen = o->has_full_screen && o->full_screen; |
| 837 | |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 838 | for (i = 0;; i++) { |
| 839 | QemuConsole *con = qemu_console_lookup_by_index(i); |
Gerd Hoffmann | f233579 | 2014-05-26 14:05:51 +0200 | [diff] [blame] | 840 | if (!con) { |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 841 | break; |
| 842 | } |
| 843 | } |
| 844 | sdl2_num_outputs = i; |
Gerd Hoffmann | 8efa5f2 | 2016-06-01 16:08:36 +0200 | [diff] [blame] | 845 | if (sdl2_num_outputs == 0) { |
| 846 | return; |
| 847 | } |
Gerd Hoffmann | 5d0fe65 | 2014-11-11 10:21:24 +0100 | [diff] [blame] | 848 | sdl2_console = g_new0(struct sdl2_console, sdl2_num_outputs); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 849 | for (i = 0; i < sdl2_num_outputs; i++) { |
| 850 | QemuConsole *con = qemu_console_lookup_by_index(i); |
Gerd Hoffmann | 85970a6 | 2017-06-21 14:22:34 +0200 | [diff] [blame] | 851 | assert(con != NULL); |
Gerd Hoffmann | 6624c38 | 2018-09-12 13:43:00 +0200 | [diff] [blame] | 852 | if (!qemu_console_is_graphic(con) && |
| 853 | qemu_console_get_index(con) != 0) { |
Gerd Hoffmann | f233579 | 2014-05-26 14:05:51 +0200 | [diff] [blame] | 854 | sdl2_console[i].hidden = true; |
| 855 | } |
Gerd Hoffmann | 0b71a5d | 2014-11-11 16:54:45 +0100 | [diff] [blame] | 856 | sdl2_console[i].idx = i; |
Gerd Hoffmann | f88e5c5 | 2018-05-15 07:45:01 +0200 | [diff] [blame] | 857 | sdl2_console[i].opts = o; |
Gerd Hoffmann | 0b71a5d | 2014-11-11 16:54:45 +0100 | [diff] [blame] | 858 | #ifdef CONFIG_OPENGL |
| 859 | sdl2_console[i].opengl = display_opengl; |
| 860 | sdl2_console[i].dcl.ops = display_opengl ? &dcl_gl_ops : &dcl_2d_ops; |
| 861 | #else |
| 862 | sdl2_console[i].opengl = 0; |
Gerd Hoffmann | f1ddebd | 2014-11-11 11:09:26 +0100 | [diff] [blame] | 863 | sdl2_console[i].dcl.ops = &dcl_2d_ops; |
Gerd Hoffmann | 0b71a5d | 2014-11-11 16:54:45 +0100 | [diff] [blame] | 864 | #endif |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 865 | sdl2_console[i].dcl.con = con; |
Gerd Hoffmann | 07333e1 | 2019-01-22 10:28:09 +0100 | [diff] [blame] | 866 | sdl2_console[i].kbd = qkbd_state_init(con); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 867 | register_displaychangelistener(&sdl2_console[i].dcl); |
Samuel Thibault | d825367 | 2016-12-21 01:38:06 +0100 | [diff] [blame] | 868 | |
Gerd Hoffmann | 8417cd0 | 2017-01-13 09:14:45 +0100 | [diff] [blame] | 869 | #if defined(SDL_VIDEO_DRIVER_WINDOWS) || defined(SDL_VIDEO_DRIVER_X11) |
Samuel Thibault | d825367 | 2016-12-21 01:38:06 +0100 | [diff] [blame] | 870 | if (SDL_GetWindowWMInfo(sdl2_console[i].real_window, &info)) { |
Gerd Hoffmann | 8417cd0 | 2017-01-13 09:14:45 +0100 | [diff] [blame] | 871 | #if defined(SDL_VIDEO_DRIVER_WINDOWS) |
| 872 | qemu_console_set_window_id(con, (uintptr_t)info.info.win.window); |
| 873 | #elif defined(SDL_VIDEO_DRIVER_X11) |
Samuel Thibault | d825367 | 2016-12-21 01:38:06 +0100 | [diff] [blame] | 874 | qemu_console_set_window_id(con, info.info.x11.window); |
Gerd Hoffmann | 8417cd0 | 2017-01-13 09:14:45 +0100 | [diff] [blame] | 875 | #endif |
Samuel Thibault | d825367 | 2016-12-21 01:38:06 +0100 | [diff] [blame] | 876 | } |
Gerd Hoffmann | 8417cd0 | 2017-01-13 09:14:45 +0100 | [diff] [blame] | 877 | #endif |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 878 | } |
| 879 | |
Daniel P. Berrangé | a442fe2 | 2019-01-10 12:00:47 +0000 | [diff] [blame] | 880 | #ifdef CONFIG_SDL_IMAGE |
Paolo Bonzini | 77d910f | 2020-08-18 11:59:27 +0200 | [diff] [blame] | 881 | dir = get_relocated_path(CONFIG_QEMU_ICONDIR "/hicolor/128x128/apps/qemu.png"); |
| 882 | icon = IMG_Load(dir); |
Daniel P. Berrangé | a442fe2 | 2019-01-10 12:00:47 +0000 | [diff] [blame] | 883 | #else |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 884 | /* Load a 32x32x4 image. White pixels are transparent. */ |
Paolo Bonzini | 77d910f | 2020-08-18 11:59:27 +0200 | [diff] [blame] | 885 | dir = get_relocated_path(CONFIG_QEMU_ICONDIR "/hicolor/32x32/apps/qemu.bmp"); |
| 886 | icon = SDL_LoadBMP(dir); |
Daniel P. Berrangé | a442fe2 | 2019-01-10 12:00:47 +0000 | [diff] [blame] | 887 | if (icon) { |
| 888 | uint32_t colorkey = SDL_MapRGB(icon->format, 255, 255, 255); |
| 889 | SDL_SetColorKey(icon, SDL_TRUE, colorkey); |
| 890 | } |
| 891 | #endif |
Paolo Bonzini | 77d910f | 2020-08-18 11:59:27 +0200 | [diff] [blame] | 892 | g_free(dir); |
Daniel P. Berrangé | a442fe2 | 2019-01-10 12:00:47 +0000 | [diff] [blame] | 893 | if (icon) { |
| 894 | SDL_SetWindowIcon(sdl2_console[0].real_window, icon); |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 895 | } |
| 896 | |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 897 | mouse_mode_notifier.notify = sdl_mouse_mode_change; |
| 898 | qemu_add_mouse_mode_change_notifier(&mouse_mode_notifier); |
| 899 | |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 900 | sdl_cursor_hidden = SDL_CreateCursor(&data, &data, 8, 1, 0, 0); |
| 901 | sdl_cursor_normal = SDL_GetCursor(); |
| 902 | |
Volker Rümelin | 7dafc67 | 2020-05-16 09:20:10 +0200 | [diff] [blame] | 903 | if (gui_fullscreen) { |
| 904 | sdl_grab_start(&sdl2_console[0]); |
| 905 | } |
| 906 | |
Dave Airlie | 47c0374 | 2013-12-10 14:05:51 +1000 | [diff] [blame] | 907 | atexit(sdl_cleanup); |
| 908 | } |
Gerd Hoffmann | 5ee1718 | 2018-03-01 11:05:36 +0100 | [diff] [blame] | 909 | |
| 910 | static QemuDisplay qemu_display_sdl2 = { |
| 911 | .type = DISPLAY_TYPE_SDL, |
| 912 | .early_init = sdl2_display_early_init, |
| 913 | .init = sdl2_display_init, |
| 914 | }; |
| 915 | |
| 916 | static void register_sdl1(void) |
| 917 | { |
| 918 | qemu_display_register(&qemu_display_sdl2); |
| 919 | } |
| 920 | |
| 921 | type_init(register_sdl1); |