]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/slider.h
When handling accelerators in wxWebView make sure that we do not block right-alt...
[wxWidgets.git] / include / wx / gtk / slider.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
1e6feb95 2// Name: wx/gtk/slider.h
c801d85f
KB
3// Purpose:
4// Author: Robert Roebling
58614078 5// Id: $Id$
371a5b4e 6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
1d591651
PC
10#ifndef _WX_GTK_SLIDER_H_
11#define _WX_GTK_SLIDER_H_
c801d85f 12
1e6feb95 13// ----------------------------------------------------------------------------
c801d85f 14// wxSlider
1e6feb95 15// ----------------------------------------------------------------------------
c801d85f 16
20123d49 17class WXDLLIMPEXP_CORE wxSlider : public wxSliderBase
c801d85f 18{
a075e27b 19public:
12a480c1 20 wxSlider();
1e6feb95
VZ
21 wxSlider(wxWindow *parent,
22 wxWindowID id,
23 int value, int minValue, int maxValue,
24 const wxPoint& pos = wxDefaultPosition,
25 const wxSize& size = wxDefaultSize,
26 long style = wxSL_HORIZONTAL,
27 const wxValidator& validator = wxDefaultValidator,
28 const wxString& name = wxSliderNameStr)
6de97a3b 29 {
1e6feb95
VZ
30 Create( parent, id, value, minValue, maxValue,
31 pos, size, style, validator, name );
6de97a3b 32 }
8ab75332 33 ~wxSlider();
1e6feb95
VZ
34
35 bool Create(wxWindow *parent,
36 wxWindowID id,
37 int value, int minValue, int maxValue,
38 const wxPoint& pos = wxDefaultPosition,
39 const wxSize& size = wxDefaultSize,
40 long style = wxSL_HORIZONTAL,
41 const wxValidator& validator = wxDefaultValidator,
42 const wxString& name = wxSliderNameStr);
43
44 // implement the base class pure virtuals
a075e27b 45 virtual int GetValue() const;
1e6feb95
VZ
46 virtual void SetValue(int value);
47
48 virtual void SetRange(int minValue, int maxValue);
49 virtual int GetMin() const;
50 virtual int GetMax() const;
51
52 virtual void SetLineSize(int lineSize);
53 virtual void SetPageSize(int pageSize);
54 virtual int GetLineSize() const;
55 virtual int GetPageSize() const;
56
57 virtual void SetThumbLength(int lenPixels);
58 virtual int GetThumbLength() const;
c801d85f 59
9d522606
RD
60 static wxVisualAttributes
61 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
3824e0db 62
aa9a4ae1 63 // implementation
c092ed38
RR
64 void GTKDisableEvents();
65 void GTKEnableEvents();
66 bool GTKEventsDisabled() const;
ce00f59b 67
12a480c1
PC
68 double m_pos;
69 int m_scrollEventType;
70 bool m_needThumbRelease;
c092ed38 71 GtkWidget *m_scale;
aa9a4ae1 72
ef5c70f9 73protected:
c092ed38
RR
74 GtkWidget *m_minLabel,*m_maxLabel;
75 bool m_blockScrollEvent;
76
ef5c70f9
VZ
77 virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
78
3824e0db
VZ
79 // set the slider value unconditionally
80 void GTKSetValue(int value);
81
a075e27b 82 DECLARE_DYNAMIC_CLASS(wxSlider)
c801d85f
KB
83};
84
1d591651 85#endif // _WX_GTK_SLIDER_H_