/////////////////////////////////////////////////////////////////////////////
-// Name: slider.h
+// Name: wx/os2/slider.h
// Purpose: wxSlider class
// Author: David Webster
// Modified by:
#include "wx/control.h"
// Slider
-class WXDLLEXPORT wxSlider: public wxSliderBase
+class WXDLLIMPEXP_CORE wxSlider: public wxSliderBase
{
public:
wxSlider();
,const wxPoint& rPos = wxDefaultPosition
,const wxSize& rSize = wxDefaultSize
,long lStyle = wxSL_HORIZONTAL
-#if wxUSE_VALIDATORS
,const wxValidator& rValidator = wxDefaultValidator
-#endif
,const wxString& rsName = wxSliderNameStr
)
{
,rPos
,rSize
,lStyle
-#if wxUSE_VALIDATORS
,rValidator
-#endif
,rsName
);
}
- ~wxSlider();
+ virtual ~wxSlider();
bool Create( wxWindow* pParent
,wxWindowID vId
,const wxPoint& rPos = wxDefaultPosition
,const wxSize& rSize = wxDefaultSize
,long lStyle = wxSL_HORIZONTAL
-#if wxUSE_VALIDATORS
,const wxValidator& rValidator = wxDefaultValidator
-#endif
,const wxString& rsName = wxSliderNameStr
);
virtual int GetValue(void) const ;
virtual void SetValue(int);
- virtual void DoGetSize( int* pnWidth
- ,int* pnHeight
- ) const;
void GetSize( int* pnX
,int* pnY
) const;
void GetPosition( int* pnX
,int* pnY
) const ;
- bool Show(bool bShow);
+ bool Show(bool bShow = TRUE);
void SetRange( int nMinValue
,int nMaxValue
);
);
void SetThumbLength(int nLen) ;
void SetTick(int ntickPos) ;
- void SetTickFreq( int n
- ,int nPos
- );
//
// IMPLEMENTATION
int m_nThumbLength;
int m_nSizeFlags;
+ virtual void DoGetSize( int* pnWidth
+ ,int* pnHeight
+ ) const;
virtual void DoSetSize( int nX
,int nY
,int nWidth
,int nHeight
,int nSizeFlags = wxSIZE_AUTO
);
+
+ // Platform-specific implementation of SetTickFreq
+ virtual void DoSetTickFreq(int freq);
+
private:
DECLARE_DYNAMIC_CLASS(wxSlider)
}; // end of CLASS wxSlider