]>
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 Dialogs import Dialog | |
17 | from Frames import Frame | |
18 | import Parameters as wx | |
19 | ||
20 | ||
21 | class PageSetupDialog(Dialog): | |
22 | """""" | |
23 | ||
24 | def GetPageSetupData(self): | |
25 | """""" | |
26 | pass | |
27 | ||
28 | def ShowModal(self): | |
29 | """""" | |
30 | pass | |
31 | ||
32 | def __init__(self): | |
33 | """""" | |
34 | pass | |
35 | ||
36 | ||
37 | class PageSetupDialogData(Object): | |
38 | """""" | |
39 | ||
40 | def EnableHelp(self): | |
41 | """""" | |
42 | pass | |
43 | ||
44 | def EnableMargins(self): | |
45 | """""" | |
46 | pass | |
47 | ||
48 | def EnableOrientation(self): | |
49 | """""" | |
50 | pass | |
51 | ||
52 | def EnablePaper(self): | |
53 | """""" | |
54 | pass | |
55 | ||
56 | def EnablePrinter(self): | |
57 | """""" | |
58 | pass | |
59 | ||
60 | def GetDefaultInfo(self): | |
61 | """""" | |
62 | pass | |
63 | ||
64 | def GetDefaultMinMargins(self): | |
65 | """""" | |
66 | pass | |
67 | ||
68 | def GetEnableHelp(self): | |
69 | """""" | |
70 | pass | |
71 | ||
72 | def GetEnableMargins(self): | |
73 | """""" | |
74 | pass | |
75 | ||
76 | def GetEnableOrientation(self): | |
77 | """""" | |
78 | pass | |
79 | ||
80 | def GetEnablePaper(self): | |
81 | """""" | |
82 | pass | |
83 | ||
84 | def GetEnablePrinter(self): | |
85 | """""" | |
86 | pass | |
87 | ||
88 | def GetMarginBottomRight(self): | |
89 | """""" | |
90 | pass | |
91 | ||
92 | def GetMarginTopLeft(self): | |
93 | """""" | |
94 | pass | |
95 | ||
96 | def GetMinMarginBottomRight(self): | |
97 | """""" | |
98 | pass | |
99 | ||
100 | def GetMinMarginTopLeft(self): | |
101 | """""" | |
102 | pass | |
103 | ||
104 | def GetPaperId(self): | |
105 | """""" | |
106 | pass | |
107 | ||
108 | def GetPaperSize(self): | |
109 | """""" | |
110 | pass | |
111 | ||
112 | def GetPrintData(self): | |
113 | """""" | |
114 | pass | |
115 | ||
116 | def Ok(self): | |
117 | """""" | |
118 | pass | |
119 | ||
120 | def SetDefaultInfo(self): | |
121 | """""" | |
122 | pass | |
123 | ||
124 | def SetDefaultMinMargins(self): | |
125 | """""" | |
126 | pass | |
127 | ||
128 | def SetMarginBottomRight(self): | |
129 | """""" | |
130 | pass | |
131 | ||
132 | def SetMarginTopLeft(self): | |
133 | """""" | |
134 | pass | |
135 | ||
136 | def SetMinMarginBottomRight(self): | |
137 | """""" | |
138 | pass | |
139 | ||
140 | def SetMinMarginTopLeft(self): | |
141 | """""" | |
142 | pass | |
143 | ||
144 | def SetPaperId(self): | |
145 | """""" | |
146 | pass | |
147 | ||
148 | def SetPaperSize(self): | |
149 | """""" | |
150 | pass | |
151 | ||
152 | def SetPrintData(self): | |
153 | """""" | |
154 | pass | |
155 | ||
156 | def __del__(self): | |
157 | """""" | |
158 | pass | |
159 | ||
160 | def __init__(self): | |
161 | """""" | |
162 | pass | |
163 | ||
164 | ||
165 | class PrintDialog(Dialog): | |
166 | """""" | |
167 | ||
168 | def GetPrintDC(self): | |
169 | """""" | |
170 | pass | |
171 | ||
172 | def GetPrintDialogData(self): | |
173 | """""" | |
174 | pass | |
175 | ||
176 | def ShowModal(self): | |
177 | """""" | |
178 | pass | |
179 | ||
180 | def __init__(self): | |
181 | """""" | |
182 | pass | |
183 | ||
184 | ||
185 | class PrintDialogData(Object): | |
186 | """""" | |
187 | ||
188 | def EnableHelp(self): | |
189 | """""" | |
190 | pass | |
191 | ||
192 | def EnablePageNumbers(self): | |
193 | """""" | |
194 | pass | |
195 | ||
196 | def EnablePrintToFile(self): | |
197 | """""" | |
198 | pass | |
199 | ||
200 | def EnableSelection(self): | |
201 | """""" | |
202 | pass | |
203 | ||
204 | def GetAllPages(self): | |
205 | """""" | |
206 | pass | |
207 | ||
208 | def GetCollate(self): | |
209 | """""" | |
210 | pass | |
211 | ||
212 | def GetFromPage(self): | |
213 | """""" | |
214 | pass | |
215 | ||
216 | def GetMaxPage(self): | |
217 | """""" | |
218 | pass | |
219 | ||
220 | def GetMinPage(self): | |
221 | """""" | |
222 | pass | |
223 | ||
224 | def GetNoCopies(self): | |
225 | """""" | |
226 | pass | |
227 | ||
228 | def GetPrintData(self): | |
229 | """""" | |
230 | pass | |
231 | ||
232 | def GetPrintToFile(self): | |
233 | """""" | |
234 | pass | |
235 | ||
236 | def GetToPage(self): | |
237 | """""" | |
238 | pass | |
239 | ||
240 | def Ok(self): | |
241 | """""" | |
242 | pass | |
243 | ||
244 | def SetCollate(self): | |
245 | """""" | |
246 | pass | |
247 | ||
248 | def SetFromPage(self): | |
249 | """""" | |
250 | pass | |
251 | ||
252 | def SetMaxPage(self): | |
253 | """""" | |
254 | pass | |
255 | ||
256 | def SetMinPage(self): | |
257 | """""" | |
258 | pass | |
259 | ||
260 | def SetNoCopies(self): | |
261 | """""" | |
262 | pass | |
263 | ||
264 | def SetPrintData(self): | |
265 | """""" | |
266 | pass | |
267 | ||
268 | def SetPrintToFile(self): | |
269 | """""" | |
270 | pass | |
271 | ||
272 | def SetSetupDialog(self): | |
273 | """""" | |
274 | pass | |
275 | ||
276 | def SetToPage(self): | |
277 | """""" | |
278 | pass | |
279 | ||
280 | def __del__(self): | |
281 | """""" | |
282 | pass | |
283 | ||
284 | def __init__(self): | |
285 | """""" | |
286 | pass | |
287 | ||
288 | ||
289 | class PreviewFrame(Frame): | |
290 | """""" | |
291 | ||
292 | def Initialize(self): | |
293 | """""" | |
294 | pass | |
295 | ||
296 | def __init__(self): | |
297 | """""" | |
298 | pass | |
299 | ||
300 | ||
301 | class PrintData(Object): | |
302 | """""" | |
303 | ||
304 | def GetCollate(self): | |
305 | """""" | |
306 | pass | |
307 | ||
308 | def GetColour(self): | |
309 | """""" | |
310 | pass | |
311 | ||
312 | def GetDuplex(self): | |
313 | """""" | |
314 | pass | |
315 | ||
316 | def GetFilename(self): | |
317 | """""" | |
318 | pass | |
319 | ||
320 | def GetFontMetricPath(self): | |
321 | """""" | |
322 | pass | |
323 | ||
324 | def GetNoCopies(self): | |
325 | """""" | |
326 | pass | |
327 | ||
328 | def GetOrientation(self): | |
329 | """""" | |
330 | pass | |
331 | ||
332 | def GetPaperId(self): | |
333 | """""" | |
334 | pass | |
335 | ||
336 | def GetPaperSize(self): | |
337 | """""" | |
338 | pass | |
339 | ||
340 | def GetPreviewCommand(self): | |
341 | """""" | |
342 | pass | |
343 | ||
344 | def GetPrintMode(self): | |
345 | """""" | |
346 | pass | |
347 | ||
348 | def GetPrinterCommand(self): | |
349 | """""" | |
350 | pass | |
351 | ||
352 | def GetPrinterName(self): | |
353 | """""" | |
354 | pass | |
355 | ||
356 | def GetPrinterOptions(self): | |
357 | """""" | |
358 | pass | |
359 | ||
360 | def GetPrinterScaleX(self): | |
361 | """""" | |
362 | pass | |
363 | ||
364 | def GetPrinterScaleY(self): | |
365 | """""" | |
366 | pass | |
367 | ||
368 | def GetPrinterTranslateX(self): | |
369 | """""" | |
370 | pass | |
371 | ||
372 | def GetPrinterTranslateY(self): | |
373 | """""" | |
374 | pass | |
375 | ||
376 | def GetQuality(self): | |
377 | """""" | |
378 | pass | |
379 | ||
380 | def Ok(self): | |
381 | """""" | |
382 | pass | |
383 | ||
384 | def SetCollate(self): | |
385 | """""" | |
386 | pass | |
387 | ||
388 | def SetColour(self): | |
389 | """""" | |
390 | pass | |
391 | ||
392 | def SetDuplex(self): | |
393 | """""" | |
394 | pass | |
395 | ||
396 | def SetFilename(self): | |
397 | """""" | |
398 | pass | |
399 | ||
400 | def SetFontMetricPath(self): | |
401 | """""" | |
402 | pass | |
403 | ||
404 | def SetNoCopies(self): | |
405 | """""" | |
406 | pass | |
407 | ||
408 | def SetOrientation(self): | |
409 | """""" | |
410 | pass | |
411 | ||
412 | def SetPaperId(self): | |
413 | """""" | |
414 | pass | |
415 | ||
416 | def SetPaperSize(self): | |
417 | """""" | |
418 | pass | |
419 | ||
420 | def SetPreviewCommand(self): | |
421 | """""" | |
422 | pass | |
423 | ||
424 | def SetPrintMode(self): | |
425 | """""" | |
426 | pass | |
427 | ||
428 | def SetPrinterCommand(self): | |
429 | """""" | |
430 | pass | |
431 | ||
432 | def SetPrinterName(self): | |
433 | """""" | |
434 | pass | |
435 | ||
436 | def SetPrinterOptions(self): | |
437 | """""" | |
438 | pass | |
439 | ||
440 | def SetPrinterScaleX(self): | |
441 | """""" | |
442 | pass | |
443 | ||
444 | def SetPrinterScaleY(self): | |
445 | """""" | |
446 | pass | |
447 | ||
448 | def SetPrinterScaling(self): | |
449 | """""" | |
450 | pass | |
451 | ||
452 | def SetPrinterTranslateX(self): | |
453 | """""" | |
454 | pass | |
455 | ||
456 | def SetPrinterTranslateY(self): | |
457 | """""" | |
458 | pass | |
459 | ||
460 | def SetPrinterTranslation(self): | |
461 | """""" | |
462 | pass | |
463 | ||
464 | def SetQuality(self): | |
465 | """""" | |
466 | pass | |
467 | ||
468 | def __del__(self): | |
469 | """""" | |
470 | pass | |
471 | ||
472 | def __init__(self): | |
473 | """""" | |
474 | pass | |
475 | ||
476 | ||
477 | class PrintPreview(Object): | |
478 | """""" | |
479 | ||
480 | def GetCanvas(self): | |
481 | """""" | |
482 | pass | |
483 | ||
484 | def GetCurrentPage(self): | |
485 | """""" | |
486 | pass | |
487 | ||
488 | def GetFrame(self): | |
489 | """""" | |
490 | pass | |
491 | ||
492 | def GetMaxPage(self): | |
493 | """""" | |
494 | pass | |
495 | ||
496 | def GetMinPage(self): | |
497 | """""" | |
498 | pass | |
499 | ||
500 | def GetPrintDialogData(self): | |
501 | """""" | |
502 | pass | |
503 | ||
504 | def GetPrintout(self): | |
505 | """""" | |
506 | pass | |
507 | ||
508 | def GetPrintoutForPrinting(self): | |
509 | """""" | |
510 | pass | |
511 | ||
512 | def GetZoom(self): | |
513 | """""" | |
514 | pass | |
515 | ||
516 | def Ok(self): | |
517 | """""" | |
518 | pass | |
519 | ||
520 | def Print(self): | |
521 | """""" | |
522 | pass | |
523 | ||
524 | def SetCanvas(self): | |
525 | """""" | |
526 | pass | |
527 | ||
528 | def SetCurrentPage(self): | |
529 | """""" | |
530 | pass | |
531 | ||
532 | def SetFrame(self): | |
533 | """""" | |
534 | pass | |
535 | ||
536 | def SetPrintout(self): | |
537 | """""" | |
538 | pass | |
539 | ||
540 | def SetZoom(self): | |
541 | """""" | |
542 | pass | |
543 | ||
544 | def __init__(self): | |
545 | """""" | |
546 | pass | |
547 | ||
548 | ||
549 | class Printer(Object): | |
550 | """""" | |
551 | ||
552 | def CreateAbortWindow(self): | |
553 | """""" | |
554 | pass | |
555 | ||
556 | def GetPrintDialogData(self): | |
557 | """""" | |
558 | pass | |
559 | ||
560 | def Print(self): | |
561 | """""" | |
562 | pass | |
563 | ||
564 | def PrintDialog(self): | |
565 | """""" | |
566 | pass | |
567 | ||
568 | def ReportError(self): | |
569 | """""" | |
570 | pass | |
571 | ||
572 | def Setup(self): | |
573 | """""" | |
574 | pass | |
575 | ||
576 | def __del__(self): | |
577 | """""" | |
578 | pass | |
579 | ||
580 | def __init__(self): | |
581 | """""" | |
582 | pass | |
583 | ||
584 | ||
585 | class Printout(Object): | |
586 | """""" | |
587 | ||
588 | def Destroy(self): | |
589 | """""" | |
590 | pass | |
591 | ||
592 | def GetDC(self): | |
593 | """""" | |
594 | pass | |
595 | ||
596 | def GetPPIPrinter(self): | |
597 | """""" | |
598 | pass | |
599 | ||
600 | def GetPPIScreen(self): | |
601 | """""" | |
602 | pass | |
603 | ||
604 | def GetPageSizeMM(self): | |
605 | """""" | |
606 | pass | |
607 | ||
608 | def GetPageSizePixels(self): | |
609 | """""" | |
610 | pass | |
611 | ||
612 | def IsPreview(self): | |
613 | """""" | |
614 | pass | |
615 | ||
616 | def __init__(self): | |
617 | """""" | |
618 | pass | |
619 | ||
620 | def _setCallbackInfo(self): | |
621 | """""" | |
622 | pass | |
623 | ||
624 | def base_GetPageInfo(self): | |
625 | """""" | |
626 | pass | |
627 | ||
628 | def base_HasPage(self): | |
629 | """""" | |
630 | pass | |
631 | ||
632 | def base_OnBeginDocument(self): | |
633 | """""" | |
634 | pass | |
635 | ||
636 | def base_OnBeginPrinting(self): | |
637 | """""" | |
638 | pass | |
639 | ||
640 | def base_OnEndDocument(self): | |
641 | """""" | |
642 | pass | |
643 | ||
644 | def base_OnEndPrinting(self): | |
645 | """""" | |
646 | pass | |
647 | ||
648 | def base_OnPreparePrinting(self): | |
649 | """""" | |
650 | pass | |
651 |