X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c37dd6dad7f53b8f5f4c4a8d6434c2851cd2b9e4..85284ca4b226d9a1ab6bed26c5eaa480543649d5:/src/gtk/button.cpp diff --git a/src/gtk/button.cpp b/src/gtk/button.cpp index 198a46a72d..807facea1c 100644 --- a/src/gtk/button.cpp +++ b/src/gtk/button.cpp @@ -126,7 +126,8 @@ bool wxButton::Create(wxWindow *parent, // create either a standard button with text label (which may still contain // an image under GTK+ 2.6+) or a bitmap-only button if we don't have any // label - const bool useLabel = !label.empty() || wxIsStockID(id); + const bool + useLabel = !(style & wxBU_NOTEXT) && (!label.empty() || wxIsStockID(id)); if ( useLabel ) { m_widget = gtk_button_new_with_mnemonic(""); @@ -237,6 +238,10 @@ void wxButton::SetLabel( const wxString &lbl ) wxControl::SetLabel(label); + // don't use label if it was explicitly disabled + if ( HasFlag(wxBU_NOTEXT) ) + return; + if (wxIsStockID(m_windowId) && wxIsStockLabel(m_windowId, label)) { const char *stock = wxGetStockGtkID(m_windowId); @@ -248,6 +253,10 @@ void wxButton::SetLabel( const wxString &lbl ) } } + // this call is necessary if the button had been initially created without + // a (text) label -- then we didn't use gtk_button_new_with_mnemonic() and + // so "use-underline" GtkButton property remained unset + gtk_button_set_use_underline(GTK_BUTTON(m_widget), TRUE); const wxString labelGTK = GTKConvertMnemonics(label); gtk_button_set_label(GTK_BUTTON(m_widget), wxGTK_CONV(labelGTK)); gtk_button_set_use_stock(GTK_BUTTON(m_widget), FALSE); @@ -410,7 +419,7 @@ void wxButton::GTKDoShowBitmap(const wxBitmap& bitmap) wxASSERT_MSG( bitmap.IsOk(), "invalid bitmap" ); GtkWidget *image; - if ( GetLabel().empty() ) + if ( DontShowLabel() ) { image = GTK_BIN(m_widget)->child; } @@ -450,7 +459,7 @@ void wxButton::DoSetBitmap(const wxBitmap& bitmap, State which) switch ( which ) { case State_Normal: - if ( GetLabel().empty() ) + if ( DontShowLabel() ) { // we only have the bitmap in this button, never remove it but // do invalidate the best size when the bitmap (and presumably