]> git.saurik.com Git - wxWidgets.git/blame - wxPython/demo/wxSlider.py
Added wxWizard and the wizard page classes, as well as a wizard sample
[wxWidgets.git] / wxPython / demo / wxSlider.py
CommitLineData
cf694132
RD
1
2from wxPython.wx import *
3
4import string
5
6#----------------------------------------------------------------------
7
8class TestPanel(wxPanel):
9 def __init__(self, parent, log):
10 wxPanel.__init__(self, parent, -1)
11 self.log = log
12 self.count = 0
13
14 wxStaticText(self, -1, "This is a wxSlider.", wxPoint(45, 15))
15
16 slider = wxSlider(self, 100, 25, 1, 100, wxPoint(30, 60),
17 wxSize(250, -1),
18 wxSL_HORIZONTAL | wxSL_AUTOTICKS | wxSL_LABELS )
19 slider.SetTickFreq(5, 1)
20
21
22
23#----------------------------------------------------------------------
24
25def runTest(frame, nb, log):
26 win = TestPanel(nb, log)
27 return win
28
29#----------------------------------------------------------------------
30
31
32
33
34
35
36
37
38
39
40overview = """\
41"""