if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
- button->GTKHasFocus();
+ button->GTKMouseEnters();
}
}
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
- button->GTKNotFocus();
+ button->GTKMouseLeaves();
}
}
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
- button->GTKStartSelect();
+ button->GTKPressed();
}
}
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
- button->GTKEndSelect();
+ button->GTKReleased();
}
}
IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton,wxButton)
+BEGIN_EVENT_TABLE(wxBitmapButton, wxButton)
+ EVT_SET_FOCUS(wxBitmapButton::OnFocusChange)
+ EVT_KILL_FOCUS(wxBitmapButton::OnFocusChange)
+END_EVENT_TABLE()
+
+
void wxBitmapButton::Init()
{
- m_hasFocus =
- m_isSelected = false;
+ m_mouseHovers =
+ m_isPressed = false;
}
bool wxBitmapButton::Create( wxWindow *parent,
m_bmpNormal = bitmap;
m_widget = gtk_button_new();
+ g_object_ref(m_widget);
if (style & wxNO_BORDER)
gtk_button_set_relief( GTK_BUTTON(m_widget), GTK_RELIEF_NONE );
wxBitmap the_one;
if (!IsThisEnabled())
the_one = m_bmpDisabled;
- else if (m_isSelected)
+ else if (m_isPressed)
the_one = m_bmpSelected;
- else if (m_hasFocus)
+ else if (m_mouseHovers)
+ the_one = m_bmpHover;
+ else if (HasFocus())
the_one = m_bmpFocus;
else
the_one = m_bmpNormal;
- if (!the_one.Ok()) the_one = m_bmpNormal;
- if (!the_one.Ok()) return;
+ if (!the_one.Ok())
+ the_one = m_bmpNormal;
+ if (!the_one.Ok())
+ return;
- GtkWidget *child = GTK_BIN(m_widget)->child;
- if (child == NULL)
+ GtkWidget* image = GTK_BIN(m_widget)->child;
+ if (image == NULL)
{
- // initial bitmap
- GtkWidget *pixmap =
- gtk_image_new_from_pixbuf(the_one.GetPixbuf());
-
- gtk_widget_show(pixmap);
- gtk_container_add(GTK_CONTAINER(m_widget), pixmap);
- }
- else
- { // subsequent bitmaps
- GtkImage *pixmap = GTK_IMAGE(child);
- gtk_image_set_from_pixbuf(pixmap, the_one.GetPixbuf());
+ image = gtk_image_new();
+ gtk_widget_show(image);
+ gtk_container_add(GTK_CONTAINER(m_widget), image);
}
+ // always use pixbuf, because pixmap mask does not
+ // work with disabled images in some themes
+ gtk_image_set_from_pixbuf(GTK_IMAGE(image), the_one.GetPixbuf());
}
wxSize wxBitmapButton::DoGetBestSize() const
return true;
}
-void wxBitmapButton::GTKHasFocus()
+void wxBitmapButton::GTKMouseEnters()
+{
+ m_mouseHovers = true;
+ OnSetBitmap();
+}
+
+void wxBitmapButton::GTKMouseLeaves()
{
- m_hasFocus = true;
+ m_mouseHovers = false;
OnSetBitmap();
}
-void wxBitmapButton::GTKNotFocus()
+void wxBitmapButton::GTKPressed()
{
- m_hasFocus = false;
+ m_isPressed = true;
OnSetBitmap();
}
-void wxBitmapButton::GTKStartSelect()
+void wxBitmapButton::GTKReleased()
{
- m_isSelected = true;
+ m_isPressed = false;
OnSetBitmap();
}
-void wxBitmapButton::GTKEndSelect()
+void wxBitmapButton::OnFocusChange(wxFocusEvent& event)
{
- m_isSelected = false;
+ event.Skip();
OnSetBitmap();
}