from wxPython.wx import *
+from wxPython.lib import newevent
import thread
import time
#----------------------------------------------------------------------
-wxEVT_UPDATE_BARGRAPH = 25015
-
-def EVT_UPDATE_BARGRAPH(win, func):
- win.Connect(-1, -1, wxEVT_UPDATE_BARGRAPH, func)
-
-
-class UpdateBarEvent(wxPyEvent):
- def __init__(self, barNum, value):
- wxPyEvent.__init__(self)
- self.SetEventType(wxEVT_UPDATE_BARGRAPH)
- self.barNum = barNum
- self.value = value
+# This creates a new Event class and a EVT binder function
+UpdateBarEvent, EVT_UPDATE_BARGRAPH = newevent.NewEvent()
#----------------------------------------------------------------------
self.val = val
def Start(self):
- self.keepGoing = self.running = true
+ self.keepGoing = self.running = True
thread.start_new_thread(self.Run, ())
def Stop(self):
- self.keepGoing = false
+ self.keepGoing = False
def IsRunning(self):
return self.running
def Run(self):
while self.keepGoing:
- evt = UpdateBarEvent(self.barNum, int(self.val))
+ evt = UpdateBarEvent(barNum = self.barNum, value = int(self.val))
wxPostEvent(self.win, evt)
- del evt
+ #del evt
sleeptime = (random() * 2) + 0.5
- #print self.barNum, 'sleeping for', sleeptime
- time.sleep(sleeptime)
+ time.sleep(sleeptime/4)
sleeptime = sleeptime * 5
if int(random() * 2):
if self.val < 0: self.val = 0
if self.val > 300: self.val = 300
- self.running = false
+ self.running = False
#----------------------------------------------------------------------
panel.SetFont(wxFont(10, wxSWISS, wxNORMAL, wxBOLD))
wxStaticText(panel, -1,
"This demo shows multiple threads interacting with this\n"
- "window by sending events to it.", wxPoint(5,5))
+ "window by sending events to it, one thread for each bar.",
+ wxPoint(5,5))
panel.Fit()
self.graph = GraphWindow(self, ['Zero', 'One', 'Two', 'Three', 'Four',
sizer.Add(self.graph, 1, wxEXPAND)
self.SetSizer(sizer)
- self.SetAutoLayout(true)
+ self.SetAutoLayout(True)
sizer.Fit(self)
EVT_UPDATE_BARGRAPH(self, self.OnUpdate)
def OnUpdate(self, evt):
self.graph.SetValue(evt.barNum, evt.value)
- self.graph.Refresh(false)
+ self.graph.Refresh(False)
def OnCloseWindow(self, evt):
def runTest(frame, nb, log):
win = TestFrame(frame, log)
frame.otherWin = win
- win.Show(true)
+ win.Show(True)
return None
#----------------------------------------------------------------------
need to take that into account.
The solution is to only allow interaction with the GUI from a single
-thread, but this often severly limits what can be done in an
+thread, but this often severely limits what can be done in an
application and makes it difficult to use additional threads at all.
Since wxPython already makes extensive use of event handlers, it is a
thread.
"""
+
+
+
+if __name__ == '__main__':
+ import sys,os
+ import run
+ run.main(['', os.path.basename(sys.argv[0])])
+