]>
Commit | Line | Data |
---|---|---|
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 fonts import * | |
11 | ||
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 | |
86 | def AppendItems(self, *_args, **_kwargs): | |
87 | val = apply(controlsc.wxControlWithItems_AppendItems,(self,) + _args, _kwargs) | |
88 | return val | |
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) | |
141 | if val: val = wxBitmapPtr(val) ; val.thisown = 1 | |
142 | return val | |
143 | def GetBitmapDisabled(self, *_args, **_kwargs): | |
144 | val = apply(controlsc.wxBitmapButton_GetBitmapDisabled,(self,) + _args, _kwargs) | |
145 | if val: val = wxBitmapPtr(val) ; val.thisown = 1 | |
146 | return val | |
147 | def GetBitmapFocus(self, *_args, **_kwargs): | |
148 | val = apply(controlsc.wxBitmapButton_GetBitmapFocus,(self,) + _args, _kwargs) | |
149 | if val: val = wxBitmapPtr(val) ; val.thisown = 1 | |
150 | return val | |
151 | def GetBitmapSelected(self, *_args, **_kwargs): | |
152 | val = apply(controlsc.wxBitmapButton_GetBitmapSelected,(self,) + _args, _kwargs) | |
153 | if val: val = wxBitmapPtr(val) ; val.thisown = 1 | |
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(wxControlPtr): | |
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 Clear(self, *_args, **_kwargs): | |
318 | val = apply(controlsc.wxComboBox_Clear,(self,) + _args, _kwargs) | |
319 | return val | |
320 | def Delete(self, *_args, **_kwargs): | |
321 | val = apply(controlsc.wxComboBox_Delete,(self,) + _args, _kwargs) | |
322 | return val | |
323 | def GetCount(self, *_args, **_kwargs): | |
324 | val = apply(controlsc.wxComboBox_GetCount,(self,) + _args, _kwargs) | |
325 | return val | |
326 | def GetString(self, *_args, **_kwargs): | |
327 | val = apply(controlsc.wxComboBox_GetString,(self,) + _args, _kwargs) | |
328 | return val | |
329 | def FindString(self, *_args, **_kwargs): | |
330 | val = apply(controlsc.wxComboBox_FindString,(self,) + _args, _kwargs) | |
331 | return val | |
332 | def GetSelection(self, *_args, **_kwargs): | |
333 | val = apply(controlsc.wxComboBox_GetSelection,(self,) + _args, _kwargs) | |
334 | return val | |
335 | def GetStringSelection(self, *_args, **_kwargs): | |
336 | val = apply(controlsc.wxComboBox_GetStringSelection,(self,) + _args, _kwargs) | |
337 | return val | |
338 | def Append(self, *_args, **_kwargs): | |
339 | val = apply(controlsc.wxComboBox_Append,(self,) + _args, _kwargs) | |
340 | return val | |
341 | def GetClientData(self, *_args, **_kwargs): | |
342 | val = apply(controlsc.wxComboBox_GetClientData,(self,) + _args, _kwargs) | |
343 | return val | |
344 | def SetClientData(self, *_args, **_kwargs): | |
345 | val = apply(controlsc.wxComboBox_SetClientData,(self,) + _args, _kwargs) | |
346 | return val | |
347 | def __repr__(self): | |
348 | return "<C wxComboBox instance at %s>" % (self.this,) | |
349 | Number = GetCount | |
350 | Select = SetSelection | |
351 | class wxComboBox(wxComboBoxPtr): | |
352 | def __init__(self,*_args,**_kwargs): | |
353 | self.this = apply(controlsc.new_wxComboBox,_args,_kwargs) | |
354 | self.thisown = 1 | |
355 | self._setOORInfo(self) | |
356 | ||
357 | ||
358 | ||
359 | def wxPreComboBox(*_args,**_kwargs): | |
360 | val = wxComboBoxPtr(apply(controlsc.new_wxPreComboBox,_args,_kwargs)) | |
361 | val.thisown = 1 | |
362 | val._setOORInfo(val) | |
363 | return val | |
364 | ||
365 | ||
366 | class wxGaugePtr(wxControlPtr): | |
367 | def __init__(self,this): | |
368 | self.this = this | |
369 | self.thisown = 0 | |
370 | def Create(self, *_args, **_kwargs): | |
371 | val = apply(controlsc.wxGauge_Create,(self,) + _args, _kwargs) | |
372 | return val | |
373 | def GetBezelFace(self, *_args, **_kwargs): | |
374 | val = apply(controlsc.wxGauge_GetBezelFace,(self,) + _args, _kwargs) | |
375 | return val | |
376 | def GetRange(self, *_args, **_kwargs): | |
377 | val = apply(controlsc.wxGauge_GetRange,(self,) + _args, _kwargs) | |
378 | return val | |
379 | def GetShadowWidth(self, *_args, **_kwargs): | |
380 | val = apply(controlsc.wxGauge_GetShadowWidth,(self,) + _args, _kwargs) | |
381 | return val | |
382 | def GetValue(self, *_args, **_kwargs): | |
383 | val = apply(controlsc.wxGauge_GetValue,(self,) + _args, _kwargs) | |
384 | return val | |
385 | def SetBezelFace(self, *_args, **_kwargs): | |
386 | val = apply(controlsc.wxGauge_SetBezelFace,(self,) + _args, _kwargs) | |
387 | return val | |
388 | def SetRange(self, *_args, **_kwargs): | |
389 | val = apply(controlsc.wxGauge_SetRange,(self,) + _args, _kwargs) | |
390 | return val | |
391 | def SetShadowWidth(self, *_args, **_kwargs): | |
392 | val = apply(controlsc.wxGauge_SetShadowWidth,(self,) + _args, _kwargs) | |
393 | return val | |
394 | def SetValue(self, *_args, **_kwargs): | |
395 | val = apply(controlsc.wxGauge_SetValue,(self,) + _args, _kwargs) | |
396 | return val | |
397 | def __repr__(self): | |
398 | return "<C wxGauge instance at %s>" % (self.this,) | |
399 | class wxGauge(wxGaugePtr): | |
400 | def __init__(self,*_args,**_kwargs): | |
401 | self.this = apply(controlsc.new_wxGauge,_args,_kwargs) | |
402 | self.thisown = 1 | |
403 | self._setOORInfo(self) | |
404 | ||
405 | ||
406 | ||
407 | def wxPreGauge(*_args,**_kwargs): | |
408 | val = wxGaugePtr(apply(controlsc.new_wxPreGauge,_args,_kwargs)) | |
409 | val.thisown = 1 | |
410 | val._setOORInfo(val) | |
411 | return val | |
412 | ||
413 | ||
414 | class wxStaticBoxPtr(wxControlPtr): | |
415 | def __init__(self,this): | |
416 | self.this = this | |
417 | self.thisown = 0 | |
418 | def Create(self, *_args, **_kwargs): | |
419 | val = apply(controlsc.wxStaticBox_Create,(self,) + _args, _kwargs) | |
420 | return val | |
421 | def __repr__(self): | |
422 | return "<C wxStaticBox instance at %s>" % (self.this,) | |
423 | class wxStaticBox(wxStaticBoxPtr): | |
424 | def __init__(self,*_args,**_kwargs): | |
425 | self.this = apply(controlsc.new_wxStaticBox,_args,_kwargs) | |
426 | self.thisown = 1 | |
427 | self._setOORInfo(self) | |
428 | ||
429 | ||
430 | ||
431 | def wxPreStaticBox(*_args,**_kwargs): | |
432 | val = wxStaticBoxPtr(apply(controlsc.new_wxPreStaticBox,_args,_kwargs)) | |
433 | val.thisown = 1 | |
434 | val._setOORInfo(val) | |
435 | return val | |
436 | ||
437 | ||
438 | class wxStaticLinePtr(wxControlPtr): | |
439 | def __init__(self,this): | |
440 | self.this = this | |
441 | self.thisown = 0 | |
442 | def Create(self, *_args, **_kwargs): | |
443 | val = apply(controlsc.wxStaticLine_Create,(self,) + _args, _kwargs) | |
444 | return val | |
445 | def __repr__(self): | |
446 | return "<C wxStaticLine instance at %s>" % (self.this,) | |
447 | class wxStaticLine(wxStaticLinePtr): | |
448 | def __init__(self,*_args,**_kwargs): | |
449 | self.this = apply(controlsc.new_wxStaticLine,_args,_kwargs) | |
450 | self.thisown = 1 | |
451 | self._setOORInfo(self) | |
452 | ||
453 | ||
454 | ||
455 | def wxPreStaticLine(*_args,**_kwargs): | |
456 | val = wxStaticLinePtr(apply(controlsc.new_wxPreStaticLine,_args,_kwargs)) | |
457 | val.thisown = 1 | |
458 | val._setOORInfo(val) | |
459 | return val | |
460 | ||
461 | ||
462 | class wxStaticTextPtr(wxControlPtr): | |
463 | def __init__(self,this): | |
464 | self.this = this | |
465 | self.thisown = 0 | |
466 | def Create(self, *_args, **_kwargs): | |
467 | val = apply(controlsc.wxStaticText_Create,(self,) + _args, _kwargs) | |
468 | return val | |
469 | def GetLabel(self, *_args, **_kwargs): | |
470 | val = apply(controlsc.wxStaticText_GetLabel,(self,) + _args, _kwargs) | |
471 | return val | |
472 | def SetLabel(self, *_args, **_kwargs): | |
473 | val = apply(controlsc.wxStaticText_SetLabel,(self,) + _args, _kwargs) | |
474 | return val | |
475 | def __repr__(self): | |
476 | return "<C wxStaticText instance at %s>" % (self.this,) | |
477 | class wxStaticText(wxStaticTextPtr): | |
478 | def __init__(self,*_args,**_kwargs): | |
479 | self.this = apply(controlsc.new_wxStaticText,_args,_kwargs) | |
480 | self.thisown = 1 | |
481 | self._setOORInfo(self) | |
482 | ||
483 | ||
484 | ||
485 | def wxPreStaticText(*_args,**_kwargs): | |
486 | val = wxStaticTextPtr(apply(controlsc.new_wxPreStaticText,_args,_kwargs)) | |
487 | val.thisown = 1 | |
488 | val._setOORInfo(val) | |
489 | return val | |
490 | ||
491 | ||
492 | class wxListBoxPtr(wxControlWithItemsPtr): | |
493 | def __init__(self,this): | |
494 | self.this = this | |
495 | self.thisown = 0 | |
496 | def Create(self, *_args, **_kwargs): | |
497 | val = apply(controlsc.wxListBox_Create,(self,) + _args, _kwargs) | |
498 | return val | |
499 | def Clear(self, *_args, **_kwargs): | |
500 | val = apply(controlsc.wxListBox_Clear,(self,) + _args, _kwargs) | |
501 | return val | |
502 | def Deselect(self, *_args, **_kwargs): | |
503 | val = apply(controlsc.wxListBox_Deselect,(self,) + _args, _kwargs) | |
504 | return val | |
505 | def GetSelections(self, *_args, **_kwargs): | |
506 | val = apply(controlsc.wxListBox_GetSelections,(self,) + _args, _kwargs) | |
507 | return val | |
508 | def InsertItems(self, *_args, **_kwargs): | |
509 | val = apply(controlsc.wxListBox_InsertItems,(self,) + _args, _kwargs) | |
510 | return val | |
511 | def IsSelected(self, *_args, **_kwargs): | |
512 | val = apply(controlsc.wxListBox_IsSelected,(self,) + _args, _kwargs) | |
513 | return val | |
514 | def Selected(self, *_args, **_kwargs): | |
515 | val = apply(controlsc.wxListBox_Selected,(self,) + _args, _kwargs) | |
516 | return val | |
517 | def Set(self, *_args, **_kwargs): | |
518 | val = apply(controlsc.wxListBox_Set,(self,) + _args, _kwargs) | |
519 | return val | |
520 | def SetFirstItem(self, *_args, **_kwargs): | |
521 | val = apply(controlsc.wxListBox_SetFirstItem,(self,) + _args, _kwargs) | |
522 | return val | |
523 | def SetFirstItemStr(self, *_args, **_kwargs): | |
524 | val = apply(controlsc.wxListBox_SetFirstItemStr,(self,) + _args, _kwargs) | |
525 | return val | |
526 | def SetSelection(self, *_args, **_kwargs): | |
527 | val = apply(controlsc.wxListBox_SetSelection,(self,) + _args, _kwargs) | |
528 | return val | |
529 | def SetString(self, *_args, **_kwargs): | |
530 | val = apply(controlsc.wxListBox_SetString,(self,) + _args, _kwargs) | |
531 | return val | |
532 | def SetStringSelection(self, *_args, **_kwargs): | |
533 | val = apply(controlsc.wxListBox_SetStringSelection,(self,) + _args, _kwargs) | |
534 | return val | |
535 | def __repr__(self): | |
536 | return "<C wxListBox instance at %s>" % (self.this,) | |
537 | class wxListBox(wxListBoxPtr): | |
538 | def __init__(self,*_args,**_kwargs): | |
539 | self.this = apply(controlsc.new_wxListBox,_args,_kwargs) | |
540 | self.thisown = 1 | |
541 | self._setOORInfo(self) | |
542 | ||
543 | ||
544 | ||
545 | def wxPreListBox(*_args,**_kwargs): | |
546 | val = wxListBoxPtr(apply(controlsc.new_wxPreListBox,_args,_kwargs)) | |
547 | val.thisown = 1 | |
548 | val._setOORInfo(val) | |
549 | return val | |
550 | ||
551 | ||
552 | class wxCheckListBoxPtr(wxListBoxPtr): | |
553 | def __init__(self,this): | |
554 | self.this = this | |
555 | self.thisown = 0 | |
556 | def Create(self, *_args, **_kwargs): | |
557 | val = apply(controlsc.wxCheckListBox_Create,(self,) + _args, _kwargs) | |
558 | return val | |
559 | def IsChecked(self, *_args, **_kwargs): | |
560 | val = apply(controlsc.wxCheckListBox_IsChecked,(self,) + _args, _kwargs) | |
561 | return val | |
562 | def Check(self, *_args, **_kwargs): | |
563 | val = apply(controlsc.wxCheckListBox_Check,(self,) + _args, _kwargs) | |
564 | return val | |
565 | def InsertItems(self, *_args, **_kwargs): | |
566 | val = apply(controlsc.wxCheckListBox_InsertItems,(self,) + _args, _kwargs) | |
567 | return val | |
568 | def GetItemHeight(self, *_args, **_kwargs): | |
569 | val = apply(controlsc.wxCheckListBox_GetItemHeight,(self,) + _args, _kwargs) | |
570 | return val | |
571 | def __repr__(self): | |
572 | return "<C wxCheckListBox instance at %s>" % (self.this,) | |
573 | class wxCheckListBox(wxCheckListBoxPtr): | |
574 | def __init__(self,*_args,**_kwargs): | |
575 | self.this = apply(controlsc.new_wxCheckListBox,_args,_kwargs) | |
576 | self.thisown = 1 | |
577 | self._setOORInfo(self) | |
578 | ||
579 | ||
580 | ||
581 | def wxPreCheckListBox(*_args,**_kwargs): | |
582 | val = wxCheckListBoxPtr(apply(controlsc.new_wxPreCheckListBox,_args,_kwargs)) | |
583 | val.thisown = 1 | |
584 | val._setOORInfo(val) | |
585 | return val | |
586 | ||
587 | ||
588 | class wxTextAttrPtr : | |
589 | def __init__(self,this): | |
590 | self.this = this | |
591 | self.thisown = 0 | |
592 | def __del__(self,controlsc=controlsc): | |
593 | if self.thisown == 1 : | |
594 | controlsc.delete_wxTextAttr(self) | |
595 | def SetTextColour(self, *_args, **_kwargs): | |
596 | val = apply(controlsc.wxTextAttr_SetTextColour,(self,) + _args, _kwargs) | |
597 | return val | |
598 | def SetBackgroundColour(self, *_args, **_kwargs): | |
599 | val = apply(controlsc.wxTextAttr_SetBackgroundColour,(self,) + _args, _kwargs) | |
600 | return val | |
601 | def SetFont(self, *_args, **_kwargs): | |
602 | val = apply(controlsc.wxTextAttr_SetFont,(self,) + _args, _kwargs) | |
603 | return val | |
604 | def HasTextColour(self, *_args, **_kwargs): | |
605 | val = apply(controlsc.wxTextAttr_HasTextColour,(self,) + _args, _kwargs) | |
606 | return val | |
607 | def HasBackgroundColour(self, *_args, **_kwargs): | |
608 | val = apply(controlsc.wxTextAttr_HasBackgroundColour,(self,) + _args, _kwargs) | |
609 | return val | |
610 | def HasFont(self, *_args, **_kwargs): | |
611 | val = apply(controlsc.wxTextAttr_HasFont,(self,) + _args, _kwargs) | |
612 | return val | |
613 | def GetTextColour(self, *_args, **_kwargs): | |
614 | val = apply(controlsc.wxTextAttr_GetTextColour,(self,) + _args, _kwargs) | |
615 | if val: val = wxColourPtr(val) ; val.thisown = 1 | |
616 | return val | |
617 | def GetBackgroundColour(self, *_args, **_kwargs): | |
618 | val = apply(controlsc.wxTextAttr_GetBackgroundColour,(self,) + _args, _kwargs) | |
619 | if val: val = wxColourPtr(val) ; val.thisown = 1 | |
620 | return val | |
621 | def GetFont(self, *_args, **_kwargs): | |
622 | val = apply(controlsc.wxTextAttr_GetFont,(self,) + _args, _kwargs) | |
623 | if val: val = wxFontPtr(val) ; val.thisown = 1 | |
624 | return val | |
625 | def IsDefault(self, *_args, **_kwargs): | |
626 | val = apply(controlsc.wxTextAttr_IsDefault,(self,) + _args, _kwargs) | |
627 | return val | |
628 | def __repr__(self): | |
629 | return "<C wxTextAttr instance at %s>" % (self.this,) | |
630 | class wxTextAttr(wxTextAttrPtr): | |
631 | def __init__(self,*_args,**_kwargs): | |
632 | self.this = apply(controlsc.new_wxTextAttr,_args,_kwargs) | |
633 | self.thisown = 1 | |
634 | ||
635 | ||
636 | ||
637 | ||
638 | class wxTextCtrlPtr(wxControlPtr): | |
639 | def __init__(self,this): | |
640 | self.this = this | |
641 | self.thisown = 0 | |
642 | def Create(self, *_args, **_kwargs): | |
643 | val = apply(controlsc.wxTextCtrl_Create,(self,) + _args, _kwargs) | |
644 | return val | |
645 | def GetValue(self, *_args, **_kwargs): | |
646 | val = apply(controlsc.wxTextCtrl_GetValue,(self,) + _args, _kwargs) | |
647 | return val | |
648 | def SetValue(self, *_args, **_kwargs): | |
649 | val = apply(controlsc.wxTextCtrl_SetValue,(self,) + _args, _kwargs) | |
650 | return val | |
651 | def GetRange(self, *_args, **_kwargs): | |
652 | val = apply(controlsc.wxTextCtrl_GetRange,(self,) + _args, _kwargs) | |
653 | return val | |
654 | def GetLineLength(self, *_args, **_kwargs): | |
655 | val = apply(controlsc.wxTextCtrl_GetLineLength,(self,) + _args, _kwargs) | |
656 | return val | |
657 | def GetLineText(self, *_args, **_kwargs): | |
658 | val = apply(controlsc.wxTextCtrl_GetLineText,(self,) + _args, _kwargs) | |
659 | return val | |
660 | def GetNumberOfLines(self, *_args, **_kwargs): | |
661 | val = apply(controlsc.wxTextCtrl_GetNumberOfLines,(self,) + _args, _kwargs) | |
662 | return val | |
663 | def IsModified(self, *_args, **_kwargs): | |
664 | val = apply(controlsc.wxTextCtrl_IsModified,(self,) + _args, _kwargs) | |
665 | return val | |
666 | def IsEditable(self, *_args, **_kwargs): | |
667 | val = apply(controlsc.wxTextCtrl_IsEditable,(self,) + _args, _kwargs) | |
668 | return val | |
669 | def GetSelection(self, *_args, **_kwargs): | |
670 | val = apply(controlsc.wxTextCtrl_GetSelection,(self,) + _args, _kwargs) | |
671 | return val | |
672 | def GetStringSelection(self, *_args, **_kwargs): | |
673 | val = apply(controlsc.wxTextCtrl_GetStringSelection,(self,) + _args, _kwargs) | |
674 | return val | |
675 | def Clear(self, *_args, **_kwargs): | |
676 | val = apply(controlsc.wxTextCtrl_Clear,(self,) + _args, _kwargs) | |
677 | return val | |
678 | def Replace(self, *_args, **_kwargs): | |
679 | val = apply(controlsc.wxTextCtrl_Replace,(self,) + _args, _kwargs) | |
680 | return val | |
681 | def Remove(self, *_args, **_kwargs): | |
682 | val = apply(controlsc.wxTextCtrl_Remove,(self,) + _args, _kwargs) | |
683 | return val | |
684 | def LoadFile(self, *_args, **_kwargs): | |
685 | val = apply(controlsc.wxTextCtrl_LoadFile,(self,) + _args, _kwargs) | |
686 | return val | |
687 | def SaveFile(self, *_args, **_kwargs): | |
688 | val = apply(controlsc.wxTextCtrl_SaveFile,(self,) + _args, _kwargs) | |
689 | return val | |
690 | def DiscardEdits(self, *_args, **_kwargs): | |
691 | val = apply(controlsc.wxTextCtrl_DiscardEdits,(self,) + _args, _kwargs) | |
692 | return val | |
693 | def SetMaxLength(self, *_args, **_kwargs): | |
694 | val = apply(controlsc.wxTextCtrl_SetMaxLength,(self,) + _args, _kwargs) | |
695 | return val | |
696 | def WriteText(self, *_args, **_kwargs): | |
697 | val = apply(controlsc.wxTextCtrl_WriteText,(self,) + _args, _kwargs) | |
698 | return val | |
699 | def AppendText(self, *_args, **_kwargs): | |
700 | val = apply(controlsc.wxTextCtrl_AppendText,(self,) + _args, _kwargs) | |
701 | return val | |
702 | def EmulateKeyPress(self, *_args, **_kwargs): | |
703 | val = apply(controlsc.wxTextCtrl_EmulateKeyPress,(self,) + _args, _kwargs) | |
704 | return val | |
705 | def SetStyle(self, *_args, **_kwargs): | |
706 | val = apply(controlsc.wxTextCtrl_SetStyle,(self,) + _args, _kwargs) | |
707 | return val | |
708 | def SetDefaultStyle(self, *_args, **_kwargs): | |
709 | val = apply(controlsc.wxTextCtrl_SetDefaultStyle,(self,) + _args, _kwargs) | |
710 | return val | |
711 | def GetDefaultStyle(self, *_args, **_kwargs): | |
712 | val = apply(controlsc.wxTextCtrl_GetDefaultStyle,(self,) + _args, _kwargs) | |
713 | if val: val = wxTextAttrPtr(val) | |
714 | return val | |
715 | def XYToPosition(self, *_args, **_kwargs): | |
716 | val = apply(controlsc.wxTextCtrl_XYToPosition,(self,) + _args, _kwargs) | |
717 | return val | |
718 | def PositionToXY(self, *_args, **_kwargs): | |
719 | val = apply(controlsc.wxTextCtrl_PositionToXY,(self,) + _args, _kwargs) | |
720 | return val | |
721 | def ShowPosition(self, *_args, **_kwargs): | |
722 | val = apply(controlsc.wxTextCtrl_ShowPosition,(self,) + _args, _kwargs) | |
723 | return val | |
724 | def Copy(self, *_args, **_kwargs): | |
725 | val = apply(controlsc.wxTextCtrl_Copy,(self,) + _args, _kwargs) | |
726 | return val | |
727 | def Cut(self, *_args, **_kwargs): | |
728 | val = apply(controlsc.wxTextCtrl_Cut,(self,) + _args, _kwargs) | |
729 | return val | |
730 | def Paste(self, *_args, **_kwargs): | |
731 | val = apply(controlsc.wxTextCtrl_Paste,(self,) + _args, _kwargs) | |
732 | return val | |
733 | def CanCopy(self, *_args, **_kwargs): | |
734 | val = apply(controlsc.wxTextCtrl_CanCopy,(self,) + _args, _kwargs) | |
735 | return val | |
736 | def CanCut(self, *_args, **_kwargs): | |
737 | val = apply(controlsc.wxTextCtrl_CanCut,(self,) + _args, _kwargs) | |
738 | return val | |
739 | def CanPaste(self, *_args, **_kwargs): | |
740 | val = apply(controlsc.wxTextCtrl_CanPaste,(self,) + _args, _kwargs) | |
741 | return val | |
742 | def Undo(self, *_args, **_kwargs): | |
743 | val = apply(controlsc.wxTextCtrl_Undo,(self,) + _args, _kwargs) | |
744 | return val | |
745 | def Redo(self, *_args, **_kwargs): | |
746 | val = apply(controlsc.wxTextCtrl_Redo,(self,) + _args, _kwargs) | |
747 | return val | |
748 | def CanUndo(self, *_args, **_kwargs): | |
749 | val = apply(controlsc.wxTextCtrl_CanUndo,(self,) + _args, _kwargs) | |
750 | return val | |
751 | def CanRedo(self, *_args, **_kwargs): | |
752 | val = apply(controlsc.wxTextCtrl_CanRedo,(self,) + _args, _kwargs) | |
753 | return val | |
754 | def SetInsertionPoint(self, *_args, **_kwargs): | |
755 | val = apply(controlsc.wxTextCtrl_SetInsertionPoint,(self,) + _args, _kwargs) | |
756 | return val | |
757 | def SetInsertionPointEnd(self, *_args, **_kwargs): | |
758 | val = apply(controlsc.wxTextCtrl_SetInsertionPointEnd,(self,) + _args, _kwargs) | |
759 | return val | |
760 | def GetInsertionPoint(self, *_args, **_kwargs): | |
761 | val = apply(controlsc.wxTextCtrl_GetInsertionPoint,(self,) + _args, _kwargs) | |
762 | return val | |
763 | def GetLastPosition(self, *_args, **_kwargs): | |
764 | val = apply(controlsc.wxTextCtrl_GetLastPosition,(self,) + _args, _kwargs) | |
765 | return val | |
766 | def SetSelection(self, *_args, **_kwargs): | |
767 | val = apply(controlsc.wxTextCtrl_SetSelection,(self,) + _args, _kwargs) | |
768 | return val | |
769 | def SelectAll(self, *_args, **_kwargs): | |
770 | val = apply(controlsc.wxTextCtrl_SelectAll,(self,) + _args, _kwargs) | |
771 | return val | |
772 | def SetEditable(self, *_args, **_kwargs): | |
773 | val = apply(controlsc.wxTextCtrl_SetEditable,(self,) + _args, _kwargs) | |
774 | return val | |
775 | def write(self, *_args, **_kwargs): | |
776 | val = apply(controlsc.wxTextCtrl_write,(self,) + _args, _kwargs) | |
777 | return val | |
778 | def GetString(self, *_args, **_kwargs): | |
779 | val = apply(controlsc.wxTextCtrl_GetString,(self,) + _args, _kwargs) | |
780 | return val | |
781 | def __repr__(self): | |
782 | return "<C wxTextCtrl instance at %s>" % (self.this,) | |
783 | class wxTextCtrl(wxTextCtrlPtr): | |
784 | def __init__(self,*_args,**_kwargs): | |
785 | self.this = apply(controlsc.new_wxTextCtrl,_args,_kwargs) | |
786 | self.thisown = 1 | |
787 | self._setOORInfo(self) | |
788 | ||
789 | ||
790 | ||
791 | def wxPreTextCtrl(*_args,**_kwargs): | |
792 | val = wxTextCtrlPtr(apply(controlsc.new_wxPreTextCtrl,_args,_kwargs)) | |
793 | val.thisown = 1 | |
794 | val._setOORInfo(val) | |
795 | return val | |
796 | ||
797 | ||
798 | class wxScrollBarPtr(wxControlPtr): | |
799 | def __init__(self,this): | |
800 | self.this = this | |
801 | self.thisown = 0 | |
802 | def Create(self, *_args, **_kwargs): | |
803 | val = apply(controlsc.wxScrollBar_Create,(self,) + _args, _kwargs) | |
804 | return val | |
805 | def GetRange(self, *_args, **_kwargs): | |
806 | val = apply(controlsc.wxScrollBar_GetRange,(self,) + _args, _kwargs) | |
807 | return val | |
808 | def GetPageSize(self, *_args, **_kwargs): | |
809 | val = apply(controlsc.wxScrollBar_GetPageSize,(self,) + _args, _kwargs) | |
810 | return val | |
811 | def GetThumbPosition(self, *_args, **_kwargs): | |
812 | val = apply(controlsc.wxScrollBar_GetThumbPosition,(self,) + _args, _kwargs) | |
813 | return val | |
814 | def GetThumbSize(self, *_args, **_kwargs): | |
815 | val = apply(controlsc.wxScrollBar_GetThumbSize,(self,) + _args, _kwargs) | |
816 | return val | |
817 | def GetThumbLength(self, *_args, **_kwargs): | |
818 | val = apply(controlsc.wxScrollBar_GetThumbLength,(self,) + _args, _kwargs) | |
819 | return val | |
820 | def IsVertical(self, *_args, **_kwargs): | |
821 | val = apply(controlsc.wxScrollBar_IsVertical,(self,) + _args, _kwargs) | |
822 | return val | |
823 | def SetThumbPosition(self, *_args, **_kwargs): | |
824 | val = apply(controlsc.wxScrollBar_SetThumbPosition,(self,) + _args, _kwargs) | |
825 | return val | |
826 | def SetScrollbar(self, *_args, **_kwargs): | |
827 | val = apply(controlsc.wxScrollBar_SetScrollbar,(self,) + _args, _kwargs) | |
828 | return val | |
829 | def __repr__(self): | |
830 | return "<C wxScrollBar instance at %s>" % (self.this,) | |
831 | class wxScrollBar(wxScrollBarPtr): | |
832 | def __init__(self,*_args,**_kwargs): | |
833 | self.this = apply(controlsc.new_wxScrollBar,_args,_kwargs) | |
834 | self.thisown = 1 | |
835 | self._setOORInfo(self) | |
836 | ||
837 | ||
838 | ||
839 | def wxPreScrollBar(*_args,**_kwargs): | |
840 | val = wxScrollBarPtr(apply(controlsc.new_wxPreScrollBar,_args,_kwargs)) | |
841 | val.thisown = 1 | |
842 | val._setOORInfo(val) | |
843 | return val | |
844 | ||
845 | ||
846 | class wxSpinButtonPtr(wxControlPtr): | |
847 | def __init__(self,this): | |
848 | self.this = this | |
849 | self.thisown = 0 | |
850 | def Create(self, *_args, **_kwargs): | |
851 | val = apply(controlsc.wxSpinButton_Create,(self,) + _args, _kwargs) | |
852 | return val | |
853 | def GetMax(self, *_args, **_kwargs): | |
854 | val = apply(controlsc.wxSpinButton_GetMax,(self,) + _args, _kwargs) | |
855 | return val | |
856 | def GetMin(self, *_args, **_kwargs): | |
857 | val = apply(controlsc.wxSpinButton_GetMin,(self,) + _args, _kwargs) | |
858 | return val | |
859 | def GetValue(self, *_args, **_kwargs): | |
860 | val = apply(controlsc.wxSpinButton_GetValue,(self,) + _args, _kwargs) | |
861 | return val | |
862 | def SetRange(self, *_args, **_kwargs): | |
863 | val = apply(controlsc.wxSpinButton_SetRange,(self,) + _args, _kwargs) | |
864 | return val | |
865 | def SetValue(self, *_args, **_kwargs): | |
866 | val = apply(controlsc.wxSpinButton_SetValue,(self,) + _args, _kwargs) | |
867 | return val | |
868 | def __repr__(self): | |
869 | return "<C wxSpinButton instance at %s>" % (self.this,) | |
870 | class wxSpinButton(wxSpinButtonPtr): | |
871 | def __init__(self,*_args,**_kwargs): | |
872 | self.this = apply(controlsc.new_wxSpinButton,_args,_kwargs) | |
873 | self.thisown = 1 | |
874 | self._setOORInfo(self) | |
875 | ||
876 | ||
877 | ||
878 | def wxPreSpinButton(*_args,**_kwargs): | |
879 | val = wxSpinButtonPtr(apply(controlsc.new_wxPreSpinButton,_args,_kwargs)) | |
880 | val.thisown = 1 | |
881 | val._setOORInfo(val) | |
882 | return val | |
883 | ||
884 | ||
885 | class wxStaticBitmapPtr(wxControlPtr): | |
886 | def __init__(self,this): | |
887 | self.this = this | |
888 | self.thisown = 0 | |
889 | def Create(self, *_args, **_kwargs): | |
890 | val = apply(controlsc.wxStaticBitmap_Create,(self,) + _args, _kwargs) | |
891 | return val | |
892 | def GetBitmap(self, *_args, **_kwargs): | |
893 | val = apply(controlsc.wxStaticBitmap_GetBitmap,(self,) + _args, _kwargs) | |
894 | if val: val = wxBitmapPtr(val) ; val.thisown = 1 | |
895 | return val | |
896 | def SetBitmap(self, *_args, **_kwargs): | |
897 | val = apply(controlsc.wxStaticBitmap_SetBitmap,(self,) + _args, _kwargs) | |
898 | return val | |
899 | def SetIcon(self, *_args, **_kwargs): | |
900 | val = apply(controlsc.wxStaticBitmap_SetIcon,(self,) + _args, _kwargs) | |
901 | return val | |
902 | def __repr__(self): | |
903 | return "<C wxStaticBitmap instance at %s>" % (self.this,) | |
904 | class wxStaticBitmap(wxStaticBitmapPtr): | |
905 | def __init__(self,*_args,**_kwargs): | |
906 | self.this = apply(controlsc.new_wxStaticBitmap,_args,_kwargs) | |
907 | self.thisown = 1 | |
908 | self._setOORInfo(self) | |
909 | ||
910 | ||
911 | ||
912 | def wxPreStaticBitmap(*_args,**_kwargs): | |
913 | val = wxStaticBitmapPtr(apply(controlsc.new_wxPreStaticBitmap,_args,_kwargs)) | |
914 | val.thisown = 1 | |
915 | val._setOORInfo(val) | |
916 | return val | |
917 | ||
918 | ||
919 | class wxRadioBoxPtr(wxControlPtr): | |
920 | def __init__(self,this): | |
921 | self.this = this | |
922 | self.thisown = 0 | |
923 | def Create(self, *_args, **_kwargs): | |
924 | val = apply(controlsc.wxRadioBox_Create,(self,) + _args, _kwargs) | |
925 | return val | |
926 | def Enable(self, *_args, **_kwargs): | |
927 | val = apply(controlsc.wxRadioBox_Enable,(self,) + _args, _kwargs) | |
928 | return val | |
929 | def EnableItem(self, *_args, **_kwargs): | |
930 | val = apply(controlsc.wxRadioBox_EnableItem,(self,) + _args, _kwargs) | |
931 | return val | |
932 | def FindString(self, *_args, **_kwargs): | |
933 | val = apply(controlsc.wxRadioBox_FindString,(self,) + _args, _kwargs) | |
934 | return val | |
935 | def GetString(self, *_args, **_kwargs): | |
936 | val = apply(controlsc.wxRadioBox_GetString,(self,) + _args, _kwargs) | |
937 | return val | |
938 | def GetItemLabel(self, *_args, **_kwargs): | |
939 | val = apply(controlsc.wxRadioBox_GetItemLabel,(self,) + _args, _kwargs) | |
940 | return val | |
941 | def SetItemLabel(self, *_args, **_kwargs): | |
942 | val = apply(controlsc.wxRadioBox_SetItemLabel,(self,) + _args, _kwargs) | |
943 | return val | |
944 | def GetSelection(self, *_args, **_kwargs): | |
945 | val = apply(controlsc.wxRadioBox_GetSelection,(self,) + _args, _kwargs) | |
946 | return val | |
947 | def GetStringSelection(self, *_args, **_kwargs): | |
948 | val = apply(controlsc.wxRadioBox_GetStringSelection,(self,) + _args, _kwargs) | |
949 | return val | |
950 | def GetCount(self, *_args, **_kwargs): | |
951 | val = apply(controlsc.wxRadioBox_GetCount,(self,) + _args, _kwargs) | |
952 | return val | |
953 | def SetSelection(self, *_args, **_kwargs): | |
954 | val = apply(controlsc.wxRadioBox_SetSelection,(self,) + _args, _kwargs) | |
955 | return val | |
956 | def SetStringSelection(self, *_args, **_kwargs): | |
957 | val = apply(controlsc.wxRadioBox_SetStringSelection,(self,) + _args, _kwargs) | |
958 | return val | |
959 | def Show(self, *_args, **_kwargs): | |
960 | val = apply(controlsc.wxRadioBox_Show,(self,) + _args, _kwargs) | |
961 | return val | |
962 | def ShowItem(self, *_args, **_kwargs): | |
963 | val = apply(controlsc.wxRadioBox_ShowItem,(self,) + _args, _kwargs) | |
964 | return val | |
965 | def __repr__(self): | |
966 | return "<C wxRadioBox instance at %s>" % (self.this,) | |
967 | Number = GetCount | |
968 | class wxRadioBox(wxRadioBoxPtr): | |
969 | def __init__(self,*_args,**_kwargs): | |
970 | self.this = apply(controlsc.new_wxRadioBox,_args,_kwargs) | |
971 | self.thisown = 1 | |
972 | self._setOORInfo(self) | |
973 | ||
974 | ||
975 | ||
976 | def wxPreRadioBox(*_args,**_kwargs): | |
977 | val = wxRadioBoxPtr(apply(controlsc.new_wxPreRadioBox,_args,_kwargs)) | |
978 | val.thisown = 1 | |
979 | val._setOORInfo(val) | |
980 | return val | |
981 | ||
982 | ||
983 | class wxRadioButtonPtr(wxControlPtr): | |
984 | def __init__(self,this): | |
985 | self.this = this | |
986 | self.thisown = 0 | |
987 | def Create(self, *_args, **_kwargs): | |
988 | val = apply(controlsc.wxRadioButton_Create,(self,) + _args, _kwargs) | |
989 | return val | |
990 | def GetValue(self, *_args, **_kwargs): | |
991 | val = apply(controlsc.wxRadioButton_GetValue,(self,) + _args, _kwargs) | |
992 | return val | |
993 | def SetValue(self, *_args, **_kwargs): | |
994 | val = apply(controlsc.wxRadioButton_SetValue,(self,) + _args, _kwargs) | |
995 | return val | |
996 | def __repr__(self): | |
997 | return "<C wxRadioButton instance at %s>" % (self.this,) | |
998 | class wxRadioButton(wxRadioButtonPtr): | |
999 | def __init__(self,*_args,**_kwargs): | |
1000 | self.this = apply(controlsc.new_wxRadioButton,_args,_kwargs) | |
1001 | self.thisown = 1 | |
1002 | self._setOORInfo(self) | |
1003 | ||
1004 | ||
1005 | ||
1006 | def wxPreRadioButton(*_args,**_kwargs): | |
1007 | val = wxRadioButtonPtr(apply(controlsc.new_wxPreRadioButton,_args,_kwargs)) | |
1008 | val.thisown = 1 | |
1009 | val._setOORInfo(val) | |
1010 | return val | |
1011 | ||
1012 | ||
1013 | class wxSliderPtr(wxControlPtr): | |
1014 | def __init__(self,this): | |
1015 | self.this = this | |
1016 | self.thisown = 0 | |
1017 | def Create(self, *_args, **_kwargs): | |
1018 | val = apply(controlsc.wxSlider_Create,(self,) + _args, _kwargs) | |
1019 | return val | |
1020 | def ClearSel(self, *_args, **_kwargs): | |
1021 | val = apply(controlsc.wxSlider_ClearSel,(self,) + _args, _kwargs) | |
1022 | return val | |
1023 | def ClearTicks(self, *_args, **_kwargs): | |
1024 | val = apply(controlsc.wxSlider_ClearTicks,(self,) + _args, _kwargs) | |
1025 | return val | |
1026 | def GetLineSize(self, *_args, **_kwargs): | |
1027 | val = apply(controlsc.wxSlider_GetLineSize,(self,) + _args, _kwargs) | |
1028 | return val | |
1029 | def GetMax(self, *_args, **_kwargs): | |
1030 | val = apply(controlsc.wxSlider_GetMax,(self,) + _args, _kwargs) | |
1031 | return val | |
1032 | def GetMin(self, *_args, **_kwargs): | |
1033 | val = apply(controlsc.wxSlider_GetMin,(self,) + _args, _kwargs) | |
1034 | return val | |
1035 | def GetPageSize(self, *_args, **_kwargs): | |
1036 | val = apply(controlsc.wxSlider_GetPageSize,(self,) + _args, _kwargs) | |
1037 | return val | |
1038 | def GetSelEnd(self, *_args, **_kwargs): | |
1039 | val = apply(controlsc.wxSlider_GetSelEnd,(self,) + _args, _kwargs) | |
1040 | return val | |
1041 | def GetSelStart(self, *_args, **_kwargs): | |
1042 | val = apply(controlsc.wxSlider_GetSelStart,(self,) + _args, _kwargs) | |
1043 | return val | |
1044 | def GetThumbLength(self, *_args, **_kwargs): | |
1045 | val = apply(controlsc.wxSlider_GetThumbLength,(self,) + _args, _kwargs) | |
1046 | return val | |
1047 | def GetTickFreq(self, *_args, **_kwargs): | |
1048 | val = apply(controlsc.wxSlider_GetTickFreq,(self,) + _args, _kwargs) | |
1049 | return val | |
1050 | def GetValue(self, *_args, **_kwargs): | |
1051 | val = apply(controlsc.wxSlider_GetValue,(self,) + _args, _kwargs) | |
1052 | return val | |
1053 | def SetRange(self, *_args, **_kwargs): | |
1054 | val = apply(controlsc.wxSlider_SetRange,(self,) + _args, _kwargs) | |
1055 | return val | |
1056 | def SetTickFreq(self, *_args, **_kwargs): | |
1057 | val = apply(controlsc.wxSlider_SetTickFreq,(self,) + _args, _kwargs) | |
1058 | return val | |
1059 | def SetLineSize(self, *_args, **_kwargs): | |
1060 | val = apply(controlsc.wxSlider_SetLineSize,(self,) + _args, _kwargs) | |
1061 | return val | |
1062 | def SetPageSize(self, *_args, **_kwargs): | |
1063 | val = apply(controlsc.wxSlider_SetPageSize,(self,) + _args, _kwargs) | |
1064 | return val | |
1065 | def SetSelection(self, *_args, **_kwargs): | |
1066 | val = apply(controlsc.wxSlider_SetSelection,(self,) + _args, _kwargs) | |
1067 | return val | |
1068 | def SetThumbLength(self, *_args, **_kwargs): | |
1069 | val = apply(controlsc.wxSlider_SetThumbLength,(self,) + _args, _kwargs) | |
1070 | return val | |
1071 | def SetTick(self, *_args, **_kwargs): | |
1072 | val = apply(controlsc.wxSlider_SetTick,(self,) + _args, _kwargs) | |
1073 | return val | |
1074 | def SetValue(self, *_args, **_kwargs): | |
1075 | val = apply(controlsc.wxSlider_SetValue,(self,) + _args, _kwargs) | |
1076 | return val | |
1077 | def __repr__(self): | |
1078 | return "<C wxSlider instance at %s>" % (self.this,) | |
1079 | class wxSlider(wxSliderPtr): | |
1080 | def __init__(self,*_args,**_kwargs): | |
1081 | self.this = apply(controlsc.new_wxSlider,_args,_kwargs) | |
1082 | self.thisown = 1 | |
1083 | self._setOORInfo(self) | |
1084 | ||
1085 | ||
1086 | ||
1087 | def wxPreSlider(*_args,**_kwargs): | |
1088 | val = wxSliderPtr(apply(controlsc.new_wxPreSlider,_args,_kwargs)) | |
1089 | val.thisown = 1 | |
1090 | val._setOORInfo(val) | |
1091 | return val | |
1092 | ||
1093 | ||
1094 | class wxSpinCtrlPtr(wxSpinButtonPtr): | |
1095 | def __init__(self,this): | |
1096 | self.this = this | |
1097 | self.thisown = 0 | |
1098 | def Create(self, *_args, **_kwargs): | |
1099 | val = apply(controlsc.wxSpinCtrl_Create,(self,) + _args, _kwargs) | |
1100 | return val | |
1101 | def GetMax(self, *_args, **_kwargs): | |
1102 | val = apply(controlsc.wxSpinCtrl_GetMax,(self,) + _args, _kwargs) | |
1103 | return val | |
1104 | def GetMin(self, *_args, **_kwargs): | |
1105 | val = apply(controlsc.wxSpinCtrl_GetMin,(self,) + _args, _kwargs) | |
1106 | return val | |
1107 | def GetValue(self, *_args, **_kwargs): | |
1108 | val = apply(controlsc.wxSpinCtrl_GetValue,(self,) + _args, _kwargs) | |
1109 | return val | |
1110 | def SetRange(self, *_args, **_kwargs): | |
1111 | val = apply(controlsc.wxSpinCtrl_SetRange,(self,) + _args, _kwargs) | |
1112 | return val | |
1113 | def SetValue(self, *_args, **_kwargs): | |
1114 | val = apply(controlsc.wxSpinCtrl_SetValue,(self,) + _args, _kwargs) | |
1115 | return val | |
1116 | def __repr__(self): | |
1117 | return "<C wxSpinCtrl instance at %s>" % (self.this,) | |
1118 | class wxSpinCtrl(wxSpinCtrlPtr): | |
1119 | def __init__(self,*_args,**_kwargs): | |
1120 | self.this = apply(controlsc.new_wxSpinCtrl,_args,_kwargs) | |
1121 | self.thisown = 1 | |
1122 | self._setOORInfo(self) | |
1123 | ||
1124 | ||
1125 | ||
1126 | def wxPreSpinCtrl(*_args,**_kwargs): | |
1127 | val = wxSpinCtrlPtr(apply(controlsc.new_wxPreSpinCtrl,_args,_kwargs)) | |
1128 | val.thisown = 1 | |
1129 | val._setOORInfo(val) | |
1130 | return val | |
1131 | ||
1132 | ||
1133 | class wxToggleButtonPtr(wxControlPtr): | |
1134 | def __init__(self,this): | |
1135 | self.this = this | |
1136 | self.thisown = 0 | |
1137 | def Create(self, *_args, **_kwargs): | |
1138 | val = apply(controlsc.wxToggleButton_Create,(self,) + _args, _kwargs) | |
1139 | return val | |
1140 | def SetValue(self, *_args, **_kwargs): | |
1141 | val = apply(controlsc.wxToggleButton_SetValue,(self,) + _args, _kwargs) | |
1142 | return val | |
1143 | def GetValue(self, *_args, **_kwargs): | |
1144 | val = apply(controlsc.wxToggleButton_GetValue,(self,) + _args, _kwargs) | |
1145 | return val | |
1146 | def SetLabel(self, *_args, **_kwargs): | |
1147 | val = apply(controlsc.wxToggleButton_SetLabel,(self,) + _args, _kwargs) | |
1148 | return val | |
1149 | def __repr__(self): | |
1150 | return "<C wxToggleButton instance at %s>" % (self.this,) | |
1151 | class wxToggleButton(wxToggleButtonPtr): | |
1152 | def __init__(self,*_args,**_kwargs): | |
1153 | self.this = apply(controlsc.new_wxToggleButton,_args,_kwargs) | |
1154 | self.thisown = 1 | |
1155 | self._setOORInfo(self) | |
1156 | ||
1157 | ||
1158 | ||
1159 | def wxPreToggleButton(*_args,**_kwargs): | |
1160 | val = wxToggleButtonPtr(apply(controlsc.new_wxPreToggleButton,_args,_kwargs)) | |
1161 | val.thisown = 1 | |
1162 | val._setOORInfo(val) | |
1163 | return val | |
1164 | ||
1165 | ||
1166 | ||
1167 | ||
1168 | #-------------- FUNCTION WRAPPERS ------------------ | |
1169 | ||
1170 | def wxButton_GetDefaultSize(*_args, **_kwargs): | |
1171 | val = apply(controlsc.wxButton_GetDefaultSize,_args,_kwargs) | |
1172 | if val: val = wxSizePtr(val); val.thisown = 1 | |
1173 | return val | |
1174 | ||
1175 | def wxTextAttr_Combine(*_args, **_kwargs): | |
1176 | val = apply(controlsc.wxTextAttr_Combine,_args,_kwargs) | |
1177 | if val: val = wxTextAttrPtr(val); val.thisown = 1 | |
1178 | return val | |
1179 | ||
1180 | ||
1181 | ||
1182 | #-------------- VARIABLE WRAPPERS ------------------ | |
1183 | ||
1184 | cvar = controlsc.cvar | |
1185 | wxDefaultValidator = wxValidatorPtr(controlsc.cvar.wxDefaultValidator) | |
1186 | wxEVT_COMMAND_TOGGLEBUTTON_CLICKED = controlsc.wxEVT_COMMAND_TOGGLEBUTTON_CLICKED |