// Name: bmpbuttn.cpp
// Purpose:
// Author: Robert Roebling
-// Id: $id$
+// Id: $Id$
// Copyright: (c) 1998 Robert Roebling
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
PostCreation();
+ SetBackgroundColour( parent->GetBackgroundColour() );
+
Show( TRUE );
return TRUE;
void wxBitmapButton::SetLabel( const wxString &label )
{
+ wxCHECK_RET( m_widget != NULL, "invalid button" );
+
wxControl::SetLabel( label );
}
wxString wxBitmapButton::GetLabel(void) const
{
+ wxCHECK_MSG( m_widget != NULL, "", "invalid button" );
+
return wxControl::GetLabel();
}
void wxBitmapButton::SetBitmapLabel( const wxBitmap& bitmap )
{
+ wxCHECK_RET( m_widget != NULL, "invalid button" );
+
m_bitmap = bitmap;
if (!m_bitmap.Ok()) return;
gtk_pixmap_set( g_pixmap, m_bitmap.GetPixmap(), mask );
}
-
-
+void wxBitmapButton::ApplyWidgetStyle()
+{
+}