class WXDLLIMPEXP_CORE wxSlider : public wxSliderBase
{
public:
- wxSlider() { }
+ wxSlider();
wxSlider(wxWindow *parent,
wxWindowID id,
int value, int minValue, int maxValue,
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
// implementation
- bool IsOwnGtkWindow( GdkWindow *window );
- 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)