]> git.proxmox.com Git - mirror_qemu.git/blame - include/ui/console.h
block: Add Error parameter to bdrv_set_backing_hd()
[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"
7b1b5d19 6#include "qapi/qmp/qdict.h"
1de7afc9 7#include "qemu/notify.h"
1048c88f 8#include "qapi-types.h"
f8c75b24
EH
9#include "qemu/error-report.h"
10#include "qapi/error.h"
87ecb68b 11
cd2bc889 12#ifdef CONFIG_OPENGL
dcf30025 13# include <epoxy/gl.h>
cd2bc889
GH
14#endif
15
87ecb68b
PB
16/* keyboard/mouse support */
17
18#define MOUSE_EVENT_LBUTTON 0x01
19#define MOUSE_EVENT_RBUTTON 0x02
20#define MOUSE_EVENT_MBUTTON 0x04
21bae11a
GH
21#define MOUSE_EVENT_WHEELUP 0x08
22#define MOUSE_EVENT_WHEELDN 0x10
87ecb68b 23
03a23a85
GH
24/* identical to the ps/2 keyboard bits */
25#define QEMU_SCROLL_LOCK_LED (1 << 0)
26#define QEMU_NUM_LOCK_LED (1 << 1)
27#define QEMU_CAPS_LOCK_LED (1 << 2)
28
7ed9eba3 29/* in ms */
0f7b2864
GH
30#define GUI_REFRESH_INTERVAL_DEFAULT 30
31#define GUI_REFRESH_INTERVAL_IDLE 3000
7ed9eba3 32
4083733d
OH
33/* Color number is match to standard vga palette */
34enum qemu_color_names {
35 QEMU_COLOR_BLACK = 0,
36 QEMU_COLOR_BLUE = 1,
37 QEMU_COLOR_GREEN = 2,
38 QEMU_COLOR_CYAN = 3,
39 QEMU_COLOR_RED = 4,
40 QEMU_COLOR_MAGENTA = 5,
41 QEMU_COLOR_YELLOW = 6,
42 QEMU_COLOR_WHITE = 7
43};
44/* Convert to curses char attributes */
45#define ATTR2CHTYPE(c, fg, bg, bold) \
46 ((bold) << 21 | (bg) << 11 | (fg) << 8 | (c))
47
87ecb68b 48typedef void QEMUPutKBDEvent(void *opaque, int keycode);
03a23a85 49typedef void QEMUPutLEDEvent(void *opaque, int ledstate);
87ecb68b
PB
50typedef void QEMUPutMouseEvent(void *opaque, int dx, int dy, int dz, int buttons_state);
51
72711efb 52typedef struct QEMUPutMouseEntry QEMUPutMouseEntry;
5a37532d 53typedef struct QEMUPutKbdEntry QEMUPutKbdEntry;
72711efb 54typedef struct QEMUPutLEDEntry QEMUPutLEDEntry;
03a23a85 55
5a37532d
GH
56QEMUPutKbdEntry *qemu_add_kbd_event_handler(QEMUPutKBDEvent *func,
57 void *opaque);
87ecb68b
PB
58QEMUPutMouseEntry *qemu_add_mouse_event_handler(QEMUPutMouseEvent *func,
59 void *opaque, int absolute,
60 const char *name);
61void qemu_remove_mouse_event_handler(QEMUPutMouseEntry *entry);
6fef28ee
AL
62void qemu_activate_mouse_event_handler(QEMUPutMouseEntry *entry);
63
03a23a85
GH
64QEMUPutLEDEntry *qemu_add_led_event_handler(QEMUPutLEDEvent *func, void *opaque);
65void qemu_remove_led_event_handler(QEMUPutLEDEntry *entry);
87ecb68b 66
03a23a85 67void kbd_put_ledstate(int ledstate);
eb2e259d 68
bc24a225 69struct MouseTransformInfo {
a5d7eb65
AZ
70 /* Touchscreen resolution */
71 int x;
72 int y;
73 /* Calibration values as used/generated by tslib */
74 int a[7];
75};
76
3e5a50d6 77void hmp_mouse_set(Monitor *mon, const QDict *qdict);
87ecb68b
PB
78
79/* keysym is a unicode code except for special keys (see QEMU_KEY_xxx
80 constants) */
81#define QEMU_KEY_ESC1(c) ((c) | 0xe100)
82#define QEMU_KEY_BACKSPACE 0x007f
83#define QEMU_KEY_UP QEMU_KEY_ESC1('A')
84#define QEMU_KEY_DOWN QEMU_KEY_ESC1('B')
85#define QEMU_KEY_RIGHT QEMU_KEY_ESC1('C')
86#define QEMU_KEY_LEFT QEMU_KEY_ESC1('D')
87#define QEMU_KEY_HOME QEMU_KEY_ESC1(1)
88#define QEMU_KEY_END QEMU_KEY_ESC1(4)
89#define QEMU_KEY_PAGEUP QEMU_KEY_ESC1(5)
90#define QEMU_KEY_PAGEDOWN QEMU_KEY_ESC1(6)
91#define QEMU_KEY_DELETE QEMU_KEY_ESC1(3)
92
93#define QEMU_KEY_CTRL_UP 0xe400
94#define QEMU_KEY_CTRL_DOWN 0xe401
95#define QEMU_KEY_CTRL_LEFT 0xe402
96#define QEMU_KEY_CTRL_RIGHT 0xe403
97#define QEMU_KEY_CTRL_HOME 0xe404
98#define QEMU_KEY_CTRL_END 0xe405
99#define QEMU_KEY_CTRL_PAGEUP 0xe406
100#define QEMU_KEY_CTRL_PAGEDOWN 0xe407
101
3f9a6e85 102void kbd_put_keysym_console(QemuConsole *s, int keysym);
50ef4679 103bool kbd_put_qcode_console(QemuConsole *s, int qcode);
bdef9724 104void kbd_put_string_console(QemuConsole *s, const char *str, int len);
87ecb68b
PB
105void kbd_put_keysym(int keysym);
106
107/* consoles */
108
95be0669
GH
109#define TYPE_QEMU_CONSOLE "qemu-console"
110#define QEMU_CONSOLE(obj) \
111 OBJECT_CHECK(QemuConsole, (obj), TYPE_QEMU_CONSOLE)
112#define QEMU_CONSOLE_GET_CLASS(obj) \
113 OBJECT_GET_CLASS(QemuConsoleClass, (obj), TYPE_QEMU_CONSOLE)
114#define QEMU_CONSOLE_CLASS(klass) \
115 OBJECT_CLASS_CHECK(QemuConsoleClass, (klass), TYPE_QEMU_CONSOLE)
116
117typedef struct QemuConsoleClass QemuConsoleClass;
118
119struct QemuConsoleClass {
120 ObjectClass parent_class;
121};
122
77bfcf28 123#define QEMU_ALLOCATED_FLAG 0x01
7d957bd8
AL
124
125struct PixelFormat {
126 uint8_t bits_per_pixel;
127 uint8_t bytes_per_pixel;
128 uint8_t depth; /* color depth in bits */
129 uint32_t rmask, gmask, bmask, amask;
130 uint8_t rshift, gshift, bshift, ashift;
131 uint8_t rmax, gmax, bmax, amax;
90a1e3c0 132 uint8_t rbits, gbits, bbits, abits;
7d957bd8
AL
133};
134
135struct DisplaySurface {
69c77777
GH
136 pixman_format_code_t format;
137 pixman_image_t *image;
7d957bd8 138 uint8_t flags;
cd2bc889
GH
139#ifdef CONFIG_OPENGL
140 GLenum glformat;
141 GLenum gltype;
142 GLuint texture;
143#endif
7d957bd8
AL
144};
145
6f90f3d7
GH
146typedef struct QemuUIInfo {
147 /* geometry */
148 int xoff;
149 int yoff;
150 uint32_t width;
151 uint32_t height;
152} QemuUIInfo;
153
254e5950
GH
154/* cursor data format is 32bit RGBA */
155typedef struct QEMUCursor {
156 int width, height;
157 int hot_x, hot_y;
158 int refcount;
159 uint32_t data[];
160} QEMUCursor;
161
162QEMUCursor *cursor_alloc(int width, int height);
163void cursor_get(QEMUCursor *c);
164void cursor_put(QEMUCursor *c);
165QEMUCursor *cursor_builtin_hidden(void);
166QEMUCursor *cursor_builtin_left_ptr(void);
167void cursor_print_ascii_art(QEMUCursor *c, const char *prefix);
168int cursor_get_mono_bpl(QEMUCursor *c);
169void cursor_set_mono(QEMUCursor *c,
170 uint32_t foreground, uint32_t background, uint8_t *image,
171 int transparent, uint8_t *mask);
172void cursor_get_mono_image(QEMUCursor *c, int foreground, uint8_t *mask);
173void cursor_get_mono_mask(QEMUCursor *c, int transparent, uint8_t *mask);
174
06020b95
GH
175typedef void *QEMUGLContext;
176typedef struct QEMUGLParams QEMUGLParams;
177
178struct QEMUGLParams {
179 int major_ver;
180 int minor_ver;
181};
182
7c20b4a3
GH
183typedef struct DisplayChangeListenerOps {
184 const char *dpy_name;
185
bc2ed970 186 void (*dpy_refresh)(DisplayChangeListener *dcl);
7c20b4a3
GH
187
188 void (*dpy_gfx_update)(DisplayChangeListener *dcl,
7c20b4a3 189 int x, int y, int w, int h);
c12aeb86 190 void (*dpy_gfx_switch)(DisplayChangeListener *dcl,
c12aeb86 191 struct DisplaySurface *new_surface);
7c20b4a3 192 void (*dpy_gfx_copy)(DisplayChangeListener *dcl,
bc2ed970 193 int src_x, int src_y,
a93a4a22 194 int dst_x, int dst_y, int w, int h);
49743df3
BH
195 bool (*dpy_gfx_check_format)(DisplayChangeListener *dcl,
196 pixman_format_code_t format);
a93a4a22 197
7c20b4a3 198 void (*dpy_text_cursor)(DisplayChangeListener *dcl,
7c20b4a3
GH
199 int x, int y);
200 void (*dpy_text_resize)(DisplayChangeListener *dcl,
7c20b4a3
GH
201 int w, int h);
202 void (*dpy_text_update)(DisplayChangeListener *dcl,
7c20b4a3
GH
203 int x, int y, int w, int h);
204
205 void (*dpy_mouse_set)(DisplayChangeListener *dcl,
7c20b4a3
GH
206 int x, int y, int on);
207 void (*dpy_cursor_define)(DisplayChangeListener *dcl,
7c20b4a3 208 QEMUCursor *cursor);
06020b95
GH
209
210 QEMUGLContext (*dpy_gl_ctx_create)(DisplayChangeListener *dcl,
211 QEMUGLParams *params);
212 void (*dpy_gl_ctx_destroy)(DisplayChangeListener *dcl,
213 QEMUGLContext ctx);
214 int (*dpy_gl_ctx_make_current)(DisplayChangeListener *dcl,
215 QEMUGLContext ctx);
216 QEMUGLContext (*dpy_gl_ctx_get_current)(DisplayChangeListener *dcl);
217
eaa92c76 218 void (*dpy_gl_scanout_disable)(DisplayChangeListener *dcl);
f4c36bda
GH
219 void (*dpy_gl_scanout_texture)(DisplayChangeListener *dcl,
220 uint32_t backing_id,
221 bool backing_y_0_top,
222 uint32_t backing_width,
223 uint32_t backing_height,
224 uint32_t x, uint32_t y,
225 uint32_t w, uint32_t h);
06020b95
GH
226 void (*dpy_gl_update)(DisplayChangeListener *dcl,
227 uint32_t x, uint32_t y, uint32_t w, uint32_t h);
228
7c20b4a3 229} DisplayChangeListenerOps;
7d957bd8 230
7c20b4a3 231struct DisplayChangeListener {
0f7b2864 232 uint64_t update_interval;
7c20b4a3
GH
233 const DisplayChangeListenerOps *ops;
234 DisplayState *ds;
284d1c6b 235 QemuConsole *con;
bf2fde70 236
87e487a1 237 QLIST_ENTRY(DisplayChangeListener) next;
7d957bd8
AL
238};
239
64840c66 240DisplayState *init_displaystate(void);
30f1e661
GH
241DisplaySurface *qemu_create_displaysurface_from(int width, int height,
242 pixman_format_code_t format,
243 int linesize, uint8_t *data);
ca58b45f 244DisplaySurface *qemu_create_displaysurface_pixman(pixman_image_t *image);
a77549b3
GH
245DisplaySurface *qemu_create_displaysurface_guestmem(int width, int height,
246 pixman_format_code_t format,
247 int linesize,
248 uint64_t addr);
0da2ea1b 249PixelFormat qemu_default_pixelformat(int bpp);
7d957bd8 250
da229ef3
GH
251DisplaySurface *qemu_create_displaysurface(int width, int height);
252void qemu_free_displaysurface(DisplaySurface *surface);
7b5d76da
AL
253
254static inline int is_surface_bgr(DisplaySurface *surface)
255{
30f1e661
GH
256 if (PIXMAN_FORMAT_BPP(surface->format) == 32 &&
257 PIXMAN_FORMAT_TYPE(surface->format) == PIXMAN_TYPE_ABGR) {
7b5d76da 258 return 1;
30f1e661 259 } else {
7b5d76da 260 return 0;
30f1e661 261 }
7b5d76da
AL
262}
263
7d957bd8
AL
264static inline int is_buffer_shared(DisplaySurface *surface)
265{
187cd1d9 266 return !(surface->flags & QEMU_ALLOCATED_FLAG);
7d957bd8
AL
267}
268
5209089f 269void register_displaychangelistener(DisplayChangeListener *dcl);
0f7b2864
GH
270void update_displaychangelistener(DisplayChangeListener *dcl,
271 uint64_t interval);
7c20b4a3
GH
272void unregister_displaychangelistener(DisplayChangeListener *dcl);
273
b7fb49f0 274bool dpy_ui_info_supported(QemuConsole *con);
6f90f3d7
GH
275int dpy_set_ui_info(QemuConsole *con, QemuUIInfo *info);
276
c78f7137
GH
277void dpy_gfx_update(QemuConsole *con, int x, int y, int w, int h);
278void dpy_gfx_replace_surface(QemuConsole *con,
da229ef3 279 DisplaySurface *surface);
c78f7137 280void dpy_gfx_copy(QemuConsole *con, int src_x, int src_y,
7c20b4a3 281 int dst_x, int dst_y, int w, int h);
c78f7137
GH
282void dpy_text_cursor(QemuConsole *con, int x, int y);
283void dpy_text_update(QemuConsole *con, int x, int y, int w, int h);
284void dpy_text_resize(QemuConsole *con, int w, int h);
285void dpy_mouse_set(QemuConsole *con, int x, int y, int on);
286void dpy_cursor_define(QemuConsole *con, QEMUCursor *cursor);
287bool dpy_cursor_define_supported(QemuConsole *con);
49743df3
BH
288bool dpy_gfx_check_format(QemuConsole *con,
289 pixman_format_code_t format);
bf2fde70 290
eaa92c76 291void dpy_gl_scanout_disable(QemuConsole *con);
f4c36bda
GH
292void dpy_gl_scanout_texture(QemuConsole *con,
293 uint32_t backing_id, bool backing_y_0_top,
294 uint32_t backing_width, uint32_t backing_height,
295 uint32_t x, uint32_t y, uint32_t w, uint32_t h);
06020b95
GH
296void dpy_gl_update(QemuConsole *con,
297 uint32_t x, uint32_t y, uint32_t w, uint32_t h);
298
299QEMUGLContext dpy_gl_ctx_create(QemuConsole *con,
300 QEMUGLParams *params);
301void dpy_gl_ctx_destroy(QemuConsole *con, QEMUGLContext ctx);
302int dpy_gl_ctx_make_current(QemuConsole *con, QEMUGLContext ctx);
303QEMUGLContext dpy_gl_ctx_get_current(QemuConsole *con);
304
305bool console_has_gl(QemuConsole *con);
306
626e3b34
GH
307static inline int surface_stride(DisplaySurface *s)
308{
309 return pixman_image_get_stride(s->image);
310}
311
312static inline void *surface_data(DisplaySurface *s)
313{
314 return pixman_image_get_data(s->image);
315}
316
317static inline int surface_width(DisplaySurface *s)
318{
319 return pixman_image_get_width(s->image);
320}
321
322static inline int surface_height(DisplaySurface *s)
323{
324 return pixman_image_get_height(s->image);
325}
326
327static inline int surface_bits_per_pixel(DisplaySurface *s)
328{
329 int bits = PIXMAN_FORMAT_BPP(s->format);
330 return bits;
331}
332
333static inline int surface_bytes_per_pixel(DisplaySurface *s)
334{
335 int bits = PIXMAN_FORMAT_BPP(s->format);
336 return (bits + 7) / 8;
337}
338
e444ea34
HR
339static inline pixman_format_code_t surface_format(DisplaySurface *s)
340{
341 return s->format;
342}
343
df00bed0 344#ifdef CONFIG_CURSES
f27ff810
SW
345/* KEY_EVENT is defined in wincon.h and in curses.h. Avoid redefinition. */
346#undef KEY_EVENT
df00bed0 347#include <curses.h>
f27ff810 348#undef KEY_EVENT
df00bed0 349typedef chtype console_ch_t;
e2368dc9 350extern chtype vga_to_curses[];
df00bed0 351#else
c227f099 352typedef unsigned long console_ch_t;
df00bed0 353#endif
c227f099 354static inline void console_write_ch(console_ch_t *dest, uint32_t ch)
4d3b6f6e 355{
e2368dc9
OH
356 uint8_t c = ch;
357#ifdef CONFIG_CURSES
358 if (vga_to_curses[c]) {
359 ch &= ~(console_ch_t)0xff;
360 ch |= vga_to_curses[c];
361 }
362#else
363 if (c == '\0') {
f6d20d0f 364 ch |= ' ';
e2368dc9
OH
365 }
366#endif
9ae19b65 367 *dest = ch;
4d3b6f6e
AZ
368}
369
380cd056
GH
370typedef struct GraphicHwOps {
371 void (*invalidate)(void *opaque);
372 void (*gfx_update)(void *opaque);
373 void (*text_update)(void *opaque, console_ch_t *text);
dea1b0bd 374 void (*update_interval)(void *opaque, uint64_t interval);
6f90f3d7 375 int (*ui_info)(void *opaque, uint32_t head, QemuUIInfo *info);
bba19b88 376 void (*gl_block)(void *opaque, bool block);
380cd056 377} GraphicHwOps;
87ecb68b 378
5643706a 379QemuConsole *graphic_console_init(DeviceState *dev, uint32_t head,
aa2beaa1 380 const GraphicHwOps *ops,
c78f7137 381 void *opaque);
1c1f9498
GH
382void graphic_console_set_hwops(QemuConsole *con,
383 const GraphicHwOps *hw_ops,
384 void *opaque);
3023f332 385
1dbfa005
GH
386void graphic_hw_update(QemuConsole *con);
387void graphic_hw_invalidate(QemuConsole *con);
388void graphic_hw_text_update(QemuConsole *con, console_ch_t *chardata);
bba19b88 389void graphic_hw_gl_block(QemuConsole *con, bool block);
87ecb68b 390
777357d7
MAL
391void qemu_console_early_init(void);
392
284d1c6b 393QemuConsole *qemu_console_lookup_by_index(unsigned int index);
5643706a 394QemuConsole *qemu_console_lookup_by_device(DeviceState *dev, uint32_t head);
f2c1d54c
GH
395QemuConsole *qemu_console_lookup_by_device_name(const char *device_id,
396 uint32_t head, Error **errp);
81c0d5a6
GH
397bool qemu_console_is_visible(QemuConsole *con);
398bool qemu_console_is_graphic(QemuConsole *con);
399bool qemu_console_is_fixedsize(QemuConsole *con);
f607867c 400bool qemu_console_is_gl_blocked(QemuConsole *con);
779ce88f 401char *qemu_console_get_label(QemuConsole *con);
d4c85337 402int qemu_console_get_index(QemuConsole *con);
5643706a 403uint32_t qemu_console_get_head(QemuConsole *con);
6f90f3d7 404QemuUIInfo *qemu_console_get_ui_info(QemuConsole *con);
d4c85337
GH
405int qemu_console_get_width(QemuConsole *con, int fallback);
406int qemu_console_get_height(QemuConsole *con, int fallback);
b3cb21b9
ST
407/* Return the low-level window id for the console */
408int qemu_console_get_window_id(QemuConsole *con);
409/* Set the low-level window id for the console */
410void qemu_console_set_window_id(QemuConsole *con, int window_id);
81c0d5a6 411
87ecb68b 412void console_select(unsigned int index);
c78f7137
GH
413void qemu_console_resize(QemuConsole *con, int width, int height);
414void qemu_console_copy(QemuConsole *con, int src_x, int src_y,
3023f332 415 int dst_x, int dst_y, int w, int h);
c78f7137 416DisplaySurface *qemu_console_surface(QemuConsole *con);
87ecb68b 417
cd2bc889
GH
418/* console-gl.c */
419typedef struct ConsoleGLState ConsoleGLState;
420#ifdef CONFIG_OPENGL
421ConsoleGLState *console_gl_init_context(void);
422void console_gl_fini_context(ConsoleGLState *gls);
423bool console_gl_check_format(DisplayChangeListener *dcl,
424 pixman_format_code_t format);
425void surface_gl_create_texture(ConsoleGLState *gls,
426 DisplaySurface *surface);
427void surface_gl_update_texture(ConsoleGLState *gls,
428 DisplaySurface *surface,
429 int x, int y, int w, int h);
430void surface_gl_render_texture(ConsoleGLState *gls,
431 DisplaySurface *surface);
432void surface_gl_destroy_texture(ConsoleGLState *gls,
433 DisplaySurface *surface);
434void surface_gl_setup_viewport(ConsoleGLState *gls,
435 DisplaySurface *surface,
436 int ww, int wh);
437#endif
438
87ecb68b 439/* sdl.c */
476db081 440#ifdef CONFIG_SDL
0b71a5d5 441void sdl_display_early_init(int opengl);
87ecb68b 442void sdl_display_init(DisplayState *ds, int full_screen, int no_frame);
476db081
EH
443#else
444static inline void sdl_display_early_init(int opengl)
445{
446 /* This must never be called if CONFIG_SDL is disabled */
447 error_report("SDL support is disabled");
448 abort();
449}
450static inline void sdl_display_init(DisplayState *ds, int full_screen,
451 int no_frame)
452{
453 /* This must never be called if CONFIG_SDL is disabled */
454 error_report("SDL support is disabled");
455 abort();
456}
457#endif
87ecb68b
PB
458
459/* cocoa.m */
e35ee7c1 460#ifdef CONFIG_COCOA
87ecb68b 461void cocoa_display_init(DisplayState *ds, int full_screen);
e35ee7c1
EH
462#else
463static inline void cocoa_display_init(DisplayState *ds, int full_screen)
464{
465 /* This must never be called if CONFIG_COCOA is disabled */
466 error_report("Cocoa support is disabled");
467 abort();
468}
469#endif
87ecb68b
PB
470
471/* vnc.c */
14f7143e 472void vnc_display_init(const char *id);
4db14629 473void vnc_display_open(const char *id, Error **errp);
14f7143e 474void vnc_display_add_client(const char *id, int csock, bool skipauth);
821601ea 475#ifdef CONFIG_VNC
14f7143e
GH
476int vnc_display_password(const char *id, const char *password);
477int vnc_display_pw_expire(const char *id, time_t expires);
70b94331 478QemuOpts *vnc_parse(const char *str, Error **errp);
28d0de7a 479int vnc_init_func(void *opaque, QemuOpts *opts, Error **errp);
821601ea 480#else
14f7143e 481static inline int vnc_display_password(const char *id, const char *password)
821601ea 482{
821601ea
JS
483 return -ENODEV;
484}
14f7143e 485static inline int vnc_display_pw_expire(const char *id, time_t expires)
821601ea 486{
821601ea
JS
487 return -ENODEV;
488};
f8c75b24
EH
489static inline QemuOpts *vnc_parse(const char *str, Error **errp)
490{
491 error_setg(errp, "VNC support is disabled");
492 return NULL;
493}
494static inline int vnc_init_func(void *opaque, QemuOpts *opts, Error **errp)
495{
496 error_setg(errp, "VNC support is disabled");
497 return -1;
498}
821601ea 499#endif
87ecb68b 500
4d3b6f6e 501/* curses.c */
674ec686 502#ifdef CONFIG_CURSES
4d3b6f6e 503void curses_display_init(DisplayState *ds, int full_screen);
674ec686
EH
504#else
505static inline void curses_display_init(DisplayState *ds, int full_screen)
506{
507 /* This must never be called if CONFIG_CURSES is disabled */
508 error_report("curses support is disabled");
509 abort();
510}
511#endif
4d3b6f6e 512
1048c88f 513/* input.c */
64ffbe04 514int index_from_key(const char *key, size_t key_length);
1048c88f 515
a4ccabcf 516/* gtk.c */
19a2c626 517#ifdef CONFIG_GTK
97edf3bd 518void early_gtk_display_init(int opengl);
881249c7 519void gtk_display_init(DisplayState *ds, bool full_screen, bool grab_on_hover);
19a2c626
EH
520#else
521static inline void gtk_display_init(DisplayState *ds, bool full_screen,
522 bool grab_on_hover)
523{
524 /* This must never be called if CONFIG_GTK is disabled */
525 error_report("GTK support is disabled");
526 abort();
527}
528
529static inline void early_gtk_display_init(int opengl)
530{
531 /* This must never be called if CONFIG_GTK is disabled */
532 error_report("GTK support is disabled");
533 abort();
534}
535#endif
a4ccabcf 536
87ecb68b 537#endif