]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/demo/wxGauge.py
Added Brian Victor's Patch
[wxWidgets.git] / wxPython / demo / wxGauge.py
... / ...
CommitLineData
1# 11/15/2003 - Jeff Grimmett (grimmtooth@softhome.net)
2#
3# o Updated for wx namespace
4#
5
6import wx
7
8#----------------------------------------------------------------------
9
10class TestPanel(wx.Panel):
11 def __init__(self, parent, log):
12 wx.Panel.__init__(self, parent, -1)
13 self.log = log
14 self.count = 0
15
16 wx.StaticText(self, -1, "This example shows the wxGauge control.", (45, 15))
17
18 self.g1 = wx.Gauge(self, -1, 50, (110, 50), (250, 25))
19 self.g1.SetBezelFace(3)
20 self.g1.SetShadowWidth(3)
21
22 self.g2 = wx.Gauge(
23 self, -1, 50, (110, 95), (250, 25),
24 wx.GA_HORIZONTAL|wx.GA_SMOOTH
25 )
26
27 self.g2.SetBezelFace(5)
28 self.g2.SetShadowWidth(5)
29
30 self.Bind(wx.EVT_IDLE, self.IdleHandler)
31
32
33 def IdleHandler(self, event):
34 self.count = self.count + 1
35
36 if self.count >= 50:
37 self.count = 0
38
39 self.g1.SetValue(self.count)
40 self.g2.SetValue(self.count)
41
42
43
44#----------------------------------------------------------------------
45
46def runTest(frame, nb, log):
47 win = TestPanel(nb, log)
48 return win
49
50#----------------------------------------------------------------------
51
52
53overview = """\
54A Gauge is a horizontal or vertical bar which shows a quantity in a graphical
55fashion. It is often used to indicate progress through lengthy tasks, such as
56file copying or data analysis.
57
58When the Gauge is initialized, it's "complete" value is usually set; at any rate,
59before using the Gauge, the maximum value of the control must be set. As the task
60progresses, the Gauge is updated by the program via the <code>SetValue</code> method.
61
62This control is for use within a GUI; there is a seperate ProgressDialog class
63to present the same sort of control as a dialog to the user.
64"""
65
66if __name__ == '__main__':
67 import sys,os
68 import run
69 run.main(['', os.path.basename(sys.argv[0])])
70