1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/spinbutt.cpp
7 // Copyright: (c) Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
16 #include "wx/spinctrl.h"
19 #include "wx/textctrl.h" // for wxEVT_COMMAND_TEXT_UPDATED
21 #include "wx/wxcrtvararg.h"
24 #include "wx/gtk/private.h"
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
30 extern bool g_blockEventsOnDrag
;
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
38 gtk_value_changed(GtkSpinButton
* spinbutton
, wxSpinCtrl
* win
)
40 win
->m_pos
= int(gtk_spin_button_get_value(spinbutton
));
41 if (!win
->m_hasVMT
|| g_blockEventsOnDrag
)
44 wxCommandEvent
event( wxEVT_COMMAND_SPINCTRL_UPDATED
, win
->GetId());
45 event
.SetEventObject( win
);
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
53 event
.SetInt(win
->m_pos
);
54 win
->GetEventHandler()->ProcessEvent( event
);
58 //-----------------------------------------------------------------------------
60 //-----------------------------------------------------------------------------
64 gtk_changed(GtkSpinButton
* spinbutton
, wxSpinCtrl
* win
)
69 wxCommandEvent
event( wxEVT_COMMAND_TEXT_UPDATED
, win
->GetId() );
70 event
.SetEventObject( win
);
71 event
.SetString( GTK_ENTRY(spinbutton
)->text
);
74 event
.SetInt(win
->m_pos
);
75 win
->GetEventHandler()->ProcessEvent( event
);
79 //-----------------------------------------------------------------------------
81 //-----------------------------------------------------------------------------
83 IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrl
,wxControl
)
85 BEGIN_EVENT_TABLE(wxSpinCtrl
, wxControl
)
86 EVT_CHAR(wxSpinCtrl::OnChar
)
89 wxSpinCtrl::wxSpinCtrl()
94 bool wxSpinCtrl::Create(wxWindow
*parent
, wxWindowID id
,
95 const wxString
& value
,
96 const wxPoint
& pos
, const wxSize
& size
,
98 int min
, int max
, int initial
,
101 if (!PreCreation( parent
, pos
, size
) ||
102 !CreateBase( parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
))
104 wxFAIL_MSG( wxT("wxSpinCtrl creation failed") );
108 m_widget
= gtk_spin_button_new_with_range(min
, max
, 1);
109 gtk_spin_button_set_value( GTK_SPIN_BUTTON(m_widget
), initial
);
110 m_pos
= (int) gtk_spin_button_get_value( GTK_SPIN_BUTTON(m_widget
));
112 gtk_spin_button_set_wrap( GTK_SPIN_BUTTON(m_widget
),
113 (int)(m_windowStyle
& wxSP_WRAP
) );
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);
118 m_parent
->DoAddChild( this );
130 int wxSpinCtrl::GetMin() const
132 wxCHECK_MSG( (m_widget
!= NULL
), 0, wxT("invalid spin button") );
135 gtk_spin_button_get_range( GTK_SPIN_BUTTON(m_widget
), &min
, NULL
);
139 int wxSpinCtrl::GetMax() const
141 wxCHECK_MSG( (m_widget
!= NULL
), 0, wxT("invalid spin button") );
144 gtk_spin_button_get_range( GTK_SPIN_BUTTON(m_widget
), NULL
, &max
);
148 int wxSpinCtrl::GetValue() const
150 wxCHECK_MSG( (m_widget
!= NULL
), 0, wxT("invalid spin button") );
153 gtk_spin_button_update( GTK_SPIN_BUTTON(m_widget
) );
154 wx_const_cast(wxSpinCtrl
*, this)->m_pos
=
155 int(gtk_spin_button_get_value(GTK_SPIN_BUTTON(m_widget
)));
161 void wxSpinCtrl::SetValue( const wxString
& value
)
163 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid spin button") );
166 if ( (wxSscanf(value
, wxT("%d"), &n
) == 1) )
173 // invalid number - set text as is (wxMSW compatible)
175 gtk_entry_set_text( GTK_ENTRY(m_widget
), wxGTK_CONV( value
) );
180 void wxSpinCtrl::SetValue( int value
)
182 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid spin button") );
185 gtk_spin_button_set_value( GTK_SPIN_BUTTON(m_widget
), value
);
186 m_pos
= (int) gtk_spin_button_get_value( GTK_SPIN_BUTTON(m_widget
));
190 void wxSpinCtrl::SetSelection(long from
, long to
)
192 // translate from wxWidgets conventions to GTK+ ones: (-1, -1) means the
194 if ( from
== -1 && to
== -1 )
200 gtk_editable_select_region( GTK_EDITABLE(m_widget
), (gint
)from
, (gint
)to
);
203 void wxSpinCtrl::SetRange(int minVal
, int maxVal
)
205 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid spin button") );
208 gtk_spin_button_set_range( GTK_SPIN_BUTTON(m_widget
), minVal
, maxVal
);
209 m_pos
= int(gtk_spin_button_get_value(GTK_SPIN_BUTTON(m_widget
)));
214 void wxSpinCtrl::GtkDisableEvents() const
216 g_signal_handlers_block_by_func( m_widget
,
217 (gpointer
)gtk_value_changed
, (void*) this);
219 g_signal_handlers_block_by_func(m_widget
,
220 (gpointer
)gtk_changed
, (void*) this);
223 void wxSpinCtrl::GtkEnableEvents() const
225 g_signal_handlers_unblock_by_func(m_widget
,
226 (gpointer
)gtk_value_changed
, (void*) this);
228 g_signal_handlers_unblock_by_func(m_widget
,
229 (gpointer
)gtk_changed
, (void*) this);
232 void wxSpinCtrl::OnChar( wxKeyEvent
&event
)
234 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid spin ctrl") );
236 if (event
.GetKeyCode() == WXK_RETURN
)
238 wxWindow
*top_frame
= wxGetTopLevelParent(m_parent
);
240 if ( GTK_IS_WINDOW(top_frame
->m_widget
) )
242 GtkWindow
*window
= GTK_WINDOW(top_frame
->m_widget
);
245 GtkWidget
*widgetDef
= window
->default_widget
;
249 gtk_widget_activate(widgetDef
);
256 if ((event
.GetKeyCode() == WXK_RETURN
) && (m_windowStyle
& wxTE_PROCESS_ENTER
))
258 wxCommandEvent
evt( wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
259 evt
.SetEventObject(this);
260 GtkSpinButton
*gsb
= GTK_SPIN_BUTTON(m_widget
);
261 wxString val
= wxGTK_CONV_BACK( gtk_entry_get_text( &gsb
->entry
) );
262 evt
.SetString( val
);
263 if (GetEventHandler()->ProcessEvent(evt
)) return;
269 GdkWindow
*wxSpinCtrl::GTKGetWindow(wxArrayGdkWindows
& windows
) const
271 GtkSpinButton
* spinbutton
= GTK_SPIN_BUTTON(m_widget
);
273 windows
.push_back(spinbutton
->entry
.text_area
);
274 windows
.push_back(spinbutton
->panel
);
279 wxSize
wxSpinCtrl::DoGetBestSize() const
281 wxSize
ret( wxControl::DoGetBestSize() );
282 wxSize
best(95, ret
.y
); // FIXME: 95?
289 wxSpinCtrl::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
291 // TODO: overload to accept functions like gtk_spin_button_new?
292 // Until then use a similar type
293 return GetDefaultAttributesFromGTKWidget(gtk_entry_new
, true);