]>
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 | ||
17 | ||
18 | class FileType: | |
19 | """""" | |
20 | ||
21 | def GetAllCommands(self): | |
22 | """""" | |
23 | pass | |
24 | ||
25 | def GetDescription(self): | |
26 | """""" | |
27 | pass | |
28 | ||
29 | def GetExtensions(self): | |
30 | """""" | |
31 | pass | |
32 | ||
33 | def GetIcon(self): | |
34 | """""" | |
35 | pass | |
36 | ||
37 | def GetIconInfo(self): | |
38 | """""" | |
39 | pass | |
40 | ||
41 | def GetMimeType(self): | |
42 | """""" | |
43 | pass | |
44 | ||
45 | def GetMimeTypes(self): | |
46 | """""" | |
47 | pass | |
48 | ||
49 | def GetOpenCommand(self): | |
50 | """""" | |
51 | pass | |
52 | ||
53 | def GetPrintCommand(self): | |
54 | """""" | |
55 | pass | |
56 | ||
57 | def SetCommand(self): | |
58 | """""" | |
59 | pass | |
60 | ||
61 | def SetDefaultIcon(self): | |
62 | """""" | |
63 | pass | |
64 | ||
65 | def Unassociate(self): | |
66 | """""" | |
67 | pass | |
68 | ||
69 | def __del__(self): | |
70 | """""" | |
71 | pass | |
72 | ||
73 | def __init__(self): | |
74 | """""" | |
75 | pass | |
76 | ||
77 | ||
78 | class FileTypeInfo: | |
79 | """""" | |
80 | ||
81 | def GetDescription(self): | |
82 | """""" | |
83 | pass | |
84 | ||
85 | def GetExtensions(self): | |
86 | """""" | |
87 | pass | |
88 | ||
89 | def GetExtensionsCount(self): | |
90 | """""" | |
91 | pass | |
92 | ||
93 | def GetIconFile(self): | |
94 | """""" | |
95 | pass | |
96 | ||
97 | def GetIconIndex(self): | |
98 | """""" | |
99 | pass | |
100 | ||
101 | def GetMimeType(self): | |
102 | """""" | |
103 | pass | |
104 | ||
105 | def GetOpenCommand(self): | |
106 | """""" | |
107 | pass | |
108 | ||
109 | def GetPrintCommand(self): | |
110 | """""" | |
111 | pass | |
112 | ||
113 | def GetShortDesc(self): | |
114 | """""" | |
115 | pass | |
116 | ||
117 | def IsValid(self): | |
118 | """""" | |
119 | pass | |
120 | ||
121 | def SetIcon(self): | |
122 | """""" | |
123 | pass | |
124 | ||
125 | def SetShortDesc(self): | |
126 | """""" | |
127 | pass | |
128 | ||
129 | def __init__(self): | |
130 | """""" | |
131 | pass | |
132 | ||
133 | ||
134 | class MimeTypesManager: | |
135 | """""" | |
136 | ||
137 | def AddFallback(self): | |
138 | """""" | |
139 | pass | |
140 | ||
141 | def Associate(self): | |
142 | """""" | |
143 | pass | |
144 | ||
145 | def ClearData(self): | |
146 | """""" | |
147 | pass | |
148 | ||
149 | def EnumAllFileTypes(self): | |
150 | """""" | |
151 | pass | |
152 | ||
153 | def GetFileTypeFromExtension(self): | |
154 | """""" | |
155 | pass | |
156 | ||
157 | def GetFileTypeFromMimeType(self): | |
158 | """""" | |
159 | pass | |
160 | ||
161 | def Initialize(self): | |
162 | """""" | |
163 | pass | |
164 | ||
165 | def ReadMailcap(self): | |
166 | """""" | |
167 | pass | |
168 | ||
169 | def ReadMimeTypes(self): | |
170 | """""" | |
171 | pass | |
172 | ||
173 | def Unassociate(self): | |
174 | """""" | |
175 | pass | |
176 | ||
177 | def __del__(self): | |
178 | """""" | |
179 | pass | |
180 | ||
181 | def __init__(self): | |
182 | """""" | |
183 | pass | |
184 | ||
185 |