]> git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/src/gtk/controls.py
IRIX compilation fixes
[wxWidgets.git] / utils / wxPython / src / gtk / controls.py
1 # This file was created automatically by SWIG.
2 import controlsc
3
4 from misc import *
5
6 from windows import *
7
8 from gdi import *
9
10 from clip_dnd import *
11
12 from events import *
13 import wx
14 class wxControlPtr(wxWindowPtr):
15 def __init__(self,this):
16 self.this = this
17 self.thisown = 0
18 def GetLabel(self, *_args, **_kwargs):
19 val = apply(controlsc.wxControl_GetLabel,(self,) + _args, _kwargs)
20 return val
21 def SetLabel(self, *_args, **_kwargs):
22 val = apply(controlsc.wxControl_SetLabel,(self,) + _args, _kwargs)
23 return val
24 def __repr__(self):
25 return "<C wxControl instance at %s>" % (self.this,)
26 class wxControl(wxControlPtr):
27 def __init__(self,this):
28 self.this = this
29
30
31
32
33 class wxButtonPtr(wxControlPtr):
34 def __init__(self,this):
35 self.this = this
36 self.thisown = 0
37 def SetDefault(self, *_args, **_kwargs):
38 val = apply(controlsc.wxButton_SetDefault,(self,) + _args, _kwargs)
39 return val
40 def __repr__(self):
41 return "<C wxButton instance at %s>" % (self.this,)
42 class wxButton(wxButtonPtr):
43 def __init__(self,*_args,**_kwargs):
44 self.this = apply(controlsc.new_wxButton,_args,_kwargs)
45 self.thisown = 1
46 wx._StdWindowCallbacks(self)
47
48
49
50
51 class wxBitmapButtonPtr(wxButtonPtr):
52 def __init__(self,this):
53 self.this = this
54 self.thisown = 0
55 def GetBitmapLabel(self, *_args, **_kwargs):
56 val = apply(controlsc.wxBitmapButton_GetBitmapLabel,(self,) + _args, _kwargs)
57 if val: val = wxBitmapPtr(val)
58 return val
59 def GetBitmapDisabled(self, *_args, **_kwargs):
60 val = apply(controlsc.wxBitmapButton_GetBitmapDisabled,(self,) + _args, _kwargs)
61 if val: val = wxBitmapPtr(val)
62 return val
63 def GetBitmapFocus(self, *_args, **_kwargs):
64 val = apply(controlsc.wxBitmapButton_GetBitmapFocus,(self,) + _args, _kwargs)
65 if val: val = wxBitmapPtr(val)
66 return val
67 def GetBitmapSelected(self, *_args, **_kwargs):
68 val = apply(controlsc.wxBitmapButton_GetBitmapSelected,(self,) + _args, _kwargs)
69 if val: val = wxBitmapPtr(val)
70 return val
71 def SetBitmapDisabled(self, *_args, **_kwargs):
72 val = apply(controlsc.wxBitmapButton_SetBitmapDisabled,(self,) + _args, _kwargs)
73 return val
74 def SetBitmapFocus(self, *_args, **_kwargs):
75 val = apply(controlsc.wxBitmapButton_SetBitmapFocus,(self,) + _args, _kwargs)
76 return val
77 def SetBitmapSelected(self, *_args, **_kwargs):
78 val = apply(controlsc.wxBitmapButton_SetBitmapSelected,(self,) + _args, _kwargs)
79 return val
80 def SetBitmapLabel(self, *_args, **_kwargs):
81 val = apply(controlsc.wxBitmapButton_SetBitmapLabel,(self,) + _args, _kwargs)
82 return val
83 def __repr__(self):
84 return "<C wxBitmapButton instance at %s>" % (self.this,)
85 class wxBitmapButton(wxBitmapButtonPtr):
86 def __init__(self,*_args,**_kwargs):
87 self.this = apply(controlsc.new_wxBitmapButton,_args,_kwargs)
88 self.thisown = 1
89 wx._StdWindowCallbacks(self)
90
91
92
93
94 class wxCheckBoxPtr(wxControlPtr):
95 def __init__(self,this):
96 self.this = this
97 self.thisown = 0
98 def GetValue(self, *_args, **_kwargs):
99 val = apply(controlsc.wxCheckBox_GetValue,(self,) + _args, _kwargs)
100 return val
101 def SetValue(self, *_args, **_kwargs):
102 val = apply(controlsc.wxCheckBox_SetValue,(self,) + _args, _kwargs)
103 return val
104 def __repr__(self):
105 return "<C wxCheckBox instance at %s>" % (self.this,)
106 class wxCheckBox(wxCheckBoxPtr):
107 def __init__(self,*_args,**_kwargs):
108 self.this = apply(controlsc.new_wxCheckBox,_args,_kwargs)
109 self.thisown = 1
110 wx._StdWindowCallbacks(self)
111
112
113
114
115 class wxChoicePtr(wxControlPtr):
116 def __init__(self,this):
117 self.this = this
118 self.thisown = 0
119 def Append(self, *_args, **_kwargs):
120 val = apply(controlsc.wxChoice_Append,(self,) + _args, _kwargs)
121 return val
122 def Clear(self, *_args, **_kwargs):
123 val = apply(controlsc.wxChoice_Clear,(self,) + _args, _kwargs)
124 return val
125 def FindString(self, *_args, **_kwargs):
126 val = apply(controlsc.wxChoice_FindString,(self,) + _args, _kwargs)
127 return val
128 def GetColumns(self, *_args, **_kwargs):
129 val = apply(controlsc.wxChoice_GetColumns,(self,) + _args, _kwargs)
130 return val
131 def GetSelection(self, *_args, **_kwargs):
132 val = apply(controlsc.wxChoice_GetSelection,(self,) + _args, _kwargs)
133 return val
134 def GetString(self, *_args, **_kwargs):
135 val = apply(controlsc.wxChoice_GetString,(self,) + _args, _kwargs)
136 return val
137 def GetStringSelection(self, *_args, **_kwargs):
138 val = apply(controlsc.wxChoice_GetStringSelection,(self,) + _args, _kwargs)
139 return val
140 def Number(self, *_args, **_kwargs):
141 val = apply(controlsc.wxChoice_Number,(self,) + _args, _kwargs)
142 return val
143 def SetColumns(self, *_args, **_kwargs):
144 val = apply(controlsc.wxChoice_SetColumns,(self,) + _args, _kwargs)
145 return val
146 def SetSelection(self, *_args, **_kwargs):
147 val = apply(controlsc.wxChoice_SetSelection,(self,) + _args, _kwargs)
148 return val
149 def SetStringSelection(self, *_args, **_kwargs):
150 val = apply(controlsc.wxChoice_SetStringSelection,(self,) + _args, _kwargs)
151 return val
152 def __repr__(self):
153 return "<C wxChoice instance at %s>" % (self.this,)
154 class wxChoice(wxChoicePtr):
155 def __init__(self,*_args,**_kwargs):
156 self.this = apply(controlsc.new_wxChoice,_args,_kwargs)
157 self.thisown = 1
158 wx._StdWindowCallbacks(self)
159
160
161
162
163 class wxComboBoxPtr(wxChoicePtr):
164 def __init__(self,this):
165 self.this = this
166 self.thisown = 0
167 def Append(self, *_args, **_kwargs):
168 val = apply(controlsc.wxComboBox_Append,(self,) + _args, _kwargs)
169 return val
170 def Clear(self, *_args, **_kwargs):
171 val = apply(controlsc.wxComboBox_Clear,(self,) + _args, _kwargs)
172 return val
173 def Copy(self, *_args, **_kwargs):
174 val = apply(controlsc.wxComboBox_Copy,(self,) + _args, _kwargs)
175 return val
176 def Cut(self, *_args, **_kwargs):
177 val = apply(controlsc.wxComboBox_Cut,(self,) + _args, _kwargs)
178 return val
179 def Delete(self, *_args, **_kwargs):
180 val = apply(controlsc.wxComboBox_Delete,(self,) + _args, _kwargs)
181 return val
182 def FindString(self, *_args, **_kwargs):
183 val = apply(controlsc.wxComboBox_FindString,(self,) + _args, _kwargs)
184 return val
185 def GetInsertionPoint(self, *_args, **_kwargs):
186 val = apply(controlsc.wxComboBox_GetInsertionPoint,(self,) + _args, _kwargs)
187 return val
188 def GetLastPosition(self, *_args, **_kwargs):
189 val = apply(controlsc.wxComboBox_GetLastPosition,(self,) + _args, _kwargs)
190 return val
191 def GetSelection(self, *_args, **_kwargs):
192 val = apply(controlsc.wxComboBox_GetSelection,(self,) + _args, _kwargs)
193 return val
194 def GetString(self, *_args, **_kwargs):
195 val = apply(controlsc.wxComboBox_GetString,(self,) + _args, _kwargs)
196 return val
197 def GetStringSelection(self, *_args, **_kwargs):
198 val = apply(controlsc.wxComboBox_GetStringSelection,(self,) + _args, _kwargs)
199 return val
200 def GetValue(self, *_args, **_kwargs):
201 val = apply(controlsc.wxComboBox_GetValue,(self,) + _args, _kwargs)
202 return val
203 def Number(self, *_args, **_kwargs):
204 val = apply(controlsc.wxComboBox_Number,(self,) + _args, _kwargs)
205 return val
206 def Paste(self, *_args, **_kwargs):
207 val = apply(controlsc.wxComboBox_Paste,(self,) + _args, _kwargs)
208 return val
209 def Replace(self, *_args, **_kwargs):
210 val = apply(controlsc.wxComboBox_Replace,(self,) + _args, _kwargs)
211 return val
212 def Remove(self, *_args, **_kwargs):
213 val = apply(controlsc.wxComboBox_Remove,(self,) + _args, _kwargs)
214 return val
215 def SetInsertionPoint(self, *_args, **_kwargs):
216 val = apply(controlsc.wxComboBox_SetInsertionPoint,(self,) + _args, _kwargs)
217 return val
218 def SetInsertionPointEnd(self, *_args, **_kwargs):
219 val = apply(controlsc.wxComboBox_SetInsertionPointEnd,(self,) + _args, _kwargs)
220 return val
221 def SetSelection(self, *_args, **_kwargs):
222 val = apply(controlsc.wxComboBox_SetSelection,(self,) + _args, _kwargs)
223 return val
224 def SetMark(self, *_args, **_kwargs):
225 val = apply(controlsc.wxComboBox_SetMark,(self,) + _args, _kwargs)
226 return val
227 def SetValue(self, *_args, **_kwargs):
228 val = apply(controlsc.wxComboBox_SetValue,(self,) + _args, _kwargs)
229 return val
230 def __repr__(self):
231 return "<C wxComboBox instance at %s>" % (self.this,)
232 class wxComboBox(wxComboBoxPtr):
233 def __init__(self,*_args,**_kwargs):
234 self.this = apply(controlsc.new_wxComboBox,_args,_kwargs)
235 self.thisown = 1
236 wx._StdWindowCallbacks(self)
237
238
239
240
241 class wxGaugePtr(wxControlPtr):
242 def __init__(self,this):
243 self.this = this
244 self.thisown = 0
245 def GetBezelFace(self, *_args, **_kwargs):
246 val = apply(controlsc.wxGauge_GetBezelFace,(self,) + _args, _kwargs)
247 return val
248 def GetRange(self, *_args, **_kwargs):
249 val = apply(controlsc.wxGauge_GetRange,(self,) + _args, _kwargs)
250 return val
251 def GetShadowWidth(self, *_args, **_kwargs):
252 val = apply(controlsc.wxGauge_GetShadowWidth,(self,) + _args, _kwargs)
253 return val
254 def GetValue(self, *_args, **_kwargs):
255 val = apply(controlsc.wxGauge_GetValue,(self,) + _args, _kwargs)
256 return val
257 def SetBezelFace(self, *_args, **_kwargs):
258 val = apply(controlsc.wxGauge_SetBezelFace,(self,) + _args, _kwargs)
259 return val
260 def SetRange(self, *_args, **_kwargs):
261 val = apply(controlsc.wxGauge_SetRange,(self,) + _args, _kwargs)
262 return val
263 def SetShadowWidth(self, *_args, **_kwargs):
264 val = apply(controlsc.wxGauge_SetShadowWidth,(self,) + _args, _kwargs)
265 return val
266 def SetValue(self, *_args, **_kwargs):
267 val = apply(controlsc.wxGauge_SetValue,(self,) + _args, _kwargs)
268 return val
269 def __repr__(self):
270 return "<C wxGauge instance at %s>" % (self.this,)
271 class wxGauge(wxGaugePtr):
272 def __init__(self,*_args,**_kwargs):
273 self.this = apply(controlsc.new_wxGauge,_args,_kwargs)
274 self.thisown = 1
275 wx._StdWindowCallbacks(self)
276
277
278
279
280 class wxStaticBoxPtr(wxControlPtr):
281 def __init__(self,this):
282 self.this = this
283 self.thisown = 0
284 def __repr__(self):
285 return "<C wxStaticBox instance at %s>" % (self.this,)
286 class wxStaticBox(wxStaticBoxPtr):
287 def __init__(self,*_args,**_kwargs):
288 self.this = apply(controlsc.new_wxStaticBox,_args,_kwargs)
289 self.thisown = 1
290
291
292
293
294 class wxStaticLinePtr(wxControlPtr):
295 def __init__(self,this):
296 self.this = this
297 self.thisown = 0
298 def __repr__(self):
299 return "<C wxStaticLine instance at %s>" % (self.this,)
300 class wxStaticLine(wxStaticLinePtr):
301 def __init__(self,*_args,**_kwargs):
302 self.this = apply(controlsc.new_wxStaticLine,_args,_kwargs)
303 self.thisown = 1
304
305
306
307
308 class wxStaticTextPtr(wxControlPtr):
309 def __init__(self,this):
310 self.this = this
311 self.thisown = 0
312 def GetLabel(self, *_args, **_kwargs):
313 val = apply(controlsc.wxStaticText_GetLabel,(self,) + _args, _kwargs)
314 return val
315 def SetLabel(self, *_args, **_kwargs):
316 val = apply(controlsc.wxStaticText_SetLabel,(self,) + _args, _kwargs)
317 return val
318 def __repr__(self):
319 return "<C wxStaticText instance at %s>" % (self.this,)
320 class wxStaticText(wxStaticTextPtr):
321 def __init__(self,*_args,**_kwargs):
322 self.this = apply(controlsc.new_wxStaticText,_args,_kwargs)
323 self.thisown = 1
324 wx._StdWindowCallbacks(self)
325
326
327
328
329 class wxListBoxPtr(wxControlPtr):
330 def __init__(self,this):
331 self.this = this
332 self.thisown = 0
333 def Append(self, *_args, **_kwargs):
334 val = apply(controlsc.wxListBox_Append,(self,) + _args, _kwargs)
335 return val
336 def Clear(self, *_args, **_kwargs):
337 val = apply(controlsc.wxListBox_Clear,(self,) + _args, _kwargs)
338 return val
339 def Delete(self, *_args, **_kwargs):
340 val = apply(controlsc.wxListBox_Delete,(self,) + _args, _kwargs)
341 return val
342 def Deselect(self, *_args, **_kwargs):
343 val = apply(controlsc.wxListBox_Deselect,(self,) + _args, _kwargs)
344 return val
345 def FindString(self, *_args, **_kwargs):
346 val = apply(controlsc.wxListBox_FindString,(self,) + _args, _kwargs)
347 return val
348 def GetSelection(self, *_args, **_kwargs):
349 val = apply(controlsc.wxListBox_GetSelection,(self,) + _args, _kwargs)
350 return val
351 def GetSelections(self, *_args, **_kwargs):
352 val = apply(controlsc.wxListBox_GetSelections,(self,) + _args, _kwargs)
353 return val
354 def InsertItems(self, *_args, **_kwargs):
355 val = apply(controlsc.wxListBox_InsertItems,(self,) + _args, _kwargs)
356 return val
357 def GetString(self, *_args, **_kwargs):
358 val = apply(controlsc.wxListBox_GetString,(self,) + _args, _kwargs)
359 return val
360 def GetStringSelection(self, *_args, **_kwargs):
361 val = apply(controlsc.wxListBox_GetStringSelection,(self,) + _args, _kwargs)
362 return val
363 def Number(self, *_args, **_kwargs):
364 val = apply(controlsc.wxListBox_Number,(self,) + _args, _kwargs)
365 return val
366 def Selected(self, *_args, **_kwargs):
367 val = apply(controlsc.wxListBox_Selected,(self,) + _args, _kwargs)
368 return val
369 def Set(self, *_args, **_kwargs):
370 val = apply(controlsc.wxListBox_Set,(self,) + _args, _kwargs)
371 return val
372 def SetFirstItem(self, *_args, **_kwargs):
373 val = apply(controlsc.wxListBox_SetFirstItem,(self,) + _args, _kwargs)
374 return val
375 def SetFirstItemStr(self, *_args, **_kwargs):
376 val = apply(controlsc.wxListBox_SetFirstItemStr,(self,) + _args, _kwargs)
377 return val
378 def SetSelection(self, *_args, **_kwargs):
379 val = apply(controlsc.wxListBox_SetSelection,(self,) + _args, _kwargs)
380 return val
381 def SetString(self, *_args, **_kwargs):
382 val = apply(controlsc.wxListBox_SetString,(self,) + _args, _kwargs)
383 return val
384 def SetStringSelection(self, *_args, **_kwargs):
385 val = apply(controlsc.wxListBox_SetStringSelection,(self,) + _args, _kwargs)
386 return val
387 def __repr__(self):
388 return "<C wxListBox instance at %s>" % (self.this,)
389 class wxListBox(wxListBoxPtr):
390 def __init__(self,*_args,**_kwargs):
391 self.this = apply(controlsc.new_wxListBox,_args,_kwargs)
392 self.thisown = 1
393 wx._StdWindowCallbacks(self)
394
395
396
397
398 class wxCheckListBoxPtr(wxListBoxPtr):
399 def __init__(self,this):
400 self.this = this
401 self.thisown = 0
402 def IsChecked(self, *_args, **_kwargs):
403 val = apply(controlsc.wxCheckListBox_IsChecked,(self,) + _args, _kwargs)
404 return val
405 def Check(self, *_args, **_kwargs):
406 val = apply(controlsc.wxCheckListBox_Check,(self,) + _args, _kwargs)
407 return val
408 def GetItemHeight(self, *_args, **_kwargs):
409 val = apply(controlsc.wxCheckListBox_GetItemHeight,(self,) + _args, _kwargs)
410 return val
411 def __repr__(self):
412 return "<C wxCheckListBox instance at %s>" % (self.this,)
413 class wxCheckListBox(wxCheckListBoxPtr):
414 def __init__(self,*_args,**_kwargs):
415 self.this = apply(controlsc.new_wxCheckListBox,_args,_kwargs)
416 self.thisown = 1
417 wx._StdWindowCallbacks(self)
418
419
420
421
422 class wxTextCtrlPtr(wxControlPtr):
423 def __init__(self,this):
424 self.this = this
425 self.thisown = 0
426 def Clear(self, *_args, **_kwargs):
427 val = apply(controlsc.wxTextCtrl_Clear,(self,) + _args, _kwargs)
428 return val
429 def Copy(self, *_args, **_kwargs):
430 val = apply(controlsc.wxTextCtrl_Copy,(self,) + _args, _kwargs)
431 return val
432 def Cut(self, *_args, **_kwargs):
433 val = apply(controlsc.wxTextCtrl_Cut,(self,) + _args, _kwargs)
434 return val
435 def DiscardEdits(self, *_args, **_kwargs):
436 val = apply(controlsc.wxTextCtrl_DiscardEdits,(self,) + _args, _kwargs)
437 return val
438 def GetInsertionPoint(self, *_args, **_kwargs):
439 val = apply(controlsc.wxTextCtrl_GetInsertionPoint,(self,) + _args, _kwargs)
440 return val
441 def GetLastPosition(self, *_args, **_kwargs):
442 val = apply(controlsc.wxTextCtrl_GetLastPosition,(self,) + _args, _kwargs)
443 return val
444 def GetLineLength(self, *_args, **_kwargs):
445 val = apply(controlsc.wxTextCtrl_GetLineLength,(self,) + _args, _kwargs)
446 return val
447 def GetLineText(self, *_args, **_kwargs):
448 val = apply(controlsc.wxTextCtrl_GetLineText,(self,) + _args, _kwargs)
449 return val
450 def GetNumberOfLines(self, *_args, **_kwargs):
451 val = apply(controlsc.wxTextCtrl_GetNumberOfLines,(self,) + _args, _kwargs)
452 return val
453 def GetValue(self, *_args, **_kwargs):
454 val = apply(controlsc.wxTextCtrl_GetValue,(self,) + _args, _kwargs)
455 return val
456 def IsModified(self, *_args, **_kwargs):
457 val = apply(controlsc.wxTextCtrl_IsModified,(self,) + _args, _kwargs)
458 return val
459 def LoadFile(self, *_args, **_kwargs):
460 val = apply(controlsc.wxTextCtrl_LoadFile,(self,) + _args, _kwargs)
461 return val
462 def Paste(self, *_args, **_kwargs):
463 val = apply(controlsc.wxTextCtrl_Paste,(self,) + _args, _kwargs)
464 return val
465 def PositionToXY(self, *_args, **_kwargs):
466 val = apply(controlsc.wxTextCtrl_PositionToXY,(self,) + _args, _kwargs)
467 return val
468 def Remove(self, *_args, **_kwargs):
469 val = apply(controlsc.wxTextCtrl_Remove,(self,) + _args, _kwargs)
470 return val
471 def Replace(self, *_args, **_kwargs):
472 val = apply(controlsc.wxTextCtrl_Replace,(self,) + _args, _kwargs)
473 return val
474 def SaveFile(self, *_args, **_kwargs):
475 val = apply(controlsc.wxTextCtrl_SaveFile,(self,) + _args, _kwargs)
476 return val
477 def SetEditable(self, *_args, **_kwargs):
478 val = apply(controlsc.wxTextCtrl_SetEditable,(self,) + _args, _kwargs)
479 return val
480 def SetInsertionPoint(self, *_args, **_kwargs):
481 val = apply(controlsc.wxTextCtrl_SetInsertionPoint,(self,) + _args, _kwargs)
482 return val
483 def SetInsertionPointEnd(self, *_args, **_kwargs):
484 val = apply(controlsc.wxTextCtrl_SetInsertionPointEnd,(self,) + _args, _kwargs)
485 return val
486 def SetSelection(self, *_args, **_kwargs):
487 val = apply(controlsc.wxTextCtrl_SetSelection,(self,) + _args, _kwargs)
488 return val
489 def SetValue(self, *_args, **_kwargs):
490 val = apply(controlsc.wxTextCtrl_SetValue,(self,) + _args, _kwargs)
491 return val
492 def ShowPosition(self, *_args, **_kwargs):
493 val = apply(controlsc.wxTextCtrl_ShowPosition,(self,) + _args, _kwargs)
494 return val
495 def WriteText(self, *_args, **_kwargs):
496 val = apply(controlsc.wxTextCtrl_WriteText,(self,) + _args, _kwargs)
497 return val
498 def AppendText(self, *_args, **_kwargs):
499 val = apply(controlsc.wxTextCtrl_AppendText,(self,) + _args, _kwargs)
500 return val
501 def XYToPosition(self, *_args, **_kwargs):
502 val = apply(controlsc.wxTextCtrl_XYToPosition,(self,) + _args, _kwargs)
503 return val
504 def CanCopy(self, *_args, **_kwargs):
505 val = apply(controlsc.wxTextCtrl_CanCopy,(self,) + _args, _kwargs)
506 return val
507 def CanCut(self, *_args, **_kwargs):
508 val = apply(controlsc.wxTextCtrl_CanCut,(self,) + _args, _kwargs)
509 return val
510 def CanPaste(self, *_args, **_kwargs):
511 val = apply(controlsc.wxTextCtrl_CanPaste,(self,) + _args, _kwargs)
512 return val
513 def CanRedo(self, *_args, **_kwargs):
514 val = apply(controlsc.wxTextCtrl_CanRedo,(self,) + _args, _kwargs)
515 return val
516 def CanUndo(self, *_args, **_kwargs):
517 val = apply(controlsc.wxTextCtrl_CanUndo,(self,) + _args, _kwargs)
518 return val
519 def GetSelection(self, *_args, **_kwargs):
520 val = apply(controlsc.wxTextCtrl_GetSelection,(self,) + _args, _kwargs)
521 return val
522 def IsEditable(self, *_args, **_kwargs):
523 val = apply(controlsc.wxTextCtrl_IsEditable,(self,) + _args, _kwargs)
524 return val
525 def Undo(self, *_args, **_kwargs):
526 val = apply(controlsc.wxTextCtrl_Undo,(self,) + _args, _kwargs)
527 return val
528 def Redo(self, *_args, **_kwargs):
529 val = apply(controlsc.wxTextCtrl_Redo,(self,) + _args, _kwargs)
530 return val
531 def write(self, *_args, **_kwargs):
532 val = apply(controlsc.wxTextCtrl_write,(self,) + _args, _kwargs)
533 return val
534 def __repr__(self):
535 return "<C wxTextCtrl instance at %s>" % (self.this,)
536 class wxTextCtrl(wxTextCtrlPtr):
537 def __init__(self,*_args,**_kwargs):
538 self.this = apply(controlsc.new_wxTextCtrl,_args,_kwargs)
539 self.thisown = 1
540 wx._StdWindowCallbacks(self)
541
542
543
544
545 class wxScrollBarPtr(wxControlPtr):
546 def __init__(self,this):
547 self.this = this
548 self.thisown = 0
549 def GetRange(self, *_args, **_kwargs):
550 val = apply(controlsc.wxScrollBar_GetRange,(self,) + _args, _kwargs)
551 return val
552 def GetPageSize(self, *_args, **_kwargs):
553 val = apply(controlsc.wxScrollBar_GetPageSize,(self,) + _args, _kwargs)
554 return val
555 def GetThumbPosition(self, *_args, **_kwargs):
556 val = apply(controlsc.wxScrollBar_GetThumbPosition,(self,) + _args, _kwargs)
557 return val
558 def GetThumbSize(self, *_args, **_kwargs):
559 val = apply(controlsc.wxScrollBar_GetThumbSize,(self,) + _args, _kwargs)
560 return val
561 def SetThumbPosition(self, *_args, **_kwargs):
562 val = apply(controlsc.wxScrollBar_SetThumbPosition,(self,) + _args, _kwargs)
563 return val
564 def SetScrollbar(self, *_args, **_kwargs):
565 val = apply(controlsc.wxScrollBar_SetScrollbar,(self,) + _args, _kwargs)
566 return val
567 def __repr__(self):
568 return "<C wxScrollBar instance at %s>" % (self.this,)
569 class wxScrollBar(wxScrollBarPtr):
570 def __init__(self,*_args,**_kwargs):
571 self.this = apply(controlsc.new_wxScrollBar,_args,_kwargs)
572 self.thisown = 1
573 wx._StdWindowCallbacks(self)
574
575
576
577
578 class wxSpinButtonPtr(wxControlPtr):
579 def __init__(self,this):
580 self.this = this
581 self.thisown = 0
582 def GetMax(self, *_args, **_kwargs):
583 val = apply(controlsc.wxSpinButton_GetMax,(self,) + _args, _kwargs)
584 return val
585 def GetMin(self, *_args, **_kwargs):
586 val = apply(controlsc.wxSpinButton_GetMin,(self,) + _args, _kwargs)
587 return val
588 def GetValue(self, *_args, **_kwargs):
589 val = apply(controlsc.wxSpinButton_GetValue,(self,) + _args, _kwargs)
590 return val
591 def SetRange(self, *_args, **_kwargs):
592 val = apply(controlsc.wxSpinButton_SetRange,(self,) + _args, _kwargs)
593 return val
594 def SetValue(self, *_args, **_kwargs):
595 val = apply(controlsc.wxSpinButton_SetValue,(self,) + _args, _kwargs)
596 return val
597 def __repr__(self):
598 return "<C wxSpinButton instance at %s>" % (self.this,)
599 class wxSpinButton(wxSpinButtonPtr):
600 def __init__(self,*_args,**_kwargs):
601 self.this = apply(controlsc.new_wxSpinButton,_args,_kwargs)
602 self.thisown = 1
603
604
605
606
607 class wxStaticBitmapPtr(wxControlPtr):
608 def __init__(self,this):
609 self.this = this
610 self.thisown = 0
611 def GetBitmap(self, *_args, **_kwargs):
612 val = apply(controlsc.wxStaticBitmap_GetBitmap,(self,) + _args, _kwargs)
613 if val: val = wxBitmapPtr(val)
614 return val
615 def SetBitmap(self, *_args, **_kwargs):
616 val = apply(controlsc.wxStaticBitmap_SetBitmap,(self,) + _args, _kwargs)
617 return val
618 def SetIcon(self, *_args, **_kwargs):
619 val = apply(controlsc.wxStaticBitmap_SetIcon,(self,) + _args, _kwargs)
620 return val
621 def __repr__(self):
622 return "<C wxStaticBitmap instance at %s>" % (self.this,)
623 class wxStaticBitmap(wxStaticBitmapPtr):
624 def __init__(self,*_args,**_kwargs):
625 self.this = apply(controlsc.new_wxStaticBitmap,_args,_kwargs)
626 self.thisown = 1
627 wx._StdWindowCallbacks(self)
628
629
630
631
632 class wxRadioBoxPtr(wxControlPtr):
633 def __init__(self,this):
634 self.this = this
635 self.thisown = 0
636 def Enable(self, *_args, **_kwargs):
637 val = apply(controlsc.wxRadioBox_Enable,(self,) + _args, _kwargs)
638 return val
639 def EnableItem(self, *_args, **_kwargs):
640 val = apply(controlsc.wxRadioBox_EnableItem,(self,) + _args, _kwargs)
641 return val
642 def FindString(self, *_args, **_kwargs):
643 val = apply(controlsc.wxRadioBox_FindString,(self,) + _args, _kwargs)
644 return val
645 def GetItemLabel(self, *_args, **_kwargs):
646 val = apply(controlsc.wxRadioBox_GetItemLabel,(self,) + _args, _kwargs)
647 return val
648 def GetSelection(self, *_args, **_kwargs):
649 val = apply(controlsc.wxRadioBox_GetSelection,(self,) + _args, _kwargs)
650 return val
651 def GetString(self, *_args, **_kwargs):
652 val = apply(controlsc.wxRadioBox_GetString,(self,) + _args, _kwargs)
653 return val
654 def GetStringSelection(self, *_args, **_kwargs):
655 val = apply(controlsc.wxRadioBox_GetStringSelection,(self,) + _args, _kwargs)
656 return val
657 def Number(self, *_args, **_kwargs):
658 val = apply(controlsc.wxRadioBox_Number,(self,) + _args, _kwargs)
659 return val
660 def SetItemLabel(self, *_args, **_kwargs):
661 val = apply(controlsc.wxRadioBox_SetItemLabel,(self,) + _args, _kwargs)
662 return val
663 def SetSelection(self, *_args, **_kwargs):
664 val = apply(controlsc.wxRadioBox_SetSelection,(self,) + _args, _kwargs)
665 return val
666 def SetStringSelection(self, *_args, **_kwargs):
667 val = apply(controlsc.wxRadioBox_SetStringSelection,(self,) + _args, _kwargs)
668 return val
669 def Show(self, *_args, **_kwargs):
670 val = apply(controlsc.wxRadioBox_Show,(self,) + _args, _kwargs)
671 return val
672 def ShowItem(self, *_args, **_kwargs):
673 val = apply(controlsc.wxRadioBox_ShowItem,(self,) + _args, _kwargs)
674 return val
675 def __repr__(self):
676 return "<C wxRadioBox instance at %s>" % (self.this,)
677 class wxRadioBox(wxRadioBoxPtr):
678 def __init__(self,*_args,**_kwargs):
679 self.this = apply(controlsc.new_wxRadioBox,_args,_kwargs)
680 self.thisown = 1
681 wx._StdWindowCallbacks(self)
682
683
684
685
686 class wxRadioButtonPtr(wxControlPtr):
687 def __init__(self,this):
688 self.this = this
689 self.thisown = 0
690 def GetValue(self, *_args, **_kwargs):
691 val = apply(controlsc.wxRadioButton_GetValue,(self,) + _args, _kwargs)
692 return val
693 def SetValue(self, *_args, **_kwargs):
694 val = apply(controlsc.wxRadioButton_SetValue,(self,) + _args, _kwargs)
695 return val
696 def __repr__(self):
697 return "<C wxRadioButton instance at %s>" % (self.this,)
698 class wxRadioButton(wxRadioButtonPtr):
699 def __init__(self,*_args,**_kwargs):
700 self.this = apply(controlsc.new_wxRadioButton,_args,_kwargs)
701 self.thisown = 1
702 wx._StdWindowCallbacks(self)
703
704
705
706
707 class wxSliderPtr(wxControlPtr):
708 def __init__(self,this):
709 self.this = this
710 self.thisown = 0
711 def ClearSel(self, *_args, **_kwargs):
712 val = apply(controlsc.wxSlider_ClearSel,(self,) + _args, _kwargs)
713 return val
714 def ClearTicks(self, *_args, **_kwargs):
715 val = apply(controlsc.wxSlider_ClearTicks,(self,) + _args, _kwargs)
716 return val
717 def GetLineSize(self, *_args, **_kwargs):
718 val = apply(controlsc.wxSlider_GetLineSize,(self,) + _args, _kwargs)
719 return val
720 def GetMax(self, *_args, **_kwargs):
721 val = apply(controlsc.wxSlider_GetMax,(self,) + _args, _kwargs)
722 return val
723 def GetMin(self, *_args, **_kwargs):
724 val = apply(controlsc.wxSlider_GetMin,(self,) + _args, _kwargs)
725 return val
726 def GetPageSize(self, *_args, **_kwargs):
727 val = apply(controlsc.wxSlider_GetPageSize,(self,) + _args, _kwargs)
728 return val
729 def GetSelEnd(self, *_args, **_kwargs):
730 val = apply(controlsc.wxSlider_GetSelEnd,(self,) + _args, _kwargs)
731 return val
732 def GetSelStart(self, *_args, **_kwargs):
733 val = apply(controlsc.wxSlider_GetSelStart,(self,) + _args, _kwargs)
734 return val
735 def GetThumbLength(self, *_args, **_kwargs):
736 val = apply(controlsc.wxSlider_GetThumbLength,(self,) + _args, _kwargs)
737 return val
738 def GetTickFreq(self, *_args, **_kwargs):
739 val = apply(controlsc.wxSlider_GetTickFreq,(self,) + _args, _kwargs)
740 return val
741 def GetValue(self, *_args, **_kwargs):
742 val = apply(controlsc.wxSlider_GetValue,(self,) + _args, _kwargs)
743 return val
744 def SetRange(self, *_args, **_kwargs):
745 val = apply(controlsc.wxSlider_SetRange,(self,) + _args, _kwargs)
746 return val
747 def SetTickFreq(self, *_args, **_kwargs):
748 val = apply(controlsc.wxSlider_SetTickFreq,(self,) + _args, _kwargs)
749 return val
750 def SetLineSize(self, *_args, **_kwargs):
751 val = apply(controlsc.wxSlider_SetLineSize,(self,) + _args, _kwargs)
752 return val
753 def SetPageSize(self, *_args, **_kwargs):
754 val = apply(controlsc.wxSlider_SetPageSize,(self,) + _args, _kwargs)
755 return val
756 def SetSelection(self, *_args, **_kwargs):
757 val = apply(controlsc.wxSlider_SetSelection,(self,) + _args, _kwargs)
758 return val
759 def SetThumbLength(self, *_args, **_kwargs):
760 val = apply(controlsc.wxSlider_SetThumbLength,(self,) + _args, _kwargs)
761 return val
762 def SetTick(self, *_args, **_kwargs):
763 val = apply(controlsc.wxSlider_SetTick,(self,) + _args, _kwargs)
764 return val
765 def SetValue(self, *_args, **_kwargs):
766 val = apply(controlsc.wxSlider_SetValue,(self,) + _args, _kwargs)
767 return val
768 def __repr__(self):
769 return "<C wxSlider instance at %s>" % (self.this,)
770 class wxSlider(wxSliderPtr):
771 def __init__(self,*_args,**_kwargs):
772 self.this = apply(controlsc.new_wxSlider,_args,_kwargs)
773 self.thisown = 1
774 wx._StdWindowCallbacks(self)
775
776
777
778
779
780
781 #-------------- FUNCTION WRAPPERS ------------------
782
783
784
785 #-------------- VARIABLE WRAPPERS ------------------
786
787 cvar = controlsc.cvar
788 wxDefaultValidator = wxValidatorPtr(controlsc.cvar.wxDefaultValidator)