-// bool GetValue() const
-// Get the value of the toggle button.
-bool wxToggleBitmapButton::GetValue() const
-{
- wxCHECK_MSG(m_widget != NULL, false, wxT("invalid toggle button"));
-
- return GTK_TOGGLE_BUTTON(m_widget)->active;
-}
-
-void wxToggleBitmapButton::SetLabel(const wxBitmap& label)
-{
- wxCHECK_RET(m_widget != NULL, wxT("invalid toggle button"));
-
- m_bitmap = label;
- InvalidateBestSize();
-
- OnSetBitmap();
-}
-
-void wxToggleBitmapButton::OnSetBitmap()
-{
- if (!m_bitmap.Ok()) return;
-
- GdkBitmap *mask = (GdkBitmap *) NULL;
- if (m_bitmap.GetMask()) mask = m_bitmap.GetMask()->GetBitmap();
-
- GtkWidget *child = GTK_BIN(m_widget)->child;
- if (child == NULL)
- {
- // initial bitmap
- GtkWidget *pixmap = gtk_pixmap_new(m_bitmap.GetPixmap(), mask);
- gtk_widget_show(pixmap);
- gtk_container_add(GTK_CONTAINER(m_widget), pixmap);
+ // we need to adjust the size after setting the bitmap as it may be too
+ // big for the default button size
+ SetInitialSize(size);