]>
Commit | Line | Data |
---|---|---|
1e4a197e RD |
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 | import Parameters as wx | |
16 | from Window import Window | |
17 | ||
18 | ||
19 | class SashWindow(Window): | |
20 | """""" | |
21 | ||
22 | def Create(self): | |
23 | """""" | |
24 | pass | |
25 | ||
26 | def GetDefaultBorderSize(self): | |
27 | """""" | |
28 | pass | |
29 | ||
30 | def GetEdgeMargin(self): | |
31 | """""" | |
32 | pass | |
33 | ||
34 | def GetExtraBorderSize(self): | |
35 | """""" | |
36 | pass | |
37 | ||
38 | def GetMaximumSizeX(self): | |
39 | """""" | |
40 | pass | |
41 | ||
42 | def GetMaximumSizeY(self): | |
43 | """""" | |
44 | pass | |
45 | ||
46 | def GetMinimumSizeX(self): | |
47 | """""" | |
48 | pass | |
49 | ||
50 | def GetMinimumSizeY(self): | |
51 | """""" | |
52 | pass | |
53 | ||
54 | def GetSashVisible(self): | |
55 | """""" | |
56 | pass | |
57 | ||
58 | def HasBorder(self): | |
59 | """""" | |
60 | pass | |
61 | ||
62 | def SetDefaultBorderSize(self): | |
63 | """""" | |
64 | pass | |
65 | ||
66 | def SetExtraBorderSize(self): | |
67 | """""" | |
68 | pass | |
69 | ||
70 | def SetMaximumSizeX(self): | |
71 | """""" | |
72 | pass | |
73 | ||
74 | def SetMaximumSizeY(self): | |
75 | """""" | |
76 | pass | |
77 | ||
78 | def SetMinimumSizeX(self): | |
79 | """""" | |
80 | pass | |
81 | ||
82 | def SetMinimumSizeY(self): | |
83 | """""" | |
84 | pass | |
85 | ||
86 | def SetSashBorder(self): | |
87 | """""" | |
88 | pass | |
89 | ||
90 | def SetSashVisible(self): | |
91 | """""" | |
92 | pass | |
93 | ||
94 | def __init__(self): | |
95 | """""" | |
96 | pass | |
97 | ||
98 | ||
99 | class SashLayoutWindow(SashWindow): | |
100 | """""" | |
101 | ||
102 | def Create(self): | |
103 | """""" | |
104 | pass | |
105 | ||
106 | def GetAlignment(self): | |
107 | """""" | |
108 | pass | |
109 | ||
110 | def GetOrientation(self): | |
111 | """""" | |
112 | pass | |
113 | ||
114 | def SetAlignment(self): | |
115 | """""" | |
116 | pass | |
117 | ||
118 | def SetDefaultSize(self): | |
119 | """""" | |
120 | pass | |
121 | ||
122 | def SetOrientation(self): | |
123 | """""" | |
124 | pass | |
125 | ||
126 | def __init__(self): | |
127 | """""" | |
128 | pass | |
129 | ||
130 | ||
131 | class SplitterWindow(Window): | |
132 | """""" | |
133 | ||
134 | def Create(self): | |
135 | """""" | |
136 | pass | |
137 | ||
138 | def GetBorderSize(self): | |
139 | """""" | |
140 | pass | |
141 | ||
142 | def GetMinimumPaneSize(self): | |
143 | """""" | |
144 | pass | |
145 | ||
146 | def GetNeedUpdating(self): | |
147 | """""" | |
148 | pass | |
149 | ||
150 | def GetSashPosition(self): | |
151 | """""" | |
152 | pass | |
153 | ||
154 | def GetSashSize(self): | |
155 | """""" | |
156 | pass | |
157 | ||
158 | def GetSplitMode(self): | |
159 | """""" | |
160 | pass | |
161 | ||
162 | def GetWindow1(self): | |
163 | """""" | |
164 | pass | |
165 | ||
166 | def GetWindow2(self): | |
167 | """""" | |
168 | pass | |
169 | ||
170 | def Initialize(self): | |
171 | """""" | |
172 | pass | |
173 | ||
174 | def IsSplit(self): | |
175 | """""" | |
176 | pass | |
177 | ||
178 | def ReplaceWindow(self): | |
179 | """""" | |
180 | pass | |
181 | ||
182 | def SetBorderSize(self): | |
183 | """""" | |
184 | pass | |
185 | ||
186 | def SetMinimumPaneSize(self): | |
187 | """""" | |
188 | pass | |
189 | ||
190 | def SetNeedUpdating(self): | |
191 | """""" | |
192 | pass | |
193 | ||
194 | def SetSashPosition(self): | |
195 | """""" | |
196 | pass | |
197 | ||
198 | def SetSashSize(self): | |
199 | """""" | |
200 | pass | |
201 | ||
202 | def SetSplitMode(self): | |
203 | """""" | |
204 | pass | |
205 | ||
206 | def SizeWindows(self): | |
207 | """""" | |
208 | pass | |
209 | ||
210 | def SplitHorizontally(self): | |
211 | """""" | |
212 | pass | |
213 | ||
214 | def SplitVertically(self): | |
215 | """""" | |
216 | pass | |
217 | ||
218 | def Unsplit(self): | |
219 | """""" | |
220 | pass | |
221 | ||
222 | def __init__(self): | |
223 | """""" | |
224 | pass | |
225 | ||
226 |