4 #include "ui/qemu-pixman.h"
5 #include "qom/object.h"
6 #include "qapi/qmp/qdict.h"
7 #include "qemu/notify.h"
8 #include "qemu/typedefs.h"
9 #include "qapi-types.h"
10 #include "qapi/error.h"
13 # include <epoxy/gl.h>
16 /* keyboard/mouse support */
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
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)
30 #define GUI_REFRESH_INTERVAL_DEFAULT 30
31 #define GUI_REFRESH_INTERVAL_IDLE 3000
33 typedef void QEMUPutKBDEvent(void *opaque
, int keycode
);
34 typedef void QEMUPutLEDEvent(void *opaque
, int ledstate
);
35 typedef void QEMUPutMouseEvent(void *opaque
, int dx
, int dy
, int dz
, int buttons_state
);
37 typedef struct QEMUPutMouseEntry QEMUPutMouseEntry
;
38 typedef struct QEMUPutKbdEntry QEMUPutKbdEntry
;
39 typedef struct QEMUPutLEDEntry QEMUPutLEDEntry
;
41 QEMUPutKbdEntry
*qemu_add_kbd_event_handler(QEMUPutKBDEvent
*func
,
43 QEMUPutMouseEntry
*qemu_add_mouse_event_handler(QEMUPutMouseEvent
*func
,
44 void *opaque
, int absolute
,
46 void qemu_remove_mouse_event_handler(QEMUPutMouseEntry
*entry
);
47 void qemu_activate_mouse_event_handler(QEMUPutMouseEntry
*entry
);
49 QEMUPutLEDEntry
*qemu_add_led_event_handler(QEMUPutLEDEvent
*func
, void *opaque
);
50 void qemu_remove_led_event_handler(QEMUPutLEDEntry
*entry
);
52 void kbd_put_ledstate(int ledstate
);
54 struct MouseTransformInfo
{
55 /* Touchscreen resolution */
58 /* Calibration values as used/generated by tslib */
62 void hmp_mouse_set(Monitor
*mon
, const QDict
*qdict
);
64 /* keysym is a unicode code except for special keys (see QEMU_KEY_xxx
66 #define QEMU_KEY_ESC1(c) ((c) | 0xe100)
67 #define QEMU_KEY_BACKSPACE 0x007f
68 #define QEMU_KEY_UP QEMU_KEY_ESC1('A')
69 #define QEMU_KEY_DOWN QEMU_KEY_ESC1('B')
70 #define QEMU_KEY_RIGHT QEMU_KEY_ESC1('C')
71 #define QEMU_KEY_LEFT QEMU_KEY_ESC1('D')
72 #define QEMU_KEY_HOME QEMU_KEY_ESC1(1)
73 #define QEMU_KEY_END QEMU_KEY_ESC1(4)
74 #define QEMU_KEY_PAGEUP QEMU_KEY_ESC1(5)
75 #define QEMU_KEY_PAGEDOWN QEMU_KEY_ESC1(6)
76 #define QEMU_KEY_DELETE QEMU_KEY_ESC1(3)
78 #define QEMU_KEY_CTRL_UP 0xe400
79 #define QEMU_KEY_CTRL_DOWN 0xe401
80 #define QEMU_KEY_CTRL_LEFT 0xe402
81 #define QEMU_KEY_CTRL_RIGHT 0xe403
82 #define QEMU_KEY_CTRL_HOME 0xe404
83 #define QEMU_KEY_CTRL_END 0xe405
84 #define QEMU_KEY_CTRL_PAGEUP 0xe406
85 #define QEMU_KEY_CTRL_PAGEDOWN 0xe407
87 void kbd_put_keysym_console(QemuConsole
*s
, int keysym
);
88 bool kbd_put_qcode_console(QemuConsole
*s
, int qcode
);
89 void kbd_put_string_console(QemuConsole
*s
, const char *str
, int len
);
90 void kbd_put_keysym(int keysym
);
94 #define TYPE_QEMU_CONSOLE "qemu-console"
95 #define QEMU_CONSOLE(obj) \
96 OBJECT_CHECK(QemuConsole, (obj), TYPE_QEMU_CONSOLE)
97 #define QEMU_CONSOLE_GET_CLASS(obj) \
98 OBJECT_GET_CLASS(QemuConsoleClass, (obj), TYPE_QEMU_CONSOLE)
99 #define QEMU_CONSOLE_CLASS(klass) \
100 OBJECT_CLASS_CHECK(QemuConsoleClass, (klass), TYPE_QEMU_CONSOLE)
102 typedef struct QemuConsoleClass QemuConsoleClass
;
104 struct QemuConsoleClass
{
105 ObjectClass parent_class
;
108 #define QEMU_ALLOCATED_FLAG 0x01
111 uint8_t bits_per_pixel
;
112 uint8_t bytes_per_pixel
;
113 uint8_t depth
; /* color depth in bits */
114 uint32_t rmask
, gmask
, bmask
, amask
;
115 uint8_t rshift
, gshift
, bshift
, ashift
;
116 uint8_t rmax
, gmax
, bmax
, amax
;
117 uint8_t rbits
, gbits
, bbits
, abits
;
120 struct DisplaySurface
{
121 pixman_format_code_t format
;
122 pixman_image_t
*image
;
131 typedef struct QemuUIInfo
{
139 /* cursor data format is 32bit RGBA */
140 typedef struct QEMUCursor
{
147 QEMUCursor
*cursor_alloc(int width
, int height
);
148 void cursor_get(QEMUCursor
*c
);
149 void cursor_put(QEMUCursor
*c
);
150 QEMUCursor
*cursor_builtin_hidden(void);
151 QEMUCursor
*cursor_builtin_left_ptr(void);
152 void cursor_print_ascii_art(QEMUCursor
*c
, const char *prefix
);
153 int cursor_get_mono_bpl(QEMUCursor
*c
);
154 void cursor_set_mono(QEMUCursor
*c
,
155 uint32_t foreground
, uint32_t background
, uint8_t *image
,
156 int transparent
, uint8_t *mask
);
157 void cursor_get_mono_image(QEMUCursor
*c
, int foreground
, uint8_t *mask
);
158 void cursor_get_mono_mask(QEMUCursor
*c
, int transparent
, uint8_t *mask
);
160 typedef void *QEMUGLContext
;
161 typedef struct QEMUGLParams QEMUGLParams
;
163 struct QEMUGLParams
{
168 typedef struct DisplayChangeListenerOps
{
169 const char *dpy_name
;
171 void (*dpy_refresh
)(DisplayChangeListener
*dcl
);
173 void (*dpy_gfx_update
)(DisplayChangeListener
*dcl
,
174 int x
, int y
, int w
, int h
);
175 void (*dpy_gfx_switch
)(DisplayChangeListener
*dcl
,
176 struct DisplaySurface
*new_surface
);
177 void (*dpy_gfx_copy
)(DisplayChangeListener
*dcl
,
178 int src_x
, int src_y
,
179 int dst_x
, int dst_y
, int w
, int h
);
180 bool (*dpy_gfx_check_format
)(DisplayChangeListener
*dcl
,
181 pixman_format_code_t format
);
183 void (*dpy_text_cursor
)(DisplayChangeListener
*dcl
,
185 void (*dpy_text_resize
)(DisplayChangeListener
*dcl
,
187 void (*dpy_text_update
)(DisplayChangeListener
*dcl
,
188 int x
, int y
, int w
, int h
);
190 void (*dpy_mouse_set
)(DisplayChangeListener
*dcl
,
191 int x
, int y
, int on
);
192 void (*dpy_cursor_define
)(DisplayChangeListener
*dcl
,
195 QEMUGLContext (*dpy_gl_ctx_create
)(DisplayChangeListener
*dcl
,
196 QEMUGLParams
*params
);
197 void (*dpy_gl_ctx_destroy
)(DisplayChangeListener
*dcl
,
199 int (*dpy_gl_ctx_make_current
)(DisplayChangeListener
*dcl
,
201 QEMUGLContext (*dpy_gl_ctx_get_current
)(DisplayChangeListener
*dcl
);
203 void (*dpy_gl_scanout
)(DisplayChangeListener
*dcl
,
204 uint32_t backing_id
, bool backing_y_0_top
,
205 uint32_t x
, uint32_t y
, uint32_t w
, uint32_t h
);
206 void (*dpy_gl_update
)(DisplayChangeListener
*dcl
,
207 uint32_t x
, uint32_t y
, uint32_t w
, uint32_t h
);
209 } DisplayChangeListenerOps
;
211 struct DisplayChangeListener
{
212 uint64_t update_interval
;
213 const DisplayChangeListenerOps
*ops
;
217 QLIST_ENTRY(DisplayChangeListener
) next
;
220 DisplayState
*init_displaystate(void);
221 DisplaySurface
*qemu_create_displaysurface_from(int width
, int height
,
222 pixman_format_code_t format
,
223 int linesize
, uint8_t *data
);
224 DisplaySurface
*qemu_create_displaysurface_guestmem(int width
, int height
,
225 pixman_format_code_t format
,
228 PixelFormat
qemu_default_pixelformat(int bpp
);
230 DisplaySurface
*qemu_create_displaysurface(int width
, int height
);
231 void qemu_free_displaysurface(DisplaySurface
*surface
);
233 static inline int is_surface_bgr(DisplaySurface
*surface
)
235 if (PIXMAN_FORMAT_BPP(surface
->format
) == 32 &&
236 PIXMAN_FORMAT_TYPE(surface
->format
) == PIXMAN_TYPE_ABGR
) {
243 static inline int is_buffer_shared(DisplaySurface
*surface
)
245 return !(surface
->flags
& QEMU_ALLOCATED_FLAG
);
248 void register_displaychangelistener(DisplayChangeListener
*dcl
);
249 void update_displaychangelistener(DisplayChangeListener
*dcl
,
251 void unregister_displaychangelistener(DisplayChangeListener
*dcl
);
253 bool dpy_ui_info_supported(QemuConsole
*con
);
254 int dpy_set_ui_info(QemuConsole
*con
, QemuUIInfo
*info
);
256 void dpy_gfx_update(QemuConsole
*con
, int x
, int y
, int w
, int h
);
257 void dpy_gfx_replace_surface(QemuConsole
*con
,
258 DisplaySurface
*surface
);
259 void dpy_gfx_copy(QemuConsole
*con
, int src_x
, int src_y
,
260 int dst_x
, int dst_y
, int w
, int h
);
261 void dpy_text_cursor(QemuConsole
*con
, int x
, int y
);
262 void dpy_text_update(QemuConsole
*con
, int x
, int y
, int w
, int h
);
263 void dpy_text_resize(QemuConsole
*con
, int w
, int h
);
264 void dpy_mouse_set(QemuConsole
*con
, int x
, int y
, int on
);
265 void dpy_cursor_define(QemuConsole
*con
, QEMUCursor
*cursor
);
266 bool dpy_cursor_define_supported(QemuConsole
*con
);
267 bool dpy_gfx_check_format(QemuConsole
*con
,
268 pixman_format_code_t format
);
270 void dpy_gl_scanout(QemuConsole
*con
,
271 uint32_t backing_id
, bool backing_y_0_top
,
272 uint32_t x
, uint32_t y
, uint32_t w
, uint32_t h
);
273 void dpy_gl_update(QemuConsole
*con
,
274 uint32_t x
, uint32_t y
, uint32_t w
, uint32_t h
);
276 QEMUGLContext
dpy_gl_ctx_create(QemuConsole
*con
,
277 QEMUGLParams
*params
);
278 void dpy_gl_ctx_destroy(QemuConsole
*con
, QEMUGLContext ctx
);
279 int dpy_gl_ctx_make_current(QemuConsole
*con
, QEMUGLContext ctx
);
280 QEMUGLContext
dpy_gl_ctx_get_current(QemuConsole
*con
);
282 bool console_has_gl(QemuConsole
*con
);
284 static inline int surface_stride(DisplaySurface
*s
)
286 return pixman_image_get_stride(s
->image
);
289 static inline void *surface_data(DisplaySurface
*s
)
291 return pixman_image_get_data(s
->image
);
294 static inline int surface_width(DisplaySurface
*s
)
296 return pixman_image_get_width(s
->image
);
299 static inline int surface_height(DisplaySurface
*s
)
301 return pixman_image_get_height(s
->image
);
304 static inline int surface_bits_per_pixel(DisplaySurface
*s
)
306 int bits
= PIXMAN_FORMAT_BPP(s
->format
);
310 static inline int surface_bytes_per_pixel(DisplaySurface
*s
)
312 int bits
= PIXMAN_FORMAT_BPP(s
->format
);
313 return (bits
+ 7) / 8;
316 static inline pixman_format_code_t
surface_format(DisplaySurface
*s
)
323 typedef chtype console_ch_t
;
325 typedef unsigned long console_ch_t
;
327 static inline void console_write_ch(console_ch_t
*dest
, uint32_t ch
)
334 typedef struct GraphicHwOps
{
335 void (*invalidate
)(void *opaque
);
336 void (*gfx_update
)(void *opaque
);
337 void (*text_update
)(void *opaque
, console_ch_t
*text
);
338 void (*update_interval
)(void *opaque
, uint64_t interval
);
339 int (*ui_info
)(void *opaque
, uint32_t head
, QemuUIInfo
*info
);
342 QemuConsole
*graphic_console_init(DeviceState
*dev
, uint32_t head
,
343 const GraphicHwOps
*ops
,
345 void graphic_console_set_hwops(QemuConsole
*con
,
346 const GraphicHwOps
*hw_ops
,
349 void graphic_hw_update(QemuConsole
*con
);
350 void graphic_hw_invalidate(QemuConsole
*con
);
351 void graphic_hw_text_update(QemuConsole
*con
, console_ch_t
*chardata
);
353 QemuConsole
*qemu_console_lookup_by_index(unsigned int index
);
354 QemuConsole
*qemu_console_lookup_by_device(DeviceState
*dev
, uint32_t head
);
355 bool qemu_console_is_visible(QemuConsole
*con
);
356 bool qemu_console_is_graphic(QemuConsole
*con
);
357 bool qemu_console_is_fixedsize(QemuConsole
*con
);
358 char *qemu_console_get_label(QemuConsole
*con
);
359 int qemu_console_get_index(QemuConsole
*con
);
360 uint32_t qemu_console_get_head(QemuConsole
*con
);
361 QemuUIInfo
*qemu_console_get_ui_info(QemuConsole
*con
);
362 int qemu_console_get_width(QemuConsole
*con
, int fallback
);
363 int qemu_console_get_height(QemuConsole
*con
, int fallback
);
365 void text_consoles_set_display(DisplayState
*ds
);
366 void console_select(unsigned int index
);
367 void console_color_init(DisplayState
*ds
);
368 void qemu_console_resize(QemuConsole
*con
, int width
, int height
);
369 void qemu_console_copy(QemuConsole
*con
, int src_x
, int src_y
,
370 int dst_x
, int dst_y
, int w
, int h
);
371 DisplaySurface
*qemu_console_surface(QemuConsole
*con
);
374 typedef struct ConsoleGLState ConsoleGLState
;
376 ConsoleGLState
*console_gl_init_context(void);
377 void console_gl_fini_context(ConsoleGLState
*gls
);
378 bool console_gl_check_format(DisplayChangeListener
*dcl
,
379 pixman_format_code_t format
);
380 void surface_gl_create_texture(ConsoleGLState
*gls
,
381 DisplaySurface
*surface
);
382 void surface_gl_update_texture(ConsoleGLState
*gls
,
383 DisplaySurface
*surface
,
384 int x
, int y
, int w
, int h
);
385 void surface_gl_render_texture(ConsoleGLState
*gls
,
386 DisplaySurface
*surface
);
387 void surface_gl_destroy_texture(ConsoleGLState
*gls
,
388 DisplaySurface
*surface
);
389 void surface_gl_setup_viewport(ConsoleGLState
*gls
,
390 DisplaySurface
*surface
,
395 void sdl_display_early_init(int opengl
);
396 void sdl_display_init(DisplayState
*ds
, int full_screen
, int no_frame
);
399 void cocoa_display_init(DisplayState
*ds
, int full_screen
);
402 void vnc_display_init(const char *id
);
403 void vnc_display_open(const char *id
, Error
**errp
);
404 void vnc_display_add_client(const char *id
, int csock
, bool skipauth
);
405 char *vnc_display_local_addr(const char *id
);
407 int vnc_display_password(const char *id
, const char *password
);
408 int vnc_display_pw_expire(const char *id
, time_t expires
);
409 QemuOpts
*vnc_parse(const char *str
, Error
**errp
);
410 int vnc_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
);
412 static inline int vnc_display_password(const char *id
, const char *password
)
416 static inline int vnc_display_pw_expire(const char *id
, time_t expires
)
423 void curses_display_init(DisplayState
*ds
, int full_screen
);
426 int index_from_key(const char *key
);
429 void early_gtk_display_init(int opengl
);
430 void gtk_display_init(DisplayState
*ds
, bool full_screen
, bool grab_on_hover
);