]>
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, EvtHandler | |
16 | import Parameters as wx | |
17 | from Window import Window | |
18 | ||
19 | ||
20 | class FileHistory(Object): | |
21 | """""" | |
22 | ||
23 | def AddFileToHistory(self): | |
24 | """""" | |
25 | pass | |
26 | ||
27 | def AddFilesToMenu(self): | |
28 | """""" | |
29 | pass | |
30 | ||
31 | def AddFilesToThisMenu(self): | |
32 | """""" | |
33 | pass | |
34 | ||
35 | def GetCount(self): | |
36 | """""" | |
37 | pass | |
38 | ||
39 | def GetHistoryFile(self): | |
40 | """""" | |
41 | pass | |
42 | ||
43 | def GetMaxFiles(self): | |
44 | """""" | |
45 | pass | |
46 | ||
47 | def GetNoHistoryFiles(self): | |
48 | """""" | |
49 | pass | |
50 | ||
51 | def Load(self): | |
52 | """""" | |
53 | pass | |
54 | ||
55 | def RemoveFileFromHistory(self): | |
56 | """""" | |
57 | pass | |
58 | ||
59 | def RemoveMenu(self): | |
60 | """""" | |
61 | pass | |
62 | ||
63 | def Save(self): | |
64 | """""" | |
65 | pass | |
66 | ||
67 | def UseMenu(self): | |
68 | """""" | |
69 | pass | |
70 | ||
71 | def __del__(self): | |
72 | """""" | |
73 | pass | |
74 | ||
75 | def __init__(self): | |
76 | """""" | |
77 | pass | |
78 | ||
79 | ||
80 | class Menu(EvtHandler): | |
81 | """""" | |
82 | ||
83 | def Append(self): | |
84 | """""" | |
85 | pass | |
86 | ||
87 | def AppendCheckItem(self): | |
88 | """""" | |
89 | pass | |
90 | ||
91 | def AppendItem(self): | |
92 | """""" | |
93 | pass | |
94 | ||
95 | def AppendMenu(self): | |
96 | """""" | |
97 | pass | |
98 | ||
99 | def AppendRadioItem(self): | |
100 | """""" | |
101 | pass | |
102 | ||
103 | def AppendSeparator(self): | |
104 | """""" | |
105 | pass | |
106 | ||
107 | def Break(self): | |
108 | """""" | |
109 | pass | |
110 | ||
111 | def Check(self): | |
112 | """""" | |
113 | pass | |
114 | ||
115 | def Delete(self): | |
116 | """""" | |
117 | pass | |
118 | ||
119 | def DeleteItem(self): | |
120 | """""" | |
121 | pass | |
122 | ||
123 | def Destroy(self): | |
124 | """""" | |
125 | pass | |
126 | ||
127 | def DestroyId(self): | |
128 | """""" | |
129 | pass | |
130 | ||
131 | def DestroyItem(self): | |
132 | """""" | |
133 | pass | |
134 | ||
135 | def Enable(self): | |
136 | """""" | |
137 | pass | |
138 | ||
139 | def FindItem(self): | |
140 | """""" | |
141 | pass | |
142 | ||
143 | def FindItemById(self): | |
144 | """""" | |
145 | pass | |
146 | ||
147 | def GetEventHandler(self): | |
148 | """""" | |
149 | pass | |
150 | ||
151 | def GetHelpString(self): | |
152 | """""" | |
153 | pass | |
154 | ||
155 | def GetInvokingWindow(self): | |
156 | """""" | |
157 | pass | |
158 | ||
159 | def GetLabel(self): | |
160 | """""" | |
161 | pass | |
162 | ||
163 | def GetMenuItemCount(self): | |
164 | """""" | |
165 | pass | |
166 | ||
167 | def GetMenuItems(self): | |
168 | """""" | |
169 | pass | |
170 | ||
171 | def GetParent(self): | |
172 | """""" | |
173 | pass | |
174 | ||
175 | def GetStyle(self): | |
176 | """""" | |
177 | pass | |
178 | ||
179 | def GetTitle(self): | |
180 | """""" | |
181 | pass | |
182 | ||
183 | def Insert(self): | |
184 | """""" | |
185 | pass | |
186 | ||
187 | def InsertCheckItem(self): | |
188 | """""" | |
189 | pass | |
190 | ||
191 | def InsertItem(self): | |
192 | """""" | |
193 | pass | |
194 | ||
195 | def InsertMenu(self): | |
196 | """""" | |
197 | pass | |
198 | ||
199 | def InsertRadioItem(self): | |
200 | """""" | |
201 | pass | |
202 | ||
203 | def InsertSeparator(self): | |
204 | """""" | |
205 | pass | |
206 | ||
207 | def IsAttached(self): | |
208 | """""" | |
209 | pass | |
210 | ||
211 | def IsChecked(self): | |
212 | """""" | |
213 | pass | |
214 | ||
215 | def IsEnabled(self): | |
216 | """""" | |
217 | pass | |
218 | ||
219 | def Prepend(self): | |
220 | """""" | |
221 | pass | |
222 | ||
223 | def PrependCheckItem(self): | |
224 | """""" | |
225 | pass | |
226 | ||
227 | def PrependItem(self): | |
228 | """""" | |
229 | pass | |
230 | ||
231 | def PrependMenu(self): | |
232 | """""" | |
233 | pass | |
234 | ||
235 | def PrependRadioItem(self): | |
236 | """""" | |
237 | pass | |
238 | ||
239 | def PrependSeparator(self): | |
240 | """""" | |
241 | pass | |
242 | ||
243 | def Remove(self): | |
244 | """""" | |
245 | pass | |
246 | ||
247 | def RemoveItem(self): | |
248 | """""" | |
249 | pass | |
250 | ||
251 | def SetEventHandler(self): | |
252 | """""" | |
253 | pass | |
254 | ||
255 | def SetHelpString(self): | |
256 | """""" | |
257 | pass | |
258 | ||
259 | def SetInvokingWindow(self): | |
260 | """""" | |
261 | pass | |
262 | ||
263 | def SetLabel(self): | |
264 | """""" | |
265 | pass | |
266 | ||
267 | def SetParent(self): | |
268 | """""" | |
269 | pass | |
270 | ||
271 | def SetTitle(self): | |
272 | """""" | |
273 | pass | |
274 | ||
275 | def UpdateUI(self): | |
276 | """""" | |
277 | pass | |
278 | ||
279 | def __init__(self): | |
280 | """""" | |
281 | pass | |
282 | ||
283 | ||
284 | class MenuBar(Window): | |
285 | """""" | |
286 | ||
287 | def Append(self): | |
288 | """""" | |
289 | pass | |
290 | ||
291 | def Check(self): | |
292 | """""" | |
293 | pass | |
294 | ||
295 | def Enable(self): | |
296 | """""" | |
297 | pass | |
298 | ||
299 | def EnableTop(self): | |
300 | """""" | |
301 | pass | |
302 | ||
303 | def FindItemById(self): | |
304 | """""" | |
305 | pass | |
306 | ||
307 | def FindMenu(self): | |
308 | """""" | |
309 | pass | |
310 | ||
311 | def FindMenuItem(self): | |
312 | """""" | |
313 | pass | |
314 | ||
315 | def GetHelpString(self): | |
316 | """""" | |
317 | pass | |
318 | ||
319 | def GetLabel(self): | |
320 | """""" | |
321 | pass | |
322 | ||
323 | def GetLabelTop(self): | |
324 | """""" | |
325 | pass | |
326 | ||
327 | def GetMenu(self): | |
328 | """""" | |
329 | pass | |
330 | ||
331 | def GetMenuCount(self): | |
332 | """""" | |
333 | pass | |
334 | ||
335 | def Insert(self): | |
336 | """""" | |
337 | pass | |
338 | ||
339 | def IsChecked(self): | |
340 | """""" | |
341 | pass | |
342 | ||
343 | def IsEnabled(self): | |
344 | """""" | |
345 | pass | |
346 | ||
347 | def IsEnabledTop(self): | |
348 | """""" | |
349 | pass | |
350 | ||
351 | def Remove(self): | |
352 | """""" | |
353 | pass | |
354 | ||
355 | def Replace(self): | |
356 | """""" | |
357 | pass | |
358 | ||
359 | def SetHelpString(self): | |
360 | """""" | |
361 | pass | |
362 | ||
363 | def SetLabel(self): | |
364 | """""" | |
365 | pass | |
366 | ||
367 | def SetLabelTop(self): | |
368 | """""" | |
369 | pass | |
370 | ||
371 | def __init__(self): | |
372 | """""" | |
373 | pass | |
374 | ||
375 | class MenuItem(Object): | |
376 | """""" | |
377 | ||
378 | def Check(self): | |
379 | """""" | |
380 | pass | |
381 | ||
382 | def Enable(self): | |
383 | """""" | |
384 | pass | |
385 | ||
386 | def GetAccel(self): | |
387 | """""" | |
388 | pass | |
389 | ||
390 | def GetBitmap(self): | |
391 | """""" | |
392 | pass | |
393 | ||
394 | def GetHelp(self): | |
395 | """""" | |
396 | pass | |
397 | ||
398 | def GetId(self): | |
399 | """""" | |
400 | pass | |
401 | ||
402 | def GetKind(self): | |
403 | """""" | |
404 | pass | |
405 | ||
406 | def GetLabel(self): | |
407 | """""" | |
408 | pass | |
409 | ||
410 | def GetMenu(self): | |
411 | """""" | |
412 | pass | |
413 | ||
414 | def GetSubMenu(self): | |
415 | """""" | |
416 | pass | |
417 | ||
418 | def GetText(self): | |
419 | """""" | |
420 | pass | |
421 | ||
422 | def IsCheckable(self): | |
423 | """""" | |
424 | pass | |
425 | ||
426 | def IsChecked(self): | |
427 | """""" | |
428 | pass | |
429 | ||
430 | def IsEnabled(self): | |
431 | """""" | |
432 | pass | |
433 | ||
434 | def IsSeparator(self): | |
435 | """""" | |
436 | pass | |
437 | ||
438 | def IsSubMenu(self): | |
439 | """""" | |
440 | pass | |
441 | ||
442 | def SetAccel(self): | |
443 | """""" | |
444 | pass | |
445 | ||
446 | def SetBitmap(self): | |
447 | """""" | |
448 | pass | |
449 | ||
450 | def SetCheckable(self): | |
451 | """""" | |
452 | pass | |
453 | ||
454 | def SetHelp(self): | |
455 | """""" | |
456 | pass | |
457 | ||
458 | def SetId(self): | |
459 | """""" | |
460 | pass | |
461 | ||
462 | def SetSubMenu(self): | |
463 | """""" | |
464 | pass | |
465 | ||
466 | def SetText(self): | |
467 | """""" | |
468 | pass | |
469 | ||
470 | def Toggle(self): | |
471 | """""" | |
472 | pass | |
473 | ||
474 | def __init__(self): | |
475 | """""" | |
476 | pass | |
477 |