]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/slidrmsw.h
Common code for the same handling of wxSL_INVERSE.
[wxWidgets.git] / include / wx / msw / slidrmsw.h
index a53b8857ed2096b8f4f9d026ff6482193237feda..9edfa755bb872f3c543e21b45440ffc410ea4d3a 100644 (file)
@@ -1,30 +1,24 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        slidrmsw.h
+// Name:        wx/msw/slidrmsw.h
 // Purpose:     wxSliderMSW class
 // Author:      Julian Smart
 // Modified by:
 // Created:     01/02/97
 // RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _SLIDRMSW_H_
 #define _SLIDRMSW_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface "slidrmsw.h"
 #endif
 
-#include "wx/control.h"
-
-WXDLLEXPORT_DATA(extern const char*) wxSliderNameStr;
-
 // Slider
-class WXDLLEXPORT wxSliderMSW : public wxControl
+class WXDLLEXPORT wxSliderMSW : public wxSliderBase
 {
-    DECLARE_DYNAMIC_CLASS(wxSliderMSW)
-
 public:
     wxSliderMSW();
 
@@ -49,11 +43,11 @@ public:
             const wxValidator& validator = wxDefaultValidator,
             const wxString& name = wxSliderNameStr);
 
-    virtual int GetValue() const ;
+    virtual int GetValue() const;
     virtual void SetValue(int);
 
-    void GetSize(int *x, int *y) const ;
-    void GetPosition(int *x, int *y) const ;
+    void GetSize(int *x, int *y) const;
+    void GetPosition(int *x, int *y) const;
 
     bool Show(bool show);
 
@@ -63,20 +57,14 @@ public:
     int GetMax() const { return m_rangeMax; }
 
     // For trackbars only
-    void SetTickFreq(int n, int pos);
-    int GetTickFreq() const { return m_tickFreq; }
     void SetPageSize(int pageSize);
-    int GetPageSize() const ;
-    void ClearSel() ;
-    void ClearTicks() ;
+    int GetPageSize() const;
     void SetLineSize(int lineSize);
-    int GetLineSize() const ;
-    int GetSelEnd() const ;
-    int GetSelStart() const ;
-    void SetSelection(int minPos, int maxPos);
-    void SetThumbLength(int len) ;
-    int GetThumbLength() const ;
-    void SetTick(int tickPos) ;
+    int GetLineSize() const;
+
+    // these methods get/set the length of the slider pointer in pixels
+    virtual void SetThumbLength(int lenPixels);
+    virtual int GetThumbLength() const ;
 
     // IMPLEMENTATION
     WXHWND GetStaticMin() const { return m_staticMin; }
@@ -85,10 +73,8 @@ public:
     virtual bool ContainsHWND(WXHWND hWnd) const;
 
     void Command(wxCommandEvent& event);
-    virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
-            WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
-    void MSWOnVScroll(WXWORD wParam, WXWORD pos, WXHWND control);
-    void MSWOnHScroll(WXWORD wParam, WXWORD pos, WXHWND control);
+    virtual bool MSWOnScroll(int orientation, WXWORD wParam,
+                             WXWORD pos, WXHWND control);
 
 protected:
     WXHWND        m_staticMin;
@@ -98,11 +84,12 @@ protected:
     int           m_rangeMax;
     int           m_pageSize;
     int           m_lineSize;
-    int           m_tickFreq;
 
     virtual void DoSetSize(int x, int y,
                            int width, int height,
                            int sizeFlags = wxSIZE_AUTO);
+
+    DECLARE_DYNAMIC_CLASS(wxSliderMSW)
 };
 
 #endif