]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/wx/py/wxd/Dialogs.py
1 """Decorator classes for documentation and shell scripting.
4 __author__
= "Patrick K. O'Brien <pobrien@orbtech.com>"
6 __revision__
= "$Revision$"[11:-2]
9 # These are not the real wxPython classes. These are Python versions
10 # for documentation purposes. They are also used to apply docstrings
11 # to the real wxPython classes, which are SWIG-generated wrappers for
15 from Base
import Object
16 from Frames
import Frame
17 import Parameters
as wx
18 from Window
import TopLevelWindow
21 class Dialog(TopLevelWindow
):
32 def CreateButtonSizer(self
):
36 def CreateTextSizer(self
):
44 def GetReturnCode(self
):
56 def SetReturnCode(self
):
69 class ColourDialog(Dialog
):
72 def GetColourData(self
):
85 class ColourData(Object
):
88 def GetChooseFull(self
):
96 def GetCustomColour(self
):
100 def SetChooseFull(self
):
108 def SetCustomColour(self
):
121 class ColourDatabase(Object
):
128 def FindColour(self
):
141 class DirDialog(Dialog
):
144 def GetMessage(self
):
156 def SetMessage(self
):
173 class FileDialog(Dialog
):
176 def GetDirectory(self
):
180 def GetFilename(self
):
184 def GetFilenames(self
):
188 def GetFilterIndex(self
):
192 def GetMessage(self
):
208 def GetWildcard(self
):
212 def SetDirectory(self
):
216 def SetFilename(self
):
220 def SetFilterIndex(self
):
224 def SetMessage(self
):
236 def SetWildcard(self
):
249 class FindReplaceDialog(Dialog
):
269 class FindReplaceData(Object
):
272 def GetFindString(self
):
280 def GetReplaceString(self
):
284 def SetFindString(self
):
292 def SetReplaceString(self
):
305 class FontDialog(Dialog
):
308 def GetFontData(self
):
321 class FontData(Object
):
324 def EnableEffects(self
):
328 def GetAllowSymbols(self
):
332 def GetChosenFont(self
):
340 def GetEnableEffects(self
):
344 def GetInitialFont(self
):
348 def GetShowHelp(self
):
352 def SetAllowSymbols(self
):
356 def SetChosenFont(self
):
364 def SetInitialFont(self
):
372 def SetShowHelp(self
):
385 class MessageDialog(Dialog
):
398 class MultiChoiceDialog(Dialog
):
401 def GetSelections(self
):
405 def SetSelections(self
):
414 class ProgressDialog(Frame
):
430 class SingleChoiceDialog(Dialog
):
433 def GetSelection(self
):
437 def GetStringSelection(self
):
441 def SetSelection(self
):
454 class TextEntryDialog(Dialog
):