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

Class App

source code


The relax GUI wx application.

Nested Classes [hide private]

Inherited from wx._core.App: outputWindowClass

Instance Methods [hide private]
PyApp
__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

Inherited from wx._core.App: Destroy, MainLoop, OnPreInit, RedirectStdio, RestoreStdio, SetOutputWindowAttributes, SetTopWindow, __del__

Inherited from wx._core.PyApp: Dispatch, Exit, ExitMainLoop, FilterEvent, GetAppName, GetAssertMode, GetCallFilterEvent, GetClassName, GetExitOnFrameDelete, GetLayoutDirection, GetPrintMode, GetTopWindow, GetTraits, GetUseBestVisual, GetVendorName, IsActive, MacHideApp, MacRequestUserAttention, Pending, ProcessIdle, ProcessPendingEvents, SendIdleEvents, SetAppName, SetAssertMode, SetCallFilterEvent, SetClassName, SetExitOnFrameDelete, SetPrintMode, SetUseBestVisual, SetVendorName, WakeUpIdle, Yield, __swig_destroy__

Inherited from wx._core.PyApp (private): _BootstrapApp, _setCallbackInfo

Inherited from wx._core.EvtHandler: AddPendingEvent, Bind, Connect, Disconnect, GetEvtHandlerEnabled, GetNextHandler, GetPreviousHandler, ProcessEvent, SetEvtHandlerEnabled, SetNextHandler, SetPreviousHandler, Unbind, __repr__

Inherited from wx._core.EvtHandler (private): _setOORInfo

Inherited from wx._core.Object: IsSameAs

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__

Static Methods [hide private]

Inherited from wx._core.PyApp: GetComCtl32Version, GetMacAboutMenuItemId, GetMacExitMenuItemId, GetMacHelpMenuTitleName, GetMacPreferencesMenuItemId, GetMacSupportPCMenuShortcuts, IsDisplayAvailable, IsMainLoopRunning, SetMacAboutMenuItemId, SetMacExitMenuItemId, SetMacHelpMenuTitleName, SetMacPreferencesMenuItemId, SetMacSupportPCMenuShortcuts

Properties [hide private]

Inherited from wx._core.PyApp: Active, AppName, AssertMode, ClassName, ExitOnFrameDelete, LayoutDirection, PrintMode, TopWindow, Traits, UseBestVisual, VendorName, thisown

Inherited from wx._core.EvtHandler: EvtHandlerEnabled, NextHandler, PreviousHandler

Inherited from object: __class__

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.
Returns: PyApp
Overrides: object.__init__