This commit was manufactured by cvs2svn to create tag 'M_STABLE'.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/tags/M_STABLE@40387 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Bryan Petty
2006-07-30 23:36:38 +00:00
parent 6a06841c34
commit 9aea121b6c
4223 changed files with 1680500 additions and 3876 deletions

83
wxPython/demo/wxTimer.py Normal file
View File

@@ -0,0 +1,83 @@
from wxPython.wx import *
import time
#---------------------------------------------------------------------------
## class TestTimer(wxTimer):
## def __init__(self, log = None):
## wxTimer.__init__(self)
## self.log = log
## def Notify(self):
## wxBell()
## if self.log:
## self.log.WriteText('beep!\n')
#---------------------------------------------------------------------------
ID_Start = wxNewId()
ID_Stop = wxNewId()
ID_Timer = wxNewId()
class TestTimerWin(wxPanel):
def __init__(self, parent, log):
wxPanel.__init__(self, parent, -1)
self.log = log
wxStaticText(self, -1, "This is a timer example",
wxPoint(15, 30))
wxButton(self, ID_Start, ' Start ', wxPoint(15, 75), wxDefaultSize)
wxButton(self, ID_Stop, ' Stop ', wxPoint(115, 75), wxDefaultSize)
self.timer = wxTimer(self, # object to send the event to
ID_Timer) # event id to use
EVT_BUTTON(self, ID_Start, self.OnStart)
EVT_BUTTON(self, ID_Stop, self.OnStop)
EVT_TIMER(self, ID_Timer, self.OnTimer)
def OnStart(self, event):
self.timer.Start(1000)
def OnStop(self, event):
self.timer.Stop()
def OnTimer(self, event):
wxBell()
if self.log:
self.log.WriteText('beep!\n')
#---------------------------------------------------------------------------
def runTest(frame, nb, log):
win = TestTimerWin(nb, log)
return win
#---------------------------------------------------------------------------
overview = """\
The wxTimer class allows you to execute code at specified intervals.
"""