]>
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 | from Controls import Control | |
17 | import Parameters as wx | |
18 | ||
19 | ||
20 | class ToolBarBase(Control): | |
21 | """""" | |
22 | ||
23 | def AddCheckLabelTool(self): | |
24 | """""" | |
25 | pass | |
26 | ||
27 | def AddCheckTool(self): | |
28 | """""" | |
29 | pass | |
30 | ||
31 | def AddControl(self): | |
32 | """""" | |
33 | pass | |
34 | ||
35 | def AddLabelTool(self): | |
36 | """""" | |
37 | pass | |
38 | ||
39 | def AddRadioLabelTool(self): | |
40 | """""" | |
41 | pass | |
42 | ||
43 | def AddRadioTool(self): | |
44 | """""" | |
45 | pass | |
46 | ||
47 | def AddSeparator(self): | |
48 | """""" | |
49 | pass | |
50 | ||
51 | def AddSimpleTool(self): | |
52 | """""" | |
53 | pass | |
54 | ||
55 | def AddTool(self): | |
56 | """""" | |
57 | pass | |
58 | ||
59 | def ClearTools(self): | |
60 | """""" | |
61 | pass | |
62 | ||
63 | def DeleteTool(self): | |
64 | """""" | |
65 | pass | |
66 | ||
67 | def DeleteToolByPos(self): | |
68 | """""" | |
69 | pass | |
70 | ||
71 | def DoAddTool(self): | |
72 | """""" | |
73 | pass | |
74 | ||
75 | def DoInsertTool(self): | |
76 | """""" | |
77 | pass | |
78 | ||
79 | def EnableTool(self): | |
80 | """""" | |
81 | pass | |
82 | ||
83 | def FindControl(self): | |
84 | """""" | |
85 | pass | |
86 | ||
87 | def FindToolForPosition(self): | |
88 | """""" | |
89 | pass | |
90 | ||
91 | def GetMargins(self): | |
92 | """""" | |
93 | pass | |
94 | ||
95 | def GetMaxCols(self): | |
96 | """""" | |
97 | pass | |
98 | ||
99 | def GetMaxRows(self): | |
100 | """""" | |
101 | pass | |
102 | ||
103 | def GetToolBitmapSize(self): | |
104 | """""" | |
105 | pass | |
106 | ||
107 | def GetToolClientData(self): | |
108 | """""" | |
109 | pass | |
110 | ||
111 | def GetToolEnabled(self): | |
112 | """""" | |
113 | pass | |
114 | ||
115 | def GetToolLongHelp(self): | |
116 | """""" | |
117 | pass | |
118 | ||
119 | def GetToolMargins(self): | |
120 | """""" | |
121 | pass | |
122 | ||
123 | def GetToolPacking(self): | |
124 | """""" | |
125 | pass | |
126 | ||
127 | def GetToolSeparation(self): | |
128 | """""" | |
129 | pass | |
130 | ||
131 | def GetToolShortHelp(self): | |
132 | """""" | |
133 | pass | |
134 | ||
135 | def GetToolSize(self): | |
136 | """""" | |
137 | pass | |
138 | ||
139 | def GetToolState(self): | |
140 | """""" | |
141 | pass | |
142 | ||
143 | def InsertControl(self): | |
144 | """""" | |
145 | pass | |
146 | ||
147 | def InsertLabelTool(self): | |
148 | """""" | |
149 | pass | |
150 | ||
151 | def InsertSeparator(self): | |
152 | """""" | |
153 | pass | |
154 | ||
155 | def InsertSimpleTool(self): | |
156 | """""" | |
157 | pass | |
158 | ||
159 | def InsertTool(self): | |
160 | """""" | |
161 | pass | |
162 | ||
163 | def IsVertical(self): | |
164 | """""" | |
165 | pass | |
166 | ||
167 | def Realize(self): | |
168 | """""" | |
169 | pass | |
170 | ||
171 | def RemoveTool(self): | |
172 | """""" | |
173 | pass | |
174 | ||
175 | def SetMargins(self): | |
176 | """""" | |
177 | pass | |
178 | ||
179 | def SetMarginsXY(self): | |
180 | """""" | |
181 | pass | |
182 | ||
183 | def SetMaxRowsCols(self): | |
184 | """""" | |
185 | pass | |
186 | ||
187 | def SetRows(self): | |
188 | """""" | |
189 | pass | |
190 | ||
191 | def SetToggle(self): | |
192 | """""" | |
193 | pass | |
194 | ||
195 | def SetToolBitmapSize(self): | |
196 | """""" | |
197 | pass | |
198 | ||
199 | def SetToolClientData(self): | |
200 | """""" | |
201 | pass | |
202 | ||
203 | def SetToolLongHelp(self): | |
204 | """""" | |
205 | pass | |
206 | ||
207 | def SetToolPacking(self): | |
208 | """""" | |
209 | pass | |
210 | ||
211 | def SetToolSeparation(self): | |
212 | """""" | |
213 | pass | |
214 | ||
215 | def SetToolShortHelp(self): | |
216 | """""" | |
217 | pass | |
218 | ||
219 | def ToggleTool(self): | |
220 | """""" | |
221 | pass | |
222 | ||
223 | def __init__(self): | |
224 | """""" | |
225 | pass | |
226 | ||
227 | ||
228 | class ToolBar(ToolBarBase): | |
229 | """""" | |
230 | ||
231 | def Create(self): | |
232 | """""" | |
233 | pass | |
234 | ||
235 | def FindToolForPosition(self): | |
236 | """""" | |
237 | pass | |
238 | ||
239 | def __init__(self): | |
240 | """""" | |
241 | pass | |
242 | ||
243 | ||
244 | class ToolBarSimple(ToolBarBase): | |
245 | """""" | |
246 | ||
247 | def Create(self): | |
248 | """""" | |
249 | pass | |
250 | ||
251 | def FindToolForPosition(self): | |
252 | """""" | |
253 | pass | |
254 | ||
255 | def __init__(self): | |
256 | """""" | |
257 | pass | |
258 | ||
259 | ||
260 | class ToolBarToolBase(Object): | |
261 | """""" | |
262 | ||
263 | def Attach(self): | |
264 | """""" | |
265 | pass | |
266 | ||
267 | def CanBeToggled(self): | |
268 | """""" | |
269 | pass | |
270 | ||
271 | def Destroy(self): | |
272 | """""" | |
273 | pass | |
274 | ||
275 | def Detach(self): | |
276 | """""" | |
277 | pass | |
278 | ||
279 | def Enable(self): | |
280 | """""" | |
281 | pass | |
282 | ||
283 | def GetBitmap(self): | |
284 | """""" | |
285 | pass | |
286 | ||
287 | def GetBitmap1(self): | |
288 | """""" | |
289 | pass | |
290 | ||
291 | def GetBitmap2(self): | |
292 | """""" | |
293 | pass | |
294 | ||
295 | def GetClientData(self): | |
296 | """""" | |
297 | pass | |
298 | ||
299 | def GetControl(self): | |
300 | """""" | |
301 | pass | |
302 | ||
303 | def GetDisabledBitmap(self): | |
304 | """""" | |
305 | pass | |
306 | ||
307 | def GetId(self): | |
308 | """""" | |
309 | pass | |
310 | ||
311 | def GetKind(self): | |
312 | """""" | |
313 | pass | |
314 | ||
315 | def GetLabel(self): | |
316 | """""" | |
317 | pass | |
318 | ||
319 | def GetLongHelp(self): | |
320 | """""" | |
321 | pass | |
322 | ||
323 | def GetNormalBitmap(self): | |
324 | """""" | |
325 | pass | |
326 | ||
327 | def GetShortHelp(self): | |
328 | """""" | |
329 | pass | |
330 | ||
331 | def GetStyle(self): | |
332 | """""" | |
333 | pass | |
334 | ||
335 | def GetToolBar(self): | |
336 | """""" | |
337 | pass | |
338 | ||
339 | def IsButton(self): | |
340 | """""" | |
341 | pass | |
342 | ||
343 | def IsControl(self): | |
344 | """""" | |
345 | pass | |
346 | ||
347 | def IsEnabled(self): | |
348 | """""" | |
349 | pass | |
350 | ||
351 | def IsSeparator(self): | |
352 | """""" | |
353 | pass | |
354 | ||
355 | def IsToggled(self): | |
356 | """""" | |
357 | pass | |
358 | ||
359 | def SetBitmap1(self): | |
360 | """""" | |
361 | pass | |
362 | ||
363 | def SetBitmap2(self): | |
364 | """""" | |
365 | pass | |
366 | ||
367 | def SetClientData(self): | |
368 | """""" | |
369 | pass | |
370 | ||
371 | def SetDisabledBitmap(self): | |
372 | """""" | |
373 | pass | |
374 | ||
375 | def SetLabel(self): | |
376 | """""" | |
377 | pass | |
378 | ||
379 | def SetLongHelp(self): | |
380 | """""" | |
381 | pass | |
382 | ||
383 | def SetNormalBitmap(self): | |
384 | """""" | |
385 | pass | |
386 | ||
387 | def SetShortHelp(self): | |
388 | """""" | |
389 | pass | |
390 | ||
391 | def SetToggle(self): | |
392 | """""" | |
393 | pass | |
394 | ||
395 | def Toggle(self): | |
396 | """""" | |
397 | pass | |
398 | ||
399 | def __init__(self): | |
400 | """""" | |
401 | pass | |
402 | ||
403 |