From: Vadim Zeitlin Date: Sun, 12 Dec 2004 21:51:11 +0000 (+0000) Subject: forward Enable() and SetFont() to the labels as well X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/042ce4ccbaf2b9cedcc13ae207944cc29b13847f forward Enable() and SetFont() to the labels as well git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30975 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/msw/slider95.h b/include/wx/msw/slider95.h index 1d34aba164..45f330d943 100644 --- a/include/wx/msw/slider95.h +++ b/include/wx/msw/slider95.h @@ -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