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"
19 //-----------------------------------------------------------------------------
21 //-----------------------------------------------------------------------------
25 //-----------------------------------------------------------------------------
27 //-----------------------------------------------------------------------------
29 extern void wxapp_install_idle_handler();
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
36 extern bool g_blockEventsOnDrag
;
38 //-----------------------------------------------------------------------------
40 //-----------------------------------------------------------------------------
42 static void gtk_button_clicked_callback( GtkWidget
*WXUNUSED(widget
), wxButton
*button
)
45 wxapp_install_idle_handler();
47 if (!button
->m_hasVMT
) return;
48 if (g_blockEventsOnDrag
) return;
50 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, button
->GetId());
51 event
.SetEventObject(button
);
52 button
->GetEventHandler()->ProcessEvent(event
);
55 //-----------------------------------------------------------------------------
57 //-----------------------------------------------------------------------------
59 IMPLEMENT_DYNAMIC_CLASS(wxButton
,wxControl
)
69 bool wxButton::Create( wxWindow
*parent
, wxWindowID id
, const wxString
&label
,
70 const wxPoint
&pos
, const wxSize
&size
,
71 long style
, const wxValidator
& validator
, const wxString
&name
)
74 m_acceptsFocus
= TRUE
;
76 if (!PreCreation( parent
, pos
, size
) ||
77 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
79 wxFAIL_MSG( wxT("wxButton creation failed") );
84 m_widget
= gtk_button_new_with_label( "" );
86 #if (GTK_MINOR_VERSION > 0)
87 if (style
& wxNO_BORDER
)
88 gtk_button_set_relief( GTK_BUTTON(m_widget
), GTK_RELIEF_NONE
);
94 wxFont
new_font( parent
->GetFont() );
95 GetTextExtent( m_label
, &x
, &y
, (int*)NULL
, (int*)NULL
, &new_font
);
97 wxSize newSize
= size
;
101 if (newSize
.x
< 80) newSize
.x
= 80;
106 if (newSize
.x
< 26) newSize
.x
= 26;
109 SetSize( newSize
.x
, newSize
.y
);
111 gtk_signal_connect( GTK_OBJECT(m_widget
), "clicked",
112 GTK_SIGNAL_FUNC(gtk_button_clicked_callback
), (gpointer
*)this );
114 m_parent
->DoAddChild( this );
118 SetBackgroundColour( parent
->GetBackgroundColour() );
119 SetForegroundColour( parent
->GetForegroundColour() );
120 SetFont( parent
->GetFont() );
127 void wxButton::SetDefault()
129 GTK_WIDGET_SET_FLAGS( m_widget
, GTK_CAN_DEFAULT
);
130 gtk_widget_grab_default( m_widget
);
132 SetSize( m_x
, m_y
, m_width
, m_height
);
136 wxSize
wxButton::GetDefaultSize()
138 return wxSize(80,26);
141 void wxButton::SetLabel( const wxString
&label
)
143 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid button") );
145 wxControl::SetLabel( label
);
147 gtk_label_set( GTK_LABEL( GTK_BUTTON(m_widget
)->child
), GetLabel().mbc_str() );
150 bool wxButton::Enable( bool enable
)
152 if ( !wxControl::Enable( enable
) )
155 gtk_widget_set_sensitive( GTK_BUTTON(m_widget
)->child
, enable
);
160 void wxButton::ApplyWidgetStyle()
163 gtk_widget_set_style( m_widget
, m_widgetStyle
);
164 gtk_widget_set_style( GTK_BUTTON(m_widget
)->child
, m_widgetStyle
);