mirror of https://github.com/xemu-project/xemu.git
Set SDL icon_title when using `-name XXX` for proper gnome-panel window list integration
qemu: improve sdl title information Include the `-name XXX` commandline param in the gnome-panel window list via icon_title. https://bugs.edge.launchpad.net/ubuntu/+source/qemu-kvm/+bug/423076 Signed-off-by: Dominic Evans <oldmanuk@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
1f5c1775cd
commit
b4ed5d188f
16
sdl.c
16
sdl.c
|
@ -407,7 +407,8 @@ static void sdl_process_key(SDL_KeyboardEvent *ev)
|
||||||
|
|
||||||
static void sdl_update_caption(void)
|
static void sdl_update_caption(void)
|
||||||
{
|
{
|
||||||
char buf[1024];
|
char win_title[1024];
|
||||||
|
char icon_title[1024];
|
||||||
const char *status = "";
|
const char *status = "";
|
||||||
|
|
||||||
if (!vm_running)
|
if (!vm_running)
|
||||||
|
@ -419,12 +420,15 @@ static void sdl_update_caption(void)
|
||||||
status = " - Press Ctrl-Alt-Shift to exit grab";
|
status = " - Press Ctrl-Alt-Shift to exit grab";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (qemu_name)
|
if (qemu_name) {
|
||||||
snprintf(buf, sizeof(buf), "QEMU (%s)%s", qemu_name, status);
|
snprintf(win_title, sizeof(win_title), "QEMU (%s)%s", qemu_name, status);
|
||||||
else
|
snprintf(icon_title, sizeof(icon_title), "QEMU (%s)", qemu_name);
|
||||||
snprintf(buf, sizeof(buf), "QEMU%s", status);
|
} else {
|
||||||
|
snprintf(win_title, sizeof(win_title), "QEMU%s", status);
|
||||||
|
snprintf(icon_title, sizeof(icon_title), "QEMU");
|
||||||
|
}
|
||||||
|
|
||||||
SDL_WM_SetCaption(buf, "QEMU");
|
SDL_WM_SetCaption(win_title, icon_title);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sdl_hide_cursor(void)
|
static void sdl_hide_cursor(void)
|
||||||
|
|
Loading…
Reference in New Issue