X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b808efdb885aa82a6c34a8278119bae63c7f4183..472eec8a0391538e4dcf7f7c6c4f4d44c8383616:/include/wx/msw/slider95.h diff --git a/include/wx/msw/slider95.h b/include/wx/msw/slider95.h index 68033d6c79..5702f1824a 100644 --- a/include/wx/msw/slider95.h +++ b/include/wx/msw/slider95.h @@ -12,11 +12,7 @@ #ifndef _WX_SLIDER95_H_ #define _WX_SLIDER95_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "slider95.h" -#endif - -class WXDLLEXPORT wxSubwindows; +class WXDLLIMPEXP_FWD_CORE wxSubwindows; // Slider class WXDLLEXPORT wxSlider : public wxSliderBase @@ -87,6 +83,8 @@ public: // we should let background show through the slider (and its labels) virtual bool HasTransparentBackground() { return true; } + // returns true if the platform should explicitly apply a theme border + virtual bool CanApplyThemeBorder() const { return false; } void Command(wxCommandEvent& event); virtual bool MSWOnScroll(int orientation, WXWORD wParam, @@ -96,6 +94,8 @@ public: virtual bool Enable(bool show = true); virtual bool SetFont(const wxFont& font); + virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle = NULL) const; + protected: // common part of all ctors void Init(); @@ -118,8 +118,6 @@ protected: virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } - virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle = NULL) const; - // the labels windows, if any wxSubwindows *m_labels; @@ -130,6 +128,9 @@ protected: int m_lineSize; int m_tickFreq; + // flag needed to detect whether we're getting THUMBRELEASE event because + // of dragging the thumb or scrolling the mouse wheel + bool m_isDragging; DECLARE_DYNAMIC_CLASS_NO_COPY(wxSlider) };