]> git.proxmox.com Git - mirror_qemu.git/blame - include/ui/console.h
ui/cocoa: Replace fprintf with error_report
[mirror_qemu.git] / include / ui / console.h
CommitLineData
87ecb68b
PB
1#ifndef CONSOLE_H
2#define CONSOLE_H
3
28ecbaee 4#include "ui/qemu-pixman.h"
95be0669 5#include "qom/object.h"
1de7afc9 6#include "qemu/notify.h"
f8c75b24 7#include "qemu/error-report.h"
9af23989 8#include "qapi/qapi-types-ui.h"
87ecb68b 9
cd2bc889 10#ifdef CONFIG_OPENGL
dcf30025 11# include <epoxy/gl.h>
46e19e14 12# include "ui/shader.h"
cd2bc889
GH
13#endif
14
87ecb68b
PB
15/* keyboard/mouse support */
16
17#define MOUSE_EVENT_LBUTTON 0x01
18#define MOUSE_EVENT_RBUTTON 0x02
19#define MOUSE_EVENT_MBUTTON 0x04
21bae11a
GH
20#define MOUSE_EVENT_WHEELUP 0x08
21#define MOUSE_EVENT_WHEELDN 0x10
87ecb68b 22
03a23a85
GH
23/* identical to the ps/2 keyboard bits */
24#define QEMU_SCROLL_LOCK_LED (1 << 0)
25#define QEMU_NUM_LOCK_LED (1 << 1)
26#define QEMU_CAPS_LOCK_LED (1 << 2)
27
7ed9eba3 28/* in ms */
0f7b2864
GH
29#define GUI_REFRESH_INTERVAL_DEFAULT 30
30#define GUI_REFRESH_INTERVAL_IDLE 3000
7ed9eba3 31
4083733d
OH
32/* Color number is match to standard vga palette */
33enum qemu_color_names {
34 QEMU_COLOR_BLACK = 0,
35 QEMU_COLOR_BLUE = 1,
36 QEMU_COLOR_GREEN = 2,
37 QEMU_COLOR_CYAN = 3,
38 QEMU_COLOR_RED = 4,
39 QEMU_COLOR_MAGENTA = 5,
40 QEMU_COLOR_YELLOW = 6,
41 QEMU_COLOR_WHITE = 7
42};
43/* Convert to curses char attributes */
44#define ATTR2CHTYPE(c, fg, bg, bold) \
45 ((bold) << 21 | (bg) << 11 | (fg) << 8 | (c))
46
87ecb68b 47typedef void QEMUPutKBDEvent(void *opaque, int keycode);
03a23a85 48typedef void QEMUPutLEDEvent(void *opaque, int ledstate);
87ecb68b
PB
49typedef void QEMUPutMouseEvent(void *opaque, int dx, int dy, int dz, int buttons_state);
50
72711efb 51typedef struct QEMUPutMouseEntry QEMUPutMouseEntry;
5a37532d 52typedef struct QEMUPutKbdEntry QEMUPutKbdEntry;
72711efb 53typedef struct QEMUPutLEDEntry QEMUPutLEDEntry;
03a23a85 54
5a37532d
GH
55QEMUPutKbdEntry *qemu_add_kbd_event_handler(QEMUPutKBDEvent *func,
56 void *opaque);
87ecb68b
PB
57QEMUPutMouseEntry *qemu_add_mouse_event_handler(QEMUPutMouseEvent *func,
58 void *opaque, int absolute,
59 const char *name);
60void qemu_remove_mouse_event_handler(QEMUPutMouseEntry *entry);
6fef28ee
AL
61void qemu_activate_mouse_event_handler(QEMUPutMouseEntry *entry);
62
03a23a85
GH
63QEMUPutLEDEntry *qemu_add_led_event_handler(QEMUPutLEDEvent *func, void *opaque);
64void qemu_remove_led_event_handler(QEMUPutLEDEntry *entry);
87ecb68b 65
03a23a85 66void kbd_put_ledstate(int ledstate);
eb2e259d 67
3e5a50d6 68void hmp_mouse_set(Monitor *mon, const QDict *qdict);
87ecb68b
PB
69
70/* keysym is a unicode code except for special keys (see QEMU_KEY_xxx
71 constants) */
72#define QEMU_KEY_ESC1(c) ((c) | 0xe100)
73#define QEMU_KEY_BACKSPACE 0x007f
74#define QEMU_KEY_UP QEMU_KEY_ESC1('A')
75#define QEMU_KEY_DOWN QEMU_KEY_ESC1('B')
76#define QEMU_KEY_RIGHT QEMU_KEY_ESC1('C')
77#define QEMU_KEY_LEFT QEMU_KEY_ESC1('D')
78#define QEMU_KEY_HOME QEMU_KEY_ESC1(1)
79#define QEMU_KEY_END QEMU_KEY_ESC1(4)
80#define QEMU_KEY_PAGEUP QEMU_KEY_ESC1(5)
81#define QEMU_KEY_PAGEDOWN QEMU_KEY_ESC1(6)
82#define QEMU_KEY_DELETE QEMU_KEY_ESC1(3)
83
84#define QEMU_KEY_CTRL_UP 0xe400
85#define QEMU_KEY_CTRL_DOWN 0xe401
86#define QEMU_KEY_CTRL_LEFT 0xe402
87#define QEMU_KEY_CTRL_RIGHT 0xe403
88#define QEMU_KEY_CTRL_HOME 0xe404
89#define QEMU_KEY_CTRL_END 0xe405
90#define QEMU_KEY_CTRL_PAGEUP 0xe406
91#define QEMU_KEY_CTRL_PAGEDOWN 0xe407
92
3f9a6e85 93void kbd_put_keysym_console(QemuConsole *s, int keysym);
da024b1e 94bool kbd_put_qcode_console(QemuConsole *s, int qcode, bool ctrl);
bdef9724 95void kbd_put_string_console(QemuConsole *s, const char *str, int len);
87ecb68b
PB
96void kbd_put_keysym(int keysym);
97
98/* consoles */
99
95be0669 100#define TYPE_QEMU_CONSOLE "qemu-console"
a489d195 101OBJECT_DECLARE_TYPE(QemuConsole, QemuConsoleClass, QEMU_CONSOLE)
95be0669 102
95be0669
GH
103
104struct QemuConsoleClass {
105 ObjectClass parent_class;
106};
107
77bfcf28 108#define QEMU_ALLOCATED_FLAG 0x01
7d957bd8 109
7536587c 110typedef struct DisplaySurface {
69c77777
GH
111 pixman_format_code_t format;
112 pixman_image_t *image;
7d957bd8 113 uint8_t flags;
cd2bc889
GH
114#ifdef CONFIG_OPENGL
115 GLenum glformat;
116 GLenum gltype;
117 GLuint texture;
118#endif
7536587c 119} DisplaySurface;
7d957bd8 120
6f90f3d7 121typedef struct QemuUIInfo {
9028ab1f
MAL
122 /* physical dimension */
123 uint16_t width_mm;
124 uint16_t height_mm;
6f90f3d7
GH
125 /* geometry */
126 int xoff;
127 int yoff;
128 uint32_t width;
129 uint32_t height;
130} QemuUIInfo;
131
254e5950
GH
132/* cursor data format is 32bit RGBA */
133typedef struct QEMUCursor {
134 int width, height;
135 int hot_x, hot_y;
136 int refcount;
137 uint32_t data[];
138} QEMUCursor;
139
140QEMUCursor *cursor_alloc(int width, int height);
141void cursor_get(QEMUCursor *c);
142void cursor_put(QEMUCursor *c);
143QEMUCursor *cursor_builtin_hidden(void);
144QEMUCursor *cursor_builtin_left_ptr(void);
145void cursor_print_ascii_art(QEMUCursor *c, const char *prefix);
146int cursor_get_mono_bpl(QEMUCursor *c);
147void cursor_set_mono(QEMUCursor *c,
148 uint32_t foreground, uint32_t background, uint8_t *image,
149 int transparent, uint8_t *mask);
150void cursor_get_mono_image(QEMUCursor *c, int foreground, uint8_t *mask);
151void cursor_get_mono_mask(QEMUCursor *c, int transparent, uint8_t *mask);
152
06020b95
GH
153typedef void *QEMUGLContext;
154typedef struct QEMUGLParams QEMUGLParams;
155
156struct QEMUGLParams {
157 int major_ver;
158 int minor_ver;
159};
160
dfbb251e 161typedef struct QemuDmaBuf {
4133fa71
GH
162 int fd;
163 uint32_t width;
164 uint32_t height;
165 uint32_t stride;
166 uint32_t fourcc;
152b7af6 167 uint64_t modifier;
4133fa71 168 uint32_t texture;
242d0133 169 bool y0_top;
dfbb251e 170} QemuDmaBuf;
4133fa71 171
7536587c
PMD
172typedef struct DisplayState DisplayState;
173
7c20b4a3
GH
174typedef struct DisplayChangeListenerOps {
175 const char *dpy_name;
176
227d8444 177 /* optional */
bc2ed970 178 void (*dpy_refresh)(DisplayChangeListener *dcl);
7c20b4a3 179
227d8444 180 /* optional */
7c20b4a3 181 void (*dpy_gfx_update)(DisplayChangeListener *dcl,
7c20b4a3 182 int x, int y, int w, int h);
227d8444 183 /* optional */
c12aeb86 184 void (*dpy_gfx_switch)(DisplayChangeListener *dcl,
c12aeb86 185 struct DisplaySurface *new_surface);
227d8444 186 /* optional */
49743df3
BH
187 bool (*dpy_gfx_check_format)(DisplayChangeListener *dcl,
188 pixman_format_code_t format);
a93a4a22 189
227d8444 190 /* optional */
7c20b4a3 191 void (*dpy_text_cursor)(DisplayChangeListener *dcl,
7c20b4a3 192 int x, int y);
227d8444 193 /* optional */
7c20b4a3 194 void (*dpy_text_resize)(DisplayChangeListener *dcl,
7c20b4a3 195 int w, int h);
227d8444 196 /* optional */
7c20b4a3 197 void (*dpy_text_update)(DisplayChangeListener *dcl,
7c20b4a3
GH
198 int x, int y, int w, int h);
199
227d8444 200 /* optional */
7c20b4a3 201 void (*dpy_mouse_set)(DisplayChangeListener *dcl,
7c20b4a3 202 int x, int y, int on);
227d8444 203 /* optional */
7c20b4a3 204 void (*dpy_cursor_define)(DisplayChangeListener *dcl,
7c20b4a3 205 QEMUCursor *cursor);
06020b95 206
227d8444 207 /* required if GL */
06020b95
GH
208 QEMUGLContext (*dpy_gl_ctx_create)(DisplayChangeListener *dcl,
209 QEMUGLParams *params);
227d8444 210 /* required if GL */
06020b95
GH
211 void (*dpy_gl_ctx_destroy)(DisplayChangeListener *dcl,
212 QEMUGLContext ctx);
227d8444 213 /* required if GL */
06020b95
GH
214 int (*dpy_gl_ctx_make_current)(DisplayChangeListener *dcl,
215 QEMUGLContext ctx);
06020b95 216
227d8444 217 /* required if GL */
eaa92c76 218 void (*dpy_gl_scanout_disable)(DisplayChangeListener *dcl);
227d8444 219 /* required if GL */
f4c36bda
GH
220 void (*dpy_gl_scanout_texture)(DisplayChangeListener *dcl,
221 uint32_t backing_id,
222 bool backing_y_0_top,
223 uint32_t backing_width,
224 uint32_t backing_height,
225 uint32_t x, uint32_t y,
226 uint32_t w, uint32_t h);
d0e137bc
MAL
227 /* optional (default to true if has dpy_gl_scanout_dmabuf) */
228 bool (*dpy_has_dmabuf)(DisplayChangeListener *dcl);
227d8444 229 /* optional */
4133fa71
GH
230 void (*dpy_gl_scanout_dmabuf)(DisplayChangeListener *dcl,
231 QemuDmaBuf *dmabuf);
227d8444 232 /* optional */
4133fa71 233 void (*dpy_gl_cursor_dmabuf)(DisplayChangeListener *dcl,
6e1f2cb5
GH
234 QemuDmaBuf *dmabuf, bool have_hot,
235 uint32_t hot_x, uint32_t hot_y);
227d8444 236 /* optional */
6e1f2cb5
GH
237 void (*dpy_gl_cursor_position)(DisplayChangeListener *dcl,
238 uint32_t pos_x, uint32_t pos_y);
227d8444 239 /* optional */
4133fa71
GH
240 void (*dpy_gl_release_dmabuf)(DisplayChangeListener *dcl,
241 QemuDmaBuf *dmabuf);
227d8444 242 /* required if GL */
06020b95
GH
243 void (*dpy_gl_update)(DisplayChangeListener *dcl,
244 uint32_t x, uint32_t y, uint32_t w, uint32_t h);
245
7c20b4a3 246} DisplayChangeListenerOps;
7d957bd8 247
7c20b4a3 248struct DisplayChangeListener {
0f7b2864 249 uint64_t update_interval;
7c20b4a3
GH
250 const DisplayChangeListenerOps *ops;
251 DisplayState *ds;
284d1c6b 252 QemuConsole *con;
bf2fde70 253
87e487a1 254 QLIST_ENTRY(DisplayChangeListener) next;
7d957bd8
AL
255};
256
64840c66 257DisplayState *init_displaystate(void);
30f1e661
GH
258DisplaySurface *qemu_create_displaysurface_from(int width, int height,
259 pixman_format_code_t format,
260 int linesize, uint8_t *data);
ca58b45f 261DisplaySurface *qemu_create_displaysurface_pixman(pixman_image_t *image);
2e5567c9
GH
262DisplaySurface *qemu_create_message_surface(int w, int h,
263 const char *msg);
0da2ea1b 264PixelFormat qemu_default_pixelformat(int bpp);
7d957bd8 265
da229ef3
GH
266DisplaySurface *qemu_create_displaysurface(int width, int height);
267void qemu_free_displaysurface(DisplaySurface *surface);
7b5d76da
AL
268
269static inline int is_surface_bgr(DisplaySurface *surface)
270{
30f1e661
GH
271 if (PIXMAN_FORMAT_BPP(surface->format) == 32 &&
272 PIXMAN_FORMAT_TYPE(surface->format) == PIXMAN_TYPE_ABGR) {
7b5d76da 273 return 1;
30f1e661 274 } else {
7b5d76da 275 return 0;
30f1e661 276 }
7b5d76da
AL
277}
278
7d957bd8
AL
279static inline int is_buffer_shared(DisplaySurface *surface)
280{
187cd1d9 281 return !(surface->flags & QEMU_ALLOCATED_FLAG);
7d957bd8
AL
282}
283
5209089f 284void register_displaychangelistener(DisplayChangeListener *dcl);
0f7b2864
GH
285void update_displaychangelistener(DisplayChangeListener *dcl,
286 uint64_t interval);
7c20b4a3
GH
287void unregister_displaychangelistener(DisplayChangeListener *dcl);
288
b7fb49f0 289bool dpy_ui_info_supported(QemuConsole *con);
5eaf1e48 290const QemuUIInfo *dpy_get_ui_info(const QemuConsole *con);
6f90f3d7
GH
291int dpy_set_ui_info(QemuConsole *con, QemuUIInfo *info);
292
c78f7137 293void dpy_gfx_update(QemuConsole *con, int x, int y, int w, int h);
7cd0afe6 294void dpy_gfx_update_full(QemuConsole *con);
c78f7137 295void dpy_gfx_replace_surface(QemuConsole *con,
da229ef3 296 DisplaySurface *surface);
c78f7137
GH
297void dpy_text_cursor(QemuConsole *con, int x, int y);
298void dpy_text_update(QemuConsole *con, int x, int y, int w, int h);
299void dpy_text_resize(QemuConsole *con, int w, int h);
300void dpy_mouse_set(QemuConsole *con, int x, int y, int on);
301void dpy_cursor_define(QemuConsole *con, QEMUCursor *cursor);
302bool dpy_cursor_define_supported(QemuConsole *con);
49743df3
BH
303bool dpy_gfx_check_format(QemuConsole *con,
304 pixman_format_code_t format);
bf2fde70 305
eaa92c76 306void dpy_gl_scanout_disable(QemuConsole *con);
f4c36bda
GH
307void dpy_gl_scanout_texture(QemuConsole *con,
308 uint32_t backing_id, bool backing_y_0_top,
309 uint32_t backing_width, uint32_t backing_height,
310 uint32_t x, uint32_t y, uint32_t w, uint32_t h);
4133fa71
GH
311void dpy_gl_scanout_dmabuf(QemuConsole *con,
312 QemuDmaBuf *dmabuf);
6e1f2cb5
GH
313void dpy_gl_cursor_dmabuf(QemuConsole *con, QemuDmaBuf *dmabuf,
314 bool have_hot, uint32_t hot_x, uint32_t hot_y);
315void dpy_gl_cursor_position(QemuConsole *con,
316 uint32_t pos_x, uint32_t pos_y);
4133fa71
GH
317void dpy_gl_release_dmabuf(QemuConsole *con,
318 QemuDmaBuf *dmabuf);
06020b95
GH
319void dpy_gl_update(QemuConsole *con,
320 uint32_t x, uint32_t y, uint32_t w, uint32_t h);
321
322QEMUGLContext dpy_gl_ctx_create(QemuConsole *con,
323 QEMUGLParams *params);
324void dpy_gl_ctx_destroy(QemuConsole *con, QEMUGLContext ctx);
325int dpy_gl_ctx_make_current(QemuConsole *con, QEMUGLContext ctx);
06020b95
GH
326
327bool console_has_gl(QemuConsole *con);
328
626e3b34
GH
329static inline int surface_stride(DisplaySurface *s)
330{
331 return pixman_image_get_stride(s->image);
332}
333
334static inline void *surface_data(DisplaySurface *s)
335{
336 return pixman_image_get_data(s->image);
337}
338
339static inline int surface_width(DisplaySurface *s)
340{
341 return pixman_image_get_width(s->image);
342}
343
344static inline int surface_height(DisplaySurface *s)
345{
346 return pixman_image_get_height(s->image);
347}
348
349static inline int surface_bits_per_pixel(DisplaySurface *s)
350{
351 int bits = PIXMAN_FORMAT_BPP(s->format);
352 return bits;
353}
354
355static inline int surface_bytes_per_pixel(DisplaySurface *s)
356{
357 int bits = PIXMAN_FORMAT_BPP(s->format);
d1a0945f 358 return DIV_ROUND_UP(bits, 8);
626e3b34
GH
359}
360
e444ea34
HR
361static inline pixman_format_code_t surface_format(DisplaySurface *s)
362{
363 return s->format;
364}
365
e2f82e92
GH
366typedef uint32_t console_ch_t;
367
c227f099 368static inline void console_write_ch(console_ch_t *dest, uint32_t ch)
4d3b6f6e 369{
9ae19b65 370 *dest = ch;
4d3b6f6e
AZ
371}
372
a7dfbe28
MAL
373enum {
374 GRAPHIC_FLAGS_NONE = 0,
375 /* require a console/display with GL callbacks */
376 GRAPHIC_FLAGS_GL = 1 << 0,
377 /* require a console/display with DMABUF import */
378 GRAPHIC_FLAGS_DMABUF = 1 << 1,
379};
380
380cd056 381typedef struct GraphicHwOps {
a7dfbe28 382 int (*get_flags)(void *opaque); /* optional, default 0 */
380cd056
GH
383 void (*invalidate)(void *opaque);
384 void (*gfx_update)(void *opaque);
4d631621 385 bool gfx_update_async; /* if true, calls graphic_hw_update_done() */
380cd056 386 void (*text_update)(void *opaque, console_ch_t *text);
dea1b0bd 387 void (*update_interval)(void *opaque, uint64_t interval);
6f90f3d7 388 int (*ui_info)(void *opaque, uint32_t head, QemuUIInfo *info);
bba19b88 389 void (*gl_block)(void *opaque, bool block);
3cddb8b9 390 void (*gl_flushed)(void *opaque);
380cd056 391} GraphicHwOps;
87ecb68b 392
5643706a 393QemuConsole *graphic_console_init(DeviceState *dev, uint32_t head,
aa2beaa1 394 const GraphicHwOps *ops,
c78f7137 395 void *opaque);
1c1f9498
GH
396void graphic_console_set_hwops(QemuConsole *con,
397 const GraphicHwOps *hw_ops,
398 void *opaque);
9588d67e 399void graphic_console_close(QemuConsole *con);
3023f332 400
1dbfa005 401void graphic_hw_update(QemuConsole *con);
4d631621 402void graphic_hw_update_done(QemuConsole *con);
1dbfa005
GH
403void graphic_hw_invalidate(QemuConsole *con);
404void graphic_hw_text_update(QemuConsole *con, console_ch_t *chardata);
bba19b88 405void graphic_hw_gl_block(QemuConsole *con, bool block);
3cddb8b9 406void graphic_hw_gl_flushed(QemuConsole *con);
87ecb68b 407
777357d7
MAL
408void qemu_console_early_init(void);
409
284d1c6b 410QemuConsole *qemu_console_lookup_by_index(unsigned int index);
5643706a 411QemuConsole *qemu_console_lookup_by_device(DeviceState *dev, uint32_t head);
f2c1d54c
GH
412QemuConsole *qemu_console_lookup_by_device_name(const char *device_id,
413 uint32_t head, Error **errp);
9588d67e 414QemuConsole *qemu_console_lookup_unused(void);
81c0d5a6
GH
415bool qemu_console_is_visible(QemuConsole *con);
416bool qemu_console_is_graphic(QemuConsole *con);
417bool qemu_console_is_fixedsize(QemuConsole *con);
f607867c 418bool qemu_console_is_gl_blocked(QemuConsole *con);
779ce88f 419char *qemu_console_get_label(QemuConsole *con);
d4c85337 420int qemu_console_get_index(QemuConsole *con);
5643706a 421uint32_t qemu_console_get_head(QemuConsole *con);
d4c85337
GH
422int qemu_console_get_width(QemuConsole *con, int fallback);
423int qemu_console_get_height(QemuConsole *con, int fallback);
b3cb21b9
ST
424/* Return the low-level window id for the console */
425int qemu_console_get_window_id(QemuConsole *con);
426/* Set the low-level window id for the console */
427void qemu_console_set_window_id(QemuConsole *con, int window_id);
81c0d5a6 428
87ecb68b 429void console_select(unsigned int index);
c78f7137 430void qemu_console_resize(QemuConsole *con, int width, int height);
c78f7137 431DisplaySurface *qemu_console_surface(QemuConsole *con);
87ecb68b 432
cd2bc889 433/* console-gl.c */
cd2bc889 434#ifdef CONFIG_OPENGL
cd2bc889
GH
435bool console_gl_check_format(DisplayChangeListener *dcl,
436 pixman_format_code_t format);
46e19e14 437void surface_gl_create_texture(QemuGLShader *gls,
cd2bc889 438 DisplaySurface *surface);
46e19e14 439void surface_gl_update_texture(QemuGLShader *gls,
cd2bc889
GH
440 DisplaySurface *surface,
441 int x, int y, int w, int h);
46e19e14 442void surface_gl_render_texture(QemuGLShader *gls,
cd2bc889 443 DisplaySurface *surface);
46e19e14 444void surface_gl_destroy_texture(QemuGLShader *gls,
cd2bc889 445 DisplaySurface *surface);
46e19e14 446void surface_gl_setup_viewport(QemuGLShader *gls,
cd2bc889
GH
447 DisplaySurface *surface,
448 int ww, int wh);
449#endif
450
db71589f 451typedef struct QemuDisplay QemuDisplay;
87ecb68b 452
db71589f
GH
453struct QemuDisplay {
454 DisplayType type;
455 void (*early_init)(DisplayOptions *opts);
456 void (*init)(DisplayState *ds, DisplayOptions *opts);
457};
458
459void qemu_display_register(QemuDisplay *ui);
898f9d41 460bool qemu_display_find_default(DisplayOptions *opts);
db71589f
GH
461void qemu_display_early_init(DisplayOptions *opts);
462void qemu_display_init(DisplayState *ds, DisplayOptions *opts);
c388f408 463void qemu_display_help(void);
87ecb68b
PB
464
465/* vnc.c */
ab4f931e 466void vnc_display_init(const char *id, Error **errp);
4db14629 467void vnc_display_open(const char *id, Error **errp);
14f7143e 468void vnc_display_add_client(const char *id, int csock, bool skipauth);
14f7143e
GH
469int vnc_display_password(const char *id, const char *password);
470int vnc_display_pw_expire(const char *id, time_t expires);
653c9747 471void vnc_parse(const char *str);
28d0de7a 472int vnc_init_func(void *opaque, QemuOpts *opts, Error **errp);
87ecb68b 473
1048c88f 474/* input.c */
64ffbe04 475int index_from_key(const char *key, size_t key_length);
1048c88f 476
87ecb68b 477#endif