X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/40ff126ac4ff57ab4aa22a5c7c7ce621479e8739..0ce52f3d4eb9e5f915b9f48a8185431edb14c647:/include/wx/slider.h?ds=sidebyside diff --git a/include/wx/slider.h b/include/wx/slider.h index 6c31343bd7..6294fabc1a 100644 --- a/include/wx/slider.h +++ b/include/wx/slider.h @@ -45,13 +45,13 @@ #define wxSL_NOTIFY_DRAG 0x0000 #endif // WXWIN_COMPATIBILITY_2_6 -extern WXDLLEXPORT_DATA(const wxChar) wxSliderNameStr[]; +extern WXDLLIMPEXP_DATA_CORE(const char) wxSliderNameStr[]; // ---------------------------------------------------------------------------- // wxSliderBase: define wxSlider interface // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxSliderBase : public wxControl +class WXDLLIMPEXP_CORE wxSliderBase : public wxControl { public: /* the ctor of the derived class should have the following form: @@ -105,6 +105,9 @@ public: protected: + // choose the default border for this window + virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } + // adjust value according to wxSL_INVERSE style virtual int ValueInvertOrNot(int value) const { @@ -125,10 +128,7 @@ private: #if defined(__WXUNIVERSAL__) #include "wx/univ/slider.h" #elif defined(__WXMSW__) - #include "wx/msw/slider95.h" - #if WXWIN_COMPATIBILITY_2_4 - #define wxSlider95 wxSlider - #endif + #include "wx/msw/slider.h" #elif defined(__WXMOTIF__) #include "wx/motif/slider.h" #elif defined(__WXGTK20__)