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