]> git.saurik.com Git - wxWidgets.git/blame - wxPython/demo/wxGauge.py
Added Brian Victor's Patch
[wxWidgets.git] / wxPython / demo / wxGauge.py
CommitLineData
8fa876ca
RD
1# 11/15/2003 - Jeff Grimmett (grimmtooth@softhome.net)
2#
3# o Updated for wx namespace
4#
cf694132 5
8fa876ca 6import wx
cf694132
RD
7
8#----------------------------------------------------------------------
9
8fa876ca 10class TestPanel(wx.Panel):
cf694132 11 def __init__(self, parent, log):
8fa876ca 12 wx.Panel.__init__(self, parent, -1)
cf694132
RD
13 self.log = log
14 self.count = 0
15
8fa876ca 16 wx.StaticText(self, -1, "This example shows the wxGauge control.", (45, 15))
cf694132 17
8fa876ca 18 self.g1 = wx.Gauge(self, -1, 50, (110, 50), (250, 25))
c368d904
RD
19 self.g1.SetBezelFace(3)
20 self.g1.SetShadowWidth(3)
cf694132 21
8fa876ca
RD
22 self.g2 = wx.Gauge(
23 self, -1, 50, (110, 95), (250, 25),
24 wx.GA_HORIZONTAL|wx.GA_SMOOTH
25 )
26
cf694132
RD
27 self.g2.SetBezelFace(5)
28 self.g2.SetShadowWidth(5)
29
8fa876ca 30 self.Bind(wx.EVT_IDLE, self.IdleHandler)
cf694132
RD
31
32
33 def IdleHandler(self, event):
34 self.count = self.count + 1
8fa876ca 35
cf694132
RD
36 if self.count >= 50:
37 self.count = 0
8fa876ca 38
c368d904 39 self.g1.SetValue(self.count)
cf694132
RD
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
cf694132 53overview = """\
8fa876ca
RD
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.
1fded56b 57
8fa876ca
RD
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.
1fded56b 61
8fa876ca
RD
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"""
1fded56b
RD
65
66if __name__ == '__main__':
67 import sys,os
68 import run
69 run.main(['', os.path.basename(sys.argv[0])])
70