]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/spinctrl.cpp
Menu fix
[wxWidgets.git] / src / gtk / spinctrl.cpp
CommitLineData
738f9e5a 1/////////////////////////////////////////////////////////////////////////////
8e13c1ec 2// Name: src/gtk/spinbutt.cpp
738f9e5a
RR
3// Purpose: wxSpinCtrl
4// Author: Robert
5// Modified by:
6// RCS-ID: $Id$
7// Copyright: (c) Robert Roebling
65571936 8// Licence: wxWindows licence
738f9e5a
RR
9/////////////////////////////////////////////////////////////////////////////
10
14f355c2
VS
11// For compilers that support precompilation, includes "wx.h".
12#include "wx/wxprec.h"
13
0e0d8857 14#if wxUSE_SPINCTRL
738f9e5a 15
de6185e2
WS
16#include "wx/spinctrl.h"
17
18#ifndef WX_PRECOMP
7f81dfa1 19 #include "wx/textctrl.h" // for wxEVT_COMMAND_TEXT_UPDATED
de6185e2 20 #include "wx/utils.h"
0cb7e05c 21 #include "wx/wxcrtvararg.h"
de6185e2 22#endif
aec0ed2e 23
e1910715 24#include "wx/gtk/private.h"
738f9e5a 25
738f9e5a
RR
26//-----------------------------------------------------------------------------
27// data
28//-----------------------------------------------------------------------------
29
30extern bool g_blockEventsOnDrag;
31
738f9e5a
RR
32//-----------------------------------------------------------------------------
33// "value_changed"
34//-----------------------------------------------------------------------------
35
865bb325 36extern "C" {
7f81dfa1
PC
37static void
38gtk_value_changed(GtkSpinButton* spinbutton, wxSpinCtrl* win)
738f9e5a 39{
7f81dfa1
PC
40 win->m_pos = int(gtk_spin_button_get_value(spinbutton));
41 if (!win->m_hasVMT || g_blockEventsOnDrag || win->m_blockScrollEvent)
42 return;
738f9e5a 43
58c837a4 44 wxCommandEvent event( wxEVT_COMMAND_SPINCTRL_UPDATED, win->GetId());
738f9e5a 45 event.SetEventObject( win );
4477936a
VZ
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)
7f81dfa1 53 event.SetInt(win->m_pos);
738f9e5a 54 win->GetEventHandler()->ProcessEvent( event );
738f9e5a 55}
865bb325 56}
738f9e5a 57
0a07a7d8
RR
58//-----------------------------------------------------------------------------
59// "changed"
60//-----------------------------------------------------------------------------
61
865bb325 62extern "C" {
0a07a7d8 63static void
7f81dfa1 64gtk_changed(GtkSpinButton* spinbutton, wxSpinCtrl* win)
0a07a7d8 65{
7f81dfa1
PC
66 if (!win->m_hasVMT || win->m_blockScrollEvent)
67 return;
68
0a07a7d8
RR
69 wxCommandEvent event( wxEVT_COMMAND_TEXT_UPDATED, win->GetId() );
70 event.SetEventObject( win );
cf5d5057 71 event.SetString( GTK_ENTRY(spinbutton)->text );
3d257b8d 72
ea46eba0 73 // see above
7f81dfa1 74 event.SetInt(win->m_pos);
0a07a7d8
RR
75 win->GetEventHandler()->ProcessEvent( event );
76}
865bb325 77}
0a07a7d8 78
738f9e5a
RR
79//-----------------------------------------------------------------------------
80// wxSpinCtrl
81//-----------------------------------------------------------------------------
82
83IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrl,wxControl)
84
da048e3d
RR
85BEGIN_EVENT_TABLE(wxSpinCtrl, wxControl)
86 EVT_CHAR(wxSpinCtrl::OnChar)
87END_EVENT_TABLE()
88
7f81dfa1
PC
89wxSpinCtrl::wxSpinCtrl()
90{
91 m_pos = 0;
92}
93
738f9e5a 94bool wxSpinCtrl::Create(wxWindow *parent, wxWindowID id,
ce89fdd2
VZ
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)
738f9e5a 100{
0279e844
RR
101 if (!PreCreation( parent, pos, size ) ||
102 !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
738f9e5a
RR
103 {
104 wxFAIL_MSG( wxT("wxSpinCtrl creation failed") );
8e13c1ec 105 return false;
738f9e5a
RR
106 }
107
7f81dfa1
PC
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));
3d257b8d 111
b02da6b1
VZ
112 gtk_spin_button_set_wrap( GTK_SPIN_BUTTON(m_widget),
113 (int)(m_windowStyle & wxSP_WRAP) );
738f9e5a 114
0bf36922
RR
115 g_signal_connect_after(m_widget, "value_changed", G_CALLBACK(gtk_value_changed), this);
116 g_signal_connect_after(m_widget, "changed", G_CALLBACK(gtk_changed), this);
3d257b8d 117
738f9e5a
RR
118 m_parent->DoAddChild( this );
119
abdeb9e7 120 PostCreation(size);
db434467 121
7f81dfa1
PC
122 if (!value.empty())
123 {
124 SetValue(value);
125 }
ce89fdd2 126
8e13c1ec 127 return true;
738f9e5a
RR
128}
129
130int wxSpinCtrl::GetMin() const
131{
132 wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") );
133
7f81dfa1
PC
134 double min;
135 gtk_spin_button_get_range((GtkSpinButton*)m_widget, &min, NULL);
136 return int(min);
738f9e5a
RR
137}
138
139int wxSpinCtrl::GetMax() const
140{
141 wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") );
142
7f81dfa1
PC
143 double max;
144 gtk_spin_button_get_range((GtkSpinButton*)m_widget, NULL, &max);
145 return int(max);
738f9e5a
RR
146}
147
148int wxSpinCtrl::GetValue() const
149{
150 wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") );
151
0bf36922 152 GtkDisableEvents();
33720b2d 153 gtk_spin_button_update( GTK_SPIN_BUTTON(m_widget) );
0bf36922 154 GtkEnableEvents();
33720b2d 155
7f81dfa1 156 return m_pos;
738f9e5a
RR
157}
158
ce89fdd2
VZ
159void 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)
0bf36922 172 GtkDisableEvents();
fab591c5 173 gtk_entry_set_text( GTK_ENTRY(m_widget), wxGTK_CONV( value ) );
0bf36922 174 GtkEnableEvents();
ce89fdd2
VZ
175 }
176}
177
738f9e5a
RR
178void wxSpinCtrl::SetValue( int value )
179{
180 wxCHECK_RET( (m_widget != NULL), wxT("invalid spin button") );
181
0bf36922 182 GtkDisableEvents();
7f81dfa1 183 gtk_spin_button_set_value((GtkSpinButton*)m_widget, value);
0bf36922 184 GtkEnableEvents();
738f9e5a
RR
185}
186
f8f9ec55
VZ
187void wxSpinCtrl::SetSelection(long from, long to)
188{
77ffb593 189 // translate from wxWidgets conventions to GTK+ ones: (-1, -1) means the
f8f9ec55
VZ
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
738f9e5a
RR
200void wxSpinCtrl::SetRange(int minVal, int maxVal)
201{
202 wxCHECK_RET( (m_widget != NULL), wxT("invalid spin button") );
203
0bf36922 204 GtkDisableEvents();
7f81dfa1 205 gtk_spin_button_set_range((GtkSpinButton*)m_widget, minVal, maxVal);
0bf36922
RR
206 GtkEnableEvents();
207}
208
209
210void wxSpinCtrl::GtkDisableEvents() const
211{
212 g_signal_handlers_block_by_func( m_widget,
213 (gpointer)gtk_value_changed, (void*) this);
214
215 g_signal_handlers_block_by_func(m_widget,
216 (gpointer)gtk_changed, (void*) this);
217}
218
219void wxSpinCtrl::GtkEnableEvents() const
220{
221 g_signal_handlers_unblock_by_func(m_widget,
222 (gpointer)gtk_value_changed, (void*) this);
223
224 g_signal_handlers_unblock_by_func(m_widget,
225 (gpointer)gtk_changed, (void*) this);
738f9e5a
RR
226}
227
da048e3d
RR
228void wxSpinCtrl::OnChar( wxKeyEvent &event )
229{
230 wxCHECK_RET( m_widget != NULL, wxT("invalid spin ctrl") );
231
12a3f227 232 if (event.GetKeyCode() == WXK_RETURN)
da048e3d 233 {
7f81dfa1 234 wxWindow *top_frame = wxGetTopLevelParent(m_parent);
0e0d8857 235
fa8a793a 236 if ( GTK_IS_WINDOW(top_frame->m_widget) )
da048e3d 237 {
fa8a793a
VZ
238 GtkWindow *window = GTK_WINDOW(top_frame->m_widget);
239 if ( window )
240 {
241 GtkWidget *widgetDef = window->default_widget;
242
055e633d 243 if ( widgetDef )
fa8a793a
VZ
244 {
245 gtk_widget_activate(widgetDef);
246 return;
247 }
248 }
9750fc42 249 }
da048e3d
RR
250 }
251
8e13c1ec 252 if ((event.GetKeyCode() == WXK_RETURN) && (m_windowStyle & wxTE_PROCESS_ENTER))
4a11cca2
RR
253 {
254 wxCommandEvent evt( wxEVT_COMMAND_TEXT_ENTER, m_windowId );
255 evt.SetEventObject(this);
256 GtkSpinButton *gsb = GTK_SPIN_BUTTON(m_widget);
257 wxString val = wxGTK_CONV_BACK( gtk_entry_get_text( &gsb->entry ) );
258 evt.SetString( val );
259 if (GetEventHandler()->ProcessEvent(evt)) return;
260 }
261
da048e3d
RR
262 event.Skip();
263}
264
ef5c70f9 265GdkWindow *wxSpinCtrl::GTKGetWindow(wxArrayGdkWindows& windows) const
738f9e5a 266{
7f81dfa1 267 GtkSpinButton* spinbutton = GTK_SPIN_BUTTON(m_widget);
ef5c70f9
VZ
268
269 windows.push_back(spinbutton->entry.text_area);
270 windows.push_back(spinbutton->panel);
271
272 return NULL;
738f9e5a
RR
273}
274
9d9b7755
VZ
275wxSize wxSpinCtrl::DoGetBestSize() const
276{
0279e844 277 wxSize ret( wxControl::DoGetBestSize() );
ef5c70f9 278 wxSize best(95, ret.y); // FIXME: 95?
9f884528
RD
279 CacheBestSize(best);
280 return best;
9d9b7755
VZ
281}
282
9d522606
RD
283// static
284wxVisualAttributes
285wxSpinCtrl::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
286{
287 // TODO: overload to accept functions like gtk_spin_button_new?
288 // Until then use a similar type
289 return GetDefaultAttributesFromGTKWidget(gtk_entry_new, true);
290}
291
738f9e5a 292#endif
aec0ed2e 293 // wxUSE_SPINCTRL