// ========================================================================
// wxSlider
// ========================================================================
-class WXDLLEXPORT wxSlider: public wxSliderBase, protected wxCocoaNSSlider
+class WXDLLIMPEXP_CORE wxSlider: public wxSliderBase, protected wxCocoaNSSlider
{
DECLARE_DYNAMIC_CLASS(wxSlider)
DECLARE_EVENT_TABLE()
// these methods get/set the length of the slider pointer in pixels
virtual void SetThumbLength(int lenPixels);
virtual int GetThumbLength() const;
-
+
// copied from (wxSliderCocoa.h)
- virtual void SetTickFreq(int n, int pos);
virtual int GetTickFreq() const;
- virtual void ClearTicks() { SetTickFreq(0, 0); }
+ virtual void ClearTicks() { SetTickFreq(0); }
virtual void SetTickPos(int pos);
+protected:
+ // Platform-specific implementation of SetTickFreq
+ virtual void DoSetTickFreq(int freq);
};
#endif