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