GetEventHandler()->ProcessEvent(event);
}
+// ----------------------------------------------------------------------------
+// size calculation
+// ----------------------------------------------------------------------------
+
+wxSize wxSpinButton::DoGetBestSize() const
+{
+ if ( (GetWindowStyle() & wxSP_VERTICAL) != 0 )
+ {
+ // vertical control
+ return wxSize(16,
+ 2*16);
+ }
+ else
+ {
+ // horizontal control
+ return wxSize(2*16,
+ 16);
+ }
+}