Package gui :: Class App
[hide private]
[frames] | no frames]

Class App

source code


The relax GUI wx application.

Instance Methods [hide private]
 
__init__(self, script_file=None, redirect=False, filename=None, useBestVisual=False, clearSigInt=True)
Initialise the wx.App.
source code
 
OnInit(self)
Build the application, showing a splash screen first.
source code
 
show_splash(self)
Build and show the splash screen.
source code
Method Details [hide private]

__init__(self, script_file=None, redirect=False, filename=None, useBestVisual=False, clearSigInt=True)
(Constructor)

source code 

Initialise the wx.App.

Parameters:
  • redirect (bool) - Should sys.stdout and sys.stderr be redirected? Defaults to True on Windows and Mac, False otherwise. If filename is None then output will be redirected to a window that pops up as needed. (You can control what kind of window is created for the output by resetting the class variable outputWindowClass to a class of your choosing.)
  • filename (file object) - The name of a file to redirect output to, if redirect is True.
  • useBestVisual (bool) - Should the app try to use the best available visual provided by the system (only relevant on systems that have more than one visual.) This parameter must be used instead of calling SetUseBestVisual later on because it must be set before the underlying GUI toolkit is initialized.
  • clearSigInt (bool) - Should SIGINT be cleared? This allows the app to terminate upon a Ctrl-C in the console like other GUI apps will.
  • script_file (str) - The path of a relax script to execute.