/////////////////////////////////////////////////////////////////////////////
-// Name: slider.h
+// Name: wx/os2/slider.h
// Purpose: wxSlider class
// Author: David Webster
// Modified by:
// Created: 10/15/99
// RCS-ID: $Id$
// Copyright: (c) David Webster
-// Licence: wxWidgets licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_SLIDER_H_
#include "wx/control.h"
// Slider
-class WXDLLEXPORT wxSlider: public wxSliderBase
+class WXDLLIMPEXP_CORE wxSlider: public wxSliderBase
{
public:
wxSlider();
,rsName
);
}
- ~wxSlider();
+ virtual ~wxSlider();
bool Create( wxWindow* pParent
,wxWindowID vId
);
void SetThumbLength(int nLen) ;
void SetTick(int ntickPos) ;
- void SetTickFreq( int n
- ,int nPos
- );
//
// IMPLEMENTATION
,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