pdk.Gui.Widgets.InitializationDialogs ($Date: 2002/12/04 10:16:47 $)
index
pdk/Gui/Widgets/InitializationDialogs.py

Initialization dialogs for pdk.

FOG 03.2001

 
Classes
            
wxPython.frames.wxFrame(wxPython.frames.wxFramePtr)
SplashScreen
StatusSplashScreen
 
class SplashScreen(wxPython.frames.wxFrame)
     
Purpose:a configurable splash screen widget
Detail:emits a MSG_KEYPRESSED message when a key is pressed during the showing period. Also, closes before the show time has run out if the user clicks on the screen.

 
  
Method resolution order:
SplashScreen
wxPython.frames.wxFrame
wxPython.frames.wxFramePtr
wxPython.frames.wxTopLevelWindowPtr
wxPython.windows.wxWindowPtr
wxPython.windows.wxEvtHandlerPtr
wxPython.misc.wxObjectPtr

Methods defined here:
Destroy(self)
make sure we call the destroy method of the GUI, if the splash screen was created as a pdk widget.
OnKeyUp(self, ev)
OnMouseLeftUp(self, event)
OnPaint(self, ev)
__del__(self)
__init__(self, parent, wxId, title='Initializing the application. Please wait...', duration=-1, bitmap=None, versionInfo='', versionPosition=(0.5, 0.5), registrationInfo='', registrationPosition=(0.5, 0.80000000000000004), **optionD)
Parameters:
  • parent, wxId -- see wxFrame
  • duration -- milliseconds to display the splash screen
  • bitmap -- absolute or relative pathname or wxBitmap object. If no value is passed, an empty bitmap of size 200x200 is created
  • versionInfo -- string containing version information which is to be showed on the splash screen
  • versionPosition -- indicates where to put the version string on the bitmap. 2-tuple of floats, the first indicating placement in x direction as a fraction of the bitmap width, the second placement in y direction as a fraction of the bitmap height
  • registrationInfo -- string containing information about the user that is being registered to use this application (not yet implemented)
  • registrationPosition -- determines the position of the registration string the same way as versionPosition does for the version string
 
class StatusSplashScreen(SplashScreen)
     
Purpose:a splash screen with a status bar

 
  
Method resolution order:
StatusSplashScreen
SplashScreen
wxPython.frames.wxFrame
wxPython.frames.wxFramePtr
wxPython.frames.wxTopLevelWindowPtr
wxPython.windows.wxWindowPtr
wxPython.windows.wxEvtHandlerPtr
wxPython.misc.wxObjectPtr

Methods defined here:
Destroy(self)
__del__(self)
__init__(self, parent, wxId, **optionD)
 
Author
            
$Author: gathmann $