PCH-less compilation fixes
[wxWidgets.git] / src / gtk / spinctrl.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/spinbutt.cpp
3 // Purpose: wxSpinCtrl
4 // Author: Robert
5 // Modified by:
6 // RCS-ID: $Id$
7 // Copyright: (c) Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
13
14 #if wxUSE_SPINCTRL
15
16 #include "wx/spinctrl.h"
17
18 #ifndef WX_PRECOMP
19 #include "wx/textctrl.h" // for wxEVT_COMMAND_TEXT_UPDATED
20 #include "wx/utils.h"
21 #include "wx/wxcrtvararg.h"
22 #endif
23
24 #include "wx/gtk/private.h"
25
26 //-----------------------------------------------------------------------------
27 // data
28 //-----------------------------------------------------------------------------
29
30 extern bool g_blockEventsOnDrag;
31
32 //-----------------------------------------------------------------------------
33 // "value_changed"
34 //-----------------------------------------------------------------------------
35
36 extern "C" {
37 static void
38 gtk_value_changed(GtkSpinButton* spinbutton, wxSpinCtrl* win)
39 {
40 win->m_pos = int(gtk_spin_button_get_value(spinbutton));
41 if (!win->m_hasVMT || g_blockEventsOnDrag || win->m_blockScrollEvent)
42 return;
43
44 wxCommandEvent event( wxEVT_COMMAND_SPINCTRL_UPDATED, win->GetId());
45 event.SetEventObject( win );
46
47 // note that we don't use wxSpinCtrl::GetValue() here because it would
48 // adjust the value to fit into the control range and this means that we
49 // would never be able to enter an "invalid" value in the control, even
50 // temporarily - and trying to enter 10 into the control which accepts the
51 // values in range 5..50 is then, ummm, quite challenging (hint: you can't
52 // enter 1!) (VZ)
53 event.SetInt(win->m_pos);
54 win->GetEventHandler()->ProcessEvent( event );
55 }
56 }
57
58 //-----------------------------------------------------------------------------
59 // "changed"
60 //-----------------------------------------------------------------------------
61
62 extern "C" {
63 static void
64 gtk_changed(GtkSpinButton* spinbutton, wxSpinCtrl* win)
65 {
66 if (!win->m_hasVMT || win->m_blockScrollEvent)
67 return;
68
69 wxCommandEvent event( wxEVT_COMMAND_TEXT_UPDATED, win->GetId() );
70 event.SetEventObject( win );
71 event.SetString( GTK_ENTRY(spinbutton)->text );
72
73 // see above
74 event.SetInt(win->m_pos);
75 win->GetEventHandler()->ProcessEvent( event );
76 }
77 }
78
79 //-----------------------------------------------------------------------------
80 // wxSpinCtrl
81 //-----------------------------------------------------------------------------
82
83 IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrl,wxControl)
84
85 BEGIN_EVENT_TABLE(wxSpinCtrl, wxControl)
86 EVT_CHAR(wxSpinCtrl::OnChar)
87 END_EVENT_TABLE()
88
89 wxSpinCtrl::wxSpinCtrl()
90 {
91 m_pos = 0;
92 }
93
94 bool wxSpinCtrl::Create(wxWindow *parent, wxWindowID id,
95 const wxString& value,
96 const wxPoint& pos, const wxSize& size,
97 long style,
98 int min, int max, int initial,
99 const wxString& name)
100 {
101 if (!PreCreation( parent, pos, size ) ||
102 !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
103 {
104 wxFAIL_MSG( wxT("wxSpinCtrl creation failed") );
105 return false;
106 }
107
108 m_widget = gtk_spin_button_new_with_range(min, max, 1);
109 gtk_spin_button_set_value((GtkSpinButton*)m_widget, initial);
110 m_pos = int(gtk_spin_button_get_value((GtkSpinButton*)m_widget));
111
112 gtk_spin_button_set_wrap( GTK_SPIN_BUTTON(m_widget),
113 (int)(m_windowStyle & wxSP_WRAP) );
114
115 g_signal_connect(m_widget, "value_changed", G_CALLBACK(gtk_value_changed), this);
116 g_signal_connect(m_widget, "changed", G_CALLBACK(gtk_changed), this);
117
118 m_parent->DoAddChild( this );
119
120 PostCreation(size);
121
122 if (!value.empty())
123 {
124 SetValue(value);
125 }
126
127 return true;
128 }
129
130 int wxSpinCtrl::GetMin() const
131 {
132 wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") );
133
134 double min;
135 gtk_spin_button_get_range((GtkSpinButton*)m_widget, &min, NULL);
136 return int(min);
137 }
138
139 int wxSpinCtrl::GetMax() const
140 {
141 wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") );
142
143 double max;
144 gtk_spin_button_get_range((GtkSpinButton*)m_widget, NULL, &max);
145 return int(max);
146 }
147
148 int wxSpinCtrl::GetValue() const
149 {
150 wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") );
151
152 wx_const_cast(wxSpinCtrl*, this)->BlockScrollEvent();
153 gtk_spin_button_update( GTK_SPIN_BUTTON(m_widget) );
154 wx_const_cast(wxSpinCtrl*, this)->UnblockScrollEvent();
155
156 return m_pos;
157 }
158
159 void wxSpinCtrl::SetValue( const wxString& value )
160 {
161 wxCHECK_RET( (m_widget != NULL), wxT("invalid spin button") );
162
163 int n;
164 if ( (wxSscanf(value, wxT("%d"), &n) == 1) )
165 {
166 // a number - set it
167 SetValue(n);
168 }
169 else
170 {
171 // invalid number - set text as is (wxMSW compatible)
172 BlockScrollEvent();
173 gtk_entry_set_text( GTK_ENTRY(m_widget), wxGTK_CONV( value ) );
174 UnblockScrollEvent();
175 }
176 }
177
178 void wxSpinCtrl::SetValue( int value )
179 {
180 wxCHECK_RET( (m_widget != NULL), wxT("invalid spin button") );
181
182 BlockScrollEvent();
183 gtk_spin_button_set_value((GtkSpinButton*)m_widget, value);
184 UnblockScrollEvent();
185 }
186
187 void wxSpinCtrl::SetSelection(long from, long to)
188 {
189 // translate from wxWidgets conventions to GTK+ ones: (-1, -1) means the
190 // entire range
191 if ( from == -1 && to == -1 )
192 {
193 from = 0;
194 to = INT_MAX;
195 }
196
197 gtk_editable_select_region( GTK_EDITABLE(m_widget), (gint)from, (gint)to );
198 }
199
200 void wxSpinCtrl::SetRange(int minVal, int maxVal)
201 {
202 wxCHECK_RET( (m_widget != NULL), wxT("invalid spin button") );
203
204 BlockScrollEvent();
205 gtk_spin_button_set_range((GtkSpinButton*)m_widget, minVal, maxVal);
206 UnblockScrollEvent();
207 }
208
209 void wxSpinCtrl::OnChar( wxKeyEvent &event )
210 {
211 wxCHECK_RET( m_widget != NULL, wxT("invalid spin ctrl") );
212
213 if (event.GetKeyCode() == WXK_RETURN)
214 {
215 wxWindow *top_frame = wxGetTopLevelParent(m_parent);
216
217 if ( GTK_IS_WINDOW(top_frame->m_widget) )
218 {
219 GtkWindow *window = GTK_WINDOW(top_frame->m_widget);
220 if ( window )
221 {
222 GtkWidget *widgetDef = window->default_widget;
223
224 if ( widgetDef )
225 {
226 gtk_widget_activate(widgetDef);
227 return;
228 }
229 }
230 }
231 }
232
233 if ((event.GetKeyCode() == WXK_RETURN) && (m_windowStyle & wxTE_PROCESS_ENTER))
234 {
235 wxCommandEvent evt( wxEVT_COMMAND_TEXT_ENTER, m_windowId );
236 evt.SetEventObject(this);
237 GtkSpinButton *gsb = GTK_SPIN_BUTTON(m_widget);
238 wxString val = wxGTK_CONV_BACK( gtk_entry_get_text( &gsb->entry ) );
239 evt.SetString( val );
240 if (GetEventHandler()->ProcessEvent(evt)) return;
241 }
242
243 event.Skip();
244 }
245
246 GdkWindow *wxSpinCtrl::GTKGetWindow(wxArrayGdkWindows& windows) const
247 {
248 GtkSpinButton* spinbutton = GTK_SPIN_BUTTON(m_widget);
249
250 windows.push_back(spinbutton->entry.text_area);
251 windows.push_back(spinbutton->panel);
252
253 return NULL;
254 }
255
256 wxSize wxSpinCtrl::DoGetBestSize() const
257 {
258 wxSize ret( wxControl::DoGetBestSize() );
259 wxSize best(95, ret.y); // FIXME: 95?
260 CacheBestSize(best);
261 return best;
262 }
263
264 // static
265 wxVisualAttributes
266 wxSpinCtrl::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
267 {
268 // TODO: overload to accept functions like gtk_spin_button_new?
269 // Until then use a similar type
270 return GetDefaultAttributesFromGTKWidget(gtk_entry_new, true);
271 }
272
273 #endif
274 // wxUSE_SPINCTRL