2007-11-17 18:14:51 +01:00
|
|
|
#ifndef CONSOLE_H
|
|
|
|
#define CONSOLE_H
|
|
|
|
|
2012-11-28 12:06:30 +01:00
|
|
|
#include "ui/qemu-pixman.h"
|
2012-12-17 18:19:43 +01:00
|
|
|
#include "qapi/qmp/qdict.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/notify.h"
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "monitor/monitor.h"
|
2012-03-11 17:11:26 +01:00
|
|
|
#include "trace.h"
|
2012-08-31 04:56:25 +02:00
|
|
|
#include "qapi-types.h"
|
2012-12-17 18:19:43 +01:00
|
|
|
#include "qapi/error.h"
|
2007-11-17 18:14:51 +01:00
|
|
|
|
|
|
|
/* keyboard/mouse support */
|
|
|
|
|
|
|
|
#define MOUSE_EVENT_LBUTTON 0x01
|
|
|
|
#define MOUSE_EVENT_RBUTTON 0x02
|
|
|
|
#define MOUSE_EVENT_MBUTTON 0x04
|
|
|
|
|
2010-02-26 17:17:36 +01:00
|
|
|
/* identical to the ps/2 keyboard bits */
|
|
|
|
#define QEMU_SCROLL_LOCK_LED (1 << 0)
|
|
|
|
#define QEMU_NUM_LOCK_LED (1 << 1)
|
|
|
|
#define QEMU_CAPS_LOCK_LED (1 << 2)
|
|
|
|
|
2008-08-21 22:12:05 +02:00
|
|
|
/* in ms */
|
|
|
|
#define GUI_REFRESH_INTERVAL 30
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
typedef void QEMUPutKBDEvent(void *opaque, int keycode);
|
2010-02-26 17:17:36 +01:00
|
|
|
typedef void QEMUPutLEDEvent(void *opaque, int ledstate);
|
2007-11-17 18:14:51 +01:00
|
|
|
typedef void QEMUPutMouseEvent(void *opaque, int dx, int dy, int dz, int buttons_state);
|
|
|
|
|
|
|
|
typedef struct QEMUPutMouseEntry {
|
|
|
|
QEMUPutMouseEvent *qemu_put_mouse_event;
|
|
|
|
void *qemu_put_mouse_event_opaque;
|
|
|
|
int qemu_put_mouse_event_absolute;
|
|
|
|
char *qemu_put_mouse_event_name;
|
|
|
|
|
2010-03-10 03:52:22 +01:00
|
|
|
int index;
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
/* used internally by qemu for handling mice */
|
2010-03-10 03:52:22 +01:00
|
|
|
QTAILQ_ENTRY(QEMUPutMouseEntry) node;
|
2007-11-17 18:14:51 +01:00
|
|
|
} QEMUPutMouseEntry;
|
|
|
|
|
2010-02-26 17:17:36 +01:00
|
|
|
typedef struct QEMUPutLEDEntry {
|
|
|
|
QEMUPutLEDEvent *put_led;
|
|
|
|
void *opaque;
|
|
|
|
QTAILQ_ENTRY(QEMUPutLEDEntry) next;
|
|
|
|
} QEMUPutLEDEntry;
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
void qemu_add_kbd_event_handler(QEMUPutKBDEvent *func, void *opaque);
|
2010-06-08 15:12:18 +02:00
|
|
|
void qemu_remove_kbd_event_handler(void);
|
2007-11-17 18:14:51 +01:00
|
|
|
QEMUPutMouseEntry *qemu_add_mouse_event_handler(QEMUPutMouseEvent *func,
|
|
|
|
void *opaque, int absolute,
|
|
|
|
const char *name);
|
|
|
|
void qemu_remove_mouse_event_handler(QEMUPutMouseEntry *entry);
|
2010-03-10 03:52:22 +01:00
|
|
|
void qemu_activate_mouse_event_handler(QEMUPutMouseEntry *entry);
|
|
|
|
|
2010-02-26 17:17:36 +01:00
|
|
|
QEMUPutLEDEntry *qemu_add_led_event_handler(QEMUPutLEDEvent *func, void *opaque);
|
|
|
|
void qemu_remove_led_event_handler(QEMUPutLEDEntry *entry);
|
2007-11-17 18:14:51 +01:00
|
|
|
|
|
|
|
void kbd_put_keycode(int keycode);
|
2010-02-26 17:17:36 +01:00
|
|
|
void kbd_put_ledstate(int ledstate);
|
2007-11-17 18:14:51 +01:00
|
|
|
void kbd_mouse_event(int dx, int dy, int dz, int buttons_state);
|
2010-03-09 21:26:40 +01:00
|
|
|
|
|
|
|
/* Does the current mouse generate absolute events */
|
2007-11-17 18:14:51 +01:00
|
|
|
int kbd_mouse_is_absolute(void);
|
2010-03-09 20:25:00 +01:00
|
|
|
void qemu_add_mouse_mode_change_notifier(Notifier *notify);
|
|
|
|
void qemu_remove_mouse_mode_change_notifier(Notifier *notify);
|
2007-11-17 18:14:51 +01:00
|
|
|
|
2010-03-09 21:26:40 +01:00
|
|
|
/* Of all the mice, is there one that generates absolute events */
|
|
|
|
int kbd_mouse_has_absolute(void);
|
|
|
|
|
2009-05-10 02:44:56 +02:00
|
|
|
struct MouseTransformInfo {
|
2008-04-14 23:28:11 +02:00
|
|
|
/* Touchscreen resolution */
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
/* Calibration values as used/generated by tslib */
|
|
|
|
int a[7];
|
|
|
|
};
|
|
|
|
|
2009-08-28 20:27:13 +02:00
|
|
|
void do_mouse_set(Monitor *mon, const QDict *qdict);
|
2007-11-17 18:14:51 +01:00
|
|
|
|
|
|
|
/* keysym is a unicode code except for special keys (see QEMU_KEY_xxx
|
|
|
|
constants) */
|
|
|
|
#define QEMU_KEY_ESC1(c) ((c) | 0xe100)
|
|
|
|
#define QEMU_KEY_BACKSPACE 0x007f
|
|
|
|
#define QEMU_KEY_UP QEMU_KEY_ESC1('A')
|
|
|
|
#define QEMU_KEY_DOWN QEMU_KEY_ESC1('B')
|
|
|
|
#define QEMU_KEY_RIGHT QEMU_KEY_ESC1('C')
|
|
|
|
#define QEMU_KEY_LEFT QEMU_KEY_ESC1('D')
|
|
|
|
#define QEMU_KEY_HOME QEMU_KEY_ESC1(1)
|
|
|
|
#define QEMU_KEY_END QEMU_KEY_ESC1(4)
|
|
|
|
#define QEMU_KEY_PAGEUP QEMU_KEY_ESC1(5)
|
|
|
|
#define QEMU_KEY_PAGEDOWN QEMU_KEY_ESC1(6)
|
|
|
|
#define QEMU_KEY_DELETE QEMU_KEY_ESC1(3)
|
|
|
|
|
|
|
|
#define QEMU_KEY_CTRL_UP 0xe400
|
|
|
|
#define QEMU_KEY_CTRL_DOWN 0xe401
|
|
|
|
#define QEMU_KEY_CTRL_LEFT 0xe402
|
|
|
|
#define QEMU_KEY_CTRL_RIGHT 0xe403
|
|
|
|
#define QEMU_KEY_CTRL_HOME 0xe404
|
|
|
|
#define QEMU_KEY_CTRL_END 0xe405
|
|
|
|
#define QEMU_KEY_CTRL_PAGEUP 0xe406
|
|
|
|
#define QEMU_KEY_CTRL_PAGEDOWN 0xe407
|
|
|
|
|
|
|
|
void kbd_put_keysym(int keysym);
|
|
|
|
|
|
|
|
/* consoles */
|
|
|
|
|
2009-01-15 23:14:11 +01:00
|
|
|
#define QEMU_BIG_ENDIAN_FLAG 0x01
|
|
|
|
#define QEMU_ALLOCATED_FLAG 0x02
|
|
|
|
|
|
|
|
struct PixelFormat {
|
|
|
|
uint8_t bits_per_pixel;
|
|
|
|
uint8_t bytes_per_pixel;
|
|
|
|
uint8_t depth; /* color depth in bits */
|
|
|
|
uint32_t rmask, gmask, bmask, amask;
|
|
|
|
uint8_t rshift, gshift, bshift, ashift;
|
|
|
|
uint8_t rmax, gmax, bmax, amax;
|
2009-01-26 16:37:30 +01:00
|
|
|
uint8_t rbits, gbits, bbits, abits;
|
2009-01-15 23:14:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct DisplaySurface {
|
2012-09-26 15:20:05 +02:00
|
|
|
pixman_format_code_t format;
|
|
|
|
pixman_image_t *image;
|
2009-01-15 23:14:11 +01:00
|
|
|
uint8_t flags;
|
|
|
|
|
|
|
|
struct PixelFormat pf;
|
|
|
|
};
|
|
|
|
|
2010-05-21 11:54:32 +02:00
|
|
|
/* cursor data format is 32bit RGBA */
|
|
|
|
typedef struct QEMUCursor {
|
|
|
|
int width, height;
|
|
|
|
int hot_x, hot_y;
|
|
|
|
int refcount;
|
|
|
|
uint32_t data[];
|
|
|
|
} QEMUCursor;
|
|
|
|
|
|
|
|
QEMUCursor *cursor_alloc(int width, int height);
|
|
|
|
void cursor_get(QEMUCursor *c);
|
|
|
|
void cursor_put(QEMUCursor *c);
|
|
|
|
QEMUCursor *cursor_builtin_hidden(void);
|
|
|
|
QEMUCursor *cursor_builtin_left_ptr(void);
|
|
|
|
void cursor_print_ascii_art(QEMUCursor *c, const char *prefix);
|
|
|
|
int cursor_get_mono_bpl(QEMUCursor *c);
|
|
|
|
void cursor_set_mono(QEMUCursor *c,
|
|
|
|
uint32_t foreground, uint32_t background, uint8_t *image,
|
|
|
|
int transparent, uint8_t *mask);
|
|
|
|
void cursor_get_mono_image(QEMUCursor *c, int foreground, uint8_t *mask);
|
|
|
|
void cursor_get_mono_mask(QEMUCursor *c, int transparent, uint8_t *mask);
|
|
|
|
|
2012-11-13 14:51:41 +01:00
|
|
|
typedef struct DisplayChangeListenerOps {
|
|
|
|
const char *dpy_name;
|
|
|
|
|
2013-03-01 13:03:04 +01:00
|
|
|
void (*dpy_refresh)(DisplayChangeListener *dcl);
|
2012-11-13 14:51:41 +01:00
|
|
|
|
|
|
|
void (*dpy_gfx_update)(DisplayChangeListener *dcl,
|
|
|
|
int x, int y, int w, int h);
|
2013-02-28 15:03:04 +01:00
|
|
|
void (*dpy_gfx_switch)(DisplayChangeListener *dcl,
|
|
|
|
struct DisplaySurface *new_surface);
|
2012-11-13 14:51:41 +01:00
|
|
|
void (*dpy_gfx_copy)(DisplayChangeListener *dcl,
|
2013-03-01 13:03:04 +01:00
|
|
|
int src_x, int src_y,
|
2012-09-28 15:02:08 +02:00
|
|
|
int dst_x, int dst_y, int w, int h);
|
|
|
|
|
2012-11-13 14:51:41 +01:00
|
|
|
void (*dpy_text_cursor)(DisplayChangeListener *dcl,
|
|
|
|
int x, int y);
|
|
|
|
void (*dpy_text_resize)(DisplayChangeListener *dcl,
|
|
|
|
int w, int h);
|
|
|
|
void (*dpy_text_update)(DisplayChangeListener *dcl,
|
|
|
|
int x, int y, int w, int h);
|
|
|
|
|
|
|
|
void (*dpy_mouse_set)(DisplayChangeListener *dcl,
|
|
|
|
int x, int y, int on);
|
|
|
|
void (*dpy_cursor_define)(DisplayChangeListener *dcl,
|
|
|
|
QEMUCursor *cursor);
|
|
|
|
} DisplayChangeListenerOps;
|
2009-01-15 23:14:11 +01:00
|
|
|
|
2012-11-13 14:51:41 +01:00
|
|
|
struct DisplayChangeListener {
|
|
|
|
int idle;
|
|
|
|
uint64_t gui_timer_interval;
|
|
|
|
const DisplayChangeListenerOps *ops;
|
|
|
|
DisplayState *ds;
|
2012-09-12 07:56:45 +02:00
|
|
|
|
2010-06-04 11:46:35 +02:00
|
|
|
QLIST_ENTRY(DisplayChangeListener) next;
|
2009-01-15 23:14:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct DisplayState {
|
|
|
|
struct DisplaySurface *surface;
|
|
|
|
struct QEMUTimer *gui_timer;
|
2012-09-28 15:02:08 +02:00
|
|
|
bool have_gfx;
|
|
|
|
bool have_text;
|
2009-01-15 23:14:11 +01:00
|
|
|
|
2010-06-04 11:46:35 +02:00
|
|
|
QLIST_HEAD(, DisplayChangeListener) listeners;
|
2009-01-15 23:14:11 +01:00
|
|
|
|
2009-01-16 20:04:14 +01:00
|
|
|
struct DisplayState *next;
|
2007-11-17 18:14:51 +01:00
|
|
|
};
|
|
|
|
|
2009-01-16 20:04:14 +01:00
|
|
|
void register_displaystate(DisplayState *ds);
|
|
|
|
DisplayState *get_displaystate(void);
|
2009-01-15 23:14:11 +01:00
|
|
|
DisplaySurface* qemu_create_displaysurface_from(int width, int height, int bpp,
|
2013-02-20 09:37:12 +01:00
|
|
|
int linesize, uint8_t *data,
|
|
|
|
bool byteswap);
|
2009-01-23 20:56:19 +01:00
|
|
|
PixelFormat qemu_different_endianness_pixelformat(int bpp);
|
|
|
|
PixelFormat qemu_default_pixelformat(int bpp);
|
2009-01-15 23:14:11 +01:00
|
|
|
|
2013-02-28 10:48:02 +01:00
|
|
|
DisplaySurface *qemu_create_displaysurface(int width, int height);
|
|
|
|
void qemu_free_displaysurface(DisplaySurface *surface);
|
2009-03-13 16:02:13 +01:00
|
|
|
|
|
|
|
static inline int is_surface_bgr(DisplaySurface *surface)
|
|
|
|
{
|
|
|
|
if (surface->pf.bits_per_pixel == 32 && surface->pf.rshift == 0)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-15 23:14:11 +01:00
|
|
|
static inline int is_buffer_shared(DisplaySurface *surface)
|
|
|
|
{
|
2012-09-26 07:46:20 +02:00
|
|
|
return !(surface->flags & QEMU_ALLOCATED_FLAG);
|
2009-01-15 23:14:11 +01:00
|
|
|
}
|
|
|
|
|
2010-06-04 11:51:31 +02:00
|
|
|
void gui_setup_refresh(DisplayState *ds);
|
|
|
|
|
2012-11-13 14:51:41 +01:00
|
|
|
void register_displaychangelistener(DisplayState *ds,
|
|
|
|
DisplayChangeListener *dcl);
|
|
|
|
void unregister_displaychangelistener(DisplayChangeListener *dcl);
|
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
void dpy_gfx_update(QemuConsole *con, int x, int y, int w, int h);
|
|
|
|
void dpy_gfx_replace_surface(QemuConsole *con,
|
2013-02-28 10:48:02 +01:00
|
|
|
DisplaySurface *surface);
|
2012-11-13 14:51:41 +01:00
|
|
|
void dpy_refresh(DisplayState *s);
|
2013-03-05 15:24:14 +01:00
|
|
|
void dpy_gfx_copy(QemuConsole *con, int src_x, int src_y,
|
2012-11-13 14:51:41 +01:00
|
|
|
int dst_x, int dst_y, int w, int h);
|
2013-03-05 15:24:14 +01:00
|
|
|
void dpy_text_cursor(QemuConsole *con, int x, int y);
|
|
|
|
void dpy_text_update(QemuConsole *con, int x, int y, int w, int h);
|
|
|
|
void dpy_text_resize(QemuConsole *con, int w, int h);
|
|
|
|
void dpy_mouse_set(QemuConsole *con, int x, int y, int on);
|
|
|
|
void dpy_cursor_define(QemuConsole *con, QEMUCursor *cursor);
|
|
|
|
bool dpy_cursor_define_supported(QemuConsole *con);
|
2012-09-12 07:56:45 +02:00
|
|
|
|
2013-02-28 15:24:14 +01:00
|
|
|
static inline int surface_stride(DisplaySurface *s)
|
|
|
|
{
|
|
|
|
return pixman_image_get_stride(s->image);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *surface_data(DisplaySurface *s)
|
|
|
|
{
|
|
|
|
return pixman_image_get_data(s->image);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int surface_width(DisplaySurface *s)
|
|
|
|
{
|
|
|
|
return pixman_image_get_width(s->image);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int surface_height(DisplaySurface *s)
|
|
|
|
{
|
|
|
|
return pixman_image_get_height(s->image);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int surface_bits_per_pixel(DisplaySurface *s)
|
|
|
|
{
|
|
|
|
int bits = PIXMAN_FORMAT_BPP(s->format);
|
|
|
|
return bits;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int surface_bytes_per_pixel(DisplaySurface *s)
|
|
|
|
{
|
|
|
|
int bits = PIXMAN_FORMAT_BPP(s->format);
|
|
|
|
return (bits + 7) / 8;
|
|
|
|
}
|
|
|
|
|
2008-11-24 20:29:13 +01:00
|
|
|
static inline int ds_get_linesize(DisplayState *ds)
|
|
|
|
{
|
2013-02-28 15:24:14 +01:00
|
|
|
return surface_stride(ds->surface);
|
2008-11-24 20:29:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint8_t* ds_get_data(DisplayState *ds)
|
|
|
|
{
|
2013-02-28 15:24:14 +01:00
|
|
|
return surface_data(ds->surface);
|
2008-11-24 20:29:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int ds_get_width(DisplayState *ds)
|
|
|
|
{
|
2013-02-28 15:24:14 +01:00
|
|
|
return surface_width(ds->surface);
|
2008-11-24 20:29:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int ds_get_height(DisplayState *ds)
|
|
|
|
{
|
2013-02-28 15:24:14 +01:00
|
|
|
return surface_height(ds->surface);
|
2008-11-24 20:29:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int ds_get_bits_per_pixel(DisplayState *ds)
|
|
|
|
{
|
2013-02-28 15:24:14 +01:00
|
|
|
return surface_bits_per_pixel(ds->surface);
|
2008-11-24 20:29:13 +01:00
|
|
|
}
|
|
|
|
|
2009-01-15 23:07:16 +01:00
|
|
|
static inline int ds_get_bytes_per_pixel(DisplayState *ds)
|
|
|
|
{
|
2013-02-28 15:24:14 +01:00
|
|
|
return surface_bytes_per_pixel(ds->surface);
|
2012-10-10 11:15:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline pixman_format_code_t ds_get_format(DisplayState *ds)
|
|
|
|
{
|
|
|
|
return ds->surface->format;
|
2009-01-15 23:07:16 +01:00
|
|
|
}
|
|
|
|
|
2012-11-02 09:12:49 +01:00
|
|
|
static inline pixman_image_t *ds_get_image(DisplayState *ds)
|
|
|
|
{
|
|
|
|
return ds->surface->image;
|
|
|
|
}
|
|
|
|
|
2012-11-03 12:47:08 +01:00
|
|
|
static inline int ds_get_depth(DisplayState *ds)
|
|
|
|
{
|
|
|
|
return ds->surface->pf.depth;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int ds_get_rmask(DisplayState *ds)
|
|
|
|
{
|
|
|
|
return ds->surface->pf.rmask;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int ds_get_gmask(DisplayState *ds)
|
|
|
|
{
|
|
|
|
return ds->surface->pf.gmask;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int ds_get_bmask(DisplayState *ds)
|
|
|
|
{
|
|
|
|
return ds->surface->pf.bmask;
|
|
|
|
}
|
|
|
|
|
2011-09-07 21:44:36 +02:00
|
|
|
#ifdef CONFIG_CURSES
|
|
|
|
#include <curses.h>
|
|
|
|
typedef chtype console_ch_t;
|
|
|
|
#else
|
2009-10-01 23:12:16 +02:00
|
|
|
typedef unsigned long console_ch_t;
|
2011-09-07 21:44:36 +02:00
|
|
|
#endif
|
2009-10-01 23:12:16 +02:00
|
|
|
static inline void console_write_ch(console_ch_t *dest, uint32_t ch)
|
2008-02-10 17:33:14 +01:00
|
|
|
{
|
2010-05-21 14:05:55 +02:00
|
|
|
if (!(ch & 0xff))
|
|
|
|
ch |= ' ';
|
2011-01-04 21:58:24 +01:00
|
|
|
*dest = ch;
|
2008-02-10 17:33:14 +01:00
|
|
|
}
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
typedef void (*vga_hw_update_ptr)(void *);
|
|
|
|
typedef void (*vga_hw_invalidate_ptr)(void *);
|
2012-05-21 21:41:37 +02:00
|
|
|
typedef void (*vga_hw_screen_dump_ptr)(void *, const char *, bool cswitch,
|
|
|
|
Error **errp);
|
2009-10-01 23:12:16 +02:00
|
|
|
typedef void (*vga_hw_text_update_ptr)(void *, console_ch_t *);
|
2007-11-17 18:14:51 +01:00
|
|
|
|
2013-03-05 15:24:14 +01:00
|
|
|
QemuConsole *graphic_console_init(vga_hw_update_ptr update,
|
|
|
|
vga_hw_invalidate_ptr invalidate,
|
|
|
|
vga_hw_screen_dump_ptr screen_dump,
|
|
|
|
vga_hw_text_update_ptr text_update,
|
|
|
|
void *opaque);
|
2009-01-16 20:04:14 +01:00
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
void vga_hw_update(void);
|
|
|
|
void vga_hw_invalidate(void);
|
2009-10-01 23:12:16 +02:00
|
|
|
void vga_hw_text_update(console_ch_t *chardata);
|
2007-11-17 18:14:51 +01:00
|
|
|
|
|
|
|
int is_graphic_console(void);
|
2008-09-24 05:32:33 +02:00
|
|
|
int is_fixedsize_console(void);
|
2009-01-16 21:23:27 +01:00
|
|
|
void text_consoles_set_display(DisplayState *ds);
|
2007-11-17 18:14:51 +01:00
|
|
|
void console_select(unsigned int index);
|
|
|
|
void console_color_init(DisplayState *ds);
|
2013-03-05 15:24:14 +01:00
|
|
|
void qemu_console_resize(QemuConsole *con, int width, int height);
|
|
|
|
void qemu_console_copy(QemuConsole *con, int src_x, int src_y,
|
2009-01-16 20:04:14 +01:00
|
|
|
int dst_x, int dst_y, int w, int h);
|
2013-03-05 15:24:14 +01:00
|
|
|
DisplaySurface *qemu_console_surface(QemuConsole *con);
|
|
|
|
DisplayState *qemu_console_displaystate(QemuConsole *console);
|
2007-11-17 18:14:51 +01:00
|
|
|
|
2013-02-25 15:52:32 +01:00
|
|
|
typedef CharDriverState *(VcHandler)(ChardevVC *vc);
|
2013-02-20 14:43:19 +01:00
|
|
|
|
2013-02-25 15:52:32 +01:00
|
|
|
CharDriverState *vc_init(ChardevVC *vc);
|
2013-02-20 14:43:19 +01:00
|
|
|
void register_vc_handler(VcHandler *handler);
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
/* sdl.c */
|
|
|
|
void sdl_display_init(DisplayState *ds, int full_screen, int no_frame);
|
|
|
|
|
|
|
|
/* cocoa.m */
|
|
|
|
void cocoa_display_init(DisplayState *ds, int full_screen);
|
|
|
|
|
|
|
|
/* vnc.c */
|
|
|
|
void vnc_display_init(DisplayState *ds);
|
2012-10-18 09:01:01 +02:00
|
|
|
void vnc_display_open(DisplayState *ds, const char *display, Error **errp);
|
Introduce a 'client_add' monitor command accepting an open FD
Allow client connections for VNC and socket based character
devices to be passed in over the monitor using SCM_RIGHTS.
One intended usage scenario is to start QEMU with VNC on a
UNIX domain socket. An unprivileged user which cannot access
the UNIX domain socket, can then connect to QEMU's VNC server
by passing an open FD to libvirt, which passes it onto QEMU.
{ "execute": "get_fd", "arguments": { "fdname": "myclient" } }
{ "return": {} }
{ "execute": "add_client", "arguments": { "protocol": "vnc",
"fdname": "myclient",
"skipauth": true } }
{ "return": {} }
In this case 'protocol' can be 'vnc' or 'spice', or the name
of a character device (eg from -chardev id=XXXX)
The 'skipauth' parameter can be used to skip any configured
VNC authentication scheme, which is useful if the mgmt layer
talking to the monitor has already authenticated the client
in another way.
* console.h: Define 'vnc_display_add_client' method
* monitor.c: Implement 'client_add' command
* qemu-char.c, qemu-char.h: Add 'qemu_char_add_client' method
* qerror.c, qerror.h: Add QERR_ADD_CLIENT_FAILED
* qmp-commands.hx: Declare 'client_add' command
* ui/vnc.c: Implement 'vnc_display_add_client' method
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2011-06-23 14:31:42 +02:00
|
|
|
void vnc_display_add_client(DisplayState *ds, int csock, int skipauth);
|
2011-03-16 13:33:36 +01:00
|
|
|
char *vnc_display_local_addr(DisplayState *ds);
|
|
|
|
#ifdef CONFIG_VNC
|
|
|
|
int vnc_display_password(DisplayState *ds, const char *password);
|
2010-10-07 11:50:45 +02:00
|
|
|
int vnc_display_pw_expire(DisplayState *ds, time_t expires);
|
2011-03-16 13:33:36 +01:00
|
|
|
#else
|
|
|
|
static inline int vnc_display_password(DisplayState *ds, const char *password)
|
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
static inline int vnc_display_pw_expire(DisplayState *ds, time_t expires)
|
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
};
|
|
|
|
#endif
|
2007-11-17 18:14:51 +01:00
|
|
|
|
2008-02-10 17:33:14 +01:00
|
|
|
/* curses.c */
|
|
|
|
void curses_display_init(DisplayState *ds, int full_screen);
|
|
|
|
|
2012-08-31 04:56:25 +02:00
|
|
|
/* input.c */
|
|
|
|
int index_from_key(const char *key);
|
|
|
|
int index_from_keycode(int code);
|
|
|
|
|
2013-02-20 14:43:20 +01:00
|
|
|
/* gtk.c */
|
|
|
|
void early_gtk_display_init(void);
|
|
|
|
void gtk_display_init(DisplayState *ds);
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
#endif
|