]>
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 | import Parameters as wx | |
17 | ||
18 | ||
19 | class ImageHandler(Object): | |
20 | """""" | |
21 | ||
22 | def CanRead(self): | |
23 | """""" | |
24 | pass | |
25 | ||
26 | def GetExtension(self): | |
27 | """""" | |
28 | pass | |
29 | ||
30 | def GetMimeType(self): | |
31 | """""" | |
32 | pass | |
33 | ||
34 | def GetName(self): | |
35 | """""" | |
36 | pass | |
37 | ||
38 | def GetType(self): | |
39 | """""" | |
40 | pass | |
41 | ||
42 | def SetExtension(self): | |
43 | """""" | |
44 | pass | |
45 | ||
46 | def SetMimeType(self): | |
47 | """""" | |
48 | pass | |
49 | ||
50 | def SetName(self): | |
51 | """""" | |
52 | pass | |
53 | ||
54 | def SetType(self): | |
55 | """""" | |
56 | pass | |
57 | ||
58 | def __init__(self): | |
59 | """""" | |
60 | pass | |
61 | ||
62 | ||
63 | class BMPHandler(ImageHandler): | |
64 | """""" | |
65 | ||
66 | def __init__(self): | |
67 | """""" | |
68 | pass | |
69 | ||
70 | ||
71 | class GIFHandler(ImageHandler): | |
72 | """""" | |
73 | ||
74 | def __init__(self): | |
75 | """""" | |
76 | pass | |
77 | ||
78 | ||
79 | class ICOHandler(BMPHandler): | |
80 | """""" | |
81 | ||
82 | def __init__(self): | |
83 | """""" | |
84 | pass | |
85 | ||
86 | ||
87 | class CURHandler(ICOHandler): | |
88 | """""" | |
89 | ||
90 | def __init__(self): | |
91 | """""" | |
92 | pass | |
93 | ||
94 | ||
95 | class ANIHandler(CURHandler): | |
96 | """""" | |
97 | ||
98 | def __init__(self): | |
99 | """""" | |
100 | pass | |
101 | ||
102 | ||
103 | class JPEGHandler(ImageHandler): | |
104 | """""" | |
105 | ||
106 | def __init__(self): | |
107 | """""" | |
108 | pass | |
109 | ||
110 | ||
111 | class PCXHandler(ImageHandler): | |
112 | """""" | |
113 | ||
114 | def __init__(self): | |
115 | """""" | |
116 | pass | |
117 | ||
118 | ||
119 | class PNGHandler(ImageHandler): | |
120 | """""" | |
121 | ||
122 | def __init__(self): | |
123 | """""" | |
124 | pass | |
125 | ||
126 | ||
127 | class PNMHandler(ImageHandler): | |
128 | """""" | |
129 | ||
130 | def __init__(self): | |
131 | """""" | |
132 | pass | |
133 | ||
134 | ||
135 | class TIFFHandler(ImageHandler): | |
136 | """""" | |
137 | ||
138 | def __init__(self): | |
139 | """""" | |
140 | pass | |
141 | ||
142 |