demos/gtk-demo/main.c (setup_default_icon): Use a shaped

icon instead of one with ugly white background.
This commit is contained in:
Matthias Clasen 2001-09-14 21:24:57 +00:00
parent 33bb0bebf7
commit a5f9754350
8 changed files with 41 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Fri Sep 14 22:31:25 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/main.c (setup_default_icon): Use a shaped
icon instead of one with ugly white background.
Fri Sep 14 22:26:01 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/stock_browser.c (id_to_macro): make

View File

@ -1,3 +1,8 @@
Fri Sep 14 22:31:25 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/main.c (setup_default_icon): Use a shaped
icon instead of one with ugly white background.
Fri Sep 14 22:26:01 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/stock_browser.c (id_to_macro): make

View File

@ -1,3 +1,8 @@
Fri Sep 14 22:31:25 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/main.c (setup_default_icon): Use a shaped
icon instead of one with ugly white background.
Fri Sep 14 22:26:01 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/stock_browser.c (id_to_macro): make

View File

@ -1,3 +1,8 @@
Fri Sep 14 22:31:25 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/main.c (setup_default_icon): Use a shaped
icon instead of one with ugly white background.
Fri Sep 14 22:26:01 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/stock_browser.c (id_to_macro): make

View File

@ -1,3 +1,8 @@
Fri Sep 14 22:31:25 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/main.c (setup_default_icon): Use a shaped
icon instead of one with ugly white background.
Fri Sep 14 22:26:01 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/stock_browser.c (id_to_macro): make

View File

@ -1,3 +1,8 @@
Fri Sep 14 22:31:25 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/main.c (setup_default_icon): Use a shaped
icon instead of one with ugly white background.
Fri Sep 14 22:26:01 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/stock_browser.c (id_to_macro): make

View File

@ -1,3 +1,8 @@
Fri Sep 14 22:31:25 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/main.c (setup_default_icon): Use a shaped
icon instead of one with ugly white background.
Fri Sep 14 22:26:01 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/stock_browser.c (id_to_macro): make

View File

@ -765,12 +765,17 @@ setup_default_icon (void)
if (pixbuf)
{
GList *list;
GdkPixbuf *transparent;
/* The gtk-logo-rgb icon has a white background, make it transparent */
transparent = gdk_pixbuf_add_alpha (pixbuf, TRUE, 0xff, 0xff, 0xff);
list = NULL;
list = g_list_append (list, pixbuf);
list = g_list_append (list, transparent);
gtk_window_set_default_icon_list (list);
g_list_free (list);
g_object_unref (G_OBJECT (pixbuf));
g_object_unref (G_OBJECT (transparent));
}
}