mirror of https://gitee.com/openkylin/qemu.git
ui/gtk: Set QEMU window icon
The QEMU icon which is already used for SDL is now also loaded by GTK. Signed-off-by: Stefan Weil <sw@weilnetz.de> Message-id: 1364653300-26813-1-git-send-email-sw@weilnetz.de Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
77cfd14c9f
commit
d819cdccff
13
ui/gtk.c
13
ui/gtk.c
|
@ -1363,6 +1363,7 @@ static const DisplayChangeListenerOps dcl_ops = {
|
|||
void gtk_display_init(DisplayState *ds)
|
||||
{
|
||||
GtkDisplayState *s = g_malloc0(sizeof(*s));
|
||||
char *filename;
|
||||
|
||||
gtk_init(NULL, NULL);
|
||||
|
||||
|
@ -1394,6 +1395,18 @@ void gtk_display_init(DisplayState *ds)
|
|||
|
||||
gtk_notebook_append_page(GTK_NOTEBOOK(s->notebook), s->drawing_area, gtk_label_new("VGA"));
|
||||
|
||||
filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, "qemu-icon.bmp");
|
||||
if (filename) {
|
||||
GError *error = NULL;
|
||||
GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(filename, &error);
|
||||
if (pixbuf) {
|
||||
gtk_window_set_icon(GTK_WINDOW(s->window), pixbuf);
|
||||
} else {
|
||||
g_error_free(error);
|
||||
}
|
||||
g_free(filename);
|
||||
}
|
||||
|
||||
gd_create_menus(s);
|
||||
|
||||
gd_connect_signals(s);
|
||||
|
|
Loading…
Reference in New Issue