+
+static GtkStyle *gs_gtkStyle = NULL;
+
+static GdkPixbuf *CreateStockIcon(const char *stockid, GtkIconSize size)
+{
+ // FIXME: This code is not 100% correct, because stock pixmap are
+ // context-dependent and may be affected by theme engine, the
+ // correct value can only be obtained for given GtkWidget object.
+ //
+ // Fool-proof implementation of stock bitmaps would extend wxBitmap
+ // with "stock-id" representation (in addition to pixmap and pixbuf
+ // ones) and would convert it to pixbuf when rendered.
+
+ if (gs_gtkStyle == NULL)
+ {
+ GtkWidget *widget = gtk_button_new();
+ gs_gtkStyle = gtk_rc_get_style(widget);
+ wxASSERT( gs_gtkStyle != NULL );
+ g_object_ref(G_OBJECT(gs_gtkStyle));
+ gtk_widget_destroy(widget);
+ }
+
+ GtkIconSet *iconset = gtk_style_lookup_icon_set(gs_gtkStyle, stockid);
+
+ if (!iconset)
+ return NULL;
+
+ return gtk_icon_set_render_icon(iconset, gs_gtkStyle,
+ gtk_widget_get_default_direction(),
+ GTK_STATE_NORMAL, size, NULL, NULL);
+}
+
+#if GTK_CHECK_VERSION(2,4,0)
+static GdkPixbuf *CreateThemeIcon(const char *iconname,
+ GtkIconSize iconsize, const wxSize& sz)
+{
+ wxSize size(sz);
+ if (size == wxDefaultSize)
+ {
+ gtk_icon_size_lookup(iconsize, &size.x, &size.y);
+ }
+
+ return gtk_icon_theme_load_icon(
+ gtk_icon_theme_get_default(),
+ iconname,
+ size.x,
+ (GtkIconLookupFlags)0, NULL);
+}
+#endif // GTK+ >= 2.4.0
+