+ wxSize best(95, ret.y);
+ CacheBestSize(best);
+ return best;
+}
+
+bool wxSpinCtrl::SetBase(int base)
+{
+ // Currently we only support base 10 and 16. We could add support for base
+ // 8 quite easily but wxMSW doesn't support it natively so don't bother
+ // with doing something wxGTK-specific here.
+ if ( base != 10 && base != 16 )
+ return false;
+
+ if ( base == m_base )
+ return true;
+
+ m_base = base;
+
+ // We need to be able to enter letters for any base greater than 10.
+ gtk_spin_button_set_numeric( GTK_SPIN_BUTTON(m_widget), m_base <= 10 );
+
+ if ( m_base != 10 )
+ {
+ gtk_signal_connect( GTK_OBJECT(m_widget), "input",
+ GTK_SIGNAL_FUNC(wx_gtk_spin_input), this);
+ gtk_signal_connect( GTK_OBJECT(m_widget), "output",
+ GTK_SIGNAL_FUNC(wx_gtk_spin_output), this);
+ }
+ else
+ {
+ gtk_signal_disconnect_by_func(GTK_OBJECT(m_widget),
+ GTK_SIGNAL_FUNC(wx_gtk_spin_input),
+ this);
+ gtk_signal_disconnect_by_func(GTK_OBJECT(m_widget),
+ GTK_SIGNAL_FUNC(wx_gtk_spin_output),
+ this);
+ }
+
+ return true;
+}
+
+// static
+wxVisualAttributes
+wxSpinCtrl::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
+{
+ // TODO: overload to accept functions like gtk_spin_button_new?
+ // Until then use a similar type
+ return GetDefaultAttributesFromGTKWidget(gtk_entry_new, true);