Changed wxSizer::GetSize() to DoGetSize() (and others)
[wxWidgets.git] / src / gtk1 / button.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: button.cpp
3 // Purpose:
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifdef __GNUG__
11 #pragma implementation "button.h"
12 #endif
13
14 #include "wx/button.h"
15
16 #include "gdk/gdk.h"
17 #include "gtk/gtk.h"
18
19 //-----------------------------------------------------------------------------
20 // classes
21 //-----------------------------------------------------------------------------
22
23 class wxButton;
24
25 //-----------------------------------------------------------------------------
26 // idle system
27 //-----------------------------------------------------------------------------
28
29 extern void wxapp_install_idle_handler();
30 extern bool g_isIdle;
31
32 //-----------------------------------------------------------------------------
33 // data
34 //-----------------------------------------------------------------------------
35
36 extern bool g_blockEventsOnDrag;
37
38 //-----------------------------------------------------------------------------
39 // "clicked"
40 //-----------------------------------------------------------------------------
41
42 static void gtk_button_clicked_callback( GtkWidget *WXUNUSED(widget), wxButton *button )
43 {
44 if (g_isIdle)
45 wxapp_install_idle_handler();
46
47 if (!button->m_hasVMT) return;
48 if (g_blockEventsOnDrag) return;
49
50 printf( "clicked: %s.\n", button->GetLabel().c_str() );
51
52 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, button->GetId());
53 event.SetEventObject(button);
54 button->GetEventHandler()->ProcessEvent(event);
55 }
56
57 //-----------------------------------------------------------------------------
58 // wxButton
59 //-----------------------------------------------------------------------------
60
61 IMPLEMENT_DYNAMIC_CLASS(wxButton,wxControl)
62
63 wxButton::wxButton()
64 {
65 }
66
67 wxButton::~wxButton()
68 {
69 if (m_clientData) delete m_clientData;
70 }
71
72 bool wxButton::Create( wxWindow *parent, wxWindowID id, const wxString &label,
73 const wxPoint &pos, const wxSize &size,
74 long style, const wxValidator& validator, const wxString &name )
75 {
76 m_clientData = (wxClientData*) NULL;
77 m_needParent = TRUE;
78 m_acceptsFocus = TRUE;
79
80 wxSize newSize = size;
81
82 PreCreation( parent, id, pos, newSize, style, name );
83
84 SetValidator( validator );
85
86 m_widget = gtk_button_new_with_label( "" );
87
88 #if (GTK_MINOR_VERSION > 0)
89 if (style & wxNO_BORDER)
90 gtk_button_set_relief( GTK_BUTTON(m_widget), GTK_RELIEF_NONE );
91 #endif
92
93 SetLabel(label);
94
95 if (newSize.x == -1) newSize.x = 15+gdk_string_measure( m_widget->style->font, label.mbc_str() );
96 if (newSize.y == -1) newSize.y = 26;
97 SetSize( newSize.x, newSize.y );
98
99 gtk_signal_connect( GTK_OBJECT(m_widget), "clicked",
100 GTK_SIGNAL_FUNC(gtk_button_clicked_callback), (gpointer*)this );
101
102 m_parent->DoAddChild( this );
103
104 PostCreation();
105
106 SetBackgroundColour( parent->GetBackgroundColour() );
107 SetForegroundColour( parent->GetForegroundColour() );
108 SetFont( parent->GetFont() );
109
110 Show( TRUE );
111
112 return TRUE;
113 }
114
115 void wxButton::SetDefault(void)
116 {
117 GTK_WIDGET_SET_FLAGS( m_widget, GTK_CAN_DEFAULT );
118 gtk_widget_grab_default( m_widget );
119
120 SetSize( m_x, m_y, m_width, m_height );
121 }
122
123 void wxButton::SetLabel( const wxString &label )
124 {
125 wxCHECK_RET( m_widget != NULL, _T("invalid button") );
126
127 wxControl::SetLabel( label );
128
129 gtk_label_set( GTK_LABEL( GTK_BUTTON(m_widget)->child ), GetLabel().mbc_str() );
130 }
131
132 bool wxButton::Enable( bool enable )
133 {
134 if ( !wxControl::Enable( enable ) )
135 return FALSE;
136
137 gtk_widget_set_sensitive( GTK_BUTTON(m_widget)->child, enable );
138
139 return TRUE;
140 }
141
142 void wxButton::ApplyWidgetStyle()
143 {
144 SetWidgetStyle();
145 gtk_widget_set_style( m_widget, m_widgetStyle );
146 gtk_widget_set_style( GTK_BUTTON(m_widget)->child, m_widgetStyle );
147 }