]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/spinbutt.h
Add GetDrawable convenience function that returns m_bitmap
[wxWidgets.git] / include / wx / mac / spinbutt.h
index 9909adfea9be25bac44ab99bc37920990b3ba00c..b29866c5e5245ded50a2699ec67c13da9dce159b 100644 (file)
@@ -1,18 +1,18 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        spinbutt.h
 // Purpose:     wxSpinButton class
-// Author:      AUTHOR
+// Author:      Stefan Csomor
 // Modified by:
-// Created:     ??/??/98
+// Created:     1998-01-01
 // RCS-ID:      $Id$
-// Copyright:   (c) AUTHOR
-// Licence:    wxWindows licence
+// Copyright:   (c) Stefan Csomor
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_SPINBUTT_H_
 #define _WX_SPINBUTT_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
 #pragma interface "spinbutt.h"
 #endif
 
@@ -33,14 +33,14 @@ class WXDLLEXPORT wxSpinButton : public wxSpinButtonBase
 {
 public:
     // construction
-    wxSpinButton() { }
+    wxSpinButton();
 
     wxSpinButton(wxWindow *parent,
                  wxWindowID id = -1,
                  const wxPoint& pos = wxDefaultPosition,
                  const wxSize& size = wxDefaultSize,
                  long style = wxSP_VERTICAL | wxSP_ARROW_KEYS,
-                 const wxString& name = "wxSpinButton")
+                 const wxString& name = wxT("wxSpinButton"))
     {
         Create(parent, id, pos, size, style, name);
     }
@@ -52,19 +52,22 @@ public:
                 const wxPoint& pos = wxDefaultPosition,
                 const wxSize& size = wxDefaultSize,
                 long style = wxSP_VERTICAL | wxSP_ARROW_KEYS,
-                const wxString& name = "wxSpinButton");
+                const wxString& name = wxT("wxSpinButton"));
 
 
     // accessors
+    virtual int GetMin() const;
+    virtual int GetMax() const;
     virtual int GetValue() const;
     virtual void SetValue(int val);
     virtual void SetRange(int minVal, int maxVal);
 
     // implementation
     
-    virtual void MacHandleControlClick( ControlHandle control , SInt16 controlpart ) ;
+    virtual void MacHandleControlClick( WXWidget control , wxInt16 controlpart ) ;
 
 protected:
+    void         MacHandleValueChanged( int inc ) ;
    virtual wxSize DoGetBestSize() const;
    int m_value ;