fixed wxBitmapButton to use focus and hover bitmaps correctly; also fixed tons of misnomers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52008 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2008-02-22 19:59:36 +00:00
parent 66470d87a3
commit 6fba6c78a4
2 changed files with 50 additions and 30 deletions

View File

@@ -7,9 +7,8 @@
// Licence: wxWindows licence // Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
#ifndef _WX_GTK_BMPBUTTON_H_
#ifndef __BMPBUTTONH__ #define _WX_GTK_BMPBUTTON_H_
#define __BMPBUTTONH__
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// wxBitmapButton // wxBitmapButton
@@ -51,13 +50,10 @@ public:
// implementation // implementation
// -------------- // --------------
void GTKHasFocus(); void GTKMouseEnters();
void GTKNotFocus(); void GTKMouseLeaves();
void GTKStartSelect(); void GTKPressed();
void GTKEndSelect(); void GTKReleased();
bool m_hasFocus:1;
bool m_isSelected:1;
protected: protected:
virtual void OnSetBitmap(); virtual void OnSetBitmap();
@@ -67,7 +63,15 @@ protected:
void Init(); void Init();
private: private:
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)
DECLARE_EVENT_TABLE()
}; };
#endif // __BMPBUTTONH__ #endif // _WX_GTK_BMPBUTTON_H_

View File

@@ -54,7 +54,7 @@ static void gtk_bmpbutton_enter_callback( GtkWidget *WXUNUSED(widget), wxBitmapB
if (!button->m_hasVMT) return; if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return; if (g_blockEventsOnDrag) return;
button->GTKHasFocus(); button->GTKMouseEnters();
} }
} }
@@ -68,7 +68,7 @@ static void gtk_bmpbutton_leave_callback( GtkWidget *WXUNUSED(widget), wxBitmapB
if (!button->m_hasVMT) return; if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return; if (g_blockEventsOnDrag) return;
button->GTKNotFocus(); button->GTKMouseLeaves();
} }
} }
@@ -82,7 +82,7 @@ static void gtk_bmpbutton_press_callback( GtkWidget *WXUNUSED(widget), wxBitmapB
if (!button->m_hasVMT) return; if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return; if (g_blockEventsOnDrag) return;
button->GTKStartSelect(); button->GTKPressed();
} }
} }
@@ -96,7 +96,7 @@ static void gtk_bmpbutton_release_callback( GtkWidget *WXUNUSED(widget), wxBitma
if (!button->m_hasVMT) return; if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return; if (g_blockEventsOnDrag) return;
button->GTKEndSelect(); button->GTKReleased();
} }
} }
@@ -106,10 +106,16 @@ static void gtk_bmpbutton_release_callback( GtkWidget *WXUNUSED(widget), wxBitma
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_mouseHovers =
m_isSelected = false; m_isPressed = false;
} }
bool wxBitmapButton::Create( wxWindow *parent, bool wxBitmapButton::Create( wxWindow *parent,
@@ -184,15 +190,19 @@ void wxBitmapButton::OnSetBitmap()
wxBitmap the_one; wxBitmap the_one;
if (!IsThisEnabled()) if (!IsThisEnabled())
the_one = m_bmpDisabled; the_one = m_bmpDisabled;
else if (m_isSelected) else if (m_isPressed)
the_one = m_bmpSelected; the_one = m_bmpSelected;
else if (m_hasFocus) else if (m_mouseHovers)
the_one = m_bmpHover;
else if (HasFocus())
the_one = m_bmpFocus; the_one = m_bmpFocus;
else else
the_one = m_bmpNormal; the_one = m_bmpNormal;
if (!the_one.Ok()) the_one = m_bmpNormal; if (!the_one.Ok())
if (!the_one.Ok()) return; the_one = m_bmpNormal;
if (!the_one.Ok())
return;
GtkWidget *child = GTK_BIN(m_widget)->child; GtkWidget *child = GTK_BIN(m_widget)->child;
if (child == NULL) if (child == NULL)
@@ -226,27 +236,33 @@ bool wxBitmapButton::Enable( bool enable )
return true; return true;
} }
void wxBitmapButton::GTKHasFocus() void wxBitmapButton::GTKMouseEnters()
{ {
m_hasFocus = true; m_mouseHovers = true;
OnSetBitmap(); OnSetBitmap();
} }
void wxBitmapButton::GTKNotFocus() void wxBitmapButton::GTKMouseLeaves()
{ {
m_hasFocus = false; m_mouseHovers = false;
OnSetBitmap(); OnSetBitmap();
} }
void wxBitmapButton::GTKStartSelect() void wxBitmapButton::GTKPressed()
{ {
m_isSelected = true; m_isPressed = true;
OnSetBitmap(); OnSetBitmap();
} }
void wxBitmapButton::GTKEndSelect() void wxBitmapButton::GTKReleased()
{ {
m_isSelected = false; m_isPressed = false;
OnSetBitmap();
}
void wxBitmapButton::OnFocusChange(wxFocusEvent& event)
{
event.Skip();
OnSetBitmap(); OnSetBitmap();
} }