first pass of wxUniv merge - nothing works, most parts don't even compile
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10673 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -11,10 +11,12 @@
|
||||
#pragma implementation "statbmp.h"
|
||||
#endif
|
||||
|
||||
#include "wx/statbmp.h"
|
||||
#include "wx/defs.h"
|
||||
|
||||
#if wxUSE_STATBMP
|
||||
|
||||
#include "wx/statbmp.h"
|
||||
|
||||
#include "gdk/gdk.h"
|
||||
#include "gtk/gtk.h"
|
||||
|
||||
@@ -74,7 +76,7 @@ bool wxStaticBitmap::Create( wxWindow *parent, wxWindowID id, const wxBitmap &bi
|
||||
mask = m_bitmap.GetMask()->GetBitmap();
|
||||
m_widget = gtk_pixmap_new( m_bitmap.GetPixmap(), mask );
|
||||
|
||||
SetSizeOrDefault( size );
|
||||
SetBestSize( size );
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -112,16 +114,9 @@ void wxStaticBitmap::SetBitmap( const wxBitmap &bitmap )
|
||||
gtk_pixmap_set( GTK_PIXMAP(m_widget), m_bitmap.GetPixmap(), mask );
|
||||
}
|
||||
|
||||
SetSizeOrDefault();
|
||||
SetBestSize(wxSize(bitmap.GetWidth(), bitmap.GetHeight()));
|
||||
}
|
||||
}
|
||||
|
||||
wxSize wxStaticBitmap::DoGetBestSize() const
|
||||
{
|
||||
if ( m_bitmap.Ok() )
|
||||
return wxSize(m_bitmap.GetWidth(), m_bitmap.GetHeight());
|
||||
else
|
||||
return wxSize(16, 16); // completely arbitrary
|
||||
}
|
||||
#endif // wxUSE_STATBMP
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user