Derive from this class to get support for retaining dialog position and size across application sessions.
To use this class you need to:
1. Derive from this class.
2. Specify the name of the dialog using the constructor's name argument.
3. If your derived class overrides Show() or ShowModal() then be sure to call this class's corresponding methods.
For example:
class MyDialog( ApplicationDialog ):
def __init__( self, parent, ... ): ApplicationDialog.__init__(self, parent, title="My Title", name="MyDialog")
... Create your dialog content ...
Public Member Functions |
|
__init__ () | |
Show () | |
ShowModal () |
UiUtilities.ApplicationDialog.__init__ | ( | ) |
UiUtilities.ApplicationDialog.Show | ( | ) |
Reimplemented in UiUtilities.OperationWindow.
UiUtilities.ApplicationDialog.ShowModal | ( | ) |
Reimplemented in UiUtilities.ModalWindow.