]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: button.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
dbf858b5 | 5 | // Id: $Id$ |
01111366 | 6 | // Copyright: (c) 1998 Robert Roebling |
8ab696e0 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifdef __GNUG__ | |
11 | #pragma implementation "button.h" | |
12 | #endif | |
13 | ||
1e6feb95 VZ |
14 | #include "wx/defs.h" |
15 | ||
16 | #if wxUSE_BUTTON | |
17 | ||
c801d85f KB |
18 | #include "wx/button.h" |
19 | ||
9e691f46 | 20 | #include "wx/gtk/private.h" |
83624f79 | 21 | |
c801d85f KB |
22 | //----------------------------------------------------------------------------- |
23 | // classes | |
24 | //----------------------------------------------------------------------------- | |
25 | ||
26 | class wxButton; | |
27 | ||
acfd422a RR |
28 | //----------------------------------------------------------------------------- |
29 | // idle system | |
30 | //----------------------------------------------------------------------------- | |
31 | ||
32 | extern void wxapp_install_idle_handler(); | |
33 | extern bool g_isIdle; | |
34 | ||
66bd6b93 RR |
35 | //----------------------------------------------------------------------------- |
36 | // data | |
37 | //----------------------------------------------------------------------------- | |
38 | ||
39 | extern bool g_blockEventsOnDrag; | |
40 | ||
c801d85f | 41 | //----------------------------------------------------------------------------- |
e1e955e1 | 42 | // "clicked" |
c801d85f KB |
43 | //----------------------------------------------------------------------------- |
44 | ||
66bd6b93 | 45 | static void gtk_button_clicked_callback( GtkWidget *WXUNUSED(widget), wxButton *button ) |
c801d85f | 46 | { |
9e691f46 | 47 | if (g_isIdle) |
32ac755d | 48 | wxapp_install_idle_handler(); |
acfd422a | 49 | |
a2053b27 | 50 | if (!button->m_hasVMT) return; |
acfd422a | 51 | if (g_blockEventsOnDrag) return; |
9e691f46 | 52 | |
acfd422a RR |
53 | wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, button->GetId()); |
54 | event.SetEventObject(button); | |
55 | button->GetEventHandler()->ProcessEvent(event); | |
6de97a3b | 56 | } |
c801d85f KB |
57 | |
58 | //----------------------------------------------------------------------------- | |
e1e955e1 RR |
59 | // wxButton |
60 | //----------------------------------------------------------------------------- | |
61 | ||
62 | IMPLEMENT_DYNAMIC_CLASS(wxButton,wxControl) | |
c801d85f | 63 | |
fd0eed64 | 64 | wxButton::wxButton() |
c801d85f | 65 | { |
6de97a3b | 66 | } |
c801d85f | 67 | |
fd0eed64 RR |
68 | wxButton::~wxButton() |
69 | { | |
fd0eed64 RR |
70 | } |
71 | ||
c801d85f | 72 | bool wxButton::Create( wxWindow *parent, wxWindowID id, const wxString &label, |
32c77a71 | 73 | const wxPoint &pos, const wxSize &size, |
6de97a3b | 74 | long style, const wxValidator& validator, const wxString &name ) |
c801d85f | 75 | { |
b292e2f5 RR |
76 | m_needParent = TRUE; |
77 | m_acceptsFocus = TRUE; | |
32c77a71 | 78 | |
4dcaf11a RR |
79 | if (!PreCreation( parent, pos, size ) || |
80 | !CreateBase( parent, id, pos, size, style, validator, name )) | |
81 | { | |
223d09f6 | 82 | wxFAIL_MSG( wxT("wxButton creation failed") ); |
8ab696e0 | 83 | return FALSE; |
4dcaf11a | 84 | } |
c801d85f | 85 | |
354aa1e3 RR |
86 | /* |
87 | wxString label2( label ); | |
88 | for (size_t i = 0; i < label2.Len(); i++) | |
89 | { | |
90 | if (label2.GetChar(i) == wxT('&')) | |
8ab696e0 | 91 | label2.SetChar(i,wxT('_')); |
354aa1e3 | 92 | } |
9e691f46 | 93 | |
354aa1e3 RR |
94 | GtkWidget *accel_label = gtk_accel_label_new( label2.mb_str() ); |
95 | gtk_widget_show( accel_label ); | |
9e691f46 | 96 | |
354aa1e3 RR |
97 | m_widget = gtk_button_new(); |
98 | gtk_container_add( GTK_CONTAINER(m_widget), accel_label ); | |
9e691f46 | 99 | |
354aa1e3 | 100 | gtk_accel_label_set_accel_widget( GTK_ACCEL_LABEL(accel_label), m_widget ); |
9e691f46 | 101 | |
354aa1e3 RR |
102 | guint accel_key = gtk_label_parse_uline (GTK_LABEL(accel_label), label2.mb_str() ); |
103 | gtk_accel_label_refetch( GTK_ACCEL_LABEL(accel_label) ); | |
9e691f46 | 104 | |
354aa1e3 RR |
105 | wxControl::SetLabel( label ); |
106 | */ | |
9e691f46 | 107 | |
354aa1e3 RR |
108 | m_widget = gtk_button_new_with_label(""); |
109 | ||
110 | SetLabel( label ); | |
111 | ||
9e691f46 | 112 | #if (GTK_MINOR_VERSION > 0) |
de1c750f RR |
113 | if (style & wxNO_BORDER) |
114 | gtk_button_set_relief( GTK_BUTTON(m_widget), GTK_RELIEF_NONE ); | |
115 | #endif | |
116 | ||
b292e2f5 RR |
117 | gtk_signal_connect( GTK_OBJECT(m_widget), "clicked", |
118 | GTK_SIGNAL_FUNC(gtk_button_clicked_callback), (gpointer*)this ); | |
c801d85f | 119 | |
f03fc89f | 120 | m_parent->DoAddChild( this ); |
9e691f46 | 121 | |
b292e2f5 | 122 | PostCreation(); |
9e691f46 | 123 | |
db434467 RR |
124 | SetFont( parent->GetFont() ); |
125 | ||
126 | wxSize best_size( DoGetBestSize() ); | |
127 | wxSize new_size( size ); | |
128 | if (new_size.x == -1) | |
129 | new_size.x = best_size.x; | |
130 | if (new_size.y == -1) | |
131 | new_size.y = best_size.y; | |
132 | if ((new_size.x != size.x) || (new_size.y != size.y)) | |
133 | SetSize( new_size.x, new_size.y ); | |
134 | ||
135 | SetSize( new_size ); | |
136 | ||
b292e2f5 RR |
137 | SetBackgroundColour( parent->GetBackgroundColour() ); |
138 | SetForegroundColour( parent->GetForegroundColour() ); | |
32c77a71 | 139 | |
b292e2f5 | 140 | Show( TRUE ); |
32c77a71 | 141 | |
b292e2f5 | 142 | return TRUE; |
6de97a3b | 143 | } |
32c77a71 | 144 | |
da048e3d | 145 | void wxButton::SetDefault() |
c801d85f | 146 | { |
3502e687 RR |
147 | GTK_WIDGET_SET_FLAGS( m_widget, GTK_CAN_DEFAULT ); |
148 | gtk_widget_grab_default( m_widget ); | |
9e691f46 | 149 | |
3502e687 | 150 | SetSize( m_x, m_y, m_width, m_height ); |
6de97a3b | 151 | } |
c801d85f | 152 | |
ebea0891 KB |
153 | /* static */ |
154 | wxSize wxButton::GetDefaultSize() | |
8dbf4589 RR |
155 | { |
156 | return wxSize(80,26); | |
157 | } | |
158 | ||
c801d85f KB |
159 | void wxButton::SetLabel( const wxString &label ) |
160 | { | |
223d09f6 | 161 | wxCHECK_RET( m_widget != NULL, wxT("invalid button") ); |
9e691f46 | 162 | |
b292e2f5 | 163 | wxControl::SetLabel( label ); |
9e691f46 VZ |
164 | |
165 | gtk_label_set( GTK_LABEL( BUTTON_CHILD(m_widget) ), GetLabel().mbc_str() ); | |
6de97a3b | 166 | } |
c801d85f | 167 | |
f03fc89f | 168 | bool wxButton::Enable( bool enable ) |
a9c96bcc | 169 | { |
f03fc89f VZ |
170 | if ( !wxControl::Enable( enable ) ) |
171 | return FALSE; | |
9e691f46 VZ |
172 | |
173 | gtk_widget_set_sensitive( BUTTON_CHILD(m_widget), enable ); | |
f03fc89f VZ |
174 | |
175 | return TRUE; | |
a9c96bcc RR |
176 | } |
177 | ||
58614078 | 178 | void wxButton::ApplyWidgetStyle() |
868a2826 | 179 | { |
b292e2f5 RR |
180 | SetWidgetStyle(); |
181 | gtk_widget_set_style( m_widget, m_widgetStyle ); | |
9e691f46 | 182 | gtk_widget_set_style( BUTTON_CHILD(m_widget), m_widgetStyle ); |
a81258be | 183 | } |
db434467 RR |
184 | |
185 | wxSize wxButton::DoGetBestSize() const | |
186 | { | |
187 | wxSize ret( wxControl::DoGetBestSize() ); | |
9e691f46 | 188 | |
8ab696e0 RR |
189 | if (!HasFlag(wxBU_EXACTFIT)) |
190 | { | |
191 | if (ret.x < 80) ret.x = 80; | |
192 | } | |
9e691f46 | 193 | |
db434467 RR |
194 | return ret; |
195 | } | |
196 | ||
1e6feb95 VZ |
197 | #endif // wxUSE_BUTTON |
198 |