]>
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 Point: | |
19 | """""" | |
20 | ||
21 | def Set(self): | |
22 | """""" | |
23 | pass | |
24 | ||
25 | def __add__(self): | |
26 | """""" | |
27 | pass | |
28 | ||
29 | def __del__(self): | |
30 | """""" | |
31 | pass | |
32 | ||
33 | def __eq__(self): | |
34 | """""" | |
35 | pass | |
36 | ||
37 | def __getattr__(self): | |
38 | """""" | |
39 | pass | |
40 | ||
41 | def __getitem__(self): | |
42 | """""" | |
43 | pass | |
44 | ||
45 | def __init__(self): | |
46 | """""" | |
47 | pass | |
48 | ||
49 | def __len__(self): | |
50 | """""" | |
51 | pass | |
52 | ||
53 | def __ne__(self): | |
54 | """""" | |
55 | pass | |
56 | ||
57 | def __nonzero__(self): | |
58 | """""" | |
59 | pass | |
60 | ||
61 | def __setattr__(self): | |
62 | """""" | |
63 | pass | |
64 | ||
65 | def __setitem__(self): | |
66 | """""" | |
67 | pass | |
68 | ||
69 | def __str__(self): | |
70 | """""" | |
71 | pass | |
72 | ||
73 | def __sub__(self): | |
74 | """""" | |
75 | pass | |
76 | ||
77 | def asTuple(self): | |
78 | """""" | |
79 | pass | |
80 | ||
81 | ||
82 | class Point2DDouble: | |
83 | """""" | |
84 | ||
85 | def GetCrossProduct(self): | |
86 | """""" | |
87 | pass | |
88 | ||
89 | def GetDistance(self): | |
90 | """""" | |
91 | pass | |
92 | ||
93 | def GetDistanceSquare(self): | |
94 | """""" | |
95 | pass | |
96 | ||
97 | def GetDotProduct(self): | |
98 | """""" | |
99 | pass | |
100 | ||
101 | def GetFloor(self): | |
102 | """""" | |
103 | pass | |
104 | ||
105 | def GetRounded(self): | |
106 | """""" | |
107 | pass | |
108 | ||
109 | def GetVectorAngle(self): | |
110 | """""" | |
111 | pass | |
112 | ||
113 | def GetVectorLength(self): | |
114 | """""" | |
115 | pass | |
116 | ||
117 | def Normalize(self): | |
118 | """""" | |
119 | pass | |
120 | ||
121 | def SetPolarCoordinates(self): | |
122 | """""" | |
123 | pass | |
124 | ||
125 | def SetVectorAngle(self): | |
126 | """""" | |
127 | pass | |
128 | ||
129 | def SetVectorLength(self): | |
130 | """""" | |
131 | pass | |
132 | ||
133 | def __eq__(self): | |
134 | """""" | |
135 | pass | |
136 | ||
137 | def __getattr__(self): | |
138 | """""" | |
139 | pass | |
140 | ||
141 | def __getitem__(self): | |
142 | """""" | |
143 | pass | |
144 | ||
145 | def __iadd__(self): | |
146 | """""" | |
147 | pass | |
148 | ||
149 | def __idiv__(self): | |
150 | """""" | |
151 | pass | |
152 | ||
153 | def __imul__(self): | |
154 | """""" | |
155 | pass | |
156 | ||
157 | def __init__(self): | |
158 | """""" | |
159 | pass | |
160 | ||
161 | def __isub__(self): | |
162 | """""" | |
163 | pass | |
164 | ||
165 | def __len__(self): | |
166 | """""" | |
167 | pass | |
168 | ||
169 | def __ne__(self): | |
170 | """""" | |
171 | pass | |
172 | ||
173 | def __neg__(self): | |
174 | """""" | |
175 | pass | |
176 | ||
177 | def __nonzero__(self): | |
178 | """""" | |
179 | pass | |
180 | ||
181 | def __setattr__(self): | |
182 | """""" | |
183 | pass | |
184 | ||
185 | def __setitem__(self): | |
186 | """""" | |
187 | pass | |
188 | ||
189 | def __str__(self): | |
190 | """""" | |
191 | pass | |
192 | ||
193 | def asTuple(self): | |
194 | """""" | |
195 | pass | |
196 | ||
197 | ||
198 | class RealPoint: | |
199 | """""" | |
200 | ||
201 | def Set(self): | |
202 | """""" | |
203 | pass | |
204 | ||
205 | def __add__(self): | |
206 | """""" | |
207 | pass | |
208 | ||
209 | def __del__(self): | |
210 | """""" | |
211 | pass | |
212 | ||
213 | def __eq__(self): | |
214 | """""" | |
215 | pass | |
216 | ||
217 | def __getattr__(self): | |
218 | """""" | |
219 | pass | |
220 | ||
221 | def __getitem__(self): | |
222 | """""" | |
223 | pass | |
224 | ||
225 | def __init__(self): | |
226 | """""" | |
227 | pass | |
228 | ||
229 | def __len__(self): | |
230 | """""" | |
231 | pass | |
232 | ||
233 | def __ne__(self): | |
234 | """""" | |
235 | pass | |
236 | ||
237 | def __nonzero__(self): | |
238 | """""" | |
239 | pass | |
240 | ||
241 | def __setattr__(self): | |
242 | """""" | |
243 | pass | |
244 | ||
245 | def __setitem__(self): | |
246 | """""" | |
247 | pass | |
248 | ||
249 | def __str__(self): | |
250 | """""" | |
251 | pass | |
252 | ||
253 | def __sub__(self): | |
254 | """""" | |
255 | pass | |
256 | ||
257 | def asTuple(self): | |
258 | """""" | |
259 | pass | |
260 | ||
261 | ||
262 | class Rect: | |
263 | """""" | |
264 | ||
265 | def GetBottom(self): | |
266 | """""" | |
267 | pass | |
268 | ||
269 | def GetHeight(self): | |
270 | """""" | |
271 | pass | |
272 | ||
273 | def GetLeft(self): | |
274 | """""" | |
275 | pass | |
276 | ||
277 | def GetPosition(self): | |
278 | """""" | |
279 | pass | |
280 | ||
281 | def GetRight(self): | |
282 | """""" | |
283 | pass | |
284 | ||
285 | def GetSize(self): | |
286 | """""" | |
287 | pass | |
288 | ||
289 | def GetTop(self): | |
290 | """""" | |
291 | pass | |
292 | ||
293 | def GetWidth(self): | |
294 | """""" | |
295 | pass | |
296 | ||
297 | def GetX(self): | |
298 | """""" | |
299 | pass | |
300 | ||
301 | def GetY(self): | |
302 | """""" | |
303 | pass | |
304 | ||
305 | def Inflate(self): | |
306 | """""" | |
307 | pass | |
308 | ||
309 | def Inside(self): | |
310 | """""" | |
311 | pass | |
312 | ||
313 | def SetBottom(self): | |
314 | """""" | |
315 | pass | |
316 | ||
317 | def SetHeight(self): | |
318 | """""" | |
319 | pass | |
320 | ||
321 | def SetLeft(self): | |
322 | """""" | |
323 | pass | |
324 | ||
325 | def SetPosition(self): | |
326 | """""" | |
327 | pass | |
328 | ||
329 | def SetRight(self): | |
330 | """""" | |
331 | pass | |
332 | ||
333 | def SetSize(self): | |
334 | """""" | |
335 | pass | |
336 | ||
337 | def SetTop(self): | |
338 | """""" | |
339 | pass | |
340 | ||
341 | def SetWidth(self): | |
342 | """""" | |
343 | pass | |
344 | ||
345 | def SetX(self): | |
346 | """""" | |
347 | pass | |
348 | ||
349 | def SetY(self): | |
350 | """""" | |
351 | pass | |
352 | ||
353 | def __add__(self): | |
354 | """""" | |
355 | pass | |
356 | ||
357 | def __del__(self): | |
358 | """""" | |
359 | pass | |
360 | ||
361 | def __eq__(self): | |
362 | """""" | |
363 | pass | |
364 | ||
365 | def __getattr__(self): | |
366 | """""" | |
367 | pass | |
368 | ||
369 | def __getitem__(self): | |
370 | """""" | |
371 | pass | |
372 | ||
373 | def __init__(self): | |
374 | """""" | |
375 | pass | |
376 | ||
377 | def __len__(self): | |
378 | """""" | |
379 | pass | |
380 | ||
381 | def __ne__(self): | |
382 | """""" | |
383 | pass | |
384 | ||
385 | def __nonzero__(self): | |
386 | """""" | |
387 | pass | |
388 | ||
389 | def __setattr__(self): | |
390 | """""" | |
391 | pass | |
392 | ||
393 | def __setitem__(self): | |
394 | """""" | |
395 | pass | |
396 | ||
397 | def __str__(self): | |
398 | """""" | |
399 | pass | |
400 | ||
401 | def asTuple(self): | |
402 | """""" | |
403 | pass | |
404 | ||
405 | ||
406 | class Size: | |
407 | """""" | |
408 | ||
409 | def GetHeight(self): | |
410 | """""" | |
411 | pass | |
412 | ||
413 | def GetWidth(self): | |
414 | """""" | |
415 | pass | |
416 | ||
417 | def GetX(self): | |
418 | """""" | |
419 | pass | |
420 | ||
421 | def GetY(self): | |
422 | """""" | |
423 | pass | |
424 | ||
425 | def Set(self): | |
426 | """""" | |
427 | pass | |
428 | ||
429 | def SetHeight(self): | |
430 | """""" | |
431 | pass | |
432 | ||
433 | def SetWidth(self): | |
434 | """""" | |
435 | pass | |
436 | ||
437 | def __del__(self): | |
438 | """""" | |
439 | pass | |
440 | ||
441 | def __eq__(self): | |
442 | """""" | |
443 | pass | |
444 | ||
445 | def __getattr__(self): | |
446 | """""" | |
447 | pass | |
448 | ||
449 | def __getitem__(self): | |
450 | """""" | |
451 | pass | |
452 | ||
453 | def __init__(self): | |
454 | """""" | |
455 | pass | |
456 | ||
457 | def __len__(self): | |
458 | """""" | |
459 | pass | |
460 | ||
461 | def __ne__(self): | |
462 | """""" | |
463 | pass | |
464 | ||
465 | def __nonzero__(self): | |
466 | """""" | |
467 | pass | |
468 | ||
469 | def __setattr__(self): | |
470 | """""" | |
471 | pass | |
472 | ||
473 | def __setitem__(self): | |
474 | """""" | |
475 | pass | |
476 | ||
477 | def __str__(self): | |
478 | """""" | |
479 | pass | |
480 | ||
481 | def asTuple(self): | |
482 | """""" | |
483 | pass | |
484 | ||
485 |