X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/47908e25f992135fbc8c9573870784c62654e9e9..520e470fdd0daef09c77938db642e4583933c90d:/src/gtk1/button.cpp diff --git a/src/gtk1/button.cpp b/src/gtk1/button.cpp index 52c4e2d4b9..034e229f18 100644 --- a/src/gtk1/button.cpp +++ b/src/gtk1/button.cpp @@ -21,43 +21,49 @@ class wxButton; //----------------------------------------------------------------------------- -// wxButton +// data //----------------------------------------------------------------------------- -IMPLEMENT_DYNAMIC_CLASS(wxButton,wxControl) +extern bool g_blockEventsOnDrag; + +//----------------------------------------------------------------------------- +// "clicked" +//----------------------------------------------------------------------------- -void gtk_button_clicked_callback( GtkWidget *WXUNUSED(widget), wxButton *button ) +static void gtk_button_clicked_callback( GtkWidget *WXUNUSED(widget), wxButton *button ) { + if (!button->HasVMT()) return; + if (g_blockEventsOnDrag) return; + wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, button->GetId()); event.SetEventObject(button); button->GetEventHandler()->ProcessEvent(event); -}; +} +//----------------------------------------------------------------------------- +// wxButton //----------------------------------------------------------------------------- -wxButton::wxButton(void) -{ -}; +IMPLEMENT_DYNAMIC_CLASS(wxButton,wxControl) -wxButton::wxButton( wxWindow *parent, wxWindowID id, const wxString &label, - const wxPoint &pos, const wxSize &size, - long style, const wxString &name ) +wxButton::wxButton(void) { - Create( parent, id, label, pos, size, style, name ); -}; +} bool wxButton::Create( wxWindow *parent, wxWindowID id, const wxString &label, const wxPoint &pos, const wxSize &size, - long style, const wxString &name ) + long style, const wxValidator& validator, const wxString &name ) { m_needParent = TRUE; wxSize newSize = size; PreCreation( parent, id, pos, newSize, style, name ); + + SetValidator( validator ); - SetLabel(label); m_widget = gtk_button_new_with_label( m_label ); + SetLabel(label); if (newSize.x == -1) newSize.x = 15+gdk_string_measure( m_widget->style->font, label ); if (newSize.y == -1) newSize.y = 26; @@ -71,18 +77,55 @@ bool wxButton::Create( wxWindow *parent, wxWindowID id, const wxString &label, Show( TRUE ); return TRUE; -}; +} void wxButton::SetDefault(void) { -}; +/* + GTK_WIDGET_SET_FLAGS( m_widget, GTK_CAN_DEFAULT ); + gtk_widget_grab_default( m_widget ); +*/ +} void wxButton::SetLabel( const wxString &label ) { wxControl::SetLabel( label ); -}; + GtkButton *bin = GTK_BUTTON( m_widget ); + GtkLabel *g_label = GTK_LABEL( bin->child ); + gtk_label_set( g_label, GetLabel() ); +} + +void wxButton::Enable( bool enable ) +{ + wxControl::Enable( enable ); + GtkButton *bin = GTK_BUTTON( m_widget ); + GtkWidget *label = bin->child; + gtk_widget_set_sensitive( label, enable ); +} -wxString wxButton::GetLabel(void) const +void wxButton::SetFont( const wxFont &font ) { - return wxControl::GetLabel(); -}; + if (((wxFont*)&font)->Ok()) + m_font = font; + else + m_font = *wxSWISS_FONT; + + GtkButton *bin = GTK_BUTTON( m_widget ); + GtkWidget *label = bin->child; + + GtkStyle *style = (GtkStyle*) NULL; + if (!m_hasOwnStyle) + { + m_hasOwnStyle = TRUE; + style = gtk_style_copy( gtk_widget_get_style( label ) ); + } + else + { + style = gtk_widget_get_style( label ); + } + + gdk_font_unref( style->font ); + style->font = gdk_font_ref( m_font.GetInternalFont( 1.0 ) ); + + gtk_widget_set_style( label, style ); +}