/////////////////////////////////////////////////////////////////////////////
-// Name: spinbutt.cpp
+// Name: src/osx/cocoa/spinbutt.mm
// Purpose: wxSpinButton
// Author: Stefan Csomor
// Modified by:
// Created: 1998-01-01
-// RCS-ID: $Id: spinbutt.cpp 54129 2008-06-11 19:30:52Z SC $
+// RCS-ID: $Id$
// Copyright: (c) Stefan Csomor
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
[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;
}