]> git.saurik.com Git - wxWidgets.git/blob - wxPython/wx/py/wxd/Help.py
Added wxGetKeyState
[wxWidgets.git] / wxPython / wx / py / wxd / Help.py
1 """Decorator classes for documentation and shell scripting.
2 """
3
4 __author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
5 __cvsid__ = "$Id$"
6 __revision__ = "$Revision$"[11:-2]
7
8
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
12 # C-language classes.
13
14
15 from Base import Object
16 import Parameters as wx
17 from Window import Window
18
19
20 class PopupWindow(Window):
21 """"""
22
23 def Create(self):
24 """"""
25 pass
26
27 def Position(self):
28 """"""
29 pass
30
31 def __init__(self):
32 """"""
33 pass
34
35
36 class PopupTransientWindow(PopupWindow):
37 """"""
38
39 def Dismiss(self):
40 """"""
41 pass
42
43 def Popup(self):
44 """"""
45 pass
46
47 def __init__(self):
48 """"""
49 pass
50
51 def _setCallbackInfo(self):
52 """"""
53 pass
54
55
56 class TipProvider:
57 """"""
58
59 def GetCurrentTip(self):
60 """"""
61 pass
62
63 def GetTip(self):
64 """"""
65 pass
66
67 def PreprocessTip(self):
68 """"""
69 pass
70
71 def __del__(self):
72 """"""
73 pass
74
75 def __init__(self):
76 """"""
77 pass
78
79
80 class PyTipProvider(TipProvider):
81 """"""
82
83 def __init__(self):
84 """"""
85 pass
86
87 def _setCallbackInfo(self):
88 """"""
89 pass
90
91
92 class TipWindow(PopupTransientWindow):
93 """"""
94
95 def Close(self):
96 """"""
97 pass
98
99 def SetBoundingRect(self):
100 """"""
101 pass
102
103 def __init__(self):
104 """"""
105 pass
106
107
108 class ToolTip(Object):
109 """"""
110
111 def GetTip(self):
112 """"""
113 pass
114
115 def GetWindow(self):
116 """"""
117 pass
118
119 def SetTip(self):
120 """"""
121 pass
122
123 def __init__(self):
124 """"""
125 pass
126
127