2 #----------------------------------------------------------------------
4 class PyOnDemandOutputWindow
:
6 A class that can be used for redirecting Python's stdout and
7 stderr streams. It will do nothing until something is wrriten to
8 the stream at which point it will create a Frame with a text area
9 and write the text there.
11 def __init__(self
, title
= "wxPython: stdout/stderr"):
16 def SetParent(self
, parent
):
17 """Set the window to be used as the popup Frame's parent."""
21 def CreateOutputWindow(self
, st
):
22 self
.frame
= wx
.Frame(self
.parent
, -1, self
.title
,
23 style
=wx
.DEFAULT_FRAME_STYLE | wx
.NO_FULL_REPAINT_ON_RESIZE
)
24 self
.text
= wx
.TextCtrl(self
.frame
, -1, "",
25 style
= wx
.TE_MULTILINE | wx
.TE_READONLY
)
26 self
.text
.AppendText(st
)
27 self
.frame
.SetSize((450, 300))
29 EVT_CLOSE(self
.frame
, self
.OnCloseWindow
)
32 # These methods provide the file-like output behaviour.
33 def write(self
, text
):
35 Create the output window if needed and write the string to it.
36 If not called in the context of the gui thread then uses
37 CallAfter to do the work there.
39 if self
.frame
is None:
40 if not wx
.Thread_IsMain():
41 wx
.CallAfter(self
.CreateOutputWindow
, text
)
43 self
.CreateOutputWindow(text
)
45 if not wx
.Thread_IsMain():
46 wx
.CallAfter(self
.text
.AppendText
, text
)
48 self
.text
.AppendText(text
)
52 if self
.frame
is not None:
53 wx
.CallAfter(self
.frame
.Close
)
56 def OnCloseWindow(self
, event
):
57 if self
.frame
is not None:
62 #----------------------------------------------------------------------
64 _defRedirect
= (wx
.Platform
== '__WXMSW__' or wx
.Platform
== '__WXMAC__')
68 The main application class. Derive from this and implement an OnInit
69 method that creates a frame and then calls self.SetTopWindow(frame)
71 outputWindowClass
= PyOnDemandOutputWindow
73 def __init__(self
, redirect
=_defRedirect
, filename
=None, useBestVisual
=False):
74 wx
.PyApp
.__init
__(self
)
76 if wx
.Platform
== "__WXMAC__":
79 if not MacOS
.WMAvailable():
81 This program needs access to the screen. Please run with 'pythonw',
82 not 'python', and only when you are logged in on the main display of
88 # This has to be done before OnInit
89 self
.SetUseBestVisual(useBestVisual
)
91 # Set the default handler for SIGINT. This fixes a problem
92 # where if Ctrl-C is pressed in the console that started this
93 # app then it will not appear to do anything, (not even send
94 # KeyboardInterrupt???) but will later segfault on exit. By
95 # setting the default handler then the app will exit, as
96 # expected (depending on platform.)
99 signal
.signal(signal
.SIGINT
, signal
.SIG_DFL
)
103 # Save and redirect the stdio to a window?
105 self
.saveStdio
= (_sys
.stdout
, _sys
.stderr
)
107 self
.RedirectStdio(filename
)
109 # This finishes the initialization of wxWindows and then calls
110 # the OnInit that should be present in the derived class
116 self
.RestoreStdio() # Just in case the MainLoop was overridden
121 def SetTopWindow(self
, frame
):
122 """Set the \"main\" top level window"""
124 self
.stdioWin
.SetParent(frame
)
125 wx
.PyApp
.SetTopWindow(self
, frame
)
129 """Execute the main GUI event loop"""
130 wx
.PyApp
.MainLoop(self
)
134 def RedirectStdio(self
, filename
):
135 """Redirect sys.stdout and sys.stderr to a file or a popup window."""
137 _sys
.stdout
= _sys
.stderr
= open(filename
, 'a')
139 self
.stdioWin
= self
.outputWindowClass()
140 _sys
.stdout
= _sys
.stderr
= self
.stdioWin
143 def RestoreStdio(self
):
144 _sys
.stdout
, _sys
.stderr
= self
.saveStdio
148 # change from wxPyApp_ to wxApp_
149 App_GetMacSupportPCMenuShortcuts
= _core
.PyApp_GetMacSupportPCMenuShortcuts
150 App_GetMacAboutMenuItemId
= _core
.PyApp_GetMacAboutMenuItemId
151 App_GetMacPreferencesMenuItemId
= _core
.PyApp_GetMacPreferencesMenuItemId
152 App_GetMacExitMenuItemId
= _core
.PyApp_GetMacExitMenuItemId
153 App_GetMacHelpMenuTitleName
= _core
.PyApp_GetMacHelpMenuTitleName
154 App_SetMacSupportPCMenuShortcuts
= _core
.PyApp_SetMacSupportPCMenuShortcuts
155 App_SetMacAboutMenuItemId
= _core
.PyApp_SetMacAboutMenuItemId
156 App_SetMacPreferencesMenuItemId
= _core
.PyApp_SetMacPreferencesMenuItemId
157 App_SetMacExitMenuItemId
= _core
.PyApp_SetMacExitMenuItemId
158 App_SetMacHelpMenuTitleName
= _core
.PyApp_SetMacHelpMenuTitleName
159 App_GetComCtl32Version
= _core
.PyApp_GetComCtl32Version
161 #----------------------------------------------------------------------------
163 class PySimpleApp(wx
.App
):
165 A simple application class. You can just create one of these and
166 then then make your top level windows later, and not have to worry
169 def __init__(self
, redirect
=False, filename
=None, useBestVisual
=False):
170 wx
.App
.__init
__(self
, redirect
, filename
, useBestVisual
)
173 wx
.InitAllImageHandlers()
177 # Is anybody using this one?
178 class PyWidgetTester(wx
.App
):
179 def __init__(self
, size
= (250, 100)):
181 wx
.App
.__init
__(self
, 0)
184 self
.frame
= wx
.Frame(None, -1, "Widget Tester", pos
=(0,0), size
=self
.size
)
185 self
.SetTopWindow(self
.frame
)
188 def SetWidget(self
, widgetClass
, *args
):
189 w
= widgetClass(self
.frame
, *args
)
190 self
.frame
.Show(True)
192 #----------------------------------------------------------------------------
193 # DO NOT hold any other references to this object. This is how we
194 # know when to cleanup system resources that wxWin is holding. When
195 # the sys module is unloaded, the refcount on sys.__wxPythonCleanup
196 # goes to zero and it calls the wxApp_CleanUp function.
200 self
.cleanup
= _core
.App_CleanUp
204 _sys
.__wxPythonCleanup
= __wxPyCleanup()
206 ## # another possible solution, but it gets called too early...
207 ## if sys.version[0] == '2':
209 ## atexit.register(_core.wxApp_CleanUp)
211 ## sys.exitfunc = _core.wxApp_CleanUp
214 #----------------------------------------------------------------------------