]> git.proxmox.com Git - mirror_qemu.git/blame - include/ui/console.h
virtio-gpu-udmabuf: correct naming of QemuDmaBuf size properties
[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"
9af23989 7#include "qapi/qapi-types-ui.h"
b6596785 8#include "ui/input.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
ec843b97 68bool qemu_mouse_set(int index, Error **errp);
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)
df6322a8 73#define QEMU_KEY_TAB 0x0009
87ecb68b
PB
74#define QEMU_KEY_BACKSPACE 0x007f
75#define QEMU_KEY_UP QEMU_KEY_ESC1('A')
76#define QEMU_KEY_DOWN QEMU_KEY_ESC1('B')
77#define QEMU_KEY_RIGHT QEMU_KEY_ESC1('C')
78#define QEMU_KEY_LEFT QEMU_KEY_ESC1('D')
79#define QEMU_KEY_HOME QEMU_KEY_ESC1(1)
80#define QEMU_KEY_END QEMU_KEY_ESC1(4)
81#define QEMU_KEY_PAGEUP QEMU_KEY_ESC1(5)
82#define QEMU_KEY_PAGEDOWN QEMU_KEY_ESC1(6)
83#define QEMU_KEY_DELETE QEMU_KEY_ESC1(3)
84
85#define QEMU_KEY_CTRL_UP 0xe400
86#define QEMU_KEY_CTRL_DOWN 0xe401
87#define QEMU_KEY_CTRL_LEFT 0xe402
88#define QEMU_KEY_CTRL_RIGHT 0xe403
89#define QEMU_KEY_CTRL_HOME 0xe404
90#define QEMU_KEY_CTRL_END 0xe405
91#define QEMU_KEY_CTRL_PAGEUP 0xe406
92#define QEMU_KEY_CTRL_PAGEDOWN 0xe407
93
3f9a6e85 94void kbd_put_keysym_console(QemuConsole *s, int keysym);
da024b1e 95bool kbd_put_qcode_console(QemuConsole *s, int qcode, bool ctrl);
bdef9724 96void kbd_put_string_console(QemuConsole *s, const char *str, int len);
87ecb68b
PB
97void kbd_put_keysym(int keysym);
98
b6596785
BE
99/* Touch devices */
100typedef struct touch_slot {
101 int x;
102 int y;
103 int tracking_id;
104} touch_slot;
105
106void console_handle_touch_event(QemuConsole *con,
107 struct touch_slot touch_slots[INPUT_EVENT_SLOTS_MAX],
108 uint64_t num_slot,
109 int width, int height,
110 double x, double y,
111 InputMultiTouchType type,
112 Error **errp);
87ecb68b
PB
113/* consoles */
114
95be0669 115#define TYPE_QEMU_CONSOLE "qemu-console"
a489d195 116OBJECT_DECLARE_TYPE(QemuConsole, QemuConsoleClass, QEMU_CONSOLE)
95be0669 117
95be0669
GH
118
119struct QemuConsoleClass {
120 ObjectClass parent_class;
121};
122
77bfcf28 123#define QEMU_ALLOCATED_FLAG 0x01
b5a087b0 124#define QEMU_PLACEHOLDER_FLAG 0x02
7d957bd8 125
ebced091
MAL
126typedef struct ScanoutTexture {
127 uint32_t backing_id;
128 bool backing_y_0_top;
129 uint32_t backing_width;
130 uint32_t backing_height;
131 uint32_t x;
132 uint32_t y;
133 uint32_t width;
134 uint32_t height;
bf41ab61 135 void *d3d_tex2d;
ebced091
MAL
136} ScanoutTexture;
137
7536587c 138typedef struct DisplaySurface {
69c77777
GH
139 pixman_format_code_t format;
140 pixman_image_t *image;
7d957bd8 141 uint8_t flags;
cd2bc889
GH
142#ifdef CONFIG_OPENGL
143 GLenum glformat;
144 GLenum gltype;
145 GLuint texture;
146#endif
09b4c198
MAL
147#ifdef WIN32
148 HANDLE handle;
149 uint32_t handle_offset;
150#endif
7536587c 151} DisplaySurface;
7d957bd8 152
6f90f3d7 153typedef struct QemuUIInfo {
9028ab1f
MAL
154 /* physical dimension */
155 uint16_t width_mm;
156 uint16_t height_mm;
6f90f3d7
GH
157 /* geometry */
158 int xoff;
159 int yoff;
160 uint32_t width;
161 uint32_t height;
aeffd071 162 uint32_t refresh_rate;
6f90f3d7
GH
163} QemuUIInfo;
164
254e5950
GH
165/* cursor data format is 32bit RGBA */
166typedef struct QEMUCursor {
4c93ce54 167 uint16_t width, height;
254e5950
GH
168 int hot_x, hot_y;
169 int refcount;
170 uint32_t data[];
171} QEMUCursor;
172
4c93ce54 173QEMUCursor *cursor_alloc(uint16_t width, uint16_t height);
2512a026 174QEMUCursor *cursor_ref(QEMUCursor *c);
f4579e28 175void cursor_unref(QEMUCursor *c);
254e5950
GH
176QEMUCursor *cursor_builtin_hidden(void);
177QEMUCursor *cursor_builtin_left_ptr(void);
178void cursor_print_ascii_art(QEMUCursor *c, const char *prefix);
179int cursor_get_mono_bpl(QEMUCursor *c);
180void cursor_set_mono(QEMUCursor *c,
181 uint32_t foreground, uint32_t background, uint8_t *image,
182 int transparent, uint8_t *mask);
183void cursor_get_mono_image(QEMUCursor *c, int foreground, uint8_t *mask);
184void cursor_get_mono_mask(QEMUCursor *c, int transparent, uint8_t *mask);
185
06020b95
GH
186typedef void *QEMUGLContext;
187typedef struct QEMUGLParams QEMUGLParams;
188
189struct QEMUGLParams {
190 int major_ver;
191 int minor_ver;
192};
193
dfbb251e 194typedef struct QemuDmaBuf {
4133fa71
GH
195 int fd;
196 uint32_t width;
197 uint32_t height;
198 uint32_t stride;
199 uint32_t fourcc;
152b7af6 200 uint64_t modifier;
4133fa71 201 uint32_t texture;
e86a93f5
DK
202 uint32_t x;
203 uint32_t y;
9ac06df8
DK
204 uint32_t backing_width;
205 uint32_t backing_height;
242d0133 206 bool y0_top;
121abaf3
VK
207 void *sync;
208 int fence_fd;
65b847d2 209 bool allow_fences;
55f4b767 210 bool draw_submitted;
dfbb251e 211} QemuDmaBuf;
4133fa71 212
ebced091
MAL
213enum display_scanout {
214 SCANOUT_NONE,
215 SCANOUT_SURFACE,
216 SCANOUT_TEXTURE,
217 SCANOUT_DMABUF,
218};
219
220typedef struct DisplayScanout {
221 enum display_scanout kind;
222 union {
223 /* DisplaySurface *surface; is kept in QemuConsole */
224 ScanoutTexture texture;
225 QemuDmaBuf *dmabuf;
226 };
227} DisplayScanout;
228
7536587c 229typedef struct DisplayState DisplayState;
5e79d516 230typedef struct DisplayGLCtx DisplayGLCtx;
7536587c 231
7c20b4a3
GH
232typedef struct DisplayChangeListenerOps {
233 const char *dpy_name;
234
227d8444 235 /* optional */
bc2ed970 236 void (*dpy_refresh)(DisplayChangeListener *dcl);
7c20b4a3 237
227d8444 238 /* optional */
7c20b4a3 239 void (*dpy_gfx_update)(DisplayChangeListener *dcl,
7c20b4a3 240 int x, int y, int w, int h);
227d8444 241 /* optional */
c12aeb86 242 void (*dpy_gfx_switch)(DisplayChangeListener *dcl,
c12aeb86 243 struct DisplaySurface *new_surface);
227d8444 244 /* optional */
49743df3
BH
245 bool (*dpy_gfx_check_format)(DisplayChangeListener *dcl,
246 pixman_format_code_t format);
a93a4a22 247
227d8444 248 /* optional */
7c20b4a3 249 void (*dpy_text_cursor)(DisplayChangeListener *dcl,
7c20b4a3 250 int x, int y);
227d8444 251 /* optional */
7c20b4a3 252 void (*dpy_text_resize)(DisplayChangeListener *dcl,
7c20b4a3 253 int w, int h);
227d8444 254 /* optional */
7c20b4a3 255 void (*dpy_text_update)(DisplayChangeListener *dcl,
7c20b4a3
GH
256 int x, int y, int w, int h);
257
227d8444 258 /* optional */
7c20b4a3 259 void (*dpy_mouse_set)(DisplayChangeListener *dcl,
7c20b4a3 260 int x, int y, int on);
227d8444 261 /* optional */
7c20b4a3 262 void (*dpy_cursor_define)(DisplayChangeListener *dcl,
7c20b4a3 263 QEMUCursor *cursor);
06020b95 264
227d8444 265 /* required if GL */
eaa92c76 266 void (*dpy_gl_scanout_disable)(DisplayChangeListener *dcl);
227d8444 267 /* required if GL */
f4c36bda
GH
268 void (*dpy_gl_scanout_texture)(DisplayChangeListener *dcl,
269 uint32_t backing_id,
270 bool backing_y_0_top,
271 uint32_t backing_width,
272 uint32_t backing_height,
273 uint32_t x, uint32_t y,
bf41ab61
MAL
274 uint32_t w, uint32_t h,
275 void *d3d_tex2d);
d0e137bc
MAL
276 /* optional (default to true if has dpy_gl_scanout_dmabuf) */
277 bool (*dpy_has_dmabuf)(DisplayChangeListener *dcl);
227d8444 278 /* optional */
4133fa71
GH
279 void (*dpy_gl_scanout_dmabuf)(DisplayChangeListener *dcl,
280 QemuDmaBuf *dmabuf);
227d8444 281 /* optional */
4133fa71 282 void (*dpy_gl_cursor_dmabuf)(DisplayChangeListener *dcl,
6e1f2cb5
GH
283 QemuDmaBuf *dmabuf, bool have_hot,
284 uint32_t hot_x, uint32_t hot_y);
227d8444 285 /* optional */
6e1f2cb5
GH
286 void (*dpy_gl_cursor_position)(DisplayChangeListener *dcl,
287 uint32_t pos_x, uint32_t pos_y);
227d8444 288 /* optional */
4133fa71
GH
289 void (*dpy_gl_release_dmabuf)(DisplayChangeListener *dcl,
290 QemuDmaBuf *dmabuf);
227d8444 291 /* required if GL */
06020b95
GH
292 void (*dpy_gl_update)(DisplayChangeListener *dcl,
293 uint32_t x, uint32_t y, uint32_t w, uint32_t h);
294
7c20b4a3 295} DisplayChangeListenerOps;
7d957bd8 296
7c20b4a3 297struct DisplayChangeListener {
0f7b2864 298 uint64_t update_interval;
7c20b4a3
GH
299 const DisplayChangeListenerOps *ops;
300 DisplayState *ds;
284d1c6b 301 QemuConsole *con;
bf2fde70 302
87e487a1 303 QLIST_ENTRY(DisplayChangeListener) next;
7d957bd8
AL
304};
305
5e79d516 306typedef struct DisplayGLCtxOps {
a62c4a17
MAL
307 bool (*dpy_gl_ctx_is_compatible_dcl)(DisplayGLCtx *dgc,
308 DisplayChangeListener *dcl);
5e79d516
MAL
309 QEMUGLContext (*dpy_gl_ctx_create)(DisplayGLCtx *dgc,
310 QEMUGLParams *params);
311 void (*dpy_gl_ctx_destroy)(DisplayGLCtx *dgc,
312 QEMUGLContext ctx);
313 int (*dpy_gl_ctx_make_current)(DisplayGLCtx *dgc,
314 QEMUGLContext ctx);
589089fe
MAL
315 void (*dpy_gl_ctx_create_texture)(DisplayGLCtx *dgc,
316 DisplaySurface *surface);
317 void (*dpy_gl_ctx_destroy_texture)(DisplayGLCtx *dgc,
318 DisplaySurface *surface);
319 void (*dpy_gl_ctx_update_texture)(DisplayGLCtx *dgc,
320 DisplaySurface *surface,
321 int x, int y, int w, int h);
5e79d516
MAL
322} DisplayGLCtxOps;
323
324struct DisplayGLCtx {
325 const DisplayGLCtxOps *ops;
589089fe
MAL
326#ifdef CONFIG_OPENGL
327 QemuGLShader *gls; /* optional shared shader */
328#endif
5e79d516
MAL
329};
330
64840c66 331DisplayState *init_displaystate(void);
30f1e661
GH
332DisplaySurface *qemu_create_displaysurface_from(int width, int height,
333 pixman_format_code_t format,
334 int linesize, uint8_t *data);
ca58b45f 335DisplaySurface *qemu_create_displaysurface_pixman(pixman_image_t *image);
b5a087b0
AO
336DisplaySurface *qemu_create_placeholder_surface(int w, int h,
337 const char *msg);
09b4c198
MAL
338#ifdef WIN32
339void qemu_displaysurface_win32_set_handle(DisplaySurface *surface,
340 HANDLE h, uint32_t offset);
341#endif
0da2ea1b 342PixelFormat qemu_default_pixelformat(int bpp);
7d957bd8 343
da229ef3
GH
344DisplaySurface *qemu_create_displaysurface(int width, int height);
345void qemu_free_displaysurface(DisplaySurface *surface);
7b5d76da 346
7d957bd8
AL
347static inline int is_buffer_shared(DisplaySurface *surface)
348{
187cd1d9 349 return !(surface->flags & QEMU_ALLOCATED_FLAG);
7d957bd8
AL
350}
351
b5a087b0
AO
352static inline int is_placeholder(DisplaySurface *surface)
353{
354 return surface->flags & QEMU_PLACEHOLDER_FLAG;
355}
356
5209089f 357void register_displaychangelistener(DisplayChangeListener *dcl);
0f7b2864
GH
358void update_displaychangelistener(DisplayChangeListener *dcl,
359 uint64_t interval);
7c20b4a3
GH
360void unregister_displaychangelistener(DisplayChangeListener *dcl);
361
b7fb49f0 362bool dpy_ui_info_supported(QemuConsole *con);
5eaf1e48 363const QemuUIInfo *dpy_get_ui_info(const QemuConsole *con);
ca19ef52 364int dpy_set_ui_info(QemuConsole *con, QemuUIInfo *info, bool delay);
6f90f3d7 365
c78f7137 366void dpy_gfx_update(QemuConsole *con, int x, int y, int w, int h);
7cd0afe6 367void dpy_gfx_update_full(QemuConsole *con);
c78f7137 368void dpy_gfx_replace_surface(QemuConsole *con,
da229ef3 369 DisplaySurface *surface);
c78f7137
GH
370void dpy_text_cursor(QemuConsole *con, int x, int y);
371void dpy_text_update(QemuConsole *con, int x, int y, int w, int h);
372void dpy_text_resize(QemuConsole *con, int w, int h);
373void dpy_mouse_set(QemuConsole *con, int x, int y, int on);
374void dpy_cursor_define(QemuConsole *con, QEMUCursor *cursor);
375bool dpy_cursor_define_supported(QemuConsole *con);
49743df3
BH
376bool dpy_gfx_check_format(QemuConsole *con,
377 pixman_format_code_t format);
bf2fde70 378
eaa92c76 379void dpy_gl_scanout_disable(QemuConsole *con);
f4c36bda
GH
380void dpy_gl_scanout_texture(QemuConsole *con,
381 uint32_t backing_id, bool backing_y_0_top,
382 uint32_t backing_width, uint32_t backing_height,
bf41ab61
MAL
383 uint32_t x, uint32_t y, uint32_t w, uint32_t h,
384 void *d3d_tex2d);
4133fa71
GH
385void dpy_gl_scanout_dmabuf(QemuConsole *con,
386 QemuDmaBuf *dmabuf);
6e1f2cb5
GH
387void dpy_gl_cursor_dmabuf(QemuConsole *con, QemuDmaBuf *dmabuf,
388 bool have_hot, uint32_t hot_x, uint32_t hot_y);
389void dpy_gl_cursor_position(QemuConsole *con,
390 uint32_t pos_x, uint32_t pos_y);
4133fa71
GH
391void dpy_gl_release_dmabuf(QemuConsole *con,
392 QemuDmaBuf *dmabuf);
06020b95
GH
393void dpy_gl_update(QemuConsole *con,
394 uint32_t x, uint32_t y, uint32_t w, uint32_t h);
395
396QEMUGLContext dpy_gl_ctx_create(QemuConsole *con,
397 QEMUGLParams *params);
398void dpy_gl_ctx_destroy(QemuConsole *con, QEMUGLContext ctx);
399int dpy_gl_ctx_make_current(QemuConsole *con, QEMUGLContext ctx);
06020b95
GH
400
401bool console_has_gl(QemuConsole *con);
402
626e3b34
GH
403static inline int surface_stride(DisplaySurface *s)
404{
405 return pixman_image_get_stride(s->image);
406}
407
408static inline void *surface_data(DisplaySurface *s)
409{
410 return pixman_image_get_data(s->image);
411}
412
413static inline int surface_width(DisplaySurface *s)
414{
415 return pixman_image_get_width(s->image);
416}
417
418static inline int surface_height(DisplaySurface *s)
419{
420 return pixman_image_get_height(s->image);
421}
422
423static inline int surface_bits_per_pixel(DisplaySurface *s)
424{
425 int bits = PIXMAN_FORMAT_BPP(s->format);
426 return bits;
427}
428
429static inline int surface_bytes_per_pixel(DisplaySurface *s)
430{
431 int bits = PIXMAN_FORMAT_BPP(s->format);
d1a0945f 432 return DIV_ROUND_UP(bits, 8);
626e3b34
GH
433}
434
e444ea34
HR
435static inline pixman_format_code_t surface_format(DisplaySurface *s)
436{
437 return s->format;
438}
439
e2f82e92
GH
440typedef uint32_t console_ch_t;
441
c227f099 442static inline void console_write_ch(console_ch_t *dest, uint32_t ch)
4d3b6f6e 443{
9ae19b65 444 *dest = ch;
4d3b6f6e
AZ
445}
446
a7dfbe28
MAL
447enum {
448 GRAPHIC_FLAGS_NONE = 0,
449 /* require a console/display with GL callbacks */
450 GRAPHIC_FLAGS_GL = 1 << 0,
451 /* require a console/display with DMABUF import */
452 GRAPHIC_FLAGS_DMABUF = 1 << 1,
453};
454
380cd056 455typedef struct GraphicHwOps {
a7dfbe28 456 int (*get_flags)(void *opaque); /* optional, default 0 */
380cd056
GH
457 void (*invalidate)(void *opaque);
458 void (*gfx_update)(void *opaque);
4d631621 459 bool gfx_update_async; /* if true, calls graphic_hw_update_done() */
380cd056 460 void (*text_update)(void *opaque, console_ch_t *text);
362239c0 461 void (*ui_info)(void *opaque, uint32_t head, QemuUIInfo *info);
bba19b88 462 void (*gl_block)(void *opaque, bool block);
380cd056 463} GraphicHwOps;
87ecb68b 464
5643706a 465QemuConsole *graphic_console_init(DeviceState *dev, uint32_t head,
aa2beaa1 466 const GraphicHwOps *ops,
c78f7137 467 void *opaque);
1c1f9498
GH
468void graphic_console_set_hwops(QemuConsole *con,
469 const GraphicHwOps *hw_ops,
470 void *opaque);
9588d67e 471void graphic_console_close(QemuConsole *con);
3023f332 472
1dbfa005 473void graphic_hw_update(QemuConsole *con);
4d631621 474void graphic_hw_update_done(QemuConsole *con);
1dbfa005
GH
475void graphic_hw_invalidate(QemuConsole *con);
476void graphic_hw_text_update(QemuConsole *con, console_ch_t *chardata);
bba19b88 477void graphic_hw_gl_block(QemuConsole *con, bool block);
87ecb68b 478
777357d7
MAL
479void qemu_console_early_init(void);
480
5e79d516 481void qemu_console_set_display_gl_ctx(QemuConsole *con, DisplayGLCtx *ctx);
4f418149 482
284d1c6b 483QemuConsole *qemu_console_lookup_by_index(unsigned int index);
5643706a 484QemuConsole *qemu_console_lookup_by_device(DeviceState *dev, uint32_t head);
f2c1d54c
GH
485QemuConsole *qemu_console_lookup_by_device_name(const char *device_id,
486 uint32_t head, Error **errp);
9588d67e 487QemuConsole *qemu_console_lookup_unused(void);
385ac97f 488QEMUCursor *qemu_console_get_cursor(QemuConsole *con);
81c0d5a6
GH
489bool qemu_console_is_visible(QemuConsole *con);
490bool qemu_console_is_graphic(QemuConsole *con);
491bool qemu_console_is_fixedsize(QemuConsole *con);
f607867c 492bool qemu_console_is_gl_blocked(QemuConsole *con);
839a4826 493bool qemu_console_is_multihead(DeviceState *dev);
779ce88f 494char *qemu_console_get_label(QemuConsole *con);
d4c85337 495int qemu_console_get_index(QemuConsole *con);
5643706a 496uint32_t qemu_console_get_head(QemuConsole *con);
d4c85337
GH
497int qemu_console_get_width(QemuConsole *con, int fallback);
498int qemu_console_get_height(QemuConsole *con, int fallback);
b3cb21b9
ST
499/* Return the low-level window id for the console */
500int qemu_console_get_window_id(QemuConsole *con);
501/* Set the low-level window id for the console */
502void qemu_console_set_window_id(QemuConsole *con, int window_id);
81c0d5a6 503
87ecb68b 504void console_select(unsigned int index);
c78f7137 505void qemu_console_resize(QemuConsole *con, int width, int height);
c78f7137 506DisplaySurface *qemu_console_surface(QemuConsole *con);
87ecb68b 507
cd2bc889 508/* console-gl.c */
cd2bc889 509#ifdef CONFIG_OPENGL
cd2bc889
GH
510bool console_gl_check_format(DisplayChangeListener *dcl,
511 pixman_format_code_t format);
46e19e14 512void surface_gl_create_texture(QemuGLShader *gls,
cd2bc889 513 DisplaySurface *surface);
46e19e14 514void surface_gl_update_texture(QemuGLShader *gls,
cd2bc889
GH
515 DisplaySurface *surface,
516 int x, int y, int w, int h);
46e19e14 517void surface_gl_render_texture(QemuGLShader *gls,
cd2bc889 518 DisplaySurface *surface);
46e19e14 519void surface_gl_destroy_texture(QemuGLShader *gls,
cd2bc889 520 DisplaySurface *surface);
46e19e14 521void surface_gl_setup_viewport(QemuGLShader *gls,
cd2bc889
GH
522 DisplaySurface *surface,
523 int ww, int wh);
524#endif
525
db71589f 526typedef struct QemuDisplay QemuDisplay;
87ecb68b 527
db71589f
GH
528struct QemuDisplay {
529 DisplayType type;
530 void (*early_init)(DisplayOptions *opts);
531 void (*init)(DisplayState *ds, DisplayOptions *opts);
532};
533
534void qemu_display_register(QemuDisplay *ui);
898f9d41 535bool qemu_display_find_default(DisplayOptions *opts);
db71589f
GH
536void qemu_display_early_init(DisplayOptions *opts);
537void qemu_display_init(DisplayState *ds, DisplayOptions *opts);
c388f408 538void qemu_display_help(void);
87ecb68b
PB
539
540/* vnc.c */
ab4f931e 541void vnc_display_init(const char *id, Error **errp);
4db14629 542void vnc_display_open(const char *id, Error **errp);
14f7143e 543void vnc_display_add_client(const char *id, int csock, bool skipauth);
14f7143e
GH
544int vnc_display_password(const char *id, const char *password);
545int vnc_display_pw_expire(const char *id, time_t expires);
653c9747 546void vnc_parse(const char *str);
28d0de7a 547int vnc_init_func(void *opaque, QemuOpts *opts, Error **errp);
1f08e341 548bool vnc_display_reload_certs(const char *id, Error **errp);
abea1946 549bool vnc_display_update(DisplayUpdateOptionsVNC *arg, Error **errp);
87ecb68b 550
1048c88f 551/* input.c */
64ffbe04 552int index_from_key(const char *key, size_t key_length);
1048c88f 553
b956577a 554#ifdef CONFIG_LINUX
87f12216
VK
555/* udmabuf.c */
556int udmabuf_fd(void);
b956577a 557#endif
87f12216 558
f6ef71bd
MAL
559/* util.c */
560bool qemu_console_fill_device_address(QemuConsole *con,
561 char *device_address,
562 size_t size,
563 Error **errp);
564
87ecb68b 565#endif