X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..3498362ed5759522a9664a70e4da819e51bd2fbe:/include/wx/gtk/slider.h diff --git a/include/wx/gtk/slider.h b/include/wx/gtk/slider.h index bd4af3fcad..76f6dae280 100644 --- a/include/wx/gtk/slider.h +++ b/include/wx/gtk/slider.h @@ -10,18 +10,14 @@ #ifndef __GTKSLIDERH__ #define __GTKSLIDERH__ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface -#endif - // ---------------------------------------------------------------------------- // wxSlider // ---------------------------------------------------------------------------- -class wxSlider : public wxSliderBase +class WXDLLIMPEXP_CORE wxSlider : public wxSliderBase { public: - wxSlider() { } + wxSlider(); wxSlider(wxWindow *parent, wxWindowID id, int value, int minValue, int maxValue, @@ -64,13 +60,12 @@ public: GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); // implementation - bool IsOwnGtkWindow( GdkWindow *window ); - void ApplyWidgetStyle(); - void GtkDisableEvents(); - void GtkEnableEvents(); + double m_pos; + int m_scrollEventType; + bool m_needThumbRelease; - GtkAdjustment *m_adjust; - float m_oldPos; +protected: + virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const; private: DECLARE_DYNAMIC_CLASS(wxSlider)