]>
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 | from Base import Object | |
16 | from Frames import Frame | |
17 | import Parameters as wx | |
18 | from Window import TopLevelWindow | |
19 | ||
20 | ||
21 | class Dialog(TopLevelWindow): | |
22 | """""" | |
23 | ||
24 | def Centre(self): | |
25 | """""" | |
26 | pass | |
27 | ||
28 | def Create(self): | |
29 | """""" | |
30 | pass | |
31 | ||
32 | def CreateButtonSizer(self): | |
33 | """""" | |
34 | pass | |
35 | ||
36 | def CreateTextSizer(self): | |
37 | """""" | |
38 | pass | |
39 | ||
40 | def EndModal(self): | |
41 | """""" | |
42 | pass | |
43 | ||
44 | def GetReturnCode(self): | |
45 | """""" | |
46 | pass | |
47 | ||
48 | def IsModal(self): | |
49 | """""" | |
50 | pass | |
51 | ||
52 | def SetModal(self): | |
53 | """""" | |
54 | pass | |
55 | ||
56 | def SetReturnCode(self): | |
57 | """""" | |
58 | pass | |
59 | ||
60 | def ShowModal(self): | |
61 | """""" | |
62 | pass | |
63 | ||
64 | def __init__(self): | |
65 | """""" | |
66 | pass | |
67 | ||
68 | ||
69 | class ColourDialog(Dialog): | |
70 | """""" | |
71 | ||
72 | def GetColourData(self): | |
73 | """""" | |
74 | pass | |
75 | ||
76 | def ShowModal(self): | |
77 | """""" | |
78 | pass | |
79 | ||
80 | def __init__(self): | |
81 | """""" | |
82 | pass | |
83 | ||
84 | ||
85 | class ColourData(Object): | |
86 | """""" | |
87 | ||
88 | def GetChooseFull(self): | |
89 | """""" | |
90 | pass | |
91 | ||
92 | def GetColour(self): | |
93 | """""" | |
94 | pass | |
95 | ||
96 | def GetCustomColour(self): | |
97 | """""" | |
98 | pass | |
99 | ||
100 | def SetChooseFull(self): | |
101 | """""" | |
102 | pass | |
103 | ||
104 | def SetColour(self): | |
105 | """""" | |
106 | pass | |
107 | ||
108 | def SetCustomColour(self): | |
109 | """""" | |
110 | pass | |
111 | ||
112 | def __del__(self): | |
113 | """""" | |
114 | pass | |
115 | ||
116 | def __init__(self): | |
117 | """""" | |
118 | pass | |
119 | ||
120 | ||
121 | class ColourDatabase(Object): | |
122 | """""" | |
123 | ||
124 | def Append(self): | |
125 | """""" | |
126 | pass | |
127 | ||
128 | def FindColour(self): | |
129 | """""" | |
130 | pass | |
131 | ||
132 | def FindName(self): | |
133 | """""" | |
134 | pass | |
135 | ||
136 | def __init__(self): | |
137 | """""" | |
138 | pass | |
139 | ||
140 | ||
141 | class DirDialog(Dialog): | |
142 | """""" | |
143 | ||
144 | def GetMessage(self): | |
145 | """""" | |
146 | pass | |
147 | ||
148 | def GetPath(self): | |
149 | """""" | |
150 | pass | |
151 | ||
152 | def GetStyle(self): | |
153 | """""" | |
154 | pass | |
155 | ||
156 | def SetMessage(self): | |
157 | """""" | |
158 | pass | |
159 | ||
160 | def SetPath(self): | |
161 | """""" | |
162 | pass | |
163 | ||
164 | def ShowModal(self): | |
165 | """""" | |
166 | pass | |
167 | ||
168 | def __init__(self): | |
169 | """""" | |
170 | pass | |
171 | ||
172 | ||
173 | class FileDialog(Dialog): | |
174 | """""" | |
175 | ||
176 | def GetDirectory(self): | |
177 | """""" | |
178 | pass | |
179 | ||
180 | def GetFilename(self): | |
181 | """""" | |
182 | pass | |
183 | ||
184 | def GetFilenames(self): | |
185 | """""" | |
186 | pass | |
187 | ||
188 | def GetFilterIndex(self): | |
189 | """""" | |
190 | pass | |
191 | ||
192 | def GetMessage(self): | |
193 | """""" | |
194 | pass | |
195 | ||
196 | def GetPath(self): | |
197 | """""" | |
198 | pass | |
199 | ||
200 | def GetPaths(self): | |
201 | """""" | |
202 | pass | |
203 | ||
204 | def GetStyle(self): | |
205 | """""" | |
206 | pass | |
207 | ||
208 | def GetWildcard(self): | |
209 | """""" | |
210 | pass | |
211 | ||
212 | def SetDirectory(self): | |
213 | """""" | |
214 | pass | |
215 | ||
216 | def SetFilename(self): | |
217 | """""" | |
218 | pass | |
219 | ||
220 | def SetFilterIndex(self): | |
221 | """""" | |
222 | pass | |
223 | ||
224 | def SetMessage(self): | |
225 | """""" | |
226 | pass | |
227 | ||
228 | def SetPath(self): | |
229 | """""" | |
230 | pass | |
231 | ||
232 | def SetStyle(self): | |
233 | """""" | |
234 | pass | |
235 | ||
236 | def SetWildcard(self): | |
237 | """""" | |
238 | pass | |
239 | ||
240 | def ShowModal(self): | |
241 | """""" | |
242 | pass | |
243 | ||
244 | def __init__(self): | |
245 | """""" | |
246 | pass | |
247 | ||
248 | ||
249 | class FindReplaceDialog(Dialog): | |
250 | """""" | |
251 | ||
252 | def Create(self): | |
253 | """""" | |
254 | pass | |
255 | ||
256 | def GetData(self): | |
257 | """""" | |
258 | pass | |
259 | ||
260 | def SetData(self): | |
261 | """""" | |
262 | pass | |
263 | ||
264 | def __init__(self): | |
265 | """""" | |
266 | pass | |
267 | ||
268 | ||
269 | class FindReplaceData(Object): | |
270 | """""" | |
271 | ||
272 | def GetFindString(self): | |
273 | """""" | |
274 | pass | |
275 | ||
276 | def GetFlags(self): | |
277 | """""" | |
278 | pass | |
279 | ||
280 | def GetReplaceString(self): | |
281 | """""" | |
282 | pass | |
283 | ||
284 | def SetFindString(self): | |
285 | """""" | |
286 | pass | |
287 | ||
288 | def SetFlags(self): | |
289 | """""" | |
290 | pass | |
291 | ||
292 | def SetReplaceString(self): | |
293 | """""" | |
294 | pass | |
295 | ||
296 | def __del__(self): | |
297 | """""" | |
298 | pass | |
299 | ||
300 | def __init__(self): | |
301 | """""" | |
302 | pass | |
303 | ||
304 | ||
305 | class FontDialog(Dialog): | |
306 | """""" | |
307 | ||
308 | def GetFontData(self): | |
309 | """""" | |
310 | pass | |
311 | ||
312 | def ShowModal(self): | |
313 | """""" | |
314 | pass | |
315 | ||
316 | def __init__(self): | |
317 | """""" | |
318 | pass | |
319 | ||
320 | ||
321 | class FontData(Object): | |
322 | """""" | |
323 | ||
324 | def EnableEffects(self): | |
325 | """""" | |
326 | pass | |
327 | ||
328 | def GetAllowSymbols(self): | |
329 | """""" | |
330 | pass | |
331 | ||
332 | def GetChosenFont(self): | |
333 | """""" | |
334 | pass | |
335 | ||
336 | def GetColour(self): | |
337 | """""" | |
338 | pass | |
339 | ||
340 | def GetEnableEffects(self): | |
341 | """""" | |
342 | pass | |
343 | ||
344 | def GetInitialFont(self): | |
345 | """""" | |
346 | pass | |
347 | ||
348 | def GetShowHelp(self): | |
349 | """""" | |
350 | pass | |
351 | ||
352 | def SetAllowSymbols(self): | |
353 | """""" | |
354 | pass | |
355 | ||
356 | def SetChosenFont(self): | |
357 | """""" | |
358 | pass | |
359 | ||
360 | def SetColour(self): | |
361 | """""" | |
362 | pass | |
363 | ||
364 | def SetInitialFont(self): | |
365 | """""" | |
366 | pass | |
367 | ||
368 | def SetRange(self): | |
369 | """""" | |
370 | pass | |
371 | ||
372 | def SetShowHelp(self): | |
373 | """""" | |
374 | pass | |
375 | ||
376 | def __del__(self): | |
377 | """""" | |
378 | pass | |
379 | ||
380 | def __init__(self): | |
381 | """""" | |
382 | pass | |
383 | ||
384 | ||
385 | class MessageDialog(Dialog): | |
386 | """""" | |
387 | ||
388 | def ShowModal(self): | |
389 | """""" | |
390 | pass | |
391 | ||
392 | def __init__(self): | |
393 | """""" | |
394 | pass | |
395 | ||
396 | ||
397 | ||
398 | class MultiChoiceDialog(Dialog): | |
399 | """""" | |
400 | ||
401 | def GetSelections(self): | |
402 | """""" | |
403 | pass | |
404 | ||
405 | def SetSelections(self): | |
406 | """""" | |
407 | pass | |
408 | ||
409 | def __init__(self): | |
410 | """""" | |
411 | pass | |
412 | ||
413 | ||
414 | class ProgressDialog(Frame): | |
415 | """""" | |
416 | ||
417 | def Resume(self): | |
418 | """""" | |
419 | pass | |
420 | ||
421 | def Update(self): | |
422 | """""" | |
423 | pass | |
424 | ||
425 | def __init__(self): | |
426 | """""" | |
427 | pass | |
428 | ||
429 | ||
430 | class SingleChoiceDialog(Dialog): | |
431 | """""" | |
432 | ||
433 | def GetSelection(self): | |
434 | """""" | |
435 | pass | |
436 | ||
437 | def GetStringSelection(self): | |
438 | """""" | |
439 | pass | |
440 | ||
441 | def SetSelection(self): | |
442 | """""" | |
443 | pass | |
444 | ||
445 | def ShowModal(self): | |
446 | """""" | |
447 | pass | |
448 | ||
449 | def __init__(self): | |
450 | """""" | |
451 | pass | |
452 | ||
453 | ||
454 | class TextEntryDialog(Dialog): | |
455 | """""" | |
456 | ||
457 | def GetValue(self): | |
458 | """""" | |
459 | pass | |
460 | ||
461 | def SetValue(self): | |
462 | """""" | |
463 | pass | |
464 | ||
465 | def ShowModal(self): | |
466 | """""" | |
467 | pass | |
468 | ||
469 | def __init__(self): | |
470 | """""" | |
471 | pass |