+ PostCreation();
+ }
+
+ m_parent->DoAddChild( this );
+
+ Show( TRUE );
+
+ return TRUE;
+}
+
+void wxStaticBitmap::SetBitmap( const wxBitmap &bitmap )
+{
+ bool hasWidget = m_bitmap.Ok();
+ m_bitmap = bitmap;
+
+ if (m_bitmap.Ok())
+ {
+ if (!hasWidget)
+ {
+ gtk_widget_destroy( m_widget );
+
+ /* recreate m_widget because we've created a label
+ and not a bitmap above */
+ CreatePixmapWidget();
+ }
+ else
+ {
+ GdkBitmap *mask = (GdkBitmap *) NULL;
+ if (m_bitmap.GetMask()) mask = m_bitmap.GetMask()->GetBitmap();
+ gtk_pixmap_set( GTK_PIXMAP(m_widget), m_bitmap.GetPixmap(), mask );
+ }
+
+ SetSizeOrDefault();
+ }
+}
+
+wxSize wxStaticBitmap::DoGetBestSize() const
+{
+ if ( m_bitmap.Ok() )
+ return wxSize(m_bitmap.GetWidth(), m_bitmap.GetHeight());
+ else
+ return wxSize(16, 16); // completely arbitrary
+}
+
+#endif