]>
Commit | Line | Data |
---|---|---|
e6056257 RD |
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 | ||
40699168 RD |
10 | from fonts import * |
11 | ||
e6056257 RD |
12 | from clip_dnd import * |
13 | ||
14 | from events import * | |
15 | import wx | |
16 | class wxControlPtr(wxWindowPtr): | |
17 | def __init__(self,this): | |
18 | self.this = this | |
19 | self.thisown = 0 | |
20 | def Create(self, *_args, **_kwargs): | |
21 | val = apply(controlsc.wxControl_Create,(self,) + _args, _kwargs) | |
22 | return val | |
23 | def Command(self, *_args, **_kwargs): | |
24 | val = apply(controlsc.wxControl_Command,(self,) + _args, _kwargs) | |
25 | return val | |
26 | def GetLabel(self, *_args, **_kwargs): | |
27 | val = apply(controlsc.wxControl_GetLabel,(self,) + _args, _kwargs) | |
28 | return val | |
29 | def SetLabel(self, *_args, **_kwargs): | |
30 | val = apply(controlsc.wxControl_SetLabel,(self,) + _args, _kwargs) | |
31 | return val | |
32 | def __repr__(self): | |
33 | return "<C wxControl instance at %s>" % (self.this,) | |
34 | class wxControl(wxControlPtr): | |
35 | def __init__(self,*_args,**_kwargs): | |
36 | self.this = apply(controlsc.new_wxControl,_args,_kwargs) | |
37 | self.thisown = 1 | |
38 | self._setOORInfo(self) | |
39 | ||
40 | ||
41 | ||
42 | def wxPreControl(*_args,**_kwargs): | |
43 | val = wxControlPtr(apply(controlsc.new_wxPreControl,_args,_kwargs)) | |
44 | val.thisown = 1 | |
45 | val._setOORInfo(val) | |
46 | return val | |
47 | ||
48 | ||
49 | class wxControlWithItemsPtr(wxControlPtr): | |
50 | def __init__(self,this): | |
51 | self.this = this | |
52 | self.thisown = 0 | |
53 | def Delete(self, *_args, **_kwargs): | |
54 | val = apply(controlsc.wxControlWithItems_Delete,(self,) + _args, _kwargs) | |
55 | return val | |
56 | def GetCount(self, *_args, **_kwargs): | |
57 | val = apply(controlsc.wxControlWithItems_GetCount,(self,) + _args, _kwargs) | |
58 | return val | |
59 | def GetString(self, *_args, **_kwargs): | |
60 | val = apply(controlsc.wxControlWithItems_GetString,(self,) + _args, _kwargs) | |
61 | return val | |
62 | def SetString(self, *_args, **_kwargs): | |
63 | val = apply(controlsc.wxControlWithItems_SetString,(self,) + _args, _kwargs) | |
64 | return val | |
65 | def FindString(self, *_args, **_kwargs): | |
66 | val = apply(controlsc.wxControlWithItems_FindString,(self,) + _args, _kwargs) | |
67 | return val | |
68 | def Select(self, *_args, **_kwargs): | |
69 | val = apply(controlsc.wxControlWithItems_Select,(self,) + _args, _kwargs) | |
70 | return val | |
71 | def GetSelection(self, *_args, **_kwargs): | |
72 | val = apply(controlsc.wxControlWithItems_GetSelection,(self,) + _args, _kwargs) | |
73 | return val | |
74 | def GetStringSelection(self, *_args, **_kwargs): | |
75 | val = apply(controlsc.wxControlWithItems_GetStringSelection,(self,) + _args, _kwargs) | |
76 | return val | |
77 | def Append(self, *_args, **_kwargs): | |
78 | val = apply(controlsc.wxControlWithItems_Append,(self,) + _args, _kwargs) | |
79 | return val | |
80 | def GetClientData(self, *_args, **_kwargs): | |
81 | val = apply(controlsc.wxControlWithItems_GetClientData,(self,) + _args, _kwargs) | |
82 | return val | |
83 | def SetClientData(self, *_args, **_kwargs): | |
84 | val = apply(controlsc.wxControlWithItems_SetClientData,(self,) + _args, _kwargs) | |
85 | return val | |
ca31b3da RD |
86 | def AppendItems(self, *_args, **_kwargs): |
87 | val = apply(controlsc.wxControlWithItems_AppendItems,(self,) + _args, _kwargs) | |
88 | return val | |
e6056257 RD |
89 | def __repr__(self): |
90 | return "<C wxControlWithItems instance at %s>" % (self.this,) | |
91 | Number = GetCount | |
92 | class wxControlWithItems(wxControlWithItemsPtr): | |
93 | def __init__(self,this): | |
94 | self.this = this | |
95 | ||
96 | ||
97 | ||
98 | ||
99 | class wxButtonPtr(wxControlPtr): | |
100 | def __init__(self,this): | |
101 | self.this = this | |
102 | self.thisown = 0 | |
103 | def Create(self, *_args, **_kwargs): | |
104 | val = apply(controlsc.wxButton_Create,(self,) + _args, _kwargs) | |
105 | return val | |
106 | def SetDefault(self, *_args, **_kwargs): | |
107 | val = apply(controlsc.wxButton_SetDefault,(self,) + _args, _kwargs) | |
108 | return val | |
109 | def SetBackgroundColour(self, *_args, **_kwargs): | |
110 | val = apply(controlsc.wxButton_SetBackgroundColour,(self,) + _args, _kwargs) | |
111 | return val | |
112 | def SetForegroundColour(self, *_args, **_kwargs): | |
113 | val = apply(controlsc.wxButton_SetForegroundColour,(self,) + _args, _kwargs) | |
114 | return val | |
115 | def __repr__(self): | |
116 | return "<C wxButton instance at %s>" % (self.this,) | |
117 | class wxButton(wxButtonPtr): | |
118 | def __init__(self,*_args,**_kwargs): | |
119 | self.this = apply(controlsc.new_wxButton,_args,_kwargs) | |
120 | self.thisown = 1 | |
121 | self._setOORInfo(self) | |
122 | ||
123 | ||
124 | ||
125 | def wxPreButton(*_args,**_kwargs): | |
126 | val = wxButtonPtr(apply(controlsc.new_wxPreButton,_args,_kwargs)) | |
127 | val.thisown = 1 | |
128 | val._setOORInfo(val) | |
129 | return val | |
130 | ||
131 | ||
132 | class wxBitmapButtonPtr(wxButtonPtr): | |
133 | def __init__(self,this): | |
134 | self.this = this | |
135 | self.thisown = 0 | |
136 | def Create(self, *_args, **_kwargs): | |
137 | val = apply(controlsc.wxBitmapButton_Create,(self,) + _args, _kwargs) | |
138 | return val | |
139 | def GetBitmapLabel(self, *_args, **_kwargs): | |
140 | val = apply(controlsc.wxBitmapButton_GetBitmapLabel,(self,) + _args, _kwargs) | |
00360d46 | 141 | if val: val = wxBitmapPtr(val) ; val.thisown = 1 |
e6056257 RD |
142 | return val |
143 | def GetBitmapDisabled(self, *_args, **_kwargs): | |
144 | val = apply(controlsc.wxBitmapButton_GetBitmapDisabled,(self,) + _args, _kwargs) | |
00360d46 | 145 | if val: val = wxBitmapPtr(val) ; val.thisown = 1 |
e6056257 RD |
146 | return val |
147 | def GetBitmapFocus(self, *_args, **_kwargs): | |
148 | val = apply(controlsc.wxBitmapButton_GetBitmapFocus,(self,) + _args, _kwargs) | |
00360d46 | 149 | if val: val = wxBitmapPtr(val) ; val.thisown = 1 |
e6056257 RD |
150 | return val |
151 | def GetBitmapSelected(self, *_args, **_kwargs): | |
152 | val = apply(controlsc.wxBitmapButton_GetBitmapSelected,(self,) + _args, _kwargs) | |
00360d46 | 153 | if val: val = wxBitmapPtr(val) ; val.thisown = 1 |
e6056257 RD |
154 | return val |
155 | def SetBitmapDisabled(self, *_args, **_kwargs): | |
156 | val = apply(controlsc.wxBitmapButton_SetBitmapDisabled,(self,) + _args, _kwargs) | |
157 | return val | |
158 | def SetBitmapFocus(self, *_args, **_kwargs): | |
159 | val = apply(controlsc.wxBitmapButton_SetBitmapFocus,(self,) + _args, _kwargs) | |
160 | return val | |
161 | def SetBitmapSelected(self, *_args, **_kwargs): | |
162 | val = apply(controlsc.wxBitmapButton_SetBitmapSelected,(self,) + _args, _kwargs) | |
163 | return val | |
164 | def SetBitmapLabel(self, *_args, **_kwargs): | |
165 | val = apply(controlsc.wxBitmapButton_SetBitmapLabel,(self,) + _args, _kwargs) | |
166 | return val | |
167 | def SetMargins(self, *_args, **_kwargs): | |
168 | val = apply(controlsc.wxBitmapButton_SetMargins,(self,) + _args, _kwargs) | |
169 | return val | |
170 | def GetMarginX(self, *_args, **_kwargs): | |
171 | val = apply(controlsc.wxBitmapButton_GetMarginX,(self,) + _args, _kwargs) | |
172 | return val | |
173 | def GetMarginY(self, *_args, **_kwargs): | |
174 | val = apply(controlsc.wxBitmapButton_GetMarginY,(self,) + _args, _kwargs) | |
175 | return val | |
176 | def __repr__(self): | |
177 | return "<C wxBitmapButton instance at %s>" % (self.this,) | |
178 | class wxBitmapButton(wxBitmapButtonPtr): | |
179 | def __init__(self,*_args,**_kwargs): | |
180 | self.this = apply(controlsc.new_wxBitmapButton,_args,_kwargs) | |
181 | self.thisown = 1 | |
182 | self._setOORInfo(self) | |
183 | ||
184 | ||
185 | ||
186 | def wxPreBitmapButton(*_args,**_kwargs): | |
187 | val = wxBitmapButtonPtr(apply(controlsc.new_wxPreBitmapButton,_args,_kwargs)) | |
188 | val.thisown = 1 | |
189 | val._setOORInfo(val) | |
190 | return val | |
191 | ||
192 | ||
193 | class wxCheckBoxPtr(wxControlPtr): | |
194 | def __init__(self,this): | |
195 | self.this = this | |
196 | self.thisown = 0 | |
197 | def Create(self, *_args, **_kwargs): | |
198 | val = apply(controlsc.wxCheckBox_Create,(self,) + _args, _kwargs) | |
199 | return val | |
200 | def GetValue(self, *_args, **_kwargs): | |
201 | val = apply(controlsc.wxCheckBox_GetValue,(self,) + _args, _kwargs) | |
202 | return val | |
203 | def SetValue(self, *_args, **_kwargs): | |
204 | val = apply(controlsc.wxCheckBox_SetValue,(self,) + _args, _kwargs) | |
205 | return val | |
206 | def __repr__(self): | |
207 | return "<C wxCheckBox instance at %s>" % (self.this,) | |
208 | class wxCheckBox(wxCheckBoxPtr): | |
209 | def __init__(self,*_args,**_kwargs): | |
210 | self.this = apply(controlsc.new_wxCheckBox,_args,_kwargs) | |
211 | self.thisown = 1 | |
212 | self._setOORInfo(self) | |
213 | ||
214 | ||
215 | ||
216 | def wxPreCheckBox(*_args,**_kwargs): | |
217 | val = wxCheckBoxPtr(apply(controlsc.new_wxPreCheckBox,_args,_kwargs)) | |
218 | val.thisown = 1 | |
219 | val._setOORInfo(val) | |
220 | return val | |
221 | ||
222 | ||
223 | class wxChoicePtr(wxControlWithItemsPtr): | |
224 | def __init__(self,this): | |
225 | self.this = this | |
226 | self.thisown = 0 | |
227 | def Create(self, *_args, **_kwargs): | |
228 | val = apply(controlsc.wxChoice_Create,(self,) + _args, _kwargs) | |
229 | return val | |
230 | def Clear(self, *_args, **_kwargs): | |
231 | val = apply(controlsc.wxChoice_Clear,(self,) + _args, _kwargs) | |
232 | return val | |
233 | def GetColumns(self, *_args, **_kwargs): | |
234 | val = apply(controlsc.wxChoice_GetColumns,(self,) + _args, _kwargs) | |
235 | return val | |
236 | def SetColumns(self, *_args, **_kwargs): | |
237 | val = apply(controlsc.wxChoice_SetColumns,(self,) + _args, _kwargs) | |
238 | return val | |
239 | def SetSelection(self, *_args, **_kwargs): | |
240 | val = apply(controlsc.wxChoice_SetSelection,(self,) + _args, _kwargs) | |
241 | return val | |
242 | def SetStringSelection(self, *_args, **_kwargs): | |
243 | val = apply(controlsc.wxChoice_SetStringSelection,(self,) + _args, _kwargs) | |
244 | return val | |
245 | def SetString(self, *_args, **_kwargs): | |
246 | val = apply(controlsc.wxChoice_SetString,(self,) + _args, _kwargs) | |
247 | return val | |
248 | def __repr__(self): | |
249 | return "<C wxChoice instance at %s>" % (self.this,) | |
250 | ||
251 | Select = SetSelection | |
252 | ||
253 | class wxChoice(wxChoicePtr): | |
254 | def __init__(self,*_args,**_kwargs): | |
255 | self.this = apply(controlsc.new_wxChoice,_args,_kwargs) | |
256 | self.thisown = 1 | |
257 | self._setOORInfo(self) | |
258 | ||
259 | ||
260 | ||
261 | def wxPreChoice(*_args,**_kwargs): | |
262 | val = wxChoicePtr(apply(controlsc.new_wxPreChoice,_args,_kwargs)) | |
263 | val.thisown = 1 | |
264 | val._setOORInfo(val) | |
265 | return val | |
266 | ||
267 | ||
268 | class wxComboBoxPtr(wxChoicePtr): | |
269 | def __init__(self,this): | |
270 | self.this = this | |
271 | self.thisown = 0 | |
272 | def Create(self, *_args, **_kwargs): | |
273 | val = apply(controlsc.wxComboBox_Create,(self,) + _args, _kwargs) | |
274 | return val | |
275 | def Copy(self, *_args, **_kwargs): | |
276 | val = apply(controlsc.wxComboBox_Copy,(self,) + _args, _kwargs) | |
277 | return val | |
278 | def Cut(self, *_args, **_kwargs): | |
279 | val = apply(controlsc.wxComboBox_Cut,(self,) + _args, _kwargs) | |
280 | return val | |
281 | def GetInsertionPoint(self, *_args, **_kwargs): | |
282 | val = apply(controlsc.wxComboBox_GetInsertionPoint,(self,) + _args, _kwargs) | |
283 | return val | |
284 | def GetLastPosition(self, *_args, **_kwargs): | |
285 | val = apply(controlsc.wxComboBox_GetLastPosition,(self,) + _args, _kwargs) | |
286 | return val | |
287 | def GetValue(self, *_args, **_kwargs): | |
288 | val = apply(controlsc.wxComboBox_GetValue,(self,) + _args, _kwargs) | |
289 | return val | |
290 | def Paste(self, *_args, **_kwargs): | |
291 | val = apply(controlsc.wxComboBox_Paste,(self,) + _args, _kwargs) | |
292 | return val | |
293 | def Replace(self, *_args, **_kwargs): | |
294 | val = apply(controlsc.wxComboBox_Replace,(self,) + _args, _kwargs) | |
295 | return val | |
296 | def Remove(self, *_args, **_kwargs): | |
297 | val = apply(controlsc.wxComboBox_Remove,(self,) + _args, _kwargs) | |
298 | return val | |
299 | def SetInsertionPoint(self, *_args, **_kwargs): | |
300 | val = apply(controlsc.wxComboBox_SetInsertionPoint,(self,) + _args, _kwargs) | |
301 | return val | |
302 | def SetInsertionPointEnd(self, *_args, **_kwargs): | |
303 | val = apply(controlsc.wxComboBox_SetInsertionPointEnd,(self,) + _args, _kwargs) | |
304 | return val | |
305 | def SetSelection(self, *_args, **_kwargs): | |
306 | val = apply(controlsc.wxComboBox_SetSelection,(self,) + _args, _kwargs) | |
307 | return val | |
308 | def SetMark(self, *_args, **_kwargs): | |
309 | val = apply(controlsc.wxComboBox_SetMark,(self,) + _args, _kwargs) | |
310 | return val | |
311 | def SetValue(self, *_args, **_kwargs): | |
312 | val = apply(controlsc.wxComboBox_SetValue,(self,) + _args, _kwargs) | |
313 | return val | |
314 | def SetEditable(self, *_args, **_kwargs): | |
315 | val = apply(controlsc.wxComboBox_SetEditable,(self,) + _args, _kwargs) | |
316 | return val | |
317 | def __repr__(self): | |
318 | return "<C wxComboBox instance at %s>" % (self.this,) | |
319 | class wxComboBox(wxComboBoxPtr): | |
320 | def __init__(self,*_args,**_kwargs): | |
321 | self.this = apply(controlsc.new_wxComboBox,_args,_kwargs) | |
322 | self.thisown = 1 | |
323 | self._setOORInfo(self) | |
324 | ||
325 | ||
326 | ||
327 | def wxPreComboBox(*_args,**_kwargs): | |
328 | val = wxComboBoxPtr(apply(controlsc.new_wxPreComboBox,_args,_kwargs)) | |
329 | val.thisown = 1 | |
330 | val._setOORInfo(val) | |
331 | return val | |
332 | ||
333 | ||
334 | class wxGaugePtr(wxControlPtr): | |
335 | def __init__(self,this): | |
336 | self.this = this | |
337 | self.thisown = 0 | |
338 | def Create(self, *_args, **_kwargs): | |
339 | val = apply(controlsc.wxGauge_Create,(self,) + _args, _kwargs) | |
340 | return val | |
341 | def GetBezelFace(self, *_args, **_kwargs): | |
342 | val = apply(controlsc.wxGauge_GetBezelFace,(self,) + _args, _kwargs) | |
343 | return val | |
344 | def GetRange(self, *_args, **_kwargs): | |
345 | val = apply(controlsc.wxGauge_GetRange,(self,) + _args, _kwargs) | |
346 | return val | |
347 | def GetShadowWidth(self, *_args, **_kwargs): | |
348 | val = apply(controlsc.wxGauge_GetShadowWidth,(self,) + _args, _kwargs) | |
349 | return val | |
350 | def GetValue(self, *_args, **_kwargs): | |
351 | val = apply(controlsc.wxGauge_GetValue,(self,) + _args, _kwargs) | |
352 | return val | |
353 | def SetBezelFace(self, *_args, **_kwargs): | |
354 | val = apply(controlsc.wxGauge_SetBezelFace,(self,) + _args, _kwargs) | |
355 | return val | |
356 | def SetRange(self, *_args, **_kwargs): | |
357 | val = apply(controlsc.wxGauge_SetRange,(self,) + _args, _kwargs) | |
358 | return val | |
359 | def SetShadowWidth(self, *_args, **_kwargs): | |
360 | val = apply(controlsc.wxGauge_SetShadowWidth,(self,) + _args, _kwargs) | |
361 | return val | |
362 | def SetValue(self, *_args, **_kwargs): | |
363 | val = apply(controlsc.wxGauge_SetValue,(self,) + _args, _kwargs) | |
364 | return val | |
365 | def __repr__(self): | |
366 | return "<C wxGauge instance at %s>" % (self.this,) | |
367 | class wxGauge(wxGaugePtr): | |
368 | def __init__(self,*_args,**_kwargs): | |
369 | self.this = apply(controlsc.new_wxGauge,_args,_kwargs) | |
370 | self.thisown = 1 | |
371 | self._setOORInfo(self) | |
372 | ||
373 | ||
374 | ||
375 | def wxPreGauge(*_args,**_kwargs): | |
376 | val = wxGaugePtr(apply(controlsc.new_wxPreGauge,_args,_kwargs)) | |
377 | val.thisown = 1 | |
378 | val._setOORInfo(val) | |
379 | return val | |
380 | ||
381 | ||
382 | class wxStaticBoxPtr(wxControlPtr): | |
383 | def __init__(self,this): | |
384 | self.this = this | |
385 | self.thisown = 0 | |
386 | def Create(self, *_args, **_kwargs): | |
387 | val = apply(controlsc.wxStaticBox_Create,(self,) + _args, _kwargs) | |
388 | return val | |
389 | def __repr__(self): | |
390 | return "<C wxStaticBox instance at %s>" % (self.this,) | |
391 | class wxStaticBox(wxStaticBoxPtr): | |
392 | def __init__(self,*_args,**_kwargs): | |
393 | self.this = apply(controlsc.new_wxStaticBox,_args,_kwargs) | |
394 | self.thisown = 1 | |
395 | self._setOORInfo(self) | |
396 | ||
397 | ||
398 | ||
399 | def wxPreStaticBox(*_args,**_kwargs): | |
400 | val = wxStaticBoxPtr(apply(controlsc.new_wxPreStaticBox,_args,_kwargs)) | |
401 | val.thisown = 1 | |
402 | val._setOORInfo(val) | |
403 | return val | |
404 | ||
405 | ||
406 | class wxStaticLinePtr(wxControlPtr): | |
407 | def __init__(self,this): | |
408 | self.this = this | |
409 | self.thisown = 0 | |
410 | def Create(self, *_args, **_kwargs): | |
411 | val = apply(controlsc.wxStaticLine_Create,(self,) + _args, _kwargs) | |
412 | return val | |
413 | def __repr__(self): | |
414 | return "<C wxStaticLine instance at %s>" % (self.this,) | |
415 | class wxStaticLine(wxStaticLinePtr): | |
416 | def __init__(self,*_args,**_kwargs): | |
417 | self.this = apply(controlsc.new_wxStaticLine,_args,_kwargs) | |
418 | self.thisown = 1 | |
419 | self._setOORInfo(self) | |
420 | ||
421 | ||
422 | ||
423 | def wxPreStaticLine(*_args,**_kwargs): | |
424 | val = wxStaticLinePtr(apply(controlsc.new_wxPreStaticLine,_args,_kwargs)) | |
425 | val.thisown = 1 | |
426 | val._setOORInfo(val) | |
427 | return val | |
428 | ||
429 | ||
430 | class wxStaticTextPtr(wxControlPtr): | |
431 | def __init__(self,this): | |
432 | self.this = this | |
433 | self.thisown = 0 | |
434 | def Create(self, *_args, **_kwargs): | |
435 | val = apply(controlsc.wxStaticText_Create,(self,) + _args, _kwargs) | |
436 | return val | |
437 | def GetLabel(self, *_args, **_kwargs): | |
438 | val = apply(controlsc.wxStaticText_GetLabel,(self,) + _args, _kwargs) | |
439 | return val | |
440 | def SetLabel(self, *_args, **_kwargs): | |
441 | val = apply(controlsc.wxStaticText_SetLabel,(self,) + _args, _kwargs) | |
442 | return val | |
443 | def __repr__(self): | |
444 | return "<C wxStaticText instance at %s>" % (self.this,) | |
445 | class wxStaticText(wxStaticTextPtr): | |
446 | def __init__(self,*_args,**_kwargs): | |
447 | self.this = apply(controlsc.new_wxStaticText,_args,_kwargs) | |
448 | self.thisown = 1 | |
449 | self._setOORInfo(self) | |
450 | ||
451 | ||
452 | ||
453 | def wxPreStaticText(*_args,**_kwargs): | |
454 | val = wxStaticTextPtr(apply(controlsc.new_wxPreStaticText,_args,_kwargs)) | |
455 | val.thisown = 1 | |
456 | val._setOORInfo(val) | |
457 | return val | |
458 | ||
459 | ||
460 | class wxListBoxPtr(wxControlWithItemsPtr): | |
461 | def __init__(self,this): | |
462 | self.this = this | |
463 | self.thisown = 0 | |
464 | def Create(self, *_args, **_kwargs): | |
465 | val = apply(controlsc.wxListBox_Create,(self,) + _args, _kwargs) | |
466 | return val | |
467 | def Clear(self, *_args, **_kwargs): | |
468 | val = apply(controlsc.wxListBox_Clear,(self,) + _args, _kwargs) | |
469 | return val | |
470 | def Deselect(self, *_args, **_kwargs): | |
471 | val = apply(controlsc.wxListBox_Deselect,(self,) + _args, _kwargs) | |
472 | return val | |
473 | def GetSelections(self, *_args, **_kwargs): | |
474 | val = apply(controlsc.wxListBox_GetSelections,(self,) + _args, _kwargs) | |
475 | return val | |
476 | def InsertItems(self, *_args, **_kwargs): | |
477 | val = apply(controlsc.wxListBox_InsertItems,(self,) + _args, _kwargs) | |
478 | return val | |
479 | def IsSelected(self, *_args, **_kwargs): | |
480 | val = apply(controlsc.wxListBox_IsSelected,(self,) + _args, _kwargs) | |
481 | return val | |
482 | def Selected(self, *_args, **_kwargs): | |
483 | val = apply(controlsc.wxListBox_Selected,(self,) + _args, _kwargs) | |
484 | return val | |
485 | def Set(self, *_args, **_kwargs): | |
486 | val = apply(controlsc.wxListBox_Set,(self,) + _args, _kwargs) | |
487 | return val | |
488 | def SetFirstItem(self, *_args, **_kwargs): | |
489 | val = apply(controlsc.wxListBox_SetFirstItem,(self,) + _args, _kwargs) | |
490 | return val | |
491 | def SetFirstItemStr(self, *_args, **_kwargs): | |
492 | val = apply(controlsc.wxListBox_SetFirstItemStr,(self,) + _args, _kwargs) | |
493 | return val | |
494 | def SetSelection(self, *_args, **_kwargs): | |
495 | val = apply(controlsc.wxListBox_SetSelection,(self,) + _args, _kwargs) | |
496 | return val | |
497 | def SetString(self, *_args, **_kwargs): | |
498 | val = apply(controlsc.wxListBox_SetString,(self,) + _args, _kwargs) | |
499 | return val | |
500 | def SetStringSelection(self, *_args, **_kwargs): | |
501 | val = apply(controlsc.wxListBox_SetStringSelection,(self,) + _args, _kwargs) | |
502 | return val | |
503 | def __repr__(self): | |
504 | return "<C wxListBox instance at %s>" % (self.this,) | |
505 | class wxListBox(wxListBoxPtr): | |
506 | def __init__(self,*_args,**_kwargs): | |
507 | self.this = apply(controlsc.new_wxListBox,_args,_kwargs) | |
508 | self.thisown = 1 | |
509 | self._setOORInfo(self) | |
510 | ||
511 | ||
512 | ||
513 | def wxPreListBox(*_args,**_kwargs): | |
514 | val = wxListBoxPtr(apply(controlsc.new_wxPreListBox,_args,_kwargs)) | |
515 | val.thisown = 1 | |
516 | val._setOORInfo(val) | |
517 | return val | |
518 | ||
519 | ||
520 | class wxCheckListBoxPtr(wxListBoxPtr): | |
521 | def __init__(self,this): | |
522 | self.this = this | |
523 | self.thisown = 0 | |
524 | def Create(self, *_args, **_kwargs): | |
525 | val = apply(controlsc.wxCheckListBox_Create,(self,) + _args, _kwargs) | |
526 | return val | |
527 | def IsChecked(self, *_args, **_kwargs): | |
528 | val = apply(controlsc.wxCheckListBox_IsChecked,(self,) + _args, _kwargs) | |
529 | return val | |
530 | def Check(self, *_args, **_kwargs): | |
531 | val = apply(controlsc.wxCheckListBox_Check,(self,) + _args, _kwargs) | |
532 | return val | |
533 | def InsertItems(self, *_args, **_kwargs): | |
534 | val = apply(controlsc.wxCheckListBox_InsertItems,(self,) + _args, _kwargs) | |
535 | return val | |
3e1f6ec4 RD |
536 | def HitTest(self, *_args, **_kwargs): |
537 | val = apply(controlsc.wxCheckListBox_HitTest,(self,) + _args, _kwargs) | |
538 | return val | |
539 | def HitTestXY(self, *_args, **_kwargs): | |
540 | val = apply(controlsc.wxCheckListBox_HitTestXY,(self,) + _args, _kwargs) | |
541 | return val | |
e6056257 RD |
542 | def __repr__(self): |
543 | return "<C wxCheckListBox instance at %s>" % (self.this,) | |
544 | class wxCheckListBox(wxCheckListBoxPtr): | |
545 | def __init__(self,*_args,**_kwargs): | |
546 | self.this = apply(controlsc.new_wxCheckListBox,_args,_kwargs) | |
547 | self.thisown = 1 | |
548 | self._setOORInfo(self) | |
549 | ||
550 | ||
551 | ||
552 | def wxPreCheckListBox(*_args,**_kwargs): | |
553 | val = wxCheckListBoxPtr(apply(controlsc.new_wxPreCheckListBox,_args,_kwargs)) | |
554 | val.thisown = 1 | |
555 | val._setOORInfo(val) | |
556 | return val | |
557 | ||
558 | ||
559 | class wxTextAttrPtr : | |
560 | def __init__(self,this): | |
561 | self.this = this | |
562 | self.thisown = 0 | |
563 | def __del__(self,controlsc=controlsc): | |
564 | if self.thisown == 1 : | |
565 | controlsc.delete_wxTextAttr(self) | |
566 | def SetTextColour(self, *_args, **_kwargs): | |
567 | val = apply(controlsc.wxTextAttr_SetTextColour,(self,) + _args, _kwargs) | |
568 | return val | |
569 | def SetBackgroundColour(self, *_args, **_kwargs): | |
570 | val = apply(controlsc.wxTextAttr_SetBackgroundColour,(self,) + _args, _kwargs) | |
571 | return val | |
572 | def SetFont(self, *_args, **_kwargs): | |
573 | val = apply(controlsc.wxTextAttr_SetFont,(self,) + _args, _kwargs) | |
574 | return val | |
575 | def HasTextColour(self, *_args, **_kwargs): | |
576 | val = apply(controlsc.wxTextAttr_HasTextColour,(self,) + _args, _kwargs) | |
577 | return val | |
578 | def HasBackgroundColour(self, *_args, **_kwargs): | |
579 | val = apply(controlsc.wxTextAttr_HasBackgroundColour,(self,) + _args, _kwargs) | |
580 | return val | |
581 | def HasFont(self, *_args, **_kwargs): | |
582 | val = apply(controlsc.wxTextAttr_HasFont,(self,) + _args, _kwargs) | |
583 | return val | |
584 | def GetTextColour(self, *_args, **_kwargs): | |
585 | val = apply(controlsc.wxTextAttr_GetTextColour,(self,) + _args, _kwargs) | |
00360d46 | 586 | if val: val = wxColourPtr(val) ; val.thisown = 1 |
e6056257 RD |
587 | return val |
588 | def GetBackgroundColour(self, *_args, **_kwargs): | |
589 | val = apply(controlsc.wxTextAttr_GetBackgroundColour,(self,) + _args, _kwargs) | |
00360d46 | 590 | if val: val = wxColourPtr(val) ; val.thisown = 1 |
e6056257 RD |
591 | return val |
592 | def GetFont(self, *_args, **_kwargs): | |
593 | val = apply(controlsc.wxTextAttr_GetFont,(self,) + _args, _kwargs) | |
00360d46 | 594 | if val: val = wxFontPtr(val) ; val.thisown = 1 |
e6056257 | 595 | return val |
742fc581 RD |
596 | def IsDefault(self, *_args, **_kwargs): |
597 | val = apply(controlsc.wxTextAttr_IsDefault,(self,) + _args, _kwargs) | |
598 | return val | |
e6056257 RD |
599 | def __repr__(self): |
600 | return "<C wxTextAttr instance at %s>" % (self.this,) | |
601 | class wxTextAttr(wxTextAttrPtr): | |
602 | def __init__(self,*_args,**_kwargs): | |
603 | self.this = apply(controlsc.new_wxTextAttr,_args,_kwargs) | |
604 | self.thisown = 1 | |
605 | ||
606 | ||
607 | ||
608 | ||
609 | class wxTextCtrlPtr(wxControlPtr): | |
610 | def __init__(self,this): | |
611 | self.this = this | |
612 | self.thisown = 0 | |
613 | def Create(self, *_args, **_kwargs): | |
614 | val = apply(controlsc.wxTextCtrl_Create,(self,) + _args, _kwargs) | |
615 | return val | |
742fc581 RD |
616 | def GetValue(self, *_args, **_kwargs): |
617 | val = apply(controlsc.wxTextCtrl_GetValue,(self,) + _args, _kwargs) | |
e6056257 | 618 | return val |
742fc581 RD |
619 | def SetValue(self, *_args, **_kwargs): |
620 | val = apply(controlsc.wxTextCtrl_SetValue,(self,) + _args, _kwargs) | |
e6056257 | 621 | return val |
d1e76a37 RD |
622 | def GetRange(self, *_args, **_kwargs): |
623 | val = apply(controlsc.wxTextCtrl_GetRange,(self,) + _args, _kwargs) | |
624 | return val | |
e6056257 RD |
625 | def GetLineLength(self, *_args, **_kwargs): |
626 | val = apply(controlsc.wxTextCtrl_GetLineLength,(self,) + _args, _kwargs) | |
627 | return val | |
628 | def GetLineText(self, *_args, **_kwargs): | |
629 | val = apply(controlsc.wxTextCtrl_GetLineText,(self,) + _args, _kwargs) | |
630 | return val | |
631 | def GetNumberOfLines(self, *_args, **_kwargs): | |
632 | val = apply(controlsc.wxTextCtrl_GetNumberOfLines,(self,) + _args, _kwargs) | |
633 | return val | |
e6056257 RD |
634 | def IsModified(self, *_args, **_kwargs): |
635 | val = apply(controlsc.wxTextCtrl_IsModified,(self,) + _args, _kwargs) | |
636 | return val | |
742fc581 RD |
637 | def IsEditable(self, *_args, **_kwargs): |
638 | val = apply(controlsc.wxTextCtrl_IsEditable,(self,) + _args, _kwargs) | |
e6056257 | 639 | return val |
742fc581 RD |
640 | def GetSelection(self, *_args, **_kwargs): |
641 | val = apply(controlsc.wxTextCtrl_GetSelection,(self,) + _args, _kwargs) | |
e6056257 | 642 | return val |
742fc581 RD |
643 | def GetStringSelection(self, *_args, **_kwargs): |
644 | val = apply(controlsc.wxTextCtrl_GetStringSelection,(self,) + _args, _kwargs) | |
e6056257 | 645 | return val |
742fc581 RD |
646 | def Clear(self, *_args, **_kwargs): |
647 | val = apply(controlsc.wxTextCtrl_Clear,(self,) + _args, _kwargs) | |
e6056257 RD |
648 | return val |
649 | def Replace(self, *_args, **_kwargs): | |
650 | val = apply(controlsc.wxTextCtrl_Replace,(self,) + _args, _kwargs) | |
651 | return val | |
742fc581 RD |
652 | def Remove(self, *_args, **_kwargs): |
653 | val = apply(controlsc.wxTextCtrl_Remove,(self,) + _args, _kwargs) | |
e6056257 | 654 | return val |
742fc581 RD |
655 | def LoadFile(self, *_args, **_kwargs): |
656 | val = apply(controlsc.wxTextCtrl_LoadFile,(self,) + _args, _kwargs) | |
e6056257 | 657 | return val |
742fc581 RD |
658 | def SaveFile(self, *_args, **_kwargs): |
659 | val = apply(controlsc.wxTextCtrl_SaveFile,(self,) + _args, _kwargs) | |
e6056257 | 660 | return val |
742fc581 RD |
661 | def DiscardEdits(self, *_args, **_kwargs): |
662 | val = apply(controlsc.wxTextCtrl_DiscardEdits,(self,) + _args, _kwargs) | |
e6056257 | 663 | return val |
742fc581 RD |
664 | def SetMaxLength(self, *_args, **_kwargs): |
665 | val = apply(controlsc.wxTextCtrl_SetMaxLength,(self,) + _args, _kwargs) | |
e6056257 RD |
666 | return val |
667 | def WriteText(self, *_args, **_kwargs): | |
668 | val = apply(controlsc.wxTextCtrl_WriteText,(self,) + _args, _kwargs) | |
669 | return val | |
670 | def AppendText(self, *_args, **_kwargs): | |
671 | val = apply(controlsc.wxTextCtrl_AppendText,(self,) + _args, _kwargs) | |
672 | return val | |
59988cd0 RD |
673 | def EmulateKeyPress(self, *_args, **_kwargs): |
674 | val = apply(controlsc.wxTextCtrl_EmulateKeyPress,(self,) + _args, _kwargs) | |
675 | return val | |
742fc581 RD |
676 | def SetStyle(self, *_args, **_kwargs): |
677 | val = apply(controlsc.wxTextCtrl_SetStyle,(self,) + _args, _kwargs) | |
678 | return val | |
679 | def SetDefaultStyle(self, *_args, **_kwargs): | |
680 | val = apply(controlsc.wxTextCtrl_SetDefaultStyle,(self,) + _args, _kwargs) | |
681 | return val | |
682 | def GetDefaultStyle(self, *_args, **_kwargs): | |
683 | val = apply(controlsc.wxTextCtrl_GetDefaultStyle,(self,) + _args, _kwargs) | |
684 | if val: val = wxTextAttrPtr(val) | |
685 | return val | |
e6056257 RD |
686 | def XYToPosition(self, *_args, **_kwargs): |
687 | val = apply(controlsc.wxTextCtrl_XYToPosition,(self,) + _args, _kwargs) | |
688 | return val | |
742fc581 RD |
689 | def PositionToXY(self, *_args, **_kwargs): |
690 | val = apply(controlsc.wxTextCtrl_PositionToXY,(self,) + _args, _kwargs) | |
691 | return val | |
692 | def ShowPosition(self, *_args, **_kwargs): | |
693 | val = apply(controlsc.wxTextCtrl_ShowPosition,(self,) + _args, _kwargs) | |
694 | return val | |
695 | def Copy(self, *_args, **_kwargs): | |
696 | val = apply(controlsc.wxTextCtrl_Copy,(self,) + _args, _kwargs) | |
697 | return val | |
698 | def Cut(self, *_args, **_kwargs): | |
699 | val = apply(controlsc.wxTextCtrl_Cut,(self,) + _args, _kwargs) | |
700 | return val | |
701 | def Paste(self, *_args, **_kwargs): | |
702 | val = apply(controlsc.wxTextCtrl_Paste,(self,) + _args, _kwargs) | |
703 | return val | |
e6056257 RD |
704 | def CanCopy(self, *_args, **_kwargs): |
705 | val = apply(controlsc.wxTextCtrl_CanCopy,(self,) + _args, _kwargs) | |
706 | return val | |
707 | def CanCut(self, *_args, **_kwargs): | |
708 | val = apply(controlsc.wxTextCtrl_CanCut,(self,) + _args, _kwargs) | |
709 | return val | |
710 | def CanPaste(self, *_args, **_kwargs): | |
711 | val = apply(controlsc.wxTextCtrl_CanPaste,(self,) + _args, _kwargs) | |
712 | return val | |
742fc581 RD |
713 | def Undo(self, *_args, **_kwargs): |
714 | val = apply(controlsc.wxTextCtrl_Undo,(self,) + _args, _kwargs) | |
715 | return val | |
716 | def Redo(self, *_args, **_kwargs): | |
717 | val = apply(controlsc.wxTextCtrl_Redo,(self,) + _args, _kwargs) | |
e6056257 RD |
718 | return val |
719 | def CanUndo(self, *_args, **_kwargs): | |
720 | val = apply(controlsc.wxTextCtrl_CanUndo,(self,) + _args, _kwargs) | |
721 | return val | |
742fc581 RD |
722 | def CanRedo(self, *_args, **_kwargs): |
723 | val = apply(controlsc.wxTextCtrl_CanRedo,(self,) + _args, _kwargs) | |
e6056257 | 724 | return val |
742fc581 RD |
725 | def SetInsertionPoint(self, *_args, **_kwargs): |
726 | val = apply(controlsc.wxTextCtrl_SetInsertionPoint,(self,) + _args, _kwargs) | |
e6056257 | 727 | return val |
742fc581 RD |
728 | def SetInsertionPointEnd(self, *_args, **_kwargs): |
729 | val = apply(controlsc.wxTextCtrl_SetInsertionPointEnd,(self,) + _args, _kwargs) | |
e6056257 | 730 | return val |
742fc581 RD |
731 | def GetInsertionPoint(self, *_args, **_kwargs): |
732 | val = apply(controlsc.wxTextCtrl_GetInsertionPoint,(self,) + _args, _kwargs) | |
e6056257 | 733 | return val |
742fc581 RD |
734 | def GetLastPosition(self, *_args, **_kwargs): |
735 | val = apply(controlsc.wxTextCtrl_GetLastPosition,(self,) + _args, _kwargs) | |
e6056257 | 736 | return val |
742fc581 RD |
737 | def SetSelection(self, *_args, **_kwargs): |
738 | val = apply(controlsc.wxTextCtrl_SetSelection,(self,) + _args, _kwargs) | |
e6056257 | 739 | return val |
742fc581 RD |
740 | def SelectAll(self, *_args, **_kwargs): |
741 | val = apply(controlsc.wxTextCtrl_SelectAll,(self,) + _args, _kwargs) | |
e6056257 | 742 | return val |
742fc581 RD |
743 | def SetEditable(self, *_args, **_kwargs): |
744 | val = apply(controlsc.wxTextCtrl_SetEditable,(self,) + _args, _kwargs) | |
e6056257 | 745 | return val |
383ea3d0 RD |
746 | def IsSingleLine(self, *_args, **_kwargs): |
747 | val = apply(controlsc.wxTextCtrl_IsSingleLine,(self,) + _args, _kwargs) | |
748 | return val | |
749 | def IsMultiLine(self, *_args, **_kwargs): | |
750 | val = apply(controlsc.wxTextCtrl_IsMultiLine,(self,) + _args, _kwargs) | |
751 | return val | |
e6056257 RD |
752 | def write(self, *_args, **_kwargs): |
753 | val = apply(controlsc.wxTextCtrl_write,(self,) + _args, _kwargs) | |
754 | return val | |
dbd3685c RD |
755 | def GetString(self, *_args, **_kwargs): |
756 | val = apply(controlsc.wxTextCtrl_GetString,(self,) + _args, _kwargs) | |
757 | return val | |
e6056257 RD |
758 | def __repr__(self): |
759 | return "<C wxTextCtrl instance at %s>" % (self.this,) | |
760 | class wxTextCtrl(wxTextCtrlPtr): | |
761 | def __init__(self,*_args,**_kwargs): | |
762 | self.this = apply(controlsc.new_wxTextCtrl,_args,_kwargs) | |
763 | self.thisown = 1 | |
764 | self._setOORInfo(self) | |
765 | ||
766 | ||
767 | ||
768 | def wxPreTextCtrl(*_args,**_kwargs): | |
769 | val = wxTextCtrlPtr(apply(controlsc.new_wxPreTextCtrl,_args,_kwargs)) | |
770 | val.thisown = 1 | |
771 | val._setOORInfo(val) | |
772 | return val | |
773 | ||
774 | ||
775 | class wxScrollBarPtr(wxControlPtr): | |
776 | def __init__(self,this): | |
777 | self.this = this | |
778 | self.thisown = 0 | |
779 | def Create(self, *_args, **_kwargs): | |
780 | val = apply(controlsc.wxScrollBar_Create,(self,) + _args, _kwargs) | |
781 | return val | |
782 | def GetRange(self, *_args, **_kwargs): | |
783 | val = apply(controlsc.wxScrollBar_GetRange,(self,) + _args, _kwargs) | |
784 | return val | |
785 | def GetPageSize(self, *_args, **_kwargs): | |
786 | val = apply(controlsc.wxScrollBar_GetPageSize,(self,) + _args, _kwargs) | |
787 | return val | |
788 | def GetThumbPosition(self, *_args, **_kwargs): | |
789 | val = apply(controlsc.wxScrollBar_GetThumbPosition,(self,) + _args, _kwargs) | |
790 | return val | |
791 | def GetThumbSize(self, *_args, **_kwargs): | |
792 | val = apply(controlsc.wxScrollBar_GetThumbSize,(self,) + _args, _kwargs) | |
793 | return val | |
794 | def GetThumbLength(self, *_args, **_kwargs): | |
795 | val = apply(controlsc.wxScrollBar_GetThumbLength,(self,) + _args, _kwargs) | |
796 | return val | |
dbd3685c RD |
797 | def IsVertical(self, *_args, **_kwargs): |
798 | val = apply(controlsc.wxScrollBar_IsVertical,(self,) + _args, _kwargs) | |
799 | return val | |
e6056257 RD |
800 | def SetThumbPosition(self, *_args, **_kwargs): |
801 | val = apply(controlsc.wxScrollBar_SetThumbPosition,(self,) + _args, _kwargs) | |
802 | return val | |
803 | def SetScrollbar(self, *_args, **_kwargs): | |
804 | val = apply(controlsc.wxScrollBar_SetScrollbar,(self,) + _args, _kwargs) | |
805 | return val | |
806 | def __repr__(self): | |
807 | return "<C wxScrollBar instance at %s>" % (self.this,) | |
808 | class wxScrollBar(wxScrollBarPtr): | |
809 | def __init__(self,*_args,**_kwargs): | |
810 | self.this = apply(controlsc.new_wxScrollBar,_args,_kwargs) | |
811 | self.thisown = 1 | |
812 | self._setOORInfo(self) | |
813 | ||
814 | ||
815 | ||
816 | def wxPreScrollBar(*_args,**_kwargs): | |
817 | val = wxScrollBarPtr(apply(controlsc.new_wxPreScrollBar,_args,_kwargs)) | |
818 | val.thisown = 1 | |
819 | val._setOORInfo(val) | |
820 | return val | |
821 | ||
822 | ||
823 | class wxSpinButtonPtr(wxControlPtr): | |
824 | def __init__(self,this): | |
825 | self.this = this | |
826 | self.thisown = 0 | |
827 | def Create(self, *_args, **_kwargs): | |
828 | val = apply(controlsc.wxSpinButton_Create,(self,) + _args, _kwargs) | |
829 | return val | |
830 | def GetMax(self, *_args, **_kwargs): | |
831 | val = apply(controlsc.wxSpinButton_GetMax,(self,) + _args, _kwargs) | |
832 | return val | |
833 | def GetMin(self, *_args, **_kwargs): | |
834 | val = apply(controlsc.wxSpinButton_GetMin,(self,) + _args, _kwargs) | |
835 | return val | |
836 | def GetValue(self, *_args, **_kwargs): | |
837 | val = apply(controlsc.wxSpinButton_GetValue,(self,) + _args, _kwargs) | |
838 | return val | |
839 | def SetRange(self, *_args, **_kwargs): | |
840 | val = apply(controlsc.wxSpinButton_SetRange,(self,) + _args, _kwargs) | |
841 | return val | |
842 | def SetValue(self, *_args, **_kwargs): | |
843 | val = apply(controlsc.wxSpinButton_SetValue,(self,) + _args, _kwargs) | |
844 | return val | |
845 | def __repr__(self): | |
846 | return "<C wxSpinButton instance at %s>" % (self.this,) | |
847 | class wxSpinButton(wxSpinButtonPtr): | |
848 | def __init__(self,*_args,**_kwargs): | |
849 | self.this = apply(controlsc.new_wxSpinButton,_args,_kwargs) | |
850 | self.thisown = 1 | |
851 | self._setOORInfo(self) | |
852 | ||
853 | ||
854 | ||
855 | def wxPreSpinButton(*_args,**_kwargs): | |
856 | val = wxSpinButtonPtr(apply(controlsc.new_wxPreSpinButton,_args,_kwargs)) | |
857 | val.thisown = 1 | |
858 | val._setOORInfo(val) | |
859 | return val | |
860 | ||
861 | ||
862 | class wxStaticBitmapPtr(wxControlPtr): | |
863 | def __init__(self,this): | |
864 | self.this = this | |
865 | self.thisown = 0 | |
866 | def Create(self, *_args, **_kwargs): | |
867 | val = apply(controlsc.wxStaticBitmap_Create,(self,) + _args, _kwargs) | |
868 | return val | |
869 | def GetBitmap(self, *_args, **_kwargs): | |
870 | val = apply(controlsc.wxStaticBitmap_GetBitmap,(self,) + _args, _kwargs) | |
00360d46 | 871 | if val: val = wxBitmapPtr(val) ; val.thisown = 1 |
e6056257 RD |
872 | return val |
873 | def SetBitmap(self, *_args, **_kwargs): | |
874 | val = apply(controlsc.wxStaticBitmap_SetBitmap,(self,) + _args, _kwargs) | |
875 | return val | |
876 | def SetIcon(self, *_args, **_kwargs): | |
877 | val = apply(controlsc.wxStaticBitmap_SetIcon,(self,) + _args, _kwargs) | |
878 | return val | |
879 | def __repr__(self): | |
880 | return "<C wxStaticBitmap instance at %s>" % (self.this,) | |
881 | class wxStaticBitmap(wxStaticBitmapPtr): | |
882 | def __init__(self,*_args,**_kwargs): | |
883 | self.this = apply(controlsc.new_wxStaticBitmap,_args,_kwargs) | |
884 | self.thisown = 1 | |
885 | self._setOORInfo(self) | |
886 | ||
887 | ||
888 | ||
889 | def wxPreStaticBitmap(*_args,**_kwargs): | |
890 | val = wxStaticBitmapPtr(apply(controlsc.new_wxPreStaticBitmap,_args,_kwargs)) | |
891 | val.thisown = 1 | |
892 | val._setOORInfo(val) | |
893 | return val | |
894 | ||
895 | ||
896 | class wxRadioBoxPtr(wxControlPtr): | |
897 | def __init__(self,this): | |
898 | self.this = this | |
899 | self.thisown = 0 | |
900 | def Create(self, *_args, **_kwargs): | |
901 | val = apply(controlsc.wxRadioBox_Create,(self,) + _args, _kwargs) | |
902 | return val | |
903 | def Enable(self, *_args, **_kwargs): | |
904 | val = apply(controlsc.wxRadioBox_Enable,(self,) + _args, _kwargs) | |
905 | return val | |
906 | def EnableItem(self, *_args, **_kwargs): | |
907 | val = apply(controlsc.wxRadioBox_EnableItem,(self,) + _args, _kwargs) | |
908 | return val | |
909 | def FindString(self, *_args, **_kwargs): | |
910 | val = apply(controlsc.wxRadioBox_FindString,(self,) + _args, _kwargs) | |
911 | return val | |
912 | def GetString(self, *_args, **_kwargs): | |
913 | val = apply(controlsc.wxRadioBox_GetString,(self,) + _args, _kwargs) | |
914 | return val | |
915 | def SetString(self, *_args, **_kwargs): | |
916 | val = apply(controlsc.wxRadioBox_SetString,(self,) + _args, _kwargs) | |
917 | return val | |
918 | def GetColumnCount(self, *_args, **_kwargs): | |
919 | val = apply(controlsc.wxRadioBox_GetColumnCount,(self,) + _args, _kwargs) | |
920 | return val | |
921 | def GetRowCount(self, *_args, **_kwargs): | |
922 | val = apply(controlsc.wxRadioBox_GetRowCount,(self,) + _args, _kwargs) | |
923 | return val | |
924 | def GetSelection(self, *_args, **_kwargs): | |
925 | val = apply(controlsc.wxRadioBox_GetSelection,(self,) + _args, _kwargs) | |
926 | return val | |
927 | def GetStringSelection(self, *_args, **_kwargs): | |
928 | val = apply(controlsc.wxRadioBox_GetStringSelection,(self,) + _args, _kwargs) | |
929 | return val | |
930 | def GetCount(self, *_args, **_kwargs): | |
931 | val = apply(controlsc.wxRadioBox_GetCount,(self,) + _args, _kwargs) | |
932 | return val | |
933 | def SetSelection(self, *_args, **_kwargs): | |
934 | val = apply(controlsc.wxRadioBox_SetSelection,(self,) + _args, _kwargs) | |
935 | return val | |
936 | def SetStringSelection(self, *_args, **_kwargs): | |
937 | val = apply(controlsc.wxRadioBox_SetStringSelection,(self,) + _args, _kwargs) | |
938 | return val | |
939 | def Show(self, *_args, **_kwargs): | |
940 | val = apply(controlsc.wxRadioBox_Show,(self,) + _args, _kwargs) | |
941 | return val | |
942 | def ShowItem(self, *_args, **_kwargs): | |
943 | val = apply(controlsc.wxRadioBox_ShowItem,(self,) + _args, _kwargs) | |
944 | return val | |
945 | def __repr__(self): | |
946 | return "<C wxRadioBox instance at %s>" % (self.this,) | |
947 | ||
948 | GetItemLabel = GetString | |
949 | SetItemLabel = SetString | |
950 | ||
951 | Number = GetCount | |
952 | class wxRadioBox(wxRadioBoxPtr): | |
953 | def __init__(self,*_args,**_kwargs): | |
954 | self.this = apply(controlsc.new_wxRadioBox,_args,_kwargs) | |
955 | self.thisown = 1 | |
956 | self._setOORInfo(self) | |
957 | ||
958 | ||
959 | ||
960 | def wxPreRadioBox(*_args,**_kwargs): | |
961 | val = wxRadioBoxPtr(apply(controlsc.new_wxPreRadioBox,_args,_kwargs)) | |
962 | val.thisown = 1 | |
963 | val._setOORInfo(val) | |
964 | return val | |
965 | ||
966 | ||
967 | class wxRadioButtonPtr(wxControlPtr): | |
968 | def __init__(self,this): | |
969 | self.this = this | |
970 | self.thisown = 0 | |
971 | def Create(self, *_args, **_kwargs): | |
972 | val = apply(controlsc.wxRadioButton_Create,(self,) + _args, _kwargs) | |
973 | return val | |
974 | def GetValue(self, *_args, **_kwargs): | |
975 | val = apply(controlsc.wxRadioButton_GetValue,(self,) + _args, _kwargs) | |
976 | return val | |
977 | def SetValue(self, *_args, **_kwargs): | |
978 | val = apply(controlsc.wxRadioButton_SetValue,(self,) + _args, _kwargs) | |
979 | return val | |
980 | def __repr__(self): | |
981 | return "<C wxRadioButton instance at %s>" % (self.this,) | |
982 | class wxRadioButton(wxRadioButtonPtr): | |
983 | def __init__(self,*_args,**_kwargs): | |
984 | self.this = apply(controlsc.new_wxRadioButton,_args,_kwargs) | |
985 | self.thisown = 1 | |
986 | self._setOORInfo(self) | |
987 | ||
988 | ||
989 | ||
990 | def wxPreRadioButton(*_args,**_kwargs): | |
991 | val = wxRadioButtonPtr(apply(controlsc.new_wxPreRadioButton,_args,_kwargs)) | |
992 | val.thisown = 1 | |
993 | val._setOORInfo(val) | |
994 | return val | |
995 | ||
996 | ||
997 | class wxSliderPtr(wxControlPtr): | |
998 | def __init__(self,this): | |
999 | self.this = this | |
1000 | self.thisown = 0 | |
1001 | def Create(self, *_args, **_kwargs): | |
1002 | val = apply(controlsc.wxSlider_Create,(self,) + _args, _kwargs) | |
1003 | return val | |
1004 | def ClearSel(self, *_args, **_kwargs): | |
1005 | val = apply(controlsc.wxSlider_ClearSel,(self,) + _args, _kwargs) | |
1006 | return val | |
1007 | def ClearTicks(self, *_args, **_kwargs): | |
1008 | val = apply(controlsc.wxSlider_ClearTicks,(self,) + _args, _kwargs) | |
1009 | return val | |
1010 | def GetLineSize(self, *_args, **_kwargs): | |
1011 | val = apply(controlsc.wxSlider_GetLineSize,(self,) + _args, _kwargs) | |
1012 | return val | |
1013 | def GetMax(self, *_args, **_kwargs): | |
1014 | val = apply(controlsc.wxSlider_GetMax,(self,) + _args, _kwargs) | |
1015 | return val | |
1016 | def GetMin(self, *_args, **_kwargs): | |
1017 | val = apply(controlsc.wxSlider_GetMin,(self,) + _args, _kwargs) | |
1018 | return val | |
1019 | def GetPageSize(self, *_args, **_kwargs): | |
1020 | val = apply(controlsc.wxSlider_GetPageSize,(self,) + _args, _kwargs) | |
1021 | return val | |
1022 | def GetSelEnd(self, *_args, **_kwargs): | |
1023 | val = apply(controlsc.wxSlider_GetSelEnd,(self,) + _args, _kwargs) | |
1024 | return val | |
1025 | def GetSelStart(self, *_args, **_kwargs): | |
1026 | val = apply(controlsc.wxSlider_GetSelStart,(self,) + _args, _kwargs) | |
1027 | return val | |
1028 | def GetThumbLength(self, *_args, **_kwargs): | |
1029 | val = apply(controlsc.wxSlider_GetThumbLength,(self,) + _args, _kwargs) | |
1030 | return val | |
1031 | def GetTickFreq(self, *_args, **_kwargs): | |
1032 | val = apply(controlsc.wxSlider_GetTickFreq,(self,) + _args, _kwargs) | |
1033 | return val | |
1034 | def GetValue(self, *_args, **_kwargs): | |
1035 | val = apply(controlsc.wxSlider_GetValue,(self,) + _args, _kwargs) | |
1036 | return val | |
1037 | def SetRange(self, *_args, **_kwargs): | |
1038 | val = apply(controlsc.wxSlider_SetRange,(self,) + _args, _kwargs) | |
1039 | return val | |
1040 | def SetTickFreq(self, *_args, **_kwargs): | |
1041 | val = apply(controlsc.wxSlider_SetTickFreq,(self,) + _args, _kwargs) | |
1042 | return val | |
1043 | def SetLineSize(self, *_args, **_kwargs): | |
1044 | val = apply(controlsc.wxSlider_SetLineSize,(self,) + _args, _kwargs) | |
1045 | return val | |
1046 | def SetPageSize(self, *_args, **_kwargs): | |
1047 | val = apply(controlsc.wxSlider_SetPageSize,(self,) + _args, _kwargs) | |
1048 | return val | |
1049 | def SetSelection(self, *_args, **_kwargs): | |
1050 | val = apply(controlsc.wxSlider_SetSelection,(self,) + _args, _kwargs) | |
1051 | return val | |
1052 | def SetThumbLength(self, *_args, **_kwargs): | |
1053 | val = apply(controlsc.wxSlider_SetThumbLength,(self,) + _args, _kwargs) | |
1054 | return val | |
1055 | def SetTick(self, *_args, **_kwargs): | |
1056 | val = apply(controlsc.wxSlider_SetTick,(self,) + _args, _kwargs) | |
1057 | return val | |
1058 | def SetValue(self, *_args, **_kwargs): | |
1059 | val = apply(controlsc.wxSlider_SetValue,(self,) + _args, _kwargs) | |
1060 | return val | |
1061 | def __repr__(self): | |
1062 | return "<C wxSlider instance at %s>" % (self.this,) | |
1063 | class wxSlider(wxSliderPtr): | |
1064 | def __init__(self,*_args,**_kwargs): | |
1065 | self.this = apply(controlsc.new_wxSlider,_args,_kwargs) | |
1066 | self.thisown = 1 | |
1067 | self._setOORInfo(self) | |
1068 | ||
1069 | ||
1070 | ||
1071 | def wxPreSlider(*_args,**_kwargs): | |
1072 | val = wxSliderPtr(apply(controlsc.new_wxPreSlider,_args,_kwargs)) | |
1073 | val.thisown = 1 | |
1074 | val._setOORInfo(val) | |
1075 | return val | |
1076 | ||
1077 | ||
1078 | class wxSpinCtrlPtr(wxSpinButtonPtr): | |
1079 | def __init__(self,this): | |
1080 | self.this = this | |
1081 | self.thisown = 0 | |
1082 | def Create(self, *_args, **_kwargs): | |
1083 | val = apply(controlsc.wxSpinCtrl_Create,(self,) + _args, _kwargs) | |
1084 | return val | |
1085 | def GetMax(self, *_args, **_kwargs): | |
1086 | val = apply(controlsc.wxSpinCtrl_GetMax,(self,) + _args, _kwargs) | |
1087 | return val | |
1088 | def GetMin(self, *_args, **_kwargs): | |
1089 | val = apply(controlsc.wxSpinCtrl_GetMin,(self,) + _args, _kwargs) | |
1090 | return val | |
1091 | def GetValue(self, *_args, **_kwargs): | |
1092 | val = apply(controlsc.wxSpinCtrl_GetValue,(self,) + _args, _kwargs) | |
1093 | return val | |
1094 | def SetRange(self, *_args, **_kwargs): | |
1095 | val = apply(controlsc.wxSpinCtrl_SetRange,(self,) + _args, _kwargs) | |
1096 | return val | |
1097 | def SetValue(self, *_args, **_kwargs): | |
1098 | val = apply(controlsc.wxSpinCtrl_SetValue,(self,) + _args, _kwargs) | |
1099 | return val | |
1100 | def __repr__(self): | |
1101 | return "<C wxSpinCtrl instance at %s>" % (self.this,) | |
1102 | class wxSpinCtrl(wxSpinCtrlPtr): | |
1103 | def __init__(self,*_args,**_kwargs): | |
1104 | self.this = apply(controlsc.new_wxSpinCtrl,_args,_kwargs) | |
1105 | self.thisown = 1 | |
1106 | self._setOORInfo(self) | |
1107 | ||
1108 | ||
1109 | ||
1110 | def wxPreSpinCtrl(*_args,**_kwargs): | |
1111 | val = wxSpinCtrlPtr(apply(controlsc.new_wxPreSpinCtrl,_args,_kwargs)) | |
1112 | val.thisown = 1 | |
1113 | val._setOORInfo(val) | |
1114 | return val | |
1115 | ||
1116 | ||
1117 | ||
1118 | ||
1119 | #-------------- FUNCTION WRAPPERS ------------------ | |
1120 | ||
1121 | def wxButton_GetDefaultSize(*_args, **_kwargs): | |
1122 | val = apply(controlsc.wxButton_GetDefaultSize,_args,_kwargs) | |
1123 | if val: val = wxSizePtr(val); val.thisown = 1 | |
1124 | return val | |
1125 | ||
dbd3685c RD |
1126 | def wxTextAttr_Combine(*_args, **_kwargs): |
1127 | val = apply(controlsc.wxTextAttr_Combine,_args,_kwargs) | |
1128 | if val: val = wxTextAttrPtr(val); val.thisown = 1 | |
1129 | return val | |
1130 | ||
e6056257 RD |
1131 | |
1132 | ||
1133 | #-------------- VARIABLE WRAPPERS ------------------ | |
1134 | ||
1135 | cvar = controlsc.cvar | |
1136 | wxDefaultValidator = wxValidatorPtr(controlsc.cvar.wxDefaultValidator) |