mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
console: add API to get underlying gui window ID
This adds two console functions, qemu_console_set_window_id and qemu_graphic_console_get_window_id, to let graphical backend record the window id in the QemuConsole structure, and let the baum driver read it. Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org> Message-id: 20161221003806.22412-2-samuel.thibault@ens-lyon.org Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
a8ffb372a2
commit
b3cb21b9b5
2 changed files with 15 additions and 0 deletions
|
@ -394,6 +394,10 @@ uint32_t qemu_console_get_head(QemuConsole *con);
|
|||
QemuUIInfo *qemu_console_get_ui_info(QemuConsole *con);
|
||||
int qemu_console_get_width(QemuConsole *con, int fallback);
|
||||
int qemu_console_get_height(QemuConsole *con, int fallback);
|
||||
/* Return the low-level window id for the console */
|
||||
int qemu_console_get_window_id(QemuConsole *con);
|
||||
/* Set the low-level window id for the console */
|
||||
void qemu_console_set_window_id(QemuConsole *con, int window_id);
|
||||
|
||||
void console_select(unsigned int index);
|
||||
void qemu_console_resize(QemuConsole *con, int width, int height);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue