-void wxStaticBitmap::CreatePixmapWidget()
-{
- wxCHECK_RET( m_bitmap.Ok(), "should only be called if we have a bitmap" );
-
- GdkBitmap *mask = (GdkBitmap *) NULL;
- if ( m_bitmap.GetMask() )
- mask = m_bitmap.GetMask()->GetBitmap();
- m_widget = gtk_pixmap_new( m_bitmap.GetPixmap(), mask );
-
- PostCreation();
-}
-