]>
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 Log: | |
19 | """""" | |
20 | ||
21 | def Flush(self): | |
22 | """""" | |
23 | pass | |
24 | ||
25 | def GetVerbose(self): | |
26 | """""" | |
27 | pass | |
28 | ||
29 | def HasPendingMessages(self): | |
30 | """""" | |
31 | pass | |
32 | ||
33 | def TimeStamp(self): | |
34 | """""" | |
35 | pass | |
36 | ||
37 | def __init__(self): | |
38 | """""" | |
39 | pass | |
40 | ||
41 | ||
42 | class PyLog(Log): | |
43 | """""" | |
44 | ||
45 | def Destroy(self): | |
46 | """""" | |
47 | pass | |
48 | ||
49 | def __init__(self): | |
50 | """""" | |
51 | pass | |
52 | ||
53 | def _setCallbackInfo(self): | |
54 | """""" | |
55 | pass | |
56 | ||
57 | ||
58 | class LogChain(Log): | |
59 | """""" | |
60 | ||
61 | def GetOldLog(self): | |
62 | """""" | |
63 | pass | |
64 | ||
65 | def IsPassingMessages(self): | |
66 | """""" | |
67 | pass | |
68 | ||
69 | def PassMessages(self): | |
70 | """""" | |
71 | pass | |
72 | ||
73 | def SetLog(self): | |
74 | """""" | |
75 | pass | |
76 | ||
77 | def __init__(self): | |
78 | """""" | |
79 | pass | |
80 | ||
81 | ||
82 | class LogGui(Log): | |
83 | """""" | |
84 | ||
85 | def __init__(self): | |
86 | """""" | |
87 | pass | |
88 | ||
89 | ||
90 | class LogNull: | |
91 | """""" | |
92 | ||
93 | def __del__(self): | |
94 | """""" | |
95 | pass | |
96 | ||
97 | def __init__(self): | |
98 | """""" | |
99 | pass | |
100 | ||
101 | ||
102 | class LogStderr(Log): | |
103 | """""" | |
104 | ||
105 | def __init__(self): | |
106 | """""" | |
107 | pass | |
108 | ||
109 | ||
110 | class LogTextCtrl(Log): | |
111 | """""" | |
112 | ||
113 | def __init__(self): | |
114 | """""" | |
115 | pass | |
116 | ||
117 | ||
118 | class LogWindow(Log): | |
119 | """""" | |
120 | ||
121 | def GetFrame(self): | |
122 | """""" | |
123 | pass | |
124 | ||
125 | def GetOldLog(self): | |
126 | """""" | |
127 | pass | |
128 | ||
129 | def IsPassingMessages(self): | |
130 | """""" | |
131 | pass | |
132 | ||
133 | def PassMessages(self): | |
134 | """""" | |
135 | pass | |
136 | ||
137 | def Show(self): | |
138 | """""" | |
139 | pass | |
140 | ||
141 | def __init__(self): | |
142 | """""" | |
143 | pass | |
144 | ||
145 |