]>
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 ConfigBase: | |
19 | """""" | |
20 | ||
21 | def DeleteAll(self): | |
22 | """""" | |
23 | pass | |
24 | ||
25 | def DeleteEntry(self): | |
26 | """""" | |
27 | pass | |
28 | ||
29 | def DeleteGroup(self): | |
30 | """""" | |
31 | pass | |
32 | ||
33 | def Exists(self): | |
34 | """""" | |
35 | pass | |
36 | ||
37 | def ExpandEnvVars(self): | |
38 | """""" | |
39 | pass | |
40 | ||
41 | def Flush(self): | |
42 | """""" | |
43 | pass | |
44 | ||
45 | def GetAppName(self): | |
46 | """""" | |
47 | pass | |
48 | ||
49 | def GetEntryType(self): | |
50 | """""" | |
51 | pass | |
52 | ||
53 | def GetFirstEntry(self): | |
54 | """""" | |
55 | pass | |
56 | ||
57 | def GetFirstGroup(self): | |
58 | """""" | |
59 | pass | |
60 | ||
61 | def GetNextEntry(self): | |
62 | """""" | |
63 | pass | |
64 | ||
65 | def GetNextGroup(self): | |
66 | """""" | |
67 | pass | |
68 | ||
69 | def GetNumberOfEntries(self): | |
70 | """""" | |
71 | pass | |
72 | ||
73 | def GetNumberOfGroups(self): | |
74 | """""" | |
75 | pass | |
76 | ||
77 | def GetPath(self): | |
78 | """""" | |
79 | pass | |
80 | ||
81 | def GetStyle(self): | |
82 | """""" | |
83 | pass | |
84 | ||
85 | def GetVendorName(self): | |
86 | """""" | |
87 | pass | |
88 | ||
89 | def HasEntry(self): | |
90 | """""" | |
91 | pass | |
92 | ||
93 | def HasGroup(self): | |
94 | """""" | |
95 | pass | |
96 | ||
97 | def IsExpandingEnvVars(self): | |
98 | """""" | |
99 | pass | |
100 | ||
101 | def IsRecordingDefaults(self): | |
102 | """""" | |
103 | pass | |
104 | ||
105 | def Read(self): | |
106 | """""" | |
107 | pass | |
108 | ||
109 | def ReadBool(self): | |
110 | """""" | |
111 | pass | |
112 | ||
113 | def ReadFloat(self): | |
114 | """""" | |
115 | pass | |
116 | ||
117 | def ReadInt(self): | |
118 | """""" | |
119 | pass | |
120 | ||
121 | def RenameEntry(self): | |
122 | """""" | |
123 | pass | |
124 | ||
125 | def RenameGroup(self): | |
126 | """""" | |
127 | pass | |
128 | ||
129 | def SetAppName(self): | |
130 | """""" | |
131 | pass | |
132 | ||
133 | def SetExpandEnvVars(self): | |
134 | """""" | |
135 | pass | |
136 | ||
137 | def SetPath(self): | |
138 | """""" | |
139 | pass | |
140 | ||
141 | def SetRecordDefaults(self): | |
142 | """""" | |
143 | pass | |
144 | ||
145 | def SetStyle(self): | |
146 | """""" | |
147 | pass | |
148 | ||
149 | def SetVendorName(self): | |
150 | """""" | |
151 | pass | |
152 | ||
153 | def Write(self): | |
154 | """""" | |
155 | pass | |
156 | ||
157 | def WriteBool(self): | |
158 | """""" | |
159 | pass | |
160 | ||
161 | def WriteFloat(self): | |
162 | """""" | |
163 | pass | |
164 | ||
165 | def WriteInt(self): | |
166 | """""" | |
167 | pass | |
168 | ||
169 | def __del__(self): | |
170 | """""" | |
171 | pass | |
172 | ||
173 | def __init__(self): | |
174 | """""" | |
175 | pass | |
176 | ||
177 | ||
178 | class Config(ConfigBase): | |
179 | """""" | |
180 | ||
181 | def __del__(self): | |
182 | """""" | |
183 | pass | |
184 | ||
185 | def __init__(self): | |
186 | """""" | |
187 | pass | |
188 | ||
189 | ||
190 | class FileConfig(ConfigBase): | |
191 | """""" | |
192 | ||
193 | def __del__(self): | |
194 | """""" | |
195 | pass | |
196 | ||
197 | def __init__(self): | |
198 | """""" | |
199 | pass |