1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "button.h"
14 #include "wx/button.h"
16 //-----------------------------------------------------------------------------
18 //-----------------------------------------------------------------------------
22 //-----------------------------------------------------------------------------
24 //-----------------------------------------------------------------------------
26 extern bool g_blockEventsOnDrag
;
28 //-----------------------------------------------------------------------------
30 //-----------------------------------------------------------------------------
32 static void gtk_button_clicked_callback( GtkWidget
*WXUNUSED(widget
), wxButton
*button
)
34 if (!button
->HasVMT()) return;
35 if (g_blockEventsOnDrag
) return;
37 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, button
->GetId());
38 event
.SetEventObject(button
);
39 button
->GetEventHandler()->ProcessEvent(event
);
42 //-----------------------------------------------------------------------------
44 //-----------------------------------------------------------------------------
46 IMPLEMENT_DYNAMIC_CLASS(wxButton
,wxControl
)
54 if (m_clientData
) delete m_clientData
;
57 bool wxButton::Create( wxWindow
*parent
, wxWindowID id
, const wxString
&label
,
58 const wxPoint
&pos
, const wxSize
&size
,
59 long style
, const wxValidator
& validator
, const wxString
&name
)
61 m_clientData
= (wxClientData
*) NULL
;
64 wxSize newSize
= size
;
66 PreCreation( parent
, id
, pos
, newSize
, style
, name
);
68 SetValidator( validator
);
70 m_widget
= gtk_button_new_with_label( m_label
);
73 if (newSize
.x
== -1) newSize
.x
= 15+gdk_string_measure( m_widget
->style
->font
, label
);
74 if (newSize
.y
== -1) newSize
.y
= 26;
75 SetSize( newSize
.x
, newSize
.y
);
77 gtk_signal_connect( GTK_OBJECT(m_widget
), "clicked",
78 GTK_SIGNAL_FUNC(gtk_button_clicked_callback
), (gpointer
*)this );
80 m_parent
->AddChild( this );
82 (m_parent
->m_insertCallback
)( m_parent
, this );
86 SetBackgroundColour( parent
->GetBackgroundColour() );
87 SetForegroundColour( parent
->GetForegroundColour() );
94 void wxButton::SetDefault(void)
97 GTK_WIDGET_SET_FLAGS( m_widget, GTK_CAN_DEFAULT );
98 gtk_widget_grab_default( m_widget );
102 void wxButton::SetLabel( const wxString
&label
)
104 wxCHECK_RET( m_widget
!= NULL
, "invalid button" );
106 wxControl::SetLabel( label
);
108 gtk_label_set( GTK_LABEL( GTK_BUTTON(m_widget
)->child
), GetLabel() );
111 void wxButton::Enable( bool enable
)
113 wxCHECK_RET( m_widget
!= NULL
, "invalid button" );
115 wxControl::Enable( enable
);
117 gtk_widget_set_sensitive( GTK_BUTTON(m_widget
)->child
, enable
);
120 void wxButton::ApplyWidgetStyle()
123 gtk_widget_set_style( m_widget
, m_widgetStyle
);
124 gtk_widget_set_style( GTK_BUTTON(m_widget
)->child
, m_widgetStyle
);