X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7d0d80bd1ce297cdefc2c8f8de3be84cbe9cced0..068becf5625117fda98c6a6f94433c5b5147e367:/include/wx/msw/slider95.h diff --git a/include/wx/msw/slider95.h b/include/wx/msw/slider95.h index 91364bb374..580b77f89b 100644 --- a/include/wx/msw/slider95.h +++ b/include/wx/msw/slider95.h @@ -12,10 +12,6 @@ #ifndef _WX_SLIDER95_H_ #define _WX_SLIDER95_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "slider95.h" -#endif - class WXDLLEXPORT wxSubwindows; // Slider @@ -84,6 +80,10 @@ public: WXHWND GetEditValue() const; virtual bool ContainsHWND(WXHWND hWnd) const; + // we should let background show through the slider (and its labels) + virtual bool HasTransparentBackground() { return true; } + + void Command(wxCommandEvent& event); virtual bool MSWOnScroll(int orientation, WXWORD wParam, WXWORD pos, WXHWND control); @@ -126,6 +126,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) };