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