]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/demo/Main.py
DC change header change for wxMemoryDC and wxPostscriptDC.
[wxWidgets.git] / utils / wxPython / demo / Main.py
index a17ff06e0f77c8f28fc721f637de9a9d93ca6742..9b8b451988f93c0fb8fec38d5acd1a3032bd1ec1 100644 (file)
@@ -120,7 +120,7 @@ class wxPythonDemo(wxFrame):
         self.log = wxTextCtrl(splitter2, -1, '', wxDefaultPosition, wxDefaultSize,
                               wxTE_MULTILINE|wxTE_READONLY|wxHSCROLL)
         (w, self.charHeight) = self.log.GetTextExtent('X')
-        self.WriteText('wxPython Demo Log:\n')
+        #self.WriteText('wxPython Demo Log:\n')
 
 
         # add the windows to the splitter and split it.
@@ -133,16 +133,15 @@ class wxPythonDemo(wxFrame):
         splitter2.SetMinimumPaneSize(20)
 
         # make our log window be stdout
-        sys.stdout = self
+        #sys.stdout = self
 
     #---------------------------------------------
     def WriteText(self, text):
         self.log.WriteText(text)
-        if wxPlatform == '__WXMSW__':
-            w, h = self.log.GetClientSizeTuple()
-            numLines = h/self.charHeight
-            x, y = self.log.PositionToXY(self.log.GetLastPosition())
-            self.log.ShowPosition(self.log.XYToPosition(x, y-numLines+1))
+        w, h = self.log.GetClientSizeTuple()
+        numLines = h/self.charHeight
+        x, y = self.log.PositionToXY(self.log.GetLastPosition())
+        self.log.ShowPosition(self.log.XYToPosition(x, y-numLines+1))
 
     def write(self, txt):
         self.WriteText(txt)