X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a23fd0e1d1329a4a258b4defb3e0b0001b700c6e..dda36afd4abc7fb609ec97171dbae3f890d6ec71:/include/wx/msw/slidrmsw.h diff --git a/include/wx/msw/slidrmsw.h b/include/wx/msw/slidrmsw.h index 0da889422e..9409797ccc 100644 --- a/include/wx/msw/slidrmsw.h +++ b/include/wx/msw/slidrmsw.h @@ -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; } @@ -98,11 +86,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