1 /////////////////////////////////////////////////////////////////////////////
2 // Name: cocoa/spinbutt.mm
3 // Purpose: wxSpinButton
4 // Author: David Elliott
8 // Copyright: (c) 2003 David Elliott
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #include "wx/spinbutt.h"
18 #import <AppKit/NSStepper.h>
20 IMPLEMENT_DYNAMIC_CLASS(wxSpinButton, wxControl)
21 BEGIN_EVENT_TABLE(wxSpinButton, wxSpinButtonBase)
23 // WX_IMPLEMENT_COCOA_OWNER(wxSpinButton,NSStepper,NSControl,NSView)
25 bool wxSpinButton::Create(wxWindow *parent, wxWindowID winid,
26 const wxPoint& pos, const wxSize& size, long style,
29 if(!CreateControl(parent,winid,pos,size,style,wxDefaultValidator,name))
31 SetNSControl([[NSStepper alloc] initWithFrame: NSMakeRect(10,10,20,20)]);
32 [m_cocoaNSView release];
34 m_parent->CocoaAddChild(this);
38 wxSpinButton::~wxSpinButton()
42 #endif // wxUSE_SPINBTN