]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/spinbutt.mm
more Unicode fixes
[wxWidgets.git] / src / cocoa / spinbutt.mm
index 26e6ae14416c67f14dc178a331110370145378e0..60d3cd59ef6a56d3300fe40e1ae7e1ee3531a601 100644 (file)
@@ -17,6 +17,8 @@
 
 #import <AppKit/NSStepper.h>
 
+IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxNotifyEvent)
+
 IMPLEMENT_DYNAMIC_CLASS(wxSpinButton, wxControl)
 BEGIN_EVENT_TABLE(wxSpinButton, wxSpinButtonBase)
 END_EVENT_TABLE()
@@ -28,10 +30,12 @@ bool wxSpinButton::Create(wxWindow *parent, wxWindowID winid,
 {
     if(!CreateControl(parent,winid,pos,size,style,wxDefaultValidator,name))
         return false;
-    SetNSControl([[NSStepper alloc] initWithFrame: NSMakeRect(10,10,20,20)]);
+    SetNSControl([[NSStepper alloc] initWithFrame: MakeDefaultNSRect(size)]);
     [m_cocoaNSView release];
     if(m_parent)
         m_parent->CocoaAddChild(this);
+    SetInitialFrameRect(pos,size);
+
     return true;
 }