X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ee6db21e41cb61c310162720bfd5f7a1ef90b01d..f42b1601d6a55f3c2b7e7c22894727bda70d8505:/src/gtk/statbmp.cpp diff --git a/src/gtk/statbmp.cpp b/src/gtk/statbmp.cpp index 98c62d2447..f9e6700b8f 100644 --- a/src/gtk/statbmp.cpp +++ b/src/gtk/statbmp.cpp @@ -46,7 +46,7 @@ void wxStaticBitmap::CreatePixmapWidget() /* insert GTK representation */ (*m_parent->m_insertCallback)(m_parent, this); - + gtk_widget_show( m_widget ); PostCreation(); @@ -58,14 +58,19 @@ bool wxStaticBitmap::Create( wxWindow *parent, wxWindowID id, const wxBitmap &bi { m_needParent = TRUE; - wxSize newSize = size; - - PreCreation( parent, id, pos, size, style, name ); + if (!PreCreation( parent, pos, size ) || + !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name )) + { + wxFAIL_MSG( _T("wxXX creation failed") ); + return FALSE; + } m_bitmap = bitmap; if (m_bitmap.Ok()) { + wxSize newSize = size; + GdkBitmap *mask = (GdkBitmap *) NULL; if ( m_bitmap.GetMask() ) mask = m_bitmap.GetMask()->GetBitmap(); @@ -81,7 +86,7 @@ bool wxStaticBitmap::Create( wxWindow *parent, wxWindowID id, const wxBitmap &bi PostCreation(); } - + m_parent->DoAddChild( this ); Show( TRUE ); @@ -100,17 +105,17 @@ void wxStaticBitmap::SetBitmap( const wxBitmap &bitmap ) { gtk_widget_destroy( m_widget ); - /* recreate m_widget because we've created a label - and not a bitmap above */ + /* recreate m_widget because we've created a label + and not a bitmap above */ CreatePixmapWidget(); } - else - { + 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 ); - } - + } + SetSize( m_bitmap.GetWidth(), m_bitmap.GetHeight() ); } }