X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6181cef53222dc7f04e0e52fc4a2d399709a076e..1de1196ab3ad5c0f143870b1bf5568adcf383424:/include/wx/msw/slider95.h diff --git a/include/wx/msw/slider95.h b/include/wx/msw/slider95.h index 1d34aba164..91364bb374 100644 --- a/include/wx/msw/slider95.h +++ b/include/wx/msw/slider95.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: wx/msw/slider95.h -// Purpose: wxSlider95 class +// Purpose: wxSlider class, using the Win95 (and later) trackbar control // Author: Julian Smart // Modified by: // Created: 01/02/97 @@ -19,21 +19,21 @@ class WXDLLEXPORT wxSubwindows; // Slider -class WXDLLEXPORT wxSlider95 : public wxSliderBase +class WXDLLEXPORT wxSlider : public wxSliderBase { public: - wxSlider95() { Init(); } - - wxSlider95(wxWindow *parent, - wxWindowID id, - int value, - int minValue, - int maxValue, - const wxPoint& pos = wxDefaultPosition, - const wxSize& size = wxDefaultSize, - long style = wxSL_HORIZONTAL, - const wxValidator& validator = wxDefaultValidator, - const wxString& name = wxSliderNameStr) + wxSlider() { Init(); } + + wxSlider(wxWindow *parent, + wxWindowID id, + int value, + int minValue, + int maxValue, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + long style = wxSL_HORIZONTAL, + const wxValidator& validator = wxDefaultValidator, + const wxString& name = wxSliderNameStr) { Init(); @@ -51,7 +51,7 @@ public: const wxValidator& validator = wxDefaultValidator, const wxString& name = wxSliderNameStr); - virtual ~wxSlider95(); + virtual ~wxSlider(); // slider methods virtual int GetValue() const; @@ -88,9 +88,9 @@ public: virtual bool MSWOnScroll(int orientation, WXWORD wParam, WXWORD pos, WXHWND control); - void DoGetPosition(int *x, int *y) const; - - bool Show(bool show = true); + virtual bool Show(bool show = true); + virtual bool Enable(bool show = true); + virtual bool SetFont(const wxFont& font); protected: // common part of all ctors @@ -107,6 +107,7 @@ protected: // overridden base class virtuals + virtual void DoGetPosition(int *x, int *y) const; virtual void DoGetSize(int *width, int *height) const; virtual void DoMoveWindow(int x, int y, int width, int height); virtual wxSize DoGetBestSize() const; @@ -114,7 +115,6 @@ protected: virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle = NULL) const; - virtual bool MSWAlwaysDrawBg() const { return true; } // the labels windows, if any @@ -127,7 +127,7 @@ protected: int m_tickFreq; - DECLARE_DYNAMIC_CLASS_NO_COPY(wxSlider95) + DECLARE_DYNAMIC_CLASS_NO_COPY(wxSlider) }; #endif // _WX_SLIDER95_H_