/////////////////////////////////////////////////////////////////////////////
-// Name: spinbutt.cpp
+// Name: src/osx/cocoa/spinbutt.mm
// Purpose: wxSpinButton
// Author: Stefan Csomor
// Modified by:
[v setMaxValue: maximum];
[v setIntValue: value];
- if ( style & wxSP_WRAP )
- [v setValueWraps:YES];
+ if ( style & wxSP_HORIZONTAL )
+ [v rotateByAngle:90.0];
+ BOOL wrap = NO;
+ if ( style & wxSP_WRAP )
+ wrap = YES;
+ [v setValueWraps:wrap];
+
wxWidgetCocoaImpl* c = new wxSpinButtonCocoaImpl( wxpeer, v );
return c;
}