mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
console: export QemuConsole index,width,height
Add functions to query QemuConsole properties. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
f55ea6297c
commit
d4c8533755
2 changed files with 27 additions and 0 deletions
24
ui/console.c
24
ui/console.c
|
@ -1641,6 +1641,30 @@ bool qemu_console_is_fixedsize(QemuConsole *con)
|
|||
return con && (con->console_type != TEXT_CONSOLE);
|
||||
}
|
||||
|
||||
int qemu_console_get_index(QemuConsole *con)
|
||||
{
|
||||
if (con == NULL) {
|
||||
con = active_console;
|
||||
}
|
||||
return con ? con->index : -1;
|
||||
}
|
||||
|
||||
int qemu_console_get_width(QemuConsole *con, int fallback)
|
||||
{
|
||||
if (con == NULL) {
|
||||
con = active_console;
|
||||
}
|
||||
return con ? surface_width(con->surface) : fallback;
|
||||
}
|
||||
|
||||
int qemu_console_get_height(QemuConsole *con, int fallback)
|
||||
{
|
||||
if (con == NULL) {
|
||||
con = active_console;
|
||||
}
|
||||
return con ? surface_height(con->surface) : fallback;
|
||||
}
|
||||
|
||||
static void text_console_set_echo(CharDriverState *chr, bool echo)
|
||||
{
|
||||
QemuConsole *s = chr->opaque;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue