X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1e6feb95a79834836e88143b15d9f424ebe79621..66c2bf7b1d9326fb650acfaae22ec50528cfbf7c:/include/wx/gtk/slider.h diff --git a/include/wx/gtk/slider.h b/include/wx/gtk/slider.h index 9d39beeb0a..f8833c4685 100644 --- a/include/wx/gtk/slider.h +++ b/include/wx/gtk/slider.h @@ -2,26 +2,21 @@ // Name: wx/gtk/slider.h // Purpose: // Author: Robert Roebling -// Id: $Id$ -// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem +// Copyright: (c) 1998 Robert Roebling // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifndef __GTKSLIDERH__ -#define __GTKSLIDERH__ - -#ifdef __GNUG__ -#pragma interface -#endif +#ifndef _WX_GTK_SLIDER_H_ +#define _WX_GTK_SLIDER_H_ // ---------------------------------------------------------------------------- // 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, @@ -34,6 +29,7 @@ public: Create( parent, id, value, minValue, maxValue, pos, size, style, validator, name ); } + ~wxSlider(); bool Create(wxWindow *parent, wxWindowID id, @@ -60,17 +56,29 @@ public: virtual void SetThumbLength(int lenPixels); virtual int GetThumbLength() const; + static wxVisualAttributes + GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); + // implementation - // -------------- + void GTKDisableEvents(); + void GTKEnableEvents(); + bool GTKEventsDisabled() const; + + double m_pos; + int m_scrollEventType; + bool m_needThumbRelease; + GtkWidget *m_scale; + +protected: + GtkWidget *m_minLabel,*m_maxLabel; + bool m_blockScrollEvent; - bool IsOwnGtkWindow( GdkWindow *window ); - void ApplyWidgetStyle(); + virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const; - GtkAdjustment *m_adjust; - float m_oldPos; + // set the slider value unconditionally + void GTKSetValue(int value); -private: DECLARE_DYNAMIC_CLASS(wxSlider) }; -#endif // __GTKSLIDERH__ +#endif // _WX_GTK_SLIDER_H_