d14a1e2856
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24541 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
472 lines
6.4 KiB
Python
472 lines
6.4 KiB
Python
"""Decorator classes for documentation and shell scripting.
|
|
"""
|
|
|
|
__author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
|
|
__cvsid__ = "$Id$"
|
|
__revision__ = "$Revision$"[11:-2]
|
|
|
|
|
|
# These are not the real wxPython classes. These are Python versions
|
|
# for documentation purposes. They are also used to apply docstrings
|
|
# to the real wxPython classes, which are SWIG-generated wrappers for
|
|
# C-language classes.
|
|
|
|
|
|
from Base import Object
|
|
from Frames import Frame
|
|
import Parameters as wx
|
|
from Window import TopLevelWindow
|
|
|
|
|
|
class Dialog(TopLevelWindow):
|
|
""""""
|
|
|
|
def Centre(self):
|
|
""""""
|
|
pass
|
|
|
|
def Create(self):
|
|
""""""
|
|
pass
|
|
|
|
def CreateButtonSizer(self):
|
|
""""""
|
|
pass
|
|
|
|
def CreateTextSizer(self):
|
|
""""""
|
|
pass
|
|
|
|
def EndModal(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetReturnCode(self):
|
|
""""""
|
|
pass
|
|
|
|
def IsModal(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetModal(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetReturnCode(self):
|
|
""""""
|
|
pass
|
|
|
|
def ShowModal(self):
|
|
""""""
|
|
pass
|
|
|
|
def __init__(self):
|
|
""""""
|
|
pass
|
|
|
|
|
|
class ColourDialog(Dialog):
|
|
""""""
|
|
|
|
def GetColourData(self):
|
|
""""""
|
|
pass
|
|
|
|
def ShowModal(self):
|
|
""""""
|
|
pass
|
|
|
|
def __init__(self):
|
|
""""""
|
|
pass
|
|
|
|
|
|
class ColourData(Object):
|
|
""""""
|
|
|
|
def GetChooseFull(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetColour(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetCustomColour(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetChooseFull(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetColour(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetCustomColour(self):
|
|
""""""
|
|
pass
|
|
|
|
def __del__(self):
|
|
""""""
|
|
pass
|
|
|
|
def __init__(self):
|
|
""""""
|
|
pass
|
|
|
|
|
|
class ColourDatabase(Object):
|
|
""""""
|
|
|
|
def Append(self):
|
|
""""""
|
|
pass
|
|
|
|
def FindColour(self):
|
|
""""""
|
|
pass
|
|
|
|
def FindName(self):
|
|
""""""
|
|
pass
|
|
|
|
def __init__(self):
|
|
""""""
|
|
pass
|
|
|
|
|
|
class DirDialog(Dialog):
|
|
""""""
|
|
|
|
def GetMessage(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetPath(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetStyle(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetMessage(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetPath(self):
|
|
""""""
|
|
pass
|
|
|
|
def ShowModal(self):
|
|
""""""
|
|
pass
|
|
|
|
def __init__(self):
|
|
""""""
|
|
pass
|
|
|
|
|
|
class FileDialog(Dialog):
|
|
""""""
|
|
|
|
def GetDirectory(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetFilename(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetFilenames(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetFilterIndex(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetMessage(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetPath(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetPaths(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetStyle(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetWildcard(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetDirectory(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetFilename(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetFilterIndex(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetMessage(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetPath(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetStyle(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetWildcard(self):
|
|
""""""
|
|
pass
|
|
|
|
def ShowModal(self):
|
|
""""""
|
|
pass
|
|
|
|
def __init__(self):
|
|
""""""
|
|
pass
|
|
|
|
|
|
class FindReplaceDialog(Dialog):
|
|
""""""
|
|
|
|
def Create(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetData(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetData(self):
|
|
""""""
|
|
pass
|
|
|
|
def __init__(self):
|
|
""""""
|
|
pass
|
|
|
|
|
|
class FindReplaceData(Object):
|
|
""""""
|
|
|
|
def GetFindString(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetFlags(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetReplaceString(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetFindString(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetFlags(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetReplaceString(self):
|
|
""""""
|
|
pass
|
|
|
|
def __del__(self):
|
|
""""""
|
|
pass
|
|
|
|
def __init__(self):
|
|
""""""
|
|
pass
|
|
|
|
|
|
class FontDialog(Dialog):
|
|
""""""
|
|
|
|
def GetFontData(self):
|
|
""""""
|
|
pass
|
|
|
|
def ShowModal(self):
|
|
""""""
|
|
pass
|
|
|
|
def __init__(self):
|
|
""""""
|
|
pass
|
|
|
|
|
|
class FontData(Object):
|
|
""""""
|
|
|
|
def EnableEffects(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetAllowSymbols(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetChosenFont(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetColour(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetEnableEffects(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetInitialFont(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetShowHelp(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetAllowSymbols(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetChosenFont(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetColour(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetInitialFont(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetRange(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetShowHelp(self):
|
|
""""""
|
|
pass
|
|
|
|
def __del__(self):
|
|
""""""
|
|
pass
|
|
|
|
def __init__(self):
|
|
""""""
|
|
pass
|
|
|
|
|
|
class MessageDialog(Dialog):
|
|
""""""
|
|
|
|
def ShowModal(self):
|
|
""""""
|
|
pass
|
|
|
|
def __init__(self):
|
|
""""""
|
|
pass
|
|
|
|
|
|
|
|
class MultiChoiceDialog(Dialog):
|
|
""""""
|
|
|
|
def GetSelections(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetSelections(self):
|
|
""""""
|
|
pass
|
|
|
|
def __init__(self):
|
|
""""""
|
|
pass
|
|
|
|
|
|
class ProgressDialog(Frame):
|
|
""""""
|
|
|
|
def Resume(self):
|
|
""""""
|
|
pass
|
|
|
|
def Update(self):
|
|
""""""
|
|
pass
|
|
|
|
def __init__(self):
|
|
""""""
|
|
pass
|
|
|
|
|
|
class SingleChoiceDialog(Dialog):
|
|
""""""
|
|
|
|
def GetSelection(self):
|
|
""""""
|
|
pass
|
|
|
|
def GetStringSelection(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetSelection(self):
|
|
""""""
|
|
pass
|
|
|
|
def ShowModal(self):
|
|
""""""
|
|
pass
|
|
|
|
def __init__(self):
|
|
""""""
|
|
pass
|
|
|
|
|
|
class TextEntryDialog(Dialog):
|
|
""""""
|
|
|
|
def GetValue(self):
|
|
""""""
|
|
pass
|
|
|
|
def SetValue(self):
|
|
""""""
|
|
pass
|
|
|
|
def ShowModal(self):
|
|
""""""
|
|
pass
|
|
|
|
def __init__(self):
|
|
""""""
|
|
pass
|