]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/slider.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef __GTKSLIDERH__
11 #define __GTKSLIDERH__
21 #include "wx/object.h"
23 #include "wx/control.h"
25 //-----------------------------------------------------------------------------
27 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 //-----------------------------------------------------------------------------
35 extern const char *wxSliderNameStr
;
37 //-----------------------------------------------------------------------------
39 //-----------------------------------------------------------------------------
41 class wxSlider
: public wxControl
45 inline wxSlider( wxWindow
*parent
, wxWindowID id
,
46 int value
, int minValue
, int maxValue
,
47 const wxPoint
& pos
= wxDefaultPosition
,
48 const wxSize
& size
= wxDefaultSize
,
49 long style
= wxSL_HORIZONTAL
,
50 const wxValidator
& validator
= wxDefaultValidator
,
51 const wxString
& name
= wxSliderNameStr
)
53 Create( parent
, id
, value
, minValue
, maxValue
, pos
, size
, style
, validator
, name
);
56 bool Create(wxWindow
*parent
, wxWindowID id
,
57 int value
, int minValue
, int maxValue
,
58 const wxPoint
& pos
= wxDefaultPosition
,
59 const wxSize
& size
= wxDefaultSize
,
60 long style
= wxSL_HORIZONTAL
,
61 const wxValidator
& validator
= wxDefaultValidator
,
62 const wxString
& name
= wxSliderNameStr
);
63 virtual int GetValue() const;
64 virtual void SetValue( int );
65 void SetRange( int minValue
, int maxValue
);
68 void SetTickFreq( int n
, int pos
);
69 int GetTickFreq() const;
70 void SetPageSize( int pageSize
);
71 int GetPageSize() const;
74 void SetLineSize( int lineSize
);
75 int GetLineSize() const;
76 int GetSelEnd() const;
77 int GetSelStart() const;
78 void SetSelection( int minPos
, int maxPos
);
79 void SetThumbLength( int len
);
80 int GetThumbLength() const;
81 void SetTick( int tickPos
);
86 bool IsOwnGtkWindow( GdkWindow
*window
);
87 void ApplyWidgetStyle();
89 GtkAdjustment
*m_adjust
;
93 DECLARE_DYNAMIC_CLASS(wxSlider
)
98 #endif // __GTKSLIDERH__