X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/937013e0fd914d4c42f9f5ec98da665986b93dfa..32be10a45d1d19df9b0841183ac9502ba8c2cc32:/src/gtk1/bmpbuttn.cpp diff --git a/src/gtk1/bmpbuttn.cpp b/src/gtk1/bmpbuttn.cpp index a814ea7a31..18d3951163 100644 --- a/src/gtk1/bmpbuttn.cpp +++ b/src/gtk1/bmpbuttn.cpp @@ -64,7 +64,7 @@ static void gtk_bmpbutton_enter_callback( GtkWidget *WXUNUSED(widget), wxBitmapB if (!button->m_hasVMT) return; if (g_blockEventsOnDrag) return; - button->HasFocus(); + button->GTKSetHasFocus(); } } @@ -78,7 +78,7 @@ static void gtk_bmpbutton_leave_callback( GtkWidget *WXUNUSED(widget), wxBitmapB if (!button->m_hasVMT) return; if (g_blockEventsOnDrag) return; - button->NotFocus(); + button->GTKSetNotFocus(); } } @@ -141,14 +141,14 @@ bool wxBitmapButton::Create( wxWindow *parent, return false; } - m_bmpNormal = bitmap; + m_bitmaps[State_Normal] = bitmap; m_widget = gtk_button_new(); if (style & wxNO_BORDER) gtk_button_set_relief( GTK_BUTTON(m_widget), GTK_RELIEF_NONE ); - if (m_bmpNormal.Ok()) + if (bitmap.IsOk()) { OnSetBitmap(); } @@ -195,18 +195,20 @@ void wxBitmapButton::OnSetBitmap() wxBitmap the_one; if (!IsThisEnabled()) - the_one = m_bmpDisabled; - else if (m_isSelected) - the_one = m_bmpSelected; - else if (m_hasFocus) - the_one = m_bmpFocus; - else - the_one = m_bmpNormal; - - if (!the_one.Ok()) the_one = m_bmpNormal; - if (!the_one.Ok()) return; - - GdkBitmap *mask = (GdkBitmap *) NULL; + the_one = GetBitmapDisabled(); + else if (m_isSelected) + the_one = GetBitmapPressed(); + else if (HasFocus()) + the_one = GetBitmapFocus(); + + if (!the_one.IsOk()) + { + the_one = GetBitmapLabel(); + if (!the_one.IsOk()) + return; + } + + GdkBitmap *mask = NULL; if (the_one.GetMask()) mask = the_one.GetMask()->GetBitmap(); GtkWidget *child = BUTTON_CHILD(m_widget); @@ -240,13 +242,13 @@ bool wxBitmapButton::Enable( bool enable ) return true; } -void wxBitmapButton::HasFocus() +void wxBitmapButton::GTKSetHasFocus() { m_hasFocus = true; OnSetBitmap(); } -void wxBitmapButton::NotFocus() +void wxBitmapButton::GTKSetNotFocus() { m_hasFocus = false; OnSetBitmap();