git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52008
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-
-#ifndef __BMPBUTTONH__
-#define __BMPBUTTONH__
+#ifndef _WX_GTK_BMPBUTTON_H_
+#define _WX_GTK_BMPBUTTON_H_
// ----------------------------------------------------------------------------
// wxBitmapButton
// ----------------------------------------------------------------------------
// wxBitmapButton
// implementation
// --------------
// implementation
// --------------
- void GTKHasFocus();
- void GTKNotFocus();
- void GTKStartSelect();
- void GTKEndSelect();
-
- bool m_hasFocus:1;
- bool m_isSelected:1;
+ void GTKMouseEnters();
+ void GTKMouseLeaves();
+ void GTKPressed();
+ void GTKReleased();
protected:
virtual void OnSetBitmap();
protected:
virtual void OnSetBitmap();
+ void OnFocusChange(wxFocusEvent& event);
+
+ // true iff mouse hovers over the button
+ bool m_mouseHovers;
+ // true iff the button is in pressed state
+ bool m_isPressed;
+
DECLARE_DYNAMIC_CLASS(wxBitmapButton)
DECLARE_DYNAMIC_CLASS(wxBitmapButton)
-#endif // __BMPBUTTONH__
+#endif // _WX_GTK_BMPBUTTON_H_
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
+ button->GTKMouseEnters();
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
+ button->GTKMouseLeaves();
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
- button->GTKStartSelect();
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
- button->GTKEndSelect();
IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton,wxButton)
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()
{
void wxBitmapButton::Init()
{
- m_hasFocus =
- m_isSelected = false;
+ m_mouseHovers =
+ m_isPressed = false;
}
bool wxBitmapButton::Create( wxWindow *parent,
}
bool wxBitmapButton::Create( wxWindow *parent,
wxBitmap the_one;
if (!IsThisEnabled())
the_one = m_bmpDisabled;
wxBitmap the_one;
if (!IsThisEnabled())
the_one = m_bmpDisabled;
+ else if (m_mouseHovers)
+ the_one = m_bmpHover;
+ else if (HasFocus())
the_one = m_bmpFocus;
else
the_one = m_bmpNormal;
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)
{
// initial bitmap
GtkWidget *child = GTK_BIN(m_widget)->child;
if (child == NULL)
{
// initial bitmap
gtk_image_new_from_pixbuf(the_one.GetPixbuf());
gtk_widget_show(pixmap);
gtk_image_new_from_pixbuf(the_one.GetPixbuf());
gtk_widget_show(pixmap);
-void wxBitmapButton::GTKHasFocus()
+void wxBitmapButton::GTKMouseEnters()
+{
+ m_mouseHovers = true;
+ OnSetBitmap();
+}
+
+void wxBitmapButton::GTKMouseLeaves()
-void wxBitmapButton::GTKNotFocus()
+void wxBitmapButton::GTKPressed()
-void wxBitmapButton::GTKStartSelect()
+void wxBitmapButton::GTKReleased()
-void wxBitmapButton::GTKEndSelect()
+void wxBitmapButton::OnFocusChange(wxFocusEvent& event)