X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0a8c1efb27d88faa8d29ca541a953657ec85487f..80a81a12af49ab6acdaf0b62f4aa55e56f45ac6d:/wxPython/demo/Threads.py diff --git a/wxPython/demo/Threads.py b/wxPython/demo/Threads.py index 015a6f9b7d..7da3ac6b5c 100644 --- a/wxPython/demo/Threads.py +++ b/wxPython/demo/Threads.py @@ -1,5 +1,6 @@ from wxPython.wx import * +from wxPython.lib import newevent import thread import time @@ -7,18 +8,8 @@ from whrandom import random #---------------------------------------------------------------------- -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() #---------------------------------------------------------------------- @@ -30,24 +21,23 @@ class CalcBarThread: 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): @@ -58,7 +48,7 @@ class CalcBarThread: if self.val < 0: self.val = 0 if self.val > 300: self.val = 300 - self.running = false + self.running = False #---------------------------------------------------------------------- @@ -108,18 +98,18 @@ class GraphWindow(wxWindow): dc.SetBackground(wxBrush(self.GetBackgroundColour())) dc.Clear() dc.SetPen(wxPen(wxBLACK, 3, wxSOLID)) - dc.DrawLine(self.linePos, 0, self.linePos, size.height-10) + dc.DrawLine((self.linePos, 0), (self.linePos, size.height-10)) bh = ypos = self.barHeight for x in range(len(self.values)): label, val = self.values[x] - dc.DrawText(label, 5, ypos) + dc.DrawText(label, (5, ypos)) if val: color = self.colors[ x % len(self.colors) ] dc.SetPen(wxPen(color)) dc.SetBrush(wxBrush(color)) - dc.DrawRectangle(self.linePos+3, ypos, val, bh) + dc.DrawRectangle((self.linePos+3, ypos), (val, bh)) ypos = ypos + 2*bh if ypos > size.height-10: @@ -135,7 +125,7 @@ class GraphWindow(wxWindow): wdc = wxPaintDC(self) wdc.BeginDrawing() - wdc.Blit(0,0, size.width, size.height, dc, 0,0) + wdc.Blit((0,0), size, dc, (0,0)) wdc.EndDrawing() dc.SelectObject(wxNullBitmap) @@ -160,7 +150,8 @@ class TestFrame(wxFrame): 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', @@ -172,7 +163,7 @@ class TestFrame(wxFrame): sizer.Add(self.graph, 1, wxEXPAND) self.SetSizer(sizer) - self.SetAutoLayout(true) + self.SetAutoLayout(True) sizer.Fit(self) EVT_UPDATE_BARGRAPH(self, self.OnUpdate) @@ -194,7 +185,7 @@ class TestFrame(wxFrame): def OnUpdate(self, evt): self.graph.SetValue(evt.barNum, evt.value) - self.graph.Refresh(false) + self.graph.Refresh(False) def OnCloseWindow(self, evt): @@ -217,7 +208,7 @@ class TestFrame(wxFrame): def runTest(frame, nb, log): win = TestFrame(frame, log) frame.otherWin = win - win.Show(true) + win.Show(True) return None #---------------------------------------------------------------------- @@ -232,7 +223,7 @@ so any cross platform GUI Toolkit and applications written with it 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 @@ -244,3 +235,11 @@ ProcessEvent does, it processes it later from the context of the GUI thread. """ + + + +if __name__ == '__main__': + import sys,os + import run + run.main(['', os.path.basename(sys.argv[0])]) +