]> git.saurik.com Git - wxWidgets.git/blob - wxPython/wx/py/wxd/ClipDragDrop.py
It *does* work now
[wxWidgets.git] / wxPython / wx / py / wxd / ClipDragDrop.py
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 import Parameters as wx
17
18
19 class Clipboard(Object):
20 """"""
21
22 def AddData(self):
23 """"""
24 pass
25
26 def Clear(self):
27 """"""
28 pass
29
30 def Close(self):
31 """"""
32 pass
33
34 def Flush(self):
35 """"""
36 pass
37
38 def GetData(self):
39 """"""
40 pass
41
42 def IsOpened(self):
43 """"""
44 pass
45
46 def IsSupported(self):
47 """"""
48 pass
49
50 def Open(self):
51 """"""
52 pass
53
54 def SetData(self):
55 """"""
56 pass
57
58 def UsePrimarySelection(self):
59 """"""
60 pass
61
62 def __init__(self):
63 """"""
64 pass
65
66
67 class DataFormat:
68 """"""
69
70 def GetId(self):
71 """"""
72 pass
73
74 def GetType(self):
75 """"""
76 pass
77
78 def SetId(self):
79 """"""
80 pass
81
82 def SetType(self):
83 """"""
84 pass
85
86 def __del__(self):
87 """"""
88 pass
89
90 def __init__(self):
91 """"""
92 pass
93
94
95 class DataObject:
96 """"""
97
98 def GetAllFormats(self):
99 """"""
100 pass
101
102 def GetDataHere(self):
103 """"""
104 pass
105
106 def GetDataSize(self):
107 """"""
108 pass
109
110 def GetFormatCount(self):
111 """"""
112 pass
113
114 def GetPreferredFormat(self):
115 """"""
116 pass
117
118 def IsSupportedFormat(self):
119 """"""
120 pass
121
122 def SetData(self):
123 """"""
124 pass
125
126 def __del__(self):
127 """"""
128 pass
129
130 def __init__(self):
131 """"""
132 pass
133
134
135 class DataObjectComposite(DataObject):
136 """"""
137
138 def Add(self):
139 """"""
140 pass
141
142 def __init__(self):
143 """"""
144 pass
145
146
147 class DataObjectSimple(DataObject):
148 """"""
149
150 def GetFormat(self):
151 """"""
152 pass
153
154 def SetFormat(self):
155 """"""
156 pass
157
158 def __init__(self):
159 """"""
160 pass
161
162
163 class PyDataObjectSimple(DataObjectSimple):
164 """"""
165
166 def __init__(self):
167 """"""
168 pass
169
170 def _setCallbackInfo(self):
171 """"""
172 pass
173
174
175 class BitmapDataObject(DataObjectSimple):
176 """"""
177
178 def GetBitmap(self):
179 """"""
180 pass
181
182 def SetBitmap(self):
183 """"""
184 pass
185
186 def __init__(self):
187 """"""
188 pass
189
190
191 class PyBitmapDataObject(BitmapDataObject):
192 """"""
193
194 def __init__(self):
195 """"""
196 pass
197
198 def _setCallbackInfo(self):
199 """"""
200 pass
201
202
203 class CustomDataObject(DataObjectSimple):
204 """"""
205
206 def GetData(self):
207 """"""
208 pass
209
210 def GetSize(self):
211 """"""
212 pass
213
214 def SetData(self):
215 """"""
216 pass
217
218 def TakeData(self):
219 """"""
220 pass
221
222 def __init__(self):
223 """"""
224 pass
225
226
227 class DragImage(Object):
228 """"""
229
230 def BeginDrag(self):
231 """"""
232 pass
233
234 def BeginDrag2(self):
235 """"""
236 pass
237
238 def EndDrag(self):
239 """"""
240 pass
241
242 def GetImageRect(self):
243 """"""
244 pass
245
246 def Hide(self):
247 """"""
248 pass
249
250 def Move(self):
251 """"""
252 pass
253
254 def RedrawImage(self):
255 """"""
256 pass
257
258 def SetBackingBitmap(self):
259 """"""
260 pass
261
262 def Show(self):
263 """"""
264 pass
265
266 def __del__(self):
267 """"""
268 pass
269
270 def __init__(self):
271 """"""
272 pass
273
274
275 class DropSource:
276 """"""
277
278 def DoDragDrop(self):
279 """"""
280 pass
281
282 def GetDataObject(self):
283 """"""
284 pass
285
286 def SetCursor(self):
287 """"""
288 pass
289
290 def SetData(self):
291 """"""
292 pass
293
294 def __del__(self):
295 """"""
296 pass
297
298 def __init__(self):
299 """"""
300 pass
301
302 def _setCallbackInfo(self):
303 """"""
304 pass
305
306 def base_GiveFeedback(self):
307 """"""
308 pass
309
310
311 class DropTarget:
312 """"""
313
314 def __init__(self):
315 """"""
316 pass
317
318
319 class PyDropTarget(DropTarget):
320 """"""
321
322 def GetData(self):
323 """"""
324 pass
325
326 def GetDataObject(self):
327 """"""
328 pass
329
330 def SetDataObject(self):
331 """"""
332 pass
333
334 def __del__(self):
335 """"""
336 pass
337
338 def __init__(self):
339 """"""
340 pass
341
342 def _setCallbackInfo(self):
343 """"""
344 pass
345
346 def base_OnDragOver(self):
347 """"""
348 pass
349
350 def base_OnDrop(self):
351 """"""
352 pass
353
354 def base_OnEnter(self):
355 """"""
356 pass
357
358 def base_OnLeave(self):
359 """"""
360 pass
361
362
363 class FileDataObject(DataObjectSimple):
364 """"""
365
366 def GetFilenames(self):
367 """"""
368 pass
369
370 def __init__(self):
371 """"""
372 pass
373
374
375 class FileDropTarget(PyDropTarget):
376 """"""
377
378 def __init__(self):
379 """"""
380 pass
381
382 def _setCallbackInfo(self):
383 """"""
384 pass
385
386 def base_OnData(self):
387 """"""
388 pass
389
390 def base_OnDragOver(self):
391 """"""
392 pass
393
394 def base_OnDrop(self):
395 """"""
396 pass
397
398 def base_OnEnter(self):
399 """"""
400 pass
401
402 def base_OnLeave(self):
403 """"""
404 pass
405
406
407 class TextDataObject(DataObjectSimple):
408 """"""
409
410 def GetText(self):
411 """"""
412 pass
413
414 def GetTextLength(self):
415 """"""
416 pass
417
418 def SetText(self):
419 """"""
420 pass
421
422 def __init__(self):
423 """"""
424 pass
425
426
427 class PyTextDataObject(TextDataObject):
428 """"""
429
430 def __init__(self):
431 """"""
432 pass
433
434 def _setCallbackInfo(self):
435 """"""
436 pass
437
438
439 class TextDropTarget(PyDropTarget):
440 """"""
441
442 def __init__(self):
443 """"""
444 pass
445
446 def _setCallbackInfo(self):
447 """"""
448 pass
449
450 def base_OnData(self):
451 """"""
452 pass
453
454 def base_OnDragOver(self):
455 """"""
456 pass
457
458 def base_OnDrop(self):
459 """"""
460 pass
461
462 def base_OnEnter(self):
463 """"""
464 pass
465
466 def base_OnLeave(self):
467 """"""
468 pass
469
470
471 class URLDataObject(DataObjectComposite):
472 """"""
473
474 def GetURL(self):
475 """"""
476 pass
477
478 def SetURL(self):
479 """"""
480 pass
481
482 def __init__(self):
483 """"""
484 pass
485