qemu/include/ui/console.h
<<
>>
Prefs
   1#ifndef CONSOLE_H
   2#define CONSOLE_H
   3
   4#include "ui/qemu-pixman.h"
   5#include "qom/object.h"
   6#include "qapi/qmp/qdict.h"
   7#include "qemu/notify.h"
   8#include "qapi-types.h"
   9#include "qemu/error-report.h"
  10#include "qapi/error.h"
  11
  12#ifdef CONFIG_OPENGL
  13# include <epoxy/gl.h>
  14#endif
  15
  16/* keyboard/mouse support */
  17
  18#define MOUSE_EVENT_LBUTTON 0x01
  19#define MOUSE_EVENT_RBUTTON 0x02
  20#define MOUSE_EVENT_MBUTTON 0x04
  21#define MOUSE_EVENT_WHEELUP 0x08
  22#define MOUSE_EVENT_WHEELDN 0x10
  23
  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
  29/* in ms */
  30#define GUI_REFRESH_INTERVAL_DEFAULT    30
  31#define GUI_REFRESH_INTERVAL_IDLE     3000
  32
  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
  48typedef void QEMUPutKBDEvent(void *opaque, int keycode);
  49typedef void QEMUPutLEDEvent(void *opaque, int ledstate);
  50typedef void QEMUPutMouseEvent(void *opaque, int dx, int dy, int dz, int buttons_state);
  51
  52typedef struct QEMUPutMouseEntry QEMUPutMouseEntry;
  53typedef struct QEMUPutKbdEntry QEMUPutKbdEntry;
  54typedef struct QEMUPutLEDEntry QEMUPutLEDEntry;
  55
  56QEMUPutKbdEntry *qemu_add_kbd_event_handler(QEMUPutKBDEvent *func,
  57                                            void *opaque);
  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);
  62void qemu_activate_mouse_event_handler(QEMUPutMouseEntry *entry);
  63
  64QEMUPutLEDEntry *qemu_add_led_event_handler(QEMUPutLEDEvent *func, void *opaque);
  65void qemu_remove_led_event_handler(QEMUPutLEDEntry *entry);
  66
  67void kbd_put_ledstate(int ledstate);
  68
  69struct MouseTransformInfo {
  70    /* Touchscreen resolution */
  71    int x;
  72    int y;
  73    /* Calibration values as used/generated by tslib */
  74    int a[7];
  75};
  76
  77void hmp_mouse_set(Monitor *mon, const QDict *qdict);
  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
 102void kbd_put_keysym_console(QemuConsole *s, int keysym);
 103bool kbd_put_qcode_console(QemuConsole *s, int qcode);
 104void kbd_put_string_console(QemuConsole *s, const char *str, int len);
 105void kbd_put_keysym(int keysym);
 106
 107/* consoles */
 108
 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
 123#define QEMU_ALLOCATED_FLAG     0x01
 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;
 132    uint8_t rbits, gbits, bbits, abits;
 133};
 134
 135struct DisplaySurface {
 136    pixman_format_code_t format;
 137    pixman_image_t *image;
 138    uint8_t flags;
 139#ifdef CONFIG_OPENGL
 140    GLenum glformat;
 141    GLenum gltype;
 142    GLuint texture;
 143#endif
 144};
 145
 146typedef struct QemuUIInfo {
 147    /* geometry */
 148    int       xoff;
 149    int       yoff;
 150    uint32_t  width;
 151    uint32_t  height;
 152} QemuUIInfo;
 153
 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
 175typedef void *QEMUGLContext;
 176typedef struct QEMUGLParams QEMUGLParams;
 177
 178struct QEMUGLParams {
 179    int major_ver;
 180    int minor_ver;
 181};
 182
 183typedef struct DisplayChangeListenerOps {
 184    const char *dpy_name;
 185
 186    void (*dpy_refresh)(DisplayChangeListener *dcl);
 187
 188    void (*dpy_gfx_update)(DisplayChangeListener *dcl,
 189                           int x, int y, int w, int h);
 190    void (*dpy_gfx_switch)(DisplayChangeListener *dcl,
 191                           struct DisplaySurface *new_surface);
 192    bool (*dpy_gfx_check_format)(DisplayChangeListener *dcl,
 193                                 pixman_format_code_t format);
 194
 195    void (*dpy_text_cursor)(DisplayChangeListener *dcl,
 196                            int x, int y);
 197    void (*dpy_text_resize)(DisplayChangeListener *dcl,
 198                            int w, int h);
 199    void (*dpy_text_update)(DisplayChangeListener *dcl,
 200                            int x, int y, int w, int h);
 201
 202    void (*dpy_mouse_set)(DisplayChangeListener *dcl,
 203                          int x, int y, int on);
 204    void (*dpy_cursor_define)(DisplayChangeListener *dcl,
 205                              QEMUCursor *cursor);
 206
 207    QEMUGLContext (*dpy_gl_ctx_create)(DisplayChangeListener *dcl,
 208                                       QEMUGLParams *params);
 209    void (*dpy_gl_ctx_destroy)(DisplayChangeListener *dcl,
 210                               QEMUGLContext ctx);
 211    int (*dpy_gl_ctx_make_current)(DisplayChangeListener *dcl,
 212                                   QEMUGLContext ctx);
 213    QEMUGLContext (*dpy_gl_ctx_get_current)(DisplayChangeListener *dcl);
 214
 215    void (*dpy_gl_scanout)(DisplayChangeListener *dcl,
 216                           uint32_t backing_id, bool backing_y_0_top,
 217                           uint32_t backing_width, uint32_t backing_height,
 218                           uint32_t x, uint32_t y, uint32_t w, uint32_t h);
 219    void (*dpy_gl_update)(DisplayChangeListener *dcl,
 220                          uint32_t x, uint32_t y, uint32_t w, uint32_t h);
 221
 222} DisplayChangeListenerOps;
 223
 224struct DisplayChangeListener {
 225    uint64_t update_interval;
 226    const DisplayChangeListenerOps *ops;
 227    DisplayState *ds;
 228    QemuConsole *con;
 229
 230    QLIST_ENTRY(DisplayChangeListener) next;
 231};
 232
 233DisplayState *init_displaystate(void);
 234DisplaySurface *qemu_create_displaysurface_from(int width, int height,
 235                                                pixman_format_code_t format,
 236                                                int linesize, uint8_t *data);
 237DisplaySurface *qemu_create_displaysurface_pixman(pixman_image_t *image);
 238DisplaySurface *qemu_create_displaysurface_guestmem(int width, int height,
 239                                                    pixman_format_code_t format,
 240                                                    int linesize,
 241                                                    uint64_t addr);
 242PixelFormat qemu_default_pixelformat(int bpp);
 243
 244DisplaySurface *qemu_create_displaysurface(int width, int height);
 245void qemu_free_displaysurface(DisplaySurface *surface);
 246
 247static inline int is_surface_bgr(DisplaySurface *surface)
 248{
 249    if (PIXMAN_FORMAT_BPP(surface->format) == 32 &&
 250        PIXMAN_FORMAT_TYPE(surface->format) == PIXMAN_TYPE_ABGR) {
 251        return 1;
 252    } else {
 253        return 0;
 254    }
 255}
 256
 257static inline int is_buffer_shared(DisplaySurface *surface)
 258{
 259    return !(surface->flags & QEMU_ALLOCATED_FLAG);
 260}
 261
 262void register_displaychangelistener(DisplayChangeListener *dcl);
 263void update_displaychangelistener(DisplayChangeListener *dcl,
 264                                  uint64_t interval);
 265void unregister_displaychangelistener(DisplayChangeListener *dcl);
 266
 267bool dpy_ui_info_supported(QemuConsole *con);
 268int dpy_set_ui_info(QemuConsole *con, QemuUIInfo *info);
 269
 270void dpy_gfx_update(QemuConsole *con, int x, int y, int w, int h);
 271void dpy_gfx_replace_surface(QemuConsole *con,
 272                             DisplaySurface *surface);
 273void dpy_text_cursor(QemuConsole *con, int x, int y);
 274void dpy_text_update(QemuConsole *con, int x, int y, int w, int h);
 275void dpy_text_resize(QemuConsole *con, int w, int h);
 276void dpy_mouse_set(QemuConsole *con, int x, int y, int on);
 277void dpy_cursor_define(QemuConsole *con, QEMUCursor *cursor);
 278bool dpy_cursor_define_supported(QemuConsole *con);
 279bool dpy_gfx_check_format(QemuConsole *con,
 280                          pixman_format_code_t format);
 281
 282void dpy_gl_scanout(QemuConsole *con,
 283                    uint32_t backing_id, bool backing_y_0_top,
 284                    uint32_t backing_width, uint32_t backing_height,
 285                    uint32_t x, uint32_t y, uint32_t w, uint32_t h);
 286void dpy_gl_update(QemuConsole *con,
 287                   uint32_t x, uint32_t y, uint32_t w, uint32_t h);
 288
 289QEMUGLContext dpy_gl_ctx_create(QemuConsole *con,
 290                                QEMUGLParams *params);
 291void dpy_gl_ctx_destroy(QemuConsole *con, QEMUGLContext ctx);
 292int dpy_gl_ctx_make_current(QemuConsole *con, QEMUGLContext ctx);
 293QEMUGLContext dpy_gl_ctx_get_current(QemuConsole *con);
 294
 295bool console_has_gl(QemuConsole *con);
 296
 297static inline int surface_stride(DisplaySurface *s)
 298{
 299    return pixman_image_get_stride(s->image);
 300}
 301
 302static inline void *surface_data(DisplaySurface *s)
 303{
 304    return pixman_image_get_data(s->image);
 305}
 306
 307static inline int surface_width(DisplaySurface *s)
 308{
 309    return pixman_image_get_width(s->image);
 310}
 311
 312static inline int surface_height(DisplaySurface *s)
 313{
 314    return pixman_image_get_height(s->image);
 315}
 316
 317static inline int surface_bits_per_pixel(DisplaySurface *s)
 318{
 319    int bits = PIXMAN_FORMAT_BPP(s->format);
 320    return bits;
 321}
 322
 323static inline int surface_bytes_per_pixel(DisplaySurface *s)
 324{
 325    int bits = PIXMAN_FORMAT_BPP(s->format);
 326    return (bits + 7) / 8;
 327}
 328
 329static inline pixman_format_code_t surface_format(DisplaySurface *s)
 330{
 331    return s->format;
 332}
 333
 334#ifdef CONFIG_CURSES
 335#include <curses.h>
 336typedef chtype console_ch_t;
 337extern chtype vga_to_curses[];
 338#else
 339typedef unsigned long console_ch_t;
 340#endif
 341static inline void console_write_ch(console_ch_t *dest, uint32_t ch)
 342{
 343    uint8_t c = ch;
 344#ifdef CONFIG_CURSES
 345    if (vga_to_curses[c]) {
 346        ch &= ~(console_ch_t)0xff;
 347        ch |= vga_to_curses[c];
 348    }
 349#else
 350    if (c == '\0') {
 351        ch |= ' ';
 352    }
 353#endif
 354    *dest = ch;
 355}
 356
 357typedef struct GraphicHwOps {
 358    void (*invalidate)(void *opaque);
 359    void (*gfx_update)(void *opaque);
 360    void (*text_update)(void *opaque, console_ch_t *text);
 361    void (*update_interval)(void *opaque, uint64_t interval);
 362    int (*ui_info)(void *opaque, uint32_t head, QemuUIInfo *info);
 363    void (*gl_block)(void *opaque, bool block);
 364} GraphicHwOps;
 365
 366QemuConsole *graphic_console_init(DeviceState *dev, uint32_t head,
 367                                  const GraphicHwOps *ops,
 368                                  void *opaque);
 369void graphic_console_set_hwops(QemuConsole *con,
 370                               const GraphicHwOps *hw_ops,
 371                               void *opaque);
 372
 373void graphic_hw_update(QemuConsole *con);
 374void graphic_hw_invalidate(QemuConsole *con);
 375void graphic_hw_text_update(QemuConsole *con, console_ch_t *chardata);
 376void graphic_hw_gl_block(QemuConsole *con, bool block);
 377
 378QemuConsole *qemu_console_lookup_by_index(unsigned int index);
 379QemuConsole *qemu_console_lookup_by_device(DeviceState *dev, uint32_t head);
 380QemuConsole *qemu_console_lookup_by_device_name(const char *device_id,
 381                                                uint32_t head, Error **errp);
 382bool qemu_console_is_visible(QemuConsole *con);
 383bool qemu_console_is_graphic(QemuConsole *con);
 384bool qemu_console_is_fixedsize(QemuConsole *con);
 385bool qemu_console_is_gl_blocked(QemuConsole *con);
 386char *qemu_console_get_label(QemuConsole *con);
 387int qemu_console_get_index(QemuConsole *con);
 388uint32_t qemu_console_get_head(QemuConsole *con);
 389QemuUIInfo *qemu_console_get_ui_info(QemuConsole *con);
 390int qemu_console_get_width(QemuConsole *con, int fallback);
 391int qemu_console_get_height(QemuConsole *con, int fallback);
 392
 393void console_select(unsigned int index);
 394void qemu_console_resize(QemuConsole *con, int width, int height);
 395DisplaySurface *qemu_console_surface(QemuConsole *con);
 396
 397/* console-gl.c */
 398typedef struct ConsoleGLState ConsoleGLState;
 399#ifdef CONFIG_OPENGL
 400ConsoleGLState *console_gl_init_context(void);
 401void console_gl_fini_context(ConsoleGLState *gls);
 402bool console_gl_check_format(DisplayChangeListener *dcl,
 403                             pixman_format_code_t format);
 404void surface_gl_create_texture(ConsoleGLState *gls,
 405                               DisplaySurface *surface);
 406void surface_gl_update_texture(ConsoleGLState *gls,
 407                               DisplaySurface *surface,
 408                               int x, int y, int w, int h);
 409void surface_gl_render_texture(ConsoleGLState *gls,
 410                               DisplaySurface *surface);
 411void surface_gl_destroy_texture(ConsoleGLState *gls,
 412                               DisplaySurface *surface);
 413void surface_gl_setup_viewport(ConsoleGLState *gls,
 414                               DisplaySurface *surface,
 415                               int ww, int wh);
 416#endif
 417
 418/* sdl.c */
 419#ifdef CONFIG_SDL
 420void sdl_display_early_init(int opengl);
 421void sdl_display_init(DisplayState *ds, int full_screen, int no_frame);
 422#else
 423static inline void sdl_display_early_init(int opengl)
 424{
 425    /* This must never be called if CONFIG_SDL is disabled */
 426    error_report("SDL support is disabled");
 427    abort();
 428}
 429static inline void sdl_display_init(DisplayState *ds, int full_screen,
 430                                    int no_frame)
 431{
 432    /* This must never be called if CONFIG_SDL is disabled */
 433    error_report("SDL support is disabled");
 434    abort();
 435}
 436#endif
 437
 438/* cocoa.m */
 439#ifdef CONFIG_COCOA
 440void cocoa_display_init(DisplayState *ds, int full_screen);
 441#else
 442static inline void cocoa_display_init(DisplayState *ds, int full_screen)
 443{
 444    /* This must never be called if CONFIG_COCOA is disabled */
 445    error_report("Cocoa support is disabled");
 446    abort();
 447}
 448#endif
 449
 450/* vnc.c */
 451void vnc_display_init(const char *id);
 452void vnc_display_open(const char *id, Error **errp);
 453void vnc_display_add_client(const char *id, int csock, bool skipauth);
 454#ifdef CONFIG_VNC
 455int vnc_display_password(const char *id, const char *password);
 456int vnc_display_pw_expire(const char *id, time_t expires);
 457QemuOpts *vnc_parse(const char *str, Error **errp);
 458int vnc_init_func(void *opaque, QemuOpts *opts, Error **errp);
 459#else
 460static inline int vnc_display_password(const char *id, const char *password)
 461{
 462    return -ENODEV;
 463}
 464static inline int vnc_display_pw_expire(const char *id, time_t expires)
 465{
 466    return -ENODEV;
 467};
 468static inline QemuOpts *vnc_parse(const char *str, Error **errp)
 469{
 470    error_setg(errp, "VNC support is disabled");
 471    return NULL;
 472}
 473static inline int vnc_init_func(void *opaque, QemuOpts *opts, Error **errp)
 474{
 475    error_setg(errp, "VNC support is disabled");
 476    return -1;
 477}
 478#endif
 479
 480/* curses.c */
 481#ifdef CONFIG_CURSES
 482void curses_display_init(DisplayState *ds, int full_screen);
 483#else
 484static inline void curses_display_init(DisplayState *ds, int full_screen)
 485{
 486    /* This must never be called if CONFIG_CURSES is disabled */
 487    error_report("curses support is disabled");
 488    abort();
 489}
 490#endif
 491
 492/* input.c */
 493int index_from_key(const char *key, size_t key_length);
 494
 495/* gtk.c */
 496#ifdef CONFIG_GTK
 497void early_gtk_display_init(int opengl);
 498void gtk_display_init(DisplayState *ds, bool full_screen, bool grab_on_hover);
 499#else
 500static inline void gtk_display_init(DisplayState *ds, bool full_screen,
 501                                    bool grab_on_hover)
 502{
 503    /* This must never be called if CONFIG_GTK is disabled */
 504    error_report("GTK support is disabled");
 505    abort();
 506}
 507
 508static inline void early_gtk_display_init(int opengl)
 509{
 510    /* This must never be called if CONFIG_GTK is disabled */
 511    error_report("GTK support is disabled");
 512    abort();
 513}
 514#endif
 515
 516#endif
 517