]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/gtk/_controls_wrap.cpp
Updates from Chris
[wxWidgets.git] / wxPython / src / gtk / _controls_wrap.cpp
1 /* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
3 * Version 1.3.22
4 *
5 * This file is not intended to be easily readable and contains a number of
6 * coding conventions designed to improve portability and efficiency. Do not make
7 * changes to this file unless you know what you are doing--modify the SWIG
8 * interface file instead.
9 * ----------------------------------------------------------------------------- */
10
11 #define SWIGPYTHON
12 #define SWIG_NOINCLUDE
13
14 #ifdef __cplusplus
15 template<class T> class SwigValueWrapper {
16 T *tt;
17 public:
18 SwigValueWrapper() : tt(0) { }
19 SwigValueWrapper(const SwigValueWrapper<T>& rhs) : tt(new T(*rhs.tt)) { }
20 SwigValueWrapper(const T& t) : tt(new T(t)) { }
21 ~SwigValueWrapper() { delete tt; }
22 SwigValueWrapper& operator=(const T& t) { delete tt; tt = new T(t); return *this; }
23 operator T&() const { return *tt; }
24 T *operator&() { return tt; }
25 private:
26 SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
27 };
28 #endif
29
30
31 #include "Python.h"
32
33 /*************************************************************** -*- c -*-
34 * python/precommon.swg
35 *
36 * Rename all exported symbols from common.swg, to avoid symbol
37 * clashes if multiple interpreters are included
38 *
39 ************************************************************************/
40
41 #define SWIG_TypeRegister SWIG_Python_TypeRegister
42 #define SWIG_TypeCheck SWIG_Python_TypeCheck
43 #define SWIG_TypeCast SWIG_Python_TypeCast
44 #define SWIG_TypeDynamicCast SWIG_Python_TypeDynamicCast
45 #define SWIG_TypeName SWIG_Python_TypeName
46 #define SWIG_TypeQuery SWIG_Python_TypeQuery
47 #define SWIG_TypeClientData SWIG_Python_TypeClientData
48 #define SWIG_PackData SWIG_Python_PackData
49 #define SWIG_UnpackData SWIG_Python_UnpackData
50
51
52 /***********************************************************************
53 * common.swg for wxPython
54 *
55 * Include only the function prototypes and such from SWIG's common.swg,
56 * but not the runtime functions themselves. This helps keep the
57 * wrapper files clean of unnecessary stuff that is in the libpy.c file
58 * anyway.
59 *
60 ************************************************************************/
61
62 #include <string.h>
63
64 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
65 # if defined(_MSC_VER) || defined(__GNUC__)
66 # if defined(STATIC_LINKED)
67 # define SWIGEXPORT(a) a
68 # define SWIGIMPORT(a) extern a
69 # else
70 # define SWIGEXPORT(a) __declspec(dllexport) a
71 # define SWIGIMPORT(a) extern a
72 # endif
73 # else
74 # if defined(__BORLANDC__)
75 # define SWIGEXPORT(a) a _export
76 # define SWIGIMPORT(a) a _export
77 # else
78 # define SWIGEXPORT(a) a
79 # define SWIGIMPORT(a) a
80 # endif
81 # endif
82 #else
83 # define SWIGEXPORT(a) a
84 # define SWIGIMPORT(a) a
85 #endif
86
87 #ifdef SWIG_GLOBAL
88 # define SWIGRUNTIME(a) SWIGEXPORT(a)
89 #else
90 # define SWIGRUNTIME(a) static a
91 #endif
92
93 #ifdef __cplusplus
94 extern "C" {
95 #endif
96
97 typedef void *(*swig_converter_func)(void *);
98 typedef struct swig_type_info *(*swig_dycast_func)(void **);
99
100 typedef struct swig_type_info {
101 const char *name;
102 swig_converter_func converter;
103 const char *str;
104 void *clientdata;
105 swig_dycast_func dcast;
106 struct swig_type_info *next;
107 struct swig_type_info *prev;
108 } swig_type_info;
109
110
111 SWIGIMPORT(swig_type_info *) SWIG_TypeRegister(swig_type_info *);
112 SWIGIMPORT(swig_type_info *) SWIG_TypeCheck(char *c, swig_type_info *);
113 SWIGIMPORT(void *) SWIG_TypeCast(swig_type_info *, void *);
114 SWIGIMPORT(swig_type_info *) SWIG_TypeDynamicCast(swig_type_info *, void **);
115 SWIGIMPORT(const char *) SWIG_TypeName(const swig_type_info *);
116 SWIGIMPORT(swig_type_info *) SWIG_TypeQuery(const char *);
117 SWIGIMPORT(void) SWIG_TypeClientData(swig_type_info *, void *);
118 SWIGIMPORT(char *) SWIG_PackData(char *, void *, int);
119 SWIGIMPORT(char *) SWIG_UnpackData(char *, void *, int);
120
121
122 #ifdef __cplusplus
123 }
124 #endif
125
126 /***********************************************************************
127 * pyrun.swg for wxPython
128 *
129 * Include only the function prototypes and such from SWIG's pyrun.swg,
130 * but not the runtime functions themselves. This helps keep the
131 * wrapper files clean of unnecessary stuff that is in the libpy.c file
132 * anyway.
133 *
134 ************************************************************************/
135
136 #include "Python.h"
137
138 #ifdef __cplusplus
139 extern "C" {
140 #endif
141
142 #define SWIG_PY_INT 1
143 #define SWIG_PY_FLOAT 2
144 #define SWIG_PY_STRING 3
145 #define SWIG_PY_POINTER 4
146 #define SWIG_PY_BINARY 5
147
148 /* Flags for pointer conversion */
149
150 #define SWIG_POINTER_EXCEPTION 0x1
151 #define SWIG_POINTER_DISOWN 0x2
152
153 /* Exception handling in wrappers */
154 #define SWIG_fail goto fail
155
156 /* Constant information structure */
157 typedef struct swig_const_info {
158 int type;
159 char *name;
160 long lvalue;
161 double dvalue;
162 void *pvalue;
163 swig_type_info **ptype;
164 } swig_const_info;
165
166 /* Common SWIG API */
167 #define SWIG_ConvertPtr(obj, pp, type, flags) \
168 SWIG_Python_ConvertPtr(obj, pp, type, flags)
169 #define SWIG_NewPointerObj(p, type, flags) \
170 SWIG_Python_NewPointerObj(p, type, flags)
171 #define SWIG_MustGetPtr(p, type, argnum, flags) \
172 SWIG_Python_MustGetPtr(p, type, argnum, flags)
173
174 /* Python-specific SWIG API */
175 #define SWIG_newvarlink() \
176 SWIG_Python_newvarlink()
177 #define SWIG_addvarlink(p, name, get_attr, set_attr) \
178 SWIG_Python_addvarlink(p, name, get_attr, set_attr)
179 #define SWIG_ConvertPacked(obj, ptr, sz, ty, flags) \
180 SWIG_Python_ConvertPacked(obj, ptr, sz, ty, flags)
181 #define SWIG_NewPackedObj(ptr, sz, type) \
182 SWIG_Python_NewPackedObj(ptr, sz, type)
183 #define SWIG_InstallConstants(d, constants) \
184 SWIG_Python_InstallConstants(d, constants)
185
186 typedef double (*py_objasdbl_conv)(PyObject *obj);
187
188 SWIGIMPORT(int) SWIG_Python_ConvertPtr(PyObject *, void **, swig_type_info *, int);
189 SWIGIMPORT(PyObject *) SWIG_Python_NewPointerObj(void *, swig_type_info *,int own);
190 SWIGIMPORT(void *) SWIG_Python_MustGetPtr(PyObject *, swig_type_info *, int, int);
191 SWIGIMPORT(PyObject *) SWIG_Python_newvarlink(void);
192 SWIGIMPORT(void) SWIG_Python_addvarlink(PyObject *, char *, PyObject *(*)(void), int (*)(PyObject *));
193 SWIGIMPORT(int) SWIG_Python_ConvertPacked(PyObject *, void *, int sz, swig_type_info *, int);
194 SWIGIMPORT(PyObject *) SWIG_Python_NewPackedObj(void *, int sz, swig_type_info *);
195 SWIGIMPORT(void) SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]);
196
197
198 /* Contract support */
199
200 #define SWIG_contract_assert(expr, msg) if (!(expr)) { PyErr_SetString(PyExc_RuntimeError, (char *) msg ); goto fail; } else
201
202 #ifdef __cplusplus
203 }
204 #endif
205
206
207 /* -------- TYPES TABLE (BEGIN) -------- */
208
209 #define SWIGTYPE_p_wxTextUrlEvent swig_types[0]
210 #define SWIGTYPE_p_wxBookCtrlEvent swig_types[1]
211 #define SWIGTYPE_p_wxSizer swig_types[2]
212 #define SWIGTYPE_p_wxCheckBox swig_types[3]
213 #define SWIGTYPE_p_wxPyTreeCtrl swig_types[4]
214 #define SWIGTYPE_p_wxEvent swig_types[5]
215 #define SWIGTYPE_p_wxGenericDirCtrl swig_types[6]
216 #define SWIGTYPE_p_bool swig_types[7]
217 #define SWIGTYPE_p_wxPyTreeItemData swig_types[8]
218 #define SWIGTYPE_p_wxItemContainer swig_types[9]
219 #define SWIGTYPE_p_wxPyListCtrl swig_types[10]
220 #define SWIGTYPE_p_wxDirFilterListCtrl swig_types[11]
221 #define SWIGTYPE_p_wxStaticLine swig_types[12]
222 #define SWIGTYPE_p_wxControl swig_types[13]
223 #define SWIGTYPE_p_wxPyControl swig_types[14]
224 #define SWIGTYPE_p_wxGauge swig_types[15]
225 #define SWIGTYPE_p_wxToolBarBase swig_types[16]
226 #define SWIGTYPE_p_wxFont swig_types[17]
227 #define SWIGTYPE_p_wxToggleButton swig_types[18]
228 #define SWIGTYPE_p_wxRadioButton swig_types[19]
229 #define SWIGTYPE_p_wxChoice swig_types[20]
230 #define SWIGTYPE_p_wxMemoryDC swig_types[21]
231 #define SWIGTYPE_p_wxListItemAttr swig_types[22]
232 #define SWIGTYPE_p_void swig_types[23]
233 #define SWIGTYPE_p_int swig_types[24]
234 #define SWIGTYPE_p_wxSize swig_types[25]
235 #define SWIGTYPE_p_wxDC swig_types[26]
236 #define SWIGTYPE_p_wxListView swig_types[27]
237 #define SWIGTYPE_p_wxIcon swig_types[28]
238 #define SWIGTYPE_p_wxVisualAttributes swig_types[29]
239 #define SWIGTYPE_p_wxTextCtrl swig_types[30]
240 #define SWIGTYPE_p_wxNotebook swig_types[31]
241 #define SWIGTYPE_p_wxNotifyEvent swig_types[32]
242 #define SWIGTYPE_p_wxArrayString swig_types[33]
243 #define SWIGTYPE_p_wxListbook swig_types[34]
244 #define SWIGTYPE_p_wxStaticBitmap swig_types[35]
245 #define SWIGTYPE_p_wxSlider swig_types[36]
246 #define SWIGTYPE_p_wxStaticBox swig_types[37]
247 #define SWIGTYPE_p_wxArrayInt swig_types[38]
248 #define SWIGTYPE_p_wxContextHelp swig_types[39]
249 #define SWIGTYPE_p_long swig_types[40]
250 #define SWIGTYPE_p_wxEvtHandler swig_types[41]
251 #define SWIGTYPE_p_wxListEvent swig_types[42]
252 #define SWIGTYPE_p_wxCheckListBox swig_types[43]
253 #define SWIGTYPE_p_wxListBox swig_types[44]
254 #define SWIGTYPE_p_wxBookCtrl swig_types[45]
255 #define SWIGTYPE_p_wxSpinButton swig_types[46]
256 #define SWIGTYPE_p_wxButton swig_types[47]
257 #define SWIGTYPE_p_wxBitmapButton swig_types[48]
258 #define SWIGTYPE_p_wxRect swig_types[49]
259 #define SWIGTYPE_p_wxContextHelpButton swig_types[50]
260 #define SWIGTYPE_p_wxRadioBox swig_types[51]
261 #define SWIGTYPE_p_wxScrollBar swig_types[52]
262 #define SWIGTYPE_p_char swig_types[53]
263 #define SWIGTYPE_p_wxTreeItemId swig_types[54]
264 #define SWIGTYPE_p_wxComboBox swig_types[55]
265 #define SWIGTYPE_p_wxHelpEvent swig_types[56]
266 #define SWIGTYPE_p_wxListItem swig_types[57]
267 #define SWIGTYPE_p_wxNotebookSizer swig_types[58]
268 #define SWIGTYPE_p_wxSpinEvent swig_types[59]
269 #define SWIGTYPE_p_wxGenericDragImage swig_types[60]
270 #define SWIGTYPE_p_wxSpinCtrl swig_types[61]
271 #define SWIGTYPE_p_wxImageList swig_types[62]
272 #define SWIGTYPE_p_wxHelpProvider swig_types[63]
273 #define SWIGTYPE_p_wxTextAttr swig_types[64]
274 #define SWIGTYPE_p_wxSimpleHelpProvider swig_types[65]
275 #define SWIGTYPE_p_wxPoint swig_types[66]
276 #define SWIGTYPE_p_wxListbookEvent swig_types[67]
277 #define SWIGTYPE_p_wxNotebookEvent swig_types[68]
278 #define SWIGTYPE_p_wxObject swig_types[69]
279 #define SWIGTYPE_p_wxCursor swig_types[70]
280 #define SWIGTYPE_p_wxKeyEvent swig_types[71]
281 #define SWIGTYPE_p_wxWindow swig_types[72]
282 #define SWIGTYPE_p_wxString swig_types[73]
283 #define SWIGTYPE_p_wxBitmap swig_types[74]
284 #define SWIGTYPE_p_wxTreeEvent swig_types[75]
285 #define SWIGTYPE_p_wxMouseEvent swig_types[76]
286 #define SWIGTYPE_p_wxCommandEvent swig_types[77]
287 #define SWIGTYPE_p_wxStaticText swig_types[78]
288 #define SWIGTYPE_p_wxControlWithItems swig_types[79]
289 #define SWIGTYPE_p_wxToolBarToolBase swig_types[80]
290 #define SWIGTYPE_p_wxColour swig_types[81]
291 #define SWIGTYPE_p_wxToolBar swig_types[82]
292 #define SWIGTYPE_p_wxBookCtrlSizer swig_types[83]
293 #define SWIGTYPE_p_wxValidator swig_types[84]
294 static swig_type_info *swig_types[86];
295
296 /* -------- TYPES TABLE (END) -------- */
297
298
299 /*-----------------------------------------------
300 @(target):= _controls_.so
301 ------------------------------------------------*/
302 #define SWIG_init init_controls_
303
304 #define SWIG_name "_controls_"
305
306 /* Auxiliar swig macros */
307
308 #ifdef __cplusplus
309 #define SWIGSTATICINLINE(a) static inline a
310 #define SWIGSTATIC(a) static a
311 #define swig_new_array(type, size) (new type[(size)])
312 #define swig_delete_array(cptr) delete[] cptr
313 #define swig_const_cast(type,a) const_cast<type>(a)
314 #define swig_static_cast(type,a) static_cast<type>(a)
315 #define swig_reinterpret_cast(type,a) reinterpret_cast<type>(a)
316
317 #ifdef HAVE_NUMERIC_CAST
318 #define swig_numeric_cast(type,a) numeric_cast<type>(a)
319 #else
320 #define swig_numeric_cast(type,a) static_cast<type>(a)
321 #endif
322
323 #else /* C case */
324
325 #define SWIGSTATICINLINE(a) static a
326 #define SWIGSTATIC(a) static a
327 #define swig_new_array(type, size) ((type*) malloc((size)*sizeof(type)))
328 #define swig_delete_array(cptr) free((char*)cptr)
329 #define swig_const_cast(type,a) (type)(a)
330 #define swig_static_cast(type,a) (type)(a)
331 #define swig_reinterpret_cast(type,a) (type)(a)
332 #define swig_numeric_cast(type,a) (type)(a)
333
334 #endif /* __cplusplus */
335
336
337 #define SWIG_FromSignedChar PyInt_FromLong
338 #define SWIG_FromUnsignedChar PyInt_FromLong
339 #define SWIG_FromShort PyInt_FromLong
340 #define SWIG_FromUnsignedShort PyInt_FromLong
341 #define SWIG_FromInt PyInt_FromLong
342 #define SWIG_FromLong PyInt_FromLong
343 #define SWIG_FromFloat PyFloat_FromDouble
344 #define SWIG_FromDouble PyFloat_FromDouble
345 #define SWIG_FromFloat PyFloat_FromDouble
346 #define SWIG_FromDouble PyFloat_FromDouble
347
348
349 #include "wx/wxPython/wxPython.h"
350 #include "wx/wxPython/pyclasses.h"
351
352 static const wxString wxPyPanelNameStr(wxPanelNameStr);
353 static const wxString wxPyEmptyString(wxEmptyString);
354 static const wxString wxPyControlNameStr(wxControlNameStr);
355
356 const wxArrayString wxPyEmptyStringArray;
357
358 static const wxString wxPyButtonNameStr(wxButtonNameStr);
359
360 #include <limits.h>
361
362
363 SWIGSTATICINLINE(long)
364 SWIG_CheckLongInRange(long value, const char* type,
365 long min_value, long max_value)
366 {
367 if (!PyErr_Occurred()) {
368 if (value < min_value) {
369 PyObject *err =
370 PyString_FromFormat("value %ld is less than '%s' minimum %ld",
371 value, type, min_value);
372
373 PyErr_SetObject(PyExc_OverflowError, err);
374 Py_DECREF(err);
375 } else if (value > max_value) {
376 PyObject *err =
377 PyString_FromFormat("value %ld is greater than '%s' maximum %ld",
378 value, type, max_value);
379 PyErr_SetObject(PyExc_OverflowError, err);
380 Py_DECREF(err);
381 }
382 }
383 return value;
384 }
385
386
387 SWIGSTATICINLINE(long)
388 SWIG_AsLong(PyObject * obj)
389 {
390 if (PyNumber_Check(obj))
391 return PyInt_AsLong(obj);
392 else {
393 PyObject* errmsg = PyString_FromFormat("Expected number, got %s",
394 obj->ob_type->tp_name);
395 PyErr_SetObject(PyExc_TypeError, errmsg);
396 Py_DECREF(errmsg);
397 return 0;
398 }
399 }
400
401
402 #if INT_MAX != LONG_MAX
403 SWIGSTATICINLINE(int)
404 SWIG_AsInt(PyObject *obj)
405 {
406 return swig_numeric_cast(int,
407 SWIG_CheckLongInRange(SWIG_AsLong(obj),
408 "int", INT_MIN, INT_MAX));
409 }
410 #else
411 #define SWIG_AsInt SWIG_AsLong
412 #endif
413
414
415 SWIGSTATICINLINE(int)
416 SWIG_CheckInt(PyObject* obj)
417 {
418 SWIG_AsInt(obj);
419 if (PyErr_Occurred()) {
420 PyErr_Clear();
421 return 0;
422 } else {
423 return 1;
424 }
425 }
426
427
428 SWIGSTATICINLINE(int)
429 SWIG_CheckLong(PyObject* obj)
430 {
431 SWIG_AsLong(obj);
432 if (PyErr_Occurred()) {
433 PyErr_Clear();
434 return 0;
435 } else {
436 return 1;
437 }
438 }
439
440 static const wxString wxPyCheckBoxNameStr(wxCheckBoxNameStr);
441
442 SWIGSTATICINLINE(bool)
443 SWIG_AsBool(PyObject *obj)
444 {
445 return PyObject_IsTrue(obj) ? true : false;
446 }
447
448
449 SWIGSTATICINLINE(int)
450 SWIG_CheckBool(PyObject* obj)
451 {
452 SWIG_AsBool(obj);
453 if (PyErr_Occurred()) {
454 PyErr_Clear();
455 return 0;
456 } else {
457 return 1;
458 }
459 }
460
461 static const wxString wxPyChoiceNameStr(wxChoiceNameStr);
462 static const wxString wxPyComboBoxNameStr(wxComboBoxNameStr);
463 static const wxString wxPyGaugeNameStr(wxGaugeNameStr);
464 static const wxString wxPyStaticBitmapNameStr(wxStaticBitmapNameStr);
465 static const wxString wxPyStaticBoxNameStr(wxStaticBoxNameStr);
466 static const wxString wxPyStaticTextNameStr(wxStaticTextNameStr);
467
468 #include <wx/checklst.h>
469
470
471 static const wxString wxPyListBoxNameStr(wxListBoxNameStr);
472 void wxListBox_Insert(wxListBox *self,wxString const &item,int pos,PyObject *clientData){
473 if (clientData) {
474 wxPyClientData* data = new wxPyClientData(clientData);
475 self->Insert(item, pos, data);
476 } else
477 self->Insert(item, pos);
478 }
479 PyObject *wxListBox_GetSelections(wxListBox *self){
480 wxArrayInt lst;
481 self->GetSelections(lst);
482 PyObject *tup = PyTuple_New(lst.GetCount());
483 for(size_t i=0; i<lst.GetCount(); i++) {
484 PyTuple_SetItem(tup, i, PyInt_FromLong(lst[i]));
485 }
486 return tup;
487 }
488 void wxListBox_SetItemForegroundColour(wxListBox *self,int item,wxColour const &c){
489 #ifdef __WXMSW__
490 if (self->GetWindowStyle() & wxLB_OWNERDRAW)
491 self->GetItem(item)->SetTextColour(c);
492 #endif
493 }
494 void wxListBox_SetItemBackgroundColour(wxListBox *self,int item,wxColour const &c){
495 #ifdef __WXMSW__
496 if (self->GetWindowStyle() & wxLB_OWNERDRAW)
497 self->GetItem(item)->SetBackgroundColour(c);
498 #endif
499 }
500 void wxListBox_SetItemFont(wxListBox *self,int item,wxFont const &f){
501 #ifdef __WXMSW__
502 if (self->GetWindowStyle() & wxLB_OWNERDRAW)
503 self->GetItem(item)->SetFont(f);
504 #endif
505 }
506 static const wxString wxPyTextCtrlNameStr(wxTextCtrlNameStr);
507
508 static PyObject* t_output_helper(PyObject* target, PyObject* o) {
509 PyObject* o2;
510 PyObject* o3;
511
512 if (!target) {
513 target = o;
514 } else if (target == Py_None) {
515 Py_DECREF(Py_None);
516 target = o;
517 } else {
518 if (!PyTuple_Check(target)) {
519 o2 = target;
520 target = PyTuple_New(1);
521 PyTuple_SetItem(target, 0, o2);
522 }
523 o3 = PyTuple_New(1);
524 PyTuple_SetItem(o3, 0, o);
525
526 o2 = target;
527 target = PySequence_Concat(o2, o3);
528 Py_DECREF(o2);
529 Py_DECREF(o3);
530 }
531 return target;
532 }
533
534
535 SWIGSTATICINLINE(unsigned long)
536 SWIG_AsUnsignedLong(PyObject * obj)
537 {
538 if (PyLong_Check(obj)) {
539 return PyLong_AsUnsignedLong(obj);
540 } else {
541 long i = SWIG_AsLong(obj);
542 if ( !PyErr_Occurred() && (i < 0)) {
543 PyErr_SetString(PyExc_TypeError, "negative value received for unsigned type");
544 }
545 return i;
546 }
547 }
548
549
550 SWIGSTATICINLINE(int)
551 SWIG_CheckUnsignedLong(PyObject* obj)
552 {
553 SWIG_AsUnsignedLong(obj);
554 if (PyErr_Occurred()) {
555 PyErr_Clear();
556 return 0;
557 } else {
558 return 1;
559 }
560 }
561
562 void wxTextCtrl_write(wxTextCtrl *self,wxString const &text){
563 self->AppendText(text);
564 }
565 wxString wxTextCtrl_GetString(wxTextCtrl *self,long from,long to){
566 return self->GetValue().Mid(from, to - from);
567 }
568 static const wxString wxPyScrollBarNameStr(wxScrollBarNameStr);
569 static const wxString wxPySPIN_BUTTON_NAME(wxSPIN_BUTTON_NAME);
570 static const wxString wxPySpinCtrlNameStr(_T("wxSpinCtrl"));
571 static const wxString wxPyRadioBoxNameStr(wxRadioBoxNameStr);
572 static const wxString wxPyRadioButtonNameStr(wxRadioButtonNameStr);
573 int wxRadioBox_GetColumnCount(wxRadioBox const *self){ return -1; }
574 int wxRadioBox_GetRowCount(wxRadioBox const *self){ return -1; }
575 int wxRadioBox_GetNextItem(wxRadioBox const *self,int item,wxDirection dir,long style){ return -1; }
576
577 #include <wx/slider.h>
578
579
580 static const wxString wxPySliderNameStr(wxSliderNameStr);
581 static const wxString wxPyToggleButtonNameStr(_T("wxToggleButton"));
582
583 #if !wxUSE_TOGGLEBTN
584 // implement dummy items for platforms that don't have this class
585
586 #define wxEVT_COMMAND_TOGGLEBUTTON_CLICKED 0
587
588 class wxToggleButton : public wxControl
589 {
590 public:
591 wxToggleButton(wxWindow *, wxWindowID, const wxString&,
592 const wxPoint&, const wxSize&, long,
593 const wxValidator&, const wxString&)
594 { wxPyRaiseNotImplemented(); }
595
596 wxToggleButton()
597 { wxPyRaiseNotImplemented(); }
598 };
599 #endif
600
601 static const wxString wxPyNOTEBOOK_NAME(wxNOTEBOOK_NAME);
602
603 SWIGSTATICINLINE(PyObject* )
604 SWIG_FromUnsignedLong(unsigned long value)
605 {
606 return (value > LONG_MAX) ?
607 PyLong_FromUnsignedLong(value)
608 : PyInt_FromLong(swig_numeric_cast(long,value));
609 }
610
611 static const wxString wxPyToolBarNameStr(wxToolBarNameStr);
612 PyObject *wxToolBarToolBase_GetClientData(wxToolBarToolBase *self){
613 wxPyUserData* udata = (wxPyUserData*)self->GetClientData();
614 if (udata) {
615 Py_INCREF(udata->m_obj);
616 return udata->m_obj;
617 } else {
618 Py_INCREF(Py_None);
619 return Py_None;
620 }
621 }
622 void wxToolBarToolBase_SetClientData(wxToolBarToolBase *self,PyObject *clientData){
623 self->SetClientData(new wxPyUserData(clientData));
624 }
625 wxToolBarToolBase *wxToolBarBase_DoAddTool(wxToolBarBase *self,int id,wxString const &label,wxBitmap const &bitmap,wxBitmap const &bmpDisabled,wxItemKind kind,wxString const &shortHelp,wxString const &longHelp,PyObject *clientData){
626 wxPyUserData* udata = NULL;
627 if (clientData && clientData != Py_None)
628 udata = new wxPyUserData(clientData);
629 return self->AddTool(id, label, bitmap, bmpDisabled, kind,
630 shortHelp, longHelp, udata);
631 }
632 wxToolBarToolBase *wxToolBarBase_DoInsertTool(wxToolBarBase *self,size_t pos,int id,wxString const &label,wxBitmap const &bitmap,wxBitmap const &bmpDisabled,wxItemKind kind,wxString const &shortHelp,wxString const &longHelp,PyObject *clientData){
633 wxPyUserData* udata = NULL;
634 if (clientData && clientData != Py_None)
635 udata = new wxPyUserData(clientData);
636 return self->InsertTool(pos, id, label, bitmap, bmpDisabled, kind,
637 shortHelp, longHelp, udata);
638 }
639 PyObject *wxToolBarBase_GetToolClientData(wxToolBarBase *self,int id){
640 wxPyUserData* udata = (wxPyUserData*)self->GetToolClientData(id);
641 if (udata) {
642 Py_INCREF(udata->m_obj);
643 return udata->m_obj;
644 } else {
645 Py_INCREF(Py_None);
646 return Py_None;
647 }
648 }
649 void wxToolBarBase_SetToolClientData(wxToolBarBase *self,int id,PyObject *clientData){
650 self->SetToolClientData(id, new wxPyUserData(clientData));
651 }
652
653 #include <wx/listctrl.h>
654
655 static const wxString wxPyListCtrlNameStr(_T("wxListCtrl"));
656 void wxListItemAttr_Destroy(wxListItemAttr *self){ delete self; }
657 // Python aware sorting function for wxPyListCtrl
658 static int wxCALLBACK wxPyListCtrl_SortItems(long item1, long item2, long funcPtr) {
659 int retval = 0;
660 PyObject* func = (PyObject*)funcPtr;
661 bool blocked = wxPyBeginBlockThreads();
662
663 PyObject* args = Py_BuildValue("(ii)", item1, item2);
664 PyObject* result = PyEval_CallObject(func, args);
665 Py_DECREF(args);
666 if (result) {
667 retval = PyInt_AsLong(result);
668 Py_DECREF(result);
669 }
670
671 wxPyEndBlockThreads(blocked);
672 return retval;
673 }
674
675 // C++ Version of a Python aware class
676 class wxPyListCtrl : public wxListCtrl {
677 DECLARE_ABSTRACT_CLASS(wxPyListCtrl);
678 public:
679 wxPyListCtrl() : wxListCtrl() {}
680 wxPyListCtrl(wxWindow* parent, wxWindowID id,
681 const wxPoint& pos,
682 const wxSize& size,
683 long style,
684 const wxValidator& validator,
685 const wxString& name) :
686 wxListCtrl(parent, id, pos, size, style, validator, name) {}
687
688 bool Create(wxWindow* parent, wxWindowID id,
689 const wxPoint& pos,
690 const wxSize& size,
691 long style,
692 const wxValidator& validator,
693 const wxString& name) {
694 return wxListCtrl::Create(parent, id, pos, size, style, validator, name);
695 }
696
697 DEC_PYCALLBACK_STRING_LONGLONG(OnGetItemText);
698 DEC_PYCALLBACK_INT_LONG(OnGetItemImage);
699 DEC_PYCALLBACK_LISTATTR_LONG(OnGetItemAttr);
700
701 PYPRIVATE;
702 };
703
704 IMPLEMENT_ABSTRACT_CLASS(wxPyListCtrl, wxListCtrl);
705
706 IMP_PYCALLBACK_STRING_LONGLONG(wxPyListCtrl, wxListCtrl, OnGetItemText);
707 IMP_PYCALLBACK_INT_LONG(wxPyListCtrl, wxListCtrl, OnGetItemImage);
708 IMP_PYCALLBACK_LISTATTR_LONG(wxPyListCtrl, wxListCtrl, OnGetItemAttr);
709
710 wxListItem *wxPyListCtrl_GetColumn(wxPyListCtrl *self,int col){
711 wxListItem item;
712 item.SetMask( wxLIST_MASK_STATE |
713 wxLIST_MASK_TEXT |
714 wxLIST_MASK_IMAGE |
715 wxLIST_MASK_DATA |
716 wxLIST_SET_ITEM |
717 wxLIST_MASK_WIDTH |
718 wxLIST_MASK_FORMAT
719 );
720 if (self->GetColumn(col, item))
721 return new wxListItem(item);
722 else
723 return NULL;
724 }
725 wxListItem *wxPyListCtrl_GetItem(wxPyListCtrl *self,long itemId,int col){
726 wxListItem* info = new wxListItem;
727 info->m_itemId = itemId;
728 info->m_col = col;
729 info->m_mask = 0xFFFF;
730 self->GetItem(*info);
731 return info;
732 }
733 wxPoint wxPyListCtrl_GetItemPosition(wxPyListCtrl *self,long item){
734 wxPoint pos;
735 self->GetItemPosition(item, pos);
736 return pos;
737 }
738 wxRect wxPyListCtrl_GetItemRect(wxPyListCtrl *self,long item,int code){
739 wxRect rect;
740 self->GetItemRect(item, rect, code);
741 return rect;
742 }
743 bool wxPyListCtrl_SortItems(wxPyListCtrl *self,PyObject *func){
744 if (!PyCallable_Check(func))
745 return False;
746 return self->SortItems((wxListCtrlCompare)wxPyListCtrl_SortItems, (long)func);
747 }
748 wxWindow *wxPyListCtrl_GetMainWindow(wxPyListCtrl *self){
749
750
751
752 return (wxWindow*)self->m_mainWin;
753
754 }
755
756 #include <wx/treectrl.h>
757 #include "wx/wxPython/pytree.h"
758
759 static const wxString wxPyTreeCtrlNameStr(_T("wxTreeCtrl"));
760 bool wxTreeItemId___eq__(wxTreeItemId *self,wxTreeItemId const *other){ return other ? (*self == *other) : False; }
761 bool wxTreeItemId___ne__(wxTreeItemId *self,wxTreeItemId const *other){ return other ? (*self != *other) : True; }
762 void wxPyTreeItemData_Destroy(wxPyTreeItemData *self){ delete self; }
763 // C++ version of Python aware wxTreeCtrl
764 class wxPyTreeCtrl : public wxTreeCtrl {
765 DECLARE_ABSTRACT_CLASS(wxPyTreeCtrl);
766 public:
767 wxPyTreeCtrl() : wxTreeCtrl() {}
768 wxPyTreeCtrl(wxWindow *parent, wxWindowID id,
769 const wxPoint& pos,
770 const wxSize& size,
771 long style,
772 const wxValidator& validator,
773 const wxString& name) :
774 wxTreeCtrl(parent, id, pos, size, style, validator, name) {}
775
776 bool Create(wxWindow *parent, wxWindowID id,
777 const wxPoint& pos,
778 const wxSize& size,
779 long style,
780 const wxValidator& validator,
781 const wxString& name) {
782 return wxTreeCtrl::Create(parent, id, pos, size, style, validator, name);
783 }
784
785
786 int OnCompareItems(const wxTreeItemId& item1,
787 const wxTreeItemId& item2) {
788 int rval = 0;
789 bool found;
790 bool blocked = wxPyBeginBlockThreads();
791 if ((found = wxPyCBH_findCallback(m_myInst, "OnCompareItems"))) {
792 PyObject *o1 = wxPyConstructObject((void*)&item1, wxT("wxTreeItemId"), False);
793 PyObject *o2 = wxPyConstructObject((void*)&item2, wxT("wxTreeItemId"), False);
794 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OO)",o1,o2));
795 Py_DECREF(o1);
796 Py_DECREF(o2);
797 }
798 wxPyEndBlockThreads(blocked);
799 if (! found)
800 rval = wxTreeCtrl::OnCompareItems(item1, item2);
801 return rval;
802 }
803 PYPRIVATE;
804 };
805
806 IMPLEMENT_ABSTRACT_CLASS(wxPyTreeCtrl, wxTreeCtrl);
807
808
809
810 #if UINT_MAX < LONG_MAX
811 #define SWIG_FromUnsignedInt SWIG_FromLong
812 #else
813 #define SWIG_FromUnsignedInt SWIG_FromUnsignedLong
814 #endif
815
816
817 SWIGSTATICINLINE(unsigned long)
818 SWIG_CheckUnsignedLongInRange(unsigned long value, const char* type,
819 unsigned long max_value)
820 {
821 if (!PyErr_Occurred()) {
822 if (value > max_value) {
823 PyObject *err =
824 PyString_FromFormat("value %ld is greater than '%s' minimum %ld",
825 value, type, max_value);
826 PyErr_SetObject(PyExc_OverflowError, err);
827 Py_DECREF(err);
828 }
829 }
830 return value;
831 }
832
833
834 #if UINT_MAX != ULONG_MAX
835 SWIGSTATICINLINE(unsigned int)
836 SWIG_AsUnsignedInt(PyObject *obj)
837 {
838 return swig_numeric_cast(unsigned int,
839 SWIG_CheckUnsignedLongInRange(SWIG_AsUnsignedLong(obj),
840 "unsigned int", UINT_MAX));
841 }
842 #else
843 #define SWIG_AsUnsignedInt SWIG_AsUnsignedLong
844 #endif
845
846
847 SWIGSTATICINLINE(int)
848 SWIG_CheckUnsignedInt(PyObject* obj)
849 {
850 SWIG_AsUnsignedInt(obj);
851 if (PyErr_Occurred()) {
852 PyErr_Clear();
853 return 0;
854 } else {
855 return 1;
856 }
857 }
858
859 wxPyTreeItemData *wxPyTreeCtrl_GetItemData(wxPyTreeCtrl *self,wxTreeItemId const &item){
860 wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item);
861 if (data == NULL) {
862 data = new wxPyTreeItemData();
863 data->SetId(item); // set the id
864 self->SetItemData(item, data);
865 }
866 return data;
867 }
868 PyObject *wxPyTreeCtrl_GetItemPyData(wxPyTreeCtrl *self,wxTreeItemId const &item){
869 wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item);
870 if (data == NULL) {
871 data = new wxPyTreeItemData();
872 data->SetId(item); // set the id
873 self->SetItemData(item, data);
874 }
875 return data->GetData();
876 }
877 void wxPyTreeCtrl_SetItemData(wxPyTreeCtrl *self,wxTreeItemId const &item,wxPyTreeItemData *data){
878 data->SetId(item); // set the id
879 self->SetItemData(item, data);
880 }
881 void wxPyTreeCtrl_SetItemPyData(wxPyTreeCtrl *self,wxTreeItemId const &item,PyObject *obj){
882 wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item);
883 if (data == NULL) {
884 data = new wxPyTreeItemData(obj);
885 data->SetId(item); // set the id
886 self->SetItemData(item, data);
887 } else
888 data->SetData(obj);
889 }
890 PyObject *wxPyTreeCtrl_GetSelections(wxPyTreeCtrl *self){
891 bool blocked = wxPyBeginBlockThreads();
892 PyObject* rval = PyList_New(0);
893 wxArrayTreeItemIds array;
894 size_t num, x;
895 num = self->GetSelections(array);
896 for (x=0; x < num; x++) {
897 wxTreeItemId *tii = new wxTreeItemId(array.Item(x));
898 PyObject* item = wxPyConstructObject((void*)tii, wxT("wxTreeItemId"), True);
899 PyList_Append(rval, item);
900 Py_DECREF(item);
901 }
902 wxPyEndBlockThreads(blocked);
903 return rval;
904 }
905 PyObject *wxPyTreeCtrl_GetFirstChild(wxPyTreeCtrl *self,wxTreeItemId const &item){
906 void* cookie = 0;
907 wxTreeItemId* ritem = new wxTreeItemId(self->GetFirstChild(item, cookie));
908 bool blocked = wxPyBeginBlockThreads();
909 PyObject* tup = PyTuple_New(2);
910 PyTuple_SET_ITEM(tup, 0, wxPyConstructObject(ritem, wxT("wxTreeItemId"), True));
911 PyTuple_SET_ITEM(tup, 1, wxPyMakeSwigPtr(cookie, wxT("void")));
912 wxPyEndBlockThreads(blocked);
913 return tup;
914 }
915 PyObject *wxPyTreeCtrl_GetNextChild(wxPyTreeCtrl *self,wxTreeItemId const &item,void *cookie){
916 wxTreeItemId* ritem = new wxTreeItemId(self->GetNextChild(item, cookie));
917 bool blocked = wxPyBeginBlockThreads();
918 PyObject* tup = PyTuple_New(2);
919 PyTuple_SET_ITEM(tup, 0, wxPyConstructObject(ritem, wxT("wxTreeItemId"), True));
920 PyTuple_SET_ITEM(tup, 1, wxPyMakeSwigPtr(cookie, wxT("void")));
921 wxPyEndBlockThreads(blocked);
922 return tup;
923 }
924 PyObject *wxPyTreeCtrl_GetBoundingRect(wxPyTreeCtrl *self,wxTreeItemId const &item,bool textOnly){
925 wxRect rect;
926 if (self->GetBoundingRect(item, rect, textOnly)) {
927 bool blocked = wxPyBeginBlockThreads();
928 wxRect* r = new wxRect(rect);
929 PyObject* val = wxPyConstructObject((void*)r, wxT("wxRect"), True);
930 wxPyEndBlockThreads(blocked);
931 return val;
932 }
933 else
934 RETURN_NONE();
935 }
936 static const wxString wxPyDirDialogDefaultFolderStr(wxDirDialogDefaultFolderStr);
937 // C++ version of Python aware wxControl
938 class wxPyControl : public wxControl
939 {
940 DECLARE_DYNAMIC_CLASS(wxPyControl)
941 public:
942 wxPyControl() : wxControl() {}
943 wxPyControl(wxWindow* parent, const wxWindowID id,
944 const wxPoint& pos = wxDefaultPosition,
945 const wxSize& size = wxDefaultSize,
946 long style = 0,
947 const wxValidator& validator=wxDefaultValidator,
948 const wxString& name = wxPyControlNameStr)
949 : wxControl(parent, id, pos, size, style, validator, name) {}
950
951 void SetBestSize(const wxSize& size) { wxControl::SetBestSize(size); }
952
953 DEC_PYCALLBACK_VOID_INT4(DoMoveWindow);
954 DEC_PYCALLBACK_VOID_INT5(DoSetSize);
955 DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize);
956 DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize);
957
958 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize);
959 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize);
960 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition);
961
962 DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize);
963 DEC_PYCALLBACK_SIZE_const(DoGetBestSize);
964
965 DEC_PYCALLBACK__(InitDialog);
966 DEC_PYCALLBACK_BOOL_(TransferDataFromWindow);
967 DEC_PYCALLBACK_BOOL_(TransferDataToWindow);
968 DEC_PYCALLBACK_BOOL_(Validate);
969
970 DEC_PYCALLBACK_BOOL_const(AcceptsFocus);
971 DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard);
972 DEC_PYCALLBACK_SIZE_const(GetMaxSize);
973
974 DEC_PYCALLBACK_VOID_WXWINBASE(AddChild);
975 DEC_PYCALLBACK_VOID_WXWINBASE(RemoveChild);
976
977 DEC_PYCALLBACK_BOOL_const(ShouldInheritColours);
978 DEC_PYCALLBACK__COLOUR(ApplyParentThemeBackground);
979 DEC_PYCALLBACK_VIZATTR_(GetDefaultAttributes);
980
981 PYPRIVATE;
982 };
983
984 IMPLEMENT_DYNAMIC_CLASS(wxPyControl, wxControl);
985
986 IMP_PYCALLBACK_VOID_INT4(wxPyControl, wxControl, DoMoveWindow);
987 IMP_PYCALLBACK_VOID_INT5(wxPyControl, wxControl, DoSetSize);
988 IMP_PYCALLBACK_VOID_INTINT(wxPyControl, wxControl, DoSetClientSize);
989 IMP_PYCALLBACK_VOID_INTINT(wxPyControl, wxControl, DoSetVirtualSize);
990
991 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyControl, wxControl, DoGetSize);
992 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyControl, wxControl, DoGetClientSize);
993 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyControl, wxControl, DoGetPosition);
994
995 IMP_PYCALLBACK_SIZE_const(wxPyControl, wxControl, DoGetVirtualSize);
996 IMP_PYCALLBACK_SIZE_const(wxPyControl, wxControl, DoGetBestSize);
997
998 IMP_PYCALLBACK__(wxPyControl, wxControl, InitDialog);
999 IMP_PYCALLBACK_BOOL_(wxPyControl, wxControl, TransferDataFromWindow);
1000 IMP_PYCALLBACK_BOOL_(wxPyControl, wxControl, TransferDataToWindow);
1001 IMP_PYCALLBACK_BOOL_(wxPyControl, wxControl, Validate);
1002
1003 IMP_PYCALLBACK_BOOL_const(wxPyControl, wxControl, AcceptsFocus);
1004 IMP_PYCALLBACK_BOOL_const(wxPyControl, wxControl, AcceptsFocusFromKeyboard);
1005 IMP_PYCALLBACK_SIZE_const(wxPyControl, wxControl, GetMaxSize);
1006
1007 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyControl, wxControl, AddChild);
1008 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyControl, wxControl, RemoveChild);
1009
1010 IMP_PYCALLBACK_BOOL_const(wxPyControl, wxControl, ShouldInheritColours);
1011 IMP_PYCALLBACK__COLOUR(wxPyControl, wxControl, ApplyParentThemeBackground);
1012 IMP_PYCALLBACK_VIZATTR_(wxPyControl, wxControl, GetDefaultAttributes);
1013
1014
1015
1016 void wxHelpProvider_Destroy(wxHelpProvider *self){ delete self; }
1017
1018 #include <wx/generic/dragimgg.h>
1019
1020 #ifdef __cplusplus
1021 extern "C" {
1022 #endif
1023 static int _wrap_ButtonNameStr_set(PyObject *_val) {
1024 PyErr_SetString(PyExc_TypeError,"Variable ButtonNameStr is read-only.");
1025 return 1;
1026 }
1027
1028
1029 static PyObject *_wrap_ButtonNameStr_get() {
1030 PyObject *pyobj;
1031
1032 {
1033 #if wxUSE_UNICODE
1034 pyobj = PyUnicode_FromWideChar((&wxPyButtonNameStr)->c_str(), (&wxPyButtonNameStr)->Len());
1035 #else
1036 pyobj = PyString_FromStringAndSize((&wxPyButtonNameStr)->c_str(), (&wxPyButtonNameStr)->Len());
1037 #endif
1038 }
1039 return pyobj;
1040 }
1041
1042
1043 static PyObject *_wrap_new_Button(PyObject *self, PyObject *args, PyObject *kwargs) {
1044 PyObject *resultobj;
1045 wxWindow *arg1 = (wxWindow *) 0 ;
1046 int arg2 = (int) -1 ;
1047 wxString const &arg3_defvalue = wxPyEmptyString ;
1048 wxString *arg3 = (wxString *) &arg3_defvalue ;
1049 wxPoint const &arg4_defvalue = wxDefaultPosition ;
1050 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
1051 wxSize const &arg5_defvalue = wxDefaultSize ;
1052 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
1053 long arg6 = (long) 0 ;
1054 wxValidator const &arg7_defvalue = wxDefaultValidator ;
1055 wxValidator *arg7 = (wxValidator *) &arg7_defvalue ;
1056 wxString const &arg8_defvalue = wxPyButtonNameStr ;
1057 wxString *arg8 = (wxString *) &arg8_defvalue ;
1058 wxButton *result;
1059 bool temp3 = False ;
1060 wxPoint temp4 ;
1061 wxSize temp5 ;
1062 bool temp8 = False ;
1063 PyObject * obj0 = 0 ;
1064 PyObject * obj1 = 0 ;
1065 PyObject * obj2 = 0 ;
1066 PyObject * obj3 = 0 ;
1067 PyObject * obj4 = 0 ;
1068 PyObject * obj5 = 0 ;
1069 PyObject * obj6 = 0 ;
1070 PyObject * obj7 = 0 ;
1071 char *kwnames[] = {
1072 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
1073 };
1074
1075 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOO:new_Button",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
1076 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
1077 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1078 if (obj1) {
1079 arg2 = (int) SWIG_AsInt(obj1);
1080 if (PyErr_Occurred()) SWIG_fail;
1081 }
1082 if (obj2) {
1083 {
1084 arg3 = wxString_in_helper(obj2);
1085 if (arg3 == NULL) SWIG_fail;
1086 temp3 = True;
1087 }
1088 }
1089 if (obj3) {
1090 {
1091 arg4 = &temp4;
1092 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
1093 }
1094 }
1095 if (obj4) {
1096 {
1097 arg5 = &temp5;
1098 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
1099 }
1100 }
1101 if (obj5) {
1102 arg6 = (long) SWIG_AsLong(obj5);
1103 if (PyErr_Occurred()) SWIG_fail;
1104 }
1105 if (obj6) {
1106 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxValidator,
1107 SWIG_POINTER_EXCEPTION | 0)) == -1)
1108 SWIG_fail;
1109 if (arg7 == NULL) {
1110 PyErr_SetString(PyExc_TypeError,"null reference");
1111 SWIG_fail;
1112 }
1113 }
1114 if (obj7) {
1115 {
1116 arg8 = wxString_in_helper(obj7);
1117 if (arg8 == NULL) SWIG_fail;
1118 temp8 = True;
1119 }
1120 }
1121 {
1122 if (!wxPyCheckForApp()) SWIG_fail;
1123 PyThreadState* __tstate = wxPyBeginAllowThreads();
1124 result = (wxButton *)new wxButton(arg1,arg2,(wxString const &)*arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxValidator const &)*arg7,(wxString const &)*arg8);
1125
1126 wxPyEndAllowThreads(__tstate);
1127 if (PyErr_Occurred()) SWIG_fail;
1128 }
1129 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxButton, 1);
1130 {
1131 if (temp3)
1132 delete arg3;
1133 }
1134 {
1135 if (temp8)
1136 delete arg8;
1137 }
1138 return resultobj;
1139 fail:
1140 {
1141 if (temp3)
1142 delete arg3;
1143 }
1144 {
1145 if (temp8)
1146 delete arg8;
1147 }
1148 return NULL;
1149 }
1150
1151
1152 static PyObject *_wrap_new_PreButton(PyObject *self, PyObject *args, PyObject *kwargs) {
1153 PyObject *resultobj;
1154 wxButton *result;
1155 char *kwnames[] = {
1156 NULL
1157 };
1158
1159 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreButton",kwnames)) goto fail;
1160 {
1161 if (!wxPyCheckForApp()) SWIG_fail;
1162 PyThreadState* __tstate = wxPyBeginAllowThreads();
1163 result = (wxButton *)new wxButton();
1164
1165 wxPyEndAllowThreads(__tstate);
1166 if (PyErr_Occurred()) SWIG_fail;
1167 }
1168 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxButton, 1);
1169 return resultobj;
1170 fail:
1171 return NULL;
1172 }
1173
1174
1175 static PyObject *_wrap_Button_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
1176 PyObject *resultobj;
1177 wxButton *arg1 = (wxButton *) 0 ;
1178 wxWindow *arg2 = (wxWindow *) 0 ;
1179 int arg3 = (int) -1 ;
1180 wxString const &arg4_defvalue = wxPyEmptyString ;
1181 wxString *arg4 = (wxString *) &arg4_defvalue ;
1182 wxPoint const &arg5_defvalue = wxDefaultPosition ;
1183 wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
1184 wxSize const &arg6_defvalue = wxDefaultSize ;
1185 wxSize *arg6 = (wxSize *) &arg6_defvalue ;
1186 long arg7 = (long) 0 ;
1187 wxValidator const &arg8_defvalue = wxDefaultValidator ;
1188 wxValidator *arg8 = (wxValidator *) &arg8_defvalue ;
1189 wxString const &arg9_defvalue = wxPyButtonNameStr ;
1190 wxString *arg9 = (wxString *) &arg9_defvalue ;
1191 bool result;
1192 bool temp4 = False ;
1193 wxPoint temp5 ;
1194 wxSize temp6 ;
1195 bool temp9 = False ;
1196 PyObject * obj0 = 0 ;
1197 PyObject * obj1 = 0 ;
1198 PyObject * obj2 = 0 ;
1199 PyObject * obj3 = 0 ;
1200 PyObject * obj4 = 0 ;
1201 PyObject * obj5 = 0 ;
1202 PyObject * obj6 = 0 ;
1203 PyObject * obj7 = 0 ;
1204 PyObject * obj8 = 0 ;
1205 char *kwnames[] = {
1206 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
1207 };
1208
1209 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOO:Button_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail;
1210 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxButton,
1211 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1212 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
1213 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1214 if (obj2) {
1215 arg3 = (int) SWIG_AsInt(obj2);
1216 if (PyErr_Occurred()) SWIG_fail;
1217 }
1218 if (obj3) {
1219 {
1220 arg4 = wxString_in_helper(obj3);
1221 if (arg4 == NULL) SWIG_fail;
1222 temp4 = True;
1223 }
1224 }
1225 if (obj4) {
1226 {
1227 arg5 = &temp5;
1228 if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
1229 }
1230 }
1231 if (obj5) {
1232 {
1233 arg6 = &temp6;
1234 if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
1235 }
1236 }
1237 if (obj6) {
1238 arg7 = (long) SWIG_AsLong(obj6);
1239 if (PyErr_Occurred()) SWIG_fail;
1240 }
1241 if (obj7) {
1242 if ((SWIG_ConvertPtr(obj7,(void **)(&arg8),SWIGTYPE_p_wxValidator,
1243 SWIG_POINTER_EXCEPTION | 0)) == -1)
1244 SWIG_fail;
1245 if (arg8 == NULL) {
1246 PyErr_SetString(PyExc_TypeError,"null reference");
1247 SWIG_fail;
1248 }
1249 }
1250 if (obj8) {
1251 {
1252 arg9 = wxString_in_helper(obj8);
1253 if (arg9 == NULL) SWIG_fail;
1254 temp9 = True;
1255 }
1256 }
1257 {
1258 PyThreadState* __tstate = wxPyBeginAllowThreads();
1259 result = (bool)(arg1)->Create(arg2,arg3,(wxString const &)*arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,arg7,(wxValidator const &)*arg8,(wxString const &)*arg9);
1260
1261 wxPyEndAllowThreads(__tstate);
1262 if (PyErr_Occurred()) SWIG_fail;
1263 }
1264 {
1265 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
1266 }
1267 {
1268 if (temp4)
1269 delete arg4;
1270 }
1271 {
1272 if (temp9)
1273 delete arg9;
1274 }
1275 return resultobj;
1276 fail:
1277 {
1278 if (temp4)
1279 delete arg4;
1280 }
1281 {
1282 if (temp9)
1283 delete arg9;
1284 }
1285 return NULL;
1286 }
1287
1288
1289 static PyObject *_wrap_Button_SetDefault(PyObject *self, PyObject *args, PyObject *kwargs) {
1290 PyObject *resultobj;
1291 wxButton *arg1 = (wxButton *) 0 ;
1292 PyObject * obj0 = 0 ;
1293 char *kwnames[] = {
1294 (char *) "self", NULL
1295 };
1296
1297 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Button_SetDefault",kwnames,&obj0)) goto fail;
1298 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxButton,
1299 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1300 {
1301 PyThreadState* __tstate = wxPyBeginAllowThreads();
1302 (arg1)->SetDefault();
1303
1304 wxPyEndAllowThreads(__tstate);
1305 if (PyErr_Occurred()) SWIG_fail;
1306 }
1307 Py_INCREF(Py_None); resultobj = Py_None;
1308 return resultobj;
1309 fail:
1310 return NULL;
1311 }
1312
1313
1314 static PyObject *_wrap_Button_GetDefaultSize(PyObject *self, PyObject *args, PyObject *kwargs) {
1315 PyObject *resultobj;
1316 wxSize result;
1317 char *kwnames[] = {
1318 NULL
1319 };
1320
1321 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":Button_GetDefaultSize",kwnames)) goto fail;
1322 {
1323 PyThreadState* __tstate = wxPyBeginAllowThreads();
1324 result = wxButton::GetDefaultSize();
1325
1326 wxPyEndAllowThreads(__tstate);
1327 if (PyErr_Occurred()) SWIG_fail;
1328 }
1329 {
1330 wxSize * resultptr;
1331 resultptr = new wxSize((wxSize &) result);
1332 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
1333 }
1334 return resultobj;
1335 fail:
1336 return NULL;
1337 }
1338
1339
1340 static PyObject *_wrap_Button_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
1341 PyObject *resultobj;
1342 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
1343 wxVisualAttributes result;
1344 PyObject * obj0 = 0 ;
1345 char *kwnames[] = {
1346 (char *) "variant", NULL
1347 };
1348
1349 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:Button_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
1350 if (obj0) {
1351 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
1352 if (PyErr_Occurred()) SWIG_fail;
1353 }
1354 {
1355 if (!wxPyCheckForApp()) SWIG_fail;
1356 PyThreadState* __tstate = wxPyBeginAllowThreads();
1357 result = wxButton::GetClassDefaultAttributes((wxWindowVariant )arg1);
1358
1359 wxPyEndAllowThreads(__tstate);
1360 if (PyErr_Occurred()) SWIG_fail;
1361 }
1362 {
1363 wxVisualAttributes * resultptr;
1364 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
1365 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
1366 }
1367 return resultobj;
1368 fail:
1369 return NULL;
1370 }
1371
1372
1373 static PyObject * Button_swigregister(PyObject *self, PyObject *args) {
1374 PyObject *obj;
1375 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
1376 SWIG_TypeClientData(SWIGTYPE_p_wxButton, obj);
1377 Py_INCREF(obj);
1378 return Py_BuildValue((char *)"");
1379 }
1380 static PyObject *_wrap_new_BitmapButton(PyObject *self, PyObject *args, PyObject *kwargs) {
1381 PyObject *resultobj;
1382 wxWindow *arg1 = (wxWindow *) 0 ;
1383 int arg2 = (int) -1 ;
1384 wxBitmap const &arg3_defvalue = wxNullBitmap ;
1385 wxBitmap *arg3 = (wxBitmap *) &arg3_defvalue ;
1386 wxPoint const &arg4_defvalue = wxDefaultPosition ;
1387 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
1388 wxSize const &arg5_defvalue = wxDefaultSize ;
1389 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
1390 long arg6 = (long) wxBU_AUTODRAW ;
1391 wxValidator const &arg7_defvalue = wxDefaultValidator ;
1392 wxValidator *arg7 = (wxValidator *) &arg7_defvalue ;
1393 wxString const &arg8_defvalue = wxPyButtonNameStr ;
1394 wxString *arg8 = (wxString *) &arg8_defvalue ;
1395 wxBitmapButton *result;
1396 wxPoint temp4 ;
1397 wxSize temp5 ;
1398 bool temp8 = False ;
1399 PyObject * obj0 = 0 ;
1400 PyObject * obj1 = 0 ;
1401 PyObject * obj2 = 0 ;
1402 PyObject * obj3 = 0 ;
1403 PyObject * obj4 = 0 ;
1404 PyObject * obj5 = 0 ;
1405 PyObject * obj6 = 0 ;
1406 PyObject * obj7 = 0 ;
1407 char *kwnames[] = {
1408 (char *) "parent",(char *) "id",(char *) "bitmap",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
1409 };
1410
1411 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOO:new_BitmapButton",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
1412 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
1413 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1414 if (obj1) {
1415 arg2 = (int) SWIG_AsInt(obj1);
1416 if (PyErr_Occurred()) SWIG_fail;
1417 }
1418 if (obj2) {
1419 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxBitmap,
1420 SWIG_POINTER_EXCEPTION | 0)) == -1)
1421 SWIG_fail;
1422 if (arg3 == NULL) {
1423 PyErr_SetString(PyExc_TypeError,"null reference");
1424 SWIG_fail;
1425 }
1426 }
1427 if (obj3) {
1428 {
1429 arg4 = &temp4;
1430 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
1431 }
1432 }
1433 if (obj4) {
1434 {
1435 arg5 = &temp5;
1436 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
1437 }
1438 }
1439 if (obj5) {
1440 arg6 = (long) SWIG_AsLong(obj5);
1441 if (PyErr_Occurred()) SWIG_fail;
1442 }
1443 if (obj6) {
1444 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxValidator,
1445 SWIG_POINTER_EXCEPTION | 0)) == -1)
1446 SWIG_fail;
1447 if (arg7 == NULL) {
1448 PyErr_SetString(PyExc_TypeError,"null reference");
1449 SWIG_fail;
1450 }
1451 }
1452 if (obj7) {
1453 {
1454 arg8 = wxString_in_helper(obj7);
1455 if (arg8 == NULL) SWIG_fail;
1456 temp8 = True;
1457 }
1458 }
1459 {
1460 if (!wxPyCheckForApp()) SWIG_fail;
1461 PyThreadState* __tstate = wxPyBeginAllowThreads();
1462 result = (wxBitmapButton *)new wxBitmapButton(arg1,arg2,(wxBitmap const &)*arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxValidator const &)*arg7,(wxString const &)*arg8);
1463
1464 wxPyEndAllowThreads(__tstate);
1465 if (PyErr_Occurred()) SWIG_fail;
1466 }
1467 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxBitmapButton, 1);
1468 {
1469 if (temp8)
1470 delete arg8;
1471 }
1472 return resultobj;
1473 fail:
1474 {
1475 if (temp8)
1476 delete arg8;
1477 }
1478 return NULL;
1479 }
1480
1481
1482 static PyObject *_wrap_new_PreBitmapButton(PyObject *self, PyObject *args, PyObject *kwargs) {
1483 PyObject *resultobj;
1484 wxBitmapButton *result;
1485 char *kwnames[] = {
1486 NULL
1487 };
1488
1489 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreBitmapButton",kwnames)) goto fail;
1490 {
1491 if (!wxPyCheckForApp()) SWIG_fail;
1492 PyThreadState* __tstate = wxPyBeginAllowThreads();
1493 result = (wxBitmapButton *)new wxBitmapButton();
1494
1495 wxPyEndAllowThreads(__tstate);
1496 if (PyErr_Occurred()) SWIG_fail;
1497 }
1498 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxBitmapButton, 1);
1499 return resultobj;
1500 fail:
1501 return NULL;
1502 }
1503
1504
1505 static PyObject *_wrap_BitmapButton_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
1506 PyObject *resultobj;
1507 wxBitmapButton *arg1 = (wxBitmapButton *) 0 ;
1508 wxWindow *arg2 = (wxWindow *) 0 ;
1509 int arg3 = (int) -1 ;
1510 wxBitmap const &arg4_defvalue = wxNullBitmap ;
1511 wxBitmap *arg4 = (wxBitmap *) &arg4_defvalue ;
1512 wxPoint const &arg5_defvalue = wxDefaultPosition ;
1513 wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
1514 wxSize const &arg6_defvalue = wxDefaultSize ;
1515 wxSize *arg6 = (wxSize *) &arg6_defvalue ;
1516 long arg7 = (long) wxBU_AUTODRAW ;
1517 wxValidator const &arg8_defvalue = wxDefaultValidator ;
1518 wxValidator *arg8 = (wxValidator *) &arg8_defvalue ;
1519 wxString const &arg9_defvalue = wxPyButtonNameStr ;
1520 wxString *arg9 = (wxString *) &arg9_defvalue ;
1521 bool result;
1522 wxPoint temp5 ;
1523 wxSize temp6 ;
1524 bool temp9 = False ;
1525 PyObject * obj0 = 0 ;
1526 PyObject * obj1 = 0 ;
1527 PyObject * obj2 = 0 ;
1528 PyObject * obj3 = 0 ;
1529 PyObject * obj4 = 0 ;
1530 PyObject * obj5 = 0 ;
1531 PyObject * obj6 = 0 ;
1532 PyObject * obj7 = 0 ;
1533 PyObject * obj8 = 0 ;
1534 char *kwnames[] = {
1535 (char *) "self",(char *) "parent",(char *) "id",(char *) "bitmap",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
1536 };
1537
1538 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOO:BitmapButton_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail;
1539 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBitmapButton,
1540 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1541 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
1542 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1543 if (obj2) {
1544 arg3 = (int) SWIG_AsInt(obj2);
1545 if (PyErr_Occurred()) SWIG_fail;
1546 }
1547 if (obj3) {
1548 if ((SWIG_ConvertPtr(obj3,(void **)(&arg4),SWIGTYPE_p_wxBitmap,
1549 SWIG_POINTER_EXCEPTION | 0)) == -1)
1550 SWIG_fail;
1551 if (arg4 == NULL) {
1552 PyErr_SetString(PyExc_TypeError,"null reference");
1553 SWIG_fail;
1554 }
1555 }
1556 if (obj4) {
1557 {
1558 arg5 = &temp5;
1559 if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
1560 }
1561 }
1562 if (obj5) {
1563 {
1564 arg6 = &temp6;
1565 if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
1566 }
1567 }
1568 if (obj6) {
1569 arg7 = (long) SWIG_AsLong(obj6);
1570 if (PyErr_Occurred()) SWIG_fail;
1571 }
1572 if (obj7) {
1573 if ((SWIG_ConvertPtr(obj7,(void **)(&arg8),SWIGTYPE_p_wxValidator,
1574 SWIG_POINTER_EXCEPTION | 0)) == -1)
1575 SWIG_fail;
1576 if (arg8 == NULL) {
1577 PyErr_SetString(PyExc_TypeError,"null reference");
1578 SWIG_fail;
1579 }
1580 }
1581 if (obj8) {
1582 {
1583 arg9 = wxString_in_helper(obj8);
1584 if (arg9 == NULL) SWIG_fail;
1585 temp9 = True;
1586 }
1587 }
1588 {
1589 PyThreadState* __tstate = wxPyBeginAllowThreads();
1590 result = (bool)(arg1)->Create(arg2,arg3,(wxBitmap const &)*arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,arg7,(wxValidator const &)*arg8,(wxString const &)*arg9);
1591
1592 wxPyEndAllowThreads(__tstate);
1593 if (PyErr_Occurred()) SWIG_fail;
1594 }
1595 {
1596 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
1597 }
1598 {
1599 if (temp9)
1600 delete arg9;
1601 }
1602 return resultobj;
1603 fail:
1604 {
1605 if (temp9)
1606 delete arg9;
1607 }
1608 return NULL;
1609 }
1610
1611
1612 static PyObject *_wrap_BitmapButton_GetBitmapLabel(PyObject *self, PyObject *args, PyObject *kwargs) {
1613 PyObject *resultobj;
1614 wxBitmapButton *arg1 = (wxBitmapButton *) 0 ;
1615 wxBitmap result;
1616 PyObject * obj0 = 0 ;
1617 char *kwnames[] = {
1618 (char *) "self", NULL
1619 };
1620
1621 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:BitmapButton_GetBitmapLabel",kwnames,&obj0)) goto fail;
1622 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBitmapButton,
1623 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1624 {
1625 PyThreadState* __tstate = wxPyBeginAllowThreads();
1626 result = (arg1)->GetBitmapLabel();
1627
1628 wxPyEndAllowThreads(__tstate);
1629 if (PyErr_Occurred()) SWIG_fail;
1630 }
1631 {
1632 wxBitmap * resultptr;
1633 resultptr = new wxBitmap((wxBitmap &) result);
1634 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxBitmap, 1);
1635 }
1636 return resultobj;
1637 fail:
1638 return NULL;
1639 }
1640
1641
1642 static PyObject *_wrap_BitmapButton_GetBitmapDisabled(PyObject *self, PyObject *args, PyObject *kwargs) {
1643 PyObject *resultobj;
1644 wxBitmapButton *arg1 = (wxBitmapButton *) 0 ;
1645 wxBitmap result;
1646 PyObject * obj0 = 0 ;
1647 char *kwnames[] = {
1648 (char *) "self", NULL
1649 };
1650
1651 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:BitmapButton_GetBitmapDisabled",kwnames,&obj0)) goto fail;
1652 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBitmapButton,
1653 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1654 {
1655 PyThreadState* __tstate = wxPyBeginAllowThreads();
1656 result = (arg1)->GetBitmapDisabled();
1657
1658 wxPyEndAllowThreads(__tstate);
1659 if (PyErr_Occurred()) SWIG_fail;
1660 }
1661 {
1662 wxBitmap * resultptr;
1663 resultptr = new wxBitmap((wxBitmap &) result);
1664 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxBitmap, 1);
1665 }
1666 return resultobj;
1667 fail:
1668 return NULL;
1669 }
1670
1671
1672 static PyObject *_wrap_BitmapButton_GetBitmapFocus(PyObject *self, PyObject *args, PyObject *kwargs) {
1673 PyObject *resultobj;
1674 wxBitmapButton *arg1 = (wxBitmapButton *) 0 ;
1675 wxBitmap result;
1676 PyObject * obj0 = 0 ;
1677 char *kwnames[] = {
1678 (char *) "self", NULL
1679 };
1680
1681 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:BitmapButton_GetBitmapFocus",kwnames,&obj0)) goto fail;
1682 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBitmapButton,
1683 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1684 {
1685 PyThreadState* __tstate = wxPyBeginAllowThreads();
1686 result = (arg1)->GetBitmapFocus();
1687
1688 wxPyEndAllowThreads(__tstate);
1689 if (PyErr_Occurred()) SWIG_fail;
1690 }
1691 {
1692 wxBitmap * resultptr;
1693 resultptr = new wxBitmap((wxBitmap &) result);
1694 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxBitmap, 1);
1695 }
1696 return resultobj;
1697 fail:
1698 return NULL;
1699 }
1700
1701
1702 static PyObject *_wrap_BitmapButton_GetBitmapSelected(PyObject *self, PyObject *args, PyObject *kwargs) {
1703 PyObject *resultobj;
1704 wxBitmapButton *arg1 = (wxBitmapButton *) 0 ;
1705 wxBitmap result;
1706 PyObject * obj0 = 0 ;
1707 char *kwnames[] = {
1708 (char *) "self", NULL
1709 };
1710
1711 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:BitmapButton_GetBitmapSelected",kwnames,&obj0)) goto fail;
1712 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBitmapButton,
1713 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1714 {
1715 PyThreadState* __tstate = wxPyBeginAllowThreads();
1716 result = (arg1)->GetBitmapSelected();
1717
1718 wxPyEndAllowThreads(__tstate);
1719 if (PyErr_Occurred()) SWIG_fail;
1720 }
1721 {
1722 wxBitmap * resultptr;
1723 resultptr = new wxBitmap((wxBitmap &) result);
1724 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxBitmap, 1);
1725 }
1726 return resultobj;
1727 fail:
1728 return NULL;
1729 }
1730
1731
1732 static PyObject *_wrap_BitmapButton_SetBitmapDisabled(PyObject *self, PyObject *args, PyObject *kwargs) {
1733 PyObject *resultobj;
1734 wxBitmapButton *arg1 = (wxBitmapButton *) 0 ;
1735 wxBitmap *arg2 = 0 ;
1736 PyObject * obj0 = 0 ;
1737 PyObject * obj1 = 0 ;
1738 char *kwnames[] = {
1739 (char *) "self",(char *) "bitmap", NULL
1740 };
1741
1742 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BitmapButton_SetBitmapDisabled",kwnames,&obj0,&obj1)) goto fail;
1743 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBitmapButton,
1744 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1745 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxBitmap,
1746 SWIG_POINTER_EXCEPTION | 0)) == -1)
1747 SWIG_fail;
1748 if (arg2 == NULL) {
1749 PyErr_SetString(PyExc_TypeError,"null reference");
1750 SWIG_fail;
1751 }
1752 {
1753 PyThreadState* __tstate = wxPyBeginAllowThreads();
1754 (arg1)->SetBitmapDisabled((wxBitmap const &)*arg2);
1755
1756 wxPyEndAllowThreads(__tstate);
1757 if (PyErr_Occurred()) SWIG_fail;
1758 }
1759 Py_INCREF(Py_None); resultobj = Py_None;
1760 return resultobj;
1761 fail:
1762 return NULL;
1763 }
1764
1765
1766 static PyObject *_wrap_BitmapButton_SetBitmapFocus(PyObject *self, PyObject *args, PyObject *kwargs) {
1767 PyObject *resultobj;
1768 wxBitmapButton *arg1 = (wxBitmapButton *) 0 ;
1769 wxBitmap *arg2 = 0 ;
1770 PyObject * obj0 = 0 ;
1771 PyObject * obj1 = 0 ;
1772 char *kwnames[] = {
1773 (char *) "self",(char *) "bitmap", NULL
1774 };
1775
1776 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BitmapButton_SetBitmapFocus",kwnames,&obj0,&obj1)) goto fail;
1777 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBitmapButton,
1778 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1779 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxBitmap,
1780 SWIG_POINTER_EXCEPTION | 0)) == -1)
1781 SWIG_fail;
1782 if (arg2 == NULL) {
1783 PyErr_SetString(PyExc_TypeError,"null reference");
1784 SWIG_fail;
1785 }
1786 {
1787 PyThreadState* __tstate = wxPyBeginAllowThreads();
1788 (arg1)->SetBitmapFocus((wxBitmap const &)*arg2);
1789
1790 wxPyEndAllowThreads(__tstate);
1791 if (PyErr_Occurred()) SWIG_fail;
1792 }
1793 Py_INCREF(Py_None); resultobj = Py_None;
1794 return resultobj;
1795 fail:
1796 return NULL;
1797 }
1798
1799
1800 static PyObject *_wrap_BitmapButton_SetBitmapSelected(PyObject *self, PyObject *args, PyObject *kwargs) {
1801 PyObject *resultobj;
1802 wxBitmapButton *arg1 = (wxBitmapButton *) 0 ;
1803 wxBitmap *arg2 = 0 ;
1804 PyObject * obj0 = 0 ;
1805 PyObject * obj1 = 0 ;
1806 char *kwnames[] = {
1807 (char *) "self",(char *) "bitmap", NULL
1808 };
1809
1810 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BitmapButton_SetBitmapSelected",kwnames,&obj0,&obj1)) goto fail;
1811 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBitmapButton,
1812 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1813 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxBitmap,
1814 SWIG_POINTER_EXCEPTION | 0)) == -1)
1815 SWIG_fail;
1816 if (arg2 == NULL) {
1817 PyErr_SetString(PyExc_TypeError,"null reference");
1818 SWIG_fail;
1819 }
1820 {
1821 PyThreadState* __tstate = wxPyBeginAllowThreads();
1822 (arg1)->SetBitmapSelected((wxBitmap const &)*arg2);
1823
1824 wxPyEndAllowThreads(__tstate);
1825 if (PyErr_Occurred()) SWIG_fail;
1826 }
1827 Py_INCREF(Py_None); resultobj = Py_None;
1828 return resultobj;
1829 fail:
1830 return NULL;
1831 }
1832
1833
1834 static PyObject *_wrap_BitmapButton_SetBitmapLabel(PyObject *self, PyObject *args, PyObject *kwargs) {
1835 PyObject *resultobj;
1836 wxBitmapButton *arg1 = (wxBitmapButton *) 0 ;
1837 wxBitmap *arg2 = 0 ;
1838 PyObject * obj0 = 0 ;
1839 PyObject * obj1 = 0 ;
1840 char *kwnames[] = {
1841 (char *) "self",(char *) "bitmap", NULL
1842 };
1843
1844 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BitmapButton_SetBitmapLabel",kwnames,&obj0,&obj1)) goto fail;
1845 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBitmapButton,
1846 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1847 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxBitmap,
1848 SWIG_POINTER_EXCEPTION | 0)) == -1)
1849 SWIG_fail;
1850 if (arg2 == NULL) {
1851 PyErr_SetString(PyExc_TypeError,"null reference");
1852 SWIG_fail;
1853 }
1854 {
1855 PyThreadState* __tstate = wxPyBeginAllowThreads();
1856 (arg1)->SetBitmapLabel((wxBitmap const &)*arg2);
1857
1858 wxPyEndAllowThreads(__tstate);
1859 if (PyErr_Occurred()) SWIG_fail;
1860 }
1861 Py_INCREF(Py_None); resultobj = Py_None;
1862 return resultobj;
1863 fail:
1864 return NULL;
1865 }
1866
1867
1868 static PyObject *_wrap_BitmapButton_SetMargins(PyObject *self, PyObject *args, PyObject *kwargs) {
1869 PyObject *resultobj;
1870 wxBitmapButton *arg1 = (wxBitmapButton *) 0 ;
1871 int arg2 ;
1872 int arg3 ;
1873 PyObject * obj0 = 0 ;
1874 PyObject * obj1 = 0 ;
1875 PyObject * obj2 = 0 ;
1876 char *kwnames[] = {
1877 (char *) "self",(char *) "x",(char *) "y", NULL
1878 };
1879
1880 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:BitmapButton_SetMargins",kwnames,&obj0,&obj1,&obj2)) goto fail;
1881 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBitmapButton,
1882 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1883 arg2 = (int) SWIG_AsInt(obj1);
1884 if (PyErr_Occurred()) SWIG_fail;
1885 arg3 = (int) SWIG_AsInt(obj2);
1886 if (PyErr_Occurred()) SWIG_fail;
1887 {
1888 PyThreadState* __tstate = wxPyBeginAllowThreads();
1889 (arg1)->SetMargins(arg2,arg3);
1890
1891 wxPyEndAllowThreads(__tstate);
1892 if (PyErr_Occurred()) SWIG_fail;
1893 }
1894 Py_INCREF(Py_None); resultobj = Py_None;
1895 return resultobj;
1896 fail:
1897 return NULL;
1898 }
1899
1900
1901 static PyObject *_wrap_BitmapButton_GetMarginX(PyObject *self, PyObject *args, PyObject *kwargs) {
1902 PyObject *resultobj;
1903 wxBitmapButton *arg1 = (wxBitmapButton *) 0 ;
1904 int result;
1905 PyObject * obj0 = 0 ;
1906 char *kwnames[] = {
1907 (char *) "self", NULL
1908 };
1909
1910 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:BitmapButton_GetMarginX",kwnames,&obj0)) goto fail;
1911 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBitmapButton,
1912 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1913 {
1914 PyThreadState* __tstate = wxPyBeginAllowThreads();
1915 result = (int)((wxBitmapButton const *)arg1)->GetMarginX();
1916
1917 wxPyEndAllowThreads(__tstate);
1918 if (PyErr_Occurred()) SWIG_fail;
1919 }
1920 resultobj = SWIG_FromInt((int)result);
1921 return resultobj;
1922 fail:
1923 return NULL;
1924 }
1925
1926
1927 static PyObject *_wrap_BitmapButton_GetMarginY(PyObject *self, PyObject *args, PyObject *kwargs) {
1928 PyObject *resultobj;
1929 wxBitmapButton *arg1 = (wxBitmapButton *) 0 ;
1930 int result;
1931 PyObject * obj0 = 0 ;
1932 char *kwnames[] = {
1933 (char *) "self", NULL
1934 };
1935
1936 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:BitmapButton_GetMarginY",kwnames,&obj0)) goto fail;
1937 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBitmapButton,
1938 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
1939 {
1940 PyThreadState* __tstate = wxPyBeginAllowThreads();
1941 result = (int)((wxBitmapButton const *)arg1)->GetMarginY();
1942
1943 wxPyEndAllowThreads(__tstate);
1944 if (PyErr_Occurred()) SWIG_fail;
1945 }
1946 resultobj = SWIG_FromInt((int)result);
1947 return resultobj;
1948 fail:
1949 return NULL;
1950 }
1951
1952
1953 static PyObject * BitmapButton_swigregister(PyObject *self, PyObject *args) {
1954 PyObject *obj;
1955 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
1956 SWIG_TypeClientData(SWIGTYPE_p_wxBitmapButton, obj);
1957 Py_INCREF(obj);
1958 return Py_BuildValue((char *)"");
1959 }
1960 static int _wrap_CheckBoxNameStr_set(PyObject *_val) {
1961 PyErr_SetString(PyExc_TypeError,"Variable CheckBoxNameStr is read-only.");
1962 return 1;
1963 }
1964
1965
1966 static PyObject *_wrap_CheckBoxNameStr_get() {
1967 PyObject *pyobj;
1968
1969 {
1970 #if wxUSE_UNICODE
1971 pyobj = PyUnicode_FromWideChar((&wxPyCheckBoxNameStr)->c_str(), (&wxPyCheckBoxNameStr)->Len());
1972 #else
1973 pyobj = PyString_FromStringAndSize((&wxPyCheckBoxNameStr)->c_str(), (&wxPyCheckBoxNameStr)->Len());
1974 #endif
1975 }
1976 return pyobj;
1977 }
1978
1979
1980 static PyObject *_wrap_new_CheckBox(PyObject *self, PyObject *args, PyObject *kwargs) {
1981 PyObject *resultobj;
1982 wxWindow *arg1 = (wxWindow *) 0 ;
1983 int arg2 = (int) -1 ;
1984 wxString const &arg3_defvalue = wxPyEmptyString ;
1985 wxString *arg3 = (wxString *) &arg3_defvalue ;
1986 wxPoint const &arg4_defvalue = wxDefaultPosition ;
1987 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
1988 wxSize const &arg5_defvalue = wxDefaultSize ;
1989 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
1990 long arg6 = (long) 0 ;
1991 wxValidator const &arg7_defvalue = wxDefaultValidator ;
1992 wxValidator *arg7 = (wxValidator *) &arg7_defvalue ;
1993 wxString const &arg8_defvalue = wxPyCheckBoxNameStr ;
1994 wxString *arg8 = (wxString *) &arg8_defvalue ;
1995 wxCheckBox *result;
1996 bool temp3 = False ;
1997 wxPoint temp4 ;
1998 wxSize temp5 ;
1999 bool temp8 = False ;
2000 PyObject * obj0 = 0 ;
2001 PyObject * obj1 = 0 ;
2002 PyObject * obj2 = 0 ;
2003 PyObject * obj3 = 0 ;
2004 PyObject * obj4 = 0 ;
2005 PyObject * obj5 = 0 ;
2006 PyObject * obj6 = 0 ;
2007 PyObject * obj7 = 0 ;
2008 char *kwnames[] = {
2009 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
2010 };
2011
2012 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOO:new_CheckBox",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
2013 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
2014 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2015 if (obj1) {
2016 arg2 = (int) SWIG_AsInt(obj1);
2017 if (PyErr_Occurred()) SWIG_fail;
2018 }
2019 if (obj2) {
2020 {
2021 arg3 = wxString_in_helper(obj2);
2022 if (arg3 == NULL) SWIG_fail;
2023 temp3 = True;
2024 }
2025 }
2026 if (obj3) {
2027 {
2028 arg4 = &temp4;
2029 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
2030 }
2031 }
2032 if (obj4) {
2033 {
2034 arg5 = &temp5;
2035 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
2036 }
2037 }
2038 if (obj5) {
2039 arg6 = (long) SWIG_AsLong(obj5);
2040 if (PyErr_Occurred()) SWIG_fail;
2041 }
2042 if (obj6) {
2043 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxValidator,
2044 SWIG_POINTER_EXCEPTION | 0)) == -1)
2045 SWIG_fail;
2046 if (arg7 == NULL) {
2047 PyErr_SetString(PyExc_TypeError,"null reference");
2048 SWIG_fail;
2049 }
2050 }
2051 if (obj7) {
2052 {
2053 arg8 = wxString_in_helper(obj7);
2054 if (arg8 == NULL) SWIG_fail;
2055 temp8 = True;
2056 }
2057 }
2058 {
2059 if (!wxPyCheckForApp()) SWIG_fail;
2060 PyThreadState* __tstate = wxPyBeginAllowThreads();
2061 result = (wxCheckBox *)new wxCheckBox(arg1,arg2,(wxString const &)*arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxValidator const &)*arg7,(wxString const &)*arg8);
2062
2063 wxPyEndAllowThreads(__tstate);
2064 if (PyErr_Occurred()) SWIG_fail;
2065 }
2066 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxCheckBox, 1);
2067 {
2068 if (temp3)
2069 delete arg3;
2070 }
2071 {
2072 if (temp8)
2073 delete arg8;
2074 }
2075 return resultobj;
2076 fail:
2077 {
2078 if (temp3)
2079 delete arg3;
2080 }
2081 {
2082 if (temp8)
2083 delete arg8;
2084 }
2085 return NULL;
2086 }
2087
2088
2089 static PyObject *_wrap_new_PreCheckBox(PyObject *self, PyObject *args, PyObject *kwargs) {
2090 PyObject *resultobj;
2091 wxCheckBox *result;
2092 char *kwnames[] = {
2093 NULL
2094 };
2095
2096 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreCheckBox",kwnames)) goto fail;
2097 {
2098 if (!wxPyCheckForApp()) SWIG_fail;
2099 PyThreadState* __tstate = wxPyBeginAllowThreads();
2100 result = (wxCheckBox *)new wxCheckBox();
2101
2102 wxPyEndAllowThreads(__tstate);
2103 if (PyErr_Occurred()) SWIG_fail;
2104 }
2105 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxCheckBox, 1);
2106 return resultobj;
2107 fail:
2108 return NULL;
2109 }
2110
2111
2112 static PyObject *_wrap_CheckBox_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
2113 PyObject *resultobj;
2114 wxCheckBox *arg1 = (wxCheckBox *) 0 ;
2115 wxWindow *arg2 = (wxWindow *) 0 ;
2116 int arg3 = (int) -1 ;
2117 wxString const &arg4_defvalue = wxPyEmptyString ;
2118 wxString *arg4 = (wxString *) &arg4_defvalue ;
2119 wxPoint const &arg5_defvalue = wxDefaultPosition ;
2120 wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
2121 wxSize const &arg6_defvalue = wxDefaultSize ;
2122 wxSize *arg6 = (wxSize *) &arg6_defvalue ;
2123 long arg7 = (long) 0 ;
2124 wxValidator const &arg8_defvalue = wxDefaultValidator ;
2125 wxValidator *arg8 = (wxValidator *) &arg8_defvalue ;
2126 wxString const &arg9_defvalue = wxPyCheckBoxNameStr ;
2127 wxString *arg9 = (wxString *) &arg9_defvalue ;
2128 bool result;
2129 bool temp4 = False ;
2130 wxPoint temp5 ;
2131 wxSize temp6 ;
2132 bool temp9 = False ;
2133 PyObject * obj0 = 0 ;
2134 PyObject * obj1 = 0 ;
2135 PyObject * obj2 = 0 ;
2136 PyObject * obj3 = 0 ;
2137 PyObject * obj4 = 0 ;
2138 PyObject * obj5 = 0 ;
2139 PyObject * obj6 = 0 ;
2140 PyObject * obj7 = 0 ;
2141 PyObject * obj8 = 0 ;
2142 char *kwnames[] = {
2143 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
2144 };
2145
2146 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOO:CheckBox_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail;
2147 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxCheckBox,
2148 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2149 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
2150 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2151 if (obj2) {
2152 arg3 = (int) SWIG_AsInt(obj2);
2153 if (PyErr_Occurred()) SWIG_fail;
2154 }
2155 if (obj3) {
2156 {
2157 arg4 = wxString_in_helper(obj3);
2158 if (arg4 == NULL) SWIG_fail;
2159 temp4 = True;
2160 }
2161 }
2162 if (obj4) {
2163 {
2164 arg5 = &temp5;
2165 if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
2166 }
2167 }
2168 if (obj5) {
2169 {
2170 arg6 = &temp6;
2171 if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
2172 }
2173 }
2174 if (obj6) {
2175 arg7 = (long) SWIG_AsLong(obj6);
2176 if (PyErr_Occurred()) SWIG_fail;
2177 }
2178 if (obj7) {
2179 if ((SWIG_ConvertPtr(obj7,(void **)(&arg8),SWIGTYPE_p_wxValidator,
2180 SWIG_POINTER_EXCEPTION | 0)) == -1)
2181 SWIG_fail;
2182 if (arg8 == NULL) {
2183 PyErr_SetString(PyExc_TypeError,"null reference");
2184 SWIG_fail;
2185 }
2186 }
2187 if (obj8) {
2188 {
2189 arg9 = wxString_in_helper(obj8);
2190 if (arg9 == NULL) SWIG_fail;
2191 temp9 = True;
2192 }
2193 }
2194 {
2195 PyThreadState* __tstate = wxPyBeginAllowThreads();
2196 result = (bool)(arg1)->Create(arg2,arg3,(wxString const &)*arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,arg7,(wxValidator const &)*arg8,(wxString const &)*arg9);
2197
2198 wxPyEndAllowThreads(__tstate);
2199 if (PyErr_Occurred()) SWIG_fail;
2200 }
2201 {
2202 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
2203 }
2204 {
2205 if (temp4)
2206 delete arg4;
2207 }
2208 {
2209 if (temp9)
2210 delete arg9;
2211 }
2212 return resultobj;
2213 fail:
2214 {
2215 if (temp4)
2216 delete arg4;
2217 }
2218 {
2219 if (temp9)
2220 delete arg9;
2221 }
2222 return NULL;
2223 }
2224
2225
2226 static PyObject *_wrap_CheckBox_GetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
2227 PyObject *resultobj;
2228 wxCheckBox *arg1 = (wxCheckBox *) 0 ;
2229 bool result;
2230 PyObject * obj0 = 0 ;
2231 char *kwnames[] = {
2232 (char *) "self", NULL
2233 };
2234
2235 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:CheckBox_GetValue",kwnames,&obj0)) goto fail;
2236 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxCheckBox,
2237 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2238 {
2239 PyThreadState* __tstate = wxPyBeginAllowThreads();
2240 result = (bool)(arg1)->GetValue();
2241
2242 wxPyEndAllowThreads(__tstate);
2243 if (PyErr_Occurred()) SWIG_fail;
2244 }
2245 {
2246 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
2247 }
2248 return resultobj;
2249 fail:
2250 return NULL;
2251 }
2252
2253
2254 static PyObject *_wrap_CheckBox_IsChecked(PyObject *self, PyObject *args, PyObject *kwargs) {
2255 PyObject *resultobj;
2256 wxCheckBox *arg1 = (wxCheckBox *) 0 ;
2257 bool result;
2258 PyObject * obj0 = 0 ;
2259 char *kwnames[] = {
2260 (char *) "self", NULL
2261 };
2262
2263 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:CheckBox_IsChecked",kwnames,&obj0)) goto fail;
2264 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxCheckBox,
2265 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2266 {
2267 PyThreadState* __tstate = wxPyBeginAllowThreads();
2268 result = (bool)(arg1)->IsChecked();
2269
2270 wxPyEndAllowThreads(__tstate);
2271 if (PyErr_Occurred()) SWIG_fail;
2272 }
2273 {
2274 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
2275 }
2276 return resultobj;
2277 fail:
2278 return NULL;
2279 }
2280
2281
2282 static PyObject *_wrap_CheckBox_SetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
2283 PyObject *resultobj;
2284 wxCheckBox *arg1 = (wxCheckBox *) 0 ;
2285 bool arg2 ;
2286 PyObject * obj0 = 0 ;
2287 PyObject * obj1 = 0 ;
2288 char *kwnames[] = {
2289 (char *) "self",(char *) "state", NULL
2290 };
2291
2292 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:CheckBox_SetValue",kwnames,&obj0,&obj1)) goto fail;
2293 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxCheckBox,
2294 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2295 arg2 = (bool const) SWIG_AsBool(obj1);
2296 if (PyErr_Occurred()) SWIG_fail;
2297 {
2298 PyThreadState* __tstate = wxPyBeginAllowThreads();
2299 (arg1)->SetValue(arg2);
2300
2301 wxPyEndAllowThreads(__tstate);
2302 if (PyErr_Occurred()) SWIG_fail;
2303 }
2304 Py_INCREF(Py_None); resultobj = Py_None;
2305 return resultobj;
2306 fail:
2307 return NULL;
2308 }
2309
2310
2311 static PyObject *_wrap_CheckBox_Get3StateValue(PyObject *self, PyObject *args, PyObject *kwargs) {
2312 PyObject *resultobj;
2313 wxCheckBox *arg1 = (wxCheckBox *) 0 ;
2314 int result;
2315 PyObject * obj0 = 0 ;
2316 char *kwnames[] = {
2317 (char *) "self", NULL
2318 };
2319
2320 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:CheckBox_Get3StateValue",kwnames,&obj0)) goto fail;
2321 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxCheckBox,
2322 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2323 {
2324 PyThreadState* __tstate = wxPyBeginAllowThreads();
2325 result = (int)((wxCheckBox const *)arg1)->Get3StateValue();
2326
2327 wxPyEndAllowThreads(__tstate);
2328 if (PyErr_Occurred()) SWIG_fail;
2329 }
2330 resultobj = SWIG_FromInt((int)result);
2331 return resultobj;
2332 fail:
2333 return NULL;
2334 }
2335
2336
2337 static PyObject *_wrap_CheckBox_Set3StateValue(PyObject *self, PyObject *args, PyObject *kwargs) {
2338 PyObject *resultobj;
2339 wxCheckBox *arg1 = (wxCheckBox *) 0 ;
2340 int arg2 ;
2341 PyObject * obj0 = 0 ;
2342 PyObject * obj1 = 0 ;
2343 char *kwnames[] = {
2344 (char *) "self",(char *) "state", NULL
2345 };
2346
2347 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:CheckBox_Set3StateValue",kwnames,&obj0,&obj1)) goto fail;
2348 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxCheckBox,
2349 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2350 arg2 = (wxCheckBoxState) SWIG_AsInt(obj1);
2351 if (PyErr_Occurred()) SWIG_fail;
2352 {
2353 PyThreadState* __tstate = wxPyBeginAllowThreads();
2354 (arg1)->Set3StateValue((wxCheckBoxState )arg2);
2355
2356 wxPyEndAllowThreads(__tstate);
2357 if (PyErr_Occurred()) SWIG_fail;
2358 }
2359 Py_INCREF(Py_None); resultobj = Py_None;
2360 return resultobj;
2361 fail:
2362 return NULL;
2363 }
2364
2365
2366 static PyObject *_wrap_CheckBox_Is3State(PyObject *self, PyObject *args, PyObject *kwargs) {
2367 PyObject *resultobj;
2368 wxCheckBox *arg1 = (wxCheckBox *) 0 ;
2369 bool result;
2370 PyObject * obj0 = 0 ;
2371 char *kwnames[] = {
2372 (char *) "self", NULL
2373 };
2374
2375 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:CheckBox_Is3State",kwnames,&obj0)) goto fail;
2376 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxCheckBox,
2377 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2378 {
2379 PyThreadState* __tstate = wxPyBeginAllowThreads();
2380 result = (bool)((wxCheckBox const *)arg1)->Is3State();
2381
2382 wxPyEndAllowThreads(__tstate);
2383 if (PyErr_Occurred()) SWIG_fail;
2384 }
2385 {
2386 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
2387 }
2388 return resultobj;
2389 fail:
2390 return NULL;
2391 }
2392
2393
2394 static PyObject *_wrap_CheckBox_Is3rdStateAllowedForUser(PyObject *self, PyObject *args, PyObject *kwargs) {
2395 PyObject *resultobj;
2396 wxCheckBox *arg1 = (wxCheckBox *) 0 ;
2397 bool result;
2398 PyObject * obj0 = 0 ;
2399 char *kwnames[] = {
2400 (char *) "self", NULL
2401 };
2402
2403 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:CheckBox_Is3rdStateAllowedForUser",kwnames,&obj0)) goto fail;
2404 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxCheckBox,
2405 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2406 {
2407 PyThreadState* __tstate = wxPyBeginAllowThreads();
2408 result = (bool)((wxCheckBox const *)arg1)->Is3rdStateAllowedForUser();
2409
2410 wxPyEndAllowThreads(__tstate);
2411 if (PyErr_Occurred()) SWIG_fail;
2412 }
2413 {
2414 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
2415 }
2416 return resultobj;
2417 fail:
2418 return NULL;
2419 }
2420
2421
2422 static PyObject *_wrap_CheckBox_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
2423 PyObject *resultobj;
2424 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
2425 wxVisualAttributes result;
2426 PyObject * obj0 = 0 ;
2427 char *kwnames[] = {
2428 (char *) "variant", NULL
2429 };
2430
2431 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:CheckBox_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
2432 if (obj0) {
2433 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
2434 if (PyErr_Occurred()) SWIG_fail;
2435 }
2436 {
2437 if (!wxPyCheckForApp()) SWIG_fail;
2438 PyThreadState* __tstate = wxPyBeginAllowThreads();
2439 result = wxCheckBox::GetClassDefaultAttributes((wxWindowVariant )arg1);
2440
2441 wxPyEndAllowThreads(__tstate);
2442 if (PyErr_Occurred()) SWIG_fail;
2443 }
2444 {
2445 wxVisualAttributes * resultptr;
2446 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
2447 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
2448 }
2449 return resultobj;
2450 fail:
2451 return NULL;
2452 }
2453
2454
2455 static PyObject * CheckBox_swigregister(PyObject *self, PyObject *args) {
2456 PyObject *obj;
2457 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
2458 SWIG_TypeClientData(SWIGTYPE_p_wxCheckBox, obj);
2459 Py_INCREF(obj);
2460 return Py_BuildValue((char *)"");
2461 }
2462 static int _wrap_ChoiceNameStr_set(PyObject *_val) {
2463 PyErr_SetString(PyExc_TypeError,"Variable ChoiceNameStr is read-only.");
2464 return 1;
2465 }
2466
2467
2468 static PyObject *_wrap_ChoiceNameStr_get() {
2469 PyObject *pyobj;
2470
2471 {
2472 #if wxUSE_UNICODE
2473 pyobj = PyUnicode_FromWideChar((&wxPyChoiceNameStr)->c_str(), (&wxPyChoiceNameStr)->Len());
2474 #else
2475 pyobj = PyString_FromStringAndSize((&wxPyChoiceNameStr)->c_str(), (&wxPyChoiceNameStr)->Len());
2476 #endif
2477 }
2478 return pyobj;
2479 }
2480
2481
2482 static PyObject *_wrap_new_Choice(PyObject *self, PyObject *args, PyObject *kwargs) {
2483 PyObject *resultobj;
2484 wxWindow *arg1 = (wxWindow *) 0 ;
2485 int arg2 = (int) -1 ;
2486 wxPoint const &arg3_defvalue = wxDefaultPosition ;
2487 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
2488 wxSize const &arg4_defvalue = wxDefaultSize ;
2489 wxSize *arg4 = (wxSize *) &arg4_defvalue ;
2490 wxArrayString const &arg5_defvalue = wxPyEmptyStringArray ;
2491 wxArrayString *arg5 = (wxArrayString *) &arg5_defvalue ;
2492 long arg6 = (long) 0 ;
2493 wxValidator const &arg7_defvalue = wxDefaultValidator ;
2494 wxValidator *arg7 = (wxValidator *) &arg7_defvalue ;
2495 wxString const &arg8_defvalue = wxPyChoiceNameStr ;
2496 wxString *arg8 = (wxString *) &arg8_defvalue ;
2497 wxChoice *result;
2498 wxPoint temp3 ;
2499 wxSize temp4 ;
2500 bool temp5 = False ;
2501 bool temp8 = False ;
2502 PyObject * obj0 = 0 ;
2503 PyObject * obj1 = 0 ;
2504 PyObject * obj2 = 0 ;
2505 PyObject * obj3 = 0 ;
2506 PyObject * obj4 = 0 ;
2507 PyObject * obj5 = 0 ;
2508 PyObject * obj6 = 0 ;
2509 PyObject * obj7 = 0 ;
2510 char *kwnames[] = {
2511 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
2512 };
2513
2514 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOO:new_Choice",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
2515 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
2516 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2517 if (obj1) {
2518 arg2 = (int) SWIG_AsInt(obj1);
2519 if (PyErr_Occurred()) SWIG_fail;
2520 }
2521 if (obj2) {
2522 {
2523 arg3 = &temp3;
2524 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
2525 }
2526 }
2527 if (obj3) {
2528 {
2529 arg4 = &temp4;
2530 if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
2531 }
2532 }
2533 if (obj4) {
2534 {
2535 if (! PySequence_Check(obj4)) {
2536 PyErr_SetString(PyExc_TypeError, "Sequence of strings expected.");
2537 SWIG_fail;
2538 }
2539 arg5 = new wxArrayString;
2540 temp5 = True;
2541 int i, len=PySequence_Length(obj4);
2542 for (i=0; i<len; i++) {
2543 PyObject* item = PySequence_GetItem(obj4, i);
2544 #if wxUSE_UNICODE
2545 PyObject* str = PyObject_Unicode(item);
2546 #else
2547 PyObject* str = PyObject_Str(item);
2548 #endif
2549 if (PyErr_Occurred()) SWIG_fail;
2550 arg5->Add(Py2wxString(str));
2551 Py_DECREF(item);
2552 Py_DECREF(str);
2553 }
2554 }
2555 }
2556 if (obj5) {
2557 arg6 = (long) SWIG_AsLong(obj5);
2558 if (PyErr_Occurred()) SWIG_fail;
2559 }
2560 if (obj6) {
2561 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxValidator,
2562 SWIG_POINTER_EXCEPTION | 0)) == -1)
2563 SWIG_fail;
2564 if (arg7 == NULL) {
2565 PyErr_SetString(PyExc_TypeError,"null reference");
2566 SWIG_fail;
2567 }
2568 }
2569 if (obj7) {
2570 {
2571 arg8 = wxString_in_helper(obj7);
2572 if (arg8 == NULL) SWIG_fail;
2573 temp8 = True;
2574 }
2575 }
2576 {
2577 if (!wxPyCheckForApp()) SWIG_fail;
2578 PyThreadState* __tstate = wxPyBeginAllowThreads();
2579 result = (wxChoice *)new wxChoice(arg1,arg2,(wxPoint const &)*arg3,(wxSize const &)*arg4,(wxArrayString const &)*arg5,arg6,(wxValidator const &)*arg7,(wxString const &)*arg8);
2580
2581 wxPyEndAllowThreads(__tstate);
2582 if (PyErr_Occurred()) SWIG_fail;
2583 }
2584 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxChoice, 1);
2585 {
2586 if (temp5) delete arg5;
2587 }
2588 {
2589 if (temp8)
2590 delete arg8;
2591 }
2592 return resultobj;
2593 fail:
2594 {
2595 if (temp5) delete arg5;
2596 }
2597 {
2598 if (temp8)
2599 delete arg8;
2600 }
2601 return NULL;
2602 }
2603
2604
2605 static PyObject *_wrap_new_PreChoice(PyObject *self, PyObject *args, PyObject *kwargs) {
2606 PyObject *resultobj;
2607 wxChoice *result;
2608 char *kwnames[] = {
2609 NULL
2610 };
2611
2612 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreChoice",kwnames)) goto fail;
2613 {
2614 if (!wxPyCheckForApp()) SWIG_fail;
2615 PyThreadState* __tstate = wxPyBeginAllowThreads();
2616 result = (wxChoice *)new wxChoice();
2617
2618 wxPyEndAllowThreads(__tstate);
2619 if (PyErr_Occurred()) SWIG_fail;
2620 }
2621 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxChoice, 1);
2622 return resultobj;
2623 fail:
2624 return NULL;
2625 }
2626
2627
2628 static PyObject *_wrap_Choice_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
2629 PyObject *resultobj;
2630 wxChoice *arg1 = (wxChoice *) 0 ;
2631 wxWindow *arg2 = (wxWindow *) 0 ;
2632 int arg3 = (int) -1 ;
2633 wxPoint const &arg4_defvalue = wxDefaultPosition ;
2634 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
2635 wxSize const &arg5_defvalue = wxDefaultSize ;
2636 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
2637 wxArrayString const &arg6_defvalue = wxPyEmptyStringArray ;
2638 wxArrayString *arg6 = (wxArrayString *) &arg6_defvalue ;
2639 long arg7 = (long) 0 ;
2640 wxValidator const &arg8_defvalue = wxDefaultValidator ;
2641 wxValidator *arg8 = (wxValidator *) &arg8_defvalue ;
2642 wxString const &arg9_defvalue = wxPyChoiceNameStr ;
2643 wxString *arg9 = (wxString *) &arg9_defvalue ;
2644 bool result;
2645 wxPoint temp4 ;
2646 wxSize temp5 ;
2647 bool temp6 = False ;
2648 bool temp9 = False ;
2649 PyObject * obj0 = 0 ;
2650 PyObject * obj1 = 0 ;
2651 PyObject * obj2 = 0 ;
2652 PyObject * obj3 = 0 ;
2653 PyObject * obj4 = 0 ;
2654 PyObject * obj5 = 0 ;
2655 PyObject * obj6 = 0 ;
2656 PyObject * obj7 = 0 ;
2657 PyObject * obj8 = 0 ;
2658 char *kwnames[] = {
2659 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
2660 };
2661
2662 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOO:Choice_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail;
2663 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxChoice,
2664 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2665 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
2666 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2667 if (obj2) {
2668 arg3 = (int) SWIG_AsInt(obj2);
2669 if (PyErr_Occurred()) SWIG_fail;
2670 }
2671 if (obj3) {
2672 {
2673 arg4 = &temp4;
2674 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
2675 }
2676 }
2677 if (obj4) {
2678 {
2679 arg5 = &temp5;
2680 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
2681 }
2682 }
2683 if (obj5) {
2684 {
2685 if (! PySequence_Check(obj5)) {
2686 PyErr_SetString(PyExc_TypeError, "Sequence of strings expected.");
2687 SWIG_fail;
2688 }
2689 arg6 = new wxArrayString;
2690 temp6 = True;
2691 int i, len=PySequence_Length(obj5);
2692 for (i=0; i<len; i++) {
2693 PyObject* item = PySequence_GetItem(obj5, i);
2694 #if wxUSE_UNICODE
2695 PyObject* str = PyObject_Unicode(item);
2696 #else
2697 PyObject* str = PyObject_Str(item);
2698 #endif
2699 if (PyErr_Occurred()) SWIG_fail;
2700 arg6->Add(Py2wxString(str));
2701 Py_DECREF(item);
2702 Py_DECREF(str);
2703 }
2704 }
2705 }
2706 if (obj6) {
2707 arg7 = (long) SWIG_AsLong(obj6);
2708 if (PyErr_Occurred()) SWIG_fail;
2709 }
2710 if (obj7) {
2711 if ((SWIG_ConvertPtr(obj7,(void **)(&arg8),SWIGTYPE_p_wxValidator,
2712 SWIG_POINTER_EXCEPTION | 0)) == -1)
2713 SWIG_fail;
2714 if (arg8 == NULL) {
2715 PyErr_SetString(PyExc_TypeError,"null reference");
2716 SWIG_fail;
2717 }
2718 }
2719 if (obj8) {
2720 {
2721 arg9 = wxString_in_helper(obj8);
2722 if (arg9 == NULL) SWIG_fail;
2723 temp9 = True;
2724 }
2725 }
2726 {
2727 PyThreadState* __tstate = wxPyBeginAllowThreads();
2728 result = (bool)(arg1)->Create(arg2,arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,(wxArrayString const &)*arg6,arg7,(wxValidator const &)*arg8,(wxString const &)*arg9);
2729
2730 wxPyEndAllowThreads(__tstate);
2731 if (PyErr_Occurred()) SWIG_fail;
2732 }
2733 {
2734 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
2735 }
2736 {
2737 if (temp6) delete arg6;
2738 }
2739 {
2740 if (temp9)
2741 delete arg9;
2742 }
2743 return resultobj;
2744 fail:
2745 {
2746 if (temp6) delete arg6;
2747 }
2748 {
2749 if (temp9)
2750 delete arg9;
2751 }
2752 return NULL;
2753 }
2754
2755
2756 static PyObject *_wrap_Choice_SetSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
2757 PyObject *resultobj;
2758 wxChoice *arg1 = (wxChoice *) 0 ;
2759 int arg2 ;
2760 PyObject * obj0 = 0 ;
2761 PyObject * obj1 = 0 ;
2762 char *kwnames[] = {
2763 (char *) "self",(char *) "n", NULL
2764 };
2765
2766 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Choice_SetSelection",kwnames,&obj0,&obj1)) goto fail;
2767 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxChoice,
2768 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2769 arg2 = (int const) SWIG_AsInt(obj1);
2770 if (PyErr_Occurred()) SWIG_fail;
2771 {
2772 PyThreadState* __tstate = wxPyBeginAllowThreads();
2773 (arg1)->SetSelection(arg2);
2774
2775 wxPyEndAllowThreads(__tstate);
2776 if (PyErr_Occurred()) SWIG_fail;
2777 }
2778 Py_INCREF(Py_None); resultobj = Py_None;
2779 return resultobj;
2780 fail:
2781 return NULL;
2782 }
2783
2784
2785 static PyObject *_wrap_Choice_SetStringSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
2786 PyObject *resultobj;
2787 wxChoice *arg1 = (wxChoice *) 0 ;
2788 wxString *arg2 = 0 ;
2789 bool result;
2790 bool temp2 = False ;
2791 PyObject * obj0 = 0 ;
2792 PyObject * obj1 = 0 ;
2793 char *kwnames[] = {
2794 (char *) "self",(char *) "string", NULL
2795 };
2796
2797 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Choice_SetStringSelection",kwnames,&obj0,&obj1)) goto fail;
2798 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxChoice,
2799 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2800 {
2801 arg2 = wxString_in_helper(obj1);
2802 if (arg2 == NULL) SWIG_fail;
2803 temp2 = True;
2804 }
2805 {
2806 PyThreadState* __tstate = wxPyBeginAllowThreads();
2807 result = (bool)(arg1)->SetStringSelection((wxString const &)*arg2);
2808
2809 wxPyEndAllowThreads(__tstate);
2810 if (PyErr_Occurred()) SWIG_fail;
2811 }
2812 {
2813 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
2814 }
2815 {
2816 if (temp2)
2817 delete arg2;
2818 }
2819 return resultobj;
2820 fail:
2821 {
2822 if (temp2)
2823 delete arg2;
2824 }
2825 return NULL;
2826 }
2827
2828
2829 static PyObject *_wrap_Choice_SetString(PyObject *self, PyObject *args, PyObject *kwargs) {
2830 PyObject *resultobj;
2831 wxChoice *arg1 = (wxChoice *) 0 ;
2832 int arg2 ;
2833 wxString *arg3 = 0 ;
2834 bool temp3 = False ;
2835 PyObject * obj0 = 0 ;
2836 PyObject * obj1 = 0 ;
2837 PyObject * obj2 = 0 ;
2838 char *kwnames[] = {
2839 (char *) "self",(char *) "n",(char *) "string", NULL
2840 };
2841
2842 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:Choice_SetString",kwnames,&obj0,&obj1,&obj2)) goto fail;
2843 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxChoice,
2844 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2845 arg2 = (int) SWIG_AsInt(obj1);
2846 if (PyErr_Occurred()) SWIG_fail;
2847 {
2848 arg3 = wxString_in_helper(obj2);
2849 if (arg3 == NULL) SWIG_fail;
2850 temp3 = True;
2851 }
2852 {
2853 PyThreadState* __tstate = wxPyBeginAllowThreads();
2854 (arg1)->SetString(arg2,(wxString const &)*arg3);
2855
2856 wxPyEndAllowThreads(__tstate);
2857 if (PyErr_Occurred()) SWIG_fail;
2858 }
2859 Py_INCREF(Py_None); resultobj = Py_None;
2860 {
2861 if (temp3)
2862 delete arg3;
2863 }
2864 return resultobj;
2865 fail:
2866 {
2867 if (temp3)
2868 delete arg3;
2869 }
2870 return NULL;
2871 }
2872
2873
2874 static PyObject *_wrap_Choice_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
2875 PyObject *resultobj;
2876 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
2877 wxVisualAttributes result;
2878 PyObject * obj0 = 0 ;
2879 char *kwnames[] = {
2880 (char *) "variant", NULL
2881 };
2882
2883 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:Choice_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
2884 if (obj0) {
2885 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
2886 if (PyErr_Occurred()) SWIG_fail;
2887 }
2888 {
2889 if (!wxPyCheckForApp()) SWIG_fail;
2890 PyThreadState* __tstate = wxPyBeginAllowThreads();
2891 result = wxChoice::GetClassDefaultAttributes((wxWindowVariant )arg1);
2892
2893 wxPyEndAllowThreads(__tstate);
2894 if (PyErr_Occurred()) SWIG_fail;
2895 }
2896 {
2897 wxVisualAttributes * resultptr;
2898 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
2899 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
2900 }
2901 return resultobj;
2902 fail:
2903 return NULL;
2904 }
2905
2906
2907 static PyObject * Choice_swigregister(PyObject *self, PyObject *args) {
2908 PyObject *obj;
2909 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
2910 SWIG_TypeClientData(SWIGTYPE_p_wxChoice, obj);
2911 Py_INCREF(obj);
2912 return Py_BuildValue((char *)"");
2913 }
2914 static int _wrap_ComboBoxNameStr_set(PyObject *_val) {
2915 PyErr_SetString(PyExc_TypeError,"Variable ComboBoxNameStr is read-only.");
2916 return 1;
2917 }
2918
2919
2920 static PyObject *_wrap_ComboBoxNameStr_get() {
2921 PyObject *pyobj;
2922
2923 {
2924 #if wxUSE_UNICODE
2925 pyobj = PyUnicode_FromWideChar((&wxPyComboBoxNameStr)->c_str(), (&wxPyComboBoxNameStr)->Len());
2926 #else
2927 pyobj = PyString_FromStringAndSize((&wxPyComboBoxNameStr)->c_str(), (&wxPyComboBoxNameStr)->Len());
2928 #endif
2929 }
2930 return pyobj;
2931 }
2932
2933
2934 static PyObject *_wrap_new_ComboBox(PyObject *self, PyObject *args, PyObject *kwargs) {
2935 PyObject *resultobj;
2936 wxWindow *arg1 = (wxWindow *) 0 ;
2937 int arg2 = (int) -1 ;
2938 wxString const &arg3_defvalue = wxPyEmptyString ;
2939 wxString *arg3 = (wxString *) &arg3_defvalue ;
2940 wxPoint const &arg4_defvalue = wxDefaultPosition ;
2941 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
2942 wxSize const &arg5_defvalue = wxDefaultSize ;
2943 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
2944 wxArrayString const &arg6_defvalue = wxPyEmptyStringArray ;
2945 wxArrayString *arg6 = (wxArrayString *) &arg6_defvalue ;
2946 long arg7 = (long) 0 ;
2947 wxValidator const &arg8_defvalue = wxDefaultValidator ;
2948 wxValidator *arg8 = (wxValidator *) &arg8_defvalue ;
2949 wxString const &arg9_defvalue = wxPyComboBoxNameStr ;
2950 wxString *arg9 = (wxString *) &arg9_defvalue ;
2951 wxComboBox *result;
2952 bool temp3 = False ;
2953 wxPoint temp4 ;
2954 wxSize temp5 ;
2955 bool temp6 = False ;
2956 bool temp9 = False ;
2957 PyObject * obj0 = 0 ;
2958 PyObject * obj1 = 0 ;
2959 PyObject * obj2 = 0 ;
2960 PyObject * obj3 = 0 ;
2961 PyObject * obj4 = 0 ;
2962 PyObject * obj5 = 0 ;
2963 PyObject * obj6 = 0 ;
2964 PyObject * obj7 = 0 ;
2965 PyObject * obj8 = 0 ;
2966 char *kwnames[] = {
2967 (char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
2968 };
2969
2970 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOOO:new_ComboBox",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail;
2971 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
2972 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
2973 if (obj1) {
2974 arg2 = (int) SWIG_AsInt(obj1);
2975 if (PyErr_Occurred()) SWIG_fail;
2976 }
2977 if (obj2) {
2978 {
2979 arg3 = wxString_in_helper(obj2);
2980 if (arg3 == NULL) SWIG_fail;
2981 temp3 = True;
2982 }
2983 }
2984 if (obj3) {
2985 {
2986 arg4 = &temp4;
2987 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
2988 }
2989 }
2990 if (obj4) {
2991 {
2992 arg5 = &temp5;
2993 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
2994 }
2995 }
2996 if (obj5) {
2997 {
2998 if (! PySequence_Check(obj5)) {
2999 PyErr_SetString(PyExc_TypeError, "Sequence of strings expected.");
3000 SWIG_fail;
3001 }
3002 arg6 = new wxArrayString;
3003 temp6 = True;
3004 int i, len=PySequence_Length(obj5);
3005 for (i=0; i<len; i++) {
3006 PyObject* item = PySequence_GetItem(obj5, i);
3007 #if wxUSE_UNICODE
3008 PyObject* str = PyObject_Unicode(item);
3009 #else
3010 PyObject* str = PyObject_Str(item);
3011 #endif
3012 if (PyErr_Occurred()) SWIG_fail;
3013 arg6->Add(Py2wxString(str));
3014 Py_DECREF(item);
3015 Py_DECREF(str);
3016 }
3017 }
3018 }
3019 if (obj6) {
3020 arg7 = (long) SWIG_AsLong(obj6);
3021 if (PyErr_Occurred()) SWIG_fail;
3022 }
3023 if (obj7) {
3024 if ((SWIG_ConvertPtr(obj7,(void **)(&arg8),SWIGTYPE_p_wxValidator,
3025 SWIG_POINTER_EXCEPTION | 0)) == -1)
3026 SWIG_fail;
3027 if (arg8 == NULL) {
3028 PyErr_SetString(PyExc_TypeError,"null reference");
3029 SWIG_fail;
3030 }
3031 }
3032 if (obj8) {
3033 {
3034 arg9 = wxString_in_helper(obj8);
3035 if (arg9 == NULL) SWIG_fail;
3036 temp9 = True;
3037 }
3038 }
3039 {
3040 if (!wxPyCheckForApp()) SWIG_fail;
3041 PyThreadState* __tstate = wxPyBeginAllowThreads();
3042 result = (wxComboBox *)new wxComboBox(arg1,arg2,(wxString const &)*arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,(wxArrayString const &)*arg6,arg7,(wxValidator const &)*arg8,(wxString const &)*arg9);
3043
3044 wxPyEndAllowThreads(__tstate);
3045 if (PyErr_Occurred()) SWIG_fail;
3046 }
3047 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxComboBox, 1);
3048 {
3049 if (temp3)
3050 delete arg3;
3051 }
3052 {
3053 if (temp6) delete arg6;
3054 }
3055 {
3056 if (temp9)
3057 delete arg9;
3058 }
3059 return resultobj;
3060 fail:
3061 {
3062 if (temp3)
3063 delete arg3;
3064 }
3065 {
3066 if (temp6) delete arg6;
3067 }
3068 {
3069 if (temp9)
3070 delete arg9;
3071 }
3072 return NULL;
3073 }
3074
3075
3076 static PyObject *_wrap_new_PreComboBox(PyObject *self, PyObject *args, PyObject *kwargs) {
3077 PyObject *resultobj;
3078 wxComboBox *result;
3079 char *kwnames[] = {
3080 NULL
3081 };
3082
3083 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreComboBox",kwnames)) goto fail;
3084 {
3085 if (!wxPyCheckForApp()) SWIG_fail;
3086 PyThreadState* __tstate = wxPyBeginAllowThreads();
3087 result = (wxComboBox *)new wxComboBox();
3088
3089 wxPyEndAllowThreads(__tstate);
3090 if (PyErr_Occurred()) SWIG_fail;
3091 }
3092 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxComboBox, 1);
3093 return resultobj;
3094 fail:
3095 return NULL;
3096 }
3097
3098
3099 static PyObject *_wrap_ComboBox_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
3100 PyObject *resultobj;
3101 wxComboBox *arg1 = (wxComboBox *) 0 ;
3102 wxWindow *arg2 = (wxWindow *) 0 ;
3103 int arg3 = (int) -1 ;
3104 wxString const &arg4_defvalue = wxPyEmptyString ;
3105 wxString *arg4 = (wxString *) &arg4_defvalue ;
3106 wxPoint const &arg5_defvalue = wxDefaultPosition ;
3107 wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
3108 wxSize const &arg6_defvalue = wxDefaultSize ;
3109 wxSize *arg6 = (wxSize *) &arg6_defvalue ;
3110 wxArrayString const &arg7_defvalue = wxPyEmptyStringArray ;
3111 wxArrayString *arg7 = (wxArrayString *) &arg7_defvalue ;
3112 long arg8 = (long) 0 ;
3113 wxValidator const &arg9_defvalue = wxDefaultValidator ;
3114 wxValidator *arg9 = (wxValidator *) &arg9_defvalue ;
3115 wxString const &arg10_defvalue = wxPyChoiceNameStr ;
3116 wxString *arg10 = (wxString *) &arg10_defvalue ;
3117 bool result;
3118 bool temp4 = False ;
3119 wxPoint temp5 ;
3120 wxSize temp6 ;
3121 bool temp7 = False ;
3122 bool temp10 = False ;
3123 PyObject * obj0 = 0 ;
3124 PyObject * obj1 = 0 ;
3125 PyObject * obj2 = 0 ;
3126 PyObject * obj3 = 0 ;
3127 PyObject * obj4 = 0 ;
3128 PyObject * obj5 = 0 ;
3129 PyObject * obj6 = 0 ;
3130 PyObject * obj7 = 0 ;
3131 PyObject * obj8 = 0 ;
3132 PyObject * obj9 = 0 ;
3133 char *kwnames[] = {
3134 (char *) "self",(char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
3135 };
3136
3137 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOOO:ComboBox_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) goto fail;
3138 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3139 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3140 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
3141 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3142 if (obj2) {
3143 arg3 = (int) SWIG_AsInt(obj2);
3144 if (PyErr_Occurred()) SWIG_fail;
3145 }
3146 if (obj3) {
3147 {
3148 arg4 = wxString_in_helper(obj3);
3149 if (arg4 == NULL) SWIG_fail;
3150 temp4 = True;
3151 }
3152 }
3153 if (obj4) {
3154 {
3155 arg5 = &temp5;
3156 if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
3157 }
3158 }
3159 if (obj5) {
3160 {
3161 arg6 = &temp6;
3162 if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
3163 }
3164 }
3165 if (obj6) {
3166 {
3167 if (! PySequence_Check(obj6)) {
3168 PyErr_SetString(PyExc_TypeError, "Sequence of strings expected.");
3169 SWIG_fail;
3170 }
3171 arg7 = new wxArrayString;
3172 temp7 = True;
3173 int i, len=PySequence_Length(obj6);
3174 for (i=0; i<len; i++) {
3175 PyObject* item = PySequence_GetItem(obj6, i);
3176 #if wxUSE_UNICODE
3177 PyObject* str = PyObject_Unicode(item);
3178 #else
3179 PyObject* str = PyObject_Str(item);
3180 #endif
3181 if (PyErr_Occurred()) SWIG_fail;
3182 arg7->Add(Py2wxString(str));
3183 Py_DECREF(item);
3184 Py_DECREF(str);
3185 }
3186 }
3187 }
3188 if (obj7) {
3189 arg8 = (long) SWIG_AsLong(obj7);
3190 if (PyErr_Occurred()) SWIG_fail;
3191 }
3192 if (obj8) {
3193 if ((SWIG_ConvertPtr(obj8,(void **)(&arg9),SWIGTYPE_p_wxValidator,
3194 SWIG_POINTER_EXCEPTION | 0)) == -1)
3195 SWIG_fail;
3196 if (arg9 == NULL) {
3197 PyErr_SetString(PyExc_TypeError,"null reference");
3198 SWIG_fail;
3199 }
3200 }
3201 if (obj9) {
3202 {
3203 arg10 = wxString_in_helper(obj9);
3204 if (arg10 == NULL) SWIG_fail;
3205 temp10 = True;
3206 }
3207 }
3208 {
3209 PyThreadState* __tstate = wxPyBeginAllowThreads();
3210 result = (bool)(arg1)->Create(arg2,arg3,(wxString const &)*arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,(wxArrayString const &)*arg7,arg8,(wxValidator const &)*arg9,(wxString const &)*arg10);
3211
3212 wxPyEndAllowThreads(__tstate);
3213 if (PyErr_Occurred()) SWIG_fail;
3214 }
3215 {
3216 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
3217 }
3218 {
3219 if (temp4)
3220 delete arg4;
3221 }
3222 {
3223 if (temp7) delete arg7;
3224 }
3225 {
3226 if (temp10)
3227 delete arg10;
3228 }
3229 return resultobj;
3230 fail:
3231 {
3232 if (temp4)
3233 delete arg4;
3234 }
3235 {
3236 if (temp7) delete arg7;
3237 }
3238 {
3239 if (temp10)
3240 delete arg10;
3241 }
3242 return NULL;
3243 }
3244
3245
3246 static PyObject *_wrap_ComboBox_GetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
3247 PyObject *resultobj;
3248 wxComboBox *arg1 = (wxComboBox *) 0 ;
3249 wxString result;
3250 PyObject * obj0 = 0 ;
3251 char *kwnames[] = {
3252 (char *) "self", NULL
3253 };
3254
3255 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ComboBox_GetValue",kwnames,&obj0)) goto fail;
3256 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3257 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3258 {
3259 PyThreadState* __tstate = wxPyBeginAllowThreads();
3260 result = ((wxComboBox const *)arg1)->GetValue();
3261
3262 wxPyEndAllowThreads(__tstate);
3263 if (PyErr_Occurred()) SWIG_fail;
3264 }
3265 {
3266 #if wxUSE_UNICODE
3267 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
3268 #else
3269 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
3270 #endif
3271 }
3272 return resultobj;
3273 fail:
3274 return NULL;
3275 }
3276
3277
3278 static PyObject *_wrap_ComboBox_SetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
3279 PyObject *resultobj;
3280 wxComboBox *arg1 = (wxComboBox *) 0 ;
3281 wxString *arg2 = 0 ;
3282 bool temp2 = False ;
3283 PyObject * obj0 = 0 ;
3284 PyObject * obj1 = 0 ;
3285 char *kwnames[] = {
3286 (char *) "self",(char *) "value", NULL
3287 };
3288
3289 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ComboBox_SetValue",kwnames,&obj0,&obj1)) goto fail;
3290 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3291 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3292 {
3293 arg2 = wxString_in_helper(obj1);
3294 if (arg2 == NULL) SWIG_fail;
3295 temp2 = True;
3296 }
3297 {
3298 PyThreadState* __tstate = wxPyBeginAllowThreads();
3299 (arg1)->SetValue((wxString const &)*arg2);
3300
3301 wxPyEndAllowThreads(__tstate);
3302 if (PyErr_Occurred()) SWIG_fail;
3303 }
3304 Py_INCREF(Py_None); resultobj = Py_None;
3305 {
3306 if (temp2)
3307 delete arg2;
3308 }
3309 return resultobj;
3310 fail:
3311 {
3312 if (temp2)
3313 delete arg2;
3314 }
3315 return NULL;
3316 }
3317
3318
3319 static PyObject *_wrap_ComboBox_Copy(PyObject *self, PyObject *args, PyObject *kwargs) {
3320 PyObject *resultobj;
3321 wxComboBox *arg1 = (wxComboBox *) 0 ;
3322 PyObject * obj0 = 0 ;
3323 char *kwnames[] = {
3324 (char *) "self", NULL
3325 };
3326
3327 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ComboBox_Copy",kwnames,&obj0)) goto fail;
3328 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3329 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3330 {
3331 PyThreadState* __tstate = wxPyBeginAllowThreads();
3332 (arg1)->Copy();
3333
3334 wxPyEndAllowThreads(__tstate);
3335 if (PyErr_Occurred()) SWIG_fail;
3336 }
3337 Py_INCREF(Py_None); resultobj = Py_None;
3338 return resultobj;
3339 fail:
3340 return NULL;
3341 }
3342
3343
3344 static PyObject *_wrap_ComboBox_Cut(PyObject *self, PyObject *args, PyObject *kwargs) {
3345 PyObject *resultobj;
3346 wxComboBox *arg1 = (wxComboBox *) 0 ;
3347 PyObject * obj0 = 0 ;
3348 char *kwnames[] = {
3349 (char *) "self", NULL
3350 };
3351
3352 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ComboBox_Cut",kwnames,&obj0)) goto fail;
3353 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3354 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3355 {
3356 PyThreadState* __tstate = wxPyBeginAllowThreads();
3357 (arg1)->Cut();
3358
3359 wxPyEndAllowThreads(__tstate);
3360 if (PyErr_Occurred()) SWIG_fail;
3361 }
3362 Py_INCREF(Py_None); resultobj = Py_None;
3363 return resultobj;
3364 fail:
3365 return NULL;
3366 }
3367
3368
3369 static PyObject *_wrap_ComboBox_Paste(PyObject *self, PyObject *args, PyObject *kwargs) {
3370 PyObject *resultobj;
3371 wxComboBox *arg1 = (wxComboBox *) 0 ;
3372 PyObject * obj0 = 0 ;
3373 char *kwnames[] = {
3374 (char *) "self", NULL
3375 };
3376
3377 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ComboBox_Paste",kwnames,&obj0)) goto fail;
3378 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3379 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3380 {
3381 PyThreadState* __tstate = wxPyBeginAllowThreads();
3382 (arg1)->Paste();
3383
3384 wxPyEndAllowThreads(__tstate);
3385 if (PyErr_Occurred()) SWIG_fail;
3386 }
3387 Py_INCREF(Py_None); resultobj = Py_None;
3388 return resultobj;
3389 fail:
3390 return NULL;
3391 }
3392
3393
3394 static PyObject *_wrap_ComboBox_SetInsertionPoint(PyObject *self, PyObject *args, PyObject *kwargs) {
3395 PyObject *resultobj;
3396 wxComboBox *arg1 = (wxComboBox *) 0 ;
3397 long arg2 ;
3398 PyObject * obj0 = 0 ;
3399 PyObject * obj1 = 0 ;
3400 char *kwnames[] = {
3401 (char *) "self",(char *) "pos", NULL
3402 };
3403
3404 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ComboBox_SetInsertionPoint",kwnames,&obj0,&obj1)) goto fail;
3405 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3406 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3407 arg2 = (long) SWIG_AsLong(obj1);
3408 if (PyErr_Occurred()) SWIG_fail;
3409 {
3410 PyThreadState* __tstate = wxPyBeginAllowThreads();
3411 (arg1)->SetInsertionPoint(arg2);
3412
3413 wxPyEndAllowThreads(__tstate);
3414 if (PyErr_Occurred()) SWIG_fail;
3415 }
3416 Py_INCREF(Py_None); resultobj = Py_None;
3417 return resultobj;
3418 fail:
3419 return NULL;
3420 }
3421
3422
3423 static PyObject *_wrap_ComboBox_GetInsertionPoint(PyObject *self, PyObject *args, PyObject *kwargs) {
3424 PyObject *resultobj;
3425 wxComboBox *arg1 = (wxComboBox *) 0 ;
3426 long result;
3427 PyObject * obj0 = 0 ;
3428 char *kwnames[] = {
3429 (char *) "self", NULL
3430 };
3431
3432 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ComboBox_GetInsertionPoint",kwnames,&obj0)) goto fail;
3433 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3434 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3435 {
3436 PyThreadState* __tstate = wxPyBeginAllowThreads();
3437 result = (long)((wxComboBox const *)arg1)->GetInsertionPoint();
3438
3439 wxPyEndAllowThreads(__tstate);
3440 if (PyErr_Occurred()) SWIG_fail;
3441 }
3442 resultobj = SWIG_FromLong((long)result);
3443 return resultobj;
3444 fail:
3445 return NULL;
3446 }
3447
3448
3449 static PyObject *_wrap_ComboBox_GetLastPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
3450 PyObject *resultobj;
3451 wxComboBox *arg1 = (wxComboBox *) 0 ;
3452 long result;
3453 PyObject * obj0 = 0 ;
3454 char *kwnames[] = {
3455 (char *) "self", NULL
3456 };
3457
3458 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ComboBox_GetLastPosition",kwnames,&obj0)) goto fail;
3459 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3460 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3461 {
3462 PyThreadState* __tstate = wxPyBeginAllowThreads();
3463 result = (long)((wxComboBox const *)arg1)->GetLastPosition();
3464
3465 wxPyEndAllowThreads(__tstate);
3466 if (PyErr_Occurred()) SWIG_fail;
3467 }
3468 resultobj = SWIG_FromLong((long)result);
3469 return resultobj;
3470 fail:
3471 return NULL;
3472 }
3473
3474
3475 static PyObject *_wrap_ComboBox_Replace(PyObject *self, PyObject *args, PyObject *kwargs) {
3476 PyObject *resultobj;
3477 wxComboBox *arg1 = (wxComboBox *) 0 ;
3478 long arg2 ;
3479 long arg3 ;
3480 wxString *arg4 = 0 ;
3481 bool temp4 = False ;
3482 PyObject * obj0 = 0 ;
3483 PyObject * obj1 = 0 ;
3484 PyObject * obj2 = 0 ;
3485 PyObject * obj3 = 0 ;
3486 char *kwnames[] = {
3487 (char *) "self",(char *) "from",(char *) "to",(char *) "value", NULL
3488 };
3489
3490 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO:ComboBox_Replace",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
3491 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3492 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3493 arg2 = (long) SWIG_AsLong(obj1);
3494 if (PyErr_Occurred()) SWIG_fail;
3495 arg3 = (long) SWIG_AsLong(obj2);
3496 if (PyErr_Occurred()) SWIG_fail;
3497 {
3498 arg4 = wxString_in_helper(obj3);
3499 if (arg4 == NULL) SWIG_fail;
3500 temp4 = True;
3501 }
3502 {
3503 PyThreadState* __tstate = wxPyBeginAllowThreads();
3504 (arg1)->Replace(arg2,arg3,(wxString const &)*arg4);
3505
3506 wxPyEndAllowThreads(__tstate);
3507 if (PyErr_Occurred()) SWIG_fail;
3508 }
3509 Py_INCREF(Py_None); resultobj = Py_None;
3510 {
3511 if (temp4)
3512 delete arg4;
3513 }
3514 return resultobj;
3515 fail:
3516 {
3517 if (temp4)
3518 delete arg4;
3519 }
3520 return NULL;
3521 }
3522
3523
3524 static PyObject *_wrap_ComboBox_SetSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
3525 PyObject *resultobj;
3526 wxComboBox *arg1 = (wxComboBox *) 0 ;
3527 int arg2 ;
3528 PyObject * obj0 = 0 ;
3529 PyObject * obj1 = 0 ;
3530 char *kwnames[] = {
3531 (char *) "self",(char *) "n", NULL
3532 };
3533
3534 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ComboBox_SetSelection",kwnames,&obj0,&obj1)) goto fail;
3535 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3536 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3537 arg2 = (int) SWIG_AsInt(obj1);
3538 if (PyErr_Occurred()) SWIG_fail;
3539 {
3540 PyThreadState* __tstate = wxPyBeginAllowThreads();
3541 (arg1)->SetSelection(arg2);
3542
3543 wxPyEndAllowThreads(__tstate);
3544 if (PyErr_Occurred()) SWIG_fail;
3545 }
3546 Py_INCREF(Py_None); resultobj = Py_None;
3547 return resultobj;
3548 fail:
3549 return NULL;
3550 }
3551
3552
3553 static PyObject *_wrap_ComboBox_SetMark(PyObject *self, PyObject *args, PyObject *kwargs) {
3554 PyObject *resultobj;
3555 wxComboBox *arg1 = (wxComboBox *) 0 ;
3556 long arg2 ;
3557 long arg3 ;
3558 PyObject * obj0 = 0 ;
3559 PyObject * obj1 = 0 ;
3560 PyObject * obj2 = 0 ;
3561 char *kwnames[] = {
3562 (char *) "self",(char *) "from",(char *) "to", NULL
3563 };
3564
3565 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ComboBox_SetMark",kwnames,&obj0,&obj1,&obj2)) goto fail;
3566 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3567 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3568 arg2 = (long) SWIG_AsLong(obj1);
3569 if (PyErr_Occurred()) SWIG_fail;
3570 arg3 = (long) SWIG_AsLong(obj2);
3571 if (PyErr_Occurred()) SWIG_fail;
3572 {
3573 PyThreadState* __tstate = wxPyBeginAllowThreads();
3574 (arg1)->SetSelection(arg2,arg3);
3575
3576 wxPyEndAllowThreads(__tstate);
3577 if (PyErr_Occurred()) SWIG_fail;
3578 }
3579 Py_INCREF(Py_None); resultobj = Py_None;
3580 return resultobj;
3581 fail:
3582 return NULL;
3583 }
3584
3585
3586 static PyObject *_wrap_ComboBox_SetStringSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
3587 PyObject *resultobj;
3588 wxComboBox *arg1 = (wxComboBox *) 0 ;
3589 wxString *arg2 = 0 ;
3590 bool result;
3591 bool temp2 = False ;
3592 PyObject * obj0 = 0 ;
3593 PyObject * obj1 = 0 ;
3594 char *kwnames[] = {
3595 (char *) "self",(char *) "string", NULL
3596 };
3597
3598 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ComboBox_SetStringSelection",kwnames,&obj0,&obj1)) goto fail;
3599 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3600 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3601 {
3602 arg2 = wxString_in_helper(obj1);
3603 if (arg2 == NULL) SWIG_fail;
3604 temp2 = True;
3605 }
3606 {
3607 PyThreadState* __tstate = wxPyBeginAllowThreads();
3608 result = (bool)(arg1)->SetStringSelection((wxString const &)*arg2);
3609
3610 wxPyEndAllowThreads(__tstate);
3611 if (PyErr_Occurred()) SWIG_fail;
3612 }
3613 {
3614 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
3615 }
3616 {
3617 if (temp2)
3618 delete arg2;
3619 }
3620 return resultobj;
3621 fail:
3622 {
3623 if (temp2)
3624 delete arg2;
3625 }
3626 return NULL;
3627 }
3628
3629
3630 static PyObject *_wrap_ComboBox_SetString(PyObject *self, PyObject *args, PyObject *kwargs) {
3631 PyObject *resultobj;
3632 wxComboBox *arg1 = (wxComboBox *) 0 ;
3633 int arg2 ;
3634 wxString *arg3 = 0 ;
3635 bool temp3 = False ;
3636 PyObject * obj0 = 0 ;
3637 PyObject * obj1 = 0 ;
3638 PyObject * obj2 = 0 ;
3639 char *kwnames[] = {
3640 (char *) "self",(char *) "n",(char *) "string", NULL
3641 };
3642
3643 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ComboBox_SetString",kwnames,&obj0,&obj1,&obj2)) goto fail;
3644 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3645 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3646 arg2 = (int) SWIG_AsInt(obj1);
3647 if (PyErr_Occurred()) SWIG_fail;
3648 {
3649 arg3 = wxString_in_helper(obj2);
3650 if (arg3 == NULL) SWIG_fail;
3651 temp3 = True;
3652 }
3653 {
3654 PyThreadState* __tstate = wxPyBeginAllowThreads();
3655 (arg1)->SetString(arg2,(wxString const &)*arg3);
3656
3657 wxPyEndAllowThreads(__tstate);
3658 if (PyErr_Occurred()) SWIG_fail;
3659 }
3660 Py_INCREF(Py_None); resultobj = Py_None;
3661 {
3662 if (temp3)
3663 delete arg3;
3664 }
3665 return resultobj;
3666 fail:
3667 {
3668 if (temp3)
3669 delete arg3;
3670 }
3671 return NULL;
3672 }
3673
3674
3675 static PyObject *_wrap_ComboBox_SetEditable(PyObject *self, PyObject *args, PyObject *kwargs) {
3676 PyObject *resultobj;
3677 wxComboBox *arg1 = (wxComboBox *) 0 ;
3678 bool arg2 ;
3679 PyObject * obj0 = 0 ;
3680 PyObject * obj1 = 0 ;
3681 char *kwnames[] = {
3682 (char *) "self",(char *) "editable", NULL
3683 };
3684
3685 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ComboBox_SetEditable",kwnames,&obj0,&obj1)) goto fail;
3686 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3687 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3688 arg2 = (bool) SWIG_AsBool(obj1);
3689 if (PyErr_Occurred()) SWIG_fail;
3690 {
3691 PyThreadState* __tstate = wxPyBeginAllowThreads();
3692 (arg1)->SetEditable(arg2);
3693
3694 wxPyEndAllowThreads(__tstate);
3695 if (PyErr_Occurred()) SWIG_fail;
3696 }
3697 Py_INCREF(Py_None); resultobj = Py_None;
3698 return resultobj;
3699 fail:
3700 return NULL;
3701 }
3702
3703
3704 static PyObject *_wrap_ComboBox_SetInsertionPointEnd(PyObject *self, PyObject *args, PyObject *kwargs) {
3705 PyObject *resultobj;
3706 wxComboBox *arg1 = (wxComboBox *) 0 ;
3707 PyObject * obj0 = 0 ;
3708 char *kwnames[] = {
3709 (char *) "self", NULL
3710 };
3711
3712 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ComboBox_SetInsertionPointEnd",kwnames,&obj0)) goto fail;
3713 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3714 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3715 {
3716 PyThreadState* __tstate = wxPyBeginAllowThreads();
3717 (arg1)->SetInsertionPointEnd();
3718
3719 wxPyEndAllowThreads(__tstate);
3720 if (PyErr_Occurred()) SWIG_fail;
3721 }
3722 Py_INCREF(Py_None); resultobj = Py_None;
3723 return resultobj;
3724 fail:
3725 return NULL;
3726 }
3727
3728
3729 static PyObject *_wrap_ComboBox_Remove(PyObject *self, PyObject *args, PyObject *kwargs) {
3730 PyObject *resultobj;
3731 wxComboBox *arg1 = (wxComboBox *) 0 ;
3732 long arg2 ;
3733 long arg3 ;
3734 PyObject * obj0 = 0 ;
3735 PyObject * obj1 = 0 ;
3736 PyObject * obj2 = 0 ;
3737 char *kwnames[] = {
3738 (char *) "self",(char *) "from",(char *) "to", NULL
3739 };
3740
3741 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ComboBox_Remove",kwnames,&obj0,&obj1,&obj2)) goto fail;
3742 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxComboBox,
3743 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3744 arg2 = (long) SWIG_AsLong(obj1);
3745 if (PyErr_Occurred()) SWIG_fail;
3746 arg3 = (long) SWIG_AsLong(obj2);
3747 if (PyErr_Occurred()) SWIG_fail;
3748 {
3749 PyThreadState* __tstate = wxPyBeginAllowThreads();
3750 (arg1)->Remove(arg2,arg3);
3751
3752 wxPyEndAllowThreads(__tstate);
3753 if (PyErr_Occurred()) SWIG_fail;
3754 }
3755 Py_INCREF(Py_None); resultobj = Py_None;
3756 return resultobj;
3757 fail:
3758 return NULL;
3759 }
3760
3761
3762 static PyObject *_wrap_ComboBox_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
3763 PyObject *resultobj;
3764 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
3765 wxVisualAttributes result;
3766 PyObject * obj0 = 0 ;
3767 char *kwnames[] = {
3768 (char *) "variant", NULL
3769 };
3770
3771 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:ComboBox_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
3772 if (obj0) {
3773 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
3774 if (PyErr_Occurred()) SWIG_fail;
3775 }
3776 {
3777 if (!wxPyCheckForApp()) SWIG_fail;
3778 PyThreadState* __tstate = wxPyBeginAllowThreads();
3779 result = wxComboBox::GetClassDefaultAttributes((wxWindowVariant )arg1);
3780
3781 wxPyEndAllowThreads(__tstate);
3782 if (PyErr_Occurred()) SWIG_fail;
3783 }
3784 {
3785 wxVisualAttributes * resultptr;
3786 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
3787 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
3788 }
3789 return resultobj;
3790 fail:
3791 return NULL;
3792 }
3793
3794
3795 static PyObject * ComboBox_swigregister(PyObject *self, PyObject *args) {
3796 PyObject *obj;
3797 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
3798 SWIG_TypeClientData(SWIGTYPE_p_wxComboBox, obj);
3799 Py_INCREF(obj);
3800 return Py_BuildValue((char *)"");
3801 }
3802 static int _wrap_GaugeNameStr_set(PyObject *_val) {
3803 PyErr_SetString(PyExc_TypeError,"Variable GaugeNameStr is read-only.");
3804 return 1;
3805 }
3806
3807
3808 static PyObject *_wrap_GaugeNameStr_get() {
3809 PyObject *pyobj;
3810
3811 {
3812 #if wxUSE_UNICODE
3813 pyobj = PyUnicode_FromWideChar((&wxPyGaugeNameStr)->c_str(), (&wxPyGaugeNameStr)->Len());
3814 #else
3815 pyobj = PyString_FromStringAndSize((&wxPyGaugeNameStr)->c_str(), (&wxPyGaugeNameStr)->Len());
3816 #endif
3817 }
3818 return pyobj;
3819 }
3820
3821
3822 static PyObject *_wrap_new_Gauge(PyObject *self, PyObject *args, PyObject *kwargs) {
3823 PyObject *resultobj;
3824 wxWindow *arg1 = (wxWindow *) 0 ;
3825 int arg2 = (int) -1 ;
3826 int arg3 = (int) 100 ;
3827 wxPoint const &arg4_defvalue = wxDefaultPosition ;
3828 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
3829 wxSize const &arg5_defvalue = wxDefaultSize ;
3830 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
3831 long arg6 = (long) wxGA_HORIZONTAL ;
3832 wxValidator const &arg7_defvalue = wxDefaultValidator ;
3833 wxValidator *arg7 = (wxValidator *) &arg7_defvalue ;
3834 wxString const &arg8_defvalue = wxPyGaugeNameStr ;
3835 wxString *arg8 = (wxString *) &arg8_defvalue ;
3836 wxGauge *result;
3837 wxPoint temp4 ;
3838 wxSize temp5 ;
3839 bool temp8 = False ;
3840 PyObject * obj0 = 0 ;
3841 PyObject * obj1 = 0 ;
3842 PyObject * obj2 = 0 ;
3843 PyObject * obj3 = 0 ;
3844 PyObject * obj4 = 0 ;
3845 PyObject * obj5 = 0 ;
3846 PyObject * obj6 = 0 ;
3847 PyObject * obj7 = 0 ;
3848 char *kwnames[] = {
3849 (char *) "parent",(char *) "id",(char *) "range",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
3850 };
3851
3852 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOO:new_Gauge",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
3853 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
3854 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3855 if (obj1) {
3856 arg2 = (int) SWIG_AsInt(obj1);
3857 if (PyErr_Occurred()) SWIG_fail;
3858 }
3859 if (obj2) {
3860 arg3 = (int) SWIG_AsInt(obj2);
3861 if (PyErr_Occurred()) SWIG_fail;
3862 }
3863 if (obj3) {
3864 {
3865 arg4 = &temp4;
3866 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
3867 }
3868 }
3869 if (obj4) {
3870 {
3871 arg5 = &temp5;
3872 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
3873 }
3874 }
3875 if (obj5) {
3876 arg6 = (long) SWIG_AsLong(obj5);
3877 if (PyErr_Occurred()) SWIG_fail;
3878 }
3879 if (obj6) {
3880 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxValidator,
3881 SWIG_POINTER_EXCEPTION | 0)) == -1)
3882 SWIG_fail;
3883 if (arg7 == NULL) {
3884 PyErr_SetString(PyExc_TypeError,"null reference");
3885 SWIG_fail;
3886 }
3887 }
3888 if (obj7) {
3889 {
3890 arg8 = wxString_in_helper(obj7);
3891 if (arg8 == NULL) SWIG_fail;
3892 temp8 = True;
3893 }
3894 }
3895 {
3896 if (!wxPyCheckForApp()) SWIG_fail;
3897 PyThreadState* __tstate = wxPyBeginAllowThreads();
3898 result = (wxGauge *)new wxGauge(arg1,arg2,arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxValidator const &)*arg7,(wxString const &)*arg8);
3899
3900 wxPyEndAllowThreads(__tstate);
3901 if (PyErr_Occurred()) SWIG_fail;
3902 }
3903 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxGauge, 1);
3904 {
3905 if (temp8)
3906 delete arg8;
3907 }
3908 return resultobj;
3909 fail:
3910 {
3911 if (temp8)
3912 delete arg8;
3913 }
3914 return NULL;
3915 }
3916
3917
3918 static PyObject *_wrap_new_PreGauge(PyObject *self, PyObject *args, PyObject *kwargs) {
3919 PyObject *resultobj;
3920 wxGauge *result;
3921 char *kwnames[] = {
3922 NULL
3923 };
3924
3925 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreGauge",kwnames)) goto fail;
3926 {
3927 if (!wxPyCheckForApp()) SWIG_fail;
3928 PyThreadState* __tstate = wxPyBeginAllowThreads();
3929 result = (wxGauge *)new wxGauge();
3930
3931 wxPyEndAllowThreads(__tstate);
3932 if (PyErr_Occurred()) SWIG_fail;
3933 }
3934 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxGauge, 1);
3935 return resultobj;
3936 fail:
3937 return NULL;
3938 }
3939
3940
3941 static PyObject *_wrap_Gauge_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
3942 PyObject *resultobj;
3943 wxGauge *arg1 = (wxGauge *) 0 ;
3944 wxWindow *arg2 = (wxWindow *) 0 ;
3945 int arg3 = (int) -1 ;
3946 int arg4 = (int) 100 ;
3947 wxPoint const &arg5_defvalue = wxDefaultPosition ;
3948 wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
3949 wxSize const &arg6_defvalue = wxDefaultSize ;
3950 wxSize *arg6 = (wxSize *) &arg6_defvalue ;
3951 long arg7 = (long) wxGA_HORIZONTAL ;
3952 wxValidator const &arg8_defvalue = wxDefaultValidator ;
3953 wxValidator *arg8 = (wxValidator *) &arg8_defvalue ;
3954 wxString const &arg9_defvalue = wxPyGaugeNameStr ;
3955 wxString *arg9 = (wxString *) &arg9_defvalue ;
3956 bool result;
3957 wxPoint temp5 ;
3958 wxSize temp6 ;
3959 bool temp9 = False ;
3960 PyObject * obj0 = 0 ;
3961 PyObject * obj1 = 0 ;
3962 PyObject * obj2 = 0 ;
3963 PyObject * obj3 = 0 ;
3964 PyObject * obj4 = 0 ;
3965 PyObject * obj5 = 0 ;
3966 PyObject * obj6 = 0 ;
3967 PyObject * obj7 = 0 ;
3968 PyObject * obj8 = 0 ;
3969 char *kwnames[] = {
3970 (char *) "self",(char *) "parent",(char *) "id",(char *) "range",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
3971 };
3972
3973 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOO:Gauge_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail;
3974 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGauge,
3975 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3976 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
3977 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
3978 if (obj2) {
3979 arg3 = (int) SWIG_AsInt(obj2);
3980 if (PyErr_Occurred()) SWIG_fail;
3981 }
3982 if (obj3) {
3983 arg4 = (int) SWIG_AsInt(obj3);
3984 if (PyErr_Occurred()) SWIG_fail;
3985 }
3986 if (obj4) {
3987 {
3988 arg5 = &temp5;
3989 if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
3990 }
3991 }
3992 if (obj5) {
3993 {
3994 arg6 = &temp6;
3995 if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
3996 }
3997 }
3998 if (obj6) {
3999 arg7 = (long) SWIG_AsLong(obj6);
4000 if (PyErr_Occurred()) SWIG_fail;
4001 }
4002 if (obj7) {
4003 if ((SWIG_ConvertPtr(obj7,(void **)(&arg8),SWIGTYPE_p_wxValidator,
4004 SWIG_POINTER_EXCEPTION | 0)) == -1)
4005 SWIG_fail;
4006 if (arg8 == NULL) {
4007 PyErr_SetString(PyExc_TypeError,"null reference");
4008 SWIG_fail;
4009 }
4010 }
4011 if (obj8) {
4012 {
4013 arg9 = wxString_in_helper(obj8);
4014 if (arg9 == NULL) SWIG_fail;
4015 temp9 = True;
4016 }
4017 }
4018 {
4019 PyThreadState* __tstate = wxPyBeginAllowThreads();
4020 result = (bool)(arg1)->Create(arg2,arg3,arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,arg7,(wxValidator const &)*arg8,(wxString const &)*arg9);
4021
4022 wxPyEndAllowThreads(__tstate);
4023 if (PyErr_Occurred()) SWIG_fail;
4024 }
4025 {
4026 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
4027 }
4028 {
4029 if (temp9)
4030 delete arg9;
4031 }
4032 return resultobj;
4033 fail:
4034 {
4035 if (temp9)
4036 delete arg9;
4037 }
4038 return NULL;
4039 }
4040
4041
4042 static PyObject *_wrap_Gauge_SetRange(PyObject *self, PyObject *args, PyObject *kwargs) {
4043 PyObject *resultobj;
4044 wxGauge *arg1 = (wxGauge *) 0 ;
4045 int arg2 ;
4046 PyObject * obj0 = 0 ;
4047 PyObject * obj1 = 0 ;
4048 char *kwnames[] = {
4049 (char *) "self",(char *) "range", NULL
4050 };
4051
4052 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Gauge_SetRange",kwnames,&obj0,&obj1)) goto fail;
4053 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGauge,
4054 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4055 arg2 = (int) SWIG_AsInt(obj1);
4056 if (PyErr_Occurred()) SWIG_fail;
4057 {
4058 PyThreadState* __tstate = wxPyBeginAllowThreads();
4059 (arg1)->SetRange(arg2);
4060
4061 wxPyEndAllowThreads(__tstate);
4062 if (PyErr_Occurred()) SWIG_fail;
4063 }
4064 Py_INCREF(Py_None); resultobj = Py_None;
4065 return resultobj;
4066 fail:
4067 return NULL;
4068 }
4069
4070
4071 static PyObject *_wrap_Gauge_GetRange(PyObject *self, PyObject *args, PyObject *kwargs) {
4072 PyObject *resultobj;
4073 wxGauge *arg1 = (wxGauge *) 0 ;
4074 int result;
4075 PyObject * obj0 = 0 ;
4076 char *kwnames[] = {
4077 (char *) "self", NULL
4078 };
4079
4080 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Gauge_GetRange",kwnames,&obj0)) goto fail;
4081 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGauge,
4082 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4083 {
4084 PyThreadState* __tstate = wxPyBeginAllowThreads();
4085 result = (int)((wxGauge const *)arg1)->GetRange();
4086
4087 wxPyEndAllowThreads(__tstate);
4088 if (PyErr_Occurred()) SWIG_fail;
4089 }
4090 resultobj = SWIG_FromInt((int)result);
4091 return resultobj;
4092 fail:
4093 return NULL;
4094 }
4095
4096
4097 static PyObject *_wrap_Gauge_SetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
4098 PyObject *resultobj;
4099 wxGauge *arg1 = (wxGauge *) 0 ;
4100 int arg2 ;
4101 PyObject * obj0 = 0 ;
4102 PyObject * obj1 = 0 ;
4103 char *kwnames[] = {
4104 (char *) "self",(char *) "pos", NULL
4105 };
4106
4107 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Gauge_SetValue",kwnames,&obj0,&obj1)) goto fail;
4108 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGauge,
4109 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4110 arg2 = (int) SWIG_AsInt(obj1);
4111 if (PyErr_Occurred()) SWIG_fail;
4112 {
4113 PyThreadState* __tstate = wxPyBeginAllowThreads();
4114 (arg1)->SetValue(arg2);
4115
4116 wxPyEndAllowThreads(__tstate);
4117 if (PyErr_Occurred()) SWIG_fail;
4118 }
4119 Py_INCREF(Py_None); resultobj = Py_None;
4120 return resultobj;
4121 fail:
4122 return NULL;
4123 }
4124
4125
4126 static PyObject *_wrap_Gauge_GetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
4127 PyObject *resultobj;
4128 wxGauge *arg1 = (wxGauge *) 0 ;
4129 int result;
4130 PyObject * obj0 = 0 ;
4131 char *kwnames[] = {
4132 (char *) "self", NULL
4133 };
4134
4135 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Gauge_GetValue",kwnames,&obj0)) goto fail;
4136 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGauge,
4137 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4138 {
4139 PyThreadState* __tstate = wxPyBeginAllowThreads();
4140 result = (int)((wxGauge const *)arg1)->GetValue();
4141
4142 wxPyEndAllowThreads(__tstate);
4143 if (PyErr_Occurred()) SWIG_fail;
4144 }
4145 resultobj = SWIG_FromInt((int)result);
4146 return resultobj;
4147 fail:
4148 return NULL;
4149 }
4150
4151
4152 static PyObject *_wrap_Gauge_IsVertical(PyObject *self, PyObject *args, PyObject *kwargs) {
4153 PyObject *resultobj;
4154 wxGauge *arg1 = (wxGauge *) 0 ;
4155 bool result;
4156 PyObject * obj0 = 0 ;
4157 char *kwnames[] = {
4158 (char *) "self", NULL
4159 };
4160
4161 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Gauge_IsVertical",kwnames,&obj0)) goto fail;
4162 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGauge,
4163 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4164 {
4165 PyThreadState* __tstate = wxPyBeginAllowThreads();
4166 result = (bool)((wxGauge const *)arg1)->IsVertical();
4167
4168 wxPyEndAllowThreads(__tstate);
4169 if (PyErr_Occurred()) SWIG_fail;
4170 }
4171 {
4172 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
4173 }
4174 return resultobj;
4175 fail:
4176 return NULL;
4177 }
4178
4179
4180 static PyObject *_wrap_Gauge_SetShadowWidth(PyObject *self, PyObject *args, PyObject *kwargs) {
4181 PyObject *resultobj;
4182 wxGauge *arg1 = (wxGauge *) 0 ;
4183 int arg2 ;
4184 PyObject * obj0 = 0 ;
4185 PyObject * obj1 = 0 ;
4186 char *kwnames[] = {
4187 (char *) "self",(char *) "w", NULL
4188 };
4189
4190 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Gauge_SetShadowWidth",kwnames,&obj0,&obj1)) goto fail;
4191 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGauge,
4192 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4193 arg2 = (int) SWIG_AsInt(obj1);
4194 if (PyErr_Occurred()) SWIG_fail;
4195 {
4196 PyThreadState* __tstate = wxPyBeginAllowThreads();
4197 (arg1)->SetShadowWidth(arg2);
4198
4199 wxPyEndAllowThreads(__tstate);
4200 if (PyErr_Occurred()) SWIG_fail;
4201 }
4202 Py_INCREF(Py_None); resultobj = Py_None;
4203 return resultobj;
4204 fail:
4205 return NULL;
4206 }
4207
4208
4209 static PyObject *_wrap_Gauge_GetShadowWidth(PyObject *self, PyObject *args, PyObject *kwargs) {
4210 PyObject *resultobj;
4211 wxGauge *arg1 = (wxGauge *) 0 ;
4212 int result;
4213 PyObject * obj0 = 0 ;
4214 char *kwnames[] = {
4215 (char *) "self", NULL
4216 };
4217
4218 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Gauge_GetShadowWidth",kwnames,&obj0)) goto fail;
4219 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGauge,
4220 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4221 {
4222 PyThreadState* __tstate = wxPyBeginAllowThreads();
4223 result = (int)((wxGauge const *)arg1)->GetShadowWidth();
4224
4225 wxPyEndAllowThreads(__tstate);
4226 if (PyErr_Occurred()) SWIG_fail;
4227 }
4228 resultobj = SWIG_FromInt((int)result);
4229 return resultobj;
4230 fail:
4231 return NULL;
4232 }
4233
4234
4235 static PyObject *_wrap_Gauge_SetBezelFace(PyObject *self, PyObject *args, PyObject *kwargs) {
4236 PyObject *resultobj;
4237 wxGauge *arg1 = (wxGauge *) 0 ;
4238 int arg2 ;
4239 PyObject * obj0 = 0 ;
4240 PyObject * obj1 = 0 ;
4241 char *kwnames[] = {
4242 (char *) "self",(char *) "w", NULL
4243 };
4244
4245 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Gauge_SetBezelFace",kwnames,&obj0,&obj1)) goto fail;
4246 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGauge,
4247 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4248 arg2 = (int) SWIG_AsInt(obj1);
4249 if (PyErr_Occurred()) SWIG_fail;
4250 {
4251 PyThreadState* __tstate = wxPyBeginAllowThreads();
4252 (arg1)->SetBezelFace(arg2);
4253
4254 wxPyEndAllowThreads(__tstate);
4255 if (PyErr_Occurred()) SWIG_fail;
4256 }
4257 Py_INCREF(Py_None); resultobj = Py_None;
4258 return resultobj;
4259 fail:
4260 return NULL;
4261 }
4262
4263
4264 static PyObject *_wrap_Gauge_GetBezelFace(PyObject *self, PyObject *args, PyObject *kwargs) {
4265 PyObject *resultobj;
4266 wxGauge *arg1 = (wxGauge *) 0 ;
4267 int result;
4268 PyObject * obj0 = 0 ;
4269 char *kwnames[] = {
4270 (char *) "self", NULL
4271 };
4272
4273 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Gauge_GetBezelFace",kwnames,&obj0)) goto fail;
4274 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGauge,
4275 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4276 {
4277 PyThreadState* __tstate = wxPyBeginAllowThreads();
4278 result = (int)((wxGauge const *)arg1)->GetBezelFace();
4279
4280 wxPyEndAllowThreads(__tstate);
4281 if (PyErr_Occurred()) SWIG_fail;
4282 }
4283 resultobj = SWIG_FromInt((int)result);
4284 return resultobj;
4285 fail:
4286 return NULL;
4287 }
4288
4289
4290 static PyObject *_wrap_Gauge_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
4291 PyObject *resultobj;
4292 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
4293 wxVisualAttributes result;
4294 PyObject * obj0 = 0 ;
4295 char *kwnames[] = {
4296 (char *) "variant", NULL
4297 };
4298
4299 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:Gauge_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
4300 if (obj0) {
4301 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
4302 if (PyErr_Occurred()) SWIG_fail;
4303 }
4304 {
4305 if (!wxPyCheckForApp()) SWIG_fail;
4306 PyThreadState* __tstate = wxPyBeginAllowThreads();
4307 result = wxGauge::GetClassDefaultAttributes((wxWindowVariant )arg1);
4308
4309 wxPyEndAllowThreads(__tstate);
4310 if (PyErr_Occurred()) SWIG_fail;
4311 }
4312 {
4313 wxVisualAttributes * resultptr;
4314 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
4315 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
4316 }
4317 return resultobj;
4318 fail:
4319 return NULL;
4320 }
4321
4322
4323 static PyObject * Gauge_swigregister(PyObject *self, PyObject *args) {
4324 PyObject *obj;
4325 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
4326 SWIG_TypeClientData(SWIGTYPE_p_wxGauge, obj);
4327 Py_INCREF(obj);
4328 return Py_BuildValue((char *)"");
4329 }
4330 static int _wrap_StaticBitmapNameStr_set(PyObject *_val) {
4331 PyErr_SetString(PyExc_TypeError,"Variable StaticBitmapNameStr is read-only.");
4332 return 1;
4333 }
4334
4335
4336 static PyObject *_wrap_StaticBitmapNameStr_get() {
4337 PyObject *pyobj;
4338
4339 {
4340 #if wxUSE_UNICODE
4341 pyobj = PyUnicode_FromWideChar((&wxPyStaticBitmapNameStr)->c_str(), (&wxPyStaticBitmapNameStr)->Len());
4342 #else
4343 pyobj = PyString_FromStringAndSize((&wxPyStaticBitmapNameStr)->c_str(), (&wxPyStaticBitmapNameStr)->Len());
4344 #endif
4345 }
4346 return pyobj;
4347 }
4348
4349
4350 static int _wrap_StaticBoxNameStr_set(PyObject *_val) {
4351 PyErr_SetString(PyExc_TypeError,"Variable StaticBoxNameStr is read-only.");
4352 return 1;
4353 }
4354
4355
4356 static PyObject *_wrap_StaticBoxNameStr_get() {
4357 PyObject *pyobj;
4358
4359 {
4360 #if wxUSE_UNICODE
4361 pyobj = PyUnicode_FromWideChar((&wxPyStaticBoxNameStr)->c_str(), (&wxPyStaticBoxNameStr)->Len());
4362 #else
4363 pyobj = PyString_FromStringAndSize((&wxPyStaticBoxNameStr)->c_str(), (&wxPyStaticBoxNameStr)->Len());
4364 #endif
4365 }
4366 return pyobj;
4367 }
4368
4369
4370 static int _wrap_StaticTextNameStr_set(PyObject *_val) {
4371 PyErr_SetString(PyExc_TypeError,"Variable StaticTextNameStr is read-only.");
4372 return 1;
4373 }
4374
4375
4376 static PyObject *_wrap_StaticTextNameStr_get() {
4377 PyObject *pyobj;
4378
4379 {
4380 #if wxUSE_UNICODE
4381 pyobj = PyUnicode_FromWideChar((&wxPyStaticTextNameStr)->c_str(), (&wxPyStaticTextNameStr)->Len());
4382 #else
4383 pyobj = PyString_FromStringAndSize((&wxPyStaticTextNameStr)->c_str(), (&wxPyStaticTextNameStr)->Len());
4384 #endif
4385 }
4386 return pyobj;
4387 }
4388
4389
4390 static PyObject *_wrap_new_StaticBox(PyObject *self, PyObject *args, PyObject *kwargs) {
4391 PyObject *resultobj;
4392 wxWindow *arg1 = (wxWindow *) 0 ;
4393 int arg2 = (int) -1 ;
4394 wxString const &arg3_defvalue = wxPyEmptyString ;
4395 wxString *arg3 = (wxString *) &arg3_defvalue ;
4396 wxPoint const &arg4_defvalue = wxDefaultPosition ;
4397 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
4398 wxSize const &arg5_defvalue = wxDefaultSize ;
4399 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
4400 long arg6 = (long) 0 ;
4401 wxString const &arg7_defvalue = wxPyStaticBoxNameStr ;
4402 wxString *arg7 = (wxString *) &arg7_defvalue ;
4403 wxStaticBox *result;
4404 bool temp3 = False ;
4405 wxPoint temp4 ;
4406 wxSize temp5 ;
4407 bool temp7 = False ;
4408 PyObject * obj0 = 0 ;
4409 PyObject * obj1 = 0 ;
4410 PyObject * obj2 = 0 ;
4411 PyObject * obj3 = 0 ;
4412 PyObject * obj4 = 0 ;
4413 PyObject * obj5 = 0 ;
4414 PyObject * obj6 = 0 ;
4415 char *kwnames[] = {
4416 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
4417 };
4418
4419 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOO:new_StaticBox",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
4420 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
4421 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4422 if (obj1) {
4423 arg2 = (int) SWIG_AsInt(obj1);
4424 if (PyErr_Occurred()) SWIG_fail;
4425 }
4426 if (obj2) {
4427 {
4428 arg3 = wxString_in_helper(obj2);
4429 if (arg3 == NULL) SWIG_fail;
4430 temp3 = True;
4431 }
4432 }
4433 if (obj3) {
4434 {
4435 arg4 = &temp4;
4436 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
4437 }
4438 }
4439 if (obj4) {
4440 {
4441 arg5 = &temp5;
4442 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
4443 }
4444 }
4445 if (obj5) {
4446 arg6 = (long) SWIG_AsLong(obj5);
4447 if (PyErr_Occurred()) SWIG_fail;
4448 }
4449 if (obj6) {
4450 {
4451 arg7 = wxString_in_helper(obj6);
4452 if (arg7 == NULL) SWIG_fail;
4453 temp7 = True;
4454 }
4455 }
4456 {
4457 if (!wxPyCheckForApp()) SWIG_fail;
4458 PyThreadState* __tstate = wxPyBeginAllowThreads();
4459 result = (wxStaticBox *)new wxStaticBox(arg1,arg2,(wxString const &)*arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxString const &)*arg7);
4460
4461 wxPyEndAllowThreads(__tstate);
4462 if (PyErr_Occurred()) SWIG_fail;
4463 }
4464 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxStaticBox, 1);
4465 {
4466 if (temp3)
4467 delete arg3;
4468 }
4469 {
4470 if (temp7)
4471 delete arg7;
4472 }
4473 return resultobj;
4474 fail:
4475 {
4476 if (temp3)
4477 delete arg3;
4478 }
4479 {
4480 if (temp7)
4481 delete arg7;
4482 }
4483 return NULL;
4484 }
4485
4486
4487 static PyObject *_wrap_new_PreStaticBox(PyObject *self, PyObject *args, PyObject *kwargs) {
4488 PyObject *resultobj;
4489 wxStaticBox *result;
4490 char *kwnames[] = {
4491 NULL
4492 };
4493
4494 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreStaticBox",kwnames)) goto fail;
4495 {
4496 if (!wxPyCheckForApp()) SWIG_fail;
4497 PyThreadState* __tstate = wxPyBeginAllowThreads();
4498 result = (wxStaticBox *)new wxStaticBox();
4499
4500 wxPyEndAllowThreads(__tstate);
4501 if (PyErr_Occurred()) SWIG_fail;
4502 }
4503 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxStaticBox, 1);
4504 return resultobj;
4505 fail:
4506 return NULL;
4507 }
4508
4509
4510 static PyObject *_wrap_StaticBox_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
4511 PyObject *resultobj;
4512 wxStaticBox *arg1 = (wxStaticBox *) 0 ;
4513 wxWindow *arg2 = (wxWindow *) 0 ;
4514 int arg3 = (int) -1 ;
4515 wxString const &arg4_defvalue = wxPyEmptyString ;
4516 wxString *arg4 = (wxString *) &arg4_defvalue ;
4517 wxPoint const &arg5_defvalue = wxDefaultPosition ;
4518 wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
4519 wxSize const &arg6_defvalue = wxDefaultSize ;
4520 wxSize *arg6 = (wxSize *) &arg6_defvalue ;
4521 long arg7 = (long) 0 ;
4522 wxString const &arg8_defvalue = wxPyStaticBoxNameStr ;
4523 wxString *arg8 = (wxString *) &arg8_defvalue ;
4524 bool result;
4525 bool temp4 = False ;
4526 wxPoint temp5 ;
4527 wxSize temp6 ;
4528 bool temp8 = False ;
4529 PyObject * obj0 = 0 ;
4530 PyObject * obj1 = 0 ;
4531 PyObject * obj2 = 0 ;
4532 PyObject * obj3 = 0 ;
4533 PyObject * obj4 = 0 ;
4534 PyObject * obj5 = 0 ;
4535 PyObject * obj6 = 0 ;
4536 PyObject * obj7 = 0 ;
4537 char *kwnames[] = {
4538 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
4539 };
4540
4541 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOO:StaticBox_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
4542 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStaticBox,
4543 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4544 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
4545 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4546 if (obj2) {
4547 arg3 = (int) SWIG_AsInt(obj2);
4548 if (PyErr_Occurred()) SWIG_fail;
4549 }
4550 if (obj3) {
4551 {
4552 arg4 = wxString_in_helper(obj3);
4553 if (arg4 == NULL) SWIG_fail;
4554 temp4 = True;
4555 }
4556 }
4557 if (obj4) {
4558 {
4559 arg5 = &temp5;
4560 if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
4561 }
4562 }
4563 if (obj5) {
4564 {
4565 arg6 = &temp6;
4566 if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
4567 }
4568 }
4569 if (obj6) {
4570 arg7 = (long) SWIG_AsLong(obj6);
4571 if (PyErr_Occurred()) SWIG_fail;
4572 }
4573 if (obj7) {
4574 {
4575 arg8 = wxString_in_helper(obj7);
4576 if (arg8 == NULL) SWIG_fail;
4577 temp8 = True;
4578 }
4579 }
4580 {
4581 PyThreadState* __tstate = wxPyBeginAllowThreads();
4582 result = (bool)(arg1)->Create(arg2,arg3,(wxString const &)*arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,arg7,(wxString const &)*arg8);
4583
4584 wxPyEndAllowThreads(__tstate);
4585 if (PyErr_Occurred()) SWIG_fail;
4586 }
4587 {
4588 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
4589 }
4590 {
4591 if (temp4)
4592 delete arg4;
4593 }
4594 {
4595 if (temp8)
4596 delete arg8;
4597 }
4598 return resultobj;
4599 fail:
4600 {
4601 if (temp4)
4602 delete arg4;
4603 }
4604 {
4605 if (temp8)
4606 delete arg8;
4607 }
4608 return NULL;
4609 }
4610
4611
4612 static PyObject *_wrap_StaticBox_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
4613 PyObject *resultobj;
4614 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
4615 wxVisualAttributes result;
4616 PyObject * obj0 = 0 ;
4617 char *kwnames[] = {
4618 (char *) "variant", NULL
4619 };
4620
4621 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:StaticBox_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
4622 if (obj0) {
4623 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
4624 if (PyErr_Occurred()) SWIG_fail;
4625 }
4626 {
4627 if (!wxPyCheckForApp()) SWIG_fail;
4628 PyThreadState* __tstate = wxPyBeginAllowThreads();
4629 result = wxStaticBox::GetClassDefaultAttributes((wxWindowVariant )arg1);
4630
4631 wxPyEndAllowThreads(__tstate);
4632 if (PyErr_Occurred()) SWIG_fail;
4633 }
4634 {
4635 wxVisualAttributes * resultptr;
4636 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
4637 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
4638 }
4639 return resultobj;
4640 fail:
4641 return NULL;
4642 }
4643
4644
4645 static PyObject * StaticBox_swigregister(PyObject *self, PyObject *args) {
4646 PyObject *obj;
4647 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
4648 SWIG_TypeClientData(SWIGTYPE_p_wxStaticBox, obj);
4649 Py_INCREF(obj);
4650 return Py_BuildValue((char *)"");
4651 }
4652 static PyObject *_wrap_new_StaticLine(PyObject *self, PyObject *args, PyObject *kwargs) {
4653 PyObject *resultobj;
4654 wxWindow *arg1 = (wxWindow *) 0 ;
4655 int arg2 = (int) -1 ;
4656 wxPoint const &arg3_defvalue = wxDefaultPosition ;
4657 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
4658 wxSize const &arg4_defvalue = wxDefaultSize ;
4659 wxSize *arg4 = (wxSize *) &arg4_defvalue ;
4660 long arg5 = (long) wxLI_HORIZONTAL ;
4661 wxString const &arg6_defvalue = wxPyStaticTextNameStr ;
4662 wxString *arg6 = (wxString *) &arg6_defvalue ;
4663 wxStaticLine *result;
4664 wxPoint temp3 ;
4665 wxSize temp4 ;
4666 bool temp6 = False ;
4667 PyObject * obj0 = 0 ;
4668 PyObject * obj1 = 0 ;
4669 PyObject * obj2 = 0 ;
4670 PyObject * obj3 = 0 ;
4671 PyObject * obj4 = 0 ;
4672 PyObject * obj5 = 0 ;
4673 char *kwnames[] = {
4674 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
4675 };
4676
4677 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOO:new_StaticLine",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail;
4678 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
4679 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4680 if (obj1) {
4681 arg2 = (int) SWIG_AsInt(obj1);
4682 if (PyErr_Occurred()) SWIG_fail;
4683 }
4684 if (obj2) {
4685 {
4686 arg3 = &temp3;
4687 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
4688 }
4689 }
4690 if (obj3) {
4691 {
4692 arg4 = &temp4;
4693 if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
4694 }
4695 }
4696 if (obj4) {
4697 arg5 = (long) SWIG_AsLong(obj4);
4698 if (PyErr_Occurred()) SWIG_fail;
4699 }
4700 if (obj5) {
4701 {
4702 arg6 = wxString_in_helper(obj5);
4703 if (arg6 == NULL) SWIG_fail;
4704 temp6 = True;
4705 }
4706 }
4707 {
4708 if (!wxPyCheckForApp()) SWIG_fail;
4709 PyThreadState* __tstate = wxPyBeginAllowThreads();
4710 result = (wxStaticLine *)new wxStaticLine(arg1,arg2,(wxPoint const &)*arg3,(wxSize const &)*arg4,arg5,(wxString const &)*arg6);
4711
4712 wxPyEndAllowThreads(__tstate);
4713 if (PyErr_Occurred()) SWIG_fail;
4714 }
4715 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxStaticLine, 1);
4716 {
4717 if (temp6)
4718 delete arg6;
4719 }
4720 return resultobj;
4721 fail:
4722 {
4723 if (temp6)
4724 delete arg6;
4725 }
4726 return NULL;
4727 }
4728
4729
4730 static PyObject *_wrap_new_PreStaticLine(PyObject *self, PyObject *args, PyObject *kwargs) {
4731 PyObject *resultobj;
4732 wxStaticLine *result;
4733 char *kwnames[] = {
4734 NULL
4735 };
4736
4737 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreStaticLine",kwnames)) goto fail;
4738 {
4739 if (!wxPyCheckForApp()) SWIG_fail;
4740 PyThreadState* __tstate = wxPyBeginAllowThreads();
4741 result = (wxStaticLine *)new wxStaticLine();
4742
4743 wxPyEndAllowThreads(__tstate);
4744 if (PyErr_Occurred()) SWIG_fail;
4745 }
4746 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxStaticLine, 1);
4747 return resultobj;
4748 fail:
4749 return NULL;
4750 }
4751
4752
4753 static PyObject *_wrap_StaticLine_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
4754 PyObject *resultobj;
4755 wxStaticLine *arg1 = (wxStaticLine *) 0 ;
4756 wxWindow *arg2 = (wxWindow *) 0 ;
4757 int arg3 = (int) -1 ;
4758 wxPoint const &arg4_defvalue = wxDefaultPosition ;
4759 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
4760 wxSize const &arg5_defvalue = wxDefaultSize ;
4761 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
4762 long arg6 = (long) wxLI_HORIZONTAL ;
4763 wxString const &arg7_defvalue = wxPyStaticTextNameStr ;
4764 wxString *arg7 = (wxString *) &arg7_defvalue ;
4765 bool result;
4766 wxPoint temp4 ;
4767 wxSize temp5 ;
4768 bool temp7 = False ;
4769 PyObject * obj0 = 0 ;
4770 PyObject * obj1 = 0 ;
4771 PyObject * obj2 = 0 ;
4772 PyObject * obj3 = 0 ;
4773 PyObject * obj4 = 0 ;
4774 PyObject * obj5 = 0 ;
4775 PyObject * obj6 = 0 ;
4776 char *kwnames[] = {
4777 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
4778 };
4779
4780 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOO:StaticLine_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
4781 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStaticLine,
4782 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4783 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
4784 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4785 if (obj2) {
4786 arg3 = (int) SWIG_AsInt(obj2);
4787 if (PyErr_Occurred()) SWIG_fail;
4788 }
4789 if (obj3) {
4790 {
4791 arg4 = &temp4;
4792 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
4793 }
4794 }
4795 if (obj4) {
4796 {
4797 arg5 = &temp5;
4798 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
4799 }
4800 }
4801 if (obj5) {
4802 arg6 = (long) SWIG_AsLong(obj5);
4803 if (PyErr_Occurred()) SWIG_fail;
4804 }
4805 if (obj6) {
4806 {
4807 arg7 = wxString_in_helper(obj6);
4808 if (arg7 == NULL) SWIG_fail;
4809 temp7 = True;
4810 }
4811 }
4812 {
4813 PyThreadState* __tstate = wxPyBeginAllowThreads();
4814 result = (bool)(arg1)->Create(arg2,arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxString const &)*arg7);
4815
4816 wxPyEndAllowThreads(__tstate);
4817 if (PyErr_Occurred()) SWIG_fail;
4818 }
4819 {
4820 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
4821 }
4822 {
4823 if (temp7)
4824 delete arg7;
4825 }
4826 return resultobj;
4827 fail:
4828 {
4829 if (temp7)
4830 delete arg7;
4831 }
4832 return NULL;
4833 }
4834
4835
4836 static PyObject *_wrap_StaticLine_IsVertical(PyObject *self, PyObject *args, PyObject *kwargs) {
4837 PyObject *resultobj;
4838 wxStaticLine *arg1 = (wxStaticLine *) 0 ;
4839 bool result;
4840 PyObject * obj0 = 0 ;
4841 char *kwnames[] = {
4842 (char *) "self", NULL
4843 };
4844
4845 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:StaticLine_IsVertical",kwnames,&obj0)) goto fail;
4846 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStaticLine,
4847 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4848 {
4849 PyThreadState* __tstate = wxPyBeginAllowThreads();
4850 result = (bool)((wxStaticLine const *)arg1)->IsVertical();
4851
4852 wxPyEndAllowThreads(__tstate);
4853 if (PyErr_Occurred()) SWIG_fail;
4854 }
4855 {
4856 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
4857 }
4858 return resultobj;
4859 fail:
4860 return NULL;
4861 }
4862
4863
4864 static PyObject *_wrap_StaticLine_GetDefaultSize(PyObject *self, PyObject *args, PyObject *kwargs) {
4865 PyObject *resultobj;
4866 int result;
4867 char *kwnames[] = {
4868 NULL
4869 };
4870
4871 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":StaticLine_GetDefaultSize",kwnames)) goto fail;
4872 {
4873 PyThreadState* __tstate = wxPyBeginAllowThreads();
4874 result = (int)wxStaticLine::GetDefaultSize();
4875
4876 wxPyEndAllowThreads(__tstate);
4877 if (PyErr_Occurred()) SWIG_fail;
4878 }
4879 resultobj = SWIG_FromInt((int)result);
4880 return resultobj;
4881 fail:
4882 return NULL;
4883 }
4884
4885
4886 static PyObject *_wrap_StaticLine_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
4887 PyObject *resultobj;
4888 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
4889 wxVisualAttributes result;
4890 PyObject * obj0 = 0 ;
4891 char *kwnames[] = {
4892 (char *) "variant", NULL
4893 };
4894
4895 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:StaticLine_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
4896 if (obj0) {
4897 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
4898 if (PyErr_Occurred()) SWIG_fail;
4899 }
4900 {
4901 if (!wxPyCheckForApp()) SWIG_fail;
4902 PyThreadState* __tstate = wxPyBeginAllowThreads();
4903 result = wxStaticLine::GetClassDefaultAttributes((wxWindowVariant )arg1);
4904
4905 wxPyEndAllowThreads(__tstate);
4906 if (PyErr_Occurred()) SWIG_fail;
4907 }
4908 {
4909 wxVisualAttributes * resultptr;
4910 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
4911 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
4912 }
4913 return resultobj;
4914 fail:
4915 return NULL;
4916 }
4917
4918
4919 static PyObject * StaticLine_swigregister(PyObject *self, PyObject *args) {
4920 PyObject *obj;
4921 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
4922 SWIG_TypeClientData(SWIGTYPE_p_wxStaticLine, obj);
4923 Py_INCREF(obj);
4924 return Py_BuildValue((char *)"");
4925 }
4926 static PyObject *_wrap_new_StaticText(PyObject *self, PyObject *args, PyObject *kwargs) {
4927 PyObject *resultobj;
4928 wxWindow *arg1 = (wxWindow *) 0 ;
4929 int arg2 = (int) -1 ;
4930 wxString const &arg3_defvalue = wxPyEmptyString ;
4931 wxString *arg3 = (wxString *) &arg3_defvalue ;
4932 wxPoint const &arg4_defvalue = wxDefaultPosition ;
4933 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
4934 wxSize const &arg5_defvalue = wxDefaultSize ;
4935 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
4936 long arg6 = (long) 0 ;
4937 wxString const &arg7_defvalue = wxPyStaticTextNameStr ;
4938 wxString *arg7 = (wxString *) &arg7_defvalue ;
4939 wxStaticText *result;
4940 bool temp3 = False ;
4941 wxPoint temp4 ;
4942 wxSize temp5 ;
4943 bool temp7 = False ;
4944 PyObject * obj0 = 0 ;
4945 PyObject * obj1 = 0 ;
4946 PyObject * obj2 = 0 ;
4947 PyObject * obj3 = 0 ;
4948 PyObject * obj4 = 0 ;
4949 PyObject * obj5 = 0 ;
4950 PyObject * obj6 = 0 ;
4951 char *kwnames[] = {
4952 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
4953 };
4954
4955 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOO:new_StaticText",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
4956 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
4957 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
4958 if (obj1) {
4959 arg2 = (int) SWIG_AsInt(obj1);
4960 if (PyErr_Occurred()) SWIG_fail;
4961 }
4962 if (obj2) {
4963 {
4964 arg3 = wxString_in_helper(obj2);
4965 if (arg3 == NULL) SWIG_fail;
4966 temp3 = True;
4967 }
4968 }
4969 if (obj3) {
4970 {
4971 arg4 = &temp4;
4972 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
4973 }
4974 }
4975 if (obj4) {
4976 {
4977 arg5 = &temp5;
4978 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
4979 }
4980 }
4981 if (obj5) {
4982 arg6 = (long) SWIG_AsLong(obj5);
4983 if (PyErr_Occurred()) SWIG_fail;
4984 }
4985 if (obj6) {
4986 {
4987 arg7 = wxString_in_helper(obj6);
4988 if (arg7 == NULL) SWIG_fail;
4989 temp7 = True;
4990 }
4991 }
4992 {
4993 if (!wxPyCheckForApp()) SWIG_fail;
4994 PyThreadState* __tstate = wxPyBeginAllowThreads();
4995 result = (wxStaticText *)new wxStaticText(arg1,arg2,(wxString const &)*arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxString const &)*arg7);
4996
4997 wxPyEndAllowThreads(__tstate);
4998 if (PyErr_Occurred()) SWIG_fail;
4999 }
5000 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxStaticText, 1);
5001 {
5002 if (temp3)
5003 delete arg3;
5004 }
5005 {
5006 if (temp7)
5007 delete arg7;
5008 }
5009 return resultobj;
5010 fail:
5011 {
5012 if (temp3)
5013 delete arg3;
5014 }
5015 {
5016 if (temp7)
5017 delete arg7;
5018 }
5019 return NULL;
5020 }
5021
5022
5023 static PyObject *_wrap_new_PreStaticText(PyObject *self, PyObject *args, PyObject *kwargs) {
5024 PyObject *resultobj;
5025 wxStaticText *result;
5026 char *kwnames[] = {
5027 NULL
5028 };
5029
5030 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreStaticText",kwnames)) goto fail;
5031 {
5032 if (!wxPyCheckForApp()) SWIG_fail;
5033 PyThreadState* __tstate = wxPyBeginAllowThreads();
5034 result = (wxStaticText *)new wxStaticText();
5035
5036 wxPyEndAllowThreads(__tstate);
5037 if (PyErr_Occurred()) SWIG_fail;
5038 }
5039 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxStaticText, 1);
5040 return resultobj;
5041 fail:
5042 return NULL;
5043 }
5044
5045
5046 static PyObject *_wrap_StaticText_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
5047 PyObject *resultobj;
5048 wxStaticText *arg1 = (wxStaticText *) 0 ;
5049 wxWindow *arg2 = (wxWindow *) 0 ;
5050 int arg3 = (int) -1 ;
5051 wxString const &arg4_defvalue = wxPyEmptyString ;
5052 wxString *arg4 = (wxString *) &arg4_defvalue ;
5053 wxPoint const &arg5_defvalue = wxDefaultPosition ;
5054 wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
5055 wxSize const &arg6_defvalue = wxDefaultSize ;
5056 wxSize *arg6 = (wxSize *) &arg6_defvalue ;
5057 long arg7 = (long) 0 ;
5058 wxString const &arg8_defvalue = wxPyStaticTextNameStr ;
5059 wxString *arg8 = (wxString *) &arg8_defvalue ;
5060 bool result;
5061 bool temp4 = False ;
5062 wxPoint temp5 ;
5063 wxSize temp6 ;
5064 bool temp8 = False ;
5065 PyObject * obj0 = 0 ;
5066 PyObject * obj1 = 0 ;
5067 PyObject * obj2 = 0 ;
5068 PyObject * obj3 = 0 ;
5069 PyObject * obj4 = 0 ;
5070 PyObject * obj5 = 0 ;
5071 PyObject * obj6 = 0 ;
5072 PyObject * obj7 = 0 ;
5073 char *kwnames[] = {
5074 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
5075 };
5076
5077 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOO:StaticText_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
5078 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStaticText,
5079 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
5080 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
5081 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
5082 if (obj2) {
5083 arg3 = (int) SWIG_AsInt(obj2);
5084 if (PyErr_Occurred()) SWIG_fail;
5085 }
5086 if (obj3) {
5087 {
5088 arg4 = wxString_in_helper(obj3);
5089 if (arg4 == NULL) SWIG_fail;
5090 temp4 = True;
5091 }
5092 }
5093 if (obj4) {
5094 {
5095 arg5 = &temp5;
5096 if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
5097 }
5098 }
5099 if (obj5) {
5100 {
5101 arg6 = &temp6;
5102 if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
5103 }
5104 }
5105 if (obj6) {
5106 arg7 = (long) SWIG_AsLong(obj6);
5107 if (PyErr_Occurred()) SWIG_fail;
5108 }
5109 if (obj7) {
5110 {
5111 arg8 = wxString_in_helper(obj7);
5112 if (arg8 == NULL) SWIG_fail;
5113 temp8 = True;
5114 }
5115 }
5116 {
5117 PyThreadState* __tstate = wxPyBeginAllowThreads();
5118 result = (bool)(arg1)->Create(arg2,arg3,(wxString const &)*arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,arg7,(wxString const &)*arg8);
5119
5120 wxPyEndAllowThreads(__tstate);
5121 if (PyErr_Occurred()) SWIG_fail;
5122 }
5123 {
5124 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
5125 }
5126 {
5127 if (temp4)
5128 delete arg4;
5129 }
5130 {
5131 if (temp8)
5132 delete arg8;
5133 }
5134 return resultobj;
5135 fail:
5136 {
5137 if (temp4)
5138 delete arg4;
5139 }
5140 {
5141 if (temp8)
5142 delete arg8;
5143 }
5144 return NULL;
5145 }
5146
5147
5148 static PyObject *_wrap_StaticText_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
5149 PyObject *resultobj;
5150 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
5151 wxVisualAttributes result;
5152 PyObject * obj0 = 0 ;
5153 char *kwnames[] = {
5154 (char *) "variant", NULL
5155 };
5156
5157 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:StaticText_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
5158 if (obj0) {
5159 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
5160 if (PyErr_Occurred()) SWIG_fail;
5161 }
5162 {
5163 if (!wxPyCheckForApp()) SWIG_fail;
5164 PyThreadState* __tstate = wxPyBeginAllowThreads();
5165 result = wxStaticText::GetClassDefaultAttributes((wxWindowVariant )arg1);
5166
5167 wxPyEndAllowThreads(__tstate);
5168 if (PyErr_Occurred()) SWIG_fail;
5169 }
5170 {
5171 wxVisualAttributes * resultptr;
5172 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
5173 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
5174 }
5175 return resultobj;
5176 fail:
5177 return NULL;
5178 }
5179
5180
5181 static PyObject * StaticText_swigregister(PyObject *self, PyObject *args) {
5182 PyObject *obj;
5183 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
5184 SWIG_TypeClientData(SWIGTYPE_p_wxStaticText, obj);
5185 Py_INCREF(obj);
5186 return Py_BuildValue((char *)"");
5187 }
5188 static PyObject *_wrap_new_StaticBitmap(PyObject *self, PyObject *args, PyObject *kwargs) {
5189 PyObject *resultobj;
5190 wxWindow *arg1 = (wxWindow *) 0 ;
5191 int arg2 = (int) -1 ;
5192 wxBitmap const &arg3_defvalue = wxNullBitmap ;
5193 wxBitmap *arg3 = (wxBitmap *) &arg3_defvalue ;
5194 wxPoint const &arg4_defvalue = wxDefaultPosition ;
5195 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
5196 wxSize const &arg5_defvalue = wxDefaultSize ;
5197 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
5198 long arg6 = (long) 0 ;
5199 wxString const &arg7_defvalue = wxPyStaticBitmapNameStr ;
5200 wxString *arg7 = (wxString *) &arg7_defvalue ;
5201 wxStaticBitmap *result;
5202 wxPoint temp4 ;
5203 wxSize temp5 ;
5204 bool temp7 = False ;
5205 PyObject * obj0 = 0 ;
5206 PyObject * obj1 = 0 ;
5207 PyObject * obj2 = 0 ;
5208 PyObject * obj3 = 0 ;
5209 PyObject * obj4 = 0 ;
5210 PyObject * obj5 = 0 ;
5211 PyObject * obj6 = 0 ;
5212 char *kwnames[] = {
5213 (char *) "parent",(char *) "id",(char *) "bitmap",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
5214 };
5215
5216 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOO:new_StaticBitmap",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
5217 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
5218 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
5219 if (obj1) {
5220 arg2 = (int) SWIG_AsInt(obj1);
5221 if (PyErr_Occurred()) SWIG_fail;
5222 }
5223 if (obj2) {
5224 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxBitmap,
5225 SWIG_POINTER_EXCEPTION | 0)) == -1)
5226 SWIG_fail;
5227 if (arg3 == NULL) {
5228 PyErr_SetString(PyExc_TypeError,"null reference");
5229 SWIG_fail;
5230 }
5231 }
5232 if (obj3) {
5233 {
5234 arg4 = &temp4;
5235 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
5236 }
5237 }
5238 if (obj4) {
5239 {
5240 arg5 = &temp5;
5241 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
5242 }
5243 }
5244 if (obj5) {
5245 arg6 = (long) SWIG_AsLong(obj5);
5246 if (PyErr_Occurred()) SWIG_fail;
5247 }
5248 if (obj6) {
5249 {
5250 arg7 = wxString_in_helper(obj6);
5251 if (arg7 == NULL) SWIG_fail;
5252 temp7 = True;
5253 }
5254 }
5255 {
5256 if (!wxPyCheckForApp()) SWIG_fail;
5257 PyThreadState* __tstate = wxPyBeginAllowThreads();
5258 result = (wxStaticBitmap *)new wxStaticBitmap(arg1,arg2,(wxBitmap const &)*arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxString const &)*arg7);
5259
5260 wxPyEndAllowThreads(__tstate);
5261 if (PyErr_Occurred()) SWIG_fail;
5262 }
5263 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxStaticBitmap, 1);
5264 {
5265 if (temp7)
5266 delete arg7;
5267 }
5268 return resultobj;
5269 fail:
5270 {
5271 if (temp7)
5272 delete arg7;
5273 }
5274 return NULL;
5275 }
5276
5277
5278 static PyObject *_wrap_new_PreStaticBitmap(PyObject *self, PyObject *args, PyObject *kwargs) {
5279 PyObject *resultobj;
5280 wxStaticBitmap *result;
5281 char *kwnames[] = {
5282 NULL
5283 };
5284
5285 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreStaticBitmap",kwnames)) goto fail;
5286 {
5287 if (!wxPyCheckForApp()) SWIG_fail;
5288 PyThreadState* __tstate = wxPyBeginAllowThreads();
5289 result = (wxStaticBitmap *)new wxStaticBitmap();
5290
5291 wxPyEndAllowThreads(__tstate);
5292 if (PyErr_Occurred()) SWIG_fail;
5293 }
5294 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxStaticBitmap, 1);
5295 return resultobj;
5296 fail:
5297 return NULL;
5298 }
5299
5300
5301 static PyObject *_wrap_StaticBitmap_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
5302 PyObject *resultobj;
5303 wxStaticBitmap *arg1 = (wxStaticBitmap *) 0 ;
5304 wxWindow *arg2 = (wxWindow *) 0 ;
5305 int arg3 = (int) -1 ;
5306 wxBitmap const &arg4_defvalue = wxNullBitmap ;
5307 wxBitmap *arg4 = (wxBitmap *) &arg4_defvalue ;
5308 wxPoint const &arg5_defvalue = wxDefaultPosition ;
5309 wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
5310 wxSize const &arg6_defvalue = wxDefaultSize ;
5311 wxSize *arg6 = (wxSize *) &arg6_defvalue ;
5312 long arg7 = (long) 0 ;
5313 wxString const &arg8_defvalue = wxPyStaticBitmapNameStr ;
5314 wxString *arg8 = (wxString *) &arg8_defvalue ;
5315 bool result;
5316 wxPoint temp5 ;
5317 wxSize temp6 ;
5318 bool temp8 = False ;
5319 PyObject * obj0 = 0 ;
5320 PyObject * obj1 = 0 ;
5321 PyObject * obj2 = 0 ;
5322 PyObject * obj3 = 0 ;
5323 PyObject * obj4 = 0 ;
5324 PyObject * obj5 = 0 ;
5325 PyObject * obj6 = 0 ;
5326 PyObject * obj7 = 0 ;
5327 char *kwnames[] = {
5328 (char *) "self",(char *) "parent",(char *) "id",(char *) "bitmap",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
5329 };
5330
5331 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOO:StaticBitmap_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
5332 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStaticBitmap,
5333 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
5334 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
5335 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
5336 if (obj2) {
5337 arg3 = (int) SWIG_AsInt(obj2);
5338 if (PyErr_Occurred()) SWIG_fail;
5339 }
5340 if (obj3) {
5341 if ((SWIG_ConvertPtr(obj3,(void **)(&arg4),SWIGTYPE_p_wxBitmap,
5342 SWIG_POINTER_EXCEPTION | 0)) == -1)
5343 SWIG_fail;
5344 if (arg4 == NULL) {
5345 PyErr_SetString(PyExc_TypeError,"null reference");
5346 SWIG_fail;
5347 }
5348 }
5349 if (obj4) {
5350 {
5351 arg5 = &temp5;
5352 if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
5353 }
5354 }
5355 if (obj5) {
5356 {
5357 arg6 = &temp6;
5358 if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
5359 }
5360 }
5361 if (obj6) {
5362 arg7 = (long) SWIG_AsLong(obj6);
5363 if (PyErr_Occurred()) SWIG_fail;
5364 }
5365 if (obj7) {
5366 {
5367 arg8 = wxString_in_helper(obj7);
5368 if (arg8 == NULL) SWIG_fail;
5369 temp8 = True;
5370 }
5371 }
5372 {
5373 PyThreadState* __tstate = wxPyBeginAllowThreads();
5374 result = (bool)(arg1)->Create(arg2,arg3,(wxBitmap const &)*arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,arg7,(wxString const &)*arg8);
5375
5376 wxPyEndAllowThreads(__tstate);
5377 if (PyErr_Occurred()) SWIG_fail;
5378 }
5379 {
5380 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
5381 }
5382 {
5383 if (temp8)
5384 delete arg8;
5385 }
5386 return resultobj;
5387 fail:
5388 {
5389 if (temp8)
5390 delete arg8;
5391 }
5392 return NULL;
5393 }
5394
5395
5396 static PyObject *_wrap_StaticBitmap_GetBitmap(PyObject *self, PyObject *args, PyObject *kwargs) {
5397 PyObject *resultobj;
5398 wxStaticBitmap *arg1 = (wxStaticBitmap *) 0 ;
5399 wxBitmap result;
5400 PyObject * obj0 = 0 ;
5401 char *kwnames[] = {
5402 (char *) "self", NULL
5403 };
5404
5405 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:StaticBitmap_GetBitmap",kwnames,&obj0)) goto fail;
5406 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStaticBitmap,
5407 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
5408 {
5409 PyThreadState* __tstate = wxPyBeginAllowThreads();
5410 result = (arg1)->GetBitmap();
5411
5412 wxPyEndAllowThreads(__tstate);
5413 if (PyErr_Occurred()) SWIG_fail;
5414 }
5415 {
5416 wxBitmap * resultptr;
5417 resultptr = new wxBitmap((wxBitmap &) result);
5418 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxBitmap, 1);
5419 }
5420 return resultobj;
5421 fail:
5422 return NULL;
5423 }
5424
5425
5426 static PyObject *_wrap_StaticBitmap_SetBitmap(PyObject *self, PyObject *args, PyObject *kwargs) {
5427 PyObject *resultobj;
5428 wxStaticBitmap *arg1 = (wxStaticBitmap *) 0 ;
5429 wxBitmap *arg2 = 0 ;
5430 PyObject * obj0 = 0 ;
5431 PyObject * obj1 = 0 ;
5432 char *kwnames[] = {
5433 (char *) "self",(char *) "bitmap", NULL
5434 };
5435
5436 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:StaticBitmap_SetBitmap",kwnames,&obj0,&obj1)) goto fail;
5437 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStaticBitmap,
5438 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
5439 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxBitmap,
5440 SWIG_POINTER_EXCEPTION | 0)) == -1)
5441 SWIG_fail;
5442 if (arg2 == NULL) {
5443 PyErr_SetString(PyExc_TypeError,"null reference");
5444 SWIG_fail;
5445 }
5446 {
5447 PyThreadState* __tstate = wxPyBeginAllowThreads();
5448 (arg1)->SetBitmap((wxBitmap const &)*arg2);
5449
5450 wxPyEndAllowThreads(__tstate);
5451 if (PyErr_Occurred()) SWIG_fail;
5452 }
5453 Py_INCREF(Py_None); resultobj = Py_None;
5454 return resultobj;
5455 fail:
5456 return NULL;
5457 }
5458
5459
5460 static PyObject *_wrap_StaticBitmap_SetIcon(PyObject *self, PyObject *args, PyObject *kwargs) {
5461 PyObject *resultobj;
5462 wxStaticBitmap *arg1 = (wxStaticBitmap *) 0 ;
5463 wxIcon *arg2 = 0 ;
5464 PyObject * obj0 = 0 ;
5465 PyObject * obj1 = 0 ;
5466 char *kwnames[] = {
5467 (char *) "self",(char *) "icon", NULL
5468 };
5469
5470 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:StaticBitmap_SetIcon",kwnames,&obj0,&obj1)) goto fail;
5471 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStaticBitmap,
5472 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
5473 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxIcon,
5474 SWIG_POINTER_EXCEPTION | 0)) == -1)
5475 SWIG_fail;
5476 if (arg2 == NULL) {
5477 PyErr_SetString(PyExc_TypeError,"null reference");
5478 SWIG_fail;
5479 }
5480 {
5481 PyThreadState* __tstate = wxPyBeginAllowThreads();
5482 (arg1)->SetIcon((wxIcon const &)*arg2);
5483
5484 wxPyEndAllowThreads(__tstate);
5485 if (PyErr_Occurred()) SWIG_fail;
5486 }
5487 Py_INCREF(Py_None); resultobj = Py_None;
5488 return resultobj;
5489 fail:
5490 return NULL;
5491 }
5492
5493
5494 static PyObject *_wrap_StaticBitmap_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
5495 PyObject *resultobj;
5496 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
5497 wxVisualAttributes result;
5498 PyObject * obj0 = 0 ;
5499 char *kwnames[] = {
5500 (char *) "variant", NULL
5501 };
5502
5503 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:StaticBitmap_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
5504 if (obj0) {
5505 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
5506 if (PyErr_Occurred()) SWIG_fail;
5507 }
5508 {
5509 if (!wxPyCheckForApp()) SWIG_fail;
5510 PyThreadState* __tstate = wxPyBeginAllowThreads();
5511 result = wxStaticBitmap::GetClassDefaultAttributes((wxWindowVariant )arg1);
5512
5513 wxPyEndAllowThreads(__tstate);
5514 if (PyErr_Occurred()) SWIG_fail;
5515 }
5516 {
5517 wxVisualAttributes * resultptr;
5518 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
5519 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
5520 }
5521 return resultobj;
5522 fail:
5523 return NULL;
5524 }
5525
5526
5527 static PyObject * StaticBitmap_swigregister(PyObject *self, PyObject *args) {
5528 PyObject *obj;
5529 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
5530 SWIG_TypeClientData(SWIGTYPE_p_wxStaticBitmap, obj);
5531 Py_INCREF(obj);
5532 return Py_BuildValue((char *)"");
5533 }
5534 static int _wrap_ListBoxNameStr_set(PyObject *_val) {
5535 PyErr_SetString(PyExc_TypeError,"Variable ListBoxNameStr is read-only.");
5536 return 1;
5537 }
5538
5539
5540 static PyObject *_wrap_ListBoxNameStr_get() {
5541 PyObject *pyobj;
5542
5543 {
5544 #if wxUSE_UNICODE
5545 pyobj = PyUnicode_FromWideChar((&wxPyListBoxNameStr)->c_str(), (&wxPyListBoxNameStr)->Len());
5546 #else
5547 pyobj = PyString_FromStringAndSize((&wxPyListBoxNameStr)->c_str(), (&wxPyListBoxNameStr)->Len());
5548 #endif
5549 }
5550 return pyobj;
5551 }
5552
5553
5554 static PyObject *_wrap_new_ListBox(PyObject *self, PyObject *args, PyObject *kwargs) {
5555 PyObject *resultobj;
5556 wxWindow *arg1 = (wxWindow *) 0 ;
5557 int arg2 = (int) -1 ;
5558 wxPoint const &arg3_defvalue = wxDefaultPosition ;
5559 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
5560 wxSize const &arg4_defvalue = wxDefaultSize ;
5561 wxSize *arg4 = (wxSize *) &arg4_defvalue ;
5562 wxArrayString const &arg5_defvalue = wxPyEmptyStringArray ;
5563 wxArrayString *arg5 = (wxArrayString *) &arg5_defvalue ;
5564 long arg6 = (long) 0 ;
5565 wxValidator const &arg7_defvalue = wxDefaultValidator ;
5566 wxValidator *arg7 = (wxValidator *) &arg7_defvalue ;
5567 wxString const &arg8_defvalue = wxPyListBoxNameStr ;
5568 wxString *arg8 = (wxString *) &arg8_defvalue ;
5569 wxListBox *result;
5570 wxPoint temp3 ;
5571 wxSize temp4 ;
5572 bool temp5 = False ;
5573 bool temp8 = False ;
5574 PyObject * obj0 = 0 ;
5575 PyObject * obj1 = 0 ;
5576 PyObject * obj2 = 0 ;
5577 PyObject * obj3 = 0 ;
5578 PyObject * obj4 = 0 ;
5579 PyObject * obj5 = 0 ;
5580 PyObject * obj6 = 0 ;
5581 PyObject * obj7 = 0 ;
5582 char *kwnames[] = {
5583 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
5584 };
5585
5586 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOO:new_ListBox",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
5587 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
5588 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
5589 if (obj1) {
5590 arg2 = (int) SWIG_AsInt(obj1);
5591 if (PyErr_Occurred()) SWIG_fail;
5592 }
5593 if (obj2) {
5594 {
5595 arg3 = &temp3;
5596 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
5597 }
5598 }
5599 if (obj3) {
5600 {
5601 arg4 = &temp4;
5602 if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
5603 }
5604 }
5605 if (obj4) {
5606 {
5607 if (! PySequence_Check(obj4)) {
5608 PyErr_SetString(PyExc_TypeError, "Sequence of strings expected.");
5609 SWIG_fail;
5610 }
5611 arg5 = new wxArrayString;
5612 temp5 = True;
5613 int i, len=PySequence_Length(obj4);
5614 for (i=0; i<len; i++) {
5615 PyObject* item = PySequence_GetItem(obj4, i);
5616 #if wxUSE_UNICODE
5617 PyObject* str = PyObject_Unicode(item);
5618 #else
5619 PyObject* str = PyObject_Str(item);
5620 #endif
5621 if (PyErr_Occurred()) SWIG_fail;
5622 arg5->Add(Py2wxString(str));
5623 Py_DECREF(item);
5624 Py_DECREF(str);
5625 }
5626 }
5627 }
5628 if (obj5) {
5629 arg6 = (long) SWIG_AsLong(obj5);
5630 if (PyErr_Occurred()) SWIG_fail;
5631 }
5632 if (obj6) {
5633 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxValidator,
5634 SWIG_POINTER_EXCEPTION | 0)) == -1)
5635 SWIG_fail;
5636 if (arg7 == NULL) {
5637 PyErr_SetString(PyExc_TypeError,"null reference");
5638 SWIG_fail;
5639 }
5640 }
5641 if (obj7) {
5642 {
5643 arg8 = wxString_in_helper(obj7);
5644 if (arg8 == NULL) SWIG_fail;
5645 temp8 = True;
5646 }
5647 }
5648 {
5649 if (!wxPyCheckForApp()) SWIG_fail;
5650 PyThreadState* __tstate = wxPyBeginAllowThreads();
5651 result = (wxListBox *)new wxListBox(arg1,arg2,(wxPoint const &)*arg3,(wxSize const &)*arg4,(wxArrayString const &)*arg5,arg6,(wxValidator const &)*arg7,(wxString const &)*arg8);
5652
5653 wxPyEndAllowThreads(__tstate);
5654 if (PyErr_Occurred()) SWIG_fail;
5655 }
5656 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxListBox, 1);
5657 {
5658 if (temp5) delete arg5;
5659 }
5660 {
5661 if (temp8)
5662 delete arg8;
5663 }
5664 return resultobj;
5665 fail:
5666 {
5667 if (temp5) delete arg5;
5668 }
5669 {
5670 if (temp8)
5671 delete arg8;
5672 }
5673 return NULL;
5674 }
5675
5676
5677 static PyObject *_wrap_new_PreListBox(PyObject *self, PyObject *args, PyObject *kwargs) {
5678 PyObject *resultobj;
5679 wxListBox *result;
5680 char *kwnames[] = {
5681 NULL
5682 };
5683
5684 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreListBox",kwnames)) goto fail;
5685 {
5686 if (!wxPyCheckForApp()) SWIG_fail;
5687 PyThreadState* __tstate = wxPyBeginAllowThreads();
5688 result = (wxListBox *)new wxListBox();
5689
5690 wxPyEndAllowThreads(__tstate);
5691 if (PyErr_Occurred()) SWIG_fail;
5692 }
5693 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxListBox, 1);
5694 return resultobj;
5695 fail:
5696 return NULL;
5697 }
5698
5699
5700 static PyObject *_wrap_ListBox_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
5701 PyObject *resultobj;
5702 wxListBox *arg1 = (wxListBox *) 0 ;
5703 wxWindow *arg2 = (wxWindow *) 0 ;
5704 int arg3 = (int) -1 ;
5705 wxPoint const &arg4_defvalue = wxDefaultPosition ;
5706 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
5707 wxSize const &arg5_defvalue = wxDefaultSize ;
5708 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
5709 wxArrayString const &arg6_defvalue = wxPyEmptyStringArray ;
5710 wxArrayString *arg6 = (wxArrayString *) &arg6_defvalue ;
5711 long arg7 = (long) 0 ;
5712 wxValidator const &arg8_defvalue = wxDefaultValidator ;
5713 wxValidator *arg8 = (wxValidator *) &arg8_defvalue ;
5714 wxString const &arg9_defvalue = wxPyListBoxNameStr ;
5715 wxString *arg9 = (wxString *) &arg9_defvalue ;
5716 bool result;
5717 wxPoint temp4 ;
5718 wxSize temp5 ;
5719 bool temp6 = False ;
5720 bool temp9 = False ;
5721 PyObject * obj0 = 0 ;
5722 PyObject * obj1 = 0 ;
5723 PyObject * obj2 = 0 ;
5724 PyObject * obj3 = 0 ;
5725 PyObject * obj4 = 0 ;
5726 PyObject * obj5 = 0 ;
5727 PyObject * obj6 = 0 ;
5728 PyObject * obj7 = 0 ;
5729 PyObject * obj8 = 0 ;
5730 char *kwnames[] = {
5731 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
5732 };
5733
5734 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOO:ListBox_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail;
5735 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
5736 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
5737 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
5738 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
5739 if (obj2) {
5740 arg3 = (int) SWIG_AsInt(obj2);
5741 if (PyErr_Occurred()) SWIG_fail;
5742 }
5743 if (obj3) {
5744 {
5745 arg4 = &temp4;
5746 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
5747 }
5748 }
5749 if (obj4) {
5750 {
5751 arg5 = &temp5;
5752 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
5753 }
5754 }
5755 if (obj5) {
5756 {
5757 if (! PySequence_Check(obj5)) {
5758 PyErr_SetString(PyExc_TypeError, "Sequence of strings expected.");
5759 SWIG_fail;
5760 }
5761 arg6 = new wxArrayString;
5762 temp6 = True;
5763 int i, len=PySequence_Length(obj5);
5764 for (i=0; i<len; i++) {
5765 PyObject* item = PySequence_GetItem(obj5, i);
5766 #if wxUSE_UNICODE
5767 PyObject* str = PyObject_Unicode(item);
5768 #else
5769 PyObject* str = PyObject_Str(item);
5770 #endif
5771 if (PyErr_Occurred()) SWIG_fail;
5772 arg6->Add(Py2wxString(str));
5773 Py_DECREF(item);
5774 Py_DECREF(str);
5775 }
5776 }
5777 }
5778 if (obj6) {
5779 arg7 = (long) SWIG_AsLong(obj6);
5780 if (PyErr_Occurred()) SWIG_fail;
5781 }
5782 if (obj7) {
5783 if ((SWIG_ConvertPtr(obj7,(void **)(&arg8),SWIGTYPE_p_wxValidator,
5784 SWIG_POINTER_EXCEPTION | 0)) == -1)
5785 SWIG_fail;
5786 if (arg8 == NULL) {
5787 PyErr_SetString(PyExc_TypeError,"null reference");
5788 SWIG_fail;
5789 }
5790 }
5791 if (obj8) {
5792 {
5793 arg9 = wxString_in_helper(obj8);
5794 if (arg9 == NULL) SWIG_fail;
5795 temp9 = True;
5796 }
5797 }
5798 {
5799 PyThreadState* __tstate = wxPyBeginAllowThreads();
5800 result = (bool)(arg1)->Create(arg2,arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,(wxArrayString const &)*arg6,arg7,(wxValidator const &)*arg8,(wxString const &)*arg9);
5801
5802 wxPyEndAllowThreads(__tstate);
5803 if (PyErr_Occurred()) SWIG_fail;
5804 }
5805 {
5806 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
5807 }
5808 {
5809 if (temp6) delete arg6;
5810 }
5811 {
5812 if (temp9)
5813 delete arg9;
5814 }
5815 return resultobj;
5816 fail:
5817 {
5818 if (temp6) delete arg6;
5819 }
5820 {
5821 if (temp9)
5822 delete arg9;
5823 }
5824 return NULL;
5825 }
5826
5827
5828 static PyObject *_wrap_ListBox_Insert(PyObject *self, PyObject *args, PyObject *kwargs) {
5829 PyObject *resultobj;
5830 wxListBox *arg1 = (wxListBox *) 0 ;
5831 wxString *arg2 = 0 ;
5832 int arg3 ;
5833 PyObject *arg4 = (PyObject *) NULL ;
5834 bool temp2 = False ;
5835 PyObject * obj0 = 0 ;
5836 PyObject * obj1 = 0 ;
5837 PyObject * obj2 = 0 ;
5838 PyObject * obj3 = 0 ;
5839 char *kwnames[] = {
5840 (char *) "self",(char *) "item",(char *) "pos",(char *) "clientData", NULL
5841 };
5842
5843 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO|O:ListBox_Insert",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
5844 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
5845 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
5846 {
5847 arg2 = wxString_in_helper(obj1);
5848 if (arg2 == NULL) SWIG_fail;
5849 temp2 = True;
5850 }
5851 arg3 = (int) SWIG_AsInt(obj2);
5852 if (PyErr_Occurred()) SWIG_fail;
5853 if (obj3) {
5854 arg4 = obj3;
5855 }
5856 {
5857 PyThreadState* __tstate = wxPyBeginAllowThreads();
5858 wxListBox_Insert(arg1,(wxString const &)*arg2,arg3,arg4);
5859
5860 wxPyEndAllowThreads(__tstate);
5861 if (PyErr_Occurred()) SWIG_fail;
5862 }
5863 Py_INCREF(Py_None); resultobj = Py_None;
5864 {
5865 if (temp2)
5866 delete arg2;
5867 }
5868 return resultobj;
5869 fail:
5870 {
5871 if (temp2)
5872 delete arg2;
5873 }
5874 return NULL;
5875 }
5876
5877
5878 static PyObject *_wrap_ListBox_InsertItems(PyObject *self, PyObject *args, PyObject *kwargs) {
5879 PyObject *resultobj;
5880 wxListBox *arg1 = (wxListBox *) 0 ;
5881 wxArrayString *arg2 = 0 ;
5882 int arg3 ;
5883 bool temp2 = False ;
5884 PyObject * obj0 = 0 ;
5885 PyObject * obj1 = 0 ;
5886 PyObject * obj2 = 0 ;
5887 char *kwnames[] = {
5888 (char *) "self",(char *) "items",(char *) "pos", NULL
5889 };
5890
5891 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListBox_InsertItems",kwnames,&obj0,&obj1,&obj2)) goto fail;
5892 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
5893 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
5894 {
5895 if (! PySequence_Check(obj1)) {
5896 PyErr_SetString(PyExc_TypeError, "Sequence of strings expected.");
5897 SWIG_fail;
5898 }
5899 arg2 = new wxArrayString;
5900 temp2 = True;
5901 int i, len=PySequence_Length(obj1);
5902 for (i=0; i<len; i++) {
5903 PyObject* item = PySequence_GetItem(obj1, i);
5904 #if wxUSE_UNICODE
5905 PyObject* str = PyObject_Unicode(item);
5906 #else
5907 PyObject* str = PyObject_Str(item);
5908 #endif
5909 if (PyErr_Occurred()) SWIG_fail;
5910 arg2->Add(Py2wxString(str));
5911 Py_DECREF(item);
5912 Py_DECREF(str);
5913 }
5914 }
5915 arg3 = (int) SWIG_AsInt(obj2);
5916 if (PyErr_Occurred()) SWIG_fail;
5917 {
5918 PyThreadState* __tstate = wxPyBeginAllowThreads();
5919 (arg1)->InsertItems((wxArrayString const &)*arg2,arg3);
5920
5921 wxPyEndAllowThreads(__tstate);
5922 if (PyErr_Occurred()) SWIG_fail;
5923 }
5924 Py_INCREF(Py_None); resultobj = Py_None;
5925 {
5926 if (temp2) delete arg2;
5927 }
5928 return resultobj;
5929 fail:
5930 {
5931 if (temp2) delete arg2;
5932 }
5933 return NULL;
5934 }
5935
5936
5937 static PyObject *_wrap_ListBox_Set(PyObject *self, PyObject *args, PyObject *kwargs) {
5938 PyObject *resultobj;
5939 wxListBox *arg1 = (wxListBox *) 0 ;
5940 wxArrayString *arg2 = 0 ;
5941 bool temp2 = False ;
5942 PyObject * obj0 = 0 ;
5943 PyObject * obj1 = 0 ;
5944 char *kwnames[] = {
5945 (char *) "self",(char *) "items", NULL
5946 };
5947
5948 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListBox_Set",kwnames,&obj0,&obj1)) goto fail;
5949 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
5950 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
5951 {
5952 if (! PySequence_Check(obj1)) {
5953 PyErr_SetString(PyExc_TypeError, "Sequence of strings expected.");
5954 SWIG_fail;
5955 }
5956 arg2 = new wxArrayString;
5957 temp2 = True;
5958 int i, len=PySequence_Length(obj1);
5959 for (i=0; i<len; i++) {
5960 PyObject* item = PySequence_GetItem(obj1, i);
5961 #if wxUSE_UNICODE
5962 PyObject* str = PyObject_Unicode(item);
5963 #else
5964 PyObject* str = PyObject_Str(item);
5965 #endif
5966 if (PyErr_Occurred()) SWIG_fail;
5967 arg2->Add(Py2wxString(str));
5968 Py_DECREF(item);
5969 Py_DECREF(str);
5970 }
5971 }
5972 {
5973 PyThreadState* __tstate = wxPyBeginAllowThreads();
5974 (arg1)->Set((wxArrayString const &)*arg2);
5975
5976 wxPyEndAllowThreads(__tstate);
5977 if (PyErr_Occurred()) SWIG_fail;
5978 }
5979 Py_INCREF(Py_None); resultobj = Py_None;
5980 {
5981 if (temp2) delete arg2;
5982 }
5983 return resultobj;
5984 fail:
5985 {
5986 if (temp2) delete arg2;
5987 }
5988 return NULL;
5989 }
5990
5991
5992 static PyObject *_wrap_ListBox_IsSelected(PyObject *self, PyObject *args, PyObject *kwargs) {
5993 PyObject *resultobj;
5994 wxListBox *arg1 = (wxListBox *) 0 ;
5995 int arg2 ;
5996 bool result;
5997 PyObject * obj0 = 0 ;
5998 PyObject * obj1 = 0 ;
5999 char *kwnames[] = {
6000 (char *) "self",(char *) "n", NULL
6001 };
6002
6003 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListBox_IsSelected",kwnames,&obj0,&obj1)) goto fail;
6004 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
6005 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6006 arg2 = (int) SWIG_AsInt(obj1);
6007 if (PyErr_Occurred()) SWIG_fail;
6008 {
6009 PyThreadState* __tstate = wxPyBeginAllowThreads();
6010 result = (bool)((wxListBox const *)arg1)->IsSelected(arg2);
6011
6012 wxPyEndAllowThreads(__tstate);
6013 if (PyErr_Occurred()) SWIG_fail;
6014 }
6015 {
6016 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
6017 }
6018 return resultobj;
6019 fail:
6020 return NULL;
6021 }
6022
6023
6024 static PyObject *_wrap_ListBox_SetSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
6025 PyObject *resultobj;
6026 wxListBox *arg1 = (wxListBox *) 0 ;
6027 int arg2 ;
6028 bool arg3 = (bool) True ;
6029 PyObject * obj0 = 0 ;
6030 PyObject * obj1 = 0 ;
6031 PyObject * obj2 = 0 ;
6032 char *kwnames[] = {
6033 (char *) "self",(char *) "n",(char *) "select", NULL
6034 };
6035
6036 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:ListBox_SetSelection",kwnames,&obj0,&obj1,&obj2)) goto fail;
6037 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
6038 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6039 arg2 = (int) SWIG_AsInt(obj1);
6040 if (PyErr_Occurred()) SWIG_fail;
6041 if (obj2) {
6042 arg3 = (bool) SWIG_AsBool(obj2);
6043 if (PyErr_Occurred()) SWIG_fail;
6044 }
6045 {
6046 PyThreadState* __tstate = wxPyBeginAllowThreads();
6047 (arg1)->SetSelection(arg2,arg3);
6048
6049 wxPyEndAllowThreads(__tstate);
6050 if (PyErr_Occurred()) SWIG_fail;
6051 }
6052 Py_INCREF(Py_None); resultobj = Py_None;
6053 return resultobj;
6054 fail:
6055 return NULL;
6056 }
6057
6058
6059 static PyObject *_wrap_ListBox_Select(PyObject *self, PyObject *args, PyObject *kwargs) {
6060 PyObject *resultobj;
6061 wxListBox *arg1 = (wxListBox *) 0 ;
6062 int arg2 ;
6063 PyObject * obj0 = 0 ;
6064 PyObject * obj1 = 0 ;
6065 char *kwnames[] = {
6066 (char *) "self",(char *) "n", NULL
6067 };
6068
6069 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListBox_Select",kwnames,&obj0,&obj1)) goto fail;
6070 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
6071 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6072 arg2 = (int) SWIG_AsInt(obj1);
6073 if (PyErr_Occurred()) SWIG_fail;
6074 {
6075 PyThreadState* __tstate = wxPyBeginAllowThreads();
6076 (arg1)->Select(arg2);
6077
6078 wxPyEndAllowThreads(__tstate);
6079 if (PyErr_Occurred()) SWIG_fail;
6080 }
6081 Py_INCREF(Py_None); resultobj = Py_None;
6082 return resultobj;
6083 fail:
6084 return NULL;
6085 }
6086
6087
6088 static PyObject *_wrap_ListBox_Deselect(PyObject *self, PyObject *args, PyObject *kwargs) {
6089 PyObject *resultobj;
6090 wxListBox *arg1 = (wxListBox *) 0 ;
6091 int arg2 ;
6092 PyObject * obj0 = 0 ;
6093 PyObject * obj1 = 0 ;
6094 char *kwnames[] = {
6095 (char *) "self",(char *) "n", NULL
6096 };
6097
6098 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListBox_Deselect",kwnames,&obj0,&obj1)) goto fail;
6099 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
6100 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6101 arg2 = (int) SWIG_AsInt(obj1);
6102 if (PyErr_Occurred()) SWIG_fail;
6103 {
6104 PyThreadState* __tstate = wxPyBeginAllowThreads();
6105 (arg1)->Deselect(arg2);
6106
6107 wxPyEndAllowThreads(__tstate);
6108 if (PyErr_Occurred()) SWIG_fail;
6109 }
6110 Py_INCREF(Py_None); resultobj = Py_None;
6111 return resultobj;
6112 fail:
6113 return NULL;
6114 }
6115
6116
6117 static PyObject *_wrap_ListBox_DeselectAll(PyObject *self, PyObject *args, PyObject *kwargs) {
6118 PyObject *resultobj;
6119 wxListBox *arg1 = (wxListBox *) 0 ;
6120 int arg2 = (int) -1 ;
6121 PyObject * obj0 = 0 ;
6122 PyObject * obj1 = 0 ;
6123 char *kwnames[] = {
6124 (char *) "self",(char *) "itemToLeaveSelected", NULL
6125 };
6126
6127 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:ListBox_DeselectAll",kwnames,&obj0,&obj1)) goto fail;
6128 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
6129 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6130 if (obj1) {
6131 arg2 = (int) SWIG_AsInt(obj1);
6132 if (PyErr_Occurred()) SWIG_fail;
6133 }
6134 {
6135 PyThreadState* __tstate = wxPyBeginAllowThreads();
6136 (arg1)->DeselectAll(arg2);
6137
6138 wxPyEndAllowThreads(__tstate);
6139 if (PyErr_Occurred()) SWIG_fail;
6140 }
6141 Py_INCREF(Py_None); resultobj = Py_None;
6142 return resultobj;
6143 fail:
6144 return NULL;
6145 }
6146
6147
6148 static PyObject *_wrap_ListBox_SetStringSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
6149 PyObject *resultobj;
6150 wxListBox *arg1 = (wxListBox *) 0 ;
6151 wxString *arg2 = 0 ;
6152 bool arg3 = (bool) True ;
6153 bool result;
6154 bool temp2 = False ;
6155 PyObject * obj0 = 0 ;
6156 PyObject * obj1 = 0 ;
6157 PyObject * obj2 = 0 ;
6158 char *kwnames[] = {
6159 (char *) "self",(char *) "s",(char *) "select", NULL
6160 };
6161
6162 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:ListBox_SetStringSelection",kwnames,&obj0,&obj1,&obj2)) goto fail;
6163 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
6164 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6165 {
6166 arg2 = wxString_in_helper(obj1);
6167 if (arg2 == NULL) SWIG_fail;
6168 temp2 = True;
6169 }
6170 if (obj2) {
6171 arg3 = (bool) SWIG_AsBool(obj2);
6172 if (PyErr_Occurred()) SWIG_fail;
6173 }
6174 {
6175 PyThreadState* __tstate = wxPyBeginAllowThreads();
6176 result = (bool)(arg1)->SetStringSelection((wxString const &)*arg2,arg3);
6177
6178 wxPyEndAllowThreads(__tstate);
6179 if (PyErr_Occurred()) SWIG_fail;
6180 }
6181 {
6182 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
6183 }
6184 {
6185 if (temp2)
6186 delete arg2;
6187 }
6188 return resultobj;
6189 fail:
6190 {
6191 if (temp2)
6192 delete arg2;
6193 }
6194 return NULL;
6195 }
6196
6197
6198 static PyObject *_wrap_ListBox_GetSelections(PyObject *self, PyObject *args, PyObject *kwargs) {
6199 PyObject *resultobj;
6200 wxListBox *arg1 = (wxListBox *) 0 ;
6201 PyObject *result;
6202 PyObject * obj0 = 0 ;
6203 char *kwnames[] = {
6204 (char *) "self", NULL
6205 };
6206
6207 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListBox_GetSelections",kwnames,&obj0)) goto fail;
6208 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
6209 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6210 {
6211 PyThreadState* __tstate = wxPyBeginAllowThreads();
6212 result = (PyObject *)wxListBox_GetSelections(arg1);
6213
6214 wxPyEndAllowThreads(__tstate);
6215 if (PyErr_Occurred()) SWIG_fail;
6216 }
6217 resultobj = result;
6218 return resultobj;
6219 fail:
6220 return NULL;
6221 }
6222
6223
6224 static PyObject *_wrap_ListBox_SetFirstItem(PyObject *self, PyObject *args, PyObject *kwargs) {
6225 PyObject *resultobj;
6226 wxListBox *arg1 = (wxListBox *) 0 ;
6227 int arg2 ;
6228 PyObject * obj0 = 0 ;
6229 PyObject * obj1 = 0 ;
6230 char *kwnames[] = {
6231 (char *) "self",(char *) "n", NULL
6232 };
6233
6234 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListBox_SetFirstItem",kwnames,&obj0,&obj1)) goto fail;
6235 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
6236 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6237 arg2 = (int) SWIG_AsInt(obj1);
6238 if (PyErr_Occurred()) SWIG_fail;
6239 {
6240 PyThreadState* __tstate = wxPyBeginAllowThreads();
6241 (arg1)->SetFirstItem(arg2);
6242
6243 wxPyEndAllowThreads(__tstate);
6244 if (PyErr_Occurred()) SWIG_fail;
6245 }
6246 Py_INCREF(Py_None); resultobj = Py_None;
6247 return resultobj;
6248 fail:
6249 return NULL;
6250 }
6251
6252
6253 static PyObject *_wrap_ListBox_SetFirstItemStr(PyObject *self, PyObject *args, PyObject *kwargs) {
6254 PyObject *resultobj;
6255 wxListBox *arg1 = (wxListBox *) 0 ;
6256 wxString *arg2 = 0 ;
6257 bool temp2 = False ;
6258 PyObject * obj0 = 0 ;
6259 PyObject * obj1 = 0 ;
6260 char *kwnames[] = {
6261 (char *) "self",(char *) "s", NULL
6262 };
6263
6264 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListBox_SetFirstItemStr",kwnames,&obj0,&obj1)) goto fail;
6265 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
6266 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6267 {
6268 arg2 = wxString_in_helper(obj1);
6269 if (arg2 == NULL) SWIG_fail;
6270 temp2 = True;
6271 }
6272 {
6273 PyThreadState* __tstate = wxPyBeginAllowThreads();
6274 (arg1)->SetFirstItem((wxString const &)*arg2);
6275
6276 wxPyEndAllowThreads(__tstate);
6277 if (PyErr_Occurred()) SWIG_fail;
6278 }
6279 Py_INCREF(Py_None); resultobj = Py_None;
6280 {
6281 if (temp2)
6282 delete arg2;
6283 }
6284 return resultobj;
6285 fail:
6286 {
6287 if (temp2)
6288 delete arg2;
6289 }
6290 return NULL;
6291 }
6292
6293
6294 static PyObject *_wrap_ListBox_EnsureVisible(PyObject *self, PyObject *args, PyObject *kwargs) {
6295 PyObject *resultobj;
6296 wxListBox *arg1 = (wxListBox *) 0 ;
6297 int arg2 ;
6298 PyObject * obj0 = 0 ;
6299 PyObject * obj1 = 0 ;
6300 char *kwnames[] = {
6301 (char *) "self",(char *) "n", NULL
6302 };
6303
6304 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListBox_EnsureVisible",kwnames,&obj0,&obj1)) goto fail;
6305 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
6306 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6307 arg2 = (int) SWIG_AsInt(obj1);
6308 if (PyErr_Occurred()) SWIG_fail;
6309 {
6310 PyThreadState* __tstate = wxPyBeginAllowThreads();
6311 (arg1)->EnsureVisible(arg2);
6312
6313 wxPyEndAllowThreads(__tstate);
6314 if (PyErr_Occurred()) SWIG_fail;
6315 }
6316 Py_INCREF(Py_None); resultobj = Py_None;
6317 return resultobj;
6318 fail:
6319 return NULL;
6320 }
6321
6322
6323 static PyObject *_wrap_ListBox_AppendAndEnsureVisible(PyObject *self, PyObject *args, PyObject *kwargs) {
6324 PyObject *resultobj;
6325 wxListBox *arg1 = (wxListBox *) 0 ;
6326 wxString *arg2 = 0 ;
6327 bool temp2 = False ;
6328 PyObject * obj0 = 0 ;
6329 PyObject * obj1 = 0 ;
6330 char *kwnames[] = {
6331 (char *) "self",(char *) "s", NULL
6332 };
6333
6334 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListBox_AppendAndEnsureVisible",kwnames,&obj0,&obj1)) goto fail;
6335 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
6336 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6337 {
6338 arg2 = wxString_in_helper(obj1);
6339 if (arg2 == NULL) SWIG_fail;
6340 temp2 = True;
6341 }
6342 {
6343 PyThreadState* __tstate = wxPyBeginAllowThreads();
6344 (arg1)->AppendAndEnsureVisible((wxString const &)*arg2);
6345
6346 wxPyEndAllowThreads(__tstate);
6347 if (PyErr_Occurred()) SWIG_fail;
6348 }
6349 Py_INCREF(Py_None); resultobj = Py_None;
6350 {
6351 if (temp2)
6352 delete arg2;
6353 }
6354 return resultobj;
6355 fail:
6356 {
6357 if (temp2)
6358 delete arg2;
6359 }
6360 return NULL;
6361 }
6362
6363
6364 static PyObject *_wrap_ListBox_IsSorted(PyObject *self, PyObject *args, PyObject *kwargs) {
6365 PyObject *resultobj;
6366 wxListBox *arg1 = (wxListBox *) 0 ;
6367 bool result;
6368 PyObject * obj0 = 0 ;
6369 char *kwnames[] = {
6370 (char *) "self", NULL
6371 };
6372
6373 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListBox_IsSorted",kwnames,&obj0)) goto fail;
6374 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
6375 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6376 {
6377 PyThreadState* __tstate = wxPyBeginAllowThreads();
6378 result = (bool)((wxListBox const *)arg1)->IsSorted();
6379
6380 wxPyEndAllowThreads(__tstate);
6381 if (PyErr_Occurred()) SWIG_fail;
6382 }
6383 {
6384 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
6385 }
6386 return resultobj;
6387 fail:
6388 return NULL;
6389 }
6390
6391
6392 static PyObject *_wrap_ListBox_SetItemForegroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
6393 PyObject *resultobj;
6394 wxListBox *arg1 = (wxListBox *) 0 ;
6395 int arg2 ;
6396 wxColour *arg3 = 0 ;
6397 wxColour temp3 ;
6398 PyObject * obj0 = 0 ;
6399 PyObject * obj1 = 0 ;
6400 PyObject * obj2 = 0 ;
6401 char *kwnames[] = {
6402 (char *) "self",(char *) "item",(char *) "c", NULL
6403 };
6404
6405 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListBox_SetItemForegroundColour",kwnames,&obj0,&obj1,&obj2)) goto fail;
6406 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
6407 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6408 arg2 = (int) SWIG_AsInt(obj1);
6409 if (PyErr_Occurred()) SWIG_fail;
6410 {
6411 arg3 = &temp3;
6412 if ( ! wxColour_helper(obj2, &arg3)) SWIG_fail;
6413 }
6414 {
6415 PyThreadState* __tstate = wxPyBeginAllowThreads();
6416 wxListBox_SetItemForegroundColour(arg1,arg2,(wxColour const &)*arg3);
6417
6418 wxPyEndAllowThreads(__tstate);
6419 if (PyErr_Occurred()) SWIG_fail;
6420 }
6421 Py_INCREF(Py_None); resultobj = Py_None;
6422 return resultobj;
6423 fail:
6424 return NULL;
6425 }
6426
6427
6428 static PyObject *_wrap_ListBox_SetItemBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
6429 PyObject *resultobj;
6430 wxListBox *arg1 = (wxListBox *) 0 ;
6431 int arg2 ;
6432 wxColour *arg3 = 0 ;
6433 wxColour temp3 ;
6434 PyObject * obj0 = 0 ;
6435 PyObject * obj1 = 0 ;
6436 PyObject * obj2 = 0 ;
6437 char *kwnames[] = {
6438 (char *) "self",(char *) "item",(char *) "c", NULL
6439 };
6440
6441 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListBox_SetItemBackgroundColour",kwnames,&obj0,&obj1,&obj2)) goto fail;
6442 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
6443 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6444 arg2 = (int) SWIG_AsInt(obj1);
6445 if (PyErr_Occurred()) SWIG_fail;
6446 {
6447 arg3 = &temp3;
6448 if ( ! wxColour_helper(obj2, &arg3)) SWIG_fail;
6449 }
6450 {
6451 PyThreadState* __tstate = wxPyBeginAllowThreads();
6452 wxListBox_SetItemBackgroundColour(arg1,arg2,(wxColour const &)*arg3);
6453
6454 wxPyEndAllowThreads(__tstate);
6455 if (PyErr_Occurred()) SWIG_fail;
6456 }
6457 Py_INCREF(Py_None); resultobj = Py_None;
6458 return resultobj;
6459 fail:
6460 return NULL;
6461 }
6462
6463
6464 static PyObject *_wrap_ListBox_SetItemFont(PyObject *self, PyObject *args, PyObject *kwargs) {
6465 PyObject *resultobj;
6466 wxListBox *arg1 = (wxListBox *) 0 ;
6467 int arg2 ;
6468 wxFont *arg3 = 0 ;
6469 PyObject * obj0 = 0 ;
6470 PyObject * obj1 = 0 ;
6471 PyObject * obj2 = 0 ;
6472 char *kwnames[] = {
6473 (char *) "self",(char *) "item",(char *) "f", NULL
6474 };
6475
6476 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListBox_SetItemFont",kwnames,&obj0,&obj1,&obj2)) goto fail;
6477 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListBox,
6478 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6479 arg2 = (int) SWIG_AsInt(obj1);
6480 if (PyErr_Occurred()) SWIG_fail;
6481 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxFont,
6482 SWIG_POINTER_EXCEPTION | 0)) == -1)
6483 SWIG_fail;
6484 if (arg3 == NULL) {
6485 PyErr_SetString(PyExc_TypeError,"null reference");
6486 SWIG_fail;
6487 }
6488 {
6489 PyThreadState* __tstate = wxPyBeginAllowThreads();
6490 wxListBox_SetItemFont(arg1,arg2,(wxFont const &)*arg3);
6491
6492 wxPyEndAllowThreads(__tstate);
6493 if (PyErr_Occurred()) SWIG_fail;
6494 }
6495 Py_INCREF(Py_None); resultobj = Py_None;
6496 return resultobj;
6497 fail:
6498 return NULL;
6499 }
6500
6501
6502 static PyObject *_wrap_ListBox_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
6503 PyObject *resultobj;
6504 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
6505 wxVisualAttributes result;
6506 PyObject * obj0 = 0 ;
6507 char *kwnames[] = {
6508 (char *) "variant", NULL
6509 };
6510
6511 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:ListBox_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
6512 if (obj0) {
6513 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
6514 if (PyErr_Occurred()) SWIG_fail;
6515 }
6516 {
6517 if (!wxPyCheckForApp()) SWIG_fail;
6518 PyThreadState* __tstate = wxPyBeginAllowThreads();
6519 result = wxListBox::GetClassDefaultAttributes((wxWindowVariant )arg1);
6520
6521 wxPyEndAllowThreads(__tstate);
6522 if (PyErr_Occurred()) SWIG_fail;
6523 }
6524 {
6525 wxVisualAttributes * resultptr;
6526 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
6527 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
6528 }
6529 return resultobj;
6530 fail:
6531 return NULL;
6532 }
6533
6534
6535 static PyObject * ListBox_swigregister(PyObject *self, PyObject *args) {
6536 PyObject *obj;
6537 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
6538 SWIG_TypeClientData(SWIGTYPE_p_wxListBox, obj);
6539 Py_INCREF(obj);
6540 return Py_BuildValue((char *)"");
6541 }
6542 static PyObject *_wrap_new_CheckListBox(PyObject *self, PyObject *args, PyObject *kwargs) {
6543 PyObject *resultobj;
6544 wxWindow *arg1 = (wxWindow *) 0 ;
6545 int arg2 = (int) -1 ;
6546 wxPoint const &arg3_defvalue = wxDefaultPosition ;
6547 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
6548 wxSize const &arg4_defvalue = wxDefaultSize ;
6549 wxSize *arg4 = (wxSize *) &arg4_defvalue ;
6550 wxArrayString const &arg5_defvalue = wxPyEmptyStringArray ;
6551 wxArrayString *arg5 = (wxArrayString *) &arg5_defvalue ;
6552 long arg6 = (long) 0 ;
6553 wxValidator const &arg7_defvalue = wxDefaultValidator ;
6554 wxValidator *arg7 = (wxValidator *) &arg7_defvalue ;
6555 wxString const &arg8_defvalue = wxPyListBoxNameStr ;
6556 wxString *arg8 = (wxString *) &arg8_defvalue ;
6557 wxCheckListBox *result;
6558 wxPoint temp3 ;
6559 wxSize temp4 ;
6560 bool temp5 = False ;
6561 bool temp8 = False ;
6562 PyObject * obj0 = 0 ;
6563 PyObject * obj1 = 0 ;
6564 PyObject * obj2 = 0 ;
6565 PyObject * obj3 = 0 ;
6566 PyObject * obj4 = 0 ;
6567 PyObject * obj5 = 0 ;
6568 PyObject * obj6 = 0 ;
6569 PyObject * obj7 = 0 ;
6570 char *kwnames[] = {
6571 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
6572 };
6573
6574 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOO:new_CheckListBox",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
6575 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
6576 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6577 if (obj1) {
6578 arg2 = (int) SWIG_AsInt(obj1);
6579 if (PyErr_Occurred()) SWIG_fail;
6580 }
6581 if (obj2) {
6582 {
6583 arg3 = &temp3;
6584 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
6585 }
6586 }
6587 if (obj3) {
6588 {
6589 arg4 = &temp4;
6590 if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
6591 }
6592 }
6593 if (obj4) {
6594 {
6595 if (! PySequence_Check(obj4)) {
6596 PyErr_SetString(PyExc_TypeError, "Sequence of strings expected.");
6597 SWIG_fail;
6598 }
6599 arg5 = new wxArrayString;
6600 temp5 = True;
6601 int i, len=PySequence_Length(obj4);
6602 for (i=0; i<len; i++) {
6603 PyObject* item = PySequence_GetItem(obj4, i);
6604 #if wxUSE_UNICODE
6605 PyObject* str = PyObject_Unicode(item);
6606 #else
6607 PyObject* str = PyObject_Str(item);
6608 #endif
6609 if (PyErr_Occurred()) SWIG_fail;
6610 arg5->Add(Py2wxString(str));
6611 Py_DECREF(item);
6612 Py_DECREF(str);
6613 }
6614 }
6615 }
6616 if (obj5) {
6617 arg6 = (long) SWIG_AsLong(obj5);
6618 if (PyErr_Occurred()) SWIG_fail;
6619 }
6620 if (obj6) {
6621 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxValidator,
6622 SWIG_POINTER_EXCEPTION | 0)) == -1)
6623 SWIG_fail;
6624 if (arg7 == NULL) {
6625 PyErr_SetString(PyExc_TypeError,"null reference");
6626 SWIG_fail;
6627 }
6628 }
6629 if (obj7) {
6630 {
6631 arg8 = wxString_in_helper(obj7);
6632 if (arg8 == NULL) SWIG_fail;
6633 temp8 = True;
6634 }
6635 }
6636 {
6637 if (!wxPyCheckForApp()) SWIG_fail;
6638 PyThreadState* __tstate = wxPyBeginAllowThreads();
6639 result = (wxCheckListBox *)new wxCheckListBox(arg1,arg2,(wxPoint const &)*arg3,(wxSize const &)*arg4,(wxArrayString const &)*arg5,arg6,(wxValidator const &)*arg7,(wxString const &)*arg8);
6640
6641 wxPyEndAllowThreads(__tstate);
6642 if (PyErr_Occurred()) SWIG_fail;
6643 }
6644 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxCheckListBox, 1);
6645 {
6646 if (temp5) delete arg5;
6647 }
6648 {
6649 if (temp8)
6650 delete arg8;
6651 }
6652 return resultobj;
6653 fail:
6654 {
6655 if (temp5) delete arg5;
6656 }
6657 {
6658 if (temp8)
6659 delete arg8;
6660 }
6661 return NULL;
6662 }
6663
6664
6665 static PyObject *_wrap_new_PreCheckListBox(PyObject *self, PyObject *args, PyObject *kwargs) {
6666 PyObject *resultobj;
6667 wxCheckListBox *result;
6668 char *kwnames[] = {
6669 NULL
6670 };
6671
6672 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreCheckListBox",kwnames)) goto fail;
6673 {
6674 if (!wxPyCheckForApp()) SWIG_fail;
6675 PyThreadState* __tstate = wxPyBeginAllowThreads();
6676 result = (wxCheckListBox *)new wxCheckListBox();
6677
6678 wxPyEndAllowThreads(__tstate);
6679 if (PyErr_Occurred()) SWIG_fail;
6680 }
6681 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxCheckListBox, 1);
6682 return resultobj;
6683 fail:
6684 return NULL;
6685 }
6686
6687
6688 static PyObject *_wrap_CheckListBox_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
6689 PyObject *resultobj;
6690 wxCheckListBox *arg1 = (wxCheckListBox *) 0 ;
6691 wxWindow *arg2 = (wxWindow *) 0 ;
6692 int arg3 = (int) -1 ;
6693 wxPoint const &arg4_defvalue = wxDefaultPosition ;
6694 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
6695 wxSize const &arg5_defvalue = wxDefaultSize ;
6696 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
6697 wxArrayString const &arg6_defvalue = wxPyEmptyStringArray ;
6698 wxArrayString *arg6 = (wxArrayString *) &arg6_defvalue ;
6699 long arg7 = (long) 0 ;
6700 wxValidator const &arg8_defvalue = wxDefaultValidator ;
6701 wxValidator *arg8 = (wxValidator *) &arg8_defvalue ;
6702 wxString const &arg9_defvalue = wxPyListBoxNameStr ;
6703 wxString *arg9 = (wxString *) &arg9_defvalue ;
6704 bool result;
6705 wxPoint temp4 ;
6706 wxSize temp5 ;
6707 bool temp6 = False ;
6708 bool temp9 = False ;
6709 PyObject * obj0 = 0 ;
6710 PyObject * obj1 = 0 ;
6711 PyObject * obj2 = 0 ;
6712 PyObject * obj3 = 0 ;
6713 PyObject * obj4 = 0 ;
6714 PyObject * obj5 = 0 ;
6715 PyObject * obj6 = 0 ;
6716 PyObject * obj7 = 0 ;
6717 PyObject * obj8 = 0 ;
6718 char *kwnames[] = {
6719 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
6720 };
6721
6722 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOO:CheckListBox_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail;
6723 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxCheckListBox,
6724 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6725 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
6726 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6727 if (obj2) {
6728 arg3 = (int) SWIG_AsInt(obj2);
6729 if (PyErr_Occurred()) SWIG_fail;
6730 }
6731 if (obj3) {
6732 {
6733 arg4 = &temp4;
6734 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
6735 }
6736 }
6737 if (obj4) {
6738 {
6739 arg5 = &temp5;
6740 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
6741 }
6742 }
6743 if (obj5) {
6744 {
6745 if (! PySequence_Check(obj5)) {
6746 PyErr_SetString(PyExc_TypeError, "Sequence of strings expected.");
6747 SWIG_fail;
6748 }
6749 arg6 = new wxArrayString;
6750 temp6 = True;
6751 int i, len=PySequence_Length(obj5);
6752 for (i=0; i<len; i++) {
6753 PyObject* item = PySequence_GetItem(obj5, i);
6754 #if wxUSE_UNICODE
6755 PyObject* str = PyObject_Unicode(item);
6756 #else
6757 PyObject* str = PyObject_Str(item);
6758 #endif
6759 if (PyErr_Occurred()) SWIG_fail;
6760 arg6->Add(Py2wxString(str));
6761 Py_DECREF(item);
6762 Py_DECREF(str);
6763 }
6764 }
6765 }
6766 if (obj6) {
6767 arg7 = (long) SWIG_AsLong(obj6);
6768 if (PyErr_Occurred()) SWIG_fail;
6769 }
6770 if (obj7) {
6771 if ((SWIG_ConvertPtr(obj7,(void **)(&arg8),SWIGTYPE_p_wxValidator,
6772 SWIG_POINTER_EXCEPTION | 0)) == -1)
6773 SWIG_fail;
6774 if (arg8 == NULL) {
6775 PyErr_SetString(PyExc_TypeError,"null reference");
6776 SWIG_fail;
6777 }
6778 }
6779 if (obj8) {
6780 {
6781 arg9 = wxString_in_helper(obj8);
6782 if (arg9 == NULL) SWIG_fail;
6783 temp9 = True;
6784 }
6785 }
6786 {
6787 PyThreadState* __tstate = wxPyBeginAllowThreads();
6788 result = (bool)(arg1)->Create(arg2,arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,(wxArrayString const &)*arg6,arg7,(wxValidator const &)*arg8,(wxString const &)*arg9);
6789
6790 wxPyEndAllowThreads(__tstate);
6791 if (PyErr_Occurred()) SWIG_fail;
6792 }
6793 {
6794 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
6795 }
6796 {
6797 if (temp6) delete arg6;
6798 }
6799 {
6800 if (temp9)
6801 delete arg9;
6802 }
6803 return resultobj;
6804 fail:
6805 {
6806 if (temp6) delete arg6;
6807 }
6808 {
6809 if (temp9)
6810 delete arg9;
6811 }
6812 return NULL;
6813 }
6814
6815
6816 static PyObject *_wrap_CheckListBox_IsChecked(PyObject *self, PyObject *args, PyObject *kwargs) {
6817 PyObject *resultobj;
6818 wxCheckListBox *arg1 = (wxCheckListBox *) 0 ;
6819 int arg2 ;
6820 bool result;
6821 PyObject * obj0 = 0 ;
6822 PyObject * obj1 = 0 ;
6823 char *kwnames[] = {
6824 (char *) "self",(char *) "index", NULL
6825 };
6826
6827 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:CheckListBox_IsChecked",kwnames,&obj0,&obj1)) goto fail;
6828 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxCheckListBox,
6829 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6830 arg2 = (int) SWIG_AsInt(obj1);
6831 if (PyErr_Occurred()) SWIG_fail;
6832 {
6833 PyThreadState* __tstate = wxPyBeginAllowThreads();
6834 result = (bool)(arg1)->IsChecked(arg2);
6835
6836 wxPyEndAllowThreads(__tstate);
6837 if (PyErr_Occurred()) SWIG_fail;
6838 }
6839 {
6840 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
6841 }
6842 return resultobj;
6843 fail:
6844 return NULL;
6845 }
6846
6847
6848 static PyObject *_wrap_CheckListBox_Check(PyObject *self, PyObject *args, PyObject *kwargs) {
6849 PyObject *resultobj;
6850 wxCheckListBox *arg1 = (wxCheckListBox *) 0 ;
6851 int arg2 ;
6852 int arg3 = (int) True ;
6853 PyObject * obj0 = 0 ;
6854 PyObject * obj1 = 0 ;
6855 PyObject * obj2 = 0 ;
6856 char *kwnames[] = {
6857 (char *) "self",(char *) "index",(char *) "check", NULL
6858 };
6859
6860 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:CheckListBox_Check",kwnames,&obj0,&obj1,&obj2)) goto fail;
6861 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxCheckListBox,
6862 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6863 arg2 = (int) SWIG_AsInt(obj1);
6864 if (PyErr_Occurred()) SWIG_fail;
6865 if (obj2) {
6866 arg3 = (int) SWIG_AsInt(obj2);
6867 if (PyErr_Occurred()) SWIG_fail;
6868 }
6869 {
6870 PyThreadState* __tstate = wxPyBeginAllowThreads();
6871 (arg1)->Check(arg2,arg3);
6872
6873 wxPyEndAllowThreads(__tstate);
6874 if (PyErr_Occurred()) SWIG_fail;
6875 }
6876 Py_INCREF(Py_None); resultobj = Py_None;
6877 return resultobj;
6878 fail:
6879 return NULL;
6880 }
6881
6882
6883 static PyObject *_wrap_CheckListBox_GetItemHeight(PyObject *self, PyObject *args, PyObject *kwargs) {
6884 PyObject *resultobj;
6885 wxCheckListBox *arg1 = (wxCheckListBox *) 0 ;
6886 int result;
6887 PyObject * obj0 = 0 ;
6888 char *kwnames[] = {
6889 (char *) "self", NULL
6890 };
6891
6892 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:CheckListBox_GetItemHeight",kwnames,&obj0)) goto fail;
6893 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxCheckListBox,
6894 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6895 {
6896 PyThreadState* __tstate = wxPyBeginAllowThreads();
6897 result = (int)(arg1)->GetItemHeight();
6898
6899 wxPyEndAllowThreads(__tstate);
6900 if (PyErr_Occurred()) SWIG_fail;
6901 }
6902 resultobj = SWIG_FromInt((int)result);
6903 return resultobj;
6904 fail:
6905 return NULL;
6906 }
6907
6908
6909 static PyObject *_wrap_CheckListBox_HitTest(PyObject *self, PyObject *args, PyObject *kwargs) {
6910 PyObject *resultobj;
6911 wxCheckListBox *arg1 = (wxCheckListBox *) 0 ;
6912 wxPoint *arg2 = 0 ;
6913 int result;
6914 wxPoint temp2 ;
6915 PyObject * obj0 = 0 ;
6916 PyObject * obj1 = 0 ;
6917 char *kwnames[] = {
6918 (char *) "self",(char *) "pt", NULL
6919 };
6920
6921 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:CheckListBox_HitTest",kwnames,&obj0,&obj1)) goto fail;
6922 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxCheckListBox,
6923 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6924 {
6925 arg2 = &temp2;
6926 if ( ! wxPoint_helper(obj1, &arg2)) SWIG_fail;
6927 }
6928 {
6929 PyThreadState* __tstate = wxPyBeginAllowThreads();
6930 result = (int)((wxCheckListBox const *)arg1)->HitTest((wxPoint const &)*arg2);
6931
6932 wxPyEndAllowThreads(__tstate);
6933 if (PyErr_Occurred()) SWIG_fail;
6934 }
6935 resultobj = SWIG_FromInt((int)result);
6936 return resultobj;
6937 fail:
6938 return NULL;
6939 }
6940
6941
6942 static PyObject *_wrap_CheckListBox_HitTestXY(PyObject *self, PyObject *args, PyObject *kwargs) {
6943 PyObject *resultobj;
6944 wxCheckListBox *arg1 = (wxCheckListBox *) 0 ;
6945 int arg2 ;
6946 int arg3 ;
6947 int result;
6948 PyObject * obj0 = 0 ;
6949 PyObject * obj1 = 0 ;
6950 PyObject * obj2 = 0 ;
6951 char *kwnames[] = {
6952 (char *) "self",(char *) "x",(char *) "y", NULL
6953 };
6954
6955 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:CheckListBox_HitTestXY",kwnames,&obj0,&obj1,&obj2)) goto fail;
6956 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxCheckListBox,
6957 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
6958 arg2 = (int) SWIG_AsInt(obj1);
6959 if (PyErr_Occurred()) SWIG_fail;
6960 arg3 = (int) SWIG_AsInt(obj2);
6961 if (PyErr_Occurred()) SWIG_fail;
6962 {
6963 PyThreadState* __tstate = wxPyBeginAllowThreads();
6964 result = (int)((wxCheckListBox const *)arg1)->HitTest(arg2,arg3);
6965
6966 wxPyEndAllowThreads(__tstate);
6967 if (PyErr_Occurred()) SWIG_fail;
6968 }
6969 resultobj = SWIG_FromInt((int)result);
6970 return resultobj;
6971 fail:
6972 return NULL;
6973 }
6974
6975
6976 static PyObject * CheckListBox_swigregister(PyObject *self, PyObject *args) {
6977 PyObject *obj;
6978 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
6979 SWIG_TypeClientData(SWIGTYPE_p_wxCheckListBox, obj);
6980 Py_INCREF(obj);
6981 return Py_BuildValue((char *)"");
6982 }
6983 static int _wrap_TextCtrlNameStr_set(PyObject *_val) {
6984 PyErr_SetString(PyExc_TypeError,"Variable TextCtrlNameStr is read-only.");
6985 return 1;
6986 }
6987
6988
6989 static PyObject *_wrap_TextCtrlNameStr_get() {
6990 PyObject *pyobj;
6991
6992 {
6993 #if wxUSE_UNICODE
6994 pyobj = PyUnicode_FromWideChar((&wxPyTextCtrlNameStr)->c_str(), (&wxPyTextCtrlNameStr)->Len());
6995 #else
6996 pyobj = PyString_FromStringAndSize((&wxPyTextCtrlNameStr)->c_str(), (&wxPyTextCtrlNameStr)->Len());
6997 #endif
6998 }
6999 return pyobj;
7000 }
7001
7002
7003 static PyObject *_wrap_new_TextAttr(PyObject *self, PyObject *args, PyObject *kwargs) {
7004 PyObject *resultobj;
7005 wxColour const &arg1_defvalue = wxNullColour ;
7006 wxColour *arg1 = (wxColour *) &arg1_defvalue ;
7007 wxColour const &arg2_defvalue = wxNullColour ;
7008 wxColour *arg2 = (wxColour *) &arg2_defvalue ;
7009 wxFont const &arg3_defvalue = wxNullFont ;
7010 wxFont *arg3 = (wxFont *) &arg3_defvalue ;
7011 int arg4 = (int) wxTEXT_ALIGNMENT_DEFAULT ;
7012 wxTextAttr *result;
7013 wxColour temp1 ;
7014 wxColour temp2 ;
7015 PyObject * obj0 = 0 ;
7016 PyObject * obj1 = 0 ;
7017 PyObject * obj2 = 0 ;
7018 PyObject * obj3 = 0 ;
7019 char *kwnames[] = {
7020 (char *) "colText",(char *) "colBack",(char *) "font",(char *) "alignment", NULL
7021 };
7022
7023 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|OOOO:new_TextAttr",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
7024 if (obj0) {
7025 {
7026 arg1 = &temp1;
7027 if ( ! wxColour_helper(obj0, &arg1)) SWIG_fail;
7028 }
7029 }
7030 if (obj1) {
7031 {
7032 arg2 = &temp2;
7033 if ( ! wxColour_helper(obj1, &arg2)) SWIG_fail;
7034 }
7035 }
7036 if (obj2) {
7037 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxFont,
7038 SWIG_POINTER_EXCEPTION | 0)) == -1)
7039 SWIG_fail;
7040 if (arg3 == NULL) {
7041 PyErr_SetString(PyExc_TypeError,"null reference");
7042 SWIG_fail;
7043 }
7044 }
7045 if (obj3) {
7046 arg4 = (wxTextAttrAlignment) SWIG_AsInt(obj3);
7047 if (PyErr_Occurred()) SWIG_fail;
7048 }
7049 {
7050 PyThreadState* __tstate = wxPyBeginAllowThreads();
7051 result = (wxTextAttr *)new wxTextAttr((wxColour const &)*arg1,(wxColour const &)*arg2,(wxFont const &)*arg3,(wxTextAttrAlignment )arg4);
7052
7053 wxPyEndAllowThreads(__tstate);
7054 if (PyErr_Occurred()) SWIG_fail;
7055 }
7056 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxTextAttr, 1);
7057 return resultobj;
7058 fail:
7059 return NULL;
7060 }
7061
7062
7063 static PyObject *_wrap_delete_TextAttr(PyObject *self, PyObject *args, PyObject *kwargs) {
7064 PyObject *resultobj;
7065 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7066 PyObject * obj0 = 0 ;
7067 char *kwnames[] = {
7068 (char *) "self", NULL
7069 };
7070
7071 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:delete_TextAttr",kwnames,&obj0)) goto fail;
7072 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7073 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7074 {
7075 PyThreadState* __tstate = wxPyBeginAllowThreads();
7076 delete arg1;
7077
7078 wxPyEndAllowThreads(__tstate);
7079 if (PyErr_Occurred()) SWIG_fail;
7080 }
7081 Py_INCREF(Py_None); resultobj = Py_None;
7082 return resultobj;
7083 fail:
7084 return NULL;
7085 }
7086
7087
7088 static PyObject *_wrap_TextAttr_Init(PyObject *self, PyObject *args, PyObject *kwargs) {
7089 PyObject *resultobj;
7090 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7091 PyObject * obj0 = 0 ;
7092 char *kwnames[] = {
7093 (char *) "self", NULL
7094 };
7095
7096 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_Init",kwnames,&obj0)) goto fail;
7097 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7098 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7099 {
7100 PyThreadState* __tstate = wxPyBeginAllowThreads();
7101 (arg1)->Init();
7102
7103 wxPyEndAllowThreads(__tstate);
7104 if (PyErr_Occurred()) SWIG_fail;
7105 }
7106 Py_INCREF(Py_None); resultobj = Py_None;
7107 return resultobj;
7108 fail:
7109 return NULL;
7110 }
7111
7112
7113 static PyObject *_wrap_TextAttr_SetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) {
7114 PyObject *resultobj;
7115 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7116 wxColour *arg2 = 0 ;
7117 wxColour temp2 ;
7118 PyObject * obj0 = 0 ;
7119 PyObject * obj1 = 0 ;
7120 char *kwnames[] = {
7121 (char *) "self",(char *) "colText", NULL
7122 };
7123
7124 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextAttr_SetTextColour",kwnames,&obj0,&obj1)) goto fail;
7125 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7126 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7127 {
7128 arg2 = &temp2;
7129 if ( ! wxColour_helper(obj1, &arg2)) SWIG_fail;
7130 }
7131 {
7132 PyThreadState* __tstate = wxPyBeginAllowThreads();
7133 (arg1)->SetTextColour((wxColour const &)*arg2);
7134
7135 wxPyEndAllowThreads(__tstate);
7136 if (PyErr_Occurred()) SWIG_fail;
7137 }
7138 Py_INCREF(Py_None); resultobj = Py_None;
7139 return resultobj;
7140 fail:
7141 return NULL;
7142 }
7143
7144
7145 static PyObject *_wrap_TextAttr_SetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
7146 PyObject *resultobj;
7147 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7148 wxColour *arg2 = 0 ;
7149 wxColour temp2 ;
7150 PyObject * obj0 = 0 ;
7151 PyObject * obj1 = 0 ;
7152 char *kwnames[] = {
7153 (char *) "self",(char *) "colBack", NULL
7154 };
7155
7156 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextAttr_SetBackgroundColour",kwnames,&obj0,&obj1)) goto fail;
7157 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7158 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7159 {
7160 arg2 = &temp2;
7161 if ( ! wxColour_helper(obj1, &arg2)) SWIG_fail;
7162 }
7163 {
7164 PyThreadState* __tstate = wxPyBeginAllowThreads();
7165 (arg1)->SetBackgroundColour((wxColour const &)*arg2);
7166
7167 wxPyEndAllowThreads(__tstate);
7168 if (PyErr_Occurred()) SWIG_fail;
7169 }
7170 Py_INCREF(Py_None); resultobj = Py_None;
7171 return resultobj;
7172 fail:
7173 return NULL;
7174 }
7175
7176
7177 static PyObject *_wrap_TextAttr_SetFont(PyObject *self, PyObject *args, PyObject *kwargs) {
7178 PyObject *resultobj;
7179 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7180 wxFont *arg2 = 0 ;
7181 long arg3 = (long) wxTEXT_ATTR_FONT ;
7182 PyObject * obj0 = 0 ;
7183 PyObject * obj1 = 0 ;
7184 PyObject * obj2 = 0 ;
7185 char *kwnames[] = {
7186 (char *) "self",(char *) "font",(char *) "flags", NULL
7187 };
7188
7189 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:TextAttr_SetFont",kwnames,&obj0,&obj1,&obj2)) goto fail;
7190 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7191 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7192 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxFont,
7193 SWIG_POINTER_EXCEPTION | 0)) == -1)
7194 SWIG_fail;
7195 if (arg2 == NULL) {
7196 PyErr_SetString(PyExc_TypeError,"null reference");
7197 SWIG_fail;
7198 }
7199 if (obj2) {
7200 arg3 = (long) SWIG_AsLong(obj2);
7201 if (PyErr_Occurred()) SWIG_fail;
7202 }
7203 {
7204 PyThreadState* __tstate = wxPyBeginAllowThreads();
7205 (arg1)->SetFont((wxFont const &)*arg2,arg3);
7206
7207 wxPyEndAllowThreads(__tstate);
7208 if (PyErr_Occurred()) SWIG_fail;
7209 }
7210 Py_INCREF(Py_None); resultobj = Py_None;
7211 return resultobj;
7212 fail:
7213 return NULL;
7214 }
7215
7216
7217 static PyObject *_wrap_TextAttr_SetAlignment(PyObject *self, PyObject *args, PyObject *kwargs) {
7218 PyObject *resultobj;
7219 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7220 int arg2 ;
7221 PyObject * obj0 = 0 ;
7222 PyObject * obj1 = 0 ;
7223 char *kwnames[] = {
7224 (char *) "self",(char *) "alignment", NULL
7225 };
7226
7227 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextAttr_SetAlignment",kwnames,&obj0,&obj1)) goto fail;
7228 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7229 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7230 arg2 = (wxTextAttrAlignment) SWIG_AsInt(obj1);
7231 if (PyErr_Occurred()) SWIG_fail;
7232 {
7233 PyThreadState* __tstate = wxPyBeginAllowThreads();
7234 (arg1)->SetAlignment((wxTextAttrAlignment )arg2);
7235
7236 wxPyEndAllowThreads(__tstate);
7237 if (PyErr_Occurred()) SWIG_fail;
7238 }
7239 Py_INCREF(Py_None); resultobj = Py_None;
7240 return resultobj;
7241 fail:
7242 return NULL;
7243 }
7244
7245
7246 static PyObject *_wrap_TextAttr_SetTabs(PyObject *self, PyObject *args, PyObject *kwargs) {
7247 PyObject *resultobj;
7248 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7249 wxArrayInt *arg2 = 0 ;
7250 bool temp2 = False ;
7251 PyObject * obj0 = 0 ;
7252 PyObject * obj1 = 0 ;
7253 char *kwnames[] = {
7254 (char *) "self",(char *) "tabs", NULL
7255 };
7256
7257 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextAttr_SetTabs",kwnames,&obj0,&obj1)) goto fail;
7258 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7259 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7260 {
7261 if (! PySequence_Check(obj1)) {
7262 PyErr_SetString(PyExc_TypeError, "Sequence of integers expected.");
7263 SWIG_fail;
7264 }
7265 arg2 = new wxArrayInt;
7266 temp2 = True;
7267 int i, len=PySequence_Length(obj1);
7268 for (i=0; i<len; i++) {
7269 PyObject* item = PySequence_GetItem(obj1, i);
7270 PyObject* number = PyNumber_Int(item);
7271 arg2->Add(PyInt_AS_LONG(number));
7272 Py_DECREF(item);
7273 Py_DECREF(number);
7274 }
7275 }
7276 {
7277 PyThreadState* __tstate = wxPyBeginAllowThreads();
7278 (arg1)->SetTabs((wxArrayInt const &)*arg2);
7279
7280 wxPyEndAllowThreads(__tstate);
7281 if (PyErr_Occurred()) SWIG_fail;
7282 }
7283 Py_INCREF(Py_None); resultobj = Py_None;
7284 {
7285 if (temp2) delete arg2;
7286 }
7287 return resultobj;
7288 fail:
7289 {
7290 if (temp2) delete arg2;
7291 }
7292 return NULL;
7293 }
7294
7295
7296 static PyObject *_wrap_TextAttr_SetLeftIndent(PyObject *self, PyObject *args, PyObject *kwargs) {
7297 PyObject *resultobj;
7298 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7299 int arg2 ;
7300 int arg3 = (int) 0 ;
7301 PyObject * obj0 = 0 ;
7302 PyObject * obj1 = 0 ;
7303 PyObject * obj2 = 0 ;
7304 char *kwnames[] = {
7305 (char *) "self",(char *) "indent",(char *) "subIndent", NULL
7306 };
7307
7308 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:TextAttr_SetLeftIndent",kwnames,&obj0,&obj1,&obj2)) goto fail;
7309 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7310 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7311 arg2 = (int) SWIG_AsInt(obj1);
7312 if (PyErr_Occurred()) SWIG_fail;
7313 if (obj2) {
7314 arg3 = (int) SWIG_AsInt(obj2);
7315 if (PyErr_Occurred()) SWIG_fail;
7316 }
7317 {
7318 PyThreadState* __tstate = wxPyBeginAllowThreads();
7319 (arg1)->SetLeftIndent(arg2,arg3);
7320
7321 wxPyEndAllowThreads(__tstate);
7322 if (PyErr_Occurred()) SWIG_fail;
7323 }
7324 Py_INCREF(Py_None); resultobj = Py_None;
7325 return resultobj;
7326 fail:
7327 return NULL;
7328 }
7329
7330
7331 static PyObject *_wrap_TextAttr_SetRightIndent(PyObject *self, PyObject *args, PyObject *kwargs) {
7332 PyObject *resultobj;
7333 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7334 int arg2 ;
7335 PyObject * obj0 = 0 ;
7336 PyObject * obj1 = 0 ;
7337 char *kwnames[] = {
7338 (char *) "self",(char *) "indent", NULL
7339 };
7340
7341 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextAttr_SetRightIndent",kwnames,&obj0,&obj1)) goto fail;
7342 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7343 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7344 arg2 = (int) SWIG_AsInt(obj1);
7345 if (PyErr_Occurred()) SWIG_fail;
7346 {
7347 PyThreadState* __tstate = wxPyBeginAllowThreads();
7348 (arg1)->SetRightIndent(arg2);
7349
7350 wxPyEndAllowThreads(__tstate);
7351 if (PyErr_Occurred()) SWIG_fail;
7352 }
7353 Py_INCREF(Py_None); resultobj = Py_None;
7354 return resultobj;
7355 fail:
7356 return NULL;
7357 }
7358
7359
7360 static PyObject *_wrap_TextAttr_SetFlags(PyObject *self, PyObject *args, PyObject *kwargs) {
7361 PyObject *resultobj;
7362 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7363 long arg2 ;
7364 PyObject * obj0 = 0 ;
7365 PyObject * obj1 = 0 ;
7366 char *kwnames[] = {
7367 (char *) "self",(char *) "flags", NULL
7368 };
7369
7370 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextAttr_SetFlags",kwnames,&obj0,&obj1)) goto fail;
7371 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7372 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7373 arg2 = (long) SWIG_AsLong(obj1);
7374 if (PyErr_Occurred()) SWIG_fail;
7375 {
7376 PyThreadState* __tstate = wxPyBeginAllowThreads();
7377 (arg1)->SetFlags(arg2);
7378
7379 wxPyEndAllowThreads(__tstate);
7380 if (PyErr_Occurred()) SWIG_fail;
7381 }
7382 Py_INCREF(Py_None); resultobj = Py_None;
7383 return resultobj;
7384 fail:
7385 return NULL;
7386 }
7387
7388
7389 static PyObject *_wrap_TextAttr_HasTextColour(PyObject *self, PyObject *args, PyObject *kwargs) {
7390 PyObject *resultobj;
7391 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7392 bool result;
7393 PyObject * obj0 = 0 ;
7394 char *kwnames[] = {
7395 (char *) "self", NULL
7396 };
7397
7398 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_HasTextColour",kwnames,&obj0)) goto fail;
7399 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7400 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7401 {
7402 PyThreadState* __tstate = wxPyBeginAllowThreads();
7403 result = (bool)((wxTextAttr const *)arg1)->HasTextColour();
7404
7405 wxPyEndAllowThreads(__tstate);
7406 if (PyErr_Occurred()) SWIG_fail;
7407 }
7408 {
7409 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
7410 }
7411 return resultobj;
7412 fail:
7413 return NULL;
7414 }
7415
7416
7417 static PyObject *_wrap_TextAttr_HasBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
7418 PyObject *resultobj;
7419 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7420 bool result;
7421 PyObject * obj0 = 0 ;
7422 char *kwnames[] = {
7423 (char *) "self", NULL
7424 };
7425
7426 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_HasBackgroundColour",kwnames,&obj0)) goto fail;
7427 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7428 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7429 {
7430 PyThreadState* __tstate = wxPyBeginAllowThreads();
7431 result = (bool)((wxTextAttr const *)arg1)->HasBackgroundColour();
7432
7433 wxPyEndAllowThreads(__tstate);
7434 if (PyErr_Occurred()) SWIG_fail;
7435 }
7436 {
7437 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
7438 }
7439 return resultobj;
7440 fail:
7441 return NULL;
7442 }
7443
7444
7445 static PyObject *_wrap_TextAttr_HasFont(PyObject *self, PyObject *args, PyObject *kwargs) {
7446 PyObject *resultobj;
7447 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7448 bool result;
7449 PyObject * obj0 = 0 ;
7450 char *kwnames[] = {
7451 (char *) "self", NULL
7452 };
7453
7454 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_HasFont",kwnames,&obj0)) goto fail;
7455 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7456 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7457 {
7458 PyThreadState* __tstate = wxPyBeginAllowThreads();
7459 result = (bool)((wxTextAttr const *)arg1)->HasFont();
7460
7461 wxPyEndAllowThreads(__tstate);
7462 if (PyErr_Occurred()) SWIG_fail;
7463 }
7464 {
7465 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
7466 }
7467 return resultobj;
7468 fail:
7469 return NULL;
7470 }
7471
7472
7473 static PyObject *_wrap_TextAttr_HasAlignment(PyObject *self, PyObject *args, PyObject *kwargs) {
7474 PyObject *resultobj;
7475 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7476 bool result;
7477 PyObject * obj0 = 0 ;
7478 char *kwnames[] = {
7479 (char *) "self", NULL
7480 };
7481
7482 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_HasAlignment",kwnames,&obj0)) goto fail;
7483 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7484 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7485 {
7486 PyThreadState* __tstate = wxPyBeginAllowThreads();
7487 result = (bool)((wxTextAttr const *)arg1)->HasAlignment();
7488
7489 wxPyEndAllowThreads(__tstate);
7490 if (PyErr_Occurred()) SWIG_fail;
7491 }
7492 {
7493 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
7494 }
7495 return resultobj;
7496 fail:
7497 return NULL;
7498 }
7499
7500
7501 static PyObject *_wrap_TextAttr_HasTabs(PyObject *self, PyObject *args, PyObject *kwargs) {
7502 PyObject *resultobj;
7503 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7504 bool result;
7505 PyObject * obj0 = 0 ;
7506 char *kwnames[] = {
7507 (char *) "self", NULL
7508 };
7509
7510 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_HasTabs",kwnames,&obj0)) goto fail;
7511 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7512 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7513 {
7514 PyThreadState* __tstate = wxPyBeginAllowThreads();
7515 result = (bool)((wxTextAttr const *)arg1)->HasTabs();
7516
7517 wxPyEndAllowThreads(__tstate);
7518 if (PyErr_Occurred()) SWIG_fail;
7519 }
7520 {
7521 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
7522 }
7523 return resultobj;
7524 fail:
7525 return NULL;
7526 }
7527
7528
7529 static PyObject *_wrap_TextAttr_HasLeftIndent(PyObject *self, PyObject *args, PyObject *kwargs) {
7530 PyObject *resultobj;
7531 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7532 bool result;
7533 PyObject * obj0 = 0 ;
7534 char *kwnames[] = {
7535 (char *) "self", NULL
7536 };
7537
7538 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_HasLeftIndent",kwnames,&obj0)) goto fail;
7539 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7540 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7541 {
7542 PyThreadState* __tstate = wxPyBeginAllowThreads();
7543 result = (bool)((wxTextAttr const *)arg1)->HasLeftIndent();
7544
7545 wxPyEndAllowThreads(__tstate);
7546 if (PyErr_Occurred()) SWIG_fail;
7547 }
7548 {
7549 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
7550 }
7551 return resultobj;
7552 fail:
7553 return NULL;
7554 }
7555
7556
7557 static PyObject *_wrap_TextAttr_HasRightIndent(PyObject *self, PyObject *args, PyObject *kwargs) {
7558 PyObject *resultobj;
7559 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7560 bool result;
7561 PyObject * obj0 = 0 ;
7562 char *kwnames[] = {
7563 (char *) "self", NULL
7564 };
7565
7566 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_HasRightIndent",kwnames,&obj0)) goto fail;
7567 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7568 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7569 {
7570 PyThreadState* __tstate = wxPyBeginAllowThreads();
7571 result = (bool)((wxTextAttr const *)arg1)->HasRightIndent();
7572
7573 wxPyEndAllowThreads(__tstate);
7574 if (PyErr_Occurred()) SWIG_fail;
7575 }
7576 {
7577 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
7578 }
7579 return resultobj;
7580 fail:
7581 return NULL;
7582 }
7583
7584
7585 static PyObject *_wrap_TextAttr_HasFlag(PyObject *self, PyObject *args, PyObject *kwargs) {
7586 PyObject *resultobj;
7587 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7588 long arg2 ;
7589 bool result;
7590 PyObject * obj0 = 0 ;
7591 PyObject * obj1 = 0 ;
7592 char *kwnames[] = {
7593 (char *) "self",(char *) "flag", NULL
7594 };
7595
7596 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextAttr_HasFlag",kwnames,&obj0,&obj1)) goto fail;
7597 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7598 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7599 arg2 = (long) SWIG_AsLong(obj1);
7600 if (PyErr_Occurred()) SWIG_fail;
7601 {
7602 PyThreadState* __tstate = wxPyBeginAllowThreads();
7603 result = (bool)((wxTextAttr const *)arg1)->HasFlag(arg2);
7604
7605 wxPyEndAllowThreads(__tstate);
7606 if (PyErr_Occurred()) SWIG_fail;
7607 }
7608 {
7609 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
7610 }
7611 return resultobj;
7612 fail:
7613 return NULL;
7614 }
7615
7616
7617 static PyObject *_wrap_TextAttr_GetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) {
7618 PyObject *resultobj;
7619 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7620 wxColour *result;
7621 PyObject * obj0 = 0 ;
7622 char *kwnames[] = {
7623 (char *) "self", NULL
7624 };
7625
7626 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_GetTextColour",kwnames,&obj0)) goto fail;
7627 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7628 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7629 {
7630 PyThreadState* __tstate = wxPyBeginAllowThreads();
7631 {
7632 wxColour const &_result_ref = ((wxTextAttr const *)arg1)->GetTextColour();
7633 result = (wxColour *) &_result_ref;
7634 }
7635
7636 wxPyEndAllowThreads(__tstate);
7637 if (PyErr_Occurred()) SWIG_fail;
7638 }
7639 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxColour, 0);
7640 return resultobj;
7641 fail:
7642 return NULL;
7643 }
7644
7645
7646 static PyObject *_wrap_TextAttr_GetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
7647 PyObject *resultobj;
7648 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7649 wxColour *result;
7650 PyObject * obj0 = 0 ;
7651 char *kwnames[] = {
7652 (char *) "self", NULL
7653 };
7654
7655 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_GetBackgroundColour",kwnames,&obj0)) goto fail;
7656 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7657 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7658 {
7659 PyThreadState* __tstate = wxPyBeginAllowThreads();
7660 {
7661 wxColour const &_result_ref = ((wxTextAttr const *)arg1)->GetBackgroundColour();
7662 result = (wxColour *) &_result_ref;
7663 }
7664
7665 wxPyEndAllowThreads(__tstate);
7666 if (PyErr_Occurred()) SWIG_fail;
7667 }
7668 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxColour, 0);
7669 return resultobj;
7670 fail:
7671 return NULL;
7672 }
7673
7674
7675 static PyObject *_wrap_TextAttr_GetFont(PyObject *self, PyObject *args, PyObject *kwargs) {
7676 PyObject *resultobj;
7677 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7678 wxFont *result;
7679 PyObject * obj0 = 0 ;
7680 char *kwnames[] = {
7681 (char *) "self", NULL
7682 };
7683
7684 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_GetFont",kwnames,&obj0)) goto fail;
7685 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7686 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7687 {
7688 PyThreadState* __tstate = wxPyBeginAllowThreads();
7689 {
7690 wxFont const &_result_ref = ((wxTextAttr const *)arg1)->GetFont();
7691 result = (wxFont *) &_result_ref;
7692 }
7693
7694 wxPyEndAllowThreads(__tstate);
7695 if (PyErr_Occurred()) SWIG_fail;
7696 }
7697 {
7698 wxFont* resultptr = new wxFont(*result);
7699 resultobj = SWIG_NewPointerObj((void*)(resultptr), SWIGTYPE_p_wxFont, 1);
7700 }
7701 return resultobj;
7702 fail:
7703 return NULL;
7704 }
7705
7706
7707 static PyObject *_wrap_TextAttr_GetAlignment(PyObject *self, PyObject *args, PyObject *kwargs) {
7708 PyObject *resultobj;
7709 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7710 int result;
7711 PyObject * obj0 = 0 ;
7712 char *kwnames[] = {
7713 (char *) "self", NULL
7714 };
7715
7716 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_GetAlignment",kwnames,&obj0)) goto fail;
7717 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7718 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7719 {
7720 PyThreadState* __tstate = wxPyBeginAllowThreads();
7721 result = (int)((wxTextAttr const *)arg1)->GetAlignment();
7722
7723 wxPyEndAllowThreads(__tstate);
7724 if (PyErr_Occurred()) SWIG_fail;
7725 }
7726 resultobj = SWIG_FromInt((int)result);
7727 return resultobj;
7728 fail:
7729 return NULL;
7730 }
7731
7732
7733 static PyObject *_wrap_TextAttr_GetTabs(PyObject *self, PyObject *args, PyObject *kwargs) {
7734 PyObject *resultobj;
7735 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7736 wxArrayInt *result;
7737 PyObject * obj0 = 0 ;
7738 char *kwnames[] = {
7739 (char *) "self", NULL
7740 };
7741
7742 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_GetTabs",kwnames,&obj0)) goto fail;
7743 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7744 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7745 {
7746 PyThreadState* __tstate = wxPyBeginAllowThreads();
7747 {
7748 wxArrayInt const &_result_ref = ((wxTextAttr const *)arg1)->GetTabs();
7749 result = (wxArrayInt *) &_result_ref;
7750 }
7751
7752 wxPyEndAllowThreads(__tstate);
7753 if (PyErr_Occurred()) SWIG_fail;
7754 }
7755 {
7756 resultobj = PyList_New(0);
7757 size_t idx;
7758 for (idx = 0; idx < result->GetCount(); idx += 1) {
7759 PyObject* val = PyInt_FromLong( result->Item(idx) );
7760 PyList_Append(resultobj, val);
7761 Py_DECREF(val);
7762 }
7763 }
7764 return resultobj;
7765 fail:
7766 return NULL;
7767 }
7768
7769
7770 static PyObject *_wrap_TextAttr_GetLeftIndent(PyObject *self, PyObject *args, PyObject *kwargs) {
7771 PyObject *resultobj;
7772 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7773 long result;
7774 PyObject * obj0 = 0 ;
7775 char *kwnames[] = {
7776 (char *) "self", NULL
7777 };
7778
7779 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_GetLeftIndent",kwnames,&obj0)) goto fail;
7780 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7781 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7782 {
7783 PyThreadState* __tstate = wxPyBeginAllowThreads();
7784 result = (long)((wxTextAttr const *)arg1)->GetLeftIndent();
7785
7786 wxPyEndAllowThreads(__tstate);
7787 if (PyErr_Occurred()) SWIG_fail;
7788 }
7789 resultobj = SWIG_FromLong((long)result);
7790 return resultobj;
7791 fail:
7792 return NULL;
7793 }
7794
7795
7796 static PyObject *_wrap_TextAttr_GetLeftSubIndent(PyObject *self, PyObject *args, PyObject *kwargs) {
7797 PyObject *resultobj;
7798 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7799 long result;
7800 PyObject * obj0 = 0 ;
7801 char *kwnames[] = {
7802 (char *) "self", NULL
7803 };
7804
7805 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_GetLeftSubIndent",kwnames,&obj0)) goto fail;
7806 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7807 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7808 {
7809 PyThreadState* __tstate = wxPyBeginAllowThreads();
7810 result = (long)((wxTextAttr const *)arg1)->GetLeftSubIndent();
7811
7812 wxPyEndAllowThreads(__tstate);
7813 if (PyErr_Occurred()) SWIG_fail;
7814 }
7815 resultobj = SWIG_FromLong((long)result);
7816 return resultobj;
7817 fail:
7818 return NULL;
7819 }
7820
7821
7822 static PyObject *_wrap_TextAttr_GetRightIndent(PyObject *self, PyObject *args, PyObject *kwargs) {
7823 PyObject *resultobj;
7824 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7825 long result;
7826 PyObject * obj0 = 0 ;
7827 char *kwnames[] = {
7828 (char *) "self", NULL
7829 };
7830
7831 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_GetRightIndent",kwnames,&obj0)) goto fail;
7832 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7833 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7834 {
7835 PyThreadState* __tstate = wxPyBeginAllowThreads();
7836 result = (long)((wxTextAttr const *)arg1)->GetRightIndent();
7837
7838 wxPyEndAllowThreads(__tstate);
7839 if (PyErr_Occurred()) SWIG_fail;
7840 }
7841 resultobj = SWIG_FromLong((long)result);
7842 return resultobj;
7843 fail:
7844 return NULL;
7845 }
7846
7847
7848 static PyObject *_wrap_TextAttr_GetFlags(PyObject *self, PyObject *args, PyObject *kwargs) {
7849 PyObject *resultobj;
7850 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7851 long result;
7852 PyObject * obj0 = 0 ;
7853 char *kwnames[] = {
7854 (char *) "self", NULL
7855 };
7856
7857 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_GetFlags",kwnames,&obj0)) goto fail;
7858 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7859 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7860 {
7861 PyThreadState* __tstate = wxPyBeginAllowThreads();
7862 result = (long)((wxTextAttr const *)arg1)->GetFlags();
7863
7864 wxPyEndAllowThreads(__tstate);
7865 if (PyErr_Occurred()) SWIG_fail;
7866 }
7867 resultobj = SWIG_FromLong((long)result);
7868 return resultobj;
7869 fail:
7870 return NULL;
7871 }
7872
7873
7874 static PyObject *_wrap_TextAttr_IsDefault(PyObject *self, PyObject *args, PyObject *kwargs) {
7875 PyObject *resultobj;
7876 wxTextAttr *arg1 = (wxTextAttr *) 0 ;
7877 bool result;
7878 PyObject * obj0 = 0 ;
7879 char *kwnames[] = {
7880 (char *) "self", NULL
7881 };
7882
7883 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextAttr_IsDefault",kwnames,&obj0)) goto fail;
7884 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7885 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7886 {
7887 PyThreadState* __tstate = wxPyBeginAllowThreads();
7888 result = (bool)((wxTextAttr const *)arg1)->IsDefault();
7889
7890 wxPyEndAllowThreads(__tstate);
7891 if (PyErr_Occurred()) SWIG_fail;
7892 }
7893 {
7894 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
7895 }
7896 return resultobj;
7897 fail:
7898 return NULL;
7899 }
7900
7901
7902 static PyObject *_wrap_TextAttr_Combine(PyObject *self, PyObject *args, PyObject *kwargs) {
7903 PyObject *resultobj;
7904 wxTextAttr *arg1 = 0 ;
7905 wxTextAttr *arg2 = 0 ;
7906 wxTextCtrl *arg3 = (wxTextCtrl *) 0 ;
7907 wxTextAttr result;
7908 PyObject * obj0 = 0 ;
7909 PyObject * obj1 = 0 ;
7910 PyObject * obj2 = 0 ;
7911 char *kwnames[] = {
7912 (char *) "attr",(char *) "attrDef",(char *) "text", NULL
7913 };
7914
7915 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:TextAttr_Combine",kwnames,&obj0,&obj1,&obj2)) goto fail;
7916 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextAttr,
7917 SWIG_POINTER_EXCEPTION | 0)) == -1)
7918 SWIG_fail;
7919 if (arg1 == NULL) {
7920 PyErr_SetString(PyExc_TypeError,"null reference");
7921 SWIG_fail;
7922 }
7923 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTextAttr,
7924 SWIG_POINTER_EXCEPTION | 0)) == -1)
7925 SWIG_fail;
7926 if (arg2 == NULL) {
7927 PyErr_SetString(PyExc_TypeError,"null reference");
7928 SWIG_fail;
7929 }
7930 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxTextCtrl,
7931 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7932 {
7933 PyThreadState* __tstate = wxPyBeginAllowThreads();
7934 result = wxTextAttr::Combine((wxTextAttr const &)*arg1,(wxTextAttr const &)*arg2,(wxTextCtrl const *)arg3);
7935
7936 wxPyEndAllowThreads(__tstate);
7937 if (PyErr_Occurred()) SWIG_fail;
7938 }
7939 {
7940 wxTextAttr * resultptr;
7941 resultptr = new wxTextAttr((wxTextAttr &) result);
7942 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTextAttr, 1);
7943 }
7944 return resultobj;
7945 fail:
7946 return NULL;
7947 }
7948
7949
7950 static PyObject * TextAttr_swigregister(PyObject *self, PyObject *args) {
7951 PyObject *obj;
7952 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
7953 SWIG_TypeClientData(SWIGTYPE_p_wxTextAttr, obj);
7954 Py_INCREF(obj);
7955 return Py_BuildValue((char *)"");
7956 }
7957 static PyObject *_wrap_new_TextCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
7958 PyObject *resultobj;
7959 wxWindow *arg1 = (wxWindow *) 0 ;
7960 int arg2 = (int) -1 ;
7961 wxString const &arg3_defvalue = wxPyEmptyString ;
7962 wxString *arg3 = (wxString *) &arg3_defvalue ;
7963 wxPoint const &arg4_defvalue = wxDefaultPosition ;
7964 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
7965 wxSize const &arg5_defvalue = wxDefaultSize ;
7966 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
7967 long arg6 = (long) 0 ;
7968 wxValidator const &arg7_defvalue = wxDefaultValidator ;
7969 wxValidator *arg7 = (wxValidator *) &arg7_defvalue ;
7970 wxString const &arg8_defvalue = wxPyTextCtrlNameStr ;
7971 wxString *arg8 = (wxString *) &arg8_defvalue ;
7972 wxTextCtrl *result;
7973 bool temp3 = False ;
7974 wxPoint temp4 ;
7975 wxSize temp5 ;
7976 bool temp8 = False ;
7977 PyObject * obj0 = 0 ;
7978 PyObject * obj1 = 0 ;
7979 PyObject * obj2 = 0 ;
7980 PyObject * obj3 = 0 ;
7981 PyObject * obj4 = 0 ;
7982 PyObject * obj5 = 0 ;
7983 PyObject * obj6 = 0 ;
7984 PyObject * obj7 = 0 ;
7985 char *kwnames[] = {
7986 (char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
7987 };
7988
7989 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOO:new_TextCtrl",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
7990 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
7991 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
7992 if (obj1) {
7993 arg2 = (int) SWIG_AsInt(obj1);
7994 if (PyErr_Occurred()) SWIG_fail;
7995 }
7996 if (obj2) {
7997 {
7998 arg3 = wxString_in_helper(obj2);
7999 if (arg3 == NULL) SWIG_fail;
8000 temp3 = True;
8001 }
8002 }
8003 if (obj3) {
8004 {
8005 arg4 = &temp4;
8006 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
8007 }
8008 }
8009 if (obj4) {
8010 {
8011 arg5 = &temp5;
8012 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
8013 }
8014 }
8015 if (obj5) {
8016 arg6 = (long) SWIG_AsLong(obj5);
8017 if (PyErr_Occurred()) SWIG_fail;
8018 }
8019 if (obj6) {
8020 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxValidator,
8021 SWIG_POINTER_EXCEPTION | 0)) == -1)
8022 SWIG_fail;
8023 if (arg7 == NULL) {
8024 PyErr_SetString(PyExc_TypeError,"null reference");
8025 SWIG_fail;
8026 }
8027 }
8028 if (obj7) {
8029 {
8030 arg8 = wxString_in_helper(obj7);
8031 if (arg8 == NULL) SWIG_fail;
8032 temp8 = True;
8033 }
8034 }
8035 {
8036 if (!wxPyCheckForApp()) SWIG_fail;
8037 PyThreadState* __tstate = wxPyBeginAllowThreads();
8038 result = (wxTextCtrl *)new wxTextCtrl(arg1,arg2,(wxString const &)*arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxValidator const &)*arg7,(wxString const &)*arg8);
8039
8040 wxPyEndAllowThreads(__tstate);
8041 if (PyErr_Occurred()) SWIG_fail;
8042 }
8043 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxTextCtrl, 1);
8044 {
8045 if (temp3)
8046 delete arg3;
8047 }
8048 {
8049 if (temp8)
8050 delete arg8;
8051 }
8052 return resultobj;
8053 fail:
8054 {
8055 if (temp3)
8056 delete arg3;
8057 }
8058 {
8059 if (temp8)
8060 delete arg8;
8061 }
8062 return NULL;
8063 }
8064
8065
8066 static PyObject *_wrap_new_PreTextCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
8067 PyObject *resultobj;
8068 wxTextCtrl *result;
8069 char *kwnames[] = {
8070 NULL
8071 };
8072
8073 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreTextCtrl",kwnames)) goto fail;
8074 {
8075 if (!wxPyCheckForApp()) SWIG_fail;
8076 PyThreadState* __tstate = wxPyBeginAllowThreads();
8077 result = (wxTextCtrl *)new wxTextCtrl();
8078
8079 wxPyEndAllowThreads(__tstate);
8080 if (PyErr_Occurred()) SWIG_fail;
8081 }
8082 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxTextCtrl, 1);
8083 return resultobj;
8084 fail:
8085 return NULL;
8086 }
8087
8088
8089 static PyObject *_wrap_TextCtrl_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
8090 PyObject *resultobj;
8091 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8092 wxWindow *arg2 = (wxWindow *) 0 ;
8093 int arg3 = (int) -1 ;
8094 wxString const &arg4_defvalue = wxPyEmptyString ;
8095 wxString *arg4 = (wxString *) &arg4_defvalue ;
8096 wxPoint const &arg5_defvalue = wxDefaultPosition ;
8097 wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
8098 wxSize const &arg6_defvalue = wxDefaultSize ;
8099 wxSize *arg6 = (wxSize *) &arg6_defvalue ;
8100 long arg7 = (long) 0 ;
8101 wxValidator const &arg8_defvalue = wxDefaultValidator ;
8102 wxValidator *arg8 = (wxValidator *) &arg8_defvalue ;
8103 wxString const &arg9_defvalue = wxPyTextCtrlNameStr ;
8104 wxString *arg9 = (wxString *) &arg9_defvalue ;
8105 bool result;
8106 bool temp4 = False ;
8107 wxPoint temp5 ;
8108 wxSize temp6 ;
8109 bool temp9 = False ;
8110 PyObject * obj0 = 0 ;
8111 PyObject * obj1 = 0 ;
8112 PyObject * obj2 = 0 ;
8113 PyObject * obj3 = 0 ;
8114 PyObject * obj4 = 0 ;
8115 PyObject * obj5 = 0 ;
8116 PyObject * obj6 = 0 ;
8117 PyObject * obj7 = 0 ;
8118 PyObject * obj8 = 0 ;
8119 char *kwnames[] = {
8120 (char *) "self",(char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
8121 };
8122
8123 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOO:TextCtrl_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail;
8124 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8125 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8126 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
8127 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8128 if (obj2) {
8129 arg3 = (int) SWIG_AsInt(obj2);
8130 if (PyErr_Occurred()) SWIG_fail;
8131 }
8132 if (obj3) {
8133 {
8134 arg4 = wxString_in_helper(obj3);
8135 if (arg4 == NULL) SWIG_fail;
8136 temp4 = True;
8137 }
8138 }
8139 if (obj4) {
8140 {
8141 arg5 = &temp5;
8142 if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
8143 }
8144 }
8145 if (obj5) {
8146 {
8147 arg6 = &temp6;
8148 if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
8149 }
8150 }
8151 if (obj6) {
8152 arg7 = (long) SWIG_AsLong(obj6);
8153 if (PyErr_Occurred()) SWIG_fail;
8154 }
8155 if (obj7) {
8156 if ((SWIG_ConvertPtr(obj7,(void **)(&arg8),SWIGTYPE_p_wxValidator,
8157 SWIG_POINTER_EXCEPTION | 0)) == -1)
8158 SWIG_fail;
8159 if (arg8 == NULL) {
8160 PyErr_SetString(PyExc_TypeError,"null reference");
8161 SWIG_fail;
8162 }
8163 }
8164 if (obj8) {
8165 {
8166 arg9 = wxString_in_helper(obj8);
8167 if (arg9 == NULL) SWIG_fail;
8168 temp9 = True;
8169 }
8170 }
8171 {
8172 PyThreadState* __tstate = wxPyBeginAllowThreads();
8173 result = (bool)(arg1)->Create(arg2,arg3,(wxString const &)*arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,arg7,(wxValidator const &)*arg8,(wxString const &)*arg9);
8174
8175 wxPyEndAllowThreads(__tstate);
8176 if (PyErr_Occurred()) SWIG_fail;
8177 }
8178 {
8179 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
8180 }
8181 {
8182 if (temp4)
8183 delete arg4;
8184 }
8185 {
8186 if (temp9)
8187 delete arg9;
8188 }
8189 return resultobj;
8190 fail:
8191 {
8192 if (temp4)
8193 delete arg4;
8194 }
8195 {
8196 if (temp9)
8197 delete arg9;
8198 }
8199 return NULL;
8200 }
8201
8202
8203 static PyObject *_wrap_TextCtrl_GetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
8204 PyObject *resultobj;
8205 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8206 wxString result;
8207 PyObject * obj0 = 0 ;
8208 char *kwnames[] = {
8209 (char *) "self", NULL
8210 };
8211
8212 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_GetValue",kwnames,&obj0)) goto fail;
8213 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8214 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8215 {
8216 PyThreadState* __tstate = wxPyBeginAllowThreads();
8217 result = ((wxTextCtrl const *)arg1)->GetValue();
8218
8219 wxPyEndAllowThreads(__tstate);
8220 if (PyErr_Occurred()) SWIG_fail;
8221 }
8222 {
8223 #if wxUSE_UNICODE
8224 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
8225 #else
8226 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
8227 #endif
8228 }
8229 return resultobj;
8230 fail:
8231 return NULL;
8232 }
8233
8234
8235 static PyObject *_wrap_TextCtrl_SetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
8236 PyObject *resultobj;
8237 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8238 wxString *arg2 = 0 ;
8239 bool temp2 = False ;
8240 PyObject * obj0 = 0 ;
8241 PyObject * obj1 = 0 ;
8242 char *kwnames[] = {
8243 (char *) "self",(char *) "value", NULL
8244 };
8245
8246 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextCtrl_SetValue",kwnames,&obj0,&obj1)) goto fail;
8247 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8248 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8249 {
8250 arg2 = wxString_in_helper(obj1);
8251 if (arg2 == NULL) SWIG_fail;
8252 temp2 = True;
8253 }
8254 {
8255 PyThreadState* __tstate = wxPyBeginAllowThreads();
8256 (arg1)->SetValue((wxString const &)*arg2);
8257
8258 wxPyEndAllowThreads(__tstate);
8259 if (PyErr_Occurred()) SWIG_fail;
8260 }
8261 Py_INCREF(Py_None); resultobj = Py_None;
8262 {
8263 if (temp2)
8264 delete arg2;
8265 }
8266 return resultobj;
8267 fail:
8268 {
8269 if (temp2)
8270 delete arg2;
8271 }
8272 return NULL;
8273 }
8274
8275
8276 static PyObject *_wrap_TextCtrl_GetRange(PyObject *self, PyObject *args, PyObject *kwargs) {
8277 PyObject *resultobj;
8278 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8279 long arg2 ;
8280 long arg3 ;
8281 wxString result;
8282 PyObject * obj0 = 0 ;
8283 PyObject * obj1 = 0 ;
8284 PyObject * obj2 = 0 ;
8285 char *kwnames[] = {
8286 (char *) "self",(char *) "from",(char *) "to", NULL
8287 };
8288
8289 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:TextCtrl_GetRange",kwnames,&obj0,&obj1,&obj2)) goto fail;
8290 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8291 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8292 arg2 = (long) SWIG_AsLong(obj1);
8293 if (PyErr_Occurred()) SWIG_fail;
8294 arg3 = (long) SWIG_AsLong(obj2);
8295 if (PyErr_Occurred()) SWIG_fail;
8296 {
8297 PyThreadState* __tstate = wxPyBeginAllowThreads();
8298 result = ((wxTextCtrl const *)arg1)->GetRange(arg2,arg3);
8299
8300 wxPyEndAllowThreads(__tstate);
8301 if (PyErr_Occurred()) SWIG_fail;
8302 }
8303 {
8304 #if wxUSE_UNICODE
8305 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
8306 #else
8307 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
8308 #endif
8309 }
8310 return resultobj;
8311 fail:
8312 return NULL;
8313 }
8314
8315
8316 static PyObject *_wrap_TextCtrl_GetLineLength(PyObject *self, PyObject *args, PyObject *kwargs) {
8317 PyObject *resultobj;
8318 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8319 long arg2 ;
8320 int result;
8321 PyObject * obj0 = 0 ;
8322 PyObject * obj1 = 0 ;
8323 char *kwnames[] = {
8324 (char *) "self",(char *) "lineNo", NULL
8325 };
8326
8327 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextCtrl_GetLineLength",kwnames,&obj0,&obj1)) goto fail;
8328 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8329 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8330 arg2 = (long) SWIG_AsLong(obj1);
8331 if (PyErr_Occurred()) SWIG_fail;
8332 {
8333 PyThreadState* __tstate = wxPyBeginAllowThreads();
8334 result = (int)((wxTextCtrl const *)arg1)->GetLineLength(arg2);
8335
8336 wxPyEndAllowThreads(__tstate);
8337 if (PyErr_Occurred()) SWIG_fail;
8338 }
8339 resultobj = SWIG_FromInt((int)result);
8340 return resultobj;
8341 fail:
8342 return NULL;
8343 }
8344
8345
8346 static PyObject *_wrap_TextCtrl_GetLineText(PyObject *self, PyObject *args, PyObject *kwargs) {
8347 PyObject *resultobj;
8348 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8349 long arg2 ;
8350 wxString result;
8351 PyObject * obj0 = 0 ;
8352 PyObject * obj1 = 0 ;
8353 char *kwnames[] = {
8354 (char *) "self",(char *) "lineNo", NULL
8355 };
8356
8357 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextCtrl_GetLineText",kwnames,&obj0,&obj1)) goto fail;
8358 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8359 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8360 arg2 = (long) SWIG_AsLong(obj1);
8361 if (PyErr_Occurred()) SWIG_fail;
8362 {
8363 PyThreadState* __tstate = wxPyBeginAllowThreads();
8364 result = ((wxTextCtrl const *)arg1)->GetLineText(arg2);
8365
8366 wxPyEndAllowThreads(__tstate);
8367 if (PyErr_Occurred()) SWIG_fail;
8368 }
8369 {
8370 #if wxUSE_UNICODE
8371 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
8372 #else
8373 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
8374 #endif
8375 }
8376 return resultobj;
8377 fail:
8378 return NULL;
8379 }
8380
8381
8382 static PyObject *_wrap_TextCtrl_GetNumberOfLines(PyObject *self, PyObject *args, PyObject *kwargs) {
8383 PyObject *resultobj;
8384 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8385 int result;
8386 PyObject * obj0 = 0 ;
8387 char *kwnames[] = {
8388 (char *) "self", NULL
8389 };
8390
8391 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_GetNumberOfLines",kwnames,&obj0)) goto fail;
8392 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8393 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8394 {
8395 PyThreadState* __tstate = wxPyBeginAllowThreads();
8396 result = (int)((wxTextCtrl const *)arg1)->GetNumberOfLines();
8397
8398 wxPyEndAllowThreads(__tstate);
8399 if (PyErr_Occurred()) SWIG_fail;
8400 }
8401 resultobj = SWIG_FromInt((int)result);
8402 return resultobj;
8403 fail:
8404 return NULL;
8405 }
8406
8407
8408 static PyObject *_wrap_TextCtrl_IsModified(PyObject *self, PyObject *args, PyObject *kwargs) {
8409 PyObject *resultobj;
8410 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8411 bool result;
8412 PyObject * obj0 = 0 ;
8413 char *kwnames[] = {
8414 (char *) "self", NULL
8415 };
8416
8417 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_IsModified",kwnames,&obj0)) goto fail;
8418 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8419 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8420 {
8421 PyThreadState* __tstate = wxPyBeginAllowThreads();
8422 result = (bool)((wxTextCtrl const *)arg1)->IsModified();
8423
8424 wxPyEndAllowThreads(__tstate);
8425 if (PyErr_Occurred()) SWIG_fail;
8426 }
8427 {
8428 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
8429 }
8430 return resultobj;
8431 fail:
8432 return NULL;
8433 }
8434
8435
8436 static PyObject *_wrap_TextCtrl_IsEditable(PyObject *self, PyObject *args, PyObject *kwargs) {
8437 PyObject *resultobj;
8438 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8439 bool result;
8440 PyObject * obj0 = 0 ;
8441 char *kwnames[] = {
8442 (char *) "self", NULL
8443 };
8444
8445 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_IsEditable",kwnames,&obj0)) goto fail;
8446 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8447 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8448 {
8449 PyThreadState* __tstate = wxPyBeginAllowThreads();
8450 result = (bool)((wxTextCtrl const *)arg1)->IsEditable();
8451
8452 wxPyEndAllowThreads(__tstate);
8453 if (PyErr_Occurred()) SWIG_fail;
8454 }
8455 {
8456 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
8457 }
8458 return resultobj;
8459 fail:
8460 return NULL;
8461 }
8462
8463
8464 static PyObject *_wrap_TextCtrl_IsSingleLine(PyObject *self, PyObject *args, PyObject *kwargs) {
8465 PyObject *resultobj;
8466 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8467 bool result;
8468 PyObject * obj0 = 0 ;
8469 char *kwnames[] = {
8470 (char *) "self", NULL
8471 };
8472
8473 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_IsSingleLine",kwnames,&obj0)) goto fail;
8474 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8475 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8476 {
8477 PyThreadState* __tstate = wxPyBeginAllowThreads();
8478 result = (bool)((wxTextCtrl const *)arg1)->IsSingleLine();
8479
8480 wxPyEndAllowThreads(__tstate);
8481 if (PyErr_Occurred()) SWIG_fail;
8482 }
8483 {
8484 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
8485 }
8486 return resultobj;
8487 fail:
8488 return NULL;
8489 }
8490
8491
8492 static PyObject *_wrap_TextCtrl_IsMultiLine(PyObject *self, PyObject *args, PyObject *kwargs) {
8493 PyObject *resultobj;
8494 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8495 bool result;
8496 PyObject * obj0 = 0 ;
8497 char *kwnames[] = {
8498 (char *) "self", NULL
8499 };
8500
8501 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_IsMultiLine",kwnames,&obj0)) goto fail;
8502 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8503 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8504 {
8505 PyThreadState* __tstate = wxPyBeginAllowThreads();
8506 result = (bool)((wxTextCtrl const *)arg1)->IsMultiLine();
8507
8508 wxPyEndAllowThreads(__tstate);
8509 if (PyErr_Occurred()) SWIG_fail;
8510 }
8511 {
8512 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
8513 }
8514 return resultobj;
8515 fail:
8516 return NULL;
8517 }
8518
8519
8520 static PyObject *_wrap_TextCtrl_GetSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
8521 PyObject *resultobj;
8522 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8523 long *arg2 = (long *) 0 ;
8524 long *arg3 = (long *) 0 ;
8525 long temp2 ;
8526 long temp3 ;
8527 PyObject * obj0 = 0 ;
8528 char *kwnames[] = {
8529 (char *) "self", NULL
8530 };
8531
8532 arg2 = &temp2;
8533 arg3 = &temp3;
8534 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_GetSelection",kwnames,&obj0)) goto fail;
8535 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8536 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8537 {
8538 PyThreadState* __tstate = wxPyBeginAllowThreads();
8539 ((wxTextCtrl const *)arg1)->GetSelection(arg2,arg3);
8540
8541 wxPyEndAllowThreads(__tstate);
8542 if (PyErr_Occurred()) SWIG_fail;
8543 }
8544 Py_INCREF(Py_None); resultobj = Py_None;
8545 {
8546 PyObject *o = PyInt_FromLong((long) (*arg2));
8547 resultobj = t_output_helper(resultobj,o);
8548 }
8549 {
8550 PyObject *o = PyInt_FromLong((long) (*arg3));
8551 resultobj = t_output_helper(resultobj,o);
8552 }
8553 return resultobj;
8554 fail:
8555 return NULL;
8556 }
8557
8558
8559 static PyObject *_wrap_TextCtrl_GetStringSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
8560 PyObject *resultobj;
8561 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8562 wxString result;
8563 PyObject * obj0 = 0 ;
8564 char *kwnames[] = {
8565 (char *) "self", NULL
8566 };
8567
8568 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_GetStringSelection",kwnames,&obj0)) goto fail;
8569 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8570 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8571 {
8572 PyThreadState* __tstate = wxPyBeginAllowThreads();
8573 result = ((wxTextCtrl const *)arg1)->GetStringSelection();
8574
8575 wxPyEndAllowThreads(__tstate);
8576 if (PyErr_Occurred()) SWIG_fail;
8577 }
8578 {
8579 #if wxUSE_UNICODE
8580 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
8581 #else
8582 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
8583 #endif
8584 }
8585 return resultobj;
8586 fail:
8587 return NULL;
8588 }
8589
8590
8591 static PyObject *_wrap_TextCtrl_Clear(PyObject *self, PyObject *args, PyObject *kwargs) {
8592 PyObject *resultobj;
8593 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8594 PyObject * obj0 = 0 ;
8595 char *kwnames[] = {
8596 (char *) "self", NULL
8597 };
8598
8599 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_Clear",kwnames,&obj0)) goto fail;
8600 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8601 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8602 {
8603 PyThreadState* __tstate = wxPyBeginAllowThreads();
8604 (arg1)->Clear();
8605
8606 wxPyEndAllowThreads(__tstate);
8607 if (PyErr_Occurred()) SWIG_fail;
8608 }
8609 Py_INCREF(Py_None); resultobj = Py_None;
8610 return resultobj;
8611 fail:
8612 return NULL;
8613 }
8614
8615
8616 static PyObject *_wrap_TextCtrl_Replace(PyObject *self, PyObject *args, PyObject *kwargs) {
8617 PyObject *resultobj;
8618 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8619 long arg2 ;
8620 long arg3 ;
8621 wxString *arg4 = 0 ;
8622 bool temp4 = False ;
8623 PyObject * obj0 = 0 ;
8624 PyObject * obj1 = 0 ;
8625 PyObject * obj2 = 0 ;
8626 PyObject * obj3 = 0 ;
8627 char *kwnames[] = {
8628 (char *) "self",(char *) "from",(char *) "to",(char *) "value", NULL
8629 };
8630
8631 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO:TextCtrl_Replace",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
8632 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8633 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8634 arg2 = (long) SWIG_AsLong(obj1);
8635 if (PyErr_Occurred()) SWIG_fail;
8636 arg3 = (long) SWIG_AsLong(obj2);
8637 if (PyErr_Occurred()) SWIG_fail;
8638 {
8639 arg4 = wxString_in_helper(obj3);
8640 if (arg4 == NULL) SWIG_fail;
8641 temp4 = True;
8642 }
8643 {
8644 PyThreadState* __tstate = wxPyBeginAllowThreads();
8645 (arg1)->Replace(arg2,arg3,(wxString const &)*arg4);
8646
8647 wxPyEndAllowThreads(__tstate);
8648 if (PyErr_Occurred()) SWIG_fail;
8649 }
8650 Py_INCREF(Py_None); resultobj = Py_None;
8651 {
8652 if (temp4)
8653 delete arg4;
8654 }
8655 return resultobj;
8656 fail:
8657 {
8658 if (temp4)
8659 delete arg4;
8660 }
8661 return NULL;
8662 }
8663
8664
8665 static PyObject *_wrap_TextCtrl_Remove(PyObject *self, PyObject *args, PyObject *kwargs) {
8666 PyObject *resultobj;
8667 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8668 long arg2 ;
8669 long arg3 ;
8670 PyObject * obj0 = 0 ;
8671 PyObject * obj1 = 0 ;
8672 PyObject * obj2 = 0 ;
8673 char *kwnames[] = {
8674 (char *) "self",(char *) "from",(char *) "to", NULL
8675 };
8676
8677 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:TextCtrl_Remove",kwnames,&obj0,&obj1,&obj2)) goto fail;
8678 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8679 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8680 arg2 = (long) SWIG_AsLong(obj1);
8681 if (PyErr_Occurred()) SWIG_fail;
8682 arg3 = (long) SWIG_AsLong(obj2);
8683 if (PyErr_Occurred()) SWIG_fail;
8684 {
8685 PyThreadState* __tstate = wxPyBeginAllowThreads();
8686 (arg1)->Remove(arg2,arg3);
8687
8688 wxPyEndAllowThreads(__tstate);
8689 if (PyErr_Occurred()) SWIG_fail;
8690 }
8691 Py_INCREF(Py_None); resultobj = Py_None;
8692 return resultobj;
8693 fail:
8694 return NULL;
8695 }
8696
8697
8698 static PyObject *_wrap_TextCtrl_LoadFile(PyObject *self, PyObject *args, PyObject *kwargs) {
8699 PyObject *resultobj;
8700 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8701 wxString *arg2 = 0 ;
8702 bool result;
8703 bool temp2 = False ;
8704 PyObject * obj0 = 0 ;
8705 PyObject * obj1 = 0 ;
8706 char *kwnames[] = {
8707 (char *) "self",(char *) "file", NULL
8708 };
8709
8710 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextCtrl_LoadFile",kwnames,&obj0,&obj1)) goto fail;
8711 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8712 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8713 {
8714 arg2 = wxString_in_helper(obj1);
8715 if (arg2 == NULL) SWIG_fail;
8716 temp2 = True;
8717 }
8718 {
8719 PyThreadState* __tstate = wxPyBeginAllowThreads();
8720 result = (bool)(arg1)->LoadFile((wxString const &)*arg2);
8721
8722 wxPyEndAllowThreads(__tstate);
8723 if (PyErr_Occurred()) SWIG_fail;
8724 }
8725 {
8726 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
8727 }
8728 {
8729 if (temp2)
8730 delete arg2;
8731 }
8732 return resultobj;
8733 fail:
8734 {
8735 if (temp2)
8736 delete arg2;
8737 }
8738 return NULL;
8739 }
8740
8741
8742 static PyObject *_wrap_TextCtrl_SaveFile(PyObject *self, PyObject *args, PyObject *kwargs) {
8743 PyObject *resultobj;
8744 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8745 wxString const &arg2_defvalue = wxPyEmptyString ;
8746 wxString *arg2 = (wxString *) &arg2_defvalue ;
8747 bool result;
8748 bool temp2 = False ;
8749 PyObject * obj0 = 0 ;
8750 PyObject * obj1 = 0 ;
8751 char *kwnames[] = {
8752 (char *) "self",(char *) "file", NULL
8753 };
8754
8755 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:TextCtrl_SaveFile",kwnames,&obj0,&obj1)) goto fail;
8756 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8757 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8758 if (obj1) {
8759 {
8760 arg2 = wxString_in_helper(obj1);
8761 if (arg2 == NULL) SWIG_fail;
8762 temp2 = True;
8763 }
8764 }
8765 {
8766 PyThreadState* __tstate = wxPyBeginAllowThreads();
8767 result = (bool)(arg1)->SaveFile((wxString const &)*arg2);
8768
8769 wxPyEndAllowThreads(__tstate);
8770 if (PyErr_Occurred()) SWIG_fail;
8771 }
8772 {
8773 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
8774 }
8775 {
8776 if (temp2)
8777 delete arg2;
8778 }
8779 return resultobj;
8780 fail:
8781 {
8782 if (temp2)
8783 delete arg2;
8784 }
8785 return NULL;
8786 }
8787
8788
8789 static PyObject *_wrap_TextCtrl_MarkDirty(PyObject *self, PyObject *args, PyObject *kwargs) {
8790 PyObject *resultobj;
8791 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8792 PyObject * obj0 = 0 ;
8793 char *kwnames[] = {
8794 (char *) "self", NULL
8795 };
8796
8797 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_MarkDirty",kwnames,&obj0)) goto fail;
8798 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8799 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8800 {
8801 PyThreadState* __tstate = wxPyBeginAllowThreads();
8802 (arg1)->MarkDirty();
8803
8804 wxPyEndAllowThreads(__tstate);
8805 if (PyErr_Occurred()) SWIG_fail;
8806 }
8807 Py_INCREF(Py_None); resultobj = Py_None;
8808 return resultobj;
8809 fail:
8810 return NULL;
8811 }
8812
8813
8814 static PyObject *_wrap_TextCtrl_DiscardEdits(PyObject *self, PyObject *args, PyObject *kwargs) {
8815 PyObject *resultobj;
8816 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8817 PyObject * obj0 = 0 ;
8818 char *kwnames[] = {
8819 (char *) "self", NULL
8820 };
8821
8822 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_DiscardEdits",kwnames,&obj0)) goto fail;
8823 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8824 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8825 {
8826 PyThreadState* __tstate = wxPyBeginAllowThreads();
8827 (arg1)->DiscardEdits();
8828
8829 wxPyEndAllowThreads(__tstate);
8830 if (PyErr_Occurred()) SWIG_fail;
8831 }
8832 Py_INCREF(Py_None); resultobj = Py_None;
8833 return resultobj;
8834 fail:
8835 return NULL;
8836 }
8837
8838
8839 static PyObject *_wrap_TextCtrl_SetMaxLength(PyObject *self, PyObject *args, PyObject *kwargs) {
8840 PyObject *resultobj;
8841 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8842 unsigned long arg2 ;
8843 PyObject * obj0 = 0 ;
8844 PyObject * obj1 = 0 ;
8845 char *kwnames[] = {
8846 (char *) "self",(char *) "len", NULL
8847 };
8848
8849 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextCtrl_SetMaxLength",kwnames,&obj0,&obj1)) goto fail;
8850 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8851 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8852 arg2 = (unsigned long) SWIG_AsUnsignedLong(obj1);
8853 if (PyErr_Occurred()) SWIG_fail;
8854 {
8855 PyThreadState* __tstate = wxPyBeginAllowThreads();
8856 (arg1)->SetMaxLength(arg2);
8857
8858 wxPyEndAllowThreads(__tstate);
8859 if (PyErr_Occurred()) SWIG_fail;
8860 }
8861 Py_INCREF(Py_None); resultobj = Py_None;
8862 return resultobj;
8863 fail:
8864 return NULL;
8865 }
8866
8867
8868 static PyObject *_wrap_TextCtrl_WriteText(PyObject *self, PyObject *args, PyObject *kwargs) {
8869 PyObject *resultobj;
8870 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8871 wxString *arg2 = 0 ;
8872 bool temp2 = False ;
8873 PyObject * obj0 = 0 ;
8874 PyObject * obj1 = 0 ;
8875 char *kwnames[] = {
8876 (char *) "self",(char *) "text", NULL
8877 };
8878
8879 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextCtrl_WriteText",kwnames,&obj0,&obj1)) goto fail;
8880 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8881 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8882 {
8883 arg2 = wxString_in_helper(obj1);
8884 if (arg2 == NULL) SWIG_fail;
8885 temp2 = True;
8886 }
8887 {
8888 PyThreadState* __tstate = wxPyBeginAllowThreads();
8889 (arg1)->WriteText((wxString const &)*arg2);
8890
8891 wxPyEndAllowThreads(__tstate);
8892 if (PyErr_Occurred()) SWIG_fail;
8893 }
8894 Py_INCREF(Py_None); resultobj = Py_None;
8895 {
8896 if (temp2)
8897 delete arg2;
8898 }
8899 return resultobj;
8900 fail:
8901 {
8902 if (temp2)
8903 delete arg2;
8904 }
8905 return NULL;
8906 }
8907
8908
8909 static PyObject *_wrap_TextCtrl_AppendText(PyObject *self, PyObject *args, PyObject *kwargs) {
8910 PyObject *resultobj;
8911 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8912 wxString *arg2 = 0 ;
8913 bool temp2 = False ;
8914 PyObject * obj0 = 0 ;
8915 PyObject * obj1 = 0 ;
8916 char *kwnames[] = {
8917 (char *) "self",(char *) "text", NULL
8918 };
8919
8920 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextCtrl_AppendText",kwnames,&obj0,&obj1)) goto fail;
8921 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8922 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8923 {
8924 arg2 = wxString_in_helper(obj1);
8925 if (arg2 == NULL) SWIG_fail;
8926 temp2 = True;
8927 }
8928 {
8929 PyThreadState* __tstate = wxPyBeginAllowThreads();
8930 (arg1)->AppendText((wxString const &)*arg2);
8931
8932 wxPyEndAllowThreads(__tstate);
8933 if (PyErr_Occurred()) SWIG_fail;
8934 }
8935 Py_INCREF(Py_None); resultobj = Py_None;
8936 {
8937 if (temp2)
8938 delete arg2;
8939 }
8940 return resultobj;
8941 fail:
8942 {
8943 if (temp2)
8944 delete arg2;
8945 }
8946 return NULL;
8947 }
8948
8949
8950 static PyObject *_wrap_TextCtrl_EmulateKeyPress(PyObject *self, PyObject *args, PyObject *kwargs) {
8951 PyObject *resultobj;
8952 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8953 wxKeyEvent *arg2 = 0 ;
8954 bool result;
8955 PyObject * obj0 = 0 ;
8956 PyObject * obj1 = 0 ;
8957 char *kwnames[] = {
8958 (char *) "self",(char *) "event", NULL
8959 };
8960
8961 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextCtrl_EmulateKeyPress",kwnames,&obj0,&obj1)) goto fail;
8962 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
8963 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
8964 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxKeyEvent,
8965 SWIG_POINTER_EXCEPTION | 0)) == -1)
8966 SWIG_fail;
8967 if (arg2 == NULL) {
8968 PyErr_SetString(PyExc_TypeError,"null reference");
8969 SWIG_fail;
8970 }
8971 {
8972 PyThreadState* __tstate = wxPyBeginAllowThreads();
8973 result = (bool)(arg1)->EmulateKeyPress((wxKeyEvent const &)*arg2);
8974
8975 wxPyEndAllowThreads(__tstate);
8976 if (PyErr_Occurred()) SWIG_fail;
8977 }
8978 {
8979 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
8980 }
8981 return resultobj;
8982 fail:
8983 return NULL;
8984 }
8985
8986
8987 static PyObject *_wrap_TextCtrl_SetStyle(PyObject *self, PyObject *args, PyObject *kwargs) {
8988 PyObject *resultobj;
8989 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
8990 long arg2 ;
8991 long arg3 ;
8992 wxTextAttr *arg4 = 0 ;
8993 bool result;
8994 PyObject * obj0 = 0 ;
8995 PyObject * obj1 = 0 ;
8996 PyObject * obj2 = 0 ;
8997 PyObject * obj3 = 0 ;
8998 char *kwnames[] = {
8999 (char *) "self",(char *) "start",(char *) "end",(char *) "style", NULL
9000 };
9001
9002 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO:TextCtrl_SetStyle",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
9003 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9004 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9005 arg2 = (long) SWIG_AsLong(obj1);
9006 if (PyErr_Occurred()) SWIG_fail;
9007 arg3 = (long) SWIG_AsLong(obj2);
9008 if (PyErr_Occurred()) SWIG_fail;
9009 if ((SWIG_ConvertPtr(obj3,(void **)(&arg4),SWIGTYPE_p_wxTextAttr,
9010 SWIG_POINTER_EXCEPTION | 0)) == -1)
9011 SWIG_fail;
9012 if (arg4 == NULL) {
9013 PyErr_SetString(PyExc_TypeError,"null reference");
9014 SWIG_fail;
9015 }
9016 {
9017 PyThreadState* __tstate = wxPyBeginAllowThreads();
9018 result = (bool)(arg1)->SetStyle(arg2,arg3,(wxTextAttr const &)*arg4);
9019
9020 wxPyEndAllowThreads(__tstate);
9021 if (PyErr_Occurred()) SWIG_fail;
9022 }
9023 {
9024 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
9025 }
9026 return resultobj;
9027 fail:
9028 return NULL;
9029 }
9030
9031
9032 static PyObject *_wrap_TextCtrl_GetStyle(PyObject *self, PyObject *args, PyObject *kwargs) {
9033 PyObject *resultobj;
9034 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9035 long arg2 ;
9036 wxTextAttr *arg3 = 0 ;
9037 bool result;
9038 PyObject * obj0 = 0 ;
9039 PyObject * obj1 = 0 ;
9040 PyObject * obj2 = 0 ;
9041 char *kwnames[] = {
9042 (char *) "self",(char *) "position",(char *) "style", NULL
9043 };
9044
9045 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:TextCtrl_GetStyle",kwnames,&obj0,&obj1,&obj2)) goto fail;
9046 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9047 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9048 arg2 = (long) SWIG_AsLong(obj1);
9049 if (PyErr_Occurred()) SWIG_fail;
9050 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxTextAttr,
9051 SWIG_POINTER_EXCEPTION | 0)) == -1)
9052 SWIG_fail;
9053 if (arg3 == NULL) {
9054 PyErr_SetString(PyExc_TypeError,"null reference");
9055 SWIG_fail;
9056 }
9057 {
9058 PyThreadState* __tstate = wxPyBeginAllowThreads();
9059 result = (bool)(arg1)->GetStyle(arg2,*arg3);
9060
9061 wxPyEndAllowThreads(__tstate);
9062 if (PyErr_Occurred()) SWIG_fail;
9063 }
9064 {
9065 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
9066 }
9067 return resultobj;
9068 fail:
9069 return NULL;
9070 }
9071
9072
9073 static PyObject *_wrap_TextCtrl_SetDefaultStyle(PyObject *self, PyObject *args, PyObject *kwargs) {
9074 PyObject *resultobj;
9075 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9076 wxTextAttr *arg2 = 0 ;
9077 bool result;
9078 PyObject * obj0 = 0 ;
9079 PyObject * obj1 = 0 ;
9080 char *kwnames[] = {
9081 (char *) "self",(char *) "style", NULL
9082 };
9083
9084 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextCtrl_SetDefaultStyle",kwnames,&obj0,&obj1)) goto fail;
9085 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9086 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9087 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTextAttr,
9088 SWIG_POINTER_EXCEPTION | 0)) == -1)
9089 SWIG_fail;
9090 if (arg2 == NULL) {
9091 PyErr_SetString(PyExc_TypeError,"null reference");
9092 SWIG_fail;
9093 }
9094 {
9095 PyThreadState* __tstate = wxPyBeginAllowThreads();
9096 result = (bool)(arg1)->SetDefaultStyle((wxTextAttr const &)*arg2);
9097
9098 wxPyEndAllowThreads(__tstate);
9099 if (PyErr_Occurred()) SWIG_fail;
9100 }
9101 {
9102 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
9103 }
9104 return resultobj;
9105 fail:
9106 return NULL;
9107 }
9108
9109
9110 static PyObject *_wrap_TextCtrl_GetDefaultStyle(PyObject *self, PyObject *args, PyObject *kwargs) {
9111 PyObject *resultobj;
9112 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9113 wxTextAttr *result;
9114 PyObject * obj0 = 0 ;
9115 char *kwnames[] = {
9116 (char *) "self", NULL
9117 };
9118
9119 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_GetDefaultStyle",kwnames,&obj0)) goto fail;
9120 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9121 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9122 {
9123 PyThreadState* __tstate = wxPyBeginAllowThreads();
9124 {
9125 wxTextAttr const &_result_ref = ((wxTextCtrl const *)arg1)->GetDefaultStyle();
9126 result = (wxTextAttr *) &_result_ref;
9127 }
9128
9129 wxPyEndAllowThreads(__tstate);
9130 if (PyErr_Occurred()) SWIG_fail;
9131 }
9132 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxTextAttr, 0);
9133 return resultobj;
9134 fail:
9135 return NULL;
9136 }
9137
9138
9139 static PyObject *_wrap_TextCtrl_XYToPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
9140 PyObject *resultobj;
9141 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9142 long arg2 ;
9143 long arg3 ;
9144 long result;
9145 PyObject * obj0 = 0 ;
9146 PyObject * obj1 = 0 ;
9147 PyObject * obj2 = 0 ;
9148 char *kwnames[] = {
9149 (char *) "self",(char *) "x",(char *) "y", NULL
9150 };
9151
9152 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:TextCtrl_XYToPosition",kwnames,&obj0,&obj1,&obj2)) goto fail;
9153 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9154 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9155 arg2 = (long) SWIG_AsLong(obj1);
9156 if (PyErr_Occurred()) SWIG_fail;
9157 arg3 = (long) SWIG_AsLong(obj2);
9158 if (PyErr_Occurred()) SWIG_fail;
9159 {
9160 PyThreadState* __tstate = wxPyBeginAllowThreads();
9161 result = (long)((wxTextCtrl const *)arg1)->XYToPosition(arg2,arg3);
9162
9163 wxPyEndAllowThreads(__tstate);
9164 if (PyErr_Occurred()) SWIG_fail;
9165 }
9166 resultobj = SWIG_FromLong((long)result);
9167 return resultobj;
9168 fail:
9169 return NULL;
9170 }
9171
9172
9173 static PyObject *_wrap_TextCtrl_PositionToXY(PyObject *self, PyObject *args, PyObject *kwargs) {
9174 PyObject *resultobj;
9175 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9176 long arg2 ;
9177 long *arg3 = (long *) 0 ;
9178 long *arg4 = (long *) 0 ;
9179 long temp3 ;
9180 long temp4 ;
9181 PyObject * obj0 = 0 ;
9182 PyObject * obj1 = 0 ;
9183 char *kwnames[] = {
9184 (char *) "self",(char *) "pos", NULL
9185 };
9186
9187 arg3 = &temp3;
9188 arg4 = &temp4;
9189 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextCtrl_PositionToXY",kwnames,&obj0,&obj1)) goto fail;
9190 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9191 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9192 arg2 = (long) SWIG_AsLong(obj1);
9193 if (PyErr_Occurred()) SWIG_fail;
9194 {
9195 PyThreadState* __tstate = wxPyBeginAllowThreads();
9196 ((wxTextCtrl const *)arg1)->PositionToXY(arg2,arg3,arg4);
9197
9198 wxPyEndAllowThreads(__tstate);
9199 if (PyErr_Occurred()) SWIG_fail;
9200 }
9201 Py_INCREF(Py_None); resultobj = Py_None;
9202 {
9203 PyObject *o = PyInt_FromLong((long) (*arg3));
9204 resultobj = t_output_helper(resultobj,o);
9205 }
9206 {
9207 PyObject *o = PyInt_FromLong((long) (*arg4));
9208 resultobj = t_output_helper(resultobj,o);
9209 }
9210 return resultobj;
9211 fail:
9212 return NULL;
9213 }
9214
9215
9216 static PyObject *_wrap_TextCtrl_ShowPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
9217 PyObject *resultobj;
9218 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9219 long arg2 ;
9220 PyObject * obj0 = 0 ;
9221 PyObject * obj1 = 0 ;
9222 char *kwnames[] = {
9223 (char *) "self",(char *) "pos", NULL
9224 };
9225
9226 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextCtrl_ShowPosition",kwnames,&obj0,&obj1)) goto fail;
9227 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9228 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9229 arg2 = (long) SWIG_AsLong(obj1);
9230 if (PyErr_Occurred()) SWIG_fail;
9231 {
9232 PyThreadState* __tstate = wxPyBeginAllowThreads();
9233 (arg1)->ShowPosition(arg2);
9234
9235 wxPyEndAllowThreads(__tstate);
9236 if (PyErr_Occurred()) SWIG_fail;
9237 }
9238 Py_INCREF(Py_None); resultobj = Py_None;
9239 return resultobj;
9240 fail:
9241 return NULL;
9242 }
9243
9244
9245 static PyObject *_wrap_TextCtrl_HitTest(PyObject *self, PyObject *args, PyObject *kwargs) {
9246 PyObject *resultobj;
9247 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9248 wxPoint *arg2 = 0 ;
9249 long *arg3 = (long *) 0 ;
9250 long *arg4 = (long *) 0 ;
9251 int result;
9252 wxPoint temp2 ;
9253 long temp3 ;
9254 long temp4 ;
9255 PyObject * obj0 = 0 ;
9256 PyObject * obj1 = 0 ;
9257 char *kwnames[] = {
9258 (char *) "self",(char *) "pt", NULL
9259 };
9260
9261 arg3 = &temp3;
9262 arg4 = &temp4;
9263 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextCtrl_HitTest",kwnames,&obj0,&obj1)) goto fail;
9264 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9265 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9266 {
9267 arg2 = &temp2;
9268 if ( ! wxPoint_helper(obj1, &arg2)) SWIG_fail;
9269 }
9270 {
9271 PyThreadState* __tstate = wxPyBeginAllowThreads();
9272 result = (int)((wxTextCtrl const *)arg1)->HitTest((wxPoint const &)*arg2,arg3,arg4);
9273
9274 wxPyEndAllowThreads(__tstate);
9275 if (PyErr_Occurred()) SWIG_fail;
9276 }
9277 resultobj = SWIG_FromInt((int)result);
9278 {
9279 PyObject *o = PyInt_FromLong((long) (*arg3));
9280 resultobj = t_output_helper(resultobj,o);
9281 }
9282 {
9283 PyObject *o = PyInt_FromLong((long) (*arg4));
9284 resultobj = t_output_helper(resultobj,o);
9285 }
9286 return resultobj;
9287 fail:
9288 return NULL;
9289 }
9290
9291
9292 static PyObject *_wrap_TextCtrl_Copy(PyObject *self, PyObject *args, PyObject *kwargs) {
9293 PyObject *resultobj;
9294 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9295 PyObject * obj0 = 0 ;
9296 char *kwnames[] = {
9297 (char *) "self", NULL
9298 };
9299
9300 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_Copy",kwnames,&obj0)) goto fail;
9301 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9302 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9303 {
9304 PyThreadState* __tstate = wxPyBeginAllowThreads();
9305 (arg1)->Copy();
9306
9307 wxPyEndAllowThreads(__tstate);
9308 if (PyErr_Occurred()) SWIG_fail;
9309 }
9310 Py_INCREF(Py_None); resultobj = Py_None;
9311 return resultobj;
9312 fail:
9313 return NULL;
9314 }
9315
9316
9317 static PyObject *_wrap_TextCtrl_Cut(PyObject *self, PyObject *args, PyObject *kwargs) {
9318 PyObject *resultobj;
9319 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9320 PyObject * obj0 = 0 ;
9321 char *kwnames[] = {
9322 (char *) "self", NULL
9323 };
9324
9325 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_Cut",kwnames,&obj0)) goto fail;
9326 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9327 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9328 {
9329 PyThreadState* __tstate = wxPyBeginAllowThreads();
9330 (arg1)->Cut();
9331
9332 wxPyEndAllowThreads(__tstate);
9333 if (PyErr_Occurred()) SWIG_fail;
9334 }
9335 Py_INCREF(Py_None); resultobj = Py_None;
9336 return resultobj;
9337 fail:
9338 return NULL;
9339 }
9340
9341
9342 static PyObject *_wrap_TextCtrl_Paste(PyObject *self, PyObject *args, PyObject *kwargs) {
9343 PyObject *resultobj;
9344 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9345 PyObject * obj0 = 0 ;
9346 char *kwnames[] = {
9347 (char *) "self", NULL
9348 };
9349
9350 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_Paste",kwnames,&obj0)) goto fail;
9351 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9352 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9353 {
9354 PyThreadState* __tstate = wxPyBeginAllowThreads();
9355 (arg1)->Paste();
9356
9357 wxPyEndAllowThreads(__tstate);
9358 if (PyErr_Occurred()) SWIG_fail;
9359 }
9360 Py_INCREF(Py_None); resultobj = Py_None;
9361 return resultobj;
9362 fail:
9363 return NULL;
9364 }
9365
9366
9367 static PyObject *_wrap_TextCtrl_CanCopy(PyObject *self, PyObject *args, PyObject *kwargs) {
9368 PyObject *resultobj;
9369 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9370 bool result;
9371 PyObject * obj0 = 0 ;
9372 char *kwnames[] = {
9373 (char *) "self", NULL
9374 };
9375
9376 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_CanCopy",kwnames,&obj0)) goto fail;
9377 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9378 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9379 {
9380 PyThreadState* __tstate = wxPyBeginAllowThreads();
9381 result = (bool)((wxTextCtrl const *)arg1)->CanCopy();
9382
9383 wxPyEndAllowThreads(__tstate);
9384 if (PyErr_Occurred()) SWIG_fail;
9385 }
9386 {
9387 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
9388 }
9389 return resultobj;
9390 fail:
9391 return NULL;
9392 }
9393
9394
9395 static PyObject *_wrap_TextCtrl_CanCut(PyObject *self, PyObject *args, PyObject *kwargs) {
9396 PyObject *resultobj;
9397 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9398 bool result;
9399 PyObject * obj0 = 0 ;
9400 char *kwnames[] = {
9401 (char *) "self", NULL
9402 };
9403
9404 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_CanCut",kwnames,&obj0)) goto fail;
9405 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9406 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9407 {
9408 PyThreadState* __tstate = wxPyBeginAllowThreads();
9409 result = (bool)((wxTextCtrl const *)arg1)->CanCut();
9410
9411 wxPyEndAllowThreads(__tstate);
9412 if (PyErr_Occurred()) SWIG_fail;
9413 }
9414 {
9415 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
9416 }
9417 return resultobj;
9418 fail:
9419 return NULL;
9420 }
9421
9422
9423 static PyObject *_wrap_TextCtrl_CanPaste(PyObject *self, PyObject *args, PyObject *kwargs) {
9424 PyObject *resultobj;
9425 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9426 bool result;
9427 PyObject * obj0 = 0 ;
9428 char *kwnames[] = {
9429 (char *) "self", NULL
9430 };
9431
9432 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_CanPaste",kwnames,&obj0)) goto fail;
9433 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9434 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9435 {
9436 PyThreadState* __tstate = wxPyBeginAllowThreads();
9437 result = (bool)((wxTextCtrl const *)arg1)->CanPaste();
9438
9439 wxPyEndAllowThreads(__tstate);
9440 if (PyErr_Occurred()) SWIG_fail;
9441 }
9442 {
9443 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
9444 }
9445 return resultobj;
9446 fail:
9447 return NULL;
9448 }
9449
9450
9451 static PyObject *_wrap_TextCtrl_Undo(PyObject *self, PyObject *args, PyObject *kwargs) {
9452 PyObject *resultobj;
9453 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9454 PyObject * obj0 = 0 ;
9455 char *kwnames[] = {
9456 (char *) "self", NULL
9457 };
9458
9459 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_Undo",kwnames,&obj0)) goto fail;
9460 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9461 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9462 {
9463 PyThreadState* __tstate = wxPyBeginAllowThreads();
9464 (arg1)->Undo();
9465
9466 wxPyEndAllowThreads(__tstate);
9467 if (PyErr_Occurred()) SWIG_fail;
9468 }
9469 Py_INCREF(Py_None); resultobj = Py_None;
9470 return resultobj;
9471 fail:
9472 return NULL;
9473 }
9474
9475
9476 static PyObject *_wrap_TextCtrl_Redo(PyObject *self, PyObject *args, PyObject *kwargs) {
9477 PyObject *resultobj;
9478 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9479 PyObject * obj0 = 0 ;
9480 char *kwnames[] = {
9481 (char *) "self", NULL
9482 };
9483
9484 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_Redo",kwnames,&obj0)) goto fail;
9485 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9486 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9487 {
9488 PyThreadState* __tstate = wxPyBeginAllowThreads();
9489 (arg1)->Redo();
9490
9491 wxPyEndAllowThreads(__tstate);
9492 if (PyErr_Occurred()) SWIG_fail;
9493 }
9494 Py_INCREF(Py_None); resultobj = Py_None;
9495 return resultobj;
9496 fail:
9497 return NULL;
9498 }
9499
9500
9501 static PyObject *_wrap_TextCtrl_CanUndo(PyObject *self, PyObject *args, PyObject *kwargs) {
9502 PyObject *resultobj;
9503 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9504 bool result;
9505 PyObject * obj0 = 0 ;
9506 char *kwnames[] = {
9507 (char *) "self", NULL
9508 };
9509
9510 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_CanUndo",kwnames,&obj0)) goto fail;
9511 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9512 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9513 {
9514 PyThreadState* __tstate = wxPyBeginAllowThreads();
9515 result = (bool)((wxTextCtrl const *)arg1)->CanUndo();
9516
9517 wxPyEndAllowThreads(__tstate);
9518 if (PyErr_Occurred()) SWIG_fail;
9519 }
9520 {
9521 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
9522 }
9523 return resultobj;
9524 fail:
9525 return NULL;
9526 }
9527
9528
9529 static PyObject *_wrap_TextCtrl_CanRedo(PyObject *self, PyObject *args, PyObject *kwargs) {
9530 PyObject *resultobj;
9531 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9532 bool result;
9533 PyObject * obj0 = 0 ;
9534 char *kwnames[] = {
9535 (char *) "self", NULL
9536 };
9537
9538 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_CanRedo",kwnames,&obj0)) goto fail;
9539 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9540 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9541 {
9542 PyThreadState* __tstate = wxPyBeginAllowThreads();
9543 result = (bool)((wxTextCtrl const *)arg1)->CanRedo();
9544
9545 wxPyEndAllowThreads(__tstate);
9546 if (PyErr_Occurred()) SWIG_fail;
9547 }
9548 {
9549 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
9550 }
9551 return resultobj;
9552 fail:
9553 return NULL;
9554 }
9555
9556
9557 static PyObject *_wrap_TextCtrl_SetInsertionPoint(PyObject *self, PyObject *args, PyObject *kwargs) {
9558 PyObject *resultobj;
9559 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9560 long arg2 ;
9561 PyObject * obj0 = 0 ;
9562 PyObject * obj1 = 0 ;
9563 char *kwnames[] = {
9564 (char *) "self",(char *) "pos", NULL
9565 };
9566
9567 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextCtrl_SetInsertionPoint",kwnames,&obj0,&obj1)) goto fail;
9568 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9569 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9570 arg2 = (long) SWIG_AsLong(obj1);
9571 if (PyErr_Occurred()) SWIG_fail;
9572 {
9573 PyThreadState* __tstate = wxPyBeginAllowThreads();
9574 (arg1)->SetInsertionPoint(arg2);
9575
9576 wxPyEndAllowThreads(__tstate);
9577 if (PyErr_Occurred()) SWIG_fail;
9578 }
9579 Py_INCREF(Py_None); resultobj = Py_None;
9580 return resultobj;
9581 fail:
9582 return NULL;
9583 }
9584
9585
9586 static PyObject *_wrap_TextCtrl_SetInsertionPointEnd(PyObject *self, PyObject *args, PyObject *kwargs) {
9587 PyObject *resultobj;
9588 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9589 PyObject * obj0 = 0 ;
9590 char *kwnames[] = {
9591 (char *) "self", NULL
9592 };
9593
9594 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_SetInsertionPointEnd",kwnames,&obj0)) goto fail;
9595 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9596 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9597 {
9598 PyThreadState* __tstate = wxPyBeginAllowThreads();
9599 (arg1)->SetInsertionPointEnd();
9600
9601 wxPyEndAllowThreads(__tstate);
9602 if (PyErr_Occurred()) SWIG_fail;
9603 }
9604 Py_INCREF(Py_None); resultobj = Py_None;
9605 return resultobj;
9606 fail:
9607 return NULL;
9608 }
9609
9610
9611 static PyObject *_wrap_TextCtrl_GetInsertionPoint(PyObject *self, PyObject *args, PyObject *kwargs) {
9612 PyObject *resultobj;
9613 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9614 long result;
9615 PyObject * obj0 = 0 ;
9616 char *kwnames[] = {
9617 (char *) "self", NULL
9618 };
9619
9620 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_GetInsertionPoint",kwnames,&obj0)) goto fail;
9621 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9622 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9623 {
9624 PyThreadState* __tstate = wxPyBeginAllowThreads();
9625 result = (long)((wxTextCtrl const *)arg1)->GetInsertionPoint();
9626
9627 wxPyEndAllowThreads(__tstate);
9628 if (PyErr_Occurred()) SWIG_fail;
9629 }
9630 resultobj = SWIG_FromLong((long)result);
9631 return resultobj;
9632 fail:
9633 return NULL;
9634 }
9635
9636
9637 static PyObject *_wrap_TextCtrl_GetLastPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
9638 PyObject *resultobj;
9639 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9640 long result;
9641 PyObject * obj0 = 0 ;
9642 char *kwnames[] = {
9643 (char *) "self", NULL
9644 };
9645
9646 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_GetLastPosition",kwnames,&obj0)) goto fail;
9647 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9648 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9649 {
9650 PyThreadState* __tstate = wxPyBeginAllowThreads();
9651 result = (long)((wxTextCtrl const *)arg1)->GetLastPosition();
9652
9653 wxPyEndAllowThreads(__tstate);
9654 if (PyErr_Occurred()) SWIG_fail;
9655 }
9656 resultobj = SWIG_FromLong((long)result);
9657 return resultobj;
9658 fail:
9659 return NULL;
9660 }
9661
9662
9663 static PyObject *_wrap_TextCtrl_SetSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
9664 PyObject *resultobj;
9665 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9666 long arg2 ;
9667 long arg3 ;
9668 PyObject * obj0 = 0 ;
9669 PyObject * obj1 = 0 ;
9670 PyObject * obj2 = 0 ;
9671 char *kwnames[] = {
9672 (char *) "self",(char *) "from",(char *) "to", NULL
9673 };
9674
9675 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:TextCtrl_SetSelection",kwnames,&obj0,&obj1,&obj2)) goto fail;
9676 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9677 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9678 arg2 = (long) SWIG_AsLong(obj1);
9679 if (PyErr_Occurred()) SWIG_fail;
9680 arg3 = (long) SWIG_AsLong(obj2);
9681 if (PyErr_Occurred()) SWIG_fail;
9682 {
9683 PyThreadState* __tstate = wxPyBeginAllowThreads();
9684 (arg1)->SetSelection(arg2,arg3);
9685
9686 wxPyEndAllowThreads(__tstate);
9687 if (PyErr_Occurred()) SWIG_fail;
9688 }
9689 Py_INCREF(Py_None); resultobj = Py_None;
9690 return resultobj;
9691 fail:
9692 return NULL;
9693 }
9694
9695
9696 static PyObject *_wrap_TextCtrl_SelectAll(PyObject *self, PyObject *args, PyObject *kwargs) {
9697 PyObject *resultobj;
9698 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9699 PyObject * obj0 = 0 ;
9700 char *kwnames[] = {
9701 (char *) "self", NULL
9702 };
9703
9704 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextCtrl_SelectAll",kwnames,&obj0)) goto fail;
9705 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9706 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9707 {
9708 PyThreadState* __tstate = wxPyBeginAllowThreads();
9709 (arg1)->SelectAll();
9710
9711 wxPyEndAllowThreads(__tstate);
9712 if (PyErr_Occurred()) SWIG_fail;
9713 }
9714 Py_INCREF(Py_None); resultobj = Py_None;
9715 return resultobj;
9716 fail:
9717 return NULL;
9718 }
9719
9720
9721 static PyObject *_wrap_TextCtrl_SetEditable(PyObject *self, PyObject *args, PyObject *kwargs) {
9722 PyObject *resultobj;
9723 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9724 bool arg2 ;
9725 PyObject * obj0 = 0 ;
9726 PyObject * obj1 = 0 ;
9727 char *kwnames[] = {
9728 (char *) "self",(char *) "editable", NULL
9729 };
9730
9731 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextCtrl_SetEditable",kwnames,&obj0,&obj1)) goto fail;
9732 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9733 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9734 arg2 = (bool) SWIG_AsBool(obj1);
9735 if (PyErr_Occurred()) SWIG_fail;
9736 {
9737 PyThreadState* __tstate = wxPyBeginAllowThreads();
9738 (arg1)->SetEditable(arg2);
9739
9740 wxPyEndAllowThreads(__tstate);
9741 if (PyErr_Occurred()) SWIG_fail;
9742 }
9743 Py_INCREF(Py_None); resultobj = Py_None;
9744 return resultobj;
9745 fail:
9746 return NULL;
9747 }
9748
9749
9750 static PyObject *_wrap_TextCtrl_write(PyObject *self, PyObject *args, PyObject *kwargs) {
9751 PyObject *resultobj;
9752 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9753 wxString *arg2 = 0 ;
9754 bool temp2 = False ;
9755 PyObject * obj0 = 0 ;
9756 PyObject * obj1 = 0 ;
9757 char *kwnames[] = {
9758 (char *) "self",(char *) "text", NULL
9759 };
9760
9761 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TextCtrl_write",kwnames,&obj0,&obj1)) goto fail;
9762 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9763 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9764 {
9765 arg2 = wxString_in_helper(obj1);
9766 if (arg2 == NULL) SWIG_fail;
9767 temp2 = True;
9768 }
9769 {
9770 PyThreadState* __tstate = wxPyBeginAllowThreads();
9771 wxTextCtrl_write(arg1,(wxString const &)*arg2);
9772
9773 wxPyEndAllowThreads(__tstate);
9774 if (PyErr_Occurred()) SWIG_fail;
9775 }
9776 Py_INCREF(Py_None); resultobj = Py_None;
9777 {
9778 if (temp2)
9779 delete arg2;
9780 }
9781 return resultobj;
9782 fail:
9783 {
9784 if (temp2)
9785 delete arg2;
9786 }
9787 return NULL;
9788 }
9789
9790
9791 static PyObject *_wrap_TextCtrl_GetString(PyObject *self, PyObject *args, PyObject *kwargs) {
9792 PyObject *resultobj;
9793 wxTextCtrl *arg1 = (wxTextCtrl *) 0 ;
9794 long arg2 ;
9795 long arg3 ;
9796 wxString result;
9797 PyObject * obj0 = 0 ;
9798 PyObject * obj1 = 0 ;
9799 PyObject * obj2 = 0 ;
9800 char *kwnames[] = {
9801 (char *) "self",(char *) "from",(char *) "to", NULL
9802 };
9803
9804 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:TextCtrl_GetString",kwnames,&obj0,&obj1,&obj2)) goto fail;
9805 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextCtrl,
9806 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9807 arg2 = (long) SWIG_AsLong(obj1);
9808 if (PyErr_Occurred()) SWIG_fail;
9809 arg3 = (long) SWIG_AsLong(obj2);
9810 if (PyErr_Occurred()) SWIG_fail;
9811 {
9812 PyThreadState* __tstate = wxPyBeginAllowThreads();
9813 result = wxTextCtrl_GetString(arg1,arg2,arg3);
9814
9815 wxPyEndAllowThreads(__tstate);
9816 if (PyErr_Occurred()) SWIG_fail;
9817 }
9818 {
9819 #if wxUSE_UNICODE
9820 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
9821 #else
9822 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
9823 #endif
9824 }
9825 return resultobj;
9826 fail:
9827 return NULL;
9828 }
9829
9830
9831 static PyObject *_wrap_TextCtrl_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
9832 PyObject *resultobj;
9833 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
9834 wxVisualAttributes result;
9835 PyObject * obj0 = 0 ;
9836 char *kwnames[] = {
9837 (char *) "variant", NULL
9838 };
9839
9840 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:TextCtrl_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
9841 if (obj0) {
9842 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
9843 if (PyErr_Occurred()) SWIG_fail;
9844 }
9845 {
9846 if (!wxPyCheckForApp()) SWIG_fail;
9847 PyThreadState* __tstate = wxPyBeginAllowThreads();
9848 result = wxTextCtrl::GetClassDefaultAttributes((wxWindowVariant )arg1);
9849
9850 wxPyEndAllowThreads(__tstate);
9851 if (PyErr_Occurred()) SWIG_fail;
9852 }
9853 {
9854 wxVisualAttributes * resultptr;
9855 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
9856 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
9857 }
9858 return resultobj;
9859 fail:
9860 return NULL;
9861 }
9862
9863
9864 static PyObject * TextCtrl_swigregister(PyObject *self, PyObject *args) {
9865 PyObject *obj;
9866 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
9867 SWIG_TypeClientData(SWIGTYPE_p_wxTextCtrl, obj);
9868 Py_INCREF(obj);
9869 return Py_BuildValue((char *)"");
9870 }
9871 static PyObject *_wrap_new_TextUrlEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
9872 PyObject *resultobj;
9873 int arg1 ;
9874 wxMouseEvent *arg2 = 0 ;
9875 long arg3 ;
9876 long arg4 ;
9877 wxTextUrlEvent *result;
9878 PyObject * obj0 = 0 ;
9879 PyObject * obj1 = 0 ;
9880 PyObject * obj2 = 0 ;
9881 PyObject * obj3 = 0 ;
9882 char *kwnames[] = {
9883 (char *) "winid",(char *) "evtMouse",(char *) "start",(char *) "end", NULL
9884 };
9885
9886 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO:new_TextUrlEvent",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
9887 arg1 = (int) SWIG_AsInt(obj0);
9888 if (PyErr_Occurred()) SWIG_fail;
9889 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxMouseEvent,
9890 SWIG_POINTER_EXCEPTION | 0)) == -1)
9891 SWIG_fail;
9892 if (arg2 == NULL) {
9893 PyErr_SetString(PyExc_TypeError,"null reference");
9894 SWIG_fail;
9895 }
9896 arg3 = (long) SWIG_AsLong(obj2);
9897 if (PyErr_Occurred()) SWIG_fail;
9898 arg4 = (long) SWIG_AsLong(obj3);
9899 if (PyErr_Occurred()) SWIG_fail;
9900 {
9901 PyThreadState* __tstate = wxPyBeginAllowThreads();
9902 result = (wxTextUrlEvent *)new wxTextUrlEvent(arg1,(wxMouseEvent const &)*arg2,arg3,arg4);
9903
9904 wxPyEndAllowThreads(__tstate);
9905 if (PyErr_Occurred()) SWIG_fail;
9906 }
9907 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxTextUrlEvent, 1);
9908 return resultobj;
9909 fail:
9910 return NULL;
9911 }
9912
9913
9914 static PyObject *_wrap_TextUrlEvent_GetMouseEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
9915 PyObject *resultobj;
9916 wxTextUrlEvent *arg1 = (wxTextUrlEvent *) 0 ;
9917 wxMouseEvent *result;
9918 PyObject * obj0 = 0 ;
9919 char *kwnames[] = {
9920 (char *) "self", NULL
9921 };
9922
9923 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextUrlEvent_GetMouseEvent",kwnames,&obj0)) goto fail;
9924 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextUrlEvent,
9925 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9926 {
9927 PyThreadState* __tstate = wxPyBeginAllowThreads();
9928 {
9929 wxMouseEvent const &_result_ref = (arg1)->GetMouseEvent();
9930 result = (wxMouseEvent *) &_result_ref;
9931 }
9932
9933 wxPyEndAllowThreads(__tstate);
9934 if (PyErr_Occurred()) SWIG_fail;
9935 }
9936 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxMouseEvent, 0);
9937 return resultobj;
9938 fail:
9939 return NULL;
9940 }
9941
9942
9943 static PyObject *_wrap_TextUrlEvent_GetURLStart(PyObject *self, PyObject *args, PyObject *kwargs) {
9944 PyObject *resultobj;
9945 wxTextUrlEvent *arg1 = (wxTextUrlEvent *) 0 ;
9946 long result;
9947 PyObject * obj0 = 0 ;
9948 char *kwnames[] = {
9949 (char *) "self", NULL
9950 };
9951
9952 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextUrlEvent_GetURLStart",kwnames,&obj0)) goto fail;
9953 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextUrlEvent,
9954 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9955 {
9956 PyThreadState* __tstate = wxPyBeginAllowThreads();
9957 result = (long)((wxTextUrlEvent const *)arg1)->GetURLStart();
9958
9959 wxPyEndAllowThreads(__tstate);
9960 if (PyErr_Occurred()) SWIG_fail;
9961 }
9962 resultobj = SWIG_FromLong((long)result);
9963 return resultobj;
9964 fail:
9965 return NULL;
9966 }
9967
9968
9969 static PyObject *_wrap_TextUrlEvent_GetURLEnd(PyObject *self, PyObject *args, PyObject *kwargs) {
9970 PyObject *resultobj;
9971 wxTextUrlEvent *arg1 = (wxTextUrlEvent *) 0 ;
9972 long result;
9973 PyObject * obj0 = 0 ;
9974 char *kwnames[] = {
9975 (char *) "self", NULL
9976 };
9977
9978 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TextUrlEvent_GetURLEnd",kwnames,&obj0)) goto fail;
9979 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTextUrlEvent,
9980 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
9981 {
9982 PyThreadState* __tstate = wxPyBeginAllowThreads();
9983 result = (long)((wxTextUrlEvent const *)arg1)->GetURLEnd();
9984
9985 wxPyEndAllowThreads(__tstate);
9986 if (PyErr_Occurred()) SWIG_fail;
9987 }
9988 resultobj = SWIG_FromLong((long)result);
9989 return resultobj;
9990 fail:
9991 return NULL;
9992 }
9993
9994
9995 static PyObject * TextUrlEvent_swigregister(PyObject *self, PyObject *args) {
9996 PyObject *obj;
9997 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
9998 SWIG_TypeClientData(SWIGTYPE_p_wxTextUrlEvent, obj);
9999 Py_INCREF(obj);
10000 return Py_BuildValue((char *)"");
10001 }
10002 static int _wrap_ScrollBarNameStr_set(PyObject *_val) {
10003 PyErr_SetString(PyExc_TypeError,"Variable ScrollBarNameStr is read-only.");
10004 return 1;
10005 }
10006
10007
10008 static PyObject *_wrap_ScrollBarNameStr_get() {
10009 PyObject *pyobj;
10010
10011 {
10012 #if wxUSE_UNICODE
10013 pyobj = PyUnicode_FromWideChar((&wxPyScrollBarNameStr)->c_str(), (&wxPyScrollBarNameStr)->Len());
10014 #else
10015 pyobj = PyString_FromStringAndSize((&wxPyScrollBarNameStr)->c_str(), (&wxPyScrollBarNameStr)->Len());
10016 #endif
10017 }
10018 return pyobj;
10019 }
10020
10021
10022 static PyObject *_wrap_new_ScrollBar(PyObject *self, PyObject *args, PyObject *kwargs) {
10023 PyObject *resultobj;
10024 wxWindow *arg1 = (wxWindow *) 0 ;
10025 int arg2 = (int) -1 ;
10026 wxPoint const &arg3_defvalue = wxDefaultPosition ;
10027 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
10028 wxSize const &arg4_defvalue = wxDefaultSize ;
10029 wxSize *arg4 = (wxSize *) &arg4_defvalue ;
10030 long arg5 = (long) wxSB_HORIZONTAL ;
10031 wxValidator const &arg6_defvalue = wxDefaultValidator ;
10032 wxValidator *arg6 = (wxValidator *) &arg6_defvalue ;
10033 wxString const &arg7_defvalue = wxPyScrollBarNameStr ;
10034 wxString *arg7 = (wxString *) &arg7_defvalue ;
10035 wxScrollBar *result;
10036 wxPoint temp3 ;
10037 wxSize temp4 ;
10038 bool temp7 = False ;
10039 PyObject * obj0 = 0 ;
10040 PyObject * obj1 = 0 ;
10041 PyObject * obj2 = 0 ;
10042 PyObject * obj3 = 0 ;
10043 PyObject * obj4 = 0 ;
10044 PyObject * obj5 = 0 ;
10045 PyObject * obj6 = 0 ;
10046 char *kwnames[] = {
10047 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
10048 };
10049
10050 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOO:new_ScrollBar",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
10051 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
10052 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10053 if (obj1) {
10054 arg2 = (int) SWIG_AsInt(obj1);
10055 if (PyErr_Occurred()) SWIG_fail;
10056 }
10057 if (obj2) {
10058 {
10059 arg3 = &temp3;
10060 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
10061 }
10062 }
10063 if (obj3) {
10064 {
10065 arg4 = &temp4;
10066 if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
10067 }
10068 }
10069 if (obj4) {
10070 arg5 = (long) SWIG_AsLong(obj4);
10071 if (PyErr_Occurred()) SWIG_fail;
10072 }
10073 if (obj5) {
10074 if ((SWIG_ConvertPtr(obj5,(void **)(&arg6),SWIGTYPE_p_wxValidator,
10075 SWIG_POINTER_EXCEPTION | 0)) == -1)
10076 SWIG_fail;
10077 if (arg6 == NULL) {
10078 PyErr_SetString(PyExc_TypeError,"null reference");
10079 SWIG_fail;
10080 }
10081 }
10082 if (obj6) {
10083 {
10084 arg7 = wxString_in_helper(obj6);
10085 if (arg7 == NULL) SWIG_fail;
10086 temp7 = True;
10087 }
10088 }
10089 {
10090 if (!wxPyCheckForApp()) SWIG_fail;
10091 PyThreadState* __tstate = wxPyBeginAllowThreads();
10092 result = (wxScrollBar *)new wxScrollBar(arg1,arg2,(wxPoint const &)*arg3,(wxSize const &)*arg4,arg5,(wxValidator const &)*arg6,(wxString const &)*arg7);
10093
10094 wxPyEndAllowThreads(__tstate);
10095 if (PyErr_Occurred()) SWIG_fail;
10096 }
10097 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxScrollBar, 1);
10098 {
10099 if (temp7)
10100 delete arg7;
10101 }
10102 return resultobj;
10103 fail:
10104 {
10105 if (temp7)
10106 delete arg7;
10107 }
10108 return NULL;
10109 }
10110
10111
10112 static PyObject *_wrap_new_PreScrollBar(PyObject *self, PyObject *args, PyObject *kwargs) {
10113 PyObject *resultobj;
10114 wxScrollBar *result;
10115 char *kwnames[] = {
10116 NULL
10117 };
10118
10119 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreScrollBar",kwnames)) goto fail;
10120 {
10121 if (!wxPyCheckForApp()) SWIG_fail;
10122 PyThreadState* __tstate = wxPyBeginAllowThreads();
10123 result = (wxScrollBar *)new wxScrollBar();
10124
10125 wxPyEndAllowThreads(__tstate);
10126 if (PyErr_Occurred()) SWIG_fail;
10127 }
10128 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxScrollBar, 1);
10129 return resultobj;
10130 fail:
10131 return NULL;
10132 }
10133
10134
10135 static PyObject *_wrap_ScrollBar_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
10136 PyObject *resultobj;
10137 wxScrollBar *arg1 = (wxScrollBar *) 0 ;
10138 wxWindow *arg2 = (wxWindow *) 0 ;
10139 int arg3 = (int) -1 ;
10140 wxPoint const &arg4_defvalue = wxDefaultPosition ;
10141 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
10142 wxSize const &arg5_defvalue = wxDefaultSize ;
10143 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
10144 long arg6 = (long) wxSB_HORIZONTAL ;
10145 wxValidator const &arg7_defvalue = wxDefaultValidator ;
10146 wxValidator *arg7 = (wxValidator *) &arg7_defvalue ;
10147 wxString const &arg8_defvalue = wxPyScrollBarNameStr ;
10148 wxString *arg8 = (wxString *) &arg8_defvalue ;
10149 bool result;
10150 wxPoint temp4 ;
10151 wxSize temp5 ;
10152 bool temp8 = False ;
10153 PyObject * obj0 = 0 ;
10154 PyObject * obj1 = 0 ;
10155 PyObject * obj2 = 0 ;
10156 PyObject * obj3 = 0 ;
10157 PyObject * obj4 = 0 ;
10158 PyObject * obj5 = 0 ;
10159 PyObject * obj6 = 0 ;
10160 PyObject * obj7 = 0 ;
10161 char *kwnames[] = {
10162 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
10163 };
10164
10165 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOO:ScrollBar_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
10166 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxScrollBar,
10167 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10168 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
10169 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10170 if (obj2) {
10171 arg3 = (int) SWIG_AsInt(obj2);
10172 if (PyErr_Occurred()) SWIG_fail;
10173 }
10174 if (obj3) {
10175 {
10176 arg4 = &temp4;
10177 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
10178 }
10179 }
10180 if (obj4) {
10181 {
10182 arg5 = &temp5;
10183 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
10184 }
10185 }
10186 if (obj5) {
10187 arg6 = (long) SWIG_AsLong(obj5);
10188 if (PyErr_Occurred()) SWIG_fail;
10189 }
10190 if (obj6) {
10191 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxValidator,
10192 SWIG_POINTER_EXCEPTION | 0)) == -1)
10193 SWIG_fail;
10194 if (arg7 == NULL) {
10195 PyErr_SetString(PyExc_TypeError,"null reference");
10196 SWIG_fail;
10197 }
10198 }
10199 if (obj7) {
10200 {
10201 arg8 = wxString_in_helper(obj7);
10202 if (arg8 == NULL) SWIG_fail;
10203 temp8 = True;
10204 }
10205 }
10206 {
10207 PyThreadState* __tstate = wxPyBeginAllowThreads();
10208 result = (bool)(arg1)->Create(arg2,arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxValidator const &)*arg7,(wxString const &)*arg8);
10209
10210 wxPyEndAllowThreads(__tstate);
10211 if (PyErr_Occurred()) SWIG_fail;
10212 }
10213 {
10214 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
10215 }
10216 {
10217 if (temp8)
10218 delete arg8;
10219 }
10220 return resultobj;
10221 fail:
10222 {
10223 if (temp8)
10224 delete arg8;
10225 }
10226 return NULL;
10227 }
10228
10229
10230 static PyObject *_wrap_ScrollBar_GetThumbPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
10231 PyObject *resultobj;
10232 wxScrollBar *arg1 = (wxScrollBar *) 0 ;
10233 int result;
10234 PyObject * obj0 = 0 ;
10235 char *kwnames[] = {
10236 (char *) "self", NULL
10237 };
10238
10239 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ScrollBar_GetThumbPosition",kwnames,&obj0)) goto fail;
10240 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxScrollBar,
10241 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10242 {
10243 PyThreadState* __tstate = wxPyBeginAllowThreads();
10244 result = (int)((wxScrollBar const *)arg1)->GetThumbPosition();
10245
10246 wxPyEndAllowThreads(__tstate);
10247 if (PyErr_Occurred()) SWIG_fail;
10248 }
10249 resultobj = SWIG_FromInt((int)result);
10250 return resultobj;
10251 fail:
10252 return NULL;
10253 }
10254
10255
10256 static PyObject *_wrap_ScrollBar_GetThumbSize(PyObject *self, PyObject *args, PyObject *kwargs) {
10257 PyObject *resultobj;
10258 wxScrollBar *arg1 = (wxScrollBar *) 0 ;
10259 int result;
10260 PyObject * obj0 = 0 ;
10261 char *kwnames[] = {
10262 (char *) "self", NULL
10263 };
10264
10265 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ScrollBar_GetThumbSize",kwnames,&obj0)) goto fail;
10266 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxScrollBar,
10267 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10268 {
10269 PyThreadState* __tstate = wxPyBeginAllowThreads();
10270 result = (int)((wxScrollBar const *)arg1)->GetThumbSize();
10271
10272 wxPyEndAllowThreads(__tstate);
10273 if (PyErr_Occurred()) SWIG_fail;
10274 }
10275 resultobj = SWIG_FromInt((int)result);
10276 return resultobj;
10277 fail:
10278 return NULL;
10279 }
10280
10281
10282 static PyObject *_wrap_ScrollBar_GetPageSize(PyObject *self, PyObject *args, PyObject *kwargs) {
10283 PyObject *resultobj;
10284 wxScrollBar *arg1 = (wxScrollBar *) 0 ;
10285 int result;
10286 PyObject * obj0 = 0 ;
10287 char *kwnames[] = {
10288 (char *) "self", NULL
10289 };
10290
10291 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ScrollBar_GetPageSize",kwnames,&obj0)) goto fail;
10292 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxScrollBar,
10293 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10294 {
10295 PyThreadState* __tstate = wxPyBeginAllowThreads();
10296 result = (int)((wxScrollBar const *)arg1)->GetPageSize();
10297
10298 wxPyEndAllowThreads(__tstate);
10299 if (PyErr_Occurred()) SWIG_fail;
10300 }
10301 resultobj = SWIG_FromInt((int)result);
10302 return resultobj;
10303 fail:
10304 return NULL;
10305 }
10306
10307
10308 static PyObject *_wrap_ScrollBar_GetRange(PyObject *self, PyObject *args, PyObject *kwargs) {
10309 PyObject *resultobj;
10310 wxScrollBar *arg1 = (wxScrollBar *) 0 ;
10311 int result;
10312 PyObject * obj0 = 0 ;
10313 char *kwnames[] = {
10314 (char *) "self", NULL
10315 };
10316
10317 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ScrollBar_GetRange",kwnames,&obj0)) goto fail;
10318 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxScrollBar,
10319 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10320 {
10321 PyThreadState* __tstate = wxPyBeginAllowThreads();
10322 result = (int)((wxScrollBar const *)arg1)->GetRange();
10323
10324 wxPyEndAllowThreads(__tstate);
10325 if (PyErr_Occurred()) SWIG_fail;
10326 }
10327 resultobj = SWIG_FromInt((int)result);
10328 return resultobj;
10329 fail:
10330 return NULL;
10331 }
10332
10333
10334 static PyObject *_wrap_ScrollBar_IsVertical(PyObject *self, PyObject *args, PyObject *kwargs) {
10335 PyObject *resultobj;
10336 wxScrollBar *arg1 = (wxScrollBar *) 0 ;
10337 bool result;
10338 PyObject * obj0 = 0 ;
10339 char *kwnames[] = {
10340 (char *) "self", NULL
10341 };
10342
10343 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ScrollBar_IsVertical",kwnames,&obj0)) goto fail;
10344 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxScrollBar,
10345 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10346 {
10347 PyThreadState* __tstate = wxPyBeginAllowThreads();
10348 result = (bool)((wxScrollBar const *)arg1)->IsVertical();
10349
10350 wxPyEndAllowThreads(__tstate);
10351 if (PyErr_Occurred()) SWIG_fail;
10352 }
10353 {
10354 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
10355 }
10356 return resultobj;
10357 fail:
10358 return NULL;
10359 }
10360
10361
10362 static PyObject *_wrap_ScrollBar_SetThumbPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
10363 PyObject *resultobj;
10364 wxScrollBar *arg1 = (wxScrollBar *) 0 ;
10365 int arg2 ;
10366 PyObject * obj0 = 0 ;
10367 PyObject * obj1 = 0 ;
10368 char *kwnames[] = {
10369 (char *) "self",(char *) "viewStart", NULL
10370 };
10371
10372 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ScrollBar_SetThumbPosition",kwnames,&obj0,&obj1)) goto fail;
10373 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxScrollBar,
10374 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10375 arg2 = (int) SWIG_AsInt(obj1);
10376 if (PyErr_Occurred()) SWIG_fail;
10377 {
10378 PyThreadState* __tstate = wxPyBeginAllowThreads();
10379 (arg1)->SetThumbPosition(arg2);
10380
10381 wxPyEndAllowThreads(__tstate);
10382 if (PyErr_Occurred()) SWIG_fail;
10383 }
10384 Py_INCREF(Py_None); resultobj = Py_None;
10385 return resultobj;
10386 fail:
10387 return NULL;
10388 }
10389
10390
10391 static PyObject *_wrap_ScrollBar_SetScrollbar(PyObject *self, PyObject *args, PyObject *kwargs) {
10392 PyObject *resultobj;
10393 wxScrollBar *arg1 = (wxScrollBar *) 0 ;
10394 int arg2 ;
10395 int arg3 ;
10396 int arg4 ;
10397 int arg5 ;
10398 bool arg6 = (bool) True ;
10399 PyObject * obj0 = 0 ;
10400 PyObject * obj1 = 0 ;
10401 PyObject * obj2 = 0 ;
10402 PyObject * obj3 = 0 ;
10403 PyObject * obj4 = 0 ;
10404 PyObject * obj5 = 0 ;
10405 char *kwnames[] = {
10406 (char *) "self",(char *) "position",(char *) "thumbSize",(char *) "range",(char *) "pageSize",(char *) "refresh", NULL
10407 };
10408
10409 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO|O:ScrollBar_SetScrollbar",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail;
10410 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxScrollBar,
10411 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10412 arg2 = (int) SWIG_AsInt(obj1);
10413 if (PyErr_Occurred()) SWIG_fail;
10414 arg3 = (int) SWIG_AsInt(obj2);
10415 if (PyErr_Occurred()) SWIG_fail;
10416 arg4 = (int) SWIG_AsInt(obj3);
10417 if (PyErr_Occurred()) SWIG_fail;
10418 arg5 = (int) SWIG_AsInt(obj4);
10419 if (PyErr_Occurred()) SWIG_fail;
10420 if (obj5) {
10421 arg6 = (bool) SWIG_AsBool(obj5);
10422 if (PyErr_Occurred()) SWIG_fail;
10423 }
10424 {
10425 PyThreadState* __tstate = wxPyBeginAllowThreads();
10426 (arg1)->SetScrollbar(arg2,arg3,arg4,arg5,arg6);
10427
10428 wxPyEndAllowThreads(__tstate);
10429 if (PyErr_Occurred()) SWIG_fail;
10430 }
10431 Py_INCREF(Py_None); resultobj = Py_None;
10432 return resultobj;
10433 fail:
10434 return NULL;
10435 }
10436
10437
10438 static PyObject *_wrap_ScrollBar_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
10439 PyObject *resultobj;
10440 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
10441 wxVisualAttributes result;
10442 PyObject * obj0 = 0 ;
10443 char *kwnames[] = {
10444 (char *) "variant", NULL
10445 };
10446
10447 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:ScrollBar_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
10448 if (obj0) {
10449 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
10450 if (PyErr_Occurred()) SWIG_fail;
10451 }
10452 {
10453 if (!wxPyCheckForApp()) SWIG_fail;
10454 PyThreadState* __tstate = wxPyBeginAllowThreads();
10455 result = wxScrollBar::GetClassDefaultAttributes((wxWindowVariant )arg1);
10456
10457 wxPyEndAllowThreads(__tstate);
10458 if (PyErr_Occurred()) SWIG_fail;
10459 }
10460 {
10461 wxVisualAttributes * resultptr;
10462 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
10463 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
10464 }
10465 return resultobj;
10466 fail:
10467 return NULL;
10468 }
10469
10470
10471 static PyObject * ScrollBar_swigregister(PyObject *self, PyObject *args) {
10472 PyObject *obj;
10473 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
10474 SWIG_TypeClientData(SWIGTYPE_p_wxScrollBar, obj);
10475 Py_INCREF(obj);
10476 return Py_BuildValue((char *)"");
10477 }
10478 static int _wrap_SPIN_BUTTON_NAME_set(PyObject *_val) {
10479 PyErr_SetString(PyExc_TypeError,"Variable SPIN_BUTTON_NAME is read-only.");
10480 return 1;
10481 }
10482
10483
10484 static PyObject *_wrap_SPIN_BUTTON_NAME_get() {
10485 PyObject *pyobj;
10486
10487 {
10488 #if wxUSE_UNICODE
10489 pyobj = PyUnicode_FromWideChar((&wxPySPIN_BUTTON_NAME)->c_str(), (&wxPySPIN_BUTTON_NAME)->Len());
10490 #else
10491 pyobj = PyString_FromStringAndSize((&wxPySPIN_BUTTON_NAME)->c_str(), (&wxPySPIN_BUTTON_NAME)->Len());
10492 #endif
10493 }
10494 return pyobj;
10495 }
10496
10497
10498 static int _wrap_SpinCtrlNameStr_set(PyObject *_val) {
10499 PyErr_SetString(PyExc_TypeError,"Variable SpinCtrlNameStr is read-only.");
10500 return 1;
10501 }
10502
10503
10504 static PyObject *_wrap_SpinCtrlNameStr_get() {
10505 PyObject *pyobj;
10506
10507 {
10508 #if wxUSE_UNICODE
10509 pyobj = PyUnicode_FromWideChar((&wxPySpinCtrlNameStr)->c_str(), (&wxPySpinCtrlNameStr)->Len());
10510 #else
10511 pyobj = PyString_FromStringAndSize((&wxPySpinCtrlNameStr)->c_str(), (&wxPySpinCtrlNameStr)->Len());
10512 #endif
10513 }
10514 return pyobj;
10515 }
10516
10517
10518 static PyObject *_wrap_new_SpinButton(PyObject *self, PyObject *args, PyObject *kwargs) {
10519 PyObject *resultobj;
10520 wxWindow *arg1 = (wxWindow *) 0 ;
10521 int arg2 = (int) -1 ;
10522 wxPoint const &arg3_defvalue = wxDefaultPosition ;
10523 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
10524 wxSize const &arg4_defvalue = wxDefaultSize ;
10525 wxSize *arg4 = (wxSize *) &arg4_defvalue ;
10526 long arg5 = (long) wxSP_HORIZONTAL ;
10527 wxString const &arg6_defvalue = wxPySPIN_BUTTON_NAME ;
10528 wxString *arg6 = (wxString *) &arg6_defvalue ;
10529 wxSpinButton *result;
10530 wxPoint temp3 ;
10531 wxSize temp4 ;
10532 bool temp6 = False ;
10533 PyObject * obj0 = 0 ;
10534 PyObject * obj1 = 0 ;
10535 PyObject * obj2 = 0 ;
10536 PyObject * obj3 = 0 ;
10537 PyObject * obj4 = 0 ;
10538 PyObject * obj5 = 0 ;
10539 char *kwnames[] = {
10540 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
10541 };
10542
10543 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOO:new_SpinButton",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail;
10544 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
10545 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10546 if (obj1) {
10547 arg2 = (int) SWIG_AsInt(obj1);
10548 if (PyErr_Occurred()) SWIG_fail;
10549 }
10550 if (obj2) {
10551 {
10552 arg3 = &temp3;
10553 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
10554 }
10555 }
10556 if (obj3) {
10557 {
10558 arg4 = &temp4;
10559 if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
10560 }
10561 }
10562 if (obj4) {
10563 arg5 = (long) SWIG_AsLong(obj4);
10564 if (PyErr_Occurred()) SWIG_fail;
10565 }
10566 if (obj5) {
10567 {
10568 arg6 = wxString_in_helper(obj5);
10569 if (arg6 == NULL) SWIG_fail;
10570 temp6 = True;
10571 }
10572 }
10573 {
10574 if (!wxPyCheckForApp()) SWIG_fail;
10575 PyThreadState* __tstate = wxPyBeginAllowThreads();
10576 result = (wxSpinButton *)new wxSpinButton(arg1,arg2,(wxPoint const &)*arg3,(wxSize const &)*arg4,arg5,(wxString const &)*arg6);
10577
10578 wxPyEndAllowThreads(__tstate);
10579 if (PyErr_Occurred()) SWIG_fail;
10580 }
10581 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxSpinButton, 1);
10582 {
10583 if (temp6)
10584 delete arg6;
10585 }
10586 return resultobj;
10587 fail:
10588 {
10589 if (temp6)
10590 delete arg6;
10591 }
10592 return NULL;
10593 }
10594
10595
10596 static PyObject *_wrap_new_PreSpinButton(PyObject *self, PyObject *args, PyObject *kwargs) {
10597 PyObject *resultobj;
10598 wxSpinButton *result;
10599 char *kwnames[] = {
10600 NULL
10601 };
10602
10603 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreSpinButton",kwnames)) goto fail;
10604 {
10605 if (!wxPyCheckForApp()) SWIG_fail;
10606 PyThreadState* __tstate = wxPyBeginAllowThreads();
10607 result = (wxSpinButton *)new wxSpinButton();
10608
10609 wxPyEndAllowThreads(__tstate);
10610 if (PyErr_Occurred()) SWIG_fail;
10611 }
10612 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxSpinButton, 1);
10613 return resultobj;
10614 fail:
10615 return NULL;
10616 }
10617
10618
10619 static PyObject *_wrap_SpinButton_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
10620 PyObject *resultobj;
10621 wxSpinButton *arg1 = (wxSpinButton *) 0 ;
10622 wxWindow *arg2 = (wxWindow *) 0 ;
10623 int arg3 = (int) -1 ;
10624 wxPoint const &arg4_defvalue = wxDefaultPosition ;
10625 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
10626 wxSize const &arg5_defvalue = wxDefaultSize ;
10627 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
10628 long arg6 = (long) wxSP_HORIZONTAL ;
10629 wxString const &arg7_defvalue = wxPySPIN_BUTTON_NAME ;
10630 wxString *arg7 = (wxString *) &arg7_defvalue ;
10631 bool result;
10632 wxPoint temp4 ;
10633 wxSize temp5 ;
10634 bool temp7 = False ;
10635 PyObject * obj0 = 0 ;
10636 PyObject * obj1 = 0 ;
10637 PyObject * obj2 = 0 ;
10638 PyObject * obj3 = 0 ;
10639 PyObject * obj4 = 0 ;
10640 PyObject * obj5 = 0 ;
10641 PyObject * obj6 = 0 ;
10642 char *kwnames[] = {
10643 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
10644 };
10645
10646 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOO:SpinButton_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
10647 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinButton,
10648 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10649 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
10650 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10651 if (obj2) {
10652 arg3 = (int) SWIG_AsInt(obj2);
10653 if (PyErr_Occurred()) SWIG_fail;
10654 }
10655 if (obj3) {
10656 {
10657 arg4 = &temp4;
10658 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
10659 }
10660 }
10661 if (obj4) {
10662 {
10663 arg5 = &temp5;
10664 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
10665 }
10666 }
10667 if (obj5) {
10668 arg6 = (long) SWIG_AsLong(obj5);
10669 if (PyErr_Occurred()) SWIG_fail;
10670 }
10671 if (obj6) {
10672 {
10673 arg7 = wxString_in_helper(obj6);
10674 if (arg7 == NULL) SWIG_fail;
10675 temp7 = True;
10676 }
10677 }
10678 {
10679 PyThreadState* __tstate = wxPyBeginAllowThreads();
10680 result = (bool)(arg1)->Create(arg2,arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxString const &)*arg7);
10681
10682 wxPyEndAllowThreads(__tstate);
10683 if (PyErr_Occurred()) SWIG_fail;
10684 }
10685 {
10686 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
10687 }
10688 {
10689 if (temp7)
10690 delete arg7;
10691 }
10692 return resultobj;
10693 fail:
10694 {
10695 if (temp7)
10696 delete arg7;
10697 }
10698 return NULL;
10699 }
10700
10701
10702 static PyObject *_wrap_SpinButton_GetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
10703 PyObject *resultobj;
10704 wxSpinButton *arg1 = (wxSpinButton *) 0 ;
10705 int result;
10706 PyObject * obj0 = 0 ;
10707 char *kwnames[] = {
10708 (char *) "self", NULL
10709 };
10710
10711 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:SpinButton_GetValue",kwnames,&obj0)) goto fail;
10712 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinButton,
10713 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10714 {
10715 PyThreadState* __tstate = wxPyBeginAllowThreads();
10716 result = (int)((wxSpinButton const *)arg1)->GetValue();
10717
10718 wxPyEndAllowThreads(__tstate);
10719 if (PyErr_Occurred()) SWIG_fail;
10720 }
10721 resultobj = SWIG_FromInt((int)result);
10722 return resultobj;
10723 fail:
10724 return NULL;
10725 }
10726
10727
10728 static PyObject *_wrap_SpinButton_GetMin(PyObject *self, PyObject *args, PyObject *kwargs) {
10729 PyObject *resultobj;
10730 wxSpinButton *arg1 = (wxSpinButton *) 0 ;
10731 int result;
10732 PyObject * obj0 = 0 ;
10733 char *kwnames[] = {
10734 (char *) "self", NULL
10735 };
10736
10737 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:SpinButton_GetMin",kwnames,&obj0)) goto fail;
10738 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinButton,
10739 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10740 {
10741 PyThreadState* __tstate = wxPyBeginAllowThreads();
10742 result = (int)((wxSpinButton const *)arg1)->GetMin();
10743
10744 wxPyEndAllowThreads(__tstate);
10745 if (PyErr_Occurred()) SWIG_fail;
10746 }
10747 resultobj = SWIG_FromInt((int)result);
10748 return resultobj;
10749 fail:
10750 return NULL;
10751 }
10752
10753
10754 static PyObject *_wrap_SpinButton_GetMax(PyObject *self, PyObject *args, PyObject *kwargs) {
10755 PyObject *resultobj;
10756 wxSpinButton *arg1 = (wxSpinButton *) 0 ;
10757 int result;
10758 PyObject * obj0 = 0 ;
10759 char *kwnames[] = {
10760 (char *) "self", NULL
10761 };
10762
10763 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:SpinButton_GetMax",kwnames,&obj0)) goto fail;
10764 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinButton,
10765 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10766 {
10767 PyThreadState* __tstate = wxPyBeginAllowThreads();
10768 result = (int)((wxSpinButton const *)arg1)->GetMax();
10769
10770 wxPyEndAllowThreads(__tstate);
10771 if (PyErr_Occurred()) SWIG_fail;
10772 }
10773 resultobj = SWIG_FromInt((int)result);
10774 return resultobj;
10775 fail:
10776 return NULL;
10777 }
10778
10779
10780 static PyObject *_wrap_SpinButton_SetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
10781 PyObject *resultobj;
10782 wxSpinButton *arg1 = (wxSpinButton *) 0 ;
10783 int arg2 ;
10784 PyObject * obj0 = 0 ;
10785 PyObject * obj1 = 0 ;
10786 char *kwnames[] = {
10787 (char *) "self",(char *) "val", NULL
10788 };
10789
10790 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:SpinButton_SetValue",kwnames,&obj0,&obj1)) goto fail;
10791 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinButton,
10792 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10793 arg2 = (int) SWIG_AsInt(obj1);
10794 if (PyErr_Occurred()) SWIG_fail;
10795 {
10796 PyThreadState* __tstate = wxPyBeginAllowThreads();
10797 (arg1)->SetValue(arg2);
10798
10799 wxPyEndAllowThreads(__tstate);
10800 if (PyErr_Occurred()) SWIG_fail;
10801 }
10802 Py_INCREF(Py_None); resultobj = Py_None;
10803 return resultobj;
10804 fail:
10805 return NULL;
10806 }
10807
10808
10809 static PyObject *_wrap_SpinButton_SetMin(PyObject *self, PyObject *args, PyObject *kwargs) {
10810 PyObject *resultobj;
10811 wxSpinButton *arg1 = (wxSpinButton *) 0 ;
10812 int arg2 ;
10813 PyObject * obj0 = 0 ;
10814 PyObject * obj1 = 0 ;
10815 char *kwnames[] = {
10816 (char *) "self",(char *) "minVal", NULL
10817 };
10818
10819 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:SpinButton_SetMin",kwnames,&obj0,&obj1)) goto fail;
10820 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinButton,
10821 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10822 arg2 = (int) SWIG_AsInt(obj1);
10823 if (PyErr_Occurred()) SWIG_fail;
10824 {
10825 PyThreadState* __tstate = wxPyBeginAllowThreads();
10826 (arg1)->SetMin(arg2);
10827
10828 wxPyEndAllowThreads(__tstate);
10829 if (PyErr_Occurred()) SWIG_fail;
10830 }
10831 Py_INCREF(Py_None); resultobj = Py_None;
10832 return resultobj;
10833 fail:
10834 return NULL;
10835 }
10836
10837
10838 static PyObject *_wrap_SpinButton_SetMax(PyObject *self, PyObject *args, PyObject *kwargs) {
10839 PyObject *resultobj;
10840 wxSpinButton *arg1 = (wxSpinButton *) 0 ;
10841 int arg2 ;
10842 PyObject * obj0 = 0 ;
10843 PyObject * obj1 = 0 ;
10844 char *kwnames[] = {
10845 (char *) "self",(char *) "maxVal", NULL
10846 };
10847
10848 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:SpinButton_SetMax",kwnames,&obj0,&obj1)) goto fail;
10849 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinButton,
10850 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10851 arg2 = (int) SWIG_AsInt(obj1);
10852 if (PyErr_Occurred()) SWIG_fail;
10853 {
10854 PyThreadState* __tstate = wxPyBeginAllowThreads();
10855 (arg1)->SetMax(arg2);
10856
10857 wxPyEndAllowThreads(__tstate);
10858 if (PyErr_Occurred()) SWIG_fail;
10859 }
10860 Py_INCREF(Py_None); resultobj = Py_None;
10861 return resultobj;
10862 fail:
10863 return NULL;
10864 }
10865
10866
10867 static PyObject *_wrap_SpinButton_SetRange(PyObject *self, PyObject *args, PyObject *kwargs) {
10868 PyObject *resultobj;
10869 wxSpinButton *arg1 = (wxSpinButton *) 0 ;
10870 int arg2 ;
10871 int arg3 ;
10872 PyObject * obj0 = 0 ;
10873 PyObject * obj1 = 0 ;
10874 PyObject * obj2 = 0 ;
10875 char *kwnames[] = {
10876 (char *) "self",(char *) "minVal",(char *) "maxVal", NULL
10877 };
10878
10879 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:SpinButton_SetRange",kwnames,&obj0,&obj1,&obj2)) goto fail;
10880 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinButton,
10881 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10882 arg2 = (int) SWIG_AsInt(obj1);
10883 if (PyErr_Occurred()) SWIG_fail;
10884 arg3 = (int) SWIG_AsInt(obj2);
10885 if (PyErr_Occurred()) SWIG_fail;
10886 {
10887 PyThreadState* __tstate = wxPyBeginAllowThreads();
10888 (arg1)->SetRange(arg2,arg3);
10889
10890 wxPyEndAllowThreads(__tstate);
10891 if (PyErr_Occurred()) SWIG_fail;
10892 }
10893 Py_INCREF(Py_None); resultobj = Py_None;
10894 return resultobj;
10895 fail:
10896 return NULL;
10897 }
10898
10899
10900 static PyObject *_wrap_SpinButton_IsVertical(PyObject *self, PyObject *args, PyObject *kwargs) {
10901 PyObject *resultobj;
10902 wxSpinButton *arg1 = (wxSpinButton *) 0 ;
10903 bool result;
10904 PyObject * obj0 = 0 ;
10905 char *kwnames[] = {
10906 (char *) "self", NULL
10907 };
10908
10909 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:SpinButton_IsVertical",kwnames,&obj0)) goto fail;
10910 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinButton,
10911 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
10912 {
10913 PyThreadState* __tstate = wxPyBeginAllowThreads();
10914 result = (bool)((wxSpinButton const *)arg1)->IsVertical();
10915
10916 wxPyEndAllowThreads(__tstate);
10917 if (PyErr_Occurred()) SWIG_fail;
10918 }
10919 {
10920 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
10921 }
10922 return resultobj;
10923 fail:
10924 return NULL;
10925 }
10926
10927
10928 static PyObject *_wrap_SpinButton_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
10929 PyObject *resultobj;
10930 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
10931 wxVisualAttributes result;
10932 PyObject * obj0 = 0 ;
10933 char *kwnames[] = {
10934 (char *) "variant", NULL
10935 };
10936
10937 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:SpinButton_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
10938 if (obj0) {
10939 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
10940 if (PyErr_Occurred()) SWIG_fail;
10941 }
10942 {
10943 if (!wxPyCheckForApp()) SWIG_fail;
10944 PyThreadState* __tstate = wxPyBeginAllowThreads();
10945 result = wxSpinButton::GetClassDefaultAttributes((wxWindowVariant )arg1);
10946
10947 wxPyEndAllowThreads(__tstate);
10948 if (PyErr_Occurred()) SWIG_fail;
10949 }
10950 {
10951 wxVisualAttributes * resultptr;
10952 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
10953 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
10954 }
10955 return resultobj;
10956 fail:
10957 return NULL;
10958 }
10959
10960
10961 static PyObject * SpinButton_swigregister(PyObject *self, PyObject *args) {
10962 PyObject *obj;
10963 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
10964 SWIG_TypeClientData(SWIGTYPE_p_wxSpinButton, obj);
10965 Py_INCREF(obj);
10966 return Py_BuildValue((char *)"");
10967 }
10968 static PyObject *_wrap_new_SpinCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
10969 PyObject *resultobj;
10970 wxWindow *arg1 = (wxWindow *) 0 ;
10971 int arg2 = (int) -1 ;
10972 wxString const &arg3_defvalue = wxPyEmptyString ;
10973 wxString *arg3 = (wxString *) &arg3_defvalue ;
10974 wxPoint const &arg4_defvalue = wxDefaultPosition ;
10975 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
10976 wxSize const &arg5_defvalue = wxDefaultSize ;
10977 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
10978 long arg6 = (long) wxSP_ARROW_KEYS ;
10979 int arg7 = (int) 0 ;
10980 int arg8 = (int) 100 ;
10981 int arg9 = (int) 0 ;
10982 wxString const &arg10_defvalue = wxPySpinCtrlNameStr ;
10983 wxString *arg10 = (wxString *) &arg10_defvalue ;
10984 wxSpinCtrl *result;
10985 bool temp3 = False ;
10986 wxPoint temp4 ;
10987 wxSize temp5 ;
10988 bool temp10 = False ;
10989 PyObject * obj0 = 0 ;
10990 PyObject * obj1 = 0 ;
10991 PyObject * obj2 = 0 ;
10992 PyObject * obj3 = 0 ;
10993 PyObject * obj4 = 0 ;
10994 PyObject * obj5 = 0 ;
10995 PyObject * obj6 = 0 ;
10996 PyObject * obj7 = 0 ;
10997 PyObject * obj8 = 0 ;
10998 PyObject * obj9 = 0 ;
10999 char *kwnames[] = {
11000 (char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "style",(char *) "min",(char *) "max",(char *) "initial",(char *) "name", NULL
11001 };
11002
11003 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOOOO:new_SpinCtrl",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) goto fail;
11004 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
11005 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11006 if (obj1) {
11007 arg2 = (int) SWIG_AsInt(obj1);
11008 if (PyErr_Occurred()) SWIG_fail;
11009 }
11010 if (obj2) {
11011 {
11012 arg3 = wxString_in_helper(obj2);
11013 if (arg3 == NULL) SWIG_fail;
11014 temp3 = True;
11015 }
11016 }
11017 if (obj3) {
11018 {
11019 arg4 = &temp4;
11020 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
11021 }
11022 }
11023 if (obj4) {
11024 {
11025 arg5 = &temp5;
11026 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
11027 }
11028 }
11029 if (obj5) {
11030 arg6 = (long) SWIG_AsLong(obj5);
11031 if (PyErr_Occurred()) SWIG_fail;
11032 }
11033 if (obj6) {
11034 arg7 = (int) SWIG_AsInt(obj6);
11035 if (PyErr_Occurred()) SWIG_fail;
11036 }
11037 if (obj7) {
11038 arg8 = (int) SWIG_AsInt(obj7);
11039 if (PyErr_Occurred()) SWIG_fail;
11040 }
11041 if (obj8) {
11042 arg9 = (int) SWIG_AsInt(obj8);
11043 if (PyErr_Occurred()) SWIG_fail;
11044 }
11045 if (obj9) {
11046 {
11047 arg10 = wxString_in_helper(obj9);
11048 if (arg10 == NULL) SWIG_fail;
11049 temp10 = True;
11050 }
11051 }
11052 {
11053 if (!wxPyCheckForApp()) SWIG_fail;
11054 PyThreadState* __tstate = wxPyBeginAllowThreads();
11055 result = (wxSpinCtrl *)new wxSpinCtrl(arg1,arg2,(wxString const &)*arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,arg7,arg8,arg9,(wxString const &)*arg10);
11056
11057 wxPyEndAllowThreads(__tstate);
11058 if (PyErr_Occurred()) SWIG_fail;
11059 }
11060 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxSpinCtrl, 1);
11061 {
11062 if (temp3)
11063 delete arg3;
11064 }
11065 {
11066 if (temp10)
11067 delete arg10;
11068 }
11069 return resultobj;
11070 fail:
11071 {
11072 if (temp3)
11073 delete arg3;
11074 }
11075 {
11076 if (temp10)
11077 delete arg10;
11078 }
11079 return NULL;
11080 }
11081
11082
11083 static PyObject *_wrap_new_PreSpinCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
11084 PyObject *resultobj;
11085 wxSpinCtrl *result;
11086 char *kwnames[] = {
11087 NULL
11088 };
11089
11090 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreSpinCtrl",kwnames)) goto fail;
11091 {
11092 if (!wxPyCheckForApp()) SWIG_fail;
11093 PyThreadState* __tstate = wxPyBeginAllowThreads();
11094 result = (wxSpinCtrl *)new wxSpinCtrl();
11095
11096 wxPyEndAllowThreads(__tstate);
11097 if (PyErr_Occurred()) SWIG_fail;
11098 }
11099 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxSpinCtrl, 1);
11100 return resultobj;
11101 fail:
11102 return NULL;
11103 }
11104
11105
11106 static PyObject *_wrap_SpinCtrl_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
11107 PyObject *resultobj;
11108 wxSpinCtrl *arg1 = (wxSpinCtrl *) 0 ;
11109 wxWindow *arg2 = (wxWindow *) 0 ;
11110 int arg3 = (int) -1 ;
11111 wxString const &arg4_defvalue = wxPyEmptyString ;
11112 wxString *arg4 = (wxString *) &arg4_defvalue ;
11113 wxPoint const &arg5_defvalue = wxDefaultPosition ;
11114 wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
11115 wxSize const &arg6_defvalue = wxDefaultSize ;
11116 wxSize *arg6 = (wxSize *) &arg6_defvalue ;
11117 long arg7 = (long) wxSP_ARROW_KEYS ;
11118 int arg8 = (int) 0 ;
11119 int arg9 = (int) 100 ;
11120 int arg10 = (int) 0 ;
11121 wxString const &arg11_defvalue = wxPySpinCtrlNameStr ;
11122 wxString *arg11 = (wxString *) &arg11_defvalue ;
11123 bool result;
11124 bool temp4 = False ;
11125 wxPoint temp5 ;
11126 wxSize temp6 ;
11127 bool temp11 = False ;
11128 PyObject * obj0 = 0 ;
11129 PyObject * obj1 = 0 ;
11130 PyObject * obj2 = 0 ;
11131 PyObject * obj3 = 0 ;
11132 PyObject * obj4 = 0 ;
11133 PyObject * obj5 = 0 ;
11134 PyObject * obj6 = 0 ;
11135 PyObject * obj7 = 0 ;
11136 PyObject * obj8 = 0 ;
11137 PyObject * obj9 = 0 ;
11138 PyObject * obj10 = 0 ;
11139 char *kwnames[] = {
11140 (char *) "self",(char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "style",(char *) "min",(char *) "max",(char *) "initial",(char *) "name", NULL
11141 };
11142
11143 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOOOO:SpinCtrl_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10)) goto fail;
11144 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinCtrl,
11145 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11146 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
11147 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11148 if (obj2) {
11149 arg3 = (int) SWIG_AsInt(obj2);
11150 if (PyErr_Occurred()) SWIG_fail;
11151 }
11152 if (obj3) {
11153 {
11154 arg4 = wxString_in_helper(obj3);
11155 if (arg4 == NULL) SWIG_fail;
11156 temp4 = True;
11157 }
11158 }
11159 if (obj4) {
11160 {
11161 arg5 = &temp5;
11162 if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
11163 }
11164 }
11165 if (obj5) {
11166 {
11167 arg6 = &temp6;
11168 if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
11169 }
11170 }
11171 if (obj6) {
11172 arg7 = (long) SWIG_AsLong(obj6);
11173 if (PyErr_Occurred()) SWIG_fail;
11174 }
11175 if (obj7) {
11176 arg8 = (int) SWIG_AsInt(obj7);
11177 if (PyErr_Occurred()) SWIG_fail;
11178 }
11179 if (obj8) {
11180 arg9 = (int) SWIG_AsInt(obj8);
11181 if (PyErr_Occurred()) SWIG_fail;
11182 }
11183 if (obj9) {
11184 arg10 = (int) SWIG_AsInt(obj9);
11185 if (PyErr_Occurred()) SWIG_fail;
11186 }
11187 if (obj10) {
11188 {
11189 arg11 = wxString_in_helper(obj10);
11190 if (arg11 == NULL) SWIG_fail;
11191 temp11 = True;
11192 }
11193 }
11194 {
11195 PyThreadState* __tstate = wxPyBeginAllowThreads();
11196 result = (bool)(arg1)->Create(arg2,arg3,(wxString const &)*arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,arg7,arg8,arg9,arg10,(wxString const &)*arg11);
11197
11198 wxPyEndAllowThreads(__tstate);
11199 if (PyErr_Occurred()) SWIG_fail;
11200 }
11201 {
11202 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
11203 }
11204 {
11205 if (temp4)
11206 delete arg4;
11207 }
11208 {
11209 if (temp11)
11210 delete arg11;
11211 }
11212 return resultobj;
11213 fail:
11214 {
11215 if (temp4)
11216 delete arg4;
11217 }
11218 {
11219 if (temp11)
11220 delete arg11;
11221 }
11222 return NULL;
11223 }
11224
11225
11226 static PyObject *_wrap_SpinCtrl_GetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
11227 PyObject *resultobj;
11228 wxSpinCtrl *arg1 = (wxSpinCtrl *) 0 ;
11229 int result;
11230 PyObject * obj0 = 0 ;
11231 char *kwnames[] = {
11232 (char *) "self", NULL
11233 };
11234
11235 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:SpinCtrl_GetValue",kwnames,&obj0)) goto fail;
11236 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinCtrl,
11237 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11238 {
11239 PyThreadState* __tstate = wxPyBeginAllowThreads();
11240 result = (int)((wxSpinCtrl const *)arg1)->GetValue();
11241
11242 wxPyEndAllowThreads(__tstate);
11243 if (PyErr_Occurred()) SWIG_fail;
11244 }
11245 resultobj = SWIG_FromInt((int)result);
11246 return resultobj;
11247 fail:
11248 return NULL;
11249 }
11250
11251
11252 static PyObject *_wrap_SpinCtrl_SetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
11253 PyObject *resultobj;
11254 wxSpinCtrl *arg1 = (wxSpinCtrl *) 0 ;
11255 int arg2 ;
11256 PyObject * obj0 = 0 ;
11257 PyObject * obj1 = 0 ;
11258 char *kwnames[] = {
11259 (char *) "self",(char *) "value", NULL
11260 };
11261
11262 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:SpinCtrl_SetValue",kwnames,&obj0,&obj1)) goto fail;
11263 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinCtrl,
11264 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11265 arg2 = (int) SWIG_AsInt(obj1);
11266 if (PyErr_Occurred()) SWIG_fail;
11267 {
11268 PyThreadState* __tstate = wxPyBeginAllowThreads();
11269 (arg1)->SetValue(arg2);
11270
11271 wxPyEndAllowThreads(__tstate);
11272 if (PyErr_Occurred()) SWIG_fail;
11273 }
11274 Py_INCREF(Py_None); resultobj = Py_None;
11275 return resultobj;
11276 fail:
11277 return NULL;
11278 }
11279
11280
11281 static PyObject *_wrap_SpinCtrl_SetValueString(PyObject *self, PyObject *args, PyObject *kwargs) {
11282 PyObject *resultobj;
11283 wxSpinCtrl *arg1 = (wxSpinCtrl *) 0 ;
11284 wxString *arg2 = 0 ;
11285 bool temp2 = False ;
11286 PyObject * obj0 = 0 ;
11287 PyObject * obj1 = 0 ;
11288 char *kwnames[] = {
11289 (char *) "self",(char *) "text", NULL
11290 };
11291
11292 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:SpinCtrl_SetValueString",kwnames,&obj0,&obj1)) goto fail;
11293 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinCtrl,
11294 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11295 {
11296 arg2 = wxString_in_helper(obj1);
11297 if (arg2 == NULL) SWIG_fail;
11298 temp2 = True;
11299 }
11300 {
11301 PyThreadState* __tstate = wxPyBeginAllowThreads();
11302 (arg1)->SetValue((wxString const &)*arg2);
11303
11304 wxPyEndAllowThreads(__tstate);
11305 if (PyErr_Occurred()) SWIG_fail;
11306 }
11307 Py_INCREF(Py_None); resultobj = Py_None;
11308 {
11309 if (temp2)
11310 delete arg2;
11311 }
11312 return resultobj;
11313 fail:
11314 {
11315 if (temp2)
11316 delete arg2;
11317 }
11318 return NULL;
11319 }
11320
11321
11322 static PyObject *_wrap_SpinCtrl_SetRange(PyObject *self, PyObject *args, PyObject *kwargs) {
11323 PyObject *resultobj;
11324 wxSpinCtrl *arg1 = (wxSpinCtrl *) 0 ;
11325 int arg2 ;
11326 int arg3 ;
11327 PyObject * obj0 = 0 ;
11328 PyObject * obj1 = 0 ;
11329 PyObject * obj2 = 0 ;
11330 char *kwnames[] = {
11331 (char *) "self",(char *) "minVal",(char *) "maxVal", NULL
11332 };
11333
11334 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:SpinCtrl_SetRange",kwnames,&obj0,&obj1,&obj2)) goto fail;
11335 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinCtrl,
11336 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11337 arg2 = (int) SWIG_AsInt(obj1);
11338 if (PyErr_Occurred()) SWIG_fail;
11339 arg3 = (int) SWIG_AsInt(obj2);
11340 if (PyErr_Occurred()) SWIG_fail;
11341 {
11342 PyThreadState* __tstate = wxPyBeginAllowThreads();
11343 (arg1)->SetRange(arg2,arg3);
11344
11345 wxPyEndAllowThreads(__tstate);
11346 if (PyErr_Occurred()) SWIG_fail;
11347 }
11348 Py_INCREF(Py_None); resultobj = Py_None;
11349 return resultobj;
11350 fail:
11351 return NULL;
11352 }
11353
11354
11355 static PyObject *_wrap_SpinCtrl_GetMin(PyObject *self, PyObject *args, PyObject *kwargs) {
11356 PyObject *resultobj;
11357 wxSpinCtrl *arg1 = (wxSpinCtrl *) 0 ;
11358 int result;
11359 PyObject * obj0 = 0 ;
11360 char *kwnames[] = {
11361 (char *) "self", NULL
11362 };
11363
11364 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:SpinCtrl_GetMin",kwnames,&obj0)) goto fail;
11365 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinCtrl,
11366 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11367 {
11368 PyThreadState* __tstate = wxPyBeginAllowThreads();
11369 result = (int)((wxSpinCtrl const *)arg1)->GetMin();
11370
11371 wxPyEndAllowThreads(__tstate);
11372 if (PyErr_Occurred()) SWIG_fail;
11373 }
11374 resultobj = SWIG_FromInt((int)result);
11375 return resultobj;
11376 fail:
11377 return NULL;
11378 }
11379
11380
11381 static PyObject *_wrap_SpinCtrl_GetMax(PyObject *self, PyObject *args, PyObject *kwargs) {
11382 PyObject *resultobj;
11383 wxSpinCtrl *arg1 = (wxSpinCtrl *) 0 ;
11384 int result;
11385 PyObject * obj0 = 0 ;
11386 char *kwnames[] = {
11387 (char *) "self", NULL
11388 };
11389
11390 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:SpinCtrl_GetMax",kwnames,&obj0)) goto fail;
11391 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinCtrl,
11392 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11393 {
11394 PyThreadState* __tstate = wxPyBeginAllowThreads();
11395 result = (int)((wxSpinCtrl const *)arg1)->GetMax();
11396
11397 wxPyEndAllowThreads(__tstate);
11398 if (PyErr_Occurred()) SWIG_fail;
11399 }
11400 resultobj = SWIG_FromInt((int)result);
11401 return resultobj;
11402 fail:
11403 return NULL;
11404 }
11405
11406
11407 static PyObject *_wrap_SpinCtrl_SetSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
11408 PyObject *resultobj;
11409 wxSpinCtrl *arg1 = (wxSpinCtrl *) 0 ;
11410 long arg2 ;
11411 long arg3 ;
11412 PyObject * obj0 = 0 ;
11413 PyObject * obj1 = 0 ;
11414 PyObject * obj2 = 0 ;
11415 char *kwnames[] = {
11416 (char *) "self",(char *) "from",(char *) "to", NULL
11417 };
11418
11419 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:SpinCtrl_SetSelection",kwnames,&obj0,&obj1,&obj2)) goto fail;
11420 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinCtrl,
11421 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11422 arg2 = (long) SWIG_AsLong(obj1);
11423 if (PyErr_Occurred()) SWIG_fail;
11424 arg3 = (long) SWIG_AsLong(obj2);
11425 if (PyErr_Occurred()) SWIG_fail;
11426 {
11427 PyThreadState* __tstate = wxPyBeginAllowThreads();
11428 (arg1)->SetSelection(arg2,arg3);
11429
11430 wxPyEndAllowThreads(__tstate);
11431 if (PyErr_Occurred()) SWIG_fail;
11432 }
11433 Py_INCREF(Py_None); resultobj = Py_None;
11434 return resultobj;
11435 fail:
11436 return NULL;
11437 }
11438
11439
11440 static PyObject *_wrap_SpinCtrl_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
11441 PyObject *resultobj;
11442 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
11443 wxVisualAttributes result;
11444 PyObject * obj0 = 0 ;
11445 char *kwnames[] = {
11446 (char *) "variant", NULL
11447 };
11448
11449 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:SpinCtrl_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
11450 if (obj0) {
11451 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
11452 if (PyErr_Occurred()) SWIG_fail;
11453 }
11454 {
11455 if (!wxPyCheckForApp()) SWIG_fail;
11456 PyThreadState* __tstate = wxPyBeginAllowThreads();
11457 result = wxSpinCtrl::GetClassDefaultAttributes((wxWindowVariant )arg1);
11458
11459 wxPyEndAllowThreads(__tstate);
11460 if (PyErr_Occurred()) SWIG_fail;
11461 }
11462 {
11463 wxVisualAttributes * resultptr;
11464 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
11465 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
11466 }
11467 return resultobj;
11468 fail:
11469 return NULL;
11470 }
11471
11472
11473 static PyObject * SpinCtrl_swigregister(PyObject *self, PyObject *args) {
11474 PyObject *obj;
11475 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
11476 SWIG_TypeClientData(SWIGTYPE_p_wxSpinCtrl, obj);
11477 Py_INCREF(obj);
11478 return Py_BuildValue((char *)"");
11479 }
11480 static PyObject *_wrap_new_SpinEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
11481 PyObject *resultobj;
11482 wxEventType arg1 = (wxEventType) wxEVT_NULL ;
11483 int arg2 = (int) 0 ;
11484 wxSpinEvent *result;
11485 PyObject * obj0 = 0 ;
11486 PyObject * obj1 = 0 ;
11487 char *kwnames[] = {
11488 (char *) "commandType",(char *) "winid", NULL
11489 };
11490
11491 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|OO:new_SpinEvent",kwnames,&obj0,&obj1)) goto fail;
11492 if (obj0) {
11493 arg1 = (wxEventType) SWIG_AsInt(obj0);
11494 if (PyErr_Occurred()) SWIG_fail;
11495 }
11496 if (obj1) {
11497 arg2 = (int) SWIG_AsInt(obj1);
11498 if (PyErr_Occurred()) SWIG_fail;
11499 }
11500 {
11501 PyThreadState* __tstate = wxPyBeginAllowThreads();
11502 result = (wxSpinEvent *)new wxSpinEvent(arg1,arg2);
11503
11504 wxPyEndAllowThreads(__tstate);
11505 if (PyErr_Occurred()) SWIG_fail;
11506 }
11507 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxSpinEvent, 1);
11508 return resultobj;
11509 fail:
11510 return NULL;
11511 }
11512
11513
11514 static PyObject *_wrap_SpinEvent_GetPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
11515 PyObject *resultobj;
11516 wxSpinEvent *arg1 = (wxSpinEvent *) 0 ;
11517 int result;
11518 PyObject * obj0 = 0 ;
11519 char *kwnames[] = {
11520 (char *) "self", NULL
11521 };
11522
11523 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:SpinEvent_GetPosition",kwnames,&obj0)) goto fail;
11524 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinEvent,
11525 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11526 {
11527 PyThreadState* __tstate = wxPyBeginAllowThreads();
11528 result = (int)((wxSpinEvent const *)arg1)->GetPosition();
11529
11530 wxPyEndAllowThreads(__tstate);
11531 if (PyErr_Occurred()) SWIG_fail;
11532 }
11533 resultobj = SWIG_FromInt((int)result);
11534 return resultobj;
11535 fail:
11536 return NULL;
11537 }
11538
11539
11540 static PyObject *_wrap_SpinEvent_SetPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
11541 PyObject *resultobj;
11542 wxSpinEvent *arg1 = (wxSpinEvent *) 0 ;
11543 int arg2 ;
11544 PyObject * obj0 = 0 ;
11545 PyObject * obj1 = 0 ;
11546 char *kwnames[] = {
11547 (char *) "self",(char *) "pos", NULL
11548 };
11549
11550 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:SpinEvent_SetPosition",kwnames,&obj0,&obj1)) goto fail;
11551 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSpinEvent,
11552 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11553 arg2 = (int) SWIG_AsInt(obj1);
11554 if (PyErr_Occurred()) SWIG_fail;
11555 {
11556 PyThreadState* __tstate = wxPyBeginAllowThreads();
11557 (arg1)->SetPosition(arg2);
11558
11559 wxPyEndAllowThreads(__tstate);
11560 if (PyErr_Occurred()) SWIG_fail;
11561 }
11562 Py_INCREF(Py_None); resultobj = Py_None;
11563 return resultobj;
11564 fail:
11565 return NULL;
11566 }
11567
11568
11569 static PyObject * SpinEvent_swigregister(PyObject *self, PyObject *args) {
11570 PyObject *obj;
11571 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
11572 SWIG_TypeClientData(SWIGTYPE_p_wxSpinEvent, obj);
11573 Py_INCREF(obj);
11574 return Py_BuildValue((char *)"");
11575 }
11576 static int _wrap_RadioBoxNameStr_set(PyObject *_val) {
11577 PyErr_SetString(PyExc_TypeError,"Variable RadioBoxNameStr is read-only.");
11578 return 1;
11579 }
11580
11581
11582 static PyObject *_wrap_RadioBoxNameStr_get() {
11583 PyObject *pyobj;
11584
11585 {
11586 #if wxUSE_UNICODE
11587 pyobj = PyUnicode_FromWideChar((&wxPyRadioBoxNameStr)->c_str(), (&wxPyRadioBoxNameStr)->Len());
11588 #else
11589 pyobj = PyString_FromStringAndSize((&wxPyRadioBoxNameStr)->c_str(), (&wxPyRadioBoxNameStr)->Len());
11590 #endif
11591 }
11592 return pyobj;
11593 }
11594
11595
11596 static int _wrap_RadioButtonNameStr_set(PyObject *_val) {
11597 PyErr_SetString(PyExc_TypeError,"Variable RadioButtonNameStr is read-only.");
11598 return 1;
11599 }
11600
11601
11602 static PyObject *_wrap_RadioButtonNameStr_get() {
11603 PyObject *pyobj;
11604
11605 {
11606 #if wxUSE_UNICODE
11607 pyobj = PyUnicode_FromWideChar((&wxPyRadioButtonNameStr)->c_str(), (&wxPyRadioButtonNameStr)->Len());
11608 #else
11609 pyobj = PyString_FromStringAndSize((&wxPyRadioButtonNameStr)->c_str(), (&wxPyRadioButtonNameStr)->Len());
11610 #endif
11611 }
11612 return pyobj;
11613 }
11614
11615
11616 static PyObject *_wrap_new_RadioBox(PyObject *self, PyObject *args, PyObject *kwargs) {
11617 PyObject *resultobj;
11618 wxWindow *arg1 = (wxWindow *) 0 ;
11619 int arg2 = (int) -1 ;
11620 wxString const &arg3_defvalue = wxPyEmptyString ;
11621 wxString *arg3 = (wxString *) &arg3_defvalue ;
11622 wxPoint const &arg4_defvalue = wxDefaultPosition ;
11623 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
11624 wxSize const &arg5_defvalue = wxDefaultSize ;
11625 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
11626 wxArrayString const &arg6_defvalue = wxPyEmptyStringArray ;
11627 wxArrayString *arg6 = (wxArrayString *) &arg6_defvalue ;
11628 int arg7 = (int) 0 ;
11629 long arg8 = (long) wxRA_HORIZONTAL ;
11630 wxValidator const &arg9_defvalue = wxDefaultValidator ;
11631 wxValidator *arg9 = (wxValidator *) &arg9_defvalue ;
11632 wxString const &arg10_defvalue = wxPyRadioBoxNameStr ;
11633 wxString *arg10 = (wxString *) &arg10_defvalue ;
11634 wxRadioBox *result;
11635 bool temp3 = False ;
11636 wxPoint temp4 ;
11637 wxSize temp5 ;
11638 bool temp6 = False ;
11639 bool temp10 = False ;
11640 PyObject * obj0 = 0 ;
11641 PyObject * obj1 = 0 ;
11642 PyObject * obj2 = 0 ;
11643 PyObject * obj3 = 0 ;
11644 PyObject * obj4 = 0 ;
11645 PyObject * obj5 = 0 ;
11646 PyObject * obj6 = 0 ;
11647 PyObject * obj7 = 0 ;
11648 PyObject * obj8 = 0 ;
11649 PyObject * obj9 = 0 ;
11650 char *kwnames[] = {
11651 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "choices",(char *) "majorDimension",(char *) "style",(char *) "validator",(char *) "name", NULL
11652 };
11653
11654 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOOOO:new_RadioBox",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) goto fail;
11655 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
11656 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11657 if (obj1) {
11658 arg2 = (int) SWIG_AsInt(obj1);
11659 if (PyErr_Occurred()) SWIG_fail;
11660 }
11661 if (obj2) {
11662 {
11663 arg3 = wxString_in_helper(obj2);
11664 if (arg3 == NULL) SWIG_fail;
11665 temp3 = True;
11666 }
11667 }
11668 if (obj3) {
11669 {
11670 arg4 = &temp4;
11671 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
11672 }
11673 }
11674 if (obj4) {
11675 {
11676 arg5 = &temp5;
11677 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
11678 }
11679 }
11680 if (obj5) {
11681 {
11682 if (! PySequence_Check(obj5)) {
11683 PyErr_SetString(PyExc_TypeError, "Sequence of strings expected.");
11684 SWIG_fail;
11685 }
11686 arg6 = new wxArrayString;
11687 temp6 = True;
11688 int i, len=PySequence_Length(obj5);
11689 for (i=0; i<len; i++) {
11690 PyObject* item = PySequence_GetItem(obj5, i);
11691 #if wxUSE_UNICODE
11692 PyObject* str = PyObject_Unicode(item);
11693 #else
11694 PyObject* str = PyObject_Str(item);
11695 #endif
11696 if (PyErr_Occurred()) SWIG_fail;
11697 arg6->Add(Py2wxString(str));
11698 Py_DECREF(item);
11699 Py_DECREF(str);
11700 }
11701 }
11702 }
11703 if (obj6) {
11704 arg7 = (int) SWIG_AsInt(obj6);
11705 if (PyErr_Occurred()) SWIG_fail;
11706 }
11707 if (obj7) {
11708 arg8 = (long) SWIG_AsLong(obj7);
11709 if (PyErr_Occurred()) SWIG_fail;
11710 }
11711 if (obj8) {
11712 if ((SWIG_ConvertPtr(obj8,(void **)(&arg9),SWIGTYPE_p_wxValidator,
11713 SWIG_POINTER_EXCEPTION | 0)) == -1)
11714 SWIG_fail;
11715 if (arg9 == NULL) {
11716 PyErr_SetString(PyExc_TypeError,"null reference");
11717 SWIG_fail;
11718 }
11719 }
11720 if (obj9) {
11721 {
11722 arg10 = wxString_in_helper(obj9);
11723 if (arg10 == NULL) SWIG_fail;
11724 temp10 = True;
11725 }
11726 }
11727 {
11728 if (!wxPyCheckForApp()) SWIG_fail;
11729 PyThreadState* __tstate = wxPyBeginAllowThreads();
11730 result = (wxRadioBox *)new wxRadioBox(arg1,arg2,(wxString const &)*arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,(wxArrayString const &)*arg6,arg7,arg8,(wxValidator const &)*arg9,(wxString const &)*arg10);
11731
11732 wxPyEndAllowThreads(__tstate);
11733 if (PyErr_Occurred()) SWIG_fail;
11734 }
11735 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxRadioBox, 1);
11736 {
11737 if (temp3)
11738 delete arg3;
11739 }
11740 {
11741 if (temp6) delete arg6;
11742 }
11743 {
11744 if (temp10)
11745 delete arg10;
11746 }
11747 return resultobj;
11748 fail:
11749 {
11750 if (temp3)
11751 delete arg3;
11752 }
11753 {
11754 if (temp6) delete arg6;
11755 }
11756 {
11757 if (temp10)
11758 delete arg10;
11759 }
11760 return NULL;
11761 }
11762
11763
11764 static PyObject *_wrap_new_PreRadioBox(PyObject *self, PyObject *args, PyObject *kwargs) {
11765 PyObject *resultobj;
11766 wxRadioBox *result;
11767 char *kwnames[] = {
11768 NULL
11769 };
11770
11771 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreRadioBox",kwnames)) goto fail;
11772 {
11773 if (!wxPyCheckForApp()) SWIG_fail;
11774 PyThreadState* __tstate = wxPyBeginAllowThreads();
11775 result = (wxRadioBox *)new wxRadioBox();
11776
11777 wxPyEndAllowThreads(__tstate);
11778 if (PyErr_Occurred()) SWIG_fail;
11779 }
11780 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxRadioBox, 1);
11781 return resultobj;
11782 fail:
11783 return NULL;
11784 }
11785
11786
11787 static PyObject *_wrap_RadioBox_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
11788 PyObject *resultobj;
11789 wxRadioBox *arg1 = (wxRadioBox *) 0 ;
11790 wxWindow *arg2 = (wxWindow *) 0 ;
11791 int arg3 = (int) -1 ;
11792 wxString const &arg4_defvalue = wxPyEmptyString ;
11793 wxString *arg4 = (wxString *) &arg4_defvalue ;
11794 wxPoint const &arg5_defvalue = wxDefaultPosition ;
11795 wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
11796 wxSize const &arg6_defvalue = wxDefaultSize ;
11797 wxSize *arg6 = (wxSize *) &arg6_defvalue ;
11798 wxArrayString const &arg7_defvalue = wxPyEmptyStringArray ;
11799 wxArrayString *arg7 = (wxArrayString *) &arg7_defvalue ;
11800 int arg8 = (int) 0 ;
11801 long arg9 = (long) wxRA_HORIZONTAL ;
11802 wxValidator const &arg10_defvalue = wxDefaultValidator ;
11803 wxValidator *arg10 = (wxValidator *) &arg10_defvalue ;
11804 wxString const &arg11_defvalue = wxPyRadioBoxNameStr ;
11805 wxString *arg11 = (wxString *) &arg11_defvalue ;
11806 bool result;
11807 bool temp4 = False ;
11808 wxPoint temp5 ;
11809 wxSize temp6 ;
11810 bool temp7 = False ;
11811 bool temp11 = False ;
11812 PyObject * obj0 = 0 ;
11813 PyObject * obj1 = 0 ;
11814 PyObject * obj2 = 0 ;
11815 PyObject * obj3 = 0 ;
11816 PyObject * obj4 = 0 ;
11817 PyObject * obj5 = 0 ;
11818 PyObject * obj6 = 0 ;
11819 PyObject * obj7 = 0 ;
11820 PyObject * obj8 = 0 ;
11821 PyObject * obj9 = 0 ;
11822 PyObject * obj10 = 0 ;
11823 char *kwnames[] = {
11824 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "choices",(char *) "majorDimension",(char *) "style",(char *) "validator",(char *) "name", NULL
11825 };
11826
11827 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOOOO:RadioBox_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10)) goto fail;
11828 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioBox,
11829 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11830 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
11831 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11832 if (obj2) {
11833 arg3 = (int) SWIG_AsInt(obj2);
11834 if (PyErr_Occurred()) SWIG_fail;
11835 }
11836 if (obj3) {
11837 {
11838 arg4 = wxString_in_helper(obj3);
11839 if (arg4 == NULL) SWIG_fail;
11840 temp4 = True;
11841 }
11842 }
11843 if (obj4) {
11844 {
11845 arg5 = &temp5;
11846 if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
11847 }
11848 }
11849 if (obj5) {
11850 {
11851 arg6 = &temp6;
11852 if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
11853 }
11854 }
11855 if (obj6) {
11856 {
11857 if (! PySequence_Check(obj6)) {
11858 PyErr_SetString(PyExc_TypeError, "Sequence of strings expected.");
11859 SWIG_fail;
11860 }
11861 arg7 = new wxArrayString;
11862 temp7 = True;
11863 int i, len=PySequence_Length(obj6);
11864 for (i=0; i<len; i++) {
11865 PyObject* item = PySequence_GetItem(obj6, i);
11866 #if wxUSE_UNICODE
11867 PyObject* str = PyObject_Unicode(item);
11868 #else
11869 PyObject* str = PyObject_Str(item);
11870 #endif
11871 if (PyErr_Occurred()) SWIG_fail;
11872 arg7->Add(Py2wxString(str));
11873 Py_DECREF(item);
11874 Py_DECREF(str);
11875 }
11876 }
11877 }
11878 if (obj7) {
11879 arg8 = (int) SWIG_AsInt(obj7);
11880 if (PyErr_Occurred()) SWIG_fail;
11881 }
11882 if (obj8) {
11883 arg9 = (long) SWIG_AsLong(obj8);
11884 if (PyErr_Occurred()) SWIG_fail;
11885 }
11886 if (obj9) {
11887 if ((SWIG_ConvertPtr(obj9,(void **)(&arg10),SWIGTYPE_p_wxValidator,
11888 SWIG_POINTER_EXCEPTION | 0)) == -1)
11889 SWIG_fail;
11890 if (arg10 == NULL) {
11891 PyErr_SetString(PyExc_TypeError,"null reference");
11892 SWIG_fail;
11893 }
11894 }
11895 if (obj10) {
11896 {
11897 arg11 = wxString_in_helper(obj10);
11898 if (arg11 == NULL) SWIG_fail;
11899 temp11 = True;
11900 }
11901 }
11902 {
11903 PyThreadState* __tstate = wxPyBeginAllowThreads();
11904 result = (bool)(arg1)->Create(arg2,arg3,(wxString const &)*arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,(wxArrayString const &)*arg7,arg8,arg9,(wxValidator const &)*arg10,(wxString const &)*arg11);
11905
11906 wxPyEndAllowThreads(__tstate);
11907 if (PyErr_Occurred()) SWIG_fail;
11908 }
11909 {
11910 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
11911 }
11912 {
11913 if (temp4)
11914 delete arg4;
11915 }
11916 {
11917 if (temp7) delete arg7;
11918 }
11919 {
11920 if (temp11)
11921 delete arg11;
11922 }
11923 return resultobj;
11924 fail:
11925 {
11926 if (temp4)
11927 delete arg4;
11928 }
11929 {
11930 if (temp7) delete arg7;
11931 }
11932 {
11933 if (temp11)
11934 delete arg11;
11935 }
11936 return NULL;
11937 }
11938
11939
11940 static PyObject *_wrap_RadioBox_SetSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
11941 PyObject *resultobj;
11942 wxRadioBox *arg1 = (wxRadioBox *) 0 ;
11943 int arg2 ;
11944 PyObject * obj0 = 0 ;
11945 PyObject * obj1 = 0 ;
11946 char *kwnames[] = {
11947 (char *) "self",(char *) "n", NULL
11948 };
11949
11950 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:RadioBox_SetSelection",kwnames,&obj0,&obj1)) goto fail;
11951 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioBox,
11952 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11953 arg2 = (int) SWIG_AsInt(obj1);
11954 if (PyErr_Occurred()) SWIG_fail;
11955 {
11956 PyThreadState* __tstate = wxPyBeginAllowThreads();
11957 (arg1)->SetSelection(arg2);
11958
11959 wxPyEndAllowThreads(__tstate);
11960 if (PyErr_Occurred()) SWIG_fail;
11961 }
11962 Py_INCREF(Py_None); resultobj = Py_None;
11963 return resultobj;
11964 fail:
11965 return NULL;
11966 }
11967
11968
11969 static PyObject *_wrap_RadioBox_GetSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
11970 PyObject *resultobj;
11971 wxRadioBox *arg1 = (wxRadioBox *) 0 ;
11972 int result;
11973 PyObject * obj0 = 0 ;
11974 char *kwnames[] = {
11975 (char *) "self", NULL
11976 };
11977
11978 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:RadioBox_GetSelection",kwnames,&obj0)) goto fail;
11979 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioBox,
11980 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
11981 {
11982 PyThreadState* __tstate = wxPyBeginAllowThreads();
11983 result = (int)((wxRadioBox const *)arg1)->GetSelection();
11984
11985 wxPyEndAllowThreads(__tstate);
11986 if (PyErr_Occurred()) SWIG_fail;
11987 }
11988 resultobj = SWIG_FromInt((int)result);
11989 return resultobj;
11990 fail:
11991 return NULL;
11992 }
11993
11994
11995 static PyObject *_wrap_RadioBox_GetStringSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
11996 PyObject *resultobj;
11997 wxRadioBox *arg1 = (wxRadioBox *) 0 ;
11998 wxString result;
11999 PyObject * obj0 = 0 ;
12000 char *kwnames[] = {
12001 (char *) "self", NULL
12002 };
12003
12004 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:RadioBox_GetStringSelection",kwnames,&obj0)) goto fail;
12005 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioBox,
12006 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12007 {
12008 PyThreadState* __tstate = wxPyBeginAllowThreads();
12009 result = ((wxRadioBox const *)arg1)->GetStringSelection();
12010
12011 wxPyEndAllowThreads(__tstate);
12012 if (PyErr_Occurred()) SWIG_fail;
12013 }
12014 {
12015 #if wxUSE_UNICODE
12016 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
12017 #else
12018 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
12019 #endif
12020 }
12021 return resultobj;
12022 fail:
12023 return NULL;
12024 }
12025
12026
12027 static PyObject *_wrap_RadioBox_SetStringSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
12028 PyObject *resultobj;
12029 wxRadioBox *arg1 = (wxRadioBox *) 0 ;
12030 wxString *arg2 = 0 ;
12031 bool result;
12032 bool temp2 = False ;
12033 PyObject * obj0 = 0 ;
12034 PyObject * obj1 = 0 ;
12035 char *kwnames[] = {
12036 (char *) "self",(char *) "s", NULL
12037 };
12038
12039 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:RadioBox_SetStringSelection",kwnames,&obj0,&obj1)) goto fail;
12040 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioBox,
12041 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12042 {
12043 arg2 = wxString_in_helper(obj1);
12044 if (arg2 == NULL) SWIG_fail;
12045 temp2 = True;
12046 }
12047 {
12048 PyThreadState* __tstate = wxPyBeginAllowThreads();
12049 result = (bool)(arg1)->SetStringSelection((wxString const &)*arg2);
12050
12051 wxPyEndAllowThreads(__tstate);
12052 if (PyErr_Occurred()) SWIG_fail;
12053 }
12054 {
12055 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
12056 }
12057 {
12058 if (temp2)
12059 delete arg2;
12060 }
12061 return resultobj;
12062 fail:
12063 {
12064 if (temp2)
12065 delete arg2;
12066 }
12067 return NULL;
12068 }
12069
12070
12071 static PyObject *_wrap_RadioBox_GetCount(PyObject *self, PyObject *args, PyObject *kwargs) {
12072 PyObject *resultobj;
12073 wxRadioBox *arg1 = (wxRadioBox *) 0 ;
12074 int result;
12075 PyObject * obj0 = 0 ;
12076 char *kwnames[] = {
12077 (char *) "self", NULL
12078 };
12079
12080 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:RadioBox_GetCount",kwnames,&obj0)) goto fail;
12081 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioBox,
12082 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12083 {
12084 PyThreadState* __tstate = wxPyBeginAllowThreads();
12085 result = (int)((wxRadioBox const *)arg1)->GetCount();
12086
12087 wxPyEndAllowThreads(__tstate);
12088 if (PyErr_Occurred()) SWIG_fail;
12089 }
12090 resultobj = SWIG_FromInt((int)result);
12091 return resultobj;
12092 fail:
12093 return NULL;
12094 }
12095
12096
12097 static PyObject *_wrap_RadioBox_FindString(PyObject *self, PyObject *args, PyObject *kwargs) {
12098 PyObject *resultobj;
12099 wxRadioBox *arg1 = (wxRadioBox *) 0 ;
12100 wxString *arg2 = 0 ;
12101 int result;
12102 bool temp2 = False ;
12103 PyObject * obj0 = 0 ;
12104 PyObject * obj1 = 0 ;
12105 char *kwnames[] = {
12106 (char *) "self",(char *) "s", NULL
12107 };
12108
12109 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:RadioBox_FindString",kwnames,&obj0,&obj1)) goto fail;
12110 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioBox,
12111 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12112 {
12113 arg2 = wxString_in_helper(obj1);
12114 if (arg2 == NULL) SWIG_fail;
12115 temp2 = True;
12116 }
12117 {
12118 PyThreadState* __tstate = wxPyBeginAllowThreads();
12119 result = (int)((wxRadioBox const *)arg1)->FindString((wxString const &)*arg2);
12120
12121 wxPyEndAllowThreads(__tstate);
12122 if (PyErr_Occurred()) SWIG_fail;
12123 }
12124 resultobj = SWIG_FromInt((int)result);
12125 {
12126 if (temp2)
12127 delete arg2;
12128 }
12129 return resultobj;
12130 fail:
12131 {
12132 if (temp2)
12133 delete arg2;
12134 }
12135 return NULL;
12136 }
12137
12138
12139 static PyObject *_wrap_RadioBox_GetString(PyObject *self, PyObject *args, PyObject *kwargs) {
12140 PyObject *resultobj;
12141 wxRadioBox *arg1 = (wxRadioBox *) 0 ;
12142 int arg2 ;
12143 wxString result;
12144 PyObject * obj0 = 0 ;
12145 PyObject * obj1 = 0 ;
12146 char *kwnames[] = {
12147 (char *) "self",(char *) "n", NULL
12148 };
12149
12150 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:RadioBox_GetString",kwnames,&obj0,&obj1)) goto fail;
12151 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioBox,
12152 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12153 arg2 = (int) SWIG_AsInt(obj1);
12154 if (PyErr_Occurred()) SWIG_fail;
12155 {
12156 PyThreadState* __tstate = wxPyBeginAllowThreads();
12157 result = ((wxRadioBox const *)arg1)->GetString(arg2);
12158
12159 wxPyEndAllowThreads(__tstate);
12160 if (PyErr_Occurred()) SWIG_fail;
12161 }
12162 {
12163 #if wxUSE_UNICODE
12164 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
12165 #else
12166 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
12167 #endif
12168 }
12169 return resultobj;
12170 fail:
12171 return NULL;
12172 }
12173
12174
12175 static PyObject *_wrap_RadioBox_SetString(PyObject *self, PyObject *args, PyObject *kwargs) {
12176 PyObject *resultobj;
12177 wxRadioBox *arg1 = (wxRadioBox *) 0 ;
12178 int arg2 ;
12179 wxString *arg3 = 0 ;
12180 bool temp3 = False ;
12181 PyObject * obj0 = 0 ;
12182 PyObject * obj1 = 0 ;
12183 PyObject * obj2 = 0 ;
12184 char *kwnames[] = {
12185 (char *) "self",(char *) "n",(char *) "label", NULL
12186 };
12187
12188 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:RadioBox_SetString",kwnames,&obj0,&obj1,&obj2)) goto fail;
12189 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioBox,
12190 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12191 arg2 = (int) SWIG_AsInt(obj1);
12192 if (PyErr_Occurred()) SWIG_fail;
12193 {
12194 arg3 = wxString_in_helper(obj2);
12195 if (arg3 == NULL) SWIG_fail;
12196 temp3 = True;
12197 }
12198 {
12199 PyThreadState* __tstate = wxPyBeginAllowThreads();
12200 (arg1)->SetString(arg2,(wxString const &)*arg3);
12201
12202 wxPyEndAllowThreads(__tstate);
12203 if (PyErr_Occurred()) SWIG_fail;
12204 }
12205 Py_INCREF(Py_None); resultobj = Py_None;
12206 {
12207 if (temp3)
12208 delete arg3;
12209 }
12210 return resultobj;
12211 fail:
12212 {
12213 if (temp3)
12214 delete arg3;
12215 }
12216 return NULL;
12217 }
12218
12219
12220 static PyObject *_wrap_RadioBox_EnableItem(PyObject *self, PyObject *args, PyObject *kwargs) {
12221 PyObject *resultobj;
12222 wxRadioBox *arg1 = (wxRadioBox *) 0 ;
12223 int arg2 ;
12224 bool arg3 = (bool) True ;
12225 PyObject * obj0 = 0 ;
12226 PyObject * obj1 = 0 ;
12227 PyObject * obj2 = 0 ;
12228 char *kwnames[] = {
12229 (char *) "self",(char *) "n",(char *) "enable", NULL
12230 };
12231
12232 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:RadioBox_EnableItem",kwnames,&obj0,&obj1,&obj2)) goto fail;
12233 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioBox,
12234 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12235 arg2 = (int) SWIG_AsInt(obj1);
12236 if (PyErr_Occurred()) SWIG_fail;
12237 if (obj2) {
12238 arg3 = (bool) SWIG_AsBool(obj2);
12239 if (PyErr_Occurred()) SWIG_fail;
12240 }
12241 {
12242 PyThreadState* __tstate = wxPyBeginAllowThreads();
12243 (arg1)->Enable(arg2,arg3);
12244
12245 wxPyEndAllowThreads(__tstate);
12246 if (PyErr_Occurred()) SWIG_fail;
12247 }
12248 Py_INCREF(Py_None); resultobj = Py_None;
12249 return resultobj;
12250 fail:
12251 return NULL;
12252 }
12253
12254
12255 static PyObject *_wrap_RadioBox_ShowItem(PyObject *self, PyObject *args, PyObject *kwargs) {
12256 PyObject *resultobj;
12257 wxRadioBox *arg1 = (wxRadioBox *) 0 ;
12258 int arg2 ;
12259 bool arg3 = (bool) True ;
12260 PyObject * obj0 = 0 ;
12261 PyObject * obj1 = 0 ;
12262 PyObject * obj2 = 0 ;
12263 char *kwnames[] = {
12264 (char *) "self",(char *) "n",(char *) "show", NULL
12265 };
12266
12267 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:RadioBox_ShowItem",kwnames,&obj0,&obj1,&obj2)) goto fail;
12268 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioBox,
12269 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12270 arg2 = (int) SWIG_AsInt(obj1);
12271 if (PyErr_Occurred()) SWIG_fail;
12272 if (obj2) {
12273 arg3 = (bool) SWIG_AsBool(obj2);
12274 if (PyErr_Occurred()) SWIG_fail;
12275 }
12276 {
12277 PyThreadState* __tstate = wxPyBeginAllowThreads();
12278 (arg1)->Show(arg2,arg3);
12279
12280 wxPyEndAllowThreads(__tstate);
12281 if (PyErr_Occurred()) SWIG_fail;
12282 }
12283 Py_INCREF(Py_None); resultobj = Py_None;
12284 return resultobj;
12285 fail:
12286 return NULL;
12287 }
12288
12289
12290 static PyObject *_wrap_RadioBox_GetColumnCount(PyObject *self, PyObject *args, PyObject *kwargs) {
12291 PyObject *resultobj;
12292 wxRadioBox *arg1 = (wxRadioBox *) 0 ;
12293 int result;
12294 PyObject * obj0 = 0 ;
12295 char *kwnames[] = {
12296 (char *) "self", NULL
12297 };
12298
12299 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:RadioBox_GetColumnCount",kwnames,&obj0)) goto fail;
12300 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioBox,
12301 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12302 {
12303 PyThreadState* __tstate = wxPyBeginAllowThreads();
12304 result = (int)wxRadioBox_GetColumnCount((wxRadioBox const *)arg1);
12305
12306 wxPyEndAllowThreads(__tstate);
12307 if (PyErr_Occurred()) SWIG_fail;
12308 }
12309 resultobj = SWIG_FromInt((int)result);
12310 return resultobj;
12311 fail:
12312 return NULL;
12313 }
12314
12315
12316 static PyObject *_wrap_RadioBox_GetRowCount(PyObject *self, PyObject *args, PyObject *kwargs) {
12317 PyObject *resultobj;
12318 wxRadioBox *arg1 = (wxRadioBox *) 0 ;
12319 int result;
12320 PyObject * obj0 = 0 ;
12321 char *kwnames[] = {
12322 (char *) "self", NULL
12323 };
12324
12325 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:RadioBox_GetRowCount",kwnames,&obj0)) goto fail;
12326 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioBox,
12327 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12328 {
12329 PyThreadState* __tstate = wxPyBeginAllowThreads();
12330 result = (int)wxRadioBox_GetRowCount((wxRadioBox const *)arg1);
12331
12332 wxPyEndAllowThreads(__tstate);
12333 if (PyErr_Occurred()) SWIG_fail;
12334 }
12335 resultobj = SWIG_FromInt((int)result);
12336 return resultobj;
12337 fail:
12338 return NULL;
12339 }
12340
12341
12342 static PyObject *_wrap_RadioBox_GetNextItem(PyObject *self, PyObject *args, PyObject *kwargs) {
12343 PyObject *resultobj;
12344 wxRadioBox *arg1 = (wxRadioBox *) 0 ;
12345 int arg2 ;
12346 int arg3 ;
12347 long arg4 ;
12348 int result;
12349 PyObject * obj0 = 0 ;
12350 PyObject * obj1 = 0 ;
12351 PyObject * obj2 = 0 ;
12352 PyObject * obj3 = 0 ;
12353 char *kwnames[] = {
12354 (char *) "self",(char *) "item",(char *) "dir",(char *) "style", NULL
12355 };
12356
12357 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO:RadioBox_GetNextItem",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
12358 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioBox,
12359 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12360 arg2 = (int) SWIG_AsInt(obj1);
12361 if (PyErr_Occurred()) SWIG_fail;
12362 arg3 = (wxDirection) SWIG_AsInt(obj2);
12363 if (PyErr_Occurred()) SWIG_fail;
12364 arg4 = (long) SWIG_AsLong(obj3);
12365 if (PyErr_Occurred()) SWIG_fail;
12366 {
12367 PyThreadState* __tstate = wxPyBeginAllowThreads();
12368 result = (int)wxRadioBox_GetNextItem((wxRadioBox const *)arg1,arg2,(wxDirection )arg3,arg4);
12369
12370 wxPyEndAllowThreads(__tstate);
12371 if (PyErr_Occurred()) SWIG_fail;
12372 }
12373 resultobj = SWIG_FromInt((int)result);
12374 return resultobj;
12375 fail:
12376 return NULL;
12377 }
12378
12379
12380 static PyObject *_wrap_RadioBox_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
12381 PyObject *resultobj;
12382 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
12383 wxVisualAttributes result;
12384 PyObject * obj0 = 0 ;
12385 char *kwnames[] = {
12386 (char *) "variant", NULL
12387 };
12388
12389 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:RadioBox_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
12390 if (obj0) {
12391 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
12392 if (PyErr_Occurred()) SWIG_fail;
12393 }
12394 {
12395 if (!wxPyCheckForApp()) SWIG_fail;
12396 PyThreadState* __tstate = wxPyBeginAllowThreads();
12397 result = wxRadioBox::GetClassDefaultAttributes((wxWindowVariant )arg1);
12398
12399 wxPyEndAllowThreads(__tstate);
12400 if (PyErr_Occurred()) SWIG_fail;
12401 }
12402 {
12403 wxVisualAttributes * resultptr;
12404 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
12405 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
12406 }
12407 return resultobj;
12408 fail:
12409 return NULL;
12410 }
12411
12412
12413 static PyObject * RadioBox_swigregister(PyObject *self, PyObject *args) {
12414 PyObject *obj;
12415 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
12416 SWIG_TypeClientData(SWIGTYPE_p_wxRadioBox, obj);
12417 Py_INCREF(obj);
12418 return Py_BuildValue((char *)"");
12419 }
12420 static PyObject *_wrap_new_RadioButton(PyObject *self, PyObject *args, PyObject *kwargs) {
12421 PyObject *resultobj;
12422 wxWindow *arg1 = (wxWindow *) 0 ;
12423 int arg2 = (int) -1 ;
12424 wxString const &arg3_defvalue = wxPyEmptyString ;
12425 wxString *arg3 = (wxString *) &arg3_defvalue ;
12426 wxPoint const &arg4_defvalue = wxDefaultPosition ;
12427 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
12428 wxSize const &arg5_defvalue = wxDefaultSize ;
12429 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
12430 long arg6 = (long) 0 ;
12431 wxValidator const &arg7_defvalue = wxDefaultValidator ;
12432 wxValidator *arg7 = (wxValidator *) &arg7_defvalue ;
12433 wxString const &arg8_defvalue = wxPyRadioButtonNameStr ;
12434 wxString *arg8 = (wxString *) &arg8_defvalue ;
12435 wxRadioButton *result;
12436 bool temp3 = False ;
12437 wxPoint temp4 ;
12438 wxSize temp5 ;
12439 bool temp8 = False ;
12440 PyObject * obj0 = 0 ;
12441 PyObject * obj1 = 0 ;
12442 PyObject * obj2 = 0 ;
12443 PyObject * obj3 = 0 ;
12444 PyObject * obj4 = 0 ;
12445 PyObject * obj5 = 0 ;
12446 PyObject * obj6 = 0 ;
12447 PyObject * obj7 = 0 ;
12448 char *kwnames[] = {
12449 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
12450 };
12451
12452 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOO:new_RadioButton",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
12453 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
12454 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12455 if (obj1) {
12456 arg2 = (int) SWIG_AsInt(obj1);
12457 if (PyErr_Occurred()) SWIG_fail;
12458 }
12459 if (obj2) {
12460 {
12461 arg3 = wxString_in_helper(obj2);
12462 if (arg3 == NULL) SWIG_fail;
12463 temp3 = True;
12464 }
12465 }
12466 if (obj3) {
12467 {
12468 arg4 = &temp4;
12469 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
12470 }
12471 }
12472 if (obj4) {
12473 {
12474 arg5 = &temp5;
12475 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
12476 }
12477 }
12478 if (obj5) {
12479 arg6 = (long) SWIG_AsLong(obj5);
12480 if (PyErr_Occurred()) SWIG_fail;
12481 }
12482 if (obj6) {
12483 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxValidator,
12484 SWIG_POINTER_EXCEPTION | 0)) == -1)
12485 SWIG_fail;
12486 if (arg7 == NULL) {
12487 PyErr_SetString(PyExc_TypeError,"null reference");
12488 SWIG_fail;
12489 }
12490 }
12491 if (obj7) {
12492 {
12493 arg8 = wxString_in_helper(obj7);
12494 if (arg8 == NULL) SWIG_fail;
12495 temp8 = True;
12496 }
12497 }
12498 {
12499 if (!wxPyCheckForApp()) SWIG_fail;
12500 PyThreadState* __tstate = wxPyBeginAllowThreads();
12501 result = (wxRadioButton *)new wxRadioButton(arg1,arg2,(wxString const &)*arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxValidator const &)*arg7,(wxString const &)*arg8);
12502
12503 wxPyEndAllowThreads(__tstate);
12504 if (PyErr_Occurred()) SWIG_fail;
12505 }
12506 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxRadioButton, 1);
12507 {
12508 if (temp3)
12509 delete arg3;
12510 }
12511 {
12512 if (temp8)
12513 delete arg8;
12514 }
12515 return resultobj;
12516 fail:
12517 {
12518 if (temp3)
12519 delete arg3;
12520 }
12521 {
12522 if (temp8)
12523 delete arg8;
12524 }
12525 return NULL;
12526 }
12527
12528
12529 static PyObject *_wrap_new_PreRadioButton(PyObject *self, PyObject *args, PyObject *kwargs) {
12530 PyObject *resultobj;
12531 wxRadioButton *result;
12532 char *kwnames[] = {
12533 NULL
12534 };
12535
12536 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreRadioButton",kwnames)) goto fail;
12537 {
12538 if (!wxPyCheckForApp()) SWIG_fail;
12539 PyThreadState* __tstate = wxPyBeginAllowThreads();
12540 result = (wxRadioButton *)new wxRadioButton();
12541
12542 wxPyEndAllowThreads(__tstate);
12543 if (PyErr_Occurred()) SWIG_fail;
12544 }
12545 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxRadioButton, 1);
12546 return resultobj;
12547 fail:
12548 return NULL;
12549 }
12550
12551
12552 static PyObject *_wrap_RadioButton_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
12553 PyObject *resultobj;
12554 wxRadioButton *arg1 = (wxRadioButton *) 0 ;
12555 wxWindow *arg2 = (wxWindow *) 0 ;
12556 int arg3 = (int) -1 ;
12557 wxString const &arg4_defvalue = wxPyEmptyString ;
12558 wxString *arg4 = (wxString *) &arg4_defvalue ;
12559 wxPoint const &arg5_defvalue = wxDefaultPosition ;
12560 wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
12561 wxSize const &arg6_defvalue = wxDefaultSize ;
12562 wxSize *arg6 = (wxSize *) &arg6_defvalue ;
12563 long arg7 = (long) 0 ;
12564 wxValidator const &arg8_defvalue = wxDefaultValidator ;
12565 wxValidator *arg8 = (wxValidator *) &arg8_defvalue ;
12566 wxString const &arg9_defvalue = wxPyRadioButtonNameStr ;
12567 wxString *arg9 = (wxString *) &arg9_defvalue ;
12568 bool result;
12569 bool temp4 = False ;
12570 wxPoint temp5 ;
12571 wxSize temp6 ;
12572 bool temp9 = False ;
12573 PyObject * obj0 = 0 ;
12574 PyObject * obj1 = 0 ;
12575 PyObject * obj2 = 0 ;
12576 PyObject * obj3 = 0 ;
12577 PyObject * obj4 = 0 ;
12578 PyObject * obj5 = 0 ;
12579 PyObject * obj6 = 0 ;
12580 PyObject * obj7 = 0 ;
12581 PyObject * obj8 = 0 ;
12582 char *kwnames[] = {
12583 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
12584 };
12585
12586 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOO:RadioButton_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail;
12587 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioButton,
12588 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12589 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
12590 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12591 if (obj2) {
12592 arg3 = (int) SWIG_AsInt(obj2);
12593 if (PyErr_Occurred()) SWIG_fail;
12594 }
12595 if (obj3) {
12596 {
12597 arg4 = wxString_in_helper(obj3);
12598 if (arg4 == NULL) SWIG_fail;
12599 temp4 = True;
12600 }
12601 }
12602 if (obj4) {
12603 {
12604 arg5 = &temp5;
12605 if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
12606 }
12607 }
12608 if (obj5) {
12609 {
12610 arg6 = &temp6;
12611 if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
12612 }
12613 }
12614 if (obj6) {
12615 arg7 = (long) SWIG_AsLong(obj6);
12616 if (PyErr_Occurred()) SWIG_fail;
12617 }
12618 if (obj7) {
12619 if ((SWIG_ConvertPtr(obj7,(void **)(&arg8),SWIGTYPE_p_wxValidator,
12620 SWIG_POINTER_EXCEPTION | 0)) == -1)
12621 SWIG_fail;
12622 if (arg8 == NULL) {
12623 PyErr_SetString(PyExc_TypeError,"null reference");
12624 SWIG_fail;
12625 }
12626 }
12627 if (obj8) {
12628 {
12629 arg9 = wxString_in_helper(obj8);
12630 if (arg9 == NULL) SWIG_fail;
12631 temp9 = True;
12632 }
12633 }
12634 {
12635 PyThreadState* __tstate = wxPyBeginAllowThreads();
12636 result = (bool)(arg1)->Create(arg2,arg3,(wxString const &)*arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,arg7,(wxValidator const &)*arg8,(wxString const &)*arg9);
12637
12638 wxPyEndAllowThreads(__tstate);
12639 if (PyErr_Occurred()) SWIG_fail;
12640 }
12641 {
12642 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
12643 }
12644 {
12645 if (temp4)
12646 delete arg4;
12647 }
12648 {
12649 if (temp9)
12650 delete arg9;
12651 }
12652 return resultobj;
12653 fail:
12654 {
12655 if (temp4)
12656 delete arg4;
12657 }
12658 {
12659 if (temp9)
12660 delete arg9;
12661 }
12662 return NULL;
12663 }
12664
12665
12666 static PyObject *_wrap_RadioButton_GetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
12667 PyObject *resultobj;
12668 wxRadioButton *arg1 = (wxRadioButton *) 0 ;
12669 bool result;
12670 PyObject * obj0 = 0 ;
12671 char *kwnames[] = {
12672 (char *) "self", NULL
12673 };
12674
12675 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:RadioButton_GetValue",kwnames,&obj0)) goto fail;
12676 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioButton,
12677 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12678 {
12679 PyThreadState* __tstate = wxPyBeginAllowThreads();
12680 result = (bool)(arg1)->GetValue();
12681
12682 wxPyEndAllowThreads(__tstate);
12683 if (PyErr_Occurred()) SWIG_fail;
12684 }
12685 {
12686 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
12687 }
12688 return resultobj;
12689 fail:
12690 return NULL;
12691 }
12692
12693
12694 static PyObject *_wrap_RadioButton_SetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
12695 PyObject *resultobj;
12696 wxRadioButton *arg1 = (wxRadioButton *) 0 ;
12697 bool arg2 ;
12698 PyObject * obj0 = 0 ;
12699 PyObject * obj1 = 0 ;
12700 char *kwnames[] = {
12701 (char *) "self",(char *) "value", NULL
12702 };
12703
12704 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:RadioButton_SetValue",kwnames,&obj0,&obj1)) goto fail;
12705 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxRadioButton,
12706 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12707 arg2 = (bool) SWIG_AsBool(obj1);
12708 if (PyErr_Occurred()) SWIG_fail;
12709 {
12710 PyThreadState* __tstate = wxPyBeginAllowThreads();
12711 (arg1)->SetValue(arg2);
12712
12713 wxPyEndAllowThreads(__tstate);
12714 if (PyErr_Occurred()) SWIG_fail;
12715 }
12716 Py_INCREF(Py_None); resultobj = Py_None;
12717 return resultobj;
12718 fail:
12719 return NULL;
12720 }
12721
12722
12723 static PyObject *_wrap_RadioButton_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
12724 PyObject *resultobj;
12725 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
12726 wxVisualAttributes result;
12727 PyObject * obj0 = 0 ;
12728 char *kwnames[] = {
12729 (char *) "variant", NULL
12730 };
12731
12732 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:RadioButton_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
12733 if (obj0) {
12734 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
12735 if (PyErr_Occurred()) SWIG_fail;
12736 }
12737 {
12738 if (!wxPyCheckForApp()) SWIG_fail;
12739 PyThreadState* __tstate = wxPyBeginAllowThreads();
12740 result = wxRadioButton::GetClassDefaultAttributes((wxWindowVariant )arg1);
12741
12742 wxPyEndAllowThreads(__tstate);
12743 if (PyErr_Occurred()) SWIG_fail;
12744 }
12745 {
12746 wxVisualAttributes * resultptr;
12747 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
12748 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
12749 }
12750 return resultobj;
12751 fail:
12752 return NULL;
12753 }
12754
12755
12756 static PyObject * RadioButton_swigregister(PyObject *self, PyObject *args) {
12757 PyObject *obj;
12758 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
12759 SWIG_TypeClientData(SWIGTYPE_p_wxRadioButton, obj);
12760 Py_INCREF(obj);
12761 return Py_BuildValue((char *)"");
12762 }
12763 static int _wrap_SliderNameStr_set(PyObject *_val) {
12764 PyErr_SetString(PyExc_TypeError,"Variable SliderNameStr is read-only.");
12765 return 1;
12766 }
12767
12768
12769 static PyObject *_wrap_SliderNameStr_get() {
12770 PyObject *pyobj;
12771
12772 {
12773 #if wxUSE_UNICODE
12774 pyobj = PyUnicode_FromWideChar((&wxPySliderNameStr)->c_str(), (&wxPySliderNameStr)->Len());
12775 #else
12776 pyobj = PyString_FromStringAndSize((&wxPySliderNameStr)->c_str(), (&wxPySliderNameStr)->Len());
12777 #endif
12778 }
12779 return pyobj;
12780 }
12781
12782
12783 static PyObject *_wrap_new_Slider(PyObject *self, PyObject *args, PyObject *kwargs) {
12784 PyObject *resultobj;
12785 wxWindow *arg1 = (wxWindow *) 0 ;
12786 int arg2 = (int) -1 ;
12787 int arg3 = (int) 0 ;
12788 int arg4 = (int) 0 ;
12789 int arg5 = (int) 100 ;
12790 wxPoint const &arg6_defvalue = wxDefaultPosition ;
12791 wxPoint *arg6 = (wxPoint *) &arg6_defvalue ;
12792 wxSize const &arg7_defvalue = wxDefaultSize ;
12793 wxSize *arg7 = (wxSize *) &arg7_defvalue ;
12794 long arg8 = (long) wxSL_HORIZONTAL ;
12795 wxValidator const &arg9_defvalue = wxDefaultValidator ;
12796 wxValidator *arg9 = (wxValidator *) &arg9_defvalue ;
12797 wxString const &arg10_defvalue = wxPySliderNameStr ;
12798 wxString *arg10 = (wxString *) &arg10_defvalue ;
12799 wxSlider *result;
12800 wxPoint temp6 ;
12801 wxSize temp7 ;
12802 bool temp10 = False ;
12803 PyObject * obj0 = 0 ;
12804 PyObject * obj1 = 0 ;
12805 PyObject * obj2 = 0 ;
12806 PyObject * obj3 = 0 ;
12807 PyObject * obj4 = 0 ;
12808 PyObject * obj5 = 0 ;
12809 PyObject * obj6 = 0 ;
12810 PyObject * obj7 = 0 ;
12811 PyObject * obj8 = 0 ;
12812 PyObject * obj9 = 0 ;
12813 char *kwnames[] = {
12814 (char *) "parent",(char *) "id",(char *) "value",(char *) "minValue",(char *) "maxValue",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
12815 };
12816
12817 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOOOO:new_Slider",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) goto fail;
12818 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
12819 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12820 if (obj1) {
12821 arg2 = (int) SWIG_AsInt(obj1);
12822 if (PyErr_Occurred()) SWIG_fail;
12823 }
12824 if (obj2) {
12825 arg3 = (int) SWIG_AsInt(obj2);
12826 if (PyErr_Occurred()) SWIG_fail;
12827 }
12828 if (obj3) {
12829 arg4 = (int) SWIG_AsInt(obj3);
12830 if (PyErr_Occurred()) SWIG_fail;
12831 }
12832 if (obj4) {
12833 arg5 = (int) SWIG_AsInt(obj4);
12834 if (PyErr_Occurred()) SWIG_fail;
12835 }
12836 if (obj5) {
12837 {
12838 arg6 = &temp6;
12839 if ( ! wxPoint_helper(obj5, &arg6)) SWIG_fail;
12840 }
12841 }
12842 if (obj6) {
12843 {
12844 arg7 = &temp7;
12845 if ( ! wxSize_helper(obj6, &arg7)) SWIG_fail;
12846 }
12847 }
12848 if (obj7) {
12849 arg8 = (long) SWIG_AsLong(obj7);
12850 if (PyErr_Occurred()) SWIG_fail;
12851 }
12852 if (obj8) {
12853 if ((SWIG_ConvertPtr(obj8,(void **)(&arg9),SWIGTYPE_p_wxValidator,
12854 SWIG_POINTER_EXCEPTION | 0)) == -1)
12855 SWIG_fail;
12856 if (arg9 == NULL) {
12857 PyErr_SetString(PyExc_TypeError,"null reference");
12858 SWIG_fail;
12859 }
12860 }
12861 if (obj9) {
12862 {
12863 arg10 = wxString_in_helper(obj9);
12864 if (arg10 == NULL) SWIG_fail;
12865 temp10 = True;
12866 }
12867 }
12868 {
12869 if (!wxPyCheckForApp()) SWIG_fail;
12870 PyThreadState* __tstate = wxPyBeginAllowThreads();
12871 result = (wxSlider *)new wxSlider(arg1,arg2,arg3,arg4,arg5,(wxPoint const &)*arg6,(wxSize const &)*arg7,arg8,(wxValidator const &)*arg9,(wxString const &)*arg10);
12872
12873 wxPyEndAllowThreads(__tstate);
12874 if (PyErr_Occurred()) SWIG_fail;
12875 }
12876 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxSlider, 1);
12877 {
12878 if (temp10)
12879 delete arg10;
12880 }
12881 return resultobj;
12882 fail:
12883 {
12884 if (temp10)
12885 delete arg10;
12886 }
12887 return NULL;
12888 }
12889
12890
12891 static PyObject *_wrap_new_PreSlider(PyObject *self, PyObject *args, PyObject *kwargs) {
12892 PyObject *resultobj;
12893 wxSlider *result;
12894 char *kwnames[] = {
12895 NULL
12896 };
12897
12898 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreSlider",kwnames)) goto fail;
12899 {
12900 if (!wxPyCheckForApp()) SWIG_fail;
12901 PyThreadState* __tstate = wxPyBeginAllowThreads();
12902 result = (wxSlider *)new wxSlider();
12903
12904 wxPyEndAllowThreads(__tstate);
12905 if (PyErr_Occurred()) SWIG_fail;
12906 }
12907 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxSlider, 1);
12908 return resultobj;
12909 fail:
12910 return NULL;
12911 }
12912
12913
12914 static PyObject *_wrap_Slider_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
12915 PyObject *resultobj;
12916 wxSlider *arg1 = (wxSlider *) 0 ;
12917 wxWindow *arg2 = (wxWindow *) 0 ;
12918 int arg3 = (int) -1 ;
12919 int arg4 = (int) 0 ;
12920 int arg5 = (int) 0 ;
12921 int arg6 = (int) 100 ;
12922 wxPoint const &arg7_defvalue = wxDefaultPosition ;
12923 wxPoint *arg7 = (wxPoint *) &arg7_defvalue ;
12924 wxSize const &arg8_defvalue = wxDefaultSize ;
12925 wxSize *arg8 = (wxSize *) &arg8_defvalue ;
12926 long arg9 = (long) wxSL_HORIZONTAL ;
12927 wxValidator const &arg10_defvalue = wxDefaultValidator ;
12928 wxValidator *arg10 = (wxValidator *) &arg10_defvalue ;
12929 wxString const &arg11_defvalue = wxPySliderNameStr ;
12930 wxString *arg11 = (wxString *) &arg11_defvalue ;
12931 bool result;
12932 wxPoint temp7 ;
12933 wxSize temp8 ;
12934 bool temp11 = False ;
12935 PyObject * obj0 = 0 ;
12936 PyObject * obj1 = 0 ;
12937 PyObject * obj2 = 0 ;
12938 PyObject * obj3 = 0 ;
12939 PyObject * obj4 = 0 ;
12940 PyObject * obj5 = 0 ;
12941 PyObject * obj6 = 0 ;
12942 PyObject * obj7 = 0 ;
12943 PyObject * obj8 = 0 ;
12944 PyObject * obj9 = 0 ;
12945 PyObject * obj10 = 0 ;
12946 char *kwnames[] = {
12947 (char *) "self",(char *) "parent",(char *) "id",(char *) "value",(char *) "minValue",(char *) "maxValue",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
12948 };
12949
12950 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOOOO:Slider_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10)) goto fail;
12951 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
12952 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12953 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
12954 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
12955 if (obj2) {
12956 arg3 = (int) SWIG_AsInt(obj2);
12957 if (PyErr_Occurred()) SWIG_fail;
12958 }
12959 if (obj3) {
12960 arg4 = (int) SWIG_AsInt(obj3);
12961 if (PyErr_Occurred()) SWIG_fail;
12962 }
12963 if (obj4) {
12964 arg5 = (int) SWIG_AsInt(obj4);
12965 if (PyErr_Occurred()) SWIG_fail;
12966 }
12967 if (obj5) {
12968 arg6 = (int) SWIG_AsInt(obj5);
12969 if (PyErr_Occurred()) SWIG_fail;
12970 }
12971 if (obj6) {
12972 {
12973 arg7 = &temp7;
12974 if ( ! wxPoint_helper(obj6, &arg7)) SWIG_fail;
12975 }
12976 }
12977 if (obj7) {
12978 {
12979 arg8 = &temp8;
12980 if ( ! wxSize_helper(obj7, &arg8)) SWIG_fail;
12981 }
12982 }
12983 if (obj8) {
12984 arg9 = (long) SWIG_AsLong(obj8);
12985 if (PyErr_Occurred()) SWIG_fail;
12986 }
12987 if (obj9) {
12988 if ((SWIG_ConvertPtr(obj9,(void **)(&arg10),SWIGTYPE_p_wxValidator,
12989 SWIG_POINTER_EXCEPTION | 0)) == -1)
12990 SWIG_fail;
12991 if (arg10 == NULL) {
12992 PyErr_SetString(PyExc_TypeError,"null reference");
12993 SWIG_fail;
12994 }
12995 }
12996 if (obj10) {
12997 {
12998 arg11 = wxString_in_helper(obj10);
12999 if (arg11 == NULL) SWIG_fail;
13000 temp11 = True;
13001 }
13002 }
13003 {
13004 PyThreadState* __tstate = wxPyBeginAllowThreads();
13005 result = (bool)(arg1)->Create(arg2,arg3,arg4,arg5,arg6,(wxPoint const &)*arg7,(wxSize const &)*arg8,arg9,(wxValidator const &)*arg10,(wxString const &)*arg11);
13006
13007 wxPyEndAllowThreads(__tstate);
13008 if (PyErr_Occurred()) SWIG_fail;
13009 }
13010 {
13011 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
13012 }
13013 {
13014 if (temp11)
13015 delete arg11;
13016 }
13017 return resultobj;
13018 fail:
13019 {
13020 if (temp11)
13021 delete arg11;
13022 }
13023 return NULL;
13024 }
13025
13026
13027 static PyObject *_wrap_Slider_GetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
13028 PyObject *resultobj;
13029 wxSlider *arg1 = (wxSlider *) 0 ;
13030 int result;
13031 PyObject * obj0 = 0 ;
13032 char *kwnames[] = {
13033 (char *) "self", NULL
13034 };
13035
13036 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Slider_GetValue",kwnames,&obj0)) goto fail;
13037 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13038 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13039 {
13040 PyThreadState* __tstate = wxPyBeginAllowThreads();
13041 result = (int)((wxSlider const *)arg1)->GetValue();
13042
13043 wxPyEndAllowThreads(__tstate);
13044 if (PyErr_Occurred()) SWIG_fail;
13045 }
13046 resultobj = SWIG_FromInt((int)result);
13047 return resultobj;
13048 fail:
13049 return NULL;
13050 }
13051
13052
13053 static PyObject *_wrap_Slider_SetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
13054 PyObject *resultobj;
13055 wxSlider *arg1 = (wxSlider *) 0 ;
13056 int arg2 ;
13057 PyObject * obj0 = 0 ;
13058 PyObject * obj1 = 0 ;
13059 char *kwnames[] = {
13060 (char *) "self",(char *) "value", NULL
13061 };
13062
13063 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Slider_SetValue",kwnames,&obj0,&obj1)) goto fail;
13064 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13065 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13066 arg2 = (int) SWIG_AsInt(obj1);
13067 if (PyErr_Occurred()) SWIG_fail;
13068 {
13069 PyThreadState* __tstate = wxPyBeginAllowThreads();
13070 (arg1)->SetValue(arg2);
13071
13072 wxPyEndAllowThreads(__tstate);
13073 if (PyErr_Occurred()) SWIG_fail;
13074 }
13075 Py_INCREF(Py_None); resultobj = Py_None;
13076 return resultobj;
13077 fail:
13078 return NULL;
13079 }
13080
13081
13082 static PyObject *_wrap_Slider_SetRange(PyObject *self, PyObject *args, PyObject *kwargs) {
13083 PyObject *resultobj;
13084 wxSlider *arg1 = (wxSlider *) 0 ;
13085 int arg2 ;
13086 int arg3 ;
13087 PyObject * obj0 = 0 ;
13088 PyObject * obj1 = 0 ;
13089 PyObject * obj2 = 0 ;
13090 char *kwnames[] = {
13091 (char *) "self",(char *) "minValue",(char *) "maxValue", NULL
13092 };
13093
13094 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:Slider_SetRange",kwnames,&obj0,&obj1,&obj2)) goto fail;
13095 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13096 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13097 arg2 = (int) SWIG_AsInt(obj1);
13098 if (PyErr_Occurred()) SWIG_fail;
13099 arg3 = (int) SWIG_AsInt(obj2);
13100 if (PyErr_Occurred()) SWIG_fail;
13101 {
13102 PyThreadState* __tstate = wxPyBeginAllowThreads();
13103 (arg1)->SetRange(arg2,arg3);
13104
13105 wxPyEndAllowThreads(__tstate);
13106 if (PyErr_Occurred()) SWIG_fail;
13107 }
13108 Py_INCREF(Py_None); resultobj = Py_None;
13109 return resultobj;
13110 fail:
13111 return NULL;
13112 }
13113
13114
13115 static PyObject *_wrap_Slider_GetMin(PyObject *self, PyObject *args, PyObject *kwargs) {
13116 PyObject *resultobj;
13117 wxSlider *arg1 = (wxSlider *) 0 ;
13118 int result;
13119 PyObject * obj0 = 0 ;
13120 char *kwnames[] = {
13121 (char *) "self", NULL
13122 };
13123
13124 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Slider_GetMin",kwnames,&obj0)) goto fail;
13125 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13126 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13127 {
13128 PyThreadState* __tstate = wxPyBeginAllowThreads();
13129 result = (int)((wxSlider const *)arg1)->GetMin();
13130
13131 wxPyEndAllowThreads(__tstate);
13132 if (PyErr_Occurred()) SWIG_fail;
13133 }
13134 resultobj = SWIG_FromInt((int)result);
13135 return resultobj;
13136 fail:
13137 return NULL;
13138 }
13139
13140
13141 static PyObject *_wrap_Slider_GetMax(PyObject *self, PyObject *args, PyObject *kwargs) {
13142 PyObject *resultobj;
13143 wxSlider *arg1 = (wxSlider *) 0 ;
13144 int result;
13145 PyObject * obj0 = 0 ;
13146 char *kwnames[] = {
13147 (char *) "self", NULL
13148 };
13149
13150 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Slider_GetMax",kwnames,&obj0)) goto fail;
13151 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13152 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13153 {
13154 PyThreadState* __tstate = wxPyBeginAllowThreads();
13155 result = (int)((wxSlider const *)arg1)->GetMax();
13156
13157 wxPyEndAllowThreads(__tstate);
13158 if (PyErr_Occurred()) SWIG_fail;
13159 }
13160 resultobj = SWIG_FromInt((int)result);
13161 return resultobj;
13162 fail:
13163 return NULL;
13164 }
13165
13166
13167 static PyObject *_wrap_Slider_SetMin(PyObject *self, PyObject *args, PyObject *kwargs) {
13168 PyObject *resultobj;
13169 wxSlider *arg1 = (wxSlider *) 0 ;
13170 int arg2 ;
13171 PyObject * obj0 = 0 ;
13172 PyObject * obj1 = 0 ;
13173 char *kwnames[] = {
13174 (char *) "self",(char *) "minValue", NULL
13175 };
13176
13177 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Slider_SetMin",kwnames,&obj0,&obj1)) goto fail;
13178 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13179 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13180 arg2 = (int) SWIG_AsInt(obj1);
13181 if (PyErr_Occurred()) SWIG_fail;
13182 {
13183 PyThreadState* __tstate = wxPyBeginAllowThreads();
13184 (arg1)->SetMin(arg2);
13185
13186 wxPyEndAllowThreads(__tstate);
13187 if (PyErr_Occurred()) SWIG_fail;
13188 }
13189 Py_INCREF(Py_None); resultobj = Py_None;
13190 return resultobj;
13191 fail:
13192 return NULL;
13193 }
13194
13195
13196 static PyObject *_wrap_Slider_SetMax(PyObject *self, PyObject *args, PyObject *kwargs) {
13197 PyObject *resultobj;
13198 wxSlider *arg1 = (wxSlider *) 0 ;
13199 int arg2 ;
13200 PyObject * obj0 = 0 ;
13201 PyObject * obj1 = 0 ;
13202 char *kwnames[] = {
13203 (char *) "self",(char *) "maxValue", NULL
13204 };
13205
13206 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Slider_SetMax",kwnames,&obj0,&obj1)) goto fail;
13207 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13208 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13209 arg2 = (int) SWIG_AsInt(obj1);
13210 if (PyErr_Occurred()) SWIG_fail;
13211 {
13212 PyThreadState* __tstate = wxPyBeginAllowThreads();
13213 (arg1)->SetMax(arg2);
13214
13215 wxPyEndAllowThreads(__tstate);
13216 if (PyErr_Occurred()) SWIG_fail;
13217 }
13218 Py_INCREF(Py_None); resultobj = Py_None;
13219 return resultobj;
13220 fail:
13221 return NULL;
13222 }
13223
13224
13225 static PyObject *_wrap_Slider_SetLineSize(PyObject *self, PyObject *args, PyObject *kwargs) {
13226 PyObject *resultobj;
13227 wxSlider *arg1 = (wxSlider *) 0 ;
13228 int arg2 ;
13229 PyObject * obj0 = 0 ;
13230 PyObject * obj1 = 0 ;
13231 char *kwnames[] = {
13232 (char *) "self",(char *) "lineSize", NULL
13233 };
13234
13235 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Slider_SetLineSize",kwnames,&obj0,&obj1)) goto fail;
13236 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13237 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13238 arg2 = (int) SWIG_AsInt(obj1);
13239 if (PyErr_Occurred()) SWIG_fail;
13240 {
13241 PyThreadState* __tstate = wxPyBeginAllowThreads();
13242 (arg1)->SetLineSize(arg2);
13243
13244 wxPyEndAllowThreads(__tstate);
13245 if (PyErr_Occurred()) SWIG_fail;
13246 }
13247 Py_INCREF(Py_None); resultobj = Py_None;
13248 return resultobj;
13249 fail:
13250 return NULL;
13251 }
13252
13253
13254 static PyObject *_wrap_Slider_SetPageSize(PyObject *self, PyObject *args, PyObject *kwargs) {
13255 PyObject *resultobj;
13256 wxSlider *arg1 = (wxSlider *) 0 ;
13257 int arg2 ;
13258 PyObject * obj0 = 0 ;
13259 PyObject * obj1 = 0 ;
13260 char *kwnames[] = {
13261 (char *) "self",(char *) "pageSize", NULL
13262 };
13263
13264 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Slider_SetPageSize",kwnames,&obj0,&obj1)) goto fail;
13265 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13266 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13267 arg2 = (int) SWIG_AsInt(obj1);
13268 if (PyErr_Occurred()) SWIG_fail;
13269 {
13270 PyThreadState* __tstate = wxPyBeginAllowThreads();
13271 (arg1)->SetPageSize(arg2);
13272
13273 wxPyEndAllowThreads(__tstate);
13274 if (PyErr_Occurred()) SWIG_fail;
13275 }
13276 Py_INCREF(Py_None); resultobj = Py_None;
13277 return resultobj;
13278 fail:
13279 return NULL;
13280 }
13281
13282
13283 static PyObject *_wrap_Slider_GetLineSize(PyObject *self, PyObject *args, PyObject *kwargs) {
13284 PyObject *resultobj;
13285 wxSlider *arg1 = (wxSlider *) 0 ;
13286 int result;
13287 PyObject * obj0 = 0 ;
13288 char *kwnames[] = {
13289 (char *) "self", NULL
13290 };
13291
13292 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Slider_GetLineSize",kwnames,&obj0)) goto fail;
13293 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13294 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13295 {
13296 PyThreadState* __tstate = wxPyBeginAllowThreads();
13297 result = (int)((wxSlider const *)arg1)->GetLineSize();
13298
13299 wxPyEndAllowThreads(__tstate);
13300 if (PyErr_Occurred()) SWIG_fail;
13301 }
13302 resultobj = SWIG_FromInt((int)result);
13303 return resultobj;
13304 fail:
13305 return NULL;
13306 }
13307
13308
13309 static PyObject *_wrap_Slider_GetPageSize(PyObject *self, PyObject *args, PyObject *kwargs) {
13310 PyObject *resultobj;
13311 wxSlider *arg1 = (wxSlider *) 0 ;
13312 int result;
13313 PyObject * obj0 = 0 ;
13314 char *kwnames[] = {
13315 (char *) "self", NULL
13316 };
13317
13318 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Slider_GetPageSize",kwnames,&obj0)) goto fail;
13319 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13320 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13321 {
13322 PyThreadState* __tstate = wxPyBeginAllowThreads();
13323 result = (int)((wxSlider const *)arg1)->GetPageSize();
13324
13325 wxPyEndAllowThreads(__tstate);
13326 if (PyErr_Occurred()) SWIG_fail;
13327 }
13328 resultobj = SWIG_FromInt((int)result);
13329 return resultobj;
13330 fail:
13331 return NULL;
13332 }
13333
13334
13335 static PyObject *_wrap_Slider_SetThumbLength(PyObject *self, PyObject *args, PyObject *kwargs) {
13336 PyObject *resultobj;
13337 wxSlider *arg1 = (wxSlider *) 0 ;
13338 int arg2 ;
13339 PyObject * obj0 = 0 ;
13340 PyObject * obj1 = 0 ;
13341 char *kwnames[] = {
13342 (char *) "self",(char *) "lenPixels", NULL
13343 };
13344
13345 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Slider_SetThumbLength",kwnames,&obj0,&obj1)) goto fail;
13346 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13347 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13348 arg2 = (int) SWIG_AsInt(obj1);
13349 if (PyErr_Occurred()) SWIG_fail;
13350 {
13351 PyThreadState* __tstate = wxPyBeginAllowThreads();
13352 (arg1)->SetThumbLength(arg2);
13353
13354 wxPyEndAllowThreads(__tstate);
13355 if (PyErr_Occurred()) SWIG_fail;
13356 }
13357 Py_INCREF(Py_None); resultobj = Py_None;
13358 return resultobj;
13359 fail:
13360 return NULL;
13361 }
13362
13363
13364 static PyObject *_wrap_Slider_GetThumbLength(PyObject *self, PyObject *args, PyObject *kwargs) {
13365 PyObject *resultobj;
13366 wxSlider *arg1 = (wxSlider *) 0 ;
13367 int result;
13368 PyObject * obj0 = 0 ;
13369 char *kwnames[] = {
13370 (char *) "self", NULL
13371 };
13372
13373 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Slider_GetThumbLength",kwnames,&obj0)) goto fail;
13374 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13375 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13376 {
13377 PyThreadState* __tstate = wxPyBeginAllowThreads();
13378 result = (int)((wxSlider const *)arg1)->GetThumbLength();
13379
13380 wxPyEndAllowThreads(__tstate);
13381 if (PyErr_Occurred()) SWIG_fail;
13382 }
13383 resultobj = SWIG_FromInt((int)result);
13384 return resultobj;
13385 fail:
13386 return NULL;
13387 }
13388
13389
13390 static PyObject *_wrap_Slider_SetTickFreq(PyObject *self, PyObject *args, PyObject *kwargs) {
13391 PyObject *resultobj;
13392 wxSlider *arg1 = (wxSlider *) 0 ;
13393 int arg2 ;
13394 int arg3 = (int) 1 ;
13395 PyObject * obj0 = 0 ;
13396 PyObject * obj1 = 0 ;
13397 PyObject * obj2 = 0 ;
13398 char *kwnames[] = {
13399 (char *) "self",(char *) "n",(char *) "pos", NULL
13400 };
13401
13402 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:Slider_SetTickFreq",kwnames,&obj0,&obj1,&obj2)) goto fail;
13403 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13404 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13405 arg2 = (int) SWIG_AsInt(obj1);
13406 if (PyErr_Occurred()) SWIG_fail;
13407 if (obj2) {
13408 arg3 = (int) SWIG_AsInt(obj2);
13409 if (PyErr_Occurred()) SWIG_fail;
13410 }
13411 {
13412 PyThreadState* __tstate = wxPyBeginAllowThreads();
13413 (arg1)->SetTickFreq(arg2,arg3);
13414
13415 wxPyEndAllowThreads(__tstate);
13416 if (PyErr_Occurred()) SWIG_fail;
13417 }
13418 Py_INCREF(Py_None); resultobj = Py_None;
13419 return resultobj;
13420 fail:
13421 return NULL;
13422 }
13423
13424
13425 static PyObject *_wrap_Slider_GetTickFreq(PyObject *self, PyObject *args, PyObject *kwargs) {
13426 PyObject *resultobj;
13427 wxSlider *arg1 = (wxSlider *) 0 ;
13428 int result;
13429 PyObject * obj0 = 0 ;
13430 char *kwnames[] = {
13431 (char *) "self", NULL
13432 };
13433
13434 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Slider_GetTickFreq",kwnames,&obj0)) goto fail;
13435 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13436 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13437 {
13438 PyThreadState* __tstate = wxPyBeginAllowThreads();
13439 result = (int)((wxSlider const *)arg1)->GetTickFreq();
13440
13441 wxPyEndAllowThreads(__tstate);
13442 if (PyErr_Occurred()) SWIG_fail;
13443 }
13444 resultobj = SWIG_FromInt((int)result);
13445 return resultobj;
13446 fail:
13447 return NULL;
13448 }
13449
13450
13451 static PyObject *_wrap_Slider_ClearTicks(PyObject *self, PyObject *args, PyObject *kwargs) {
13452 PyObject *resultobj;
13453 wxSlider *arg1 = (wxSlider *) 0 ;
13454 PyObject * obj0 = 0 ;
13455 char *kwnames[] = {
13456 (char *) "self", NULL
13457 };
13458
13459 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Slider_ClearTicks",kwnames,&obj0)) goto fail;
13460 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13461 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13462 {
13463 PyThreadState* __tstate = wxPyBeginAllowThreads();
13464 (arg1)->ClearTicks();
13465
13466 wxPyEndAllowThreads(__tstate);
13467 if (PyErr_Occurred()) SWIG_fail;
13468 }
13469 Py_INCREF(Py_None); resultobj = Py_None;
13470 return resultobj;
13471 fail:
13472 return NULL;
13473 }
13474
13475
13476 static PyObject *_wrap_Slider_SetTick(PyObject *self, PyObject *args, PyObject *kwargs) {
13477 PyObject *resultobj;
13478 wxSlider *arg1 = (wxSlider *) 0 ;
13479 int arg2 ;
13480 PyObject * obj0 = 0 ;
13481 PyObject * obj1 = 0 ;
13482 char *kwnames[] = {
13483 (char *) "self",(char *) "tickPos", NULL
13484 };
13485
13486 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Slider_SetTick",kwnames,&obj0,&obj1)) goto fail;
13487 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13488 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13489 arg2 = (int) SWIG_AsInt(obj1);
13490 if (PyErr_Occurred()) SWIG_fail;
13491 {
13492 PyThreadState* __tstate = wxPyBeginAllowThreads();
13493 (arg1)->SetTick(arg2);
13494
13495 wxPyEndAllowThreads(__tstate);
13496 if (PyErr_Occurred()) SWIG_fail;
13497 }
13498 Py_INCREF(Py_None); resultobj = Py_None;
13499 return resultobj;
13500 fail:
13501 return NULL;
13502 }
13503
13504
13505 static PyObject *_wrap_Slider_ClearSel(PyObject *self, PyObject *args, PyObject *kwargs) {
13506 PyObject *resultobj;
13507 wxSlider *arg1 = (wxSlider *) 0 ;
13508 PyObject * obj0 = 0 ;
13509 char *kwnames[] = {
13510 (char *) "self", NULL
13511 };
13512
13513 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Slider_ClearSel",kwnames,&obj0)) goto fail;
13514 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13515 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13516 {
13517 PyThreadState* __tstate = wxPyBeginAllowThreads();
13518 (arg1)->ClearSel();
13519
13520 wxPyEndAllowThreads(__tstate);
13521 if (PyErr_Occurred()) SWIG_fail;
13522 }
13523 Py_INCREF(Py_None); resultobj = Py_None;
13524 return resultobj;
13525 fail:
13526 return NULL;
13527 }
13528
13529
13530 static PyObject *_wrap_Slider_GetSelEnd(PyObject *self, PyObject *args, PyObject *kwargs) {
13531 PyObject *resultobj;
13532 wxSlider *arg1 = (wxSlider *) 0 ;
13533 int result;
13534 PyObject * obj0 = 0 ;
13535 char *kwnames[] = {
13536 (char *) "self", NULL
13537 };
13538
13539 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Slider_GetSelEnd",kwnames,&obj0)) goto fail;
13540 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13541 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13542 {
13543 PyThreadState* __tstate = wxPyBeginAllowThreads();
13544 result = (int)((wxSlider const *)arg1)->GetSelEnd();
13545
13546 wxPyEndAllowThreads(__tstate);
13547 if (PyErr_Occurred()) SWIG_fail;
13548 }
13549 resultobj = SWIG_FromInt((int)result);
13550 return resultobj;
13551 fail:
13552 return NULL;
13553 }
13554
13555
13556 static PyObject *_wrap_Slider_GetSelStart(PyObject *self, PyObject *args, PyObject *kwargs) {
13557 PyObject *resultobj;
13558 wxSlider *arg1 = (wxSlider *) 0 ;
13559 int result;
13560 PyObject * obj0 = 0 ;
13561 char *kwnames[] = {
13562 (char *) "self", NULL
13563 };
13564
13565 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Slider_GetSelStart",kwnames,&obj0)) goto fail;
13566 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13567 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13568 {
13569 PyThreadState* __tstate = wxPyBeginAllowThreads();
13570 result = (int)((wxSlider const *)arg1)->GetSelStart();
13571
13572 wxPyEndAllowThreads(__tstate);
13573 if (PyErr_Occurred()) SWIG_fail;
13574 }
13575 resultobj = SWIG_FromInt((int)result);
13576 return resultobj;
13577 fail:
13578 return NULL;
13579 }
13580
13581
13582 static PyObject *_wrap_Slider_SetSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
13583 PyObject *resultobj;
13584 wxSlider *arg1 = (wxSlider *) 0 ;
13585 int arg2 ;
13586 int arg3 ;
13587 PyObject * obj0 = 0 ;
13588 PyObject * obj1 = 0 ;
13589 PyObject * obj2 = 0 ;
13590 char *kwnames[] = {
13591 (char *) "self",(char *) "min",(char *) "max", NULL
13592 };
13593
13594 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:Slider_SetSelection",kwnames,&obj0,&obj1,&obj2)) goto fail;
13595 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxSlider,
13596 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13597 arg2 = (int) SWIG_AsInt(obj1);
13598 if (PyErr_Occurred()) SWIG_fail;
13599 arg3 = (int) SWIG_AsInt(obj2);
13600 if (PyErr_Occurred()) SWIG_fail;
13601 {
13602 PyThreadState* __tstate = wxPyBeginAllowThreads();
13603 (arg1)->SetSelection(arg2,arg3);
13604
13605 wxPyEndAllowThreads(__tstate);
13606 if (PyErr_Occurred()) SWIG_fail;
13607 }
13608 Py_INCREF(Py_None); resultobj = Py_None;
13609 return resultobj;
13610 fail:
13611 return NULL;
13612 }
13613
13614
13615 static PyObject *_wrap_Slider_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
13616 PyObject *resultobj;
13617 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
13618 wxVisualAttributes result;
13619 PyObject * obj0 = 0 ;
13620 char *kwnames[] = {
13621 (char *) "variant", NULL
13622 };
13623
13624 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:Slider_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
13625 if (obj0) {
13626 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
13627 if (PyErr_Occurred()) SWIG_fail;
13628 }
13629 {
13630 if (!wxPyCheckForApp()) SWIG_fail;
13631 PyThreadState* __tstate = wxPyBeginAllowThreads();
13632 result = wxSlider::GetClassDefaultAttributes((wxWindowVariant )arg1);
13633
13634 wxPyEndAllowThreads(__tstate);
13635 if (PyErr_Occurred()) SWIG_fail;
13636 }
13637 {
13638 wxVisualAttributes * resultptr;
13639 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
13640 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
13641 }
13642 return resultobj;
13643 fail:
13644 return NULL;
13645 }
13646
13647
13648 static PyObject * Slider_swigregister(PyObject *self, PyObject *args) {
13649 PyObject *obj;
13650 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
13651 SWIG_TypeClientData(SWIGTYPE_p_wxSlider, obj);
13652 Py_INCREF(obj);
13653 return Py_BuildValue((char *)"");
13654 }
13655 static int _wrap_ToggleButtonNameStr_set(PyObject *_val) {
13656 PyErr_SetString(PyExc_TypeError,"Variable ToggleButtonNameStr is read-only.");
13657 return 1;
13658 }
13659
13660
13661 static PyObject *_wrap_ToggleButtonNameStr_get() {
13662 PyObject *pyobj;
13663
13664 {
13665 #if wxUSE_UNICODE
13666 pyobj = PyUnicode_FromWideChar((&wxPyToggleButtonNameStr)->c_str(), (&wxPyToggleButtonNameStr)->Len());
13667 #else
13668 pyobj = PyString_FromStringAndSize((&wxPyToggleButtonNameStr)->c_str(), (&wxPyToggleButtonNameStr)->Len());
13669 #endif
13670 }
13671 return pyobj;
13672 }
13673
13674
13675 static PyObject *_wrap_new_ToggleButton(PyObject *self, PyObject *args, PyObject *kwargs) {
13676 PyObject *resultobj;
13677 wxWindow *arg1 = (wxWindow *) 0 ;
13678 int arg2 = (int) -1 ;
13679 wxString const &arg3_defvalue = wxPyEmptyString ;
13680 wxString *arg3 = (wxString *) &arg3_defvalue ;
13681 wxPoint const &arg4_defvalue = wxDefaultPosition ;
13682 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
13683 wxSize const &arg5_defvalue = wxDefaultSize ;
13684 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
13685 long arg6 = (long) 0 ;
13686 wxValidator const &arg7_defvalue = wxDefaultValidator ;
13687 wxValidator *arg7 = (wxValidator *) &arg7_defvalue ;
13688 wxString const &arg8_defvalue = wxPyToggleButtonNameStr ;
13689 wxString *arg8 = (wxString *) &arg8_defvalue ;
13690 wxToggleButton *result;
13691 bool temp3 = False ;
13692 wxPoint temp4 ;
13693 wxSize temp5 ;
13694 bool temp8 = False ;
13695 PyObject * obj0 = 0 ;
13696 PyObject * obj1 = 0 ;
13697 PyObject * obj2 = 0 ;
13698 PyObject * obj3 = 0 ;
13699 PyObject * obj4 = 0 ;
13700 PyObject * obj5 = 0 ;
13701 PyObject * obj6 = 0 ;
13702 PyObject * obj7 = 0 ;
13703 char *kwnames[] = {
13704 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
13705 };
13706
13707 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOO:new_ToggleButton",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
13708 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
13709 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13710 if (obj1) {
13711 arg2 = (int) SWIG_AsInt(obj1);
13712 if (PyErr_Occurred()) SWIG_fail;
13713 }
13714 if (obj2) {
13715 {
13716 arg3 = wxString_in_helper(obj2);
13717 if (arg3 == NULL) SWIG_fail;
13718 temp3 = True;
13719 }
13720 }
13721 if (obj3) {
13722 {
13723 arg4 = &temp4;
13724 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
13725 }
13726 }
13727 if (obj4) {
13728 {
13729 arg5 = &temp5;
13730 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
13731 }
13732 }
13733 if (obj5) {
13734 arg6 = (long) SWIG_AsLong(obj5);
13735 if (PyErr_Occurred()) SWIG_fail;
13736 }
13737 if (obj6) {
13738 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxValidator,
13739 SWIG_POINTER_EXCEPTION | 0)) == -1)
13740 SWIG_fail;
13741 if (arg7 == NULL) {
13742 PyErr_SetString(PyExc_TypeError,"null reference");
13743 SWIG_fail;
13744 }
13745 }
13746 if (obj7) {
13747 {
13748 arg8 = wxString_in_helper(obj7);
13749 if (arg8 == NULL) SWIG_fail;
13750 temp8 = True;
13751 }
13752 }
13753 {
13754 if (!wxPyCheckForApp()) SWIG_fail;
13755 PyThreadState* __tstate = wxPyBeginAllowThreads();
13756 result = (wxToggleButton *)new wxToggleButton(arg1,arg2,(wxString const &)*arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxValidator const &)*arg7,(wxString const &)*arg8);
13757
13758 wxPyEndAllowThreads(__tstate);
13759 if (PyErr_Occurred()) SWIG_fail;
13760 }
13761 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxToggleButton, 1);
13762 {
13763 if (temp3)
13764 delete arg3;
13765 }
13766 {
13767 if (temp8)
13768 delete arg8;
13769 }
13770 return resultobj;
13771 fail:
13772 {
13773 if (temp3)
13774 delete arg3;
13775 }
13776 {
13777 if (temp8)
13778 delete arg8;
13779 }
13780 return NULL;
13781 }
13782
13783
13784 static PyObject *_wrap_new_PreToggleButton(PyObject *self, PyObject *args, PyObject *kwargs) {
13785 PyObject *resultobj;
13786 wxToggleButton *result;
13787 char *kwnames[] = {
13788 NULL
13789 };
13790
13791 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreToggleButton",kwnames)) goto fail;
13792 {
13793 if (!wxPyCheckForApp()) SWIG_fail;
13794 PyThreadState* __tstate = wxPyBeginAllowThreads();
13795 result = (wxToggleButton *)new wxToggleButton();
13796
13797 wxPyEndAllowThreads(__tstate);
13798 if (PyErr_Occurred()) SWIG_fail;
13799 }
13800 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxToggleButton, 1);
13801 return resultobj;
13802 fail:
13803 return NULL;
13804 }
13805
13806
13807 static PyObject *_wrap_ToggleButton_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
13808 PyObject *resultobj;
13809 wxToggleButton *arg1 = (wxToggleButton *) 0 ;
13810 wxWindow *arg2 = (wxWindow *) 0 ;
13811 int arg3 = (int) -1 ;
13812 wxString const &arg4_defvalue = wxPyEmptyString ;
13813 wxString *arg4 = (wxString *) &arg4_defvalue ;
13814 wxPoint const &arg5_defvalue = wxDefaultPosition ;
13815 wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
13816 wxSize const &arg6_defvalue = wxDefaultSize ;
13817 wxSize *arg6 = (wxSize *) &arg6_defvalue ;
13818 long arg7 = (long) 0 ;
13819 wxValidator const &arg8_defvalue = wxDefaultValidator ;
13820 wxValidator *arg8 = (wxValidator *) &arg8_defvalue ;
13821 wxString const &arg9_defvalue = wxPyToggleButtonNameStr ;
13822 wxString *arg9 = (wxString *) &arg9_defvalue ;
13823 bool result;
13824 bool temp4 = False ;
13825 wxPoint temp5 ;
13826 wxSize temp6 ;
13827 bool temp9 = False ;
13828 PyObject * obj0 = 0 ;
13829 PyObject * obj1 = 0 ;
13830 PyObject * obj2 = 0 ;
13831 PyObject * obj3 = 0 ;
13832 PyObject * obj4 = 0 ;
13833 PyObject * obj5 = 0 ;
13834 PyObject * obj6 = 0 ;
13835 PyObject * obj7 = 0 ;
13836 PyObject * obj8 = 0 ;
13837 char *kwnames[] = {
13838 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
13839 };
13840
13841 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOO:ToggleButton_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail;
13842 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToggleButton,
13843 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13844 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
13845 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13846 if (obj2) {
13847 arg3 = (int) SWIG_AsInt(obj2);
13848 if (PyErr_Occurred()) SWIG_fail;
13849 }
13850 if (obj3) {
13851 {
13852 arg4 = wxString_in_helper(obj3);
13853 if (arg4 == NULL) SWIG_fail;
13854 temp4 = True;
13855 }
13856 }
13857 if (obj4) {
13858 {
13859 arg5 = &temp5;
13860 if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
13861 }
13862 }
13863 if (obj5) {
13864 {
13865 arg6 = &temp6;
13866 if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
13867 }
13868 }
13869 if (obj6) {
13870 arg7 = (long) SWIG_AsLong(obj6);
13871 if (PyErr_Occurred()) SWIG_fail;
13872 }
13873 if (obj7) {
13874 if ((SWIG_ConvertPtr(obj7,(void **)(&arg8),SWIGTYPE_p_wxValidator,
13875 SWIG_POINTER_EXCEPTION | 0)) == -1)
13876 SWIG_fail;
13877 if (arg8 == NULL) {
13878 PyErr_SetString(PyExc_TypeError,"null reference");
13879 SWIG_fail;
13880 }
13881 }
13882 if (obj8) {
13883 {
13884 arg9 = wxString_in_helper(obj8);
13885 if (arg9 == NULL) SWIG_fail;
13886 temp9 = True;
13887 }
13888 }
13889 {
13890 PyThreadState* __tstate = wxPyBeginAllowThreads();
13891 result = (bool)(arg1)->Create(arg2,arg3,(wxString const &)*arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,arg7,(wxValidator const &)*arg8,(wxString const &)*arg9);
13892
13893 wxPyEndAllowThreads(__tstate);
13894 if (PyErr_Occurred()) SWIG_fail;
13895 }
13896 {
13897 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
13898 }
13899 {
13900 if (temp4)
13901 delete arg4;
13902 }
13903 {
13904 if (temp9)
13905 delete arg9;
13906 }
13907 return resultobj;
13908 fail:
13909 {
13910 if (temp4)
13911 delete arg4;
13912 }
13913 {
13914 if (temp9)
13915 delete arg9;
13916 }
13917 return NULL;
13918 }
13919
13920
13921 static PyObject *_wrap_ToggleButton_SetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
13922 PyObject *resultobj;
13923 wxToggleButton *arg1 = (wxToggleButton *) 0 ;
13924 bool arg2 ;
13925 PyObject * obj0 = 0 ;
13926 PyObject * obj1 = 0 ;
13927 char *kwnames[] = {
13928 (char *) "self",(char *) "value", NULL
13929 };
13930
13931 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToggleButton_SetValue",kwnames,&obj0,&obj1)) goto fail;
13932 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToggleButton,
13933 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13934 arg2 = (bool) SWIG_AsBool(obj1);
13935 if (PyErr_Occurred()) SWIG_fail;
13936 {
13937 PyThreadState* __tstate = wxPyBeginAllowThreads();
13938 (arg1)->SetValue(arg2);
13939
13940 wxPyEndAllowThreads(__tstate);
13941 if (PyErr_Occurred()) SWIG_fail;
13942 }
13943 Py_INCREF(Py_None); resultobj = Py_None;
13944 return resultobj;
13945 fail:
13946 return NULL;
13947 }
13948
13949
13950 static PyObject *_wrap_ToggleButton_GetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
13951 PyObject *resultobj;
13952 wxToggleButton *arg1 = (wxToggleButton *) 0 ;
13953 bool result;
13954 PyObject * obj0 = 0 ;
13955 char *kwnames[] = {
13956 (char *) "self", NULL
13957 };
13958
13959 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToggleButton_GetValue",kwnames,&obj0)) goto fail;
13960 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToggleButton,
13961 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13962 {
13963 PyThreadState* __tstate = wxPyBeginAllowThreads();
13964 result = (bool)((wxToggleButton const *)arg1)->GetValue();
13965
13966 wxPyEndAllowThreads(__tstate);
13967 if (PyErr_Occurred()) SWIG_fail;
13968 }
13969 {
13970 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
13971 }
13972 return resultobj;
13973 fail:
13974 return NULL;
13975 }
13976
13977
13978 static PyObject *_wrap_ToggleButton_SetLabel(PyObject *self, PyObject *args, PyObject *kwargs) {
13979 PyObject *resultobj;
13980 wxToggleButton *arg1 = (wxToggleButton *) 0 ;
13981 wxString *arg2 = 0 ;
13982 bool temp2 = False ;
13983 PyObject * obj0 = 0 ;
13984 PyObject * obj1 = 0 ;
13985 char *kwnames[] = {
13986 (char *) "self",(char *) "label", NULL
13987 };
13988
13989 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToggleButton_SetLabel",kwnames,&obj0,&obj1)) goto fail;
13990 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToggleButton,
13991 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
13992 {
13993 arg2 = wxString_in_helper(obj1);
13994 if (arg2 == NULL) SWIG_fail;
13995 temp2 = True;
13996 }
13997 {
13998 PyThreadState* __tstate = wxPyBeginAllowThreads();
13999 (arg1)->SetLabel((wxString const &)*arg2);
14000
14001 wxPyEndAllowThreads(__tstate);
14002 if (PyErr_Occurred()) SWIG_fail;
14003 }
14004 Py_INCREF(Py_None); resultobj = Py_None;
14005 {
14006 if (temp2)
14007 delete arg2;
14008 }
14009 return resultobj;
14010 fail:
14011 {
14012 if (temp2)
14013 delete arg2;
14014 }
14015 return NULL;
14016 }
14017
14018
14019 static PyObject *_wrap_ToggleButton_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
14020 PyObject *resultobj;
14021 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
14022 wxVisualAttributes result;
14023 PyObject * obj0 = 0 ;
14024 char *kwnames[] = {
14025 (char *) "variant", NULL
14026 };
14027
14028 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:ToggleButton_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
14029 if (obj0) {
14030 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
14031 if (PyErr_Occurred()) SWIG_fail;
14032 }
14033 {
14034 if (!wxPyCheckForApp()) SWIG_fail;
14035 PyThreadState* __tstate = wxPyBeginAllowThreads();
14036 result = wxToggleButton::GetClassDefaultAttributes((wxWindowVariant )arg1);
14037
14038 wxPyEndAllowThreads(__tstate);
14039 if (PyErr_Occurred()) SWIG_fail;
14040 }
14041 {
14042 wxVisualAttributes * resultptr;
14043 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
14044 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
14045 }
14046 return resultobj;
14047 fail:
14048 return NULL;
14049 }
14050
14051
14052 static PyObject * ToggleButton_swigregister(PyObject *self, PyObject *args) {
14053 PyObject *obj;
14054 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
14055 SWIG_TypeClientData(SWIGTYPE_p_wxToggleButton, obj);
14056 Py_INCREF(obj);
14057 return Py_BuildValue((char *)"");
14058 }
14059 static int _wrap_NOTEBOOK_NAME_set(PyObject *_val) {
14060 PyErr_SetString(PyExc_TypeError,"Variable NOTEBOOK_NAME is read-only.");
14061 return 1;
14062 }
14063
14064
14065 static PyObject *_wrap_NOTEBOOK_NAME_get() {
14066 PyObject *pyobj;
14067
14068 {
14069 #if wxUSE_UNICODE
14070 pyobj = PyUnicode_FromWideChar((&wxPyNOTEBOOK_NAME)->c_str(), (&wxPyNOTEBOOK_NAME)->Len());
14071 #else
14072 pyobj = PyString_FromStringAndSize((&wxPyNOTEBOOK_NAME)->c_str(), (&wxPyNOTEBOOK_NAME)->Len());
14073 #endif
14074 }
14075 return pyobj;
14076 }
14077
14078
14079 static PyObject *_wrap_BookCtrl_GetPageCount(PyObject *self, PyObject *args, PyObject *kwargs) {
14080 PyObject *resultobj;
14081 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14082 size_t result;
14083 PyObject * obj0 = 0 ;
14084 char *kwnames[] = {
14085 (char *) "self", NULL
14086 };
14087
14088 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:BookCtrl_GetPageCount",kwnames,&obj0)) goto fail;
14089 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14090 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14091 {
14092 PyThreadState* __tstate = wxPyBeginAllowThreads();
14093 result = (size_t)((wxBookCtrl const *)arg1)->GetPageCount();
14094
14095 wxPyEndAllowThreads(__tstate);
14096 if (PyErr_Occurred()) SWIG_fail;
14097 }
14098 resultobj = SWIG_FromUnsignedLong((unsigned long)result);
14099 return resultobj;
14100 fail:
14101 return NULL;
14102 }
14103
14104
14105 static PyObject *_wrap_BookCtrl_GetPage(PyObject *self, PyObject *args, PyObject *kwargs) {
14106 PyObject *resultobj;
14107 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14108 size_t arg2 ;
14109 wxWindow *result;
14110 PyObject * obj0 = 0 ;
14111 PyObject * obj1 = 0 ;
14112 char *kwnames[] = {
14113 (char *) "self",(char *) "n", NULL
14114 };
14115
14116 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BookCtrl_GetPage",kwnames,&obj0,&obj1)) goto fail;
14117 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14118 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14119 arg2 = (size_t) SWIG_AsUnsignedLong(obj1);
14120 if (PyErr_Occurred()) SWIG_fail;
14121 {
14122 PyThreadState* __tstate = wxPyBeginAllowThreads();
14123 result = (wxWindow *)(arg1)->GetPage(arg2);
14124
14125 wxPyEndAllowThreads(__tstate);
14126 if (PyErr_Occurred()) SWIG_fail;
14127 }
14128 {
14129 resultobj = wxPyMake_wxObject(result, 0);
14130 }
14131 return resultobj;
14132 fail:
14133 return NULL;
14134 }
14135
14136
14137 static PyObject *_wrap_BookCtrl_GetSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
14138 PyObject *resultobj;
14139 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14140 int result;
14141 PyObject * obj0 = 0 ;
14142 char *kwnames[] = {
14143 (char *) "self", NULL
14144 };
14145
14146 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:BookCtrl_GetSelection",kwnames,&obj0)) goto fail;
14147 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14148 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14149 {
14150 PyThreadState* __tstate = wxPyBeginAllowThreads();
14151 result = (int)((wxBookCtrl const *)arg1)->GetSelection();
14152
14153 wxPyEndAllowThreads(__tstate);
14154 if (PyErr_Occurred()) SWIG_fail;
14155 }
14156 resultobj = SWIG_FromInt((int)result);
14157 return resultobj;
14158 fail:
14159 return NULL;
14160 }
14161
14162
14163 static PyObject *_wrap_BookCtrl_SetPageText(PyObject *self, PyObject *args, PyObject *kwargs) {
14164 PyObject *resultobj;
14165 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14166 size_t arg2 ;
14167 wxString *arg3 = 0 ;
14168 bool result;
14169 bool temp3 = False ;
14170 PyObject * obj0 = 0 ;
14171 PyObject * obj1 = 0 ;
14172 PyObject * obj2 = 0 ;
14173 char *kwnames[] = {
14174 (char *) "self",(char *) "n",(char *) "strText", NULL
14175 };
14176
14177 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:BookCtrl_SetPageText",kwnames,&obj0,&obj1,&obj2)) goto fail;
14178 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14179 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14180 arg2 = (size_t) SWIG_AsUnsignedLong(obj1);
14181 if (PyErr_Occurred()) SWIG_fail;
14182 {
14183 arg3 = wxString_in_helper(obj2);
14184 if (arg3 == NULL) SWIG_fail;
14185 temp3 = True;
14186 }
14187 {
14188 PyThreadState* __tstate = wxPyBeginAllowThreads();
14189 result = (bool)(arg1)->SetPageText(arg2,(wxString const &)*arg3);
14190
14191 wxPyEndAllowThreads(__tstate);
14192 if (PyErr_Occurred()) SWIG_fail;
14193 }
14194 {
14195 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
14196 }
14197 {
14198 if (temp3)
14199 delete arg3;
14200 }
14201 return resultobj;
14202 fail:
14203 {
14204 if (temp3)
14205 delete arg3;
14206 }
14207 return NULL;
14208 }
14209
14210
14211 static PyObject *_wrap_BookCtrl_GetPageText(PyObject *self, PyObject *args, PyObject *kwargs) {
14212 PyObject *resultobj;
14213 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14214 size_t arg2 ;
14215 wxString result;
14216 PyObject * obj0 = 0 ;
14217 PyObject * obj1 = 0 ;
14218 char *kwnames[] = {
14219 (char *) "self",(char *) "n", NULL
14220 };
14221
14222 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BookCtrl_GetPageText",kwnames,&obj0,&obj1)) goto fail;
14223 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14224 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14225 arg2 = (size_t) SWIG_AsUnsignedLong(obj1);
14226 if (PyErr_Occurred()) SWIG_fail;
14227 {
14228 PyThreadState* __tstate = wxPyBeginAllowThreads();
14229 result = ((wxBookCtrl const *)arg1)->GetPageText(arg2);
14230
14231 wxPyEndAllowThreads(__tstate);
14232 if (PyErr_Occurred()) SWIG_fail;
14233 }
14234 {
14235 #if wxUSE_UNICODE
14236 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
14237 #else
14238 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
14239 #endif
14240 }
14241 return resultobj;
14242 fail:
14243 return NULL;
14244 }
14245
14246
14247 static PyObject *_wrap_BookCtrl_SetImageList(PyObject *self, PyObject *args, PyObject *kwargs) {
14248 PyObject *resultobj;
14249 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14250 wxImageList *arg2 = (wxImageList *) 0 ;
14251 PyObject * obj0 = 0 ;
14252 PyObject * obj1 = 0 ;
14253 char *kwnames[] = {
14254 (char *) "self",(char *) "imageList", NULL
14255 };
14256
14257 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BookCtrl_SetImageList",kwnames,&obj0,&obj1)) goto fail;
14258 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14259 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14260 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxImageList,
14261 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14262 {
14263 PyThreadState* __tstate = wxPyBeginAllowThreads();
14264 (arg1)->SetImageList(arg2);
14265
14266 wxPyEndAllowThreads(__tstate);
14267 if (PyErr_Occurred()) SWIG_fail;
14268 }
14269 Py_INCREF(Py_None); resultobj = Py_None;
14270 return resultobj;
14271 fail:
14272 return NULL;
14273 }
14274
14275
14276 static PyObject *_wrap_BookCtrl_AssignImageList(PyObject *self, PyObject *args, PyObject *kwargs) {
14277 PyObject *resultobj;
14278 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14279 wxImageList *arg2 = (wxImageList *) 0 ;
14280 PyObject * obj0 = 0 ;
14281 PyObject * obj1 = 0 ;
14282 char *kwnames[] = {
14283 (char *) "self",(char *) "imageList", NULL
14284 };
14285
14286 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BookCtrl_AssignImageList",kwnames,&obj0,&obj1)) goto fail;
14287 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14288 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14289 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxImageList,
14290 SWIG_POINTER_EXCEPTION | SWIG_POINTER_DISOWN)) == -1) SWIG_fail;
14291 {
14292 PyThreadState* __tstate = wxPyBeginAllowThreads();
14293 (arg1)->AssignImageList(arg2);
14294
14295 wxPyEndAllowThreads(__tstate);
14296 if (PyErr_Occurred()) SWIG_fail;
14297 }
14298 Py_INCREF(Py_None); resultobj = Py_None;
14299 return resultobj;
14300 fail:
14301 return NULL;
14302 }
14303
14304
14305 static PyObject *_wrap_BookCtrl_GetImageList(PyObject *self, PyObject *args, PyObject *kwargs) {
14306 PyObject *resultobj;
14307 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14308 wxImageList *result;
14309 PyObject * obj0 = 0 ;
14310 char *kwnames[] = {
14311 (char *) "self", NULL
14312 };
14313
14314 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:BookCtrl_GetImageList",kwnames,&obj0)) goto fail;
14315 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14316 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14317 {
14318 PyThreadState* __tstate = wxPyBeginAllowThreads();
14319 result = (wxImageList *)((wxBookCtrl const *)arg1)->GetImageList();
14320
14321 wxPyEndAllowThreads(__tstate);
14322 if (PyErr_Occurred()) SWIG_fail;
14323 }
14324 {
14325 resultobj = wxPyMake_wxObject(result, 0);
14326 }
14327 return resultobj;
14328 fail:
14329 return NULL;
14330 }
14331
14332
14333 static PyObject *_wrap_BookCtrl_GetPageImage(PyObject *self, PyObject *args, PyObject *kwargs) {
14334 PyObject *resultobj;
14335 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14336 size_t arg2 ;
14337 int result;
14338 PyObject * obj0 = 0 ;
14339 PyObject * obj1 = 0 ;
14340 char *kwnames[] = {
14341 (char *) "self",(char *) "n", NULL
14342 };
14343
14344 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BookCtrl_GetPageImage",kwnames,&obj0,&obj1)) goto fail;
14345 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14346 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14347 arg2 = (size_t) SWIG_AsUnsignedLong(obj1);
14348 if (PyErr_Occurred()) SWIG_fail;
14349 {
14350 PyThreadState* __tstate = wxPyBeginAllowThreads();
14351 result = (int)((wxBookCtrl const *)arg1)->GetPageImage(arg2);
14352
14353 wxPyEndAllowThreads(__tstate);
14354 if (PyErr_Occurred()) SWIG_fail;
14355 }
14356 resultobj = SWIG_FromInt((int)result);
14357 return resultobj;
14358 fail:
14359 return NULL;
14360 }
14361
14362
14363 static PyObject *_wrap_BookCtrl_SetPageImage(PyObject *self, PyObject *args, PyObject *kwargs) {
14364 PyObject *resultobj;
14365 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14366 size_t arg2 ;
14367 int arg3 ;
14368 bool result;
14369 PyObject * obj0 = 0 ;
14370 PyObject * obj1 = 0 ;
14371 PyObject * obj2 = 0 ;
14372 char *kwnames[] = {
14373 (char *) "self",(char *) "n",(char *) "imageId", NULL
14374 };
14375
14376 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:BookCtrl_SetPageImage",kwnames,&obj0,&obj1,&obj2)) goto fail;
14377 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14378 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14379 arg2 = (size_t) SWIG_AsUnsignedLong(obj1);
14380 if (PyErr_Occurred()) SWIG_fail;
14381 arg3 = (int) SWIG_AsInt(obj2);
14382 if (PyErr_Occurred()) SWIG_fail;
14383 {
14384 PyThreadState* __tstate = wxPyBeginAllowThreads();
14385 result = (bool)(arg1)->SetPageImage(arg2,arg3);
14386
14387 wxPyEndAllowThreads(__tstate);
14388 if (PyErr_Occurred()) SWIG_fail;
14389 }
14390 {
14391 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
14392 }
14393 return resultobj;
14394 fail:
14395 return NULL;
14396 }
14397
14398
14399 static PyObject *_wrap_BookCtrl_SetPageSize(PyObject *self, PyObject *args, PyObject *kwargs) {
14400 PyObject *resultobj;
14401 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14402 wxSize *arg2 = 0 ;
14403 wxSize temp2 ;
14404 PyObject * obj0 = 0 ;
14405 PyObject * obj1 = 0 ;
14406 char *kwnames[] = {
14407 (char *) "self",(char *) "size", NULL
14408 };
14409
14410 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BookCtrl_SetPageSize",kwnames,&obj0,&obj1)) goto fail;
14411 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14412 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14413 {
14414 arg2 = &temp2;
14415 if ( ! wxSize_helper(obj1, &arg2)) SWIG_fail;
14416 }
14417 {
14418 PyThreadState* __tstate = wxPyBeginAllowThreads();
14419 (arg1)->SetPageSize((wxSize const &)*arg2);
14420
14421 wxPyEndAllowThreads(__tstate);
14422 if (PyErr_Occurred()) SWIG_fail;
14423 }
14424 Py_INCREF(Py_None); resultobj = Py_None;
14425 return resultobj;
14426 fail:
14427 return NULL;
14428 }
14429
14430
14431 static PyObject *_wrap_BookCtrl_CalcSizeFromPage(PyObject *self, PyObject *args, PyObject *kwargs) {
14432 PyObject *resultobj;
14433 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14434 wxSize *arg2 = 0 ;
14435 wxSize result;
14436 wxSize temp2 ;
14437 PyObject * obj0 = 0 ;
14438 PyObject * obj1 = 0 ;
14439 char *kwnames[] = {
14440 (char *) "self",(char *) "sizePage", NULL
14441 };
14442
14443 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BookCtrl_CalcSizeFromPage",kwnames,&obj0,&obj1)) goto fail;
14444 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14445 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14446 {
14447 arg2 = &temp2;
14448 if ( ! wxSize_helper(obj1, &arg2)) SWIG_fail;
14449 }
14450 {
14451 PyThreadState* __tstate = wxPyBeginAllowThreads();
14452 result = ((wxBookCtrl const *)arg1)->CalcSizeFromPage((wxSize const &)*arg2);
14453
14454 wxPyEndAllowThreads(__tstate);
14455 if (PyErr_Occurred()) SWIG_fail;
14456 }
14457 {
14458 wxSize * resultptr;
14459 resultptr = new wxSize((wxSize &) result);
14460 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
14461 }
14462 return resultobj;
14463 fail:
14464 return NULL;
14465 }
14466
14467
14468 static PyObject *_wrap_BookCtrl_DeletePage(PyObject *self, PyObject *args, PyObject *kwargs) {
14469 PyObject *resultobj;
14470 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14471 size_t arg2 ;
14472 bool result;
14473 PyObject * obj0 = 0 ;
14474 PyObject * obj1 = 0 ;
14475 char *kwnames[] = {
14476 (char *) "self",(char *) "n", NULL
14477 };
14478
14479 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BookCtrl_DeletePage",kwnames,&obj0,&obj1)) goto fail;
14480 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14481 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14482 arg2 = (size_t) SWIG_AsUnsignedLong(obj1);
14483 if (PyErr_Occurred()) SWIG_fail;
14484 {
14485 PyThreadState* __tstate = wxPyBeginAllowThreads();
14486 result = (bool)(arg1)->DeletePage(arg2);
14487
14488 wxPyEndAllowThreads(__tstate);
14489 if (PyErr_Occurred()) SWIG_fail;
14490 }
14491 {
14492 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
14493 }
14494 return resultobj;
14495 fail:
14496 return NULL;
14497 }
14498
14499
14500 static PyObject *_wrap_BookCtrl_RemovePage(PyObject *self, PyObject *args, PyObject *kwargs) {
14501 PyObject *resultobj;
14502 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14503 size_t arg2 ;
14504 bool result;
14505 PyObject * obj0 = 0 ;
14506 PyObject * obj1 = 0 ;
14507 char *kwnames[] = {
14508 (char *) "self",(char *) "n", NULL
14509 };
14510
14511 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BookCtrl_RemovePage",kwnames,&obj0,&obj1)) goto fail;
14512 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14513 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14514 arg2 = (size_t) SWIG_AsUnsignedLong(obj1);
14515 if (PyErr_Occurred()) SWIG_fail;
14516 {
14517 PyThreadState* __tstate = wxPyBeginAllowThreads();
14518 result = (bool)(arg1)->RemovePage(arg2);
14519
14520 wxPyEndAllowThreads(__tstate);
14521 if (PyErr_Occurred()) SWIG_fail;
14522 }
14523 {
14524 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
14525 }
14526 return resultobj;
14527 fail:
14528 return NULL;
14529 }
14530
14531
14532 static PyObject *_wrap_BookCtrl_DeleteAllPages(PyObject *self, PyObject *args, PyObject *kwargs) {
14533 PyObject *resultobj;
14534 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14535 bool result;
14536 PyObject * obj0 = 0 ;
14537 char *kwnames[] = {
14538 (char *) "self", NULL
14539 };
14540
14541 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:BookCtrl_DeleteAllPages",kwnames,&obj0)) goto fail;
14542 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14543 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14544 {
14545 PyThreadState* __tstate = wxPyBeginAllowThreads();
14546 result = (bool)(arg1)->DeleteAllPages();
14547
14548 wxPyEndAllowThreads(__tstate);
14549 if (PyErr_Occurred()) SWIG_fail;
14550 }
14551 {
14552 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
14553 }
14554 return resultobj;
14555 fail:
14556 return NULL;
14557 }
14558
14559
14560 static PyObject *_wrap_BookCtrl_AddPage(PyObject *self, PyObject *args, PyObject *kwargs) {
14561 PyObject *resultobj;
14562 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14563 wxWindow *arg2 = (wxWindow *) 0 ;
14564 wxString *arg3 = 0 ;
14565 bool arg4 = (bool) False ;
14566 int arg5 = (int) -1 ;
14567 bool result;
14568 bool temp3 = False ;
14569 PyObject * obj0 = 0 ;
14570 PyObject * obj1 = 0 ;
14571 PyObject * obj2 = 0 ;
14572 PyObject * obj3 = 0 ;
14573 PyObject * obj4 = 0 ;
14574 char *kwnames[] = {
14575 (char *) "self",(char *) "page",(char *) "text",(char *) "select",(char *) "imageId", NULL
14576 };
14577
14578 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO|OO:BookCtrl_AddPage",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
14579 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14580 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14581 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
14582 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14583 {
14584 arg3 = wxString_in_helper(obj2);
14585 if (arg3 == NULL) SWIG_fail;
14586 temp3 = True;
14587 }
14588 if (obj3) {
14589 arg4 = (bool) SWIG_AsBool(obj3);
14590 if (PyErr_Occurred()) SWIG_fail;
14591 }
14592 if (obj4) {
14593 arg5 = (int) SWIG_AsInt(obj4);
14594 if (PyErr_Occurred()) SWIG_fail;
14595 }
14596 {
14597 PyThreadState* __tstate = wxPyBeginAllowThreads();
14598 result = (bool)(arg1)->AddPage(arg2,(wxString const &)*arg3,arg4,arg5);
14599
14600 wxPyEndAllowThreads(__tstate);
14601 if (PyErr_Occurred()) SWIG_fail;
14602 }
14603 {
14604 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
14605 }
14606 {
14607 if (temp3)
14608 delete arg3;
14609 }
14610 return resultobj;
14611 fail:
14612 {
14613 if (temp3)
14614 delete arg3;
14615 }
14616 return NULL;
14617 }
14618
14619
14620 static PyObject *_wrap_BookCtrl_InsertPage(PyObject *self, PyObject *args, PyObject *kwargs) {
14621 PyObject *resultobj;
14622 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14623 size_t arg2 ;
14624 wxWindow *arg3 = (wxWindow *) 0 ;
14625 wxString *arg4 = 0 ;
14626 bool arg5 = (bool) False ;
14627 int arg6 = (int) -1 ;
14628 bool result;
14629 bool temp4 = False ;
14630 PyObject * obj0 = 0 ;
14631 PyObject * obj1 = 0 ;
14632 PyObject * obj2 = 0 ;
14633 PyObject * obj3 = 0 ;
14634 PyObject * obj4 = 0 ;
14635 PyObject * obj5 = 0 ;
14636 char *kwnames[] = {
14637 (char *) "self",(char *) "n",(char *) "page",(char *) "text",(char *) "select",(char *) "imageId", NULL
14638 };
14639
14640 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO|OO:BookCtrl_InsertPage",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail;
14641 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14642 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14643 arg2 = (size_t) SWIG_AsUnsignedLong(obj1);
14644 if (PyErr_Occurred()) SWIG_fail;
14645 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxWindow,
14646 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14647 {
14648 arg4 = wxString_in_helper(obj3);
14649 if (arg4 == NULL) SWIG_fail;
14650 temp4 = True;
14651 }
14652 if (obj4) {
14653 arg5 = (bool) SWIG_AsBool(obj4);
14654 if (PyErr_Occurred()) SWIG_fail;
14655 }
14656 if (obj5) {
14657 arg6 = (int) SWIG_AsInt(obj5);
14658 if (PyErr_Occurred()) SWIG_fail;
14659 }
14660 {
14661 PyThreadState* __tstate = wxPyBeginAllowThreads();
14662 result = (bool)(arg1)->InsertPage(arg2,arg3,(wxString const &)*arg4,arg5,arg6);
14663
14664 wxPyEndAllowThreads(__tstate);
14665 if (PyErr_Occurred()) SWIG_fail;
14666 }
14667 {
14668 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
14669 }
14670 {
14671 if (temp4)
14672 delete arg4;
14673 }
14674 return resultobj;
14675 fail:
14676 {
14677 if (temp4)
14678 delete arg4;
14679 }
14680 return NULL;
14681 }
14682
14683
14684 static PyObject *_wrap_BookCtrl_SetSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
14685 PyObject *resultobj;
14686 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14687 size_t arg2 ;
14688 int result;
14689 PyObject * obj0 = 0 ;
14690 PyObject * obj1 = 0 ;
14691 char *kwnames[] = {
14692 (char *) "self",(char *) "n", NULL
14693 };
14694
14695 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BookCtrl_SetSelection",kwnames,&obj0,&obj1)) goto fail;
14696 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14697 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14698 arg2 = (size_t) SWIG_AsUnsignedLong(obj1);
14699 if (PyErr_Occurred()) SWIG_fail;
14700 {
14701 PyThreadState* __tstate = wxPyBeginAllowThreads();
14702 result = (int)(arg1)->SetSelection(arg2);
14703
14704 wxPyEndAllowThreads(__tstate);
14705 if (PyErr_Occurred()) SWIG_fail;
14706 }
14707 resultobj = SWIG_FromInt((int)result);
14708 return resultobj;
14709 fail:
14710 return NULL;
14711 }
14712
14713
14714 static PyObject *_wrap_BookCtrl_AdvanceSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
14715 PyObject *resultobj;
14716 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
14717 bool arg2 = (bool) True ;
14718 PyObject * obj0 = 0 ;
14719 PyObject * obj1 = 0 ;
14720 char *kwnames[] = {
14721 (char *) "self",(char *) "forward", NULL
14722 };
14723
14724 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:BookCtrl_AdvanceSelection",kwnames,&obj0,&obj1)) goto fail;
14725 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
14726 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14727 if (obj1) {
14728 arg2 = (bool) SWIG_AsBool(obj1);
14729 if (PyErr_Occurred()) SWIG_fail;
14730 }
14731 {
14732 PyThreadState* __tstate = wxPyBeginAllowThreads();
14733 (arg1)->AdvanceSelection(arg2);
14734
14735 wxPyEndAllowThreads(__tstate);
14736 if (PyErr_Occurred()) SWIG_fail;
14737 }
14738 Py_INCREF(Py_None); resultobj = Py_None;
14739 return resultobj;
14740 fail:
14741 return NULL;
14742 }
14743
14744
14745 static PyObject *_wrap_BookCtrl_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
14746 PyObject *resultobj;
14747 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
14748 wxVisualAttributes result;
14749 PyObject * obj0 = 0 ;
14750 char *kwnames[] = {
14751 (char *) "variant", NULL
14752 };
14753
14754 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:BookCtrl_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
14755 if (obj0) {
14756 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
14757 if (PyErr_Occurred()) SWIG_fail;
14758 }
14759 {
14760 if (!wxPyCheckForApp()) SWIG_fail;
14761 PyThreadState* __tstate = wxPyBeginAllowThreads();
14762 result = wxBookCtrl::GetClassDefaultAttributes((wxWindowVariant )arg1);
14763
14764 wxPyEndAllowThreads(__tstate);
14765 if (PyErr_Occurred()) SWIG_fail;
14766 }
14767 {
14768 wxVisualAttributes * resultptr;
14769 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
14770 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
14771 }
14772 return resultobj;
14773 fail:
14774 return NULL;
14775 }
14776
14777
14778 static PyObject * BookCtrl_swigregister(PyObject *self, PyObject *args) {
14779 PyObject *obj;
14780 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
14781 SWIG_TypeClientData(SWIGTYPE_p_wxBookCtrl, obj);
14782 Py_INCREF(obj);
14783 return Py_BuildValue((char *)"");
14784 }
14785 static PyObject *_wrap_new_BookCtrlEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
14786 PyObject *resultobj;
14787 wxEventType arg1 = (wxEventType) wxEVT_NULL ;
14788 int arg2 = (int) 0 ;
14789 int arg3 = (int) -1 ;
14790 int arg4 = (int) -1 ;
14791 wxBookCtrlEvent *result;
14792 PyObject * obj0 = 0 ;
14793 PyObject * obj1 = 0 ;
14794 PyObject * obj2 = 0 ;
14795 PyObject * obj3 = 0 ;
14796 char *kwnames[] = {
14797 (char *) "commandType",(char *) "id",(char *) "nSel",(char *) "nOldSel", NULL
14798 };
14799
14800 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|OOOO:new_BookCtrlEvent",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
14801 if (obj0) {
14802 arg1 = (wxEventType) SWIG_AsInt(obj0);
14803 if (PyErr_Occurred()) SWIG_fail;
14804 }
14805 if (obj1) {
14806 arg2 = (int) SWIG_AsInt(obj1);
14807 if (PyErr_Occurred()) SWIG_fail;
14808 }
14809 if (obj2) {
14810 arg3 = (int) SWIG_AsInt(obj2);
14811 if (PyErr_Occurred()) SWIG_fail;
14812 }
14813 if (obj3) {
14814 arg4 = (int) SWIG_AsInt(obj3);
14815 if (PyErr_Occurred()) SWIG_fail;
14816 }
14817 {
14818 PyThreadState* __tstate = wxPyBeginAllowThreads();
14819 result = (wxBookCtrlEvent *)new wxBookCtrlEvent(arg1,arg2,arg3,arg4);
14820
14821 wxPyEndAllowThreads(__tstate);
14822 if (PyErr_Occurred()) SWIG_fail;
14823 }
14824 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxBookCtrlEvent, 1);
14825 return resultobj;
14826 fail:
14827 return NULL;
14828 }
14829
14830
14831 static PyObject *_wrap_BookCtrlEvent_GetSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
14832 PyObject *resultobj;
14833 wxBookCtrlEvent *arg1 = (wxBookCtrlEvent *) 0 ;
14834 int result;
14835 PyObject * obj0 = 0 ;
14836 char *kwnames[] = {
14837 (char *) "self", NULL
14838 };
14839
14840 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:BookCtrlEvent_GetSelection",kwnames,&obj0)) goto fail;
14841 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrlEvent,
14842 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14843 {
14844 PyThreadState* __tstate = wxPyBeginAllowThreads();
14845 result = (int)((wxBookCtrlEvent const *)arg1)->GetSelection();
14846
14847 wxPyEndAllowThreads(__tstate);
14848 if (PyErr_Occurred()) SWIG_fail;
14849 }
14850 resultobj = SWIG_FromInt((int)result);
14851 return resultobj;
14852 fail:
14853 return NULL;
14854 }
14855
14856
14857 static PyObject *_wrap_BookCtrlEvent_SetSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
14858 PyObject *resultobj;
14859 wxBookCtrlEvent *arg1 = (wxBookCtrlEvent *) 0 ;
14860 int arg2 ;
14861 PyObject * obj0 = 0 ;
14862 PyObject * obj1 = 0 ;
14863 char *kwnames[] = {
14864 (char *) "self",(char *) "nSel", NULL
14865 };
14866
14867 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BookCtrlEvent_SetSelection",kwnames,&obj0,&obj1)) goto fail;
14868 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrlEvent,
14869 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14870 arg2 = (int) SWIG_AsInt(obj1);
14871 if (PyErr_Occurred()) SWIG_fail;
14872 {
14873 PyThreadState* __tstate = wxPyBeginAllowThreads();
14874 (arg1)->SetSelection(arg2);
14875
14876 wxPyEndAllowThreads(__tstate);
14877 if (PyErr_Occurred()) SWIG_fail;
14878 }
14879 Py_INCREF(Py_None); resultobj = Py_None;
14880 return resultobj;
14881 fail:
14882 return NULL;
14883 }
14884
14885
14886 static PyObject *_wrap_BookCtrlEvent_GetOldSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
14887 PyObject *resultobj;
14888 wxBookCtrlEvent *arg1 = (wxBookCtrlEvent *) 0 ;
14889 int result;
14890 PyObject * obj0 = 0 ;
14891 char *kwnames[] = {
14892 (char *) "self", NULL
14893 };
14894
14895 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:BookCtrlEvent_GetOldSelection",kwnames,&obj0)) goto fail;
14896 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrlEvent,
14897 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14898 {
14899 PyThreadState* __tstate = wxPyBeginAllowThreads();
14900 result = (int)((wxBookCtrlEvent const *)arg1)->GetOldSelection();
14901
14902 wxPyEndAllowThreads(__tstate);
14903 if (PyErr_Occurred()) SWIG_fail;
14904 }
14905 resultobj = SWIG_FromInt((int)result);
14906 return resultobj;
14907 fail:
14908 return NULL;
14909 }
14910
14911
14912 static PyObject *_wrap_BookCtrlEvent_SetOldSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
14913 PyObject *resultobj;
14914 wxBookCtrlEvent *arg1 = (wxBookCtrlEvent *) 0 ;
14915 int arg2 ;
14916 PyObject * obj0 = 0 ;
14917 PyObject * obj1 = 0 ;
14918 char *kwnames[] = {
14919 (char *) "self",(char *) "nOldSel", NULL
14920 };
14921
14922 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:BookCtrlEvent_SetOldSelection",kwnames,&obj0,&obj1)) goto fail;
14923 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrlEvent,
14924 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14925 arg2 = (int) SWIG_AsInt(obj1);
14926 if (PyErr_Occurred()) SWIG_fail;
14927 {
14928 PyThreadState* __tstate = wxPyBeginAllowThreads();
14929 (arg1)->SetOldSelection(arg2);
14930
14931 wxPyEndAllowThreads(__tstate);
14932 if (PyErr_Occurred()) SWIG_fail;
14933 }
14934 Py_INCREF(Py_None); resultobj = Py_None;
14935 return resultobj;
14936 fail:
14937 return NULL;
14938 }
14939
14940
14941 static PyObject * BookCtrlEvent_swigregister(PyObject *self, PyObject *args) {
14942 PyObject *obj;
14943 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
14944 SWIG_TypeClientData(SWIGTYPE_p_wxBookCtrlEvent, obj);
14945 Py_INCREF(obj);
14946 return Py_BuildValue((char *)"");
14947 }
14948 static PyObject *_wrap_new_Notebook(PyObject *self, PyObject *args, PyObject *kwargs) {
14949 PyObject *resultobj;
14950 wxWindow *arg1 = (wxWindow *) 0 ;
14951 int arg2 = (int) -1 ;
14952 wxPoint const &arg3_defvalue = wxDefaultPosition ;
14953 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
14954 wxSize const &arg4_defvalue = wxDefaultSize ;
14955 wxSize *arg4 = (wxSize *) &arg4_defvalue ;
14956 long arg5 = (long) 0 ;
14957 wxString const &arg6_defvalue = wxPyNOTEBOOK_NAME ;
14958 wxString *arg6 = (wxString *) &arg6_defvalue ;
14959 wxNotebook *result;
14960 wxPoint temp3 ;
14961 wxSize temp4 ;
14962 bool temp6 = False ;
14963 PyObject * obj0 = 0 ;
14964 PyObject * obj1 = 0 ;
14965 PyObject * obj2 = 0 ;
14966 PyObject * obj3 = 0 ;
14967 PyObject * obj4 = 0 ;
14968 PyObject * obj5 = 0 ;
14969 char *kwnames[] = {
14970 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
14971 };
14972
14973 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOO:new_Notebook",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail;
14974 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
14975 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
14976 if (obj1) {
14977 arg2 = (int) SWIG_AsInt(obj1);
14978 if (PyErr_Occurred()) SWIG_fail;
14979 }
14980 if (obj2) {
14981 {
14982 arg3 = &temp3;
14983 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
14984 }
14985 }
14986 if (obj3) {
14987 {
14988 arg4 = &temp4;
14989 if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
14990 }
14991 }
14992 if (obj4) {
14993 arg5 = (long) SWIG_AsLong(obj4);
14994 if (PyErr_Occurred()) SWIG_fail;
14995 }
14996 if (obj5) {
14997 {
14998 arg6 = wxString_in_helper(obj5);
14999 if (arg6 == NULL) SWIG_fail;
15000 temp6 = True;
15001 }
15002 }
15003 {
15004 if (!wxPyCheckForApp()) SWIG_fail;
15005 PyThreadState* __tstate = wxPyBeginAllowThreads();
15006 result = (wxNotebook *)new wxNotebook(arg1,arg2,(wxPoint const &)*arg3,(wxSize const &)*arg4,arg5,(wxString const &)*arg6);
15007
15008 wxPyEndAllowThreads(__tstate);
15009 if (PyErr_Occurred()) SWIG_fail;
15010 }
15011 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxNotebook, 1);
15012 {
15013 if (temp6)
15014 delete arg6;
15015 }
15016 return resultobj;
15017 fail:
15018 {
15019 if (temp6)
15020 delete arg6;
15021 }
15022 return NULL;
15023 }
15024
15025
15026 static PyObject *_wrap_new_PreNotebook(PyObject *self, PyObject *args, PyObject *kwargs) {
15027 PyObject *resultobj;
15028 wxNotebook *result;
15029 char *kwnames[] = {
15030 NULL
15031 };
15032
15033 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreNotebook",kwnames)) goto fail;
15034 {
15035 if (!wxPyCheckForApp()) SWIG_fail;
15036 PyThreadState* __tstate = wxPyBeginAllowThreads();
15037 result = (wxNotebook *)new wxNotebook();
15038
15039 wxPyEndAllowThreads(__tstate);
15040 if (PyErr_Occurred()) SWIG_fail;
15041 }
15042 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxNotebook, 1);
15043 return resultobj;
15044 fail:
15045 return NULL;
15046 }
15047
15048
15049 static PyObject *_wrap_Notebook_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
15050 PyObject *resultobj;
15051 wxNotebook *arg1 = (wxNotebook *) 0 ;
15052 wxWindow *arg2 = (wxWindow *) 0 ;
15053 int arg3 = (int) -1 ;
15054 wxPoint const &arg4_defvalue = wxDefaultPosition ;
15055 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
15056 wxSize const &arg5_defvalue = wxDefaultSize ;
15057 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
15058 long arg6 = (long) 0 ;
15059 wxString const &arg7_defvalue = wxPyNOTEBOOK_NAME ;
15060 wxString *arg7 = (wxString *) &arg7_defvalue ;
15061 bool result;
15062 wxPoint temp4 ;
15063 wxSize temp5 ;
15064 bool temp7 = False ;
15065 PyObject * obj0 = 0 ;
15066 PyObject * obj1 = 0 ;
15067 PyObject * obj2 = 0 ;
15068 PyObject * obj3 = 0 ;
15069 PyObject * obj4 = 0 ;
15070 PyObject * obj5 = 0 ;
15071 PyObject * obj6 = 0 ;
15072 char *kwnames[] = {
15073 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
15074 };
15075
15076 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOO:Notebook_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
15077 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxNotebook,
15078 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15079 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
15080 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15081 if (obj2) {
15082 arg3 = (int) SWIG_AsInt(obj2);
15083 if (PyErr_Occurred()) SWIG_fail;
15084 }
15085 if (obj3) {
15086 {
15087 arg4 = &temp4;
15088 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
15089 }
15090 }
15091 if (obj4) {
15092 {
15093 arg5 = &temp5;
15094 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
15095 }
15096 }
15097 if (obj5) {
15098 arg6 = (long) SWIG_AsLong(obj5);
15099 if (PyErr_Occurred()) SWIG_fail;
15100 }
15101 if (obj6) {
15102 {
15103 arg7 = wxString_in_helper(obj6);
15104 if (arg7 == NULL) SWIG_fail;
15105 temp7 = True;
15106 }
15107 }
15108 {
15109 PyThreadState* __tstate = wxPyBeginAllowThreads();
15110 result = (bool)(arg1)->Create(arg2,arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxString const &)*arg7);
15111
15112 wxPyEndAllowThreads(__tstate);
15113 if (PyErr_Occurred()) SWIG_fail;
15114 }
15115 {
15116 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
15117 }
15118 {
15119 if (temp7)
15120 delete arg7;
15121 }
15122 return resultobj;
15123 fail:
15124 {
15125 if (temp7)
15126 delete arg7;
15127 }
15128 return NULL;
15129 }
15130
15131
15132 static PyObject *_wrap_Notebook_GetRowCount(PyObject *self, PyObject *args, PyObject *kwargs) {
15133 PyObject *resultobj;
15134 wxNotebook *arg1 = (wxNotebook *) 0 ;
15135 int result;
15136 PyObject * obj0 = 0 ;
15137 char *kwnames[] = {
15138 (char *) "self", NULL
15139 };
15140
15141 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Notebook_GetRowCount",kwnames,&obj0)) goto fail;
15142 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxNotebook,
15143 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15144 {
15145 PyThreadState* __tstate = wxPyBeginAllowThreads();
15146 result = (int)((wxNotebook const *)arg1)->GetRowCount();
15147
15148 wxPyEndAllowThreads(__tstate);
15149 if (PyErr_Occurred()) SWIG_fail;
15150 }
15151 resultobj = SWIG_FromInt((int)result);
15152 return resultobj;
15153 fail:
15154 return NULL;
15155 }
15156
15157
15158 static PyObject *_wrap_Notebook_SetPadding(PyObject *self, PyObject *args, PyObject *kwargs) {
15159 PyObject *resultobj;
15160 wxNotebook *arg1 = (wxNotebook *) 0 ;
15161 wxSize *arg2 = 0 ;
15162 wxSize temp2 ;
15163 PyObject * obj0 = 0 ;
15164 PyObject * obj1 = 0 ;
15165 char *kwnames[] = {
15166 (char *) "self",(char *) "padding", NULL
15167 };
15168
15169 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Notebook_SetPadding",kwnames,&obj0,&obj1)) goto fail;
15170 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxNotebook,
15171 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15172 {
15173 arg2 = &temp2;
15174 if ( ! wxSize_helper(obj1, &arg2)) SWIG_fail;
15175 }
15176 {
15177 PyThreadState* __tstate = wxPyBeginAllowThreads();
15178 (arg1)->SetPadding((wxSize const &)*arg2);
15179
15180 wxPyEndAllowThreads(__tstate);
15181 if (PyErr_Occurred()) SWIG_fail;
15182 }
15183 Py_INCREF(Py_None); resultobj = Py_None;
15184 return resultobj;
15185 fail:
15186 return NULL;
15187 }
15188
15189
15190 static PyObject *_wrap_Notebook_SetTabSize(PyObject *self, PyObject *args, PyObject *kwargs) {
15191 PyObject *resultobj;
15192 wxNotebook *arg1 = (wxNotebook *) 0 ;
15193 wxSize *arg2 = 0 ;
15194 wxSize temp2 ;
15195 PyObject * obj0 = 0 ;
15196 PyObject * obj1 = 0 ;
15197 char *kwnames[] = {
15198 (char *) "self",(char *) "sz", NULL
15199 };
15200
15201 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Notebook_SetTabSize",kwnames,&obj0,&obj1)) goto fail;
15202 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxNotebook,
15203 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15204 {
15205 arg2 = &temp2;
15206 if ( ! wxSize_helper(obj1, &arg2)) SWIG_fail;
15207 }
15208 {
15209 PyThreadState* __tstate = wxPyBeginAllowThreads();
15210 (arg1)->SetTabSize((wxSize const &)*arg2);
15211
15212 wxPyEndAllowThreads(__tstate);
15213 if (PyErr_Occurred()) SWIG_fail;
15214 }
15215 Py_INCREF(Py_None); resultobj = Py_None;
15216 return resultobj;
15217 fail:
15218 return NULL;
15219 }
15220
15221
15222 static PyObject *_wrap_Notebook_HitTest(PyObject *self, PyObject *args, PyObject *kwargs) {
15223 PyObject *resultobj;
15224 wxNotebook *arg1 = (wxNotebook *) 0 ;
15225 wxPoint *arg2 = 0 ;
15226 long *arg3 = (long *) 0 ;
15227 int result;
15228 wxPoint temp2 ;
15229 long temp3 ;
15230 PyObject * obj0 = 0 ;
15231 PyObject * obj1 = 0 ;
15232 char *kwnames[] = {
15233 (char *) "self",(char *) "pt", NULL
15234 };
15235
15236 arg3 = &temp3;
15237 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Notebook_HitTest",kwnames,&obj0,&obj1)) goto fail;
15238 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxNotebook,
15239 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15240 {
15241 arg2 = &temp2;
15242 if ( ! wxPoint_helper(obj1, &arg2)) SWIG_fail;
15243 }
15244 {
15245 PyThreadState* __tstate = wxPyBeginAllowThreads();
15246 result = (int)((wxNotebook const *)arg1)->HitTest((wxPoint const &)*arg2,arg3);
15247
15248 wxPyEndAllowThreads(__tstate);
15249 if (PyErr_Occurred()) SWIG_fail;
15250 }
15251 resultobj = SWIG_FromInt((int)result);
15252 {
15253 PyObject *o = PyInt_FromLong((long) (*arg3));
15254 resultobj = t_output_helper(resultobj,o);
15255 }
15256 return resultobj;
15257 fail:
15258 return NULL;
15259 }
15260
15261
15262 static PyObject *_wrap_Notebook_CalcSizeFromPage(PyObject *self, PyObject *args, PyObject *kwargs) {
15263 PyObject *resultobj;
15264 wxNotebook *arg1 = (wxNotebook *) 0 ;
15265 wxSize *arg2 = 0 ;
15266 wxSize result;
15267 wxSize temp2 ;
15268 PyObject * obj0 = 0 ;
15269 PyObject * obj1 = 0 ;
15270 char *kwnames[] = {
15271 (char *) "self",(char *) "sizePage", NULL
15272 };
15273
15274 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Notebook_CalcSizeFromPage",kwnames,&obj0,&obj1)) goto fail;
15275 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxNotebook,
15276 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15277 {
15278 arg2 = &temp2;
15279 if ( ! wxSize_helper(obj1, &arg2)) SWIG_fail;
15280 }
15281 {
15282 PyThreadState* __tstate = wxPyBeginAllowThreads();
15283 result = ((wxNotebook const *)arg1)->CalcSizeFromPage((wxSize const &)*arg2);
15284
15285 wxPyEndAllowThreads(__tstate);
15286 if (PyErr_Occurred()) SWIG_fail;
15287 }
15288 {
15289 wxSize * resultptr;
15290 resultptr = new wxSize((wxSize &) result);
15291 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
15292 }
15293 return resultobj;
15294 fail:
15295 return NULL;
15296 }
15297
15298
15299 static PyObject *_wrap_Notebook_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
15300 PyObject *resultobj;
15301 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
15302 wxVisualAttributes result;
15303 PyObject * obj0 = 0 ;
15304 char *kwnames[] = {
15305 (char *) "variant", NULL
15306 };
15307
15308 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:Notebook_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
15309 if (obj0) {
15310 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
15311 if (PyErr_Occurred()) SWIG_fail;
15312 }
15313 {
15314 if (!wxPyCheckForApp()) SWIG_fail;
15315 PyThreadState* __tstate = wxPyBeginAllowThreads();
15316 result = wxNotebook::GetClassDefaultAttributes((wxWindowVariant )arg1);
15317
15318 wxPyEndAllowThreads(__tstate);
15319 if (PyErr_Occurred()) SWIG_fail;
15320 }
15321 {
15322 wxVisualAttributes * resultptr;
15323 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
15324 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
15325 }
15326 return resultobj;
15327 fail:
15328 return NULL;
15329 }
15330
15331
15332 static PyObject * Notebook_swigregister(PyObject *self, PyObject *args) {
15333 PyObject *obj;
15334 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
15335 SWIG_TypeClientData(SWIGTYPE_p_wxNotebook, obj);
15336 Py_INCREF(obj);
15337 return Py_BuildValue((char *)"");
15338 }
15339 static PyObject *_wrap_new_NotebookEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
15340 PyObject *resultobj;
15341 wxEventType arg1 = (wxEventType) wxEVT_NULL ;
15342 int arg2 = (int) 0 ;
15343 int arg3 = (int) -1 ;
15344 int arg4 = (int) -1 ;
15345 wxNotebookEvent *result;
15346 PyObject * obj0 = 0 ;
15347 PyObject * obj1 = 0 ;
15348 PyObject * obj2 = 0 ;
15349 PyObject * obj3 = 0 ;
15350 char *kwnames[] = {
15351 (char *) "commandType",(char *) "id",(char *) "nSel",(char *) "nOldSel", NULL
15352 };
15353
15354 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|OOOO:new_NotebookEvent",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
15355 if (obj0) {
15356 arg1 = (wxEventType) SWIG_AsInt(obj0);
15357 if (PyErr_Occurred()) SWIG_fail;
15358 }
15359 if (obj1) {
15360 arg2 = (int) SWIG_AsInt(obj1);
15361 if (PyErr_Occurred()) SWIG_fail;
15362 }
15363 if (obj2) {
15364 arg3 = (int) SWIG_AsInt(obj2);
15365 if (PyErr_Occurred()) SWIG_fail;
15366 }
15367 if (obj3) {
15368 arg4 = (int) SWIG_AsInt(obj3);
15369 if (PyErr_Occurred()) SWIG_fail;
15370 }
15371 {
15372 PyThreadState* __tstate = wxPyBeginAllowThreads();
15373 result = (wxNotebookEvent *)new wxNotebookEvent(arg1,arg2,arg3,arg4);
15374
15375 wxPyEndAllowThreads(__tstate);
15376 if (PyErr_Occurred()) SWIG_fail;
15377 }
15378 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxNotebookEvent, 1);
15379 return resultobj;
15380 fail:
15381 return NULL;
15382 }
15383
15384
15385 static PyObject * NotebookEvent_swigregister(PyObject *self, PyObject *args) {
15386 PyObject *obj;
15387 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
15388 SWIG_TypeClientData(SWIGTYPE_p_wxNotebookEvent, obj);
15389 Py_INCREF(obj);
15390 return Py_BuildValue((char *)"");
15391 }
15392 static PyObject *_wrap_new_Listbook(PyObject *self, PyObject *args, PyObject *kwargs) {
15393 PyObject *resultobj;
15394 wxWindow *arg1 = (wxWindow *) 0 ;
15395 int arg2 = (int) -1 ;
15396 wxPoint const &arg3_defvalue = wxDefaultPosition ;
15397 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
15398 wxSize const &arg4_defvalue = wxDefaultSize ;
15399 wxSize *arg4 = (wxSize *) &arg4_defvalue ;
15400 long arg5 = (long) 0 ;
15401 wxString const &arg6_defvalue = wxPyEmptyString ;
15402 wxString *arg6 = (wxString *) &arg6_defvalue ;
15403 wxListbook *result;
15404 wxPoint temp3 ;
15405 wxSize temp4 ;
15406 bool temp6 = False ;
15407 PyObject * obj0 = 0 ;
15408 PyObject * obj1 = 0 ;
15409 PyObject * obj2 = 0 ;
15410 PyObject * obj3 = 0 ;
15411 PyObject * obj4 = 0 ;
15412 PyObject * obj5 = 0 ;
15413 char *kwnames[] = {
15414 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
15415 };
15416
15417 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOO:new_Listbook",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail;
15418 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
15419 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15420 if (obj1) {
15421 arg2 = (int) SWIG_AsInt(obj1);
15422 if (PyErr_Occurred()) SWIG_fail;
15423 }
15424 if (obj2) {
15425 {
15426 arg3 = &temp3;
15427 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
15428 }
15429 }
15430 if (obj3) {
15431 {
15432 arg4 = &temp4;
15433 if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
15434 }
15435 }
15436 if (obj4) {
15437 arg5 = (long) SWIG_AsLong(obj4);
15438 if (PyErr_Occurred()) SWIG_fail;
15439 }
15440 if (obj5) {
15441 {
15442 arg6 = wxString_in_helper(obj5);
15443 if (arg6 == NULL) SWIG_fail;
15444 temp6 = True;
15445 }
15446 }
15447 {
15448 if (!wxPyCheckForApp()) SWIG_fail;
15449 PyThreadState* __tstate = wxPyBeginAllowThreads();
15450 result = (wxListbook *)new wxListbook(arg1,arg2,(wxPoint const &)*arg3,(wxSize const &)*arg4,arg5,(wxString const &)*arg6);
15451
15452 wxPyEndAllowThreads(__tstate);
15453 if (PyErr_Occurred()) SWIG_fail;
15454 }
15455 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxListbook, 1);
15456 {
15457 if (temp6)
15458 delete arg6;
15459 }
15460 return resultobj;
15461 fail:
15462 {
15463 if (temp6)
15464 delete arg6;
15465 }
15466 return NULL;
15467 }
15468
15469
15470 static PyObject *_wrap_new_PreListbook(PyObject *self, PyObject *args, PyObject *kwargs) {
15471 PyObject *resultobj;
15472 wxListbook *result;
15473 char *kwnames[] = {
15474 NULL
15475 };
15476
15477 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreListbook",kwnames)) goto fail;
15478 {
15479 if (!wxPyCheckForApp()) SWIG_fail;
15480 PyThreadState* __tstate = wxPyBeginAllowThreads();
15481 result = (wxListbook *)new wxListbook();
15482
15483 wxPyEndAllowThreads(__tstate);
15484 if (PyErr_Occurred()) SWIG_fail;
15485 }
15486 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxListbook, 1);
15487 return resultobj;
15488 fail:
15489 return NULL;
15490 }
15491
15492
15493 static PyObject *_wrap_Listbook_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
15494 PyObject *resultobj;
15495 wxListbook *arg1 = (wxListbook *) 0 ;
15496 wxWindow *arg2 = (wxWindow *) 0 ;
15497 int arg3 = (int) -1 ;
15498 wxPoint const &arg4_defvalue = wxDefaultPosition ;
15499 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
15500 wxSize const &arg5_defvalue = wxDefaultSize ;
15501 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
15502 long arg6 = (long) 0 ;
15503 wxString const &arg7_defvalue = wxPyEmptyString ;
15504 wxString *arg7 = (wxString *) &arg7_defvalue ;
15505 bool result;
15506 wxPoint temp4 ;
15507 wxSize temp5 ;
15508 bool temp7 = False ;
15509 PyObject * obj0 = 0 ;
15510 PyObject * obj1 = 0 ;
15511 PyObject * obj2 = 0 ;
15512 PyObject * obj3 = 0 ;
15513 PyObject * obj4 = 0 ;
15514 PyObject * obj5 = 0 ;
15515 PyObject * obj6 = 0 ;
15516 char *kwnames[] = {
15517 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
15518 };
15519
15520 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOO:Listbook_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
15521 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListbook,
15522 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15523 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
15524 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15525 if (obj2) {
15526 arg3 = (int) SWIG_AsInt(obj2);
15527 if (PyErr_Occurred()) SWIG_fail;
15528 }
15529 if (obj3) {
15530 {
15531 arg4 = &temp4;
15532 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
15533 }
15534 }
15535 if (obj4) {
15536 {
15537 arg5 = &temp5;
15538 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
15539 }
15540 }
15541 if (obj5) {
15542 arg6 = (long) SWIG_AsLong(obj5);
15543 if (PyErr_Occurred()) SWIG_fail;
15544 }
15545 if (obj6) {
15546 {
15547 arg7 = wxString_in_helper(obj6);
15548 if (arg7 == NULL) SWIG_fail;
15549 temp7 = True;
15550 }
15551 }
15552 {
15553 PyThreadState* __tstate = wxPyBeginAllowThreads();
15554 result = (bool)(arg1)->Create(arg2,arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxString const &)*arg7);
15555
15556 wxPyEndAllowThreads(__tstate);
15557 if (PyErr_Occurred()) SWIG_fail;
15558 }
15559 {
15560 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
15561 }
15562 {
15563 if (temp7)
15564 delete arg7;
15565 }
15566 return resultobj;
15567 fail:
15568 {
15569 if (temp7)
15570 delete arg7;
15571 }
15572 return NULL;
15573 }
15574
15575
15576 static PyObject *_wrap_Listbook_IsVertical(PyObject *self, PyObject *args, PyObject *kwargs) {
15577 PyObject *resultobj;
15578 wxListbook *arg1 = (wxListbook *) 0 ;
15579 bool result;
15580 PyObject * obj0 = 0 ;
15581 char *kwnames[] = {
15582 (char *) "self", NULL
15583 };
15584
15585 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:Listbook_IsVertical",kwnames,&obj0)) goto fail;
15586 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListbook,
15587 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15588 {
15589 PyThreadState* __tstate = wxPyBeginAllowThreads();
15590 result = (bool)((wxListbook const *)arg1)->IsVertical();
15591
15592 wxPyEndAllowThreads(__tstate);
15593 if (PyErr_Occurred()) SWIG_fail;
15594 }
15595 {
15596 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
15597 }
15598 return resultobj;
15599 fail:
15600 return NULL;
15601 }
15602
15603
15604 static PyObject * Listbook_swigregister(PyObject *self, PyObject *args) {
15605 PyObject *obj;
15606 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
15607 SWIG_TypeClientData(SWIGTYPE_p_wxListbook, obj);
15608 Py_INCREF(obj);
15609 return Py_BuildValue((char *)"");
15610 }
15611 static PyObject *_wrap_new_ListbookEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
15612 PyObject *resultobj;
15613 wxEventType arg1 = (wxEventType) wxEVT_NULL ;
15614 int arg2 = (int) 0 ;
15615 int arg3 = (int) -1 ;
15616 int arg4 = (int) -1 ;
15617 wxListbookEvent *result;
15618 PyObject * obj0 = 0 ;
15619 PyObject * obj1 = 0 ;
15620 PyObject * obj2 = 0 ;
15621 PyObject * obj3 = 0 ;
15622 char *kwnames[] = {
15623 (char *) "commandType",(char *) "id",(char *) "nSel",(char *) "nOldSel", NULL
15624 };
15625
15626 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|OOOO:new_ListbookEvent",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
15627 if (obj0) {
15628 arg1 = (wxEventType) SWIG_AsInt(obj0);
15629 if (PyErr_Occurred()) SWIG_fail;
15630 }
15631 if (obj1) {
15632 arg2 = (int) SWIG_AsInt(obj1);
15633 if (PyErr_Occurred()) SWIG_fail;
15634 }
15635 if (obj2) {
15636 arg3 = (int) SWIG_AsInt(obj2);
15637 if (PyErr_Occurred()) SWIG_fail;
15638 }
15639 if (obj3) {
15640 arg4 = (int) SWIG_AsInt(obj3);
15641 if (PyErr_Occurred()) SWIG_fail;
15642 }
15643 {
15644 PyThreadState* __tstate = wxPyBeginAllowThreads();
15645 result = (wxListbookEvent *)new wxListbookEvent(arg1,arg2,arg3,arg4);
15646
15647 wxPyEndAllowThreads(__tstate);
15648 if (PyErr_Occurred()) SWIG_fail;
15649 }
15650 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxListbookEvent, 1);
15651 return resultobj;
15652 fail:
15653 return NULL;
15654 }
15655
15656
15657 static PyObject * ListbookEvent_swigregister(PyObject *self, PyObject *args) {
15658 PyObject *obj;
15659 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
15660 SWIG_TypeClientData(SWIGTYPE_p_wxListbookEvent, obj);
15661 Py_INCREF(obj);
15662 return Py_BuildValue((char *)"");
15663 }
15664 static PyObject *_wrap_new_BookCtrlSizer(PyObject *self, PyObject *args, PyObject *kwargs) {
15665 PyObject *resultobj;
15666 wxBookCtrl *arg1 = (wxBookCtrl *) 0 ;
15667 wxBookCtrlSizer *result;
15668 PyObject * obj0 = 0 ;
15669 char *kwnames[] = {
15670 (char *) "nb", NULL
15671 };
15672
15673 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:new_BookCtrlSizer",kwnames,&obj0)) goto fail;
15674 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrl,
15675 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15676 {
15677 PyThreadState* __tstate = wxPyBeginAllowThreads();
15678 result = (wxBookCtrlSizer *)new wxBookCtrlSizer(arg1);
15679
15680 wxPyEndAllowThreads(__tstate);
15681 if (PyErr_Occurred()) SWIG_fail;
15682 }
15683 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxBookCtrlSizer, 1);
15684 return resultobj;
15685 fail:
15686 return NULL;
15687 }
15688
15689
15690 static PyObject *_wrap_BookCtrlSizer_RecalcSizes(PyObject *self, PyObject *args, PyObject *kwargs) {
15691 PyObject *resultobj;
15692 wxBookCtrlSizer *arg1 = (wxBookCtrlSizer *) 0 ;
15693 PyObject * obj0 = 0 ;
15694 char *kwnames[] = {
15695 (char *) "self", NULL
15696 };
15697
15698 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:BookCtrlSizer_RecalcSizes",kwnames,&obj0)) goto fail;
15699 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrlSizer,
15700 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15701 {
15702 PyThreadState* __tstate = wxPyBeginAllowThreads();
15703 (arg1)->RecalcSizes();
15704
15705 wxPyEndAllowThreads(__tstate);
15706 if (PyErr_Occurred()) SWIG_fail;
15707 }
15708 Py_INCREF(Py_None); resultobj = Py_None;
15709 return resultobj;
15710 fail:
15711 return NULL;
15712 }
15713
15714
15715 static PyObject *_wrap_BookCtrlSizer_CalcMin(PyObject *self, PyObject *args, PyObject *kwargs) {
15716 PyObject *resultobj;
15717 wxBookCtrlSizer *arg1 = (wxBookCtrlSizer *) 0 ;
15718 wxSize result;
15719 PyObject * obj0 = 0 ;
15720 char *kwnames[] = {
15721 (char *) "self", NULL
15722 };
15723
15724 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:BookCtrlSizer_CalcMin",kwnames,&obj0)) goto fail;
15725 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrlSizer,
15726 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15727 {
15728 PyThreadState* __tstate = wxPyBeginAllowThreads();
15729 result = (arg1)->CalcMin();
15730
15731 wxPyEndAllowThreads(__tstate);
15732 if (PyErr_Occurred()) SWIG_fail;
15733 }
15734 {
15735 wxSize * resultptr;
15736 resultptr = new wxSize((wxSize &) result);
15737 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
15738 }
15739 return resultobj;
15740 fail:
15741 return NULL;
15742 }
15743
15744
15745 static PyObject *_wrap_BookCtrlSizer_GetControl(PyObject *self, PyObject *args, PyObject *kwargs) {
15746 PyObject *resultobj;
15747 wxBookCtrlSizer *arg1 = (wxBookCtrlSizer *) 0 ;
15748 wxBookCtrl *result;
15749 PyObject * obj0 = 0 ;
15750 char *kwnames[] = {
15751 (char *) "self", NULL
15752 };
15753
15754 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:BookCtrlSizer_GetControl",kwnames,&obj0)) goto fail;
15755 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBookCtrlSizer,
15756 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15757 {
15758 PyThreadState* __tstate = wxPyBeginAllowThreads();
15759 result = (wxBookCtrl *)(arg1)->GetControl();
15760
15761 wxPyEndAllowThreads(__tstate);
15762 if (PyErr_Occurred()) SWIG_fail;
15763 }
15764 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxBookCtrl, 0);
15765 return resultobj;
15766 fail:
15767 return NULL;
15768 }
15769
15770
15771 static PyObject * BookCtrlSizer_swigregister(PyObject *self, PyObject *args) {
15772 PyObject *obj;
15773 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
15774 SWIG_TypeClientData(SWIGTYPE_p_wxBookCtrlSizer, obj);
15775 Py_INCREF(obj);
15776 return Py_BuildValue((char *)"");
15777 }
15778 static PyObject *_wrap_new_NotebookSizer(PyObject *self, PyObject *args, PyObject *kwargs) {
15779 PyObject *resultobj;
15780 wxNotebook *arg1 = (wxNotebook *) 0 ;
15781 wxNotebookSizer *result;
15782 PyObject * obj0 = 0 ;
15783 char *kwnames[] = {
15784 (char *) "nb", NULL
15785 };
15786
15787 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:new_NotebookSizer",kwnames,&obj0)) goto fail;
15788 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxNotebook,
15789 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15790 {
15791 PyThreadState* __tstate = wxPyBeginAllowThreads();
15792 result = (wxNotebookSizer *)new wxNotebookSizer(arg1);
15793
15794 wxPyEndAllowThreads(__tstate);
15795 if (PyErr_Occurred()) SWIG_fail;
15796 }
15797 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxNotebookSizer, 1);
15798 return resultobj;
15799 fail:
15800 return NULL;
15801 }
15802
15803
15804 static PyObject *_wrap_NotebookSizer_RecalcSizes(PyObject *self, PyObject *args, PyObject *kwargs) {
15805 PyObject *resultobj;
15806 wxNotebookSizer *arg1 = (wxNotebookSizer *) 0 ;
15807 PyObject * obj0 = 0 ;
15808 char *kwnames[] = {
15809 (char *) "self", NULL
15810 };
15811
15812 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:NotebookSizer_RecalcSizes",kwnames,&obj0)) goto fail;
15813 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxNotebookSizer,
15814 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15815 {
15816 PyThreadState* __tstate = wxPyBeginAllowThreads();
15817 (arg1)->RecalcSizes();
15818
15819 wxPyEndAllowThreads(__tstate);
15820 if (PyErr_Occurred()) SWIG_fail;
15821 }
15822 Py_INCREF(Py_None); resultobj = Py_None;
15823 return resultobj;
15824 fail:
15825 return NULL;
15826 }
15827
15828
15829 static PyObject *_wrap_NotebookSizer_CalcMin(PyObject *self, PyObject *args, PyObject *kwargs) {
15830 PyObject *resultobj;
15831 wxNotebookSizer *arg1 = (wxNotebookSizer *) 0 ;
15832 wxSize result;
15833 PyObject * obj0 = 0 ;
15834 char *kwnames[] = {
15835 (char *) "self", NULL
15836 };
15837
15838 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:NotebookSizer_CalcMin",kwnames,&obj0)) goto fail;
15839 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxNotebookSizer,
15840 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15841 {
15842 PyThreadState* __tstate = wxPyBeginAllowThreads();
15843 result = (arg1)->CalcMin();
15844
15845 wxPyEndAllowThreads(__tstate);
15846 if (PyErr_Occurred()) SWIG_fail;
15847 }
15848 {
15849 wxSize * resultptr;
15850 resultptr = new wxSize((wxSize &) result);
15851 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
15852 }
15853 return resultobj;
15854 fail:
15855 return NULL;
15856 }
15857
15858
15859 static PyObject *_wrap_NotebookSizer_GetNotebook(PyObject *self, PyObject *args, PyObject *kwargs) {
15860 PyObject *resultobj;
15861 wxNotebookSizer *arg1 = (wxNotebookSizer *) 0 ;
15862 wxNotebook *result;
15863 PyObject * obj0 = 0 ;
15864 char *kwnames[] = {
15865 (char *) "self", NULL
15866 };
15867
15868 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:NotebookSizer_GetNotebook",kwnames,&obj0)) goto fail;
15869 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxNotebookSizer,
15870 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15871 {
15872 PyThreadState* __tstate = wxPyBeginAllowThreads();
15873 result = (wxNotebook *)(arg1)->GetNotebook();
15874
15875 wxPyEndAllowThreads(__tstate);
15876 if (PyErr_Occurred()) SWIG_fail;
15877 }
15878 {
15879 resultobj = wxPyMake_wxObject(result, 0);
15880 }
15881 return resultobj;
15882 fail:
15883 return NULL;
15884 }
15885
15886
15887 static PyObject * NotebookSizer_swigregister(PyObject *self, PyObject *args) {
15888 PyObject *obj;
15889 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
15890 SWIG_TypeClientData(SWIGTYPE_p_wxNotebookSizer, obj);
15891 Py_INCREF(obj);
15892 return Py_BuildValue((char *)"");
15893 }
15894 static PyObject *_wrap_ToolBarToolBase_GetId(PyObject *self, PyObject *args, PyObject *kwargs) {
15895 PyObject *resultobj;
15896 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
15897 int result;
15898 PyObject * obj0 = 0 ;
15899 char *kwnames[] = {
15900 (char *) "self", NULL
15901 };
15902
15903 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_GetId",kwnames,&obj0)) goto fail;
15904 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
15905 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15906 {
15907 PyThreadState* __tstate = wxPyBeginAllowThreads();
15908 result = (int)(arg1)->GetId();
15909
15910 wxPyEndAllowThreads(__tstate);
15911 if (PyErr_Occurred()) SWIG_fail;
15912 }
15913 resultobj = SWIG_FromInt((int)result);
15914 return resultobj;
15915 fail:
15916 return NULL;
15917 }
15918
15919
15920 static PyObject *_wrap_ToolBarToolBase_GetControl(PyObject *self, PyObject *args, PyObject *kwargs) {
15921 PyObject *resultobj;
15922 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
15923 wxControl *result;
15924 PyObject * obj0 = 0 ;
15925 char *kwnames[] = {
15926 (char *) "self", NULL
15927 };
15928
15929 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_GetControl",kwnames,&obj0)) goto fail;
15930 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
15931 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15932 {
15933 PyThreadState* __tstate = wxPyBeginAllowThreads();
15934 result = (wxControl *)(arg1)->GetControl();
15935
15936 wxPyEndAllowThreads(__tstate);
15937 if (PyErr_Occurred()) SWIG_fail;
15938 }
15939 {
15940 resultobj = wxPyMake_wxObject(result, 0);
15941 }
15942 return resultobj;
15943 fail:
15944 return NULL;
15945 }
15946
15947
15948 static PyObject *_wrap_ToolBarToolBase_GetToolBar(PyObject *self, PyObject *args, PyObject *kwargs) {
15949 PyObject *resultobj;
15950 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
15951 wxToolBarBase *result;
15952 PyObject * obj0 = 0 ;
15953 char *kwnames[] = {
15954 (char *) "self", NULL
15955 };
15956
15957 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_GetToolBar",kwnames,&obj0)) goto fail;
15958 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
15959 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15960 {
15961 PyThreadState* __tstate = wxPyBeginAllowThreads();
15962 result = (wxToolBarBase *)(arg1)->GetToolBar();
15963
15964 wxPyEndAllowThreads(__tstate);
15965 if (PyErr_Occurred()) SWIG_fail;
15966 }
15967 {
15968 resultobj = wxPyMake_wxObject(result, 0);
15969 }
15970 return resultobj;
15971 fail:
15972 return NULL;
15973 }
15974
15975
15976 static PyObject *_wrap_ToolBarToolBase_IsButton(PyObject *self, PyObject *args, PyObject *kwargs) {
15977 PyObject *resultobj;
15978 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
15979 int result;
15980 PyObject * obj0 = 0 ;
15981 char *kwnames[] = {
15982 (char *) "self", NULL
15983 };
15984
15985 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_IsButton",kwnames,&obj0)) goto fail;
15986 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
15987 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
15988 {
15989 PyThreadState* __tstate = wxPyBeginAllowThreads();
15990 result = (int)(arg1)->IsButton();
15991
15992 wxPyEndAllowThreads(__tstate);
15993 if (PyErr_Occurred()) SWIG_fail;
15994 }
15995 resultobj = SWIG_FromInt((int)result);
15996 return resultobj;
15997 fail:
15998 return NULL;
15999 }
16000
16001
16002 static PyObject *_wrap_ToolBarToolBase_IsControl(PyObject *self, PyObject *args, PyObject *kwargs) {
16003 PyObject *resultobj;
16004 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16005 int result;
16006 PyObject * obj0 = 0 ;
16007 char *kwnames[] = {
16008 (char *) "self", NULL
16009 };
16010
16011 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_IsControl",kwnames,&obj0)) goto fail;
16012 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16013 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16014 {
16015 PyThreadState* __tstate = wxPyBeginAllowThreads();
16016 result = (int)(arg1)->IsControl();
16017
16018 wxPyEndAllowThreads(__tstate);
16019 if (PyErr_Occurred()) SWIG_fail;
16020 }
16021 resultobj = SWIG_FromInt((int)result);
16022 return resultobj;
16023 fail:
16024 return NULL;
16025 }
16026
16027
16028 static PyObject *_wrap_ToolBarToolBase_IsSeparator(PyObject *self, PyObject *args, PyObject *kwargs) {
16029 PyObject *resultobj;
16030 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16031 int result;
16032 PyObject * obj0 = 0 ;
16033 char *kwnames[] = {
16034 (char *) "self", NULL
16035 };
16036
16037 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_IsSeparator",kwnames,&obj0)) goto fail;
16038 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16039 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16040 {
16041 PyThreadState* __tstate = wxPyBeginAllowThreads();
16042 result = (int)(arg1)->IsSeparator();
16043
16044 wxPyEndAllowThreads(__tstate);
16045 if (PyErr_Occurred()) SWIG_fail;
16046 }
16047 resultobj = SWIG_FromInt((int)result);
16048 return resultobj;
16049 fail:
16050 return NULL;
16051 }
16052
16053
16054 static PyObject *_wrap_ToolBarToolBase_GetStyle(PyObject *self, PyObject *args, PyObject *kwargs) {
16055 PyObject *resultobj;
16056 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16057 int result;
16058 PyObject * obj0 = 0 ;
16059 char *kwnames[] = {
16060 (char *) "self", NULL
16061 };
16062
16063 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_GetStyle",kwnames,&obj0)) goto fail;
16064 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16065 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16066 {
16067 PyThreadState* __tstate = wxPyBeginAllowThreads();
16068 result = (int)(arg1)->GetStyle();
16069
16070 wxPyEndAllowThreads(__tstate);
16071 if (PyErr_Occurred()) SWIG_fail;
16072 }
16073 resultobj = SWIG_FromInt((int)result);
16074 return resultobj;
16075 fail:
16076 return NULL;
16077 }
16078
16079
16080 static PyObject *_wrap_ToolBarToolBase_GetKind(PyObject *self, PyObject *args, PyObject *kwargs) {
16081 PyObject *resultobj;
16082 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16083 int result;
16084 PyObject * obj0 = 0 ;
16085 char *kwnames[] = {
16086 (char *) "self", NULL
16087 };
16088
16089 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_GetKind",kwnames,&obj0)) goto fail;
16090 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16091 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16092 {
16093 PyThreadState* __tstate = wxPyBeginAllowThreads();
16094 result = (int)(arg1)->GetKind();
16095
16096 wxPyEndAllowThreads(__tstate);
16097 if (PyErr_Occurred()) SWIG_fail;
16098 }
16099 resultobj = SWIG_FromInt((int)result);
16100 return resultobj;
16101 fail:
16102 return NULL;
16103 }
16104
16105
16106 static PyObject *_wrap_ToolBarToolBase_IsEnabled(PyObject *self, PyObject *args, PyObject *kwargs) {
16107 PyObject *resultobj;
16108 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16109 bool result;
16110 PyObject * obj0 = 0 ;
16111 char *kwnames[] = {
16112 (char *) "self", NULL
16113 };
16114
16115 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_IsEnabled",kwnames,&obj0)) goto fail;
16116 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16117 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16118 {
16119 PyThreadState* __tstate = wxPyBeginAllowThreads();
16120 result = (bool)(arg1)->IsEnabled();
16121
16122 wxPyEndAllowThreads(__tstate);
16123 if (PyErr_Occurred()) SWIG_fail;
16124 }
16125 {
16126 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
16127 }
16128 return resultobj;
16129 fail:
16130 return NULL;
16131 }
16132
16133
16134 static PyObject *_wrap_ToolBarToolBase_IsToggled(PyObject *self, PyObject *args, PyObject *kwargs) {
16135 PyObject *resultobj;
16136 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16137 bool result;
16138 PyObject * obj0 = 0 ;
16139 char *kwnames[] = {
16140 (char *) "self", NULL
16141 };
16142
16143 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_IsToggled",kwnames,&obj0)) goto fail;
16144 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16145 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16146 {
16147 PyThreadState* __tstate = wxPyBeginAllowThreads();
16148 result = (bool)(arg1)->IsToggled();
16149
16150 wxPyEndAllowThreads(__tstate);
16151 if (PyErr_Occurred()) SWIG_fail;
16152 }
16153 {
16154 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
16155 }
16156 return resultobj;
16157 fail:
16158 return NULL;
16159 }
16160
16161
16162 static PyObject *_wrap_ToolBarToolBase_CanBeToggled(PyObject *self, PyObject *args, PyObject *kwargs) {
16163 PyObject *resultobj;
16164 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16165 bool result;
16166 PyObject * obj0 = 0 ;
16167 char *kwnames[] = {
16168 (char *) "self", NULL
16169 };
16170
16171 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_CanBeToggled",kwnames,&obj0)) goto fail;
16172 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16173 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16174 {
16175 PyThreadState* __tstate = wxPyBeginAllowThreads();
16176 result = (bool)(arg1)->CanBeToggled();
16177
16178 wxPyEndAllowThreads(__tstate);
16179 if (PyErr_Occurred()) SWIG_fail;
16180 }
16181 {
16182 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
16183 }
16184 return resultobj;
16185 fail:
16186 return NULL;
16187 }
16188
16189
16190 static PyObject *_wrap_ToolBarToolBase_GetNormalBitmap(PyObject *self, PyObject *args, PyObject *kwargs) {
16191 PyObject *resultobj;
16192 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16193 wxBitmap *result;
16194 PyObject * obj0 = 0 ;
16195 char *kwnames[] = {
16196 (char *) "self", NULL
16197 };
16198
16199 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_GetNormalBitmap",kwnames,&obj0)) goto fail;
16200 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16201 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16202 {
16203 PyThreadState* __tstate = wxPyBeginAllowThreads();
16204 {
16205 wxBitmap const &_result_ref = (arg1)->GetNormalBitmap();
16206 result = (wxBitmap *) &_result_ref;
16207 }
16208
16209 wxPyEndAllowThreads(__tstate);
16210 if (PyErr_Occurred()) SWIG_fail;
16211 }
16212 {
16213 wxBitmap* resultptr = new wxBitmap(*result);
16214 resultobj = SWIG_NewPointerObj((void*)(resultptr), SWIGTYPE_p_wxBitmap, 1);
16215 }
16216 return resultobj;
16217 fail:
16218 return NULL;
16219 }
16220
16221
16222 static PyObject *_wrap_ToolBarToolBase_GetDisabledBitmap(PyObject *self, PyObject *args, PyObject *kwargs) {
16223 PyObject *resultobj;
16224 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16225 wxBitmap *result;
16226 PyObject * obj0 = 0 ;
16227 char *kwnames[] = {
16228 (char *) "self", NULL
16229 };
16230
16231 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_GetDisabledBitmap",kwnames,&obj0)) goto fail;
16232 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16233 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16234 {
16235 PyThreadState* __tstate = wxPyBeginAllowThreads();
16236 {
16237 wxBitmap const &_result_ref = (arg1)->GetDisabledBitmap();
16238 result = (wxBitmap *) &_result_ref;
16239 }
16240
16241 wxPyEndAllowThreads(__tstate);
16242 if (PyErr_Occurred()) SWIG_fail;
16243 }
16244 {
16245 wxBitmap* resultptr = new wxBitmap(*result);
16246 resultobj = SWIG_NewPointerObj((void*)(resultptr), SWIGTYPE_p_wxBitmap, 1);
16247 }
16248 return resultobj;
16249 fail:
16250 return NULL;
16251 }
16252
16253
16254 static PyObject *_wrap_ToolBarToolBase_GetBitmap(PyObject *self, PyObject *args, PyObject *kwargs) {
16255 PyObject *resultobj;
16256 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16257 wxBitmap result;
16258 PyObject * obj0 = 0 ;
16259 char *kwnames[] = {
16260 (char *) "self", NULL
16261 };
16262
16263 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_GetBitmap",kwnames,&obj0)) goto fail;
16264 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16265 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16266 {
16267 PyThreadState* __tstate = wxPyBeginAllowThreads();
16268 result = (arg1)->GetBitmap();
16269
16270 wxPyEndAllowThreads(__tstate);
16271 if (PyErr_Occurred()) SWIG_fail;
16272 }
16273 {
16274 wxBitmap * resultptr;
16275 resultptr = new wxBitmap((wxBitmap &) result);
16276 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxBitmap, 1);
16277 }
16278 return resultobj;
16279 fail:
16280 return NULL;
16281 }
16282
16283
16284 static PyObject *_wrap_ToolBarToolBase_GetLabel(PyObject *self, PyObject *args, PyObject *kwargs) {
16285 PyObject *resultobj;
16286 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16287 wxString result;
16288 PyObject * obj0 = 0 ;
16289 char *kwnames[] = {
16290 (char *) "self", NULL
16291 };
16292
16293 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_GetLabel",kwnames,&obj0)) goto fail;
16294 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16295 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16296 {
16297 PyThreadState* __tstate = wxPyBeginAllowThreads();
16298 result = (arg1)->GetLabel();
16299
16300 wxPyEndAllowThreads(__tstate);
16301 if (PyErr_Occurred()) SWIG_fail;
16302 }
16303 {
16304 #if wxUSE_UNICODE
16305 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
16306 #else
16307 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
16308 #endif
16309 }
16310 return resultobj;
16311 fail:
16312 return NULL;
16313 }
16314
16315
16316 static PyObject *_wrap_ToolBarToolBase_GetShortHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
16317 PyObject *resultobj;
16318 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16319 wxString result;
16320 PyObject * obj0 = 0 ;
16321 char *kwnames[] = {
16322 (char *) "self", NULL
16323 };
16324
16325 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_GetShortHelp",kwnames,&obj0)) goto fail;
16326 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16327 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16328 {
16329 PyThreadState* __tstate = wxPyBeginAllowThreads();
16330 result = (arg1)->GetShortHelp();
16331
16332 wxPyEndAllowThreads(__tstate);
16333 if (PyErr_Occurred()) SWIG_fail;
16334 }
16335 {
16336 #if wxUSE_UNICODE
16337 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
16338 #else
16339 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
16340 #endif
16341 }
16342 return resultobj;
16343 fail:
16344 return NULL;
16345 }
16346
16347
16348 static PyObject *_wrap_ToolBarToolBase_GetLongHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
16349 PyObject *resultobj;
16350 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16351 wxString result;
16352 PyObject * obj0 = 0 ;
16353 char *kwnames[] = {
16354 (char *) "self", NULL
16355 };
16356
16357 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_GetLongHelp",kwnames,&obj0)) goto fail;
16358 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16359 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16360 {
16361 PyThreadState* __tstate = wxPyBeginAllowThreads();
16362 result = (arg1)->GetLongHelp();
16363
16364 wxPyEndAllowThreads(__tstate);
16365 if (PyErr_Occurred()) SWIG_fail;
16366 }
16367 {
16368 #if wxUSE_UNICODE
16369 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
16370 #else
16371 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
16372 #endif
16373 }
16374 return resultobj;
16375 fail:
16376 return NULL;
16377 }
16378
16379
16380 static PyObject *_wrap_ToolBarToolBase_Enable(PyObject *self, PyObject *args, PyObject *kwargs) {
16381 PyObject *resultobj;
16382 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16383 bool arg2 ;
16384 bool result;
16385 PyObject * obj0 = 0 ;
16386 PyObject * obj1 = 0 ;
16387 char *kwnames[] = {
16388 (char *) "self",(char *) "enable", NULL
16389 };
16390
16391 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarToolBase_Enable",kwnames,&obj0,&obj1)) goto fail;
16392 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16393 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16394 arg2 = (bool) SWIG_AsBool(obj1);
16395 if (PyErr_Occurred()) SWIG_fail;
16396 {
16397 PyThreadState* __tstate = wxPyBeginAllowThreads();
16398 result = (bool)(arg1)->Enable(arg2);
16399
16400 wxPyEndAllowThreads(__tstate);
16401 if (PyErr_Occurred()) SWIG_fail;
16402 }
16403 {
16404 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
16405 }
16406 return resultobj;
16407 fail:
16408 return NULL;
16409 }
16410
16411
16412 static PyObject *_wrap_ToolBarToolBase_Toggle(PyObject *self, PyObject *args, PyObject *kwargs) {
16413 PyObject *resultobj;
16414 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16415 PyObject * obj0 = 0 ;
16416 char *kwnames[] = {
16417 (char *) "self", NULL
16418 };
16419
16420 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_Toggle",kwnames,&obj0)) goto fail;
16421 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16422 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16423 {
16424 PyThreadState* __tstate = wxPyBeginAllowThreads();
16425 (arg1)->Toggle();
16426
16427 wxPyEndAllowThreads(__tstate);
16428 if (PyErr_Occurred()) SWIG_fail;
16429 }
16430 Py_INCREF(Py_None); resultobj = Py_None;
16431 return resultobj;
16432 fail:
16433 return NULL;
16434 }
16435
16436
16437 static PyObject *_wrap_ToolBarToolBase_SetToggle(PyObject *self, PyObject *args, PyObject *kwargs) {
16438 PyObject *resultobj;
16439 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16440 bool arg2 ;
16441 bool result;
16442 PyObject * obj0 = 0 ;
16443 PyObject * obj1 = 0 ;
16444 char *kwnames[] = {
16445 (char *) "self",(char *) "toggle", NULL
16446 };
16447
16448 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarToolBase_SetToggle",kwnames,&obj0,&obj1)) goto fail;
16449 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16450 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16451 arg2 = (bool) SWIG_AsBool(obj1);
16452 if (PyErr_Occurred()) SWIG_fail;
16453 {
16454 PyThreadState* __tstate = wxPyBeginAllowThreads();
16455 result = (bool)(arg1)->SetToggle(arg2);
16456
16457 wxPyEndAllowThreads(__tstate);
16458 if (PyErr_Occurred()) SWIG_fail;
16459 }
16460 {
16461 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
16462 }
16463 return resultobj;
16464 fail:
16465 return NULL;
16466 }
16467
16468
16469 static PyObject *_wrap_ToolBarToolBase_SetShortHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
16470 PyObject *resultobj;
16471 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16472 wxString *arg2 = 0 ;
16473 bool result;
16474 bool temp2 = False ;
16475 PyObject * obj0 = 0 ;
16476 PyObject * obj1 = 0 ;
16477 char *kwnames[] = {
16478 (char *) "self",(char *) "help", NULL
16479 };
16480
16481 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarToolBase_SetShortHelp",kwnames,&obj0,&obj1)) goto fail;
16482 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16483 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16484 {
16485 arg2 = wxString_in_helper(obj1);
16486 if (arg2 == NULL) SWIG_fail;
16487 temp2 = True;
16488 }
16489 {
16490 PyThreadState* __tstate = wxPyBeginAllowThreads();
16491 result = (bool)(arg1)->SetShortHelp((wxString const &)*arg2);
16492
16493 wxPyEndAllowThreads(__tstate);
16494 if (PyErr_Occurred()) SWIG_fail;
16495 }
16496 {
16497 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
16498 }
16499 {
16500 if (temp2)
16501 delete arg2;
16502 }
16503 return resultobj;
16504 fail:
16505 {
16506 if (temp2)
16507 delete arg2;
16508 }
16509 return NULL;
16510 }
16511
16512
16513 static PyObject *_wrap_ToolBarToolBase_SetLongHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
16514 PyObject *resultobj;
16515 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16516 wxString *arg2 = 0 ;
16517 bool result;
16518 bool temp2 = False ;
16519 PyObject * obj0 = 0 ;
16520 PyObject * obj1 = 0 ;
16521 char *kwnames[] = {
16522 (char *) "self",(char *) "help", NULL
16523 };
16524
16525 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarToolBase_SetLongHelp",kwnames,&obj0,&obj1)) goto fail;
16526 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16527 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16528 {
16529 arg2 = wxString_in_helper(obj1);
16530 if (arg2 == NULL) SWIG_fail;
16531 temp2 = True;
16532 }
16533 {
16534 PyThreadState* __tstate = wxPyBeginAllowThreads();
16535 result = (bool)(arg1)->SetLongHelp((wxString const &)*arg2);
16536
16537 wxPyEndAllowThreads(__tstate);
16538 if (PyErr_Occurred()) SWIG_fail;
16539 }
16540 {
16541 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
16542 }
16543 {
16544 if (temp2)
16545 delete arg2;
16546 }
16547 return resultobj;
16548 fail:
16549 {
16550 if (temp2)
16551 delete arg2;
16552 }
16553 return NULL;
16554 }
16555
16556
16557 static PyObject *_wrap_ToolBarToolBase_SetNormalBitmap(PyObject *self, PyObject *args, PyObject *kwargs) {
16558 PyObject *resultobj;
16559 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16560 wxBitmap *arg2 = 0 ;
16561 PyObject * obj0 = 0 ;
16562 PyObject * obj1 = 0 ;
16563 char *kwnames[] = {
16564 (char *) "self",(char *) "bmp", NULL
16565 };
16566
16567 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarToolBase_SetNormalBitmap",kwnames,&obj0,&obj1)) goto fail;
16568 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16569 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16570 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxBitmap,
16571 SWIG_POINTER_EXCEPTION | 0)) == -1)
16572 SWIG_fail;
16573 if (arg2 == NULL) {
16574 PyErr_SetString(PyExc_TypeError,"null reference");
16575 SWIG_fail;
16576 }
16577 {
16578 PyThreadState* __tstate = wxPyBeginAllowThreads();
16579 (arg1)->SetNormalBitmap((wxBitmap const &)*arg2);
16580
16581 wxPyEndAllowThreads(__tstate);
16582 if (PyErr_Occurred()) SWIG_fail;
16583 }
16584 Py_INCREF(Py_None); resultobj = Py_None;
16585 return resultobj;
16586 fail:
16587 return NULL;
16588 }
16589
16590
16591 static PyObject *_wrap_ToolBarToolBase_SetDisabledBitmap(PyObject *self, PyObject *args, PyObject *kwargs) {
16592 PyObject *resultobj;
16593 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16594 wxBitmap *arg2 = 0 ;
16595 PyObject * obj0 = 0 ;
16596 PyObject * obj1 = 0 ;
16597 char *kwnames[] = {
16598 (char *) "self",(char *) "bmp", NULL
16599 };
16600
16601 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarToolBase_SetDisabledBitmap",kwnames,&obj0,&obj1)) goto fail;
16602 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16603 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16604 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxBitmap,
16605 SWIG_POINTER_EXCEPTION | 0)) == -1)
16606 SWIG_fail;
16607 if (arg2 == NULL) {
16608 PyErr_SetString(PyExc_TypeError,"null reference");
16609 SWIG_fail;
16610 }
16611 {
16612 PyThreadState* __tstate = wxPyBeginAllowThreads();
16613 (arg1)->SetDisabledBitmap((wxBitmap const &)*arg2);
16614
16615 wxPyEndAllowThreads(__tstate);
16616 if (PyErr_Occurred()) SWIG_fail;
16617 }
16618 Py_INCREF(Py_None); resultobj = Py_None;
16619 return resultobj;
16620 fail:
16621 return NULL;
16622 }
16623
16624
16625 static PyObject *_wrap_ToolBarToolBase_SetLabel(PyObject *self, PyObject *args, PyObject *kwargs) {
16626 PyObject *resultobj;
16627 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16628 wxString *arg2 = 0 ;
16629 bool temp2 = False ;
16630 PyObject * obj0 = 0 ;
16631 PyObject * obj1 = 0 ;
16632 char *kwnames[] = {
16633 (char *) "self",(char *) "label", NULL
16634 };
16635
16636 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarToolBase_SetLabel",kwnames,&obj0,&obj1)) goto fail;
16637 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16638 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16639 {
16640 arg2 = wxString_in_helper(obj1);
16641 if (arg2 == NULL) SWIG_fail;
16642 temp2 = True;
16643 }
16644 {
16645 PyThreadState* __tstate = wxPyBeginAllowThreads();
16646 (arg1)->SetLabel((wxString const &)*arg2);
16647
16648 wxPyEndAllowThreads(__tstate);
16649 if (PyErr_Occurred()) SWIG_fail;
16650 }
16651 Py_INCREF(Py_None); resultobj = Py_None;
16652 {
16653 if (temp2)
16654 delete arg2;
16655 }
16656 return resultobj;
16657 fail:
16658 {
16659 if (temp2)
16660 delete arg2;
16661 }
16662 return NULL;
16663 }
16664
16665
16666 static PyObject *_wrap_ToolBarToolBase_Detach(PyObject *self, PyObject *args, PyObject *kwargs) {
16667 PyObject *resultobj;
16668 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16669 PyObject * obj0 = 0 ;
16670 char *kwnames[] = {
16671 (char *) "self", NULL
16672 };
16673
16674 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_Detach",kwnames,&obj0)) goto fail;
16675 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16676 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16677 {
16678 PyThreadState* __tstate = wxPyBeginAllowThreads();
16679 (arg1)->Detach();
16680
16681 wxPyEndAllowThreads(__tstate);
16682 if (PyErr_Occurred()) SWIG_fail;
16683 }
16684 Py_INCREF(Py_None); resultobj = Py_None;
16685 return resultobj;
16686 fail:
16687 return NULL;
16688 }
16689
16690
16691 static PyObject *_wrap_ToolBarToolBase_Attach(PyObject *self, PyObject *args, PyObject *kwargs) {
16692 PyObject *resultobj;
16693 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16694 wxToolBarBase *arg2 = (wxToolBarBase *) 0 ;
16695 PyObject * obj0 = 0 ;
16696 PyObject * obj1 = 0 ;
16697 char *kwnames[] = {
16698 (char *) "self",(char *) "tbar", NULL
16699 };
16700
16701 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarToolBase_Attach",kwnames,&obj0,&obj1)) goto fail;
16702 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16703 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16704 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxToolBarBase,
16705 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16706 {
16707 PyThreadState* __tstate = wxPyBeginAllowThreads();
16708 (arg1)->Attach(arg2);
16709
16710 wxPyEndAllowThreads(__tstate);
16711 if (PyErr_Occurred()) SWIG_fail;
16712 }
16713 Py_INCREF(Py_None); resultobj = Py_None;
16714 return resultobj;
16715 fail:
16716 return NULL;
16717 }
16718
16719
16720 static PyObject *_wrap_ToolBarToolBase_GetClientData(PyObject *self, PyObject *args, PyObject *kwargs) {
16721 PyObject *resultobj;
16722 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16723 PyObject *result;
16724 PyObject * obj0 = 0 ;
16725 char *kwnames[] = {
16726 (char *) "self", NULL
16727 };
16728
16729 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarToolBase_GetClientData",kwnames,&obj0)) goto fail;
16730 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16731 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16732 {
16733 PyThreadState* __tstate = wxPyBeginAllowThreads();
16734 result = (PyObject *)wxToolBarToolBase_GetClientData(arg1);
16735
16736 wxPyEndAllowThreads(__tstate);
16737 if (PyErr_Occurred()) SWIG_fail;
16738 }
16739 resultobj = result;
16740 return resultobj;
16741 fail:
16742 return NULL;
16743 }
16744
16745
16746 static PyObject *_wrap_ToolBarToolBase_SetClientData(PyObject *self, PyObject *args, PyObject *kwargs) {
16747 PyObject *resultobj;
16748 wxToolBarToolBase *arg1 = (wxToolBarToolBase *) 0 ;
16749 PyObject *arg2 = (PyObject *) 0 ;
16750 PyObject * obj0 = 0 ;
16751 PyObject * obj1 = 0 ;
16752 char *kwnames[] = {
16753 (char *) "self",(char *) "clientData", NULL
16754 };
16755
16756 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarToolBase_SetClientData",kwnames,&obj0,&obj1)) goto fail;
16757 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarToolBase,
16758 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16759 arg2 = obj1;
16760 {
16761 PyThreadState* __tstate = wxPyBeginAllowThreads();
16762 wxToolBarToolBase_SetClientData(arg1,arg2);
16763
16764 wxPyEndAllowThreads(__tstate);
16765 if (PyErr_Occurred()) SWIG_fail;
16766 }
16767 Py_INCREF(Py_None); resultobj = Py_None;
16768 return resultobj;
16769 fail:
16770 return NULL;
16771 }
16772
16773
16774 static PyObject * ToolBarToolBase_swigregister(PyObject *self, PyObject *args) {
16775 PyObject *obj;
16776 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
16777 SWIG_TypeClientData(SWIGTYPE_p_wxToolBarToolBase, obj);
16778 Py_INCREF(obj);
16779 return Py_BuildValue((char *)"");
16780 }
16781 static PyObject *_wrap_ToolBarBase_DoAddTool(PyObject *self, PyObject *args, PyObject *kwargs) {
16782 PyObject *resultobj;
16783 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
16784 int arg2 ;
16785 wxString *arg3 = 0 ;
16786 wxBitmap *arg4 = 0 ;
16787 wxBitmap const &arg5_defvalue = wxNullBitmap ;
16788 wxBitmap *arg5 = (wxBitmap *) &arg5_defvalue ;
16789 int arg6 = (int) wxITEM_NORMAL ;
16790 wxString const &arg7_defvalue = wxPyEmptyString ;
16791 wxString *arg7 = (wxString *) &arg7_defvalue ;
16792 wxString const &arg8_defvalue = wxPyEmptyString ;
16793 wxString *arg8 = (wxString *) &arg8_defvalue ;
16794 PyObject *arg9 = (PyObject *) NULL ;
16795 wxToolBarToolBase *result;
16796 bool temp3 = False ;
16797 bool temp7 = False ;
16798 bool temp8 = False ;
16799 PyObject * obj0 = 0 ;
16800 PyObject * obj1 = 0 ;
16801 PyObject * obj2 = 0 ;
16802 PyObject * obj3 = 0 ;
16803 PyObject * obj4 = 0 ;
16804 PyObject * obj5 = 0 ;
16805 PyObject * obj6 = 0 ;
16806 PyObject * obj7 = 0 ;
16807 PyObject * obj8 = 0 ;
16808 char *kwnames[] = {
16809 (char *) "self",(char *) "id",(char *) "label",(char *) "bitmap",(char *) "bmpDisabled",(char *) "kind",(char *) "shortHelp",(char *) "longHelp",(char *) "clientData", NULL
16810 };
16811
16812 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO|OOOOO:ToolBarBase_DoAddTool",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail;
16813 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
16814 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16815 arg2 = (int) SWIG_AsInt(obj1);
16816 if (PyErr_Occurred()) SWIG_fail;
16817 {
16818 arg3 = wxString_in_helper(obj2);
16819 if (arg3 == NULL) SWIG_fail;
16820 temp3 = True;
16821 }
16822 if ((SWIG_ConvertPtr(obj3,(void **)(&arg4),SWIGTYPE_p_wxBitmap,
16823 SWIG_POINTER_EXCEPTION | 0)) == -1)
16824 SWIG_fail;
16825 if (arg4 == NULL) {
16826 PyErr_SetString(PyExc_TypeError,"null reference");
16827 SWIG_fail;
16828 }
16829 if (obj4) {
16830 if ((SWIG_ConvertPtr(obj4,(void **)(&arg5),SWIGTYPE_p_wxBitmap,
16831 SWIG_POINTER_EXCEPTION | 0)) == -1)
16832 SWIG_fail;
16833 if (arg5 == NULL) {
16834 PyErr_SetString(PyExc_TypeError,"null reference");
16835 SWIG_fail;
16836 }
16837 }
16838 if (obj5) {
16839 arg6 = (wxItemKind) SWIG_AsInt(obj5);
16840 if (PyErr_Occurred()) SWIG_fail;
16841 }
16842 if (obj6) {
16843 {
16844 arg7 = wxString_in_helper(obj6);
16845 if (arg7 == NULL) SWIG_fail;
16846 temp7 = True;
16847 }
16848 }
16849 if (obj7) {
16850 {
16851 arg8 = wxString_in_helper(obj7);
16852 if (arg8 == NULL) SWIG_fail;
16853 temp8 = True;
16854 }
16855 }
16856 if (obj8) {
16857 arg9 = obj8;
16858 }
16859 {
16860 PyThreadState* __tstate = wxPyBeginAllowThreads();
16861 result = (wxToolBarToolBase *)wxToolBarBase_DoAddTool(arg1,arg2,(wxString const &)*arg3,(wxBitmap const &)*arg4,(wxBitmap const &)*arg5,(wxItemKind )arg6,(wxString const &)*arg7,(wxString const &)*arg8,arg9);
16862
16863 wxPyEndAllowThreads(__tstate);
16864 if (PyErr_Occurred()) SWIG_fail;
16865 }
16866 {
16867 resultobj = wxPyMake_wxObject(result, 0);
16868 }
16869 {
16870 if (temp3)
16871 delete arg3;
16872 }
16873 {
16874 if (temp7)
16875 delete arg7;
16876 }
16877 {
16878 if (temp8)
16879 delete arg8;
16880 }
16881 return resultobj;
16882 fail:
16883 {
16884 if (temp3)
16885 delete arg3;
16886 }
16887 {
16888 if (temp7)
16889 delete arg7;
16890 }
16891 {
16892 if (temp8)
16893 delete arg8;
16894 }
16895 return NULL;
16896 }
16897
16898
16899 static PyObject *_wrap_ToolBarBase_DoInsertTool(PyObject *self, PyObject *args, PyObject *kwargs) {
16900 PyObject *resultobj;
16901 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
16902 size_t arg2 ;
16903 int arg3 ;
16904 wxString *arg4 = 0 ;
16905 wxBitmap *arg5 = 0 ;
16906 wxBitmap const &arg6_defvalue = wxNullBitmap ;
16907 wxBitmap *arg6 = (wxBitmap *) &arg6_defvalue ;
16908 int arg7 = (int) wxITEM_NORMAL ;
16909 wxString const &arg8_defvalue = wxPyEmptyString ;
16910 wxString *arg8 = (wxString *) &arg8_defvalue ;
16911 wxString const &arg9_defvalue = wxPyEmptyString ;
16912 wxString *arg9 = (wxString *) &arg9_defvalue ;
16913 PyObject *arg10 = (PyObject *) NULL ;
16914 wxToolBarToolBase *result;
16915 bool temp4 = False ;
16916 bool temp8 = False ;
16917 bool temp9 = False ;
16918 PyObject * obj0 = 0 ;
16919 PyObject * obj1 = 0 ;
16920 PyObject * obj2 = 0 ;
16921 PyObject * obj3 = 0 ;
16922 PyObject * obj4 = 0 ;
16923 PyObject * obj5 = 0 ;
16924 PyObject * obj6 = 0 ;
16925 PyObject * obj7 = 0 ;
16926 PyObject * obj8 = 0 ;
16927 PyObject * obj9 = 0 ;
16928 char *kwnames[] = {
16929 (char *) "self",(char *) "pos",(char *) "id",(char *) "label",(char *) "bitmap",(char *) "bmpDisabled",(char *) "kind",(char *) "shortHelp",(char *) "longHelp",(char *) "clientData", NULL
16930 };
16931
16932 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO|OOOOO:ToolBarBase_DoInsertTool",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) goto fail;
16933 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
16934 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
16935 arg2 = (size_t) SWIG_AsUnsignedLong(obj1);
16936 if (PyErr_Occurred()) SWIG_fail;
16937 arg3 = (int) SWIG_AsInt(obj2);
16938 if (PyErr_Occurred()) SWIG_fail;
16939 {
16940 arg4 = wxString_in_helper(obj3);
16941 if (arg4 == NULL) SWIG_fail;
16942 temp4 = True;
16943 }
16944 if ((SWIG_ConvertPtr(obj4,(void **)(&arg5),SWIGTYPE_p_wxBitmap,
16945 SWIG_POINTER_EXCEPTION | 0)) == -1)
16946 SWIG_fail;
16947 if (arg5 == NULL) {
16948 PyErr_SetString(PyExc_TypeError,"null reference");
16949 SWIG_fail;
16950 }
16951 if (obj5) {
16952 if ((SWIG_ConvertPtr(obj5,(void **)(&arg6),SWIGTYPE_p_wxBitmap,
16953 SWIG_POINTER_EXCEPTION | 0)) == -1)
16954 SWIG_fail;
16955 if (arg6 == NULL) {
16956 PyErr_SetString(PyExc_TypeError,"null reference");
16957 SWIG_fail;
16958 }
16959 }
16960 if (obj6) {
16961 arg7 = (wxItemKind) SWIG_AsInt(obj6);
16962 if (PyErr_Occurred()) SWIG_fail;
16963 }
16964 if (obj7) {
16965 {
16966 arg8 = wxString_in_helper(obj7);
16967 if (arg8 == NULL) SWIG_fail;
16968 temp8 = True;
16969 }
16970 }
16971 if (obj8) {
16972 {
16973 arg9 = wxString_in_helper(obj8);
16974 if (arg9 == NULL) SWIG_fail;
16975 temp9 = True;
16976 }
16977 }
16978 if (obj9) {
16979 arg10 = obj9;
16980 }
16981 {
16982 PyThreadState* __tstate = wxPyBeginAllowThreads();
16983 result = (wxToolBarToolBase *)wxToolBarBase_DoInsertTool(arg1,arg2,arg3,(wxString const &)*arg4,(wxBitmap const &)*arg5,(wxBitmap const &)*arg6,(wxItemKind )arg7,(wxString const &)*arg8,(wxString const &)*arg9,arg10);
16984
16985 wxPyEndAllowThreads(__tstate);
16986 if (PyErr_Occurred()) SWIG_fail;
16987 }
16988 {
16989 resultobj = wxPyMake_wxObject(result, 0);
16990 }
16991 {
16992 if (temp4)
16993 delete arg4;
16994 }
16995 {
16996 if (temp8)
16997 delete arg8;
16998 }
16999 {
17000 if (temp9)
17001 delete arg9;
17002 }
17003 return resultobj;
17004 fail:
17005 {
17006 if (temp4)
17007 delete arg4;
17008 }
17009 {
17010 if (temp8)
17011 delete arg8;
17012 }
17013 {
17014 if (temp9)
17015 delete arg9;
17016 }
17017 return NULL;
17018 }
17019
17020
17021 static PyObject *_wrap_ToolBarBase_AddToolItem(PyObject *self, PyObject *args, PyObject *kwargs) {
17022 PyObject *resultobj;
17023 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17024 wxToolBarToolBase *arg2 = (wxToolBarToolBase *) 0 ;
17025 wxToolBarToolBase *result;
17026 PyObject * obj0 = 0 ;
17027 PyObject * obj1 = 0 ;
17028 char *kwnames[] = {
17029 (char *) "self",(char *) "tool", NULL
17030 };
17031
17032 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_AddToolItem",kwnames,&obj0,&obj1)) goto fail;
17033 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17034 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17035 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxToolBarToolBase,
17036 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17037 {
17038 PyThreadState* __tstate = wxPyBeginAllowThreads();
17039 result = (wxToolBarToolBase *)(arg1)->AddTool(arg2);
17040
17041 wxPyEndAllowThreads(__tstate);
17042 if (PyErr_Occurred()) SWIG_fail;
17043 }
17044 {
17045 resultobj = wxPyMake_wxObject(result, 0);
17046 }
17047 return resultobj;
17048 fail:
17049 return NULL;
17050 }
17051
17052
17053 static PyObject *_wrap_ToolBarBase_InsertToolItem(PyObject *self, PyObject *args, PyObject *kwargs) {
17054 PyObject *resultobj;
17055 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17056 size_t arg2 ;
17057 wxToolBarToolBase *arg3 = (wxToolBarToolBase *) 0 ;
17058 wxToolBarToolBase *result;
17059 PyObject * obj0 = 0 ;
17060 PyObject * obj1 = 0 ;
17061 PyObject * obj2 = 0 ;
17062 char *kwnames[] = {
17063 (char *) "self",(char *) "pos",(char *) "tool", NULL
17064 };
17065
17066 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ToolBarBase_InsertToolItem",kwnames,&obj0,&obj1,&obj2)) goto fail;
17067 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17068 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17069 arg2 = (size_t) SWIG_AsUnsignedLong(obj1);
17070 if (PyErr_Occurred()) SWIG_fail;
17071 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxToolBarToolBase,
17072 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17073 {
17074 PyThreadState* __tstate = wxPyBeginAllowThreads();
17075 result = (wxToolBarToolBase *)(arg1)->InsertTool(arg2,arg3);
17076
17077 wxPyEndAllowThreads(__tstate);
17078 if (PyErr_Occurred()) SWIG_fail;
17079 }
17080 {
17081 resultobj = wxPyMake_wxObject(result, 0);
17082 }
17083 return resultobj;
17084 fail:
17085 return NULL;
17086 }
17087
17088
17089 static PyObject *_wrap_ToolBarBase_AddControl(PyObject *self, PyObject *args, PyObject *kwargs) {
17090 PyObject *resultobj;
17091 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17092 wxControl *arg2 = (wxControl *) 0 ;
17093 wxToolBarToolBase *result;
17094 PyObject * obj0 = 0 ;
17095 PyObject * obj1 = 0 ;
17096 char *kwnames[] = {
17097 (char *) "self",(char *) "control", NULL
17098 };
17099
17100 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_AddControl",kwnames,&obj0,&obj1)) goto fail;
17101 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17102 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17103 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxControl,
17104 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17105 {
17106 PyThreadState* __tstate = wxPyBeginAllowThreads();
17107 result = (wxToolBarToolBase *)(arg1)->AddControl(arg2);
17108
17109 wxPyEndAllowThreads(__tstate);
17110 if (PyErr_Occurred()) SWIG_fail;
17111 }
17112 {
17113 resultobj = wxPyMake_wxObject(result, 0);
17114 }
17115 return resultobj;
17116 fail:
17117 return NULL;
17118 }
17119
17120
17121 static PyObject *_wrap_ToolBarBase_InsertControl(PyObject *self, PyObject *args, PyObject *kwargs) {
17122 PyObject *resultobj;
17123 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17124 size_t arg2 ;
17125 wxControl *arg3 = (wxControl *) 0 ;
17126 wxToolBarToolBase *result;
17127 PyObject * obj0 = 0 ;
17128 PyObject * obj1 = 0 ;
17129 PyObject * obj2 = 0 ;
17130 char *kwnames[] = {
17131 (char *) "self",(char *) "pos",(char *) "control", NULL
17132 };
17133
17134 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ToolBarBase_InsertControl",kwnames,&obj0,&obj1,&obj2)) goto fail;
17135 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17136 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17137 arg2 = (size_t) SWIG_AsUnsignedLong(obj1);
17138 if (PyErr_Occurred()) SWIG_fail;
17139 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxControl,
17140 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17141 {
17142 PyThreadState* __tstate = wxPyBeginAllowThreads();
17143 result = (wxToolBarToolBase *)(arg1)->InsertControl(arg2,arg3);
17144
17145 wxPyEndAllowThreads(__tstate);
17146 if (PyErr_Occurred()) SWIG_fail;
17147 }
17148 {
17149 resultobj = wxPyMake_wxObject(result, 0);
17150 }
17151 return resultobj;
17152 fail:
17153 return NULL;
17154 }
17155
17156
17157 static PyObject *_wrap_ToolBarBase_FindControl(PyObject *self, PyObject *args, PyObject *kwargs) {
17158 PyObject *resultobj;
17159 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17160 int arg2 ;
17161 wxControl *result;
17162 PyObject * obj0 = 0 ;
17163 PyObject * obj1 = 0 ;
17164 char *kwnames[] = {
17165 (char *) "self",(char *) "id", NULL
17166 };
17167
17168 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_FindControl",kwnames,&obj0,&obj1)) goto fail;
17169 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17170 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17171 arg2 = (int) SWIG_AsInt(obj1);
17172 if (PyErr_Occurred()) SWIG_fail;
17173 {
17174 PyThreadState* __tstate = wxPyBeginAllowThreads();
17175 result = (wxControl *)(arg1)->FindControl(arg2);
17176
17177 wxPyEndAllowThreads(__tstate);
17178 if (PyErr_Occurred()) SWIG_fail;
17179 }
17180 {
17181 resultobj = wxPyMake_wxObject(result, 0);
17182 }
17183 return resultobj;
17184 fail:
17185 return NULL;
17186 }
17187
17188
17189 static PyObject *_wrap_ToolBarBase_AddSeparator(PyObject *self, PyObject *args, PyObject *kwargs) {
17190 PyObject *resultobj;
17191 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17192 wxToolBarToolBase *result;
17193 PyObject * obj0 = 0 ;
17194 char *kwnames[] = {
17195 (char *) "self", NULL
17196 };
17197
17198 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarBase_AddSeparator",kwnames,&obj0)) goto fail;
17199 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17200 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17201 {
17202 PyThreadState* __tstate = wxPyBeginAllowThreads();
17203 result = (wxToolBarToolBase *)(arg1)->AddSeparator();
17204
17205 wxPyEndAllowThreads(__tstate);
17206 if (PyErr_Occurred()) SWIG_fail;
17207 }
17208 {
17209 resultobj = wxPyMake_wxObject(result, 0);
17210 }
17211 return resultobj;
17212 fail:
17213 return NULL;
17214 }
17215
17216
17217 static PyObject *_wrap_ToolBarBase_InsertSeparator(PyObject *self, PyObject *args, PyObject *kwargs) {
17218 PyObject *resultobj;
17219 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17220 size_t arg2 ;
17221 wxToolBarToolBase *result;
17222 PyObject * obj0 = 0 ;
17223 PyObject * obj1 = 0 ;
17224 char *kwnames[] = {
17225 (char *) "self",(char *) "pos", NULL
17226 };
17227
17228 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_InsertSeparator",kwnames,&obj0,&obj1)) goto fail;
17229 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17230 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17231 arg2 = (size_t) SWIG_AsUnsignedLong(obj1);
17232 if (PyErr_Occurred()) SWIG_fail;
17233 {
17234 PyThreadState* __tstate = wxPyBeginAllowThreads();
17235 result = (wxToolBarToolBase *)(arg1)->InsertSeparator(arg2);
17236
17237 wxPyEndAllowThreads(__tstate);
17238 if (PyErr_Occurred()) SWIG_fail;
17239 }
17240 {
17241 resultobj = wxPyMake_wxObject(result, 0);
17242 }
17243 return resultobj;
17244 fail:
17245 return NULL;
17246 }
17247
17248
17249 static PyObject *_wrap_ToolBarBase_RemoveTool(PyObject *self, PyObject *args, PyObject *kwargs) {
17250 PyObject *resultobj;
17251 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17252 int arg2 ;
17253 wxToolBarToolBase *result;
17254 PyObject * obj0 = 0 ;
17255 PyObject * obj1 = 0 ;
17256 char *kwnames[] = {
17257 (char *) "self",(char *) "id", NULL
17258 };
17259
17260 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_RemoveTool",kwnames,&obj0,&obj1)) goto fail;
17261 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17262 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17263 arg2 = (int) SWIG_AsInt(obj1);
17264 if (PyErr_Occurred()) SWIG_fail;
17265 {
17266 PyThreadState* __tstate = wxPyBeginAllowThreads();
17267 result = (wxToolBarToolBase *)(arg1)->RemoveTool(arg2);
17268
17269 wxPyEndAllowThreads(__tstate);
17270 if (PyErr_Occurred()) SWIG_fail;
17271 }
17272 {
17273 resultobj = wxPyMake_wxObject(result, 0);
17274 }
17275 return resultobj;
17276 fail:
17277 return NULL;
17278 }
17279
17280
17281 static PyObject *_wrap_ToolBarBase_DeleteToolByPos(PyObject *self, PyObject *args, PyObject *kwargs) {
17282 PyObject *resultobj;
17283 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17284 size_t arg2 ;
17285 bool result;
17286 PyObject * obj0 = 0 ;
17287 PyObject * obj1 = 0 ;
17288 char *kwnames[] = {
17289 (char *) "self",(char *) "pos", NULL
17290 };
17291
17292 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_DeleteToolByPos",kwnames,&obj0,&obj1)) goto fail;
17293 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17294 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17295 arg2 = (size_t) SWIG_AsUnsignedLong(obj1);
17296 if (PyErr_Occurred()) SWIG_fail;
17297 {
17298 PyThreadState* __tstate = wxPyBeginAllowThreads();
17299 result = (bool)(arg1)->DeleteToolByPos(arg2);
17300
17301 wxPyEndAllowThreads(__tstate);
17302 if (PyErr_Occurred()) SWIG_fail;
17303 }
17304 {
17305 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
17306 }
17307 return resultobj;
17308 fail:
17309 return NULL;
17310 }
17311
17312
17313 static PyObject *_wrap_ToolBarBase_DeleteTool(PyObject *self, PyObject *args, PyObject *kwargs) {
17314 PyObject *resultobj;
17315 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17316 int arg2 ;
17317 bool result;
17318 PyObject * obj0 = 0 ;
17319 PyObject * obj1 = 0 ;
17320 char *kwnames[] = {
17321 (char *) "self",(char *) "id", NULL
17322 };
17323
17324 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_DeleteTool",kwnames,&obj0,&obj1)) goto fail;
17325 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17326 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17327 arg2 = (int) SWIG_AsInt(obj1);
17328 if (PyErr_Occurred()) SWIG_fail;
17329 {
17330 PyThreadState* __tstate = wxPyBeginAllowThreads();
17331 result = (bool)(arg1)->DeleteTool(arg2);
17332
17333 wxPyEndAllowThreads(__tstate);
17334 if (PyErr_Occurred()) SWIG_fail;
17335 }
17336 {
17337 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
17338 }
17339 return resultobj;
17340 fail:
17341 return NULL;
17342 }
17343
17344
17345 static PyObject *_wrap_ToolBarBase_ClearTools(PyObject *self, PyObject *args, PyObject *kwargs) {
17346 PyObject *resultobj;
17347 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17348 PyObject * obj0 = 0 ;
17349 char *kwnames[] = {
17350 (char *) "self", NULL
17351 };
17352
17353 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarBase_ClearTools",kwnames,&obj0)) goto fail;
17354 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17355 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17356 {
17357 PyThreadState* __tstate = wxPyBeginAllowThreads();
17358 (arg1)->ClearTools();
17359
17360 wxPyEndAllowThreads(__tstate);
17361 if (PyErr_Occurred()) SWIG_fail;
17362 }
17363 Py_INCREF(Py_None); resultobj = Py_None;
17364 return resultobj;
17365 fail:
17366 return NULL;
17367 }
17368
17369
17370 static PyObject *_wrap_ToolBarBase_Realize(PyObject *self, PyObject *args, PyObject *kwargs) {
17371 PyObject *resultobj;
17372 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17373 bool result;
17374 PyObject * obj0 = 0 ;
17375 char *kwnames[] = {
17376 (char *) "self", NULL
17377 };
17378
17379 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarBase_Realize",kwnames,&obj0)) goto fail;
17380 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17381 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17382 {
17383 PyThreadState* __tstate = wxPyBeginAllowThreads();
17384 result = (bool)(arg1)->Realize();
17385
17386 wxPyEndAllowThreads(__tstate);
17387 if (PyErr_Occurred()) SWIG_fail;
17388 }
17389 {
17390 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
17391 }
17392 return resultobj;
17393 fail:
17394 return NULL;
17395 }
17396
17397
17398 static PyObject *_wrap_ToolBarBase_EnableTool(PyObject *self, PyObject *args, PyObject *kwargs) {
17399 PyObject *resultobj;
17400 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17401 int arg2 ;
17402 bool arg3 ;
17403 PyObject * obj0 = 0 ;
17404 PyObject * obj1 = 0 ;
17405 PyObject * obj2 = 0 ;
17406 char *kwnames[] = {
17407 (char *) "self",(char *) "id",(char *) "enable", NULL
17408 };
17409
17410 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ToolBarBase_EnableTool",kwnames,&obj0,&obj1,&obj2)) goto fail;
17411 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17412 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17413 arg2 = (int) SWIG_AsInt(obj1);
17414 if (PyErr_Occurred()) SWIG_fail;
17415 arg3 = (bool) SWIG_AsBool(obj2);
17416 if (PyErr_Occurred()) SWIG_fail;
17417 {
17418 PyThreadState* __tstate = wxPyBeginAllowThreads();
17419 (arg1)->EnableTool(arg2,arg3);
17420
17421 wxPyEndAllowThreads(__tstate);
17422 if (PyErr_Occurred()) SWIG_fail;
17423 }
17424 Py_INCREF(Py_None); resultobj = Py_None;
17425 return resultobj;
17426 fail:
17427 return NULL;
17428 }
17429
17430
17431 static PyObject *_wrap_ToolBarBase_ToggleTool(PyObject *self, PyObject *args, PyObject *kwargs) {
17432 PyObject *resultobj;
17433 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17434 int arg2 ;
17435 bool arg3 ;
17436 PyObject * obj0 = 0 ;
17437 PyObject * obj1 = 0 ;
17438 PyObject * obj2 = 0 ;
17439 char *kwnames[] = {
17440 (char *) "self",(char *) "id",(char *) "toggle", NULL
17441 };
17442
17443 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ToolBarBase_ToggleTool",kwnames,&obj0,&obj1,&obj2)) goto fail;
17444 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17445 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17446 arg2 = (int) SWIG_AsInt(obj1);
17447 if (PyErr_Occurred()) SWIG_fail;
17448 arg3 = (bool) SWIG_AsBool(obj2);
17449 if (PyErr_Occurred()) SWIG_fail;
17450 {
17451 PyThreadState* __tstate = wxPyBeginAllowThreads();
17452 (arg1)->ToggleTool(arg2,arg3);
17453
17454 wxPyEndAllowThreads(__tstate);
17455 if (PyErr_Occurred()) SWIG_fail;
17456 }
17457 Py_INCREF(Py_None); resultobj = Py_None;
17458 return resultobj;
17459 fail:
17460 return NULL;
17461 }
17462
17463
17464 static PyObject *_wrap_ToolBarBase_SetToggle(PyObject *self, PyObject *args, PyObject *kwargs) {
17465 PyObject *resultobj;
17466 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17467 int arg2 ;
17468 bool arg3 ;
17469 PyObject * obj0 = 0 ;
17470 PyObject * obj1 = 0 ;
17471 PyObject * obj2 = 0 ;
17472 char *kwnames[] = {
17473 (char *) "self",(char *) "id",(char *) "toggle", NULL
17474 };
17475
17476 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ToolBarBase_SetToggle",kwnames,&obj0,&obj1,&obj2)) goto fail;
17477 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17478 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17479 arg2 = (int) SWIG_AsInt(obj1);
17480 if (PyErr_Occurred()) SWIG_fail;
17481 arg3 = (bool) SWIG_AsBool(obj2);
17482 if (PyErr_Occurred()) SWIG_fail;
17483 {
17484 PyThreadState* __tstate = wxPyBeginAllowThreads();
17485 (arg1)->SetToggle(arg2,arg3);
17486
17487 wxPyEndAllowThreads(__tstate);
17488 if (PyErr_Occurred()) SWIG_fail;
17489 }
17490 Py_INCREF(Py_None); resultobj = Py_None;
17491 return resultobj;
17492 fail:
17493 return NULL;
17494 }
17495
17496
17497 static PyObject *_wrap_ToolBarBase_GetToolClientData(PyObject *self, PyObject *args, PyObject *kwargs) {
17498 PyObject *resultobj;
17499 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17500 int arg2 ;
17501 PyObject *result;
17502 PyObject * obj0 = 0 ;
17503 PyObject * obj1 = 0 ;
17504 char *kwnames[] = {
17505 (char *) "self",(char *) "id", NULL
17506 };
17507
17508 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_GetToolClientData",kwnames,&obj0,&obj1)) goto fail;
17509 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17510 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17511 arg2 = (int) SWIG_AsInt(obj1);
17512 if (PyErr_Occurred()) SWIG_fail;
17513 {
17514 PyThreadState* __tstate = wxPyBeginAllowThreads();
17515 result = (PyObject *)wxToolBarBase_GetToolClientData(arg1,arg2);
17516
17517 wxPyEndAllowThreads(__tstate);
17518 if (PyErr_Occurred()) SWIG_fail;
17519 }
17520 resultobj = result;
17521 return resultobj;
17522 fail:
17523 return NULL;
17524 }
17525
17526
17527 static PyObject *_wrap_ToolBarBase_SetToolClientData(PyObject *self, PyObject *args, PyObject *kwargs) {
17528 PyObject *resultobj;
17529 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17530 int arg2 ;
17531 PyObject *arg3 = (PyObject *) 0 ;
17532 PyObject * obj0 = 0 ;
17533 PyObject * obj1 = 0 ;
17534 PyObject * obj2 = 0 ;
17535 char *kwnames[] = {
17536 (char *) "self",(char *) "id",(char *) "clientData", NULL
17537 };
17538
17539 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ToolBarBase_SetToolClientData",kwnames,&obj0,&obj1,&obj2)) goto fail;
17540 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17541 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17542 arg2 = (int) SWIG_AsInt(obj1);
17543 if (PyErr_Occurred()) SWIG_fail;
17544 arg3 = obj2;
17545 {
17546 PyThreadState* __tstate = wxPyBeginAllowThreads();
17547 wxToolBarBase_SetToolClientData(arg1,arg2,arg3);
17548
17549 wxPyEndAllowThreads(__tstate);
17550 if (PyErr_Occurred()) SWIG_fail;
17551 }
17552 Py_INCREF(Py_None); resultobj = Py_None;
17553 return resultobj;
17554 fail:
17555 return NULL;
17556 }
17557
17558
17559 static PyObject *_wrap_ToolBarBase_GetToolPos(PyObject *self, PyObject *args, PyObject *kwargs) {
17560 PyObject *resultobj;
17561 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17562 int arg2 ;
17563 int result;
17564 PyObject * obj0 = 0 ;
17565 PyObject * obj1 = 0 ;
17566 char *kwnames[] = {
17567 (char *) "self",(char *) "id", NULL
17568 };
17569
17570 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_GetToolPos",kwnames,&obj0,&obj1)) goto fail;
17571 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17572 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17573 arg2 = (int) SWIG_AsInt(obj1);
17574 if (PyErr_Occurred()) SWIG_fail;
17575 {
17576 PyThreadState* __tstate = wxPyBeginAllowThreads();
17577 result = (int)((wxToolBarBase const *)arg1)->GetToolPos(arg2);
17578
17579 wxPyEndAllowThreads(__tstate);
17580 if (PyErr_Occurred()) SWIG_fail;
17581 }
17582 resultobj = SWIG_FromInt((int)result);
17583 return resultobj;
17584 fail:
17585 return NULL;
17586 }
17587
17588
17589 static PyObject *_wrap_ToolBarBase_GetToolState(PyObject *self, PyObject *args, PyObject *kwargs) {
17590 PyObject *resultobj;
17591 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17592 int arg2 ;
17593 bool result;
17594 PyObject * obj0 = 0 ;
17595 PyObject * obj1 = 0 ;
17596 char *kwnames[] = {
17597 (char *) "self",(char *) "id", NULL
17598 };
17599
17600 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_GetToolState",kwnames,&obj0,&obj1)) goto fail;
17601 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17602 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17603 arg2 = (int) SWIG_AsInt(obj1);
17604 if (PyErr_Occurred()) SWIG_fail;
17605 {
17606 PyThreadState* __tstate = wxPyBeginAllowThreads();
17607 result = (bool)(arg1)->GetToolState(arg2);
17608
17609 wxPyEndAllowThreads(__tstate);
17610 if (PyErr_Occurred()) SWIG_fail;
17611 }
17612 {
17613 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
17614 }
17615 return resultobj;
17616 fail:
17617 return NULL;
17618 }
17619
17620
17621 static PyObject *_wrap_ToolBarBase_GetToolEnabled(PyObject *self, PyObject *args, PyObject *kwargs) {
17622 PyObject *resultobj;
17623 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17624 int arg2 ;
17625 bool result;
17626 PyObject * obj0 = 0 ;
17627 PyObject * obj1 = 0 ;
17628 char *kwnames[] = {
17629 (char *) "self",(char *) "id", NULL
17630 };
17631
17632 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_GetToolEnabled",kwnames,&obj0,&obj1)) goto fail;
17633 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17634 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17635 arg2 = (int) SWIG_AsInt(obj1);
17636 if (PyErr_Occurred()) SWIG_fail;
17637 {
17638 PyThreadState* __tstate = wxPyBeginAllowThreads();
17639 result = (bool)(arg1)->GetToolEnabled(arg2);
17640
17641 wxPyEndAllowThreads(__tstate);
17642 if (PyErr_Occurred()) SWIG_fail;
17643 }
17644 {
17645 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
17646 }
17647 return resultobj;
17648 fail:
17649 return NULL;
17650 }
17651
17652
17653 static PyObject *_wrap_ToolBarBase_SetToolShortHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
17654 PyObject *resultobj;
17655 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17656 int arg2 ;
17657 wxString *arg3 = 0 ;
17658 bool temp3 = False ;
17659 PyObject * obj0 = 0 ;
17660 PyObject * obj1 = 0 ;
17661 PyObject * obj2 = 0 ;
17662 char *kwnames[] = {
17663 (char *) "self",(char *) "id",(char *) "helpString", NULL
17664 };
17665
17666 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ToolBarBase_SetToolShortHelp",kwnames,&obj0,&obj1,&obj2)) goto fail;
17667 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17668 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17669 arg2 = (int) SWIG_AsInt(obj1);
17670 if (PyErr_Occurred()) SWIG_fail;
17671 {
17672 arg3 = wxString_in_helper(obj2);
17673 if (arg3 == NULL) SWIG_fail;
17674 temp3 = True;
17675 }
17676 {
17677 PyThreadState* __tstate = wxPyBeginAllowThreads();
17678 (arg1)->SetToolShortHelp(arg2,(wxString const &)*arg3);
17679
17680 wxPyEndAllowThreads(__tstate);
17681 if (PyErr_Occurred()) SWIG_fail;
17682 }
17683 Py_INCREF(Py_None); resultobj = Py_None;
17684 {
17685 if (temp3)
17686 delete arg3;
17687 }
17688 return resultobj;
17689 fail:
17690 {
17691 if (temp3)
17692 delete arg3;
17693 }
17694 return NULL;
17695 }
17696
17697
17698 static PyObject *_wrap_ToolBarBase_GetToolShortHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
17699 PyObject *resultobj;
17700 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17701 int arg2 ;
17702 wxString result;
17703 PyObject * obj0 = 0 ;
17704 PyObject * obj1 = 0 ;
17705 char *kwnames[] = {
17706 (char *) "self",(char *) "id", NULL
17707 };
17708
17709 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_GetToolShortHelp",kwnames,&obj0,&obj1)) goto fail;
17710 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17711 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17712 arg2 = (int) SWIG_AsInt(obj1);
17713 if (PyErr_Occurred()) SWIG_fail;
17714 {
17715 PyThreadState* __tstate = wxPyBeginAllowThreads();
17716 result = (arg1)->GetToolShortHelp(arg2);
17717
17718 wxPyEndAllowThreads(__tstate);
17719 if (PyErr_Occurred()) SWIG_fail;
17720 }
17721 {
17722 #if wxUSE_UNICODE
17723 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
17724 #else
17725 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
17726 #endif
17727 }
17728 return resultobj;
17729 fail:
17730 return NULL;
17731 }
17732
17733
17734 static PyObject *_wrap_ToolBarBase_SetToolLongHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
17735 PyObject *resultobj;
17736 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17737 int arg2 ;
17738 wxString *arg3 = 0 ;
17739 bool temp3 = False ;
17740 PyObject * obj0 = 0 ;
17741 PyObject * obj1 = 0 ;
17742 PyObject * obj2 = 0 ;
17743 char *kwnames[] = {
17744 (char *) "self",(char *) "id",(char *) "helpString", NULL
17745 };
17746
17747 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ToolBarBase_SetToolLongHelp",kwnames,&obj0,&obj1,&obj2)) goto fail;
17748 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17749 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17750 arg2 = (int) SWIG_AsInt(obj1);
17751 if (PyErr_Occurred()) SWIG_fail;
17752 {
17753 arg3 = wxString_in_helper(obj2);
17754 if (arg3 == NULL) SWIG_fail;
17755 temp3 = True;
17756 }
17757 {
17758 PyThreadState* __tstate = wxPyBeginAllowThreads();
17759 (arg1)->SetToolLongHelp(arg2,(wxString const &)*arg3);
17760
17761 wxPyEndAllowThreads(__tstate);
17762 if (PyErr_Occurred()) SWIG_fail;
17763 }
17764 Py_INCREF(Py_None); resultobj = Py_None;
17765 {
17766 if (temp3)
17767 delete arg3;
17768 }
17769 return resultobj;
17770 fail:
17771 {
17772 if (temp3)
17773 delete arg3;
17774 }
17775 return NULL;
17776 }
17777
17778
17779 static PyObject *_wrap_ToolBarBase_GetToolLongHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
17780 PyObject *resultobj;
17781 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17782 int arg2 ;
17783 wxString result;
17784 PyObject * obj0 = 0 ;
17785 PyObject * obj1 = 0 ;
17786 char *kwnames[] = {
17787 (char *) "self",(char *) "id", NULL
17788 };
17789
17790 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_GetToolLongHelp",kwnames,&obj0,&obj1)) goto fail;
17791 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17792 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17793 arg2 = (int) SWIG_AsInt(obj1);
17794 if (PyErr_Occurred()) SWIG_fail;
17795 {
17796 PyThreadState* __tstate = wxPyBeginAllowThreads();
17797 result = (arg1)->GetToolLongHelp(arg2);
17798
17799 wxPyEndAllowThreads(__tstate);
17800 if (PyErr_Occurred()) SWIG_fail;
17801 }
17802 {
17803 #if wxUSE_UNICODE
17804 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
17805 #else
17806 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
17807 #endif
17808 }
17809 return resultobj;
17810 fail:
17811 return NULL;
17812 }
17813
17814
17815 static PyObject *_wrap_ToolBarBase_SetMarginsXY(PyObject *self, PyObject *args, PyObject *kwargs) {
17816 PyObject *resultobj;
17817 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17818 int arg2 ;
17819 int arg3 ;
17820 PyObject * obj0 = 0 ;
17821 PyObject * obj1 = 0 ;
17822 PyObject * obj2 = 0 ;
17823 char *kwnames[] = {
17824 (char *) "self",(char *) "x",(char *) "y", NULL
17825 };
17826
17827 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ToolBarBase_SetMarginsXY",kwnames,&obj0,&obj1,&obj2)) goto fail;
17828 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17829 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17830 arg2 = (int) SWIG_AsInt(obj1);
17831 if (PyErr_Occurred()) SWIG_fail;
17832 arg3 = (int) SWIG_AsInt(obj2);
17833 if (PyErr_Occurred()) SWIG_fail;
17834 {
17835 PyThreadState* __tstate = wxPyBeginAllowThreads();
17836 (arg1)->SetMargins(arg2,arg3);
17837
17838 wxPyEndAllowThreads(__tstate);
17839 if (PyErr_Occurred()) SWIG_fail;
17840 }
17841 Py_INCREF(Py_None); resultobj = Py_None;
17842 return resultobj;
17843 fail:
17844 return NULL;
17845 }
17846
17847
17848 static PyObject *_wrap_ToolBarBase_SetMargins(PyObject *self, PyObject *args, PyObject *kwargs) {
17849 PyObject *resultobj;
17850 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17851 wxSize *arg2 = 0 ;
17852 wxSize temp2 ;
17853 PyObject * obj0 = 0 ;
17854 PyObject * obj1 = 0 ;
17855 char *kwnames[] = {
17856 (char *) "self",(char *) "size", NULL
17857 };
17858
17859 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_SetMargins",kwnames,&obj0,&obj1)) goto fail;
17860 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17861 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17862 {
17863 arg2 = &temp2;
17864 if ( ! wxSize_helper(obj1, &arg2)) SWIG_fail;
17865 }
17866 {
17867 PyThreadState* __tstate = wxPyBeginAllowThreads();
17868 (arg1)->SetMargins((wxSize const &)*arg2);
17869
17870 wxPyEndAllowThreads(__tstate);
17871 if (PyErr_Occurred()) SWIG_fail;
17872 }
17873 Py_INCREF(Py_None); resultobj = Py_None;
17874 return resultobj;
17875 fail:
17876 return NULL;
17877 }
17878
17879
17880 static PyObject *_wrap_ToolBarBase_SetToolPacking(PyObject *self, PyObject *args, PyObject *kwargs) {
17881 PyObject *resultobj;
17882 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17883 int arg2 ;
17884 PyObject * obj0 = 0 ;
17885 PyObject * obj1 = 0 ;
17886 char *kwnames[] = {
17887 (char *) "self",(char *) "packing", NULL
17888 };
17889
17890 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_SetToolPacking",kwnames,&obj0,&obj1)) goto fail;
17891 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17892 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17893 arg2 = (int) SWIG_AsInt(obj1);
17894 if (PyErr_Occurred()) SWIG_fail;
17895 {
17896 PyThreadState* __tstate = wxPyBeginAllowThreads();
17897 (arg1)->SetToolPacking(arg2);
17898
17899 wxPyEndAllowThreads(__tstate);
17900 if (PyErr_Occurred()) SWIG_fail;
17901 }
17902 Py_INCREF(Py_None); resultobj = Py_None;
17903 return resultobj;
17904 fail:
17905 return NULL;
17906 }
17907
17908
17909 static PyObject *_wrap_ToolBarBase_SetToolSeparation(PyObject *self, PyObject *args, PyObject *kwargs) {
17910 PyObject *resultobj;
17911 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17912 int arg2 ;
17913 PyObject * obj0 = 0 ;
17914 PyObject * obj1 = 0 ;
17915 char *kwnames[] = {
17916 (char *) "self",(char *) "separation", NULL
17917 };
17918
17919 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_SetToolSeparation",kwnames,&obj0,&obj1)) goto fail;
17920 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17921 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17922 arg2 = (int) SWIG_AsInt(obj1);
17923 if (PyErr_Occurred()) SWIG_fail;
17924 {
17925 PyThreadState* __tstate = wxPyBeginAllowThreads();
17926 (arg1)->SetToolSeparation(arg2);
17927
17928 wxPyEndAllowThreads(__tstate);
17929 if (PyErr_Occurred()) SWIG_fail;
17930 }
17931 Py_INCREF(Py_None); resultobj = Py_None;
17932 return resultobj;
17933 fail:
17934 return NULL;
17935 }
17936
17937
17938 static PyObject *_wrap_ToolBarBase_GetToolMargins(PyObject *self, PyObject *args, PyObject *kwargs) {
17939 PyObject *resultobj;
17940 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17941 wxSize result;
17942 PyObject * obj0 = 0 ;
17943 char *kwnames[] = {
17944 (char *) "self", NULL
17945 };
17946
17947 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarBase_GetToolMargins",kwnames,&obj0)) goto fail;
17948 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17949 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17950 {
17951 PyThreadState* __tstate = wxPyBeginAllowThreads();
17952 result = (arg1)->GetToolMargins();
17953
17954 wxPyEndAllowThreads(__tstate);
17955 if (PyErr_Occurred()) SWIG_fail;
17956 }
17957 {
17958 wxSize * resultptr;
17959 resultptr = new wxSize((wxSize &) result);
17960 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
17961 }
17962 return resultobj;
17963 fail:
17964 return NULL;
17965 }
17966
17967
17968 static PyObject *_wrap_ToolBarBase_GetMargins(PyObject *self, PyObject *args, PyObject *kwargs) {
17969 PyObject *resultobj;
17970 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
17971 wxSize result;
17972 PyObject * obj0 = 0 ;
17973 char *kwnames[] = {
17974 (char *) "self", NULL
17975 };
17976
17977 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarBase_GetMargins",kwnames,&obj0)) goto fail;
17978 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
17979 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
17980 {
17981 PyThreadState* __tstate = wxPyBeginAllowThreads();
17982 result = (arg1)->GetMargins();
17983
17984 wxPyEndAllowThreads(__tstate);
17985 if (PyErr_Occurred()) SWIG_fail;
17986 }
17987 {
17988 wxSize * resultptr;
17989 resultptr = new wxSize((wxSize &) result);
17990 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
17991 }
17992 return resultobj;
17993 fail:
17994 return NULL;
17995 }
17996
17997
17998 static PyObject *_wrap_ToolBarBase_GetToolPacking(PyObject *self, PyObject *args, PyObject *kwargs) {
17999 PyObject *resultobj;
18000 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
18001 int result;
18002 PyObject * obj0 = 0 ;
18003 char *kwnames[] = {
18004 (char *) "self", NULL
18005 };
18006
18007 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarBase_GetToolPacking",kwnames,&obj0)) goto fail;
18008 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
18009 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18010 {
18011 PyThreadState* __tstate = wxPyBeginAllowThreads();
18012 result = (int)(arg1)->GetToolPacking();
18013
18014 wxPyEndAllowThreads(__tstate);
18015 if (PyErr_Occurred()) SWIG_fail;
18016 }
18017 resultobj = SWIG_FromInt((int)result);
18018 return resultobj;
18019 fail:
18020 return NULL;
18021 }
18022
18023
18024 static PyObject *_wrap_ToolBarBase_GetToolSeparation(PyObject *self, PyObject *args, PyObject *kwargs) {
18025 PyObject *resultobj;
18026 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
18027 int result;
18028 PyObject * obj0 = 0 ;
18029 char *kwnames[] = {
18030 (char *) "self", NULL
18031 };
18032
18033 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarBase_GetToolSeparation",kwnames,&obj0)) goto fail;
18034 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
18035 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18036 {
18037 PyThreadState* __tstate = wxPyBeginAllowThreads();
18038 result = (int)(arg1)->GetToolSeparation();
18039
18040 wxPyEndAllowThreads(__tstate);
18041 if (PyErr_Occurred()) SWIG_fail;
18042 }
18043 resultobj = SWIG_FromInt((int)result);
18044 return resultobj;
18045 fail:
18046 return NULL;
18047 }
18048
18049
18050 static PyObject *_wrap_ToolBarBase_SetRows(PyObject *self, PyObject *args, PyObject *kwargs) {
18051 PyObject *resultobj;
18052 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
18053 int arg2 ;
18054 PyObject * obj0 = 0 ;
18055 PyObject * obj1 = 0 ;
18056 char *kwnames[] = {
18057 (char *) "self",(char *) "nRows", NULL
18058 };
18059
18060 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_SetRows",kwnames,&obj0,&obj1)) goto fail;
18061 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
18062 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18063 arg2 = (int) SWIG_AsInt(obj1);
18064 if (PyErr_Occurred()) SWIG_fail;
18065 {
18066 PyThreadState* __tstate = wxPyBeginAllowThreads();
18067 (arg1)->SetRows(arg2);
18068
18069 wxPyEndAllowThreads(__tstate);
18070 if (PyErr_Occurred()) SWIG_fail;
18071 }
18072 Py_INCREF(Py_None); resultobj = Py_None;
18073 return resultobj;
18074 fail:
18075 return NULL;
18076 }
18077
18078
18079 static PyObject *_wrap_ToolBarBase_SetMaxRowsCols(PyObject *self, PyObject *args, PyObject *kwargs) {
18080 PyObject *resultobj;
18081 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
18082 int arg2 ;
18083 int arg3 ;
18084 PyObject * obj0 = 0 ;
18085 PyObject * obj1 = 0 ;
18086 PyObject * obj2 = 0 ;
18087 char *kwnames[] = {
18088 (char *) "self",(char *) "rows",(char *) "cols", NULL
18089 };
18090
18091 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ToolBarBase_SetMaxRowsCols",kwnames,&obj0,&obj1,&obj2)) goto fail;
18092 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
18093 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18094 arg2 = (int) SWIG_AsInt(obj1);
18095 if (PyErr_Occurred()) SWIG_fail;
18096 arg3 = (int) SWIG_AsInt(obj2);
18097 if (PyErr_Occurred()) SWIG_fail;
18098 {
18099 PyThreadState* __tstate = wxPyBeginAllowThreads();
18100 (arg1)->SetMaxRowsCols(arg2,arg3);
18101
18102 wxPyEndAllowThreads(__tstate);
18103 if (PyErr_Occurred()) SWIG_fail;
18104 }
18105 Py_INCREF(Py_None); resultobj = Py_None;
18106 return resultobj;
18107 fail:
18108 return NULL;
18109 }
18110
18111
18112 static PyObject *_wrap_ToolBarBase_GetMaxRows(PyObject *self, PyObject *args, PyObject *kwargs) {
18113 PyObject *resultobj;
18114 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
18115 int result;
18116 PyObject * obj0 = 0 ;
18117 char *kwnames[] = {
18118 (char *) "self", NULL
18119 };
18120
18121 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarBase_GetMaxRows",kwnames,&obj0)) goto fail;
18122 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
18123 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18124 {
18125 PyThreadState* __tstate = wxPyBeginAllowThreads();
18126 result = (int)(arg1)->GetMaxRows();
18127
18128 wxPyEndAllowThreads(__tstate);
18129 if (PyErr_Occurred()) SWIG_fail;
18130 }
18131 resultobj = SWIG_FromInt((int)result);
18132 return resultobj;
18133 fail:
18134 return NULL;
18135 }
18136
18137
18138 static PyObject *_wrap_ToolBarBase_GetMaxCols(PyObject *self, PyObject *args, PyObject *kwargs) {
18139 PyObject *resultobj;
18140 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
18141 int result;
18142 PyObject * obj0 = 0 ;
18143 char *kwnames[] = {
18144 (char *) "self", NULL
18145 };
18146
18147 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarBase_GetMaxCols",kwnames,&obj0)) goto fail;
18148 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
18149 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18150 {
18151 PyThreadState* __tstate = wxPyBeginAllowThreads();
18152 result = (int)(arg1)->GetMaxCols();
18153
18154 wxPyEndAllowThreads(__tstate);
18155 if (PyErr_Occurred()) SWIG_fail;
18156 }
18157 resultobj = SWIG_FromInt((int)result);
18158 return resultobj;
18159 fail:
18160 return NULL;
18161 }
18162
18163
18164 static PyObject *_wrap_ToolBarBase_SetToolBitmapSize(PyObject *self, PyObject *args, PyObject *kwargs) {
18165 PyObject *resultobj;
18166 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
18167 wxSize *arg2 = 0 ;
18168 wxSize temp2 ;
18169 PyObject * obj0 = 0 ;
18170 PyObject * obj1 = 0 ;
18171 char *kwnames[] = {
18172 (char *) "self",(char *) "size", NULL
18173 };
18174
18175 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_SetToolBitmapSize",kwnames,&obj0,&obj1)) goto fail;
18176 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
18177 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18178 {
18179 arg2 = &temp2;
18180 if ( ! wxSize_helper(obj1, &arg2)) SWIG_fail;
18181 }
18182 {
18183 PyThreadState* __tstate = wxPyBeginAllowThreads();
18184 (arg1)->SetToolBitmapSize((wxSize const &)*arg2);
18185
18186 wxPyEndAllowThreads(__tstate);
18187 if (PyErr_Occurred()) SWIG_fail;
18188 }
18189 Py_INCREF(Py_None); resultobj = Py_None;
18190 return resultobj;
18191 fail:
18192 return NULL;
18193 }
18194
18195
18196 static PyObject *_wrap_ToolBarBase_GetToolBitmapSize(PyObject *self, PyObject *args, PyObject *kwargs) {
18197 PyObject *resultobj;
18198 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
18199 wxSize result;
18200 PyObject * obj0 = 0 ;
18201 char *kwnames[] = {
18202 (char *) "self", NULL
18203 };
18204
18205 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarBase_GetToolBitmapSize",kwnames,&obj0)) goto fail;
18206 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
18207 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18208 {
18209 PyThreadState* __tstate = wxPyBeginAllowThreads();
18210 result = (arg1)->GetToolBitmapSize();
18211
18212 wxPyEndAllowThreads(__tstate);
18213 if (PyErr_Occurred()) SWIG_fail;
18214 }
18215 {
18216 wxSize * resultptr;
18217 resultptr = new wxSize((wxSize &) result);
18218 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
18219 }
18220 return resultobj;
18221 fail:
18222 return NULL;
18223 }
18224
18225
18226 static PyObject *_wrap_ToolBarBase_GetToolSize(PyObject *self, PyObject *args, PyObject *kwargs) {
18227 PyObject *resultobj;
18228 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
18229 wxSize result;
18230 PyObject * obj0 = 0 ;
18231 char *kwnames[] = {
18232 (char *) "self", NULL
18233 };
18234
18235 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarBase_GetToolSize",kwnames,&obj0)) goto fail;
18236 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
18237 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18238 {
18239 PyThreadState* __tstate = wxPyBeginAllowThreads();
18240 result = (arg1)->GetToolSize();
18241
18242 wxPyEndAllowThreads(__tstate);
18243 if (PyErr_Occurred()) SWIG_fail;
18244 }
18245 {
18246 wxSize * resultptr;
18247 resultptr = new wxSize((wxSize &) result);
18248 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
18249 }
18250 return resultobj;
18251 fail:
18252 return NULL;
18253 }
18254
18255
18256 static PyObject *_wrap_ToolBarBase_FindToolForPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
18257 PyObject *resultobj;
18258 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
18259 int arg2 ;
18260 int arg3 ;
18261 wxToolBarToolBase *result;
18262 PyObject * obj0 = 0 ;
18263 PyObject * obj1 = 0 ;
18264 PyObject * obj2 = 0 ;
18265 char *kwnames[] = {
18266 (char *) "self",(char *) "x",(char *) "y", NULL
18267 };
18268
18269 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ToolBarBase_FindToolForPosition",kwnames,&obj0,&obj1,&obj2)) goto fail;
18270 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
18271 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18272 arg2 = (int) SWIG_AsInt(obj1);
18273 if (PyErr_Occurred()) SWIG_fail;
18274 arg3 = (int) SWIG_AsInt(obj2);
18275 if (PyErr_Occurred()) SWIG_fail;
18276 {
18277 PyThreadState* __tstate = wxPyBeginAllowThreads();
18278 result = (wxToolBarToolBase *)(arg1)->FindToolForPosition(arg2,arg3);
18279
18280 wxPyEndAllowThreads(__tstate);
18281 if (PyErr_Occurred()) SWIG_fail;
18282 }
18283 {
18284 resultobj = wxPyMake_wxObject(result, 0);
18285 }
18286 return resultobj;
18287 fail:
18288 return NULL;
18289 }
18290
18291
18292 static PyObject *_wrap_ToolBarBase_FindById(PyObject *self, PyObject *args, PyObject *kwargs) {
18293 PyObject *resultobj;
18294 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
18295 int arg2 ;
18296 wxToolBarToolBase *result;
18297 PyObject * obj0 = 0 ;
18298 PyObject * obj1 = 0 ;
18299 char *kwnames[] = {
18300 (char *) "self",(char *) "toolid", NULL
18301 };
18302
18303 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ToolBarBase_FindById",kwnames,&obj0,&obj1)) goto fail;
18304 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
18305 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18306 arg2 = (int) SWIG_AsInt(obj1);
18307 if (PyErr_Occurred()) SWIG_fail;
18308 {
18309 PyThreadState* __tstate = wxPyBeginAllowThreads();
18310 result = (wxToolBarToolBase *)((wxToolBarBase const *)arg1)->FindById(arg2);
18311
18312 wxPyEndAllowThreads(__tstate);
18313 if (PyErr_Occurred()) SWIG_fail;
18314 }
18315 {
18316 resultobj = wxPyMake_wxObject(result, 0);
18317 }
18318 return resultobj;
18319 fail:
18320 return NULL;
18321 }
18322
18323
18324 static PyObject *_wrap_ToolBarBase_IsVertical(PyObject *self, PyObject *args, PyObject *kwargs) {
18325 PyObject *resultobj;
18326 wxToolBarBase *arg1 = (wxToolBarBase *) 0 ;
18327 bool result;
18328 PyObject * obj0 = 0 ;
18329 char *kwnames[] = {
18330 (char *) "self", NULL
18331 };
18332
18333 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ToolBarBase_IsVertical",kwnames,&obj0)) goto fail;
18334 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBarBase,
18335 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18336 {
18337 PyThreadState* __tstate = wxPyBeginAllowThreads();
18338 result = (bool)(arg1)->IsVertical();
18339
18340 wxPyEndAllowThreads(__tstate);
18341 if (PyErr_Occurred()) SWIG_fail;
18342 }
18343 {
18344 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
18345 }
18346 return resultobj;
18347 fail:
18348 return NULL;
18349 }
18350
18351
18352 static PyObject * ToolBarBase_swigregister(PyObject *self, PyObject *args) {
18353 PyObject *obj;
18354 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
18355 SWIG_TypeClientData(SWIGTYPE_p_wxToolBarBase, obj);
18356 Py_INCREF(obj);
18357 return Py_BuildValue((char *)"");
18358 }
18359 static PyObject *_wrap_new_ToolBar(PyObject *self, PyObject *args, PyObject *kwargs) {
18360 PyObject *resultobj;
18361 wxWindow *arg1 = (wxWindow *) 0 ;
18362 int arg2 = (int) -1 ;
18363 wxPoint const &arg3_defvalue = wxDefaultPosition ;
18364 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
18365 wxSize const &arg4_defvalue = wxDefaultSize ;
18366 wxSize *arg4 = (wxSize *) &arg4_defvalue ;
18367 long arg5 = (long) wxNO_BORDER|wxTB_HORIZONTAL ;
18368 wxString const &arg6_defvalue = wxPyToolBarNameStr ;
18369 wxString *arg6 = (wxString *) &arg6_defvalue ;
18370 wxToolBar *result;
18371 wxPoint temp3 ;
18372 wxSize temp4 ;
18373 bool temp6 = False ;
18374 PyObject * obj0 = 0 ;
18375 PyObject * obj1 = 0 ;
18376 PyObject * obj2 = 0 ;
18377 PyObject * obj3 = 0 ;
18378 PyObject * obj4 = 0 ;
18379 PyObject * obj5 = 0 ;
18380 char *kwnames[] = {
18381 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
18382 };
18383
18384 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOO:new_ToolBar",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail;
18385 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
18386 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18387 if (obj1) {
18388 arg2 = (int) SWIG_AsInt(obj1);
18389 if (PyErr_Occurred()) SWIG_fail;
18390 }
18391 if (obj2) {
18392 {
18393 arg3 = &temp3;
18394 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
18395 }
18396 }
18397 if (obj3) {
18398 {
18399 arg4 = &temp4;
18400 if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
18401 }
18402 }
18403 if (obj4) {
18404 arg5 = (long) SWIG_AsLong(obj4);
18405 if (PyErr_Occurred()) SWIG_fail;
18406 }
18407 if (obj5) {
18408 {
18409 arg6 = wxString_in_helper(obj5);
18410 if (arg6 == NULL) SWIG_fail;
18411 temp6 = True;
18412 }
18413 }
18414 {
18415 if (!wxPyCheckForApp()) SWIG_fail;
18416 PyThreadState* __tstate = wxPyBeginAllowThreads();
18417 result = (wxToolBar *)new wxToolBar(arg1,arg2,(wxPoint const &)*arg3,(wxSize const &)*arg4,arg5,(wxString const &)*arg6);
18418
18419 wxPyEndAllowThreads(__tstate);
18420 if (PyErr_Occurred()) SWIG_fail;
18421 }
18422 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxToolBar, 1);
18423 {
18424 if (temp6)
18425 delete arg6;
18426 }
18427 return resultobj;
18428 fail:
18429 {
18430 if (temp6)
18431 delete arg6;
18432 }
18433 return NULL;
18434 }
18435
18436
18437 static PyObject *_wrap_new_PreToolBar(PyObject *self, PyObject *args, PyObject *kwargs) {
18438 PyObject *resultobj;
18439 wxToolBar *result;
18440 char *kwnames[] = {
18441 NULL
18442 };
18443
18444 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreToolBar",kwnames)) goto fail;
18445 {
18446 if (!wxPyCheckForApp()) SWIG_fail;
18447 PyThreadState* __tstate = wxPyBeginAllowThreads();
18448 result = (wxToolBar *)new wxToolBar();
18449
18450 wxPyEndAllowThreads(__tstate);
18451 if (PyErr_Occurred()) SWIG_fail;
18452 }
18453 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxToolBar, 1);
18454 return resultobj;
18455 fail:
18456 return NULL;
18457 }
18458
18459
18460 static PyObject *_wrap_ToolBar_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
18461 PyObject *resultobj;
18462 wxToolBar *arg1 = (wxToolBar *) 0 ;
18463 wxWindow *arg2 = (wxWindow *) 0 ;
18464 int arg3 = (int) -1 ;
18465 wxPoint const &arg4_defvalue = wxDefaultPosition ;
18466 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
18467 wxSize const &arg5_defvalue = wxDefaultSize ;
18468 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
18469 long arg6 = (long) wxNO_BORDER|wxTB_HORIZONTAL ;
18470 wxString const &arg7_defvalue = wxPyToolBarNameStr ;
18471 wxString *arg7 = (wxString *) &arg7_defvalue ;
18472 bool result;
18473 wxPoint temp4 ;
18474 wxSize temp5 ;
18475 bool temp7 = False ;
18476 PyObject * obj0 = 0 ;
18477 PyObject * obj1 = 0 ;
18478 PyObject * obj2 = 0 ;
18479 PyObject * obj3 = 0 ;
18480 PyObject * obj4 = 0 ;
18481 PyObject * obj5 = 0 ;
18482 PyObject * obj6 = 0 ;
18483 char *kwnames[] = {
18484 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
18485 };
18486
18487 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOO:ToolBar_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
18488 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBar,
18489 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18490 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
18491 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18492 if (obj2) {
18493 arg3 = (int) SWIG_AsInt(obj2);
18494 if (PyErr_Occurred()) SWIG_fail;
18495 }
18496 if (obj3) {
18497 {
18498 arg4 = &temp4;
18499 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
18500 }
18501 }
18502 if (obj4) {
18503 {
18504 arg5 = &temp5;
18505 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
18506 }
18507 }
18508 if (obj5) {
18509 arg6 = (long) SWIG_AsLong(obj5);
18510 if (PyErr_Occurred()) SWIG_fail;
18511 }
18512 if (obj6) {
18513 {
18514 arg7 = wxString_in_helper(obj6);
18515 if (arg7 == NULL) SWIG_fail;
18516 temp7 = True;
18517 }
18518 }
18519 {
18520 PyThreadState* __tstate = wxPyBeginAllowThreads();
18521 result = (bool)(arg1)->Create(arg2,arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxString const &)*arg7);
18522
18523 wxPyEndAllowThreads(__tstate);
18524 if (PyErr_Occurred()) SWIG_fail;
18525 }
18526 {
18527 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
18528 }
18529 {
18530 if (temp7)
18531 delete arg7;
18532 }
18533 return resultobj;
18534 fail:
18535 {
18536 if (temp7)
18537 delete arg7;
18538 }
18539 return NULL;
18540 }
18541
18542
18543 static PyObject *_wrap_ToolBar_FindToolForPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
18544 PyObject *resultobj;
18545 wxToolBar *arg1 = (wxToolBar *) 0 ;
18546 int arg2 ;
18547 int arg3 ;
18548 wxToolBarToolBase *result;
18549 PyObject * obj0 = 0 ;
18550 PyObject * obj1 = 0 ;
18551 PyObject * obj2 = 0 ;
18552 char *kwnames[] = {
18553 (char *) "self",(char *) "x",(char *) "y", NULL
18554 };
18555
18556 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ToolBar_FindToolForPosition",kwnames,&obj0,&obj1,&obj2)) goto fail;
18557 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxToolBar,
18558 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18559 arg2 = (int) SWIG_AsInt(obj1);
18560 if (PyErr_Occurred()) SWIG_fail;
18561 arg3 = (int) SWIG_AsInt(obj2);
18562 if (PyErr_Occurred()) SWIG_fail;
18563 {
18564 PyThreadState* __tstate = wxPyBeginAllowThreads();
18565 result = (wxToolBarToolBase *)(arg1)->FindToolForPosition(arg2,arg3);
18566
18567 wxPyEndAllowThreads(__tstate);
18568 if (PyErr_Occurred()) SWIG_fail;
18569 }
18570 {
18571 resultobj = wxPyMake_wxObject(result, 0);
18572 }
18573 return resultobj;
18574 fail:
18575 return NULL;
18576 }
18577
18578
18579 static PyObject *_wrap_ToolBar_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
18580 PyObject *resultobj;
18581 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
18582 wxVisualAttributes result;
18583 PyObject * obj0 = 0 ;
18584 char *kwnames[] = {
18585 (char *) "variant", NULL
18586 };
18587
18588 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:ToolBar_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
18589 if (obj0) {
18590 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
18591 if (PyErr_Occurred()) SWIG_fail;
18592 }
18593 {
18594 if (!wxPyCheckForApp()) SWIG_fail;
18595 PyThreadState* __tstate = wxPyBeginAllowThreads();
18596 result = wxToolBar::GetClassDefaultAttributes((wxWindowVariant )arg1);
18597
18598 wxPyEndAllowThreads(__tstate);
18599 if (PyErr_Occurred()) SWIG_fail;
18600 }
18601 {
18602 wxVisualAttributes * resultptr;
18603 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
18604 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
18605 }
18606 return resultobj;
18607 fail:
18608 return NULL;
18609 }
18610
18611
18612 static PyObject * ToolBar_swigregister(PyObject *self, PyObject *args) {
18613 PyObject *obj;
18614 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
18615 SWIG_TypeClientData(SWIGTYPE_p_wxToolBar, obj);
18616 Py_INCREF(obj);
18617 return Py_BuildValue((char *)"");
18618 }
18619 static int _wrap_ListCtrlNameStr_set(PyObject *_val) {
18620 PyErr_SetString(PyExc_TypeError,"Variable ListCtrlNameStr is read-only.");
18621 return 1;
18622 }
18623
18624
18625 static PyObject *_wrap_ListCtrlNameStr_get() {
18626 PyObject *pyobj;
18627
18628 {
18629 #if wxUSE_UNICODE
18630 pyobj = PyUnicode_FromWideChar((&wxPyListCtrlNameStr)->c_str(), (&wxPyListCtrlNameStr)->Len());
18631 #else
18632 pyobj = PyString_FromStringAndSize((&wxPyListCtrlNameStr)->c_str(), (&wxPyListCtrlNameStr)->Len());
18633 #endif
18634 }
18635 return pyobj;
18636 }
18637
18638
18639 static PyObject *_wrap_new_ListItemAttr(PyObject *self, PyObject *args, PyObject *kwargs) {
18640 PyObject *resultobj;
18641 wxColour const &arg1_defvalue = wxNullColour ;
18642 wxColour *arg1 = (wxColour *) &arg1_defvalue ;
18643 wxColour const &arg2_defvalue = wxNullColour ;
18644 wxColour *arg2 = (wxColour *) &arg2_defvalue ;
18645 wxFont const &arg3_defvalue = wxNullFont ;
18646 wxFont *arg3 = (wxFont *) &arg3_defvalue ;
18647 wxListItemAttr *result;
18648 wxColour temp1 ;
18649 wxColour temp2 ;
18650 PyObject * obj0 = 0 ;
18651 PyObject * obj1 = 0 ;
18652 PyObject * obj2 = 0 ;
18653 char *kwnames[] = {
18654 (char *) "colText",(char *) "colBack",(char *) "font", NULL
18655 };
18656
18657 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|OOO:new_ListItemAttr",kwnames,&obj0,&obj1,&obj2)) goto fail;
18658 if (obj0) {
18659 {
18660 arg1 = &temp1;
18661 if ( ! wxColour_helper(obj0, &arg1)) SWIG_fail;
18662 }
18663 }
18664 if (obj1) {
18665 {
18666 arg2 = &temp2;
18667 if ( ! wxColour_helper(obj1, &arg2)) SWIG_fail;
18668 }
18669 }
18670 if (obj2) {
18671 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxFont,
18672 SWIG_POINTER_EXCEPTION | 0)) == -1)
18673 SWIG_fail;
18674 if (arg3 == NULL) {
18675 PyErr_SetString(PyExc_TypeError,"null reference");
18676 SWIG_fail;
18677 }
18678 }
18679 {
18680 PyThreadState* __tstate = wxPyBeginAllowThreads();
18681 result = (wxListItemAttr *)new wxListItemAttr((wxColour const &)*arg1,(wxColour const &)*arg2,(wxFont const &)*arg3);
18682
18683 wxPyEndAllowThreads(__tstate);
18684 if (PyErr_Occurred()) SWIG_fail;
18685 }
18686 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxListItemAttr, 1);
18687 return resultobj;
18688 fail:
18689 return NULL;
18690 }
18691
18692
18693 static PyObject *_wrap_ListItemAttr_SetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) {
18694 PyObject *resultobj;
18695 wxListItemAttr *arg1 = (wxListItemAttr *) 0 ;
18696 wxColour *arg2 = 0 ;
18697 wxColour temp2 ;
18698 PyObject * obj0 = 0 ;
18699 PyObject * obj1 = 0 ;
18700 char *kwnames[] = {
18701 (char *) "self",(char *) "colText", NULL
18702 };
18703
18704 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItemAttr_SetTextColour",kwnames,&obj0,&obj1)) goto fail;
18705 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItemAttr,
18706 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18707 {
18708 arg2 = &temp2;
18709 if ( ! wxColour_helper(obj1, &arg2)) SWIG_fail;
18710 }
18711 {
18712 PyThreadState* __tstate = wxPyBeginAllowThreads();
18713 (arg1)->SetTextColour((wxColour const &)*arg2);
18714
18715 wxPyEndAllowThreads(__tstate);
18716 if (PyErr_Occurred()) SWIG_fail;
18717 }
18718 Py_INCREF(Py_None); resultobj = Py_None;
18719 return resultobj;
18720 fail:
18721 return NULL;
18722 }
18723
18724
18725 static PyObject *_wrap_ListItemAttr_SetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
18726 PyObject *resultobj;
18727 wxListItemAttr *arg1 = (wxListItemAttr *) 0 ;
18728 wxColour *arg2 = 0 ;
18729 wxColour temp2 ;
18730 PyObject * obj0 = 0 ;
18731 PyObject * obj1 = 0 ;
18732 char *kwnames[] = {
18733 (char *) "self",(char *) "colBack", NULL
18734 };
18735
18736 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItemAttr_SetBackgroundColour",kwnames,&obj0,&obj1)) goto fail;
18737 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItemAttr,
18738 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18739 {
18740 arg2 = &temp2;
18741 if ( ! wxColour_helper(obj1, &arg2)) SWIG_fail;
18742 }
18743 {
18744 PyThreadState* __tstate = wxPyBeginAllowThreads();
18745 (arg1)->SetBackgroundColour((wxColour const &)*arg2);
18746
18747 wxPyEndAllowThreads(__tstate);
18748 if (PyErr_Occurred()) SWIG_fail;
18749 }
18750 Py_INCREF(Py_None); resultobj = Py_None;
18751 return resultobj;
18752 fail:
18753 return NULL;
18754 }
18755
18756
18757 static PyObject *_wrap_ListItemAttr_SetFont(PyObject *self, PyObject *args, PyObject *kwargs) {
18758 PyObject *resultobj;
18759 wxListItemAttr *arg1 = (wxListItemAttr *) 0 ;
18760 wxFont *arg2 = 0 ;
18761 PyObject * obj0 = 0 ;
18762 PyObject * obj1 = 0 ;
18763 char *kwnames[] = {
18764 (char *) "self",(char *) "font", NULL
18765 };
18766
18767 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItemAttr_SetFont",kwnames,&obj0,&obj1)) goto fail;
18768 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItemAttr,
18769 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18770 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxFont,
18771 SWIG_POINTER_EXCEPTION | 0)) == -1)
18772 SWIG_fail;
18773 if (arg2 == NULL) {
18774 PyErr_SetString(PyExc_TypeError,"null reference");
18775 SWIG_fail;
18776 }
18777 {
18778 PyThreadState* __tstate = wxPyBeginAllowThreads();
18779 (arg1)->SetFont((wxFont const &)*arg2);
18780
18781 wxPyEndAllowThreads(__tstate);
18782 if (PyErr_Occurred()) SWIG_fail;
18783 }
18784 Py_INCREF(Py_None); resultobj = Py_None;
18785 return resultobj;
18786 fail:
18787 return NULL;
18788 }
18789
18790
18791 static PyObject *_wrap_ListItemAttr_HasTextColour(PyObject *self, PyObject *args, PyObject *kwargs) {
18792 PyObject *resultobj;
18793 wxListItemAttr *arg1 = (wxListItemAttr *) 0 ;
18794 bool result;
18795 PyObject * obj0 = 0 ;
18796 char *kwnames[] = {
18797 (char *) "self", NULL
18798 };
18799
18800 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItemAttr_HasTextColour",kwnames,&obj0)) goto fail;
18801 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItemAttr,
18802 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18803 {
18804 PyThreadState* __tstate = wxPyBeginAllowThreads();
18805 result = (bool)(arg1)->HasTextColour();
18806
18807 wxPyEndAllowThreads(__tstate);
18808 if (PyErr_Occurred()) SWIG_fail;
18809 }
18810 {
18811 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
18812 }
18813 return resultobj;
18814 fail:
18815 return NULL;
18816 }
18817
18818
18819 static PyObject *_wrap_ListItemAttr_HasBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
18820 PyObject *resultobj;
18821 wxListItemAttr *arg1 = (wxListItemAttr *) 0 ;
18822 bool result;
18823 PyObject * obj0 = 0 ;
18824 char *kwnames[] = {
18825 (char *) "self", NULL
18826 };
18827
18828 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItemAttr_HasBackgroundColour",kwnames,&obj0)) goto fail;
18829 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItemAttr,
18830 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18831 {
18832 PyThreadState* __tstate = wxPyBeginAllowThreads();
18833 result = (bool)(arg1)->HasBackgroundColour();
18834
18835 wxPyEndAllowThreads(__tstate);
18836 if (PyErr_Occurred()) SWIG_fail;
18837 }
18838 {
18839 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
18840 }
18841 return resultobj;
18842 fail:
18843 return NULL;
18844 }
18845
18846
18847 static PyObject *_wrap_ListItemAttr_HasFont(PyObject *self, PyObject *args, PyObject *kwargs) {
18848 PyObject *resultobj;
18849 wxListItemAttr *arg1 = (wxListItemAttr *) 0 ;
18850 bool result;
18851 PyObject * obj0 = 0 ;
18852 char *kwnames[] = {
18853 (char *) "self", NULL
18854 };
18855
18856 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItemAttr_HasFont",kwnames,&obj0)) goto fail;
18857 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItemAttr,
18858 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18859 {
18860 PyThreadState* __tstate = wxPyBeginAllowThreads();
18861 result = (bool)(arg1)->HasFont();
18862
18863 wxPyEndAllowThreads(__tstate);
18864 if (PyErr_Occurred()) SWIG_fail;
18865 }
18866 {
18867 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
18868 }
18869 return resultobj;
18870 fail:
18871 return NULL;
18872 }
18873
18874
18875 static PyObject *_wrap_ListItemAttr_GetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) {
18876 PyObject *resultobj;
18877 wxListItemAttr *arg1 = (wxListItemAttr *) 0 ;
18878 wxColour result;
18879 PyObject * obj0 = 0 ;
18880 char *kwnames[] = {
18881 (char *) "self", NULL
18882 };
18883
18884 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItemAttr_GetTextColour",kwnames,&obj0)) goto fail;
18885 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItemAttr,
18886 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18887 {
18888 PyThreadState* __tstate = wxPyBeginAllowThreads();
18889 result = (arg1)->GetTextColour();
18890
18891 wxPyEndAllowThreads(__tstate);
18892 if (PyErr_Occurred()) SWIG_fail;
18893 }
18894 {
18895 wxColour * resultptr;
18896 resultptr = new wxColour((wxColour &) result);
18897 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxColour, 1);
18898 }
18899 return resultobj;
18900 fail:
18901 return NULL;
18902 }
18903
18904
18905 static PyObject *_wrap_ListItemAttr_GetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
18906 PyObject *resultobj;
18907 wxListItemAttr *arg1 = (wxListItemAttr *) 0 ;
18908 wxColour result;
18909 PyObject * obj0 = 0 ;
18910 char *kwnames[] = {
18911 (char *) "self", NULL
18912 };
18913
18914 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItemAttr_GetBackgroundColour",kwnames,&obj0)) goto fail;
18915 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItemAttr,
18916 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18917 {
18918 PyThreadState* __tstate = wxPyBeginAllowThreads();
18919 result = (arg1)->GetBackgroundColour();
18920
18921 wxPyEndAllowThreads(__tstate);
18922 if (PyErr_Occurred()) SWIG_fail;
18923 }
18924 {
18925 wxColour * resultptr;
18926 resultptr = new wxColour((wxColour &) result);
18927 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxColour, 1);
18928 }
18929 return resultobj;
18930 fail:
18931 return NULL;
18932 }
18933
18934
18935 static PyObject *_wrap_ListItemAttr_GetFont(PyObject *self, PyObject *args, PyObject *kwargs) {
18936 PyObject *resultobj;
18937 wxListItemAttr *arg1 = (wxListItemAttr *) 0 ;
18938 wxFont result;
18939 PyObject * obj0 = 0 ;
18940 char *kwnames[] = {
18941 (char *) "self", NULL
18942 };
18943
18944 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItemAttr_GetFont",kwnames,&obj0)) goto fail;
18945 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItemAttr,
18946 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18947 {
18948 PyThreadState* __tstate = wxPyBeginAllowThreads();
18949 result = (arg1)->GetFont();
18950
18951 wxPyEndAllowThreads(__tstate);
18952 if (PyErr_Occurred()) SWIG_fail;
18953 }
18954 {
18955 wxFont * resultptr;
18956 resultptr = new wxFont((wxFont &) result);
18957 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxFont, 1);
18958 }
18959 return resultobj;
18960 fail:
18961 return NULL;
18962 }
18963
18964
18965 static PyObject *_wrap_ListItemAttr_Destroy(PyObject *self, PyObject *args, PyObject *kwargs) {
18966 PyObject *resultobj;
18967 wxListItemAttr *arg1 = (wxListItemAttr *) 0 ;
18968 PyObject * obj0 = 0 ;
18969 char *kwnames[] = {
18970 (char *) "self", NULL
18971 };
18972
18973 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItemAttr_Destroy",kwnames,&obj0)) goto fail;
18974 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItemAttr,
18975 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
18976 {
18977 PyThreadState* __tstate = wxPyBeginAllowThreads();
18978 wxListItemAttr_Destroy(arg1);
18979
18980 wxPyEndAllowThreads(__tstate);
18981 if (PyErr_Occurred()) SWIG_fail;
18982 }
18983 Py_INCREF(Py_None); resultobj = Py_None;
18984 return resultobj;
18985 fail:
18986 return NULL;
18987 }
18988
18989
18990 static PyObject * ListItemAttr_swigregister(PyObject *self, PyObject *args) {
18991 PyObject *obj;
18992 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
18993 SWIG_TypeClientData(SWIGTYPE_p_wxListItemAttr, obj);
18994 Py_INCREF(obj);
18995 return Py_BuildValue((char *)"");
18996 }
18997 static PyObject *_wrap_new_ListItem(PyObject *self, PyObject *args, PyObject *kwargs) {
18998 PyObject *resultobj;
18999 wxListItem *result;
19000 char *kwnames[] = {
19001 NULL
19002 };
19003
19004 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_ListItem",kwnames)) goto fail;
19005 {
19006 PyThreadState* __tstate = wxPyBeginAllowThreads();
19007 result = (wxListItem *)new wxListItem();
19008
19009 wxPyEndAllowThreads(__tstate);
19010 if (PyErr_Occurred()) SWIG_fail;
19011 }
19012 {
19013 resultobj = wxPyMake_wxObject(result, 1);
19014 }
19015 return resultobj;
19016 fail:
19017 return NULL;
19018 }
19019
19020
19021 static PyObject *_wrap_delete_ListItem(PyObject *self, PyObject *args, PyObject *kwargs) {
19022 PyObject *resultobj;
19023 wxListItem *arg1 = (wxListItem *) 0 ;
19024 PyObject * obj0 = 0 ;
19025 char *kwnames[] = {
19026 (char *) "self", NULL
19027 };
19028
19029 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:delete_ListItem",kwnames,&obj0)) goto fail;
19030 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19031 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19032 {
19033 PyThreadState* __tstate = wxPyBeginAllowThreads();
19034 delete arg1;
19035
19036 wxPyEndAllowThreads(__tstate);
19037 if (PyErr_Occurred()) SWIG_fail;
19038 }
19039 Py_INCREF(Py_None); resultobj = Py_None;
19040 return resultobj;
19041 fail:
19042 return NULL;
19043 }
19044
19045
19046 static PyObject *_wrap_ListItem_Clear(PyObject *self, PyObject *args, PyObject *kwargs) {
19047 PyObject *resultobj;
19048 wxListItem *arg1 = (wxListItem *) 0 ;
19049 PyObject * obj0 = 0 ;
19050 char *kwnames[] = {
19051 (char *) "self", NULL
19052 };
19053
19054 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_Clear",kwnames,&obj0)) goto fail;
19055 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19056 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19057 {
19058 PyThreadState* __tstate = wxPyBeginAllowThreads();
19059 (arg1)->Clear();
19060
19061 wxPyEndAllowThreads(__tstate);
19062 if (PyErr_Occurred()) SWIG_fail;
19063 }
19064 Py_INCREF(Py_None); resultobj = Py_None;
19065 return resultobj;
19066 fail:
19067 return NULL;
19068 }
19069
19070
19071 static PyObject *_wrap_ListItem_ClearAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
19072 PyObject *resultobj;
19073 wxListItem *arg1 = (wxListItem *) 0 ;
19074 PyObject * obj0 = 0 ;
19075 char *kwnames[] = {
19076 (char *) "self", NULL
19077 };
19078
19079 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_ClearAttributes",kwnames,&obj0)) goto fail;
19080 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19081 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19082 {
19083 PyThreadState* __tstate = wxPyBeginAllowThreads();
19084 (arg1)->ClearAttributes();
19085
19086 wxPyEndAllowThreads(__tstate);
19087 if (PyErr_Occurred()) SWIG_fail;
19088 }
19089 Py_INCREF(Py_None); resultobj = Py_None;
19090 return resultobj;
19091 fail:
19092 return NULL;
19093 }
19094
19095
19096 static PyObject *_wrap_ListItem_SetMask(PyObject *self, PyObject *args, PyObject *kwargs) {
19097 PyObject *resultobj;
19098 wxListItem *arg1 = (wxListItem *) 0 ;
19099 long arg2 ;
19100 PyObject * obj0 = 0 ;
19101 PyObject * obj1 = 0 ;
19102 char *kwnames[] = {
19103 (char *) "self",(char *) "mask", NULL
19104 };
19105
19106 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_SetMask",kwnames,&obj0,&obj1)) goto fail;
19107 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19108 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19109 arg2 = (long) SWIG_AsLong(obj1);
19110 if (PyErr_Occurred()) SWIG_fail;
19111 {
19112 PyThreadState* __tstate = wxPyBeginAllowThreads();
19113 (arg1)->SetMask(arg2);
19114
19115 wxPyEndAllowThreads(__tstate);
19116 if (PyErr_Occurred()) SWIG_fail;
19117 }
19118 Py_INCREF(Py_None); resultobj = Py_None;
19119 return resultobj;
19120 fail:
19121 return NULL;
19122 }
19123
19124
19125 static PyObject *_wrap_ListItem_SetId(PyObject *self, PyObject *args, PyObject *kwargs) {
19126 PyObject *resultobj;
19127 wxListItem *arg1 = (wxListItem *) 0 ;
19128 long arg2 ;
19129 PyObject * obj0 = 0 ;
19130 PyObject * obj1 = 0 ;
19131 char *kwnames[] = {
19132 (char *) "self",(char *) "id", NULL
19133 };
19134
19135 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_SetId",kwnames,&obj0,&obj1)) goto fail;
19136 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19137 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19138 arg2 = (long) SWIG_AsLong(obj1);
19139 if (PyErr_Occurred()) SWIG_fail;
19140 {
19141 PyThreadState* __tstate = wxPyBeginAllowThreads();
19142 (arg1)->SetId(arg2);
19143
19144 wxPyEndAllowThreads(__tstate);
19145 if (PyErr_Occurred()) SWIG_fail;
19146 }
19147 Py_INCREF(Py_None); resultobj = Py_None;
19148 return resultobj;
19149 fail:
19150 return NULL;
19151 }
19152
19153
19154 static PyObject *_wrap_ListItem_SetColumn(PyObject *self, PyObject *args, PyObject *kwargs) {
19155 PyObject *resultobj;
19156 wxListItem *arg1 = (wxListItem *) 0 ;
19157 int arg2 ;
19158 PyObject * obj0 = 0 ;
19159 PyObject * obj1 = 0 ;
19160 char *kwnames[] = {
19161 (char *) "self",(char *) "col", NULL
19162 };
19163
19164 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_SetColumn",kwnames,&obj0,&obj1)) goto fail;
19165 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19166 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19167 arg2 = (int) SWIG_AsInt(obj1);
19168 if (PyErr_Occurred()) SWIG_fail;
19169 {
19170 PyThreadState* __tstate = wxPyBeginAllowThreads();
19171 (arg1)->SetColumn(arg2);
19172
19173 wxPyEndAllowThreads(__tstate);
19174 if (PyErr_Occurred()) SWIG_fail;
19175 }
19176 Py_INCREF(Py_None); resultobj = Py_None;
19177 return resultobj;
19178 fail:
19179 return NULL;
19180 }
19181
19182
19183 static PyObject *_wrap_ListItem_SetState(PyObject *self, PyObject *args, PyObject *kwargs) {
19184 PyObject *resultobj;
19185 wxListItem *arg1 = (wxListItem *) 0 ;
19186 long arg2 ;
19187 PyObject * obj0 = 0 ;
19188 PyObject * obj1 = 0 ;
19189 char *kwnames[] = {
19190 (char *) "self",(char *) "state", NULL
19191 };
19192
19193 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_SetState",kwnames,&obj0,&obj1)) goto fail;
19194 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19195 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19196 arg2 = (long) SWIG_AsLong(obj1);
19197 if (PyErr_Occurred()) SWIG_fail;
19198 {
19199 PyThreadState* __tstate = wxPyBeginAllowThreads();
19200 (arg1)->SetState(arg2);
19201
19202 wxPyEndAllowThreads(__tstate);
19203 if (PyErr_Occurred()) SWIG_fail;
19204 }
19205 Py_INCREF(Py_None); resultobj = Py_None;
19206 return resultobj;
19207 fail:
19208 return NULL;
19209 }
19210
19211
19212 static PyObject *_wrap_ListItem_SetStateMask(PyObject *self, PyObject *args, PyObject *kwargs) {
19213 PyObject *resultobj;
19214 wxListItem *arg1 = (wxListItem *) 0 ;
19215 long arg2 ;
19216 PyObject * obj0 = 0 ;
19217 PyObject * obj1 = 0 ;
19218 char *kwnames[] = {
19219 (char *) "self",(char *) "stateMask", NULL
19220 };
19221
19222 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_SetStateMask",kwnames,&obj0,&obj1)) goto fail;
19223 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19224 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19225 arg2 = (long) SWIG_AsLong(obj1);
19226 if (PyErr_Occurred()) SWIG_fail;
19227 {
19228 PyThreadState* __tstate = wxPyBeginAllowThreads();
19229 (arg1)->SetStateMask(arg2);
19230
19231 wxPyEndAllowThreads(__tstate);
19232 if (PyErr_Occurred()) SWIG_fail;
19233 }
19234 Py_INCREF(Py_None); resultobj = Py_None;
19235 return resultobj;
19236 fail:
19237 return NULL;
19238 }
19239
19240
19241 static PyObject *_wrap_ListItem_SetText(PyObject *self, PyObject *args, PyObject *kwargs) {
19242 PyObject *resultobj;
19243 wxListItem *arg1 = (wxListItem *) 0 ;
19244 wxString *arg2 = 0 ;
19245 bool temp2 = False ;
19246 PyObject * obj0 = 0 ;
19247 PyObject * obj1 = 0 ;
19248 char *kwnames[] = {
19249 (char *) "self",(char *) "text", NULL
19250 };
19251
19252 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_SetText",kwnames,&obj0,&obj1)) goto fail;
19253 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19254 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19255 {
19256 arg2 = wxString_in_helper(obj1);
19257 if (arg2 == NULL) SWIG_fail;
19258 temp2 = True;
19259 }
19260 {
19261 PyThreadState* __tstate = wxPyBeginAllowThreads();
19262 (arg1)->SetText((wxString const &)*arg2);
19263
19264 wxPyEndAllowThreads(__tstate);
19265 if (PyErr_Occurred()) SWIG_fail;
19266 }
19267 Py_INCREF(Py_None); resultobj = Py_None;
19268 {
19269 if (temp2)
19270 delete arg2;
19271 }
19272 return resultobj;
19273 fail:
19274 {
19275 if (temp2)
19276 delete arg2;
19277 }
19278 return NULL;
19279 }
19280
19281
19282 static PyObject *_wrap_ListItem_SetImage(PyObject *self, PyObject *args, PyObject *kwargs) {
19283 PyObject *resultobj;
19284 wxListItem *arg1 = (wxListItem *) 0 ;
19285 int arg2 ;
19286 PyObject * obj0 = 0 ;
19287 PyObject * obj1 = 0 ;
19288 char *kwnames[] = {
19289 (char *) "self",(char *) "image", NULL
19290 };
19291
19292 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_SetImage",kwnames,&obj0,&obj1)) goto fail;
19293 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19294 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19295 arg2 = (int) SWIG_AsInt(obj1);
19296 if (PyErr_Occurred()) SWIG_fail;
19297 {
19298 PyThreadState* __tstate = wxPyBeginAllowThreads();
19299 (arg1)->SetImage(arg2);
19300
19301 wxPyEndAllowThreads(__tstate);
19302 if (PyErr_Occurred()) SWIG_fail;
19303 }
19304 Py_INCREF(Py_None); resultobj = Py_None;
19305 return resultobj;
19306 fail:
19307 return NULL;
19308 }
19309
19310
19311 static PyObject *_wrap_ListItem_SetData(PyObject *self, PyObject *args, PyObject *kwargs) {
19312 PyObject *resultobj;
19313 wxListItem *arg1 = (wxListItem *) 0 ;
19314 long arg2 ;
19315 PyObject * obj0 = 0 ;
19316 PyObject * obj1 = 0 ;
19317 char *kwnames[] = {
19318 (char *) "self",(char *) "data", NULL
19319 };
19320
19321 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_SetData",kwnames,&obj0,&obj1)) goto fail;
19322 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19323 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19324 arg2 = (long) SWIG_AsLong(obj1);
19325 if (PyErr_Occurred()) SWIG_fail;
19326 {
19327 PyThreadState* __tstate = wxPyBeginAllowThreads();
19328 (arg1)->SetData(arg2);
19329
19330 wxPyEndAllowThreads(__tstate);
19331 if (PyErr_Occurred()) SWIG_fail;
19332 }
19333 Py_INCREF(Py_None); resultobj = Py_None;
19334 return resultobj;
19335 fail:
19336 return NULL;
19337 }
19338
19339
19340 static PyObject *_wrap_ListItem_SetWidth(PyObject *self, PyObject *args, PyObject *kwargs) {
19341 PyObject *resultobj;
19342 wxListItem *arg1 = (wxListItem *) 0 ;
19343 int arg2 ;
19344 PyObject * obj0 = 0 ;
19345 PyObject * obj1 = 0 ;
19346 char *kwnames[] = {
19347 (char *) "self",(char *) "width", NULL
19348 };
19349
19350 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_SetWidth",kwnames,&obj0,&obj1)) goto fail;
19351 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19352 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19353 arg2 = (int) SWIG_AsInt(obj1);
19354 if (PyErr_Occurred()) SWIG_fail;
19355 {
19356 PyThreadState* __tstate = wxPyBeginAllowThreads();
19357 (arg1)->SetWidth(arg2);
19358
19359 wxPyEndAllowThreads(__tstate);
19360 if (PyErr_Occurred()) SWIG_fail;
19361 }
19362 Py_INCREF(Py_None); resultobj = Py_None;
19363 return resultobj;
19364 fail:
19365 return NULL;
19366 }
19367
19368
19369 static PyObject *_wrap_ListItem_SetAlign(PyObject *self, PyObject *args, PyObject *kwargs) {
19370 PyObject *resultobj;
19371 wxListItem *arg1 = (wxListItem *) 0 ;
19372 int arg2 ;
19373 PyObject * obj0 = 0 ;
19374 PyObject * obj1 = 0 ;
19375 char *kwnames[] = {
19376 (char *) "self",(char *) "align", NULL
19377 };
19378
19379 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_SetAlign",kwnames,&obj0,&obj1)) goto fail;
19380 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19381 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19382 arg2 = (wxListColumnFormat) SWIG_AsInt(obj1);
19383 if (PyErr_Occurred()) SWIG_fail;
19384 {
19385 PyThreadState* __tstate = wxPyBeginAllowThreads();
19386 (arg1)->SetAlign((wxListColumnFormat )arg2);
19387
19388 wxPyEndAllowThreads(__tstate);
19389 if (PyErr_Occurred()) SWIG_fail;
19390 }
19391 Py_INCREF(Py_None); resultobj = Py_None;
19392 return resultobj;
19393 fail:
19394 return NULL;
19395 }
19396
19397
19398 static PyObject *_wrap_ListItem_SetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) {
19399 PyObject *resultobj;
19400 wxListItem *arg1 = (wxListItem *) 0 ;
19401 wxColour *arg2 = 0 ;
19402 wxColour temp2 ;
19403 PyObject * obj0 = 0 ;
19404 PyObject * obj1 = 0 ;
19405 char *kwnames[] = {
19406 (char *) "self",(char *) "colText", NULL
19407 };
19408
19409 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_SetTextColour",kwnames,&obj0,&obj1)) goto fail;
19410 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19411 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19412 {
19413 arg2 = &temp2;
19414 if ( ! wxColour_helper(obj1, &arg2)) SWIG_fail;
19415 }
19416 {
19417 PyThreadState* __tstate = wxPyBeginAllowThreads();
19418 (arg1)->SetTextColour((wxColour const &)*arg2);
19419
19420 wxPyEndAllowThreads(__tstate);
19421 if (PyErr_Occurred()) SWIG_fail;
19422 }
19423 Py_INCREF(Py_None); resultobj = Py_None;
19424 return resultobj;
19425 fail:
19426 return NULL;
19427 }
19428
19429
19430 static PyObject *_wrap_ListItem_SetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
19431 PyObject *resultobj;
19432 wxListItem *arg1 = (wxListItem *) 0 ;
19433 wxColour *arg2 = 0 ;
19434 wxColour temp2 ;
19435 PyObject * obj0 = 0 ;
19436 PyObject * obj1 = 0 ;
19437 char *kwnames[] = {
19438 (char *) "self",(char *) "colBack", NULL
19439 };
19440
19441 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_SetBackgroundColour",kwnames,&obj0,&obj1)) goto fail;
19442 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19443 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19444 {
19445 arg2 = &temp2;
19446 if ( ! wxColour_helper(obj1, &arg2)) SWIG_fail;
19447 }
19448 {
19449 PyThreadState* __tstate = wxPyBeginAllowThreads();
19450 (arg1)->SetBackgroundColour((wxColour const &)*arg2);
19451
19452 wxPyEndAllowThreads(__tstate);
19453 if (PyErr_Occurred()) SWIG_fail;
19454 }
19455 Py_INCREF(Py_None); resultobj = Py_None;
19456 return resultobj;
19457 fail:
19458 return NULL;
19459 }
19460
19461
19462 static PyObject *_wrap_ListItem_SetFont(PyObject *self, PyObject *args, PyObject *kwargs) {
19463 PyObject *resultobj;
19464 wxListItem *arg1 = (wxListItem *) 0 ;
19465 wxFont *arg2 = 0 ;
19466 PyObject * obj0 = 0 ;
19467 PyObject * obj1 = 0 ;
19468 char *kwnames[] = {
19469 (char *) "self",(char *) "font", NULL
19470 };
19471
19472 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_SetFont",kwnames,&obj0,&obj1)) goto fail;
19473 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19474 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19475 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxFont,
19476 SWIG_POINTER_EXCEPTION | 0)) == -1)
19477 SWIG_fail;
19478 if (arg2 == NULL) {
19479 PyErr_SetString(PyExc_TypeError,"null reference");
19480 SWIG_fail;
19481 }
19482 {
19483 PyThreadState* __tstate = wxPyBeginAllowThreads();
19484 (arg1)->SetFont((wxFont const &)*arg2);
19485
19486 wxPyEndAllowThreads(__tstate);
19487 if (PyErr_Occurred()) SWIG_fail;
19488 }
19489 Py_INCREF(Py_None); resultobj = Py_None;
19490 return resultobj;
19491 fail:
19492 return NULL;
19493 }
19494
19495
19496 static PyObject *_wrap_ListItem_GetMask(PyObject *self, PyObject *args, PyObject *kwargs) {
19497 PyObject *resultobj;
19498 wxListItem *arg1 = (wxListItem *) 0 ;
19499 long result;
19500 PyObject * obj0 = 0 ;
19501 char *kwnames[] = {
19502 (char *) "self", NULL
19503 };
19504
19505 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_GetMask",kwnames,&obj0)) goto fail;
19506 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19507 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19508 {
19509 PyThreadState* __tstate = wxPyBeginAllowThreads();
19510 result = (long)(arg1)->GetMask();
19511
19512 wxPyEndAllowThreads(__tstate);
19513 if (PyErr_Occurred()) SWIG_fail;
19514 }
19515 resultobj = SWIG_FromLong((long)result);
19516 return resultobj;
19517 fail:
19518 return NULL;
19519 }
19520
19521
19522 static PyObject *_wrap_ListItem_GetId(PyObject *self, PyObject *args, PyObject *kwargs) {
19523 PyObject *resultobj;
19524 wxListItem *arg1 = (wxListItem *) 0 ;
19525 long result;
19526 PyObject * obj0 = 0 ;
19527 char *kwnames[] = {
19528 (char *) "self", NULL
19529 };
19530
19531 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_GetId",kwnames,&obj0)) goto fail;
19532 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19533 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19534 {
19535 PyThreadState* __tstate = wxPyBeginAllowThreads();
19536 result = (long)(arg1)->GetId();
19537
19538 wxPyEndAllowThreads(__tstate);
19539 if (PyErr_Occurred()) SWIG_fail;
19540 }
19541 resultobj = SWIG_FromLong((long)result);
19542 return resultobj;
19543 fail:
19544 return NULL;
19545 }
19546
19547
19548 static PyObject *_wrap_ListItem_GetColumn(PyObject *self, PyObject *args, PyObject *kwargs) {
19549 PyObject *resultobj;
19550 wxListItem *arg1 = (wxListItem *) 0 ;
19551 int result;
19552 PyObject * obj0 = 0 ;
19553 char *kwnames[] = {
19554 (char *) "self", NULL
19555 };
19556
19557 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_GetColumn",kwnames,&obj0)) goto fail;
19558 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19559 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19560 {
19561 PyThreadState* __tstate = wxPyBeginAllowThreads();
19562 result = (int)(arg1)->GetColumn();
19563
19564 wxPyEndAllowThreads(__tstate);
19565 if (PyErr_Occurred()) SWIG_fail;
19566 }
19567 resultobj = SWIG_FromInt((int)result);
19568 return resultobj;
19569 fail:
19570 return NULL;
19571 }
19572
19573
19574 static PyObject *_wrap_ListItem_GetState(PyObject *self, PyObject *args, PyObject *kwargs) {
19575 PyObject *resultobj;
19576 wxListItem *arg1 = (wxListItem *) 0 ;
19577 long result;
19578 PyObject * obj0 = 0 ;
19579 char *kwnames[] = {
19580 (char *) "self", NULL
19581 };
19582
19583 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_GetState",kwnames,&obj0)) goto fail;
19584 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19585 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19586 {
19587 PyThreadState* __tstate = wxPyBeginAllowThreads();
19588 result = (long)(arg1)->GetState();
19589
19590 wxPyEndAllowThreads(__tstate);
19591 if (PyErr_Occurred()) SWIG_fail;
19592 }
19593 resultobj = SWIG_FromLong((long)result);
19594 return resultobj;
19595 fail:
19596 return NULL;
19597 }
19598
19599
19600 static PyObject *_wrap_ListItem_GetText(PyObject *self, PyObject *args, PyObject *kwargs) {
19601 PyObject *resultobj;
19602 wxListItem *arg1 = (wxListItem *) 0 ;
19603 wxString *result;
19604 PyObject * obj0 = 0 ;
19605 char *kwnames[] = {
19606 (char *) "self", NULL
19607 };
19608
19609 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_GetText",kwnames,&obj0)) goto fail;
19610 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19611 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19612 {
19613 PyThreadState* __tstate = wxPyBeginAllowThreads();
19614 {
19615 wxString const &_result_ref = (arg1)->GetText();
19616 result = (wxString *) &_result_ref;
19617 }
19618
19619 wxPyEndAllowThreads(__tstate);
19620 if (PyErr_Occurred()) SWIG_fail;
19621 }
19622 {
19623 #if wxUSE_UNICODE
19624 resultobj = PyUnicode_FromWideChar(result->c_str(), result->Len());
19625 #else
19626 resultobj = PyString_FromStringAndSize(result->c_str(), result->Len());
19627 #endif
19628 }
19629 return resultobj;
19630 fail:
19631 return NULL;
19632 }
19633
19634
19635 static PyObject *_wrap_ListItem_GetImage(PyObject *self, PyObject *args, PyObject *kwargs) {
19636 PyObject *resultobj;
19637 wxListItem *arg1 = (wxListItem *) 0 ;
19638 int result;
19639 PyObject * obj0 = 0 ;
19640 char *kwnames[] = {
19641 (char *) "self", NULL
19642 };
19643
19644 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_GetImage",kwnames,&obj0)) goto fail;
19645 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19646 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19647 {
19648 PyThreadState* __tstate = wxPyBeginAllowThreads();
19649 result = (int)(arg1)->GetImage();
19650
19651 wxPyEndAllowThreads(__tstate);
19652 if (PyErr_Occurred()) SWIG_fail;
19653 }
19654 resultobj = SWIG_FromInt((int)result);
19655 return resultobj;
19656 fail:
19657 return NULL;
19658 }
19659
19660
19661 static PyObject *_wrap_ListItem_GetData(PyObject *self, PyObject *args, PyObject *kwargs) {
19662 PyObject *resultobj;
19663 wxListItem *arg1 = (wxListItem *) 0 ;
19664 long result;
19665 PyObject * obj0 = 0 ;
19666 char *kwnames[] = {
19667 (char *) "self", NULL
19668 };
19669
19670 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_GetData",kwnames,&obj0)) goto fail;
19671 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19672 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19673 {
19674 PyThreadState* __tstate = wxPyBeginAllowThreads();
19675 result = (long)(arg1)->GetData();
19676
19677 wxPyEndAllowThreads(__tstate);
19678 if (PyErr_Occurred()) SWIG_fail;
19679 }
19680 resultobj = SWIG_FromLong((long)result);
19681 return resultobj;
19682 fail:
19683 return NULL;
19684 }
19685
19686
19687 static PyObject *_wrap_ListItem_GetWidth(PyObject *self, PyObject *args, PyObject *kwargs) {
19688 PyObject *resultobj;
19689 wxListItem *arg1 = (wxListItem *) 0 ;
19690 int result;
19691 PyObject * obj0 = 0 ;
19692 char *kwnames[] = {
19693 (char *) "self", NULL
19694 };
19695
19696 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_GetWidth",kwnames,&obj0)) goto fail;
19697 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19698 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19699 {
19700 PyThreadState* __tstate = wxPyBeginAllowThreads();
19701 result = (int)(arg1)->GetWidth();
19702
19703 wxPyEndAllowThreads(__tstate);
19704 if (PyErr_Occurred()) SWIG_fail;
19705 }
19706 resultobj = SWIG_FromInt((int)result);
19707 return resultobj;
19708 fail:
19709 return NULL;
19710 }
19711
19712
19713 static PyObject *_wrap_ListItem_GetAlign(PyObject *self, PyObject *args, PyObject *kwargs) {
19714 PyObject *resultobj;
19715 wxListItem *arg1 = (wxListItem *) 0 ;
19716 int result;
19717 PyObject * obj0 = 0 ;
19718 char *kwnames[] = {
19719 (char *) "self", NULL
19720 };
19721
19722 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_GetAlign",kwnames,&obj0)) goto fail;
19723 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19724 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19725 {
19726 PyThreadState* __tstate = wxPyBeginAllowThreads();
19727 result = (int)(arg1)->GetAlign();
19728
19729 wxPyEndAllowThreads(__tstate);
19730 if (PyErr_Occurred()) SWIG_fail;
19731 }
19732 resultobj = SWIG_FromInt((int)result);
19733 return resultobj;
19734 fail:
19735 return NULL;
19736 }
19737
19738
19739 static PyObject *_wrap_ListItem_GetAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
19740 PyObject *resultobj;
19741 wxListItem *arg1 = (wxListItem *) 0 ;
19742 wxListItemAttr *result;
19743 PyObject * obj0 = 0 ;
19744 char *kwnames[] = {
19745 (char *) "self", NULL
19746 };
19747
19748 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_GetAttributes",kwnames,&obj0)) goto fail;
19749 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19750 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19751 {
19752 PyThreadState* __tstate = wxPyBeginAllowThreads();
19753 result = (wxListItemAttr *)(arg1)->GetAttributes();
19754
19755 wxPyEndAllowThreads(__tstate);
19756 if (PyErr_Occurred()) SWIG_fail;
19757 }
19758 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxListItemAttr, 0);
19759 return resultobj;
19760 fail:
19761 return NULL;
19762 }
19763
19764
19765 static PyObject *_wrap_ListItem_HasAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
19766 PyObject *resultobj;
19767 wxListItem *arg1 = (wxListItem *) 0 ;
19768 bool result;
19769 PyObject * obj0 = 0 ;
19770 char *kwnames[] = {
19771 (char *) "self", NULL
19772 };
19773
19774 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_HasAttributes",kwnames,&obj0)) goto fail;
19775 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19776 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19777 {
19778 PyThreadState* __tstate = wxPyBeginAllowThreads();
19779 result = (bool)(arg1)->HasAttributes();
19780
19781 wxPyEndAllowThreads(__tstate);
19782 if (PyErr_Occurred()) SWIG_fail;
19783 }
19784 {
19785 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
19786 }
19787 return resultobj;
19788 fail:
19789 return NULL;
19790 }
19791
19792
19793 static PyObject *_wrap_ListItem_GetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) {
19794 PyObject *resultobj;
19795 wxListItem *arg1 = (wxListItem *) 0 ;
19796 wxColour result;
19797 PyObject * obj0 = 0 ;
19798 char *kwnames[] = {
19799 (char *) "self", NULL
19800 };
19801
19802 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_GetTextColour",kwnames,&obj0)) goto fail;
19803 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19804 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19805 {
19806 PyThreadState* __tstate = wxPyBeginAllowThreads();
19807 result = ((wxListItem const *)arg1)->GetTextColour();
19808
19809 wxPyEndAllowThreads(__tstate);
19810 if (PyErr_Occurred()) SWIG_fail;
19811 }
19812 {
19813 wxColour * resultptr;
19814 resultptr = new wxColour((wxColour &) result);
19815 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxColour, 1);
19816 }
19817 return resultobj;
19818 fail:
19819 return NULL;
19820 }
19821
19822
19823 static PyObject *_wrap_ListItem_GetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
19824 PyObject *resultobj;
19825 wxListItem *arg1 = (wxListItem *) 0 ;
19826 wxColour result;
19827 PyObject * obj0 = 0 ;
19828 char *kwnames[] = {
19829 (char *) "self", NULL
19830 };
19831
19832 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_GetBackgroundColour",kwnames,&obj0)) goto fail;
19833 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19834 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19835 {
19836 PyThreadState* __tstate = wxPyBeginAllowThreads();
19837 result = ((wxListItem const *)arg1)->GetBackgroundColour();
19838
19839 wxPyEndAllowThreads(__tstate);
19840 if (PyErr_Occurred()) SWIG_fail;
19841 }
19842 {
19843 wxColour * resultptr;
19844 resultptr = new wxColour((wxColour &) result);
19845 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxColour, 1);
19846 }
19847 return resultobj;
19848 fail:
19849 return NULL;
19850 }
19851
19852
19853 static PyObject *_wrap_ListItem_GetFont(PyObject *self, PyObject *args, PyObject *kwargs) {
19854 PyObject *resultobj;
19855 wxListItem *arg1 = (wxListItem *) 0 ;
19856 wxFont result;
19857 PyObject * obj0 = 0 ;
19858 char *kwnames[] = {
19859 (char *) "self", NULL
19860 };
19861
19862 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_GetFont",kwnames,&obj0)) goto fail;
19863 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19864 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19865 {
19866 PyThreadState* __tstate = wxPyBeginAllowThreads();
19867 result = ((wxListItem const *)arg1)->GetFont();
19868
19869 wxPyEndAllowThreads(__tstate);
19870 if (PyErr_Occurred()) SWIG_fail;
19871 }
19872 {
19873 wxFont * resultptr;
19874 resultptr = new wxFont((wxFont &) result);
19875 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxFont, 1);
19876 }
19877 return resultobj;
19878 fail:
19879 return NULL;
19880 }
19881
19882
19883 static PyObject *_wrap_ListItem_m_mask_set(PyObject *self, PyObject *args, PyObject *kwargs) {
19884 PyObject *resultobj;
19885 wxListItem *arg1 = (wxListItem *) 0 ;
19886 long arg2 ;
19887 PyObject * obj0 = 0 ;
19888 PyObject * obj1 = 0 ;
19889 char *kwnames[] = {
19890 (char *) "self",(char *) "m_mask", NULL
19891 };
19892
19893 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_m_mask_set",kwnames,&obj0,&obj1)) goto fail;
19894 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19895 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19896 arg2 = (long) SWIG_AsLong(obj1);
19897 if (PyErr_Occurred()) SWIG_fail;
19898 if (arg1) (arg1)->m_mask = arg2;
19899
19900 Py_INCREF(Py_None); resultobj = Py_None;
19901 return resultobj;
19902 fail:
19903 return NULL;
19904 }
19905
19906
19907 static PyObject *_wrap_ListItem_m_mask_get(PyObject *self, PyObject *args, PyObject *kwargs) {
19908 PyObject *resultobj;
19909 wxListItem *arg1 = (wxListItem *) 0 ;
19910 long result;
19911 PyObject * obj0 = 0 ;
19912 char *kwnames[] = {
19913 (char *) "self", NULL
19914 };
19915
19916 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_m_mask_get",kwnames,&obj0)) goto fail;
19917 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19918 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19919 result = (long) ((arg1)->m_mask);
19920
19921 resultobj = SWIG_FromLong((long)result);
19922 return resultobj;
19923 fail:
19924 return NULL;
19925 }
19926
19927
19928 static PyObject *_wrap_ListItem_m_itemId_set(PyObject *self, PyObject *args, PyObject *kwargs) {
19929 PyObject *resultobj;
19930 wxListItem *arg1 = (wxListItem *) 0 ;
19931 long arg2 ;
19932 PyObject * obj0 = 0 ;
19933 PyObject * obj1 = 0 ;
19934 char *kwnames[] = {
19935 (char *) "self",(char *) "m_itemId", NULL
19936 };
19937
19938 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_m_itemId_set",kwnames,&obj0,&obj1)) goto fail;
19939 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19940 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19941 arg2 = (long) SWIG_AsLong(obj1);
19942 if (PyErr_Occurred()) SWIG_fail;
19943 if (arg1) (arg1)->m_itemId = arg2;
19944
19945 Py_INCREF(Py_None); resultobj = Py_None;
19946 return resultobj;
19947 fail:
19948 return NULL;
19949 }
19950
19951
19952 static PyObject *_wrap_ListItem_m_itemId_get(PyObject *self, PyObject *args, PyObject *kwargs) {
19953 PyObject *resultobj;
19954 wxListItem *arg1 = (wxListItem *) 0 ;
19955 long result;
19956 PyObject * obj0 = 0 ;
19957 char *kwnames[] = {
19958 (char *) "self", NULL
19959 };
19960
19961 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_m_itemId_get",kwnames,&obj0)) goto fail;
19962 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19963 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19964 result = (long) ((arg1)->m_itemId);
19965
19966 resultobj = SWIG_FromLong((long)result);
19967 return resultobj;
19968 fail:
19969 return NULL;
19970 }
19971
19972
19973 static PyObject *_wrap_ListItem_m_col_set(PyObject *self, PyObject *args, PyObject *kwargs) {
19974 PyObject *resultobj;
19975 wxListItem *arg1 = (wxListItem *) 0 ;
19976 int arg2 ;
19977 PyObject * obj0 = 0 ;
19978 PyObject * obj1 = 0 ;
19979 char *kwnames[] = {
19980 (char *) "self",(char *) "m_col", NULL
19981 };
19982
19983 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_m_col_set",kwnames,&obj0,&obj1)) goto fail;
19984 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
19985 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
19986 arg2 = (int) SWIG_AsInt(obj1);
19987 if (PyErr_Occurred()) SWIG_fail;
19988 if (arg1) (arg1)->m_col = arg2;
19989
19990 Py_INCREF(Py_None); resultobj = Py_None;
19991 return resultobj;
19992 fail:
19993 return NULL;
19994 }
19995
19996
19997 static PyObject *_wrap_ListItem_m_col_get(PyObject *self, PyObject *args, PyObject *kwargs) {
19998 PyObject *resultobj;
19999 wxListItem *arg1 = (wxListItem *) 0 ;
20000 int result;
20001 PyObject * obj0 = 0 ;
20002 char *kwnames[] = {
20003 (char *) "self", NULL
20004 };
20005
20006 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_m_col_get",kwnames,&obj0)) goto fail;
20007 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
20008 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20009 result = (int) ((arg1)->m_col);
20010
20011 resultobj = SWIG_FromInt((int)result);
20012 return resultobj;
20013 fail:
20014 return NULL;
20015 }
20016
20017
20018 static PyObject *_wrap_ListItem_m_state_set(PyObject *self, PyObject *args, PyObject *kwargs) {
20019 PyObject *resultobj;
20020 wxListItem *arg1 = (wxListItem *) 0 ;
20021 long arg2 ;
20022 PyObject * obj0 = 0 ;
20023 PyObject * obj1 = 0 ;
20024 char *kwnames[] = {
20025 (char *) "self",(char *) "m_state", NULL
20026 };
20027
20028 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_m_state_set",kwnames,&obj0,&obj1)) goto fail;
20029 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
20030 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20031 arg2 = (long) SWIG_AsLong(obj1);
20032 if (PyErr_Occurred()) SWIG_fail;
20033 if (arg1) (arg1)->m_state = arg2;
20034
20035 Py_INCREF(Py_None); resultobj = Py_None;
20036 return resultobj;
20037 fail:
20038 return NULL;
20039 }
20040
20041
20042 static PyObject *_wrap_ListItem_m_state_get(PyObject *self, PyObject *args, PyObject *kwargs) {
20043 PyObject *resultobj;
20044 wxListItem *arg1 = (wxListItem *) 0 ;
20045 long result;
20046 PyObject * obj0 = 0 ;
20047 char *kwnames[] = {
20048 (char *) "self", NULL
20049 };
20050
20051 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_m_state_get",kwnames,&obj0)) goto fail;
20052 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
20053 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20054 result = (long) ((arg1)->m_state);
20055
20056 resultobj = SWIG_FromLong((long)result);
20057 return resultobj;
20058 fail:
20059 return NULL;
20060 }
20061
20062
20063 static PyObject *_wrap_ListItem_m_stateMask_set(PyObject *self, PyObject *args, PyObject *kwargs) {
20064 PyObject *resultobj;
20065 wxListItem *arg1 = (wxListItem *) 0 ;
20066 long arg2 ;
20067 PyObject * obj0 = 0 ;
20068 PyObject * obj1 = 0 ;
20069 char *kwnames[] = {
20070 (char *) "self",(char *) "m_stateMask", NULL
20071 };
20072
20073 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_m_stateMask_set",kwnames,&obj0,&obj1)) goto fail;
20074 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
20075 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20076 arg2 = (long) SWIG_AsLong(obj1);
20077 if (PyErr_Occurred()) SWIG_fail;
20078 if (arg1) (arg1)->m_stateMask = arg2;
20079
20080 Py_INCREF(Py_None); resultobj = Py_None;
20081 return resultobj;
20082 fail:
20083 return NULL;
20084 }
20085
20086
20087 static PyObject *_wrap_ListItem_m_stateMask_get(PyObject *self, PyObject *args, PyObject *kwargs) {
20088 PyObject *resultobj;
20089 wxListItem *arg1 = (wxListItem *) 0 ;
20090 long result;
20091 PyObject * obj0 = 0 ;
20092 char *kwnames[] = {
20093 (char *) "self", NULL
20094 };
20095
20096 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_m_stateMask_get",kwnames,&obj0)) goto fail;
20097 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
20098 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20099 result = (long) ((arg1)->m_stateMask);
20100
20101 resultobj = SWIG_FromLong((long)result);
20102 return resultobj;
20103 fail:
20104 return NULL;
20105 }
20106
20107
20108 static PyObject *_wrap_ListItem_m_text_set(PyObject *self, PyObject *args, PyObject *kwargs) {
20109 PyObject *resultobj;
20110 wxListItem *arg1 = (wxListItem *) 0 ;
20111 wxString *arg2 = (wxString *) 0 ;
20112 bool temp2 = False ;
20113 PyObject * obj0 = 0 ;
20114 PyObject * obj1 = 0 ;
20115 char *kwnames[] = {
20116 (char *) "self",(char *) "m_text", NULL
20117 };
20118
20119 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_m_text_set",kwnames,&obj0,&obj1)) goto fail;
20120 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
20121 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20122 {
20123 arg2 = wxString_in_helper(obj1);
20124 if (arg2 == NULL) SWIG_fail;
20125 temp2 = True;
20126 }
20127 if (arg1) (arg1)->m_text = *arg2;
20128
20129 Py_INCREF(Py_None); resultobj = Py_None;
20130 {
20131 if (temp2)
20132 delete arg2;
20133 }
20134 return resultobj;
20135 fail:
20136 {
20137 if (temp2)
20138 delete arg2;
20139 }
20140 return NULL;
20141 }
20142
20143
20144 static PyObject *_wrap_ListItem_m_text_get(PyObject *self, PyObject *args, PyObject *kwargs) {
20145 PyObject *resultobj;
20146 wxListItem *arg1 = (wxListItem *) 0 ;
20147 wxString *result;
20148 PyObject * obj0 = 0 ;
20149 char *kwnames[] = {
20150 (char *) "self", NULL
20151 };
20152
20153 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_m_text_get",kwnames,&obj0)) goto fail;
20154 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
20155 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20156 result = (wxString *)& ((arg1)->m_text);
20157
20158 {
20159 #if wxUSE_UNICODE
20160 resultobj = PyUnicode_FromWideChar(result->c_str(), result->Len());
20161 #else
20162 resultobj = PyString_FromStringAndSize(result->c_str(), result->Len());
20163 #endif
20164 }
20165 return resultobj;
20166 fail:
20167 return NULL;
20168 }
20169
20170
20171 static PyObject *_wrap_ListItem_m_image_set(PyObject *self, PyObject *args, PyObject *kwargs) {
20172 PyObject *resultobj;
20173 wxListItem *arg1 = (wxListItem *) 0 ;
20174 int arg2 ;
20175 PyObject * obj0 = 0 ;
20176 PyObject * obj1 = 0 ;
20177 char *kwnames[] = {
20178 (char *) "self",(char *) "m_image", NULL
20179 };
20180
20181 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_m_image_set",kwnames,&obj0,&obj1)) goto fail;
20182 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
20183 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20184 arg2 = (int) SWIG_AsInt(obj1);
20185 if (PyErr_Occurred()) SWIG_fail;
20186 if (arg1) (arg1)->m_image = arg2;
20187
20188 Py_INCREF(Py_None); resultobj = Py_None;
20189 return resultobj;
20190 fail:
20191 return NULL;
20192 }
20193
20194
20195 static PyObject *_wrap_ListItem_m_image_get(PyObject *self, PyObject *args, PyObject *kwargs) {
20196 PyObject *resultobj;
20197 wxListItem *arg1 = (wxListItem *) 0 ;
20198 int result;
20199 PyObject * obj0 = 0 ;
20200 char *kwnames[] = {
20201 (char *) "self", NULL
20202 };
20203
20204 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_m_image_get",kwnames,&obj0)) goto fail;
20205 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
20206 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20207 result = (int) ((arg1)->m_image);
20208
20209 resultobj = SWIG_FromInt((int)result);
20210 return resultobj;
20211 fail:
20212 return NULL;
20213 }
20214
20215
20216 static PyObject *_wrap_ListItem_m_data_set(PyObject *self, PyObject *args, PyObject *kwargs) {
20217 PyObject *resultobj;
20218 wxListItem *arg1 = (wxListItem *) 0 ;
20219 long arg2 ;
20220 PyObject * obj0 = 0 ;
20221 PyObject * obj1 = 0 ;
20222 char *kwnames[] = {
20223 (char *) "self",(char *) "m_data", NULL
20224 };
20225
20226 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_m_data_set",kwnames,&obj0,&obj1)) goto fail;
20227 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
20228 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20229 arg2 = (long) SWIG_AsLong(obj1);
20230 if (PyErr_Occurred()) SWIG_fail;
20231 if (arg1) (arg1)->m_data = arg2;
20232
20233 Py_INCREF(Py_None); resultobj = Py_None;
20234 return resultobj;
20235 fail:
20236 return NULL;
20237 }
20238
20239
20240 static PyObject *_wrap_ListItem_m_data_get(PyObject *self, PyObject *args, PyObject *kwargs) {
20241 PyObject *resultobj;
20242 wxListItem *arg1 = (wxListItem *) 0 ;
20243 long result;
20244 PyObject * obj0 = 0 ;
20245 char *kwnames[] = {
20246 (char *) "self", NULL
20247 };
20248
20249 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_m_data_get",kwnames,&obj0)) goto fail;
20250 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
20251 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20252 result = (long) ((arg1)->m_data);
20253
20254 resultobj = SWIG_FromLong((long)result);
20255 return resultobj;
20256 fail:
20257 return NULL;
20258 }
20259
20260
20261 static PyObject *_wrap_ListItem_m_format_set(PyObject *self, PyObject *args, PyObject *kwargs) {
20262 PyObject *resultobj;
20263 wxListItem *arg1 = (wxListItem *) 0 ;
20264 int arg2 ;
20265 PyObject * obj0 = 0 ;
20266 PyObject * obj1 = 0 ;
20267 char *kwnames[] = {
20268 (char *) "self",(char *) "m_format", NULL
20269 };
20270
20271 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_m_format_set",kwnames,&obj0,&obj1)) goto fail;
20272 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
20273 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20274 arg2 = (int) SWIG_AsInt(obj1);
20275 if (PyErr_Occurred()) SWIG_fail;
20276 if (arg1) (arg1)->m_format = arg2;
20277
20278 Py_INCREF(Py_None); resultobj = Py_None;
20279 return resultobj;
20280 fail:
20281 return NULL;
20282 }
20283
20284
20285 static PyObject *_wrap_ListItem_m_format_get(PyObject *self, PyObject *args, PyObject *kwargs) {
20286 PyObject *resultobj;
20287 wxListItem *arg1 = (wxListItem *) 0 ;
20288 int result;
20289 PyObject * obj0 = 0 ;
20290 char *kwnames[] = {
20291 (char *) "self", NULL
20292 };
20293
20294 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_m_format_get",kwnames,&obj0)) goto fail;
20295 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
20296 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20297 result = (int) ((arg1)->m_format);
20298
20299 resultobj = SWIG_FromInt((int)result);
20300 return resultobj;
20301 fail:
20302 return NULL;
20303 }
20304
20305
20306 static PyObject *_wrap_ListItem_m_width_set(PyObject *self, PyObject *args, PyObject *kwargs) {
20307 PyObject *resultobj;
20308 wxListItem *arg1 = (wxListItem *) 0 ;
20309 int arg2 ;
20310 PyObject * obj0 = 0 ;
20311 PyObject * obj1 = 0 ;
20312 char *kwnames[] = {
20313 (char *) "self",(char *) "m_width", NULL
20314 };
20315
20316 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListItem_m_width_set",kwnames,&obj0,&obj1)) goto fail;
20317 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
20318 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20319 arg2 = (int) SWIG_AsInt(obj1);
20320 if (PyErr_Occurred()) SWIG_fail;
20321 if (arg1) (arg1)->m_width = arg2;
20322
20323 Py_INCREF(Py_None); resultobj = Py_None;
20324 return resultobj;
20325 fail:
20326 return NULL;
20327 }
20328
20329
20330 static PyObject *_wrap_ListItem_m_width_get(PyObject *self, PyObject *args, PyObject *kwargs) {
20331 PyObject *resultobj;
20332 wxListItem *arg1 = (wxListItem *) 0 ;
20333 int result;
20334 PyObject * obj0 = 0 ;
20335 char *kwnames[] = {
20336 (char *) "self", NULL
20337 };
20338
20339 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListItem_m_width_get",kwnames,&obj0)) goto fail;
20340 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListItem,
20341 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20342 result = (int) ((arg1)->m_width);
20343
20344 resultobj = SWIG_FromInt((int)result);
20345 return resultobj;
20346 fail:
20347 return NULL;
20348 }
20349
20350
20351 static PyObject * ListItem_swigregister(PyObject *self, PyObject *args) {
20352 PyObject *obj;
20353 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
20354 SWIG_TypeClientData(SWIGTYPE_p_wxListItem, obj);
20355 Py_INCREF(obj);
20356 return Py_BuildValue((char *)"");
20357 }
20358 static PyObject *_wrap_new_ListEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
20359 PyObject *resultobj;
20360 wxEventType arg1 = (wxEventType) wxEVT_NULL ;
20361 int arg2 = (int) 0 ;
20362 wxListEvent *result;
20363 PyObject * obj0 = 0 ;
20364 PyObject * obj1 = 0 ;
20365 char *kwnames[] = {
20366 (char *) "commandType",(char *) "id", NULL
20367 };
20368
20369 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|OO:new_ListEvent",kwnames,&obj0,&obj1)) goto fail;
20370 if (obj0) {
20371 arg1 = (wxEventType) SWIG_AsInt(obj0);
20372 if (PyErr_Occurred()) SWIG_fail;
20373 }
20374 if (obj1) {
20375 arg2 = (int) SWIG_AsInt(obj1);
20376 if (PyErr_Occurred()) SWIG_fail;
20377 }
20378 {
20379 PyThreadState* __tstate = wxPyBeginAllowThreads();
20380 result = (wxListEvent *)new wxListEvent(arg1,arg2);
20381
20382 wxPyEndAllowThreads(__tstate);
20383 if (PyErr_Occurred()) SWIG_fail;
20384 }
20385 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxListEvent, 1);
20386 return resultobj;
20387 fail:
20388 return NULL;
20389 }
20390
20391
20392 static PyObject *_wrap_ListEvent_m_code_set(PyObject *self, PyObject *args, PyObject *kwargs) {
20393 PyObject *resultobj;
20394 wxListEvent *arg1 = (wxListEvent *) 0 ;
20395 int arg2 ;
20396 PyObject * obj0 = 0 ;
20397 PyObject * obj1 = 0 ;
20398 char *kwnames[] = {
20399 (char *) "self",(char *) "m_code", NULL
20400 };
20401
20402 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListEvent_m_code_set",kwnames,&obj0,&obj1)) goto fail;
20403 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20404 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20405 arg2 = (int) SWIG_AsInt(obj1);
20406 if (PyErr_Occurred()) SWIG_fail;
20407 if (arg1) (arg1)->m_code = arg2;
20408
20409 Py_INCREF(Py_None); resultobj = Py_None;
20410 return resultobj;
20411 fail:
20412 return NULL;
20413 }
20414
20415
20416 static PyObject *_wrap_ListEvent_m_code_get(PyObject *self, PyObject *args, PyObject *kwargs) {
20417 PyObject *resultobj;
20418 wxListEvent *arg1 = (wxListEvent *) 0 ;
20419 int result;
20420 PyObject * obj0 = 0 ;
20421 char *kwnames[] = {
20422 (char *) "self", NULL
20423 };
20424
20425 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_m_code_get",kwnames,&obj0)) goto fail;
20426 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20427 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20428 result = (int) ((arg1)->m_code);
20429
20430 resultobj = SWIG_FromInt((int)result);
20431 return resultobj;
20432 fail:
20433 return NULL;
20434 }
20435
20436
20437 static PyObject *_wrap_ListEvent_m_oldItemIndex_set(PyObject *self, PyObject *args, PyObject *kwargs) {
20438 PyObject *resultobj;
20439 wxListEvent *arg1 = (wxListEvent *) 0 ;
20440 long arg2 ;
20441 PyObject * obj0 = 0 ;
20442 PyObject * obj1 = 0 ;
20443 char *kwnames[] = {
20444 (char *) "self",(char *) "m_oldItemIndex", NULL
20445 };
20446
20447 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListEvent_m_oldItemIndex_set",kwnames,&obj0,&obj1)) goto fail;
20448 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20449 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20450 arg2 = (long) SWIG_AsLong(obj1);
20451 if (PyErr_Occurred()) SWIG_fail;
20452 if (arg1) (arg1)->m_oldItemIndex = arg2;
20453
20454 Py_INCREF(Py_None); resultobj = Py_None;
20455 return resultobj;
20456 fail:
20457 return NULL;
20458 }
20459
20460
20461 static PyObject *_wrap_ListEvent_m_oldItemIndex_get(PyObject *self, PyObject *args, PyObject *kwargs) {
20462 PyObject *resultobj;
20463 wxListEvent *arg1 = (wxListEvent *) 0 ;
20464 long result;
20465 PyObject * obj0 = 0 ;
20466 char *kwnames[] = {
20467 (char *) "self", NULL
20468 };
20469
20470 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_m_oldItemIndex_get",kwnames,&obj0)) goto fail;
20471 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20472 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20473 result = (long) ((arg1)->m_oldItemIndex);
20474
20475 resultobj = SWIG_FromLong((long)result);
20476 return resultobj;
20477 fail:
20478 return NULL;
20479 }
20480
20481
20482 static PyObject *_wrap_ListEvent_m_itemIndex_set(PyObject *self, PyObject *args, PyObject *kwargs) {
20483 PyObject *resultobj;
20484 wxListEvent *arg1 = (wxListEvent *) 0 ;
20485 long arg2 ;
20486 PyObject * obj0 = 0 ;
20487 PyObject * obj1 = 0 ;
20488 char *kwnames[] = {
20489 (char *) "self",(char *) "m_itemIndex", NULL
20490 };
20491
20492 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListEvent_m_itemIndex_set",kwnames,&obj0,&obj1)) goto fail;
20493 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20494 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20495 arg2 = (long) SWIG_AsLong(obj1);
20496 if (PyErr_Occurred()) SWIG_fail;
20497 if (arg1) (arg1)->m_itemIndex = arg2;
20498
20499 Py_INCREF(Py_None); resultobj = Py_None;
20500 return resultobj;
20501 fail:
20502 return NULL;
20503 }
20504
20505
20506 static PyObject *_wrap_ListEvent_m_itemIndex_get(PyObject *self, PyObject *args, PyObject *kwargs) {
20507 PyObject *resultobj;
20508 wxListEvent *arg1 = (wxListEvent *) 0 ;
20509 long result;
20510 PyObject * obj0 = 0 ;
20511 char *kwnames[] = {
20512 (char *) "self", NULL
20513 };
20514
20515 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_m_itemIndex_get",kwnames,&obj0)) goto fail;
20516 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20517 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20518 result = (long) ((arg1)->m_itemIndex);
20519
20520 resultobj = SWIG_FromLong((long)result);
20521 return resultobj;
20522 fail:
20523 return NULL;
20524 }
20525
20526
20527 static PyObject *_wrap_ListEvent_m_col_set(PyObject *self, PyObject *args, PyObject *kwargs) {
20528 PyObject *resultobj;
20529 wxListEvent *arg1 = (wxListEvent *) 0 ;
20530 int arg2 ;
20531 PyObject * obj0 = 0 ;
20532 PyObject * obj1 = 0 ;
20533 char *kwnames[] = {
20534 (char *) "self",(char *) "m_col", NULL
20535 };
20536
20537 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListEvent_m_col_set",kwnames,&obj0,&obj1)) goto fail;
20538 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20539 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20540 arg2 = (int) SWIG_AsInt(obj1);
20541 if (PyErr_Occurred()) SWIG_fail;
20542 if (arg1) (arg1)->m_col = arg2;
20543
20544 Py_INCREF(Py_None); resultobj = Py_None;
20545 return resultobj;
20546 fail:
20547 return NULL;
20548 }
20549
20550
20551 static PyObject *_wrap_ListEvent_m_col_get(PyObject *self, PyObject *args, PyObject *kwargs) {
20552 PyObject *resultobj;
20553 wxListEvent *arg1 = (wxListEvent *) 0 ;
20554 int result;
20555 PyObject * obj0 = 0 ;
20556 char *kwnames[] = {
20557 (char *) "self", NULL
20558 };
20559
20560 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_m_col_get",kwnames,&obj0)) goto fail;
20561 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20562 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20563 result = (int) ((arg1)->m_col);
20564
20565 resultobj = SWIG_FromInt((int)result);
20566 return resultobj;
20567 fail:
20568 return NULL;
20569 }
20570
20571
20572 static PyObject *_wrap_ListEvent_m_pointDrag_set(PyObject *self, PyObject *args, PyObject *kwargs) {
20573 PyObject *resultobj;
20574 wxListEvent *arg1 = (wxListEvent *) 0 ;
20575 wxPoint *arg2 = (wxPoint *) 0 ;
20576 PyObject * obj0 = 0 ;
20577 PyObject * obj1 = 0 ;
20578 char *kwnames[] = {
20579 (char *) "self",(char *) "m_pointDrag", NULL
20580 };
20581
20582 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListEvent_m_pointDrag_set",kwnames,&obj0,&obj1)) goto fail;
20583 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20584 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20585 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxPoint,
20586 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20587 if (arg1) (arg1)->m_pointDrag = *arg2;
20588
20589 Py_INCREF(Py_None); resultobj = Py_None;
20590 return resultobj;
20591 fail:
20592 return NULL;
20593 }
20594
20595
20596 static PyObject *_wrap_ListEvent_m_pointDrag_get(PyObject *self, PyObject *args, PyObject *kwargs) {
20597 PyObject *resultobj;
20598 wxListEvent *arg1 = (wxListEvent *) 0 ;
20599 wxPoint *result;
20600 PyObject * obj0 = 0 ;
20601 char *kwnames[] = {
20602 (char *) "self", NULL
20603 };
20604
20605 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_m_pointDrag_get",kwnames,&obj0)) goto fail;
20606 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20607 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20608 result = (wxPoint *)& ((arg1)->m_pointDrag);
20609
20610 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxPoint, 0);
20611 return resultobj;
20612 fail:
20613 return NULL;
20614 }
20615
20616
20617 static PyObject *_wrap_ListEvent_m_item_get(PyObject *self, PyObject *args, PyObject *kwargs) {
20618 PyObject *resultobj;
20619 wxListEvent *arg1 = (wxListEvent *) 0 ;
20620 wxListItem *result;
20621 PyObject * obj0 = 0 ;
20622 char *kwnames[] = {
20623 (char *) "self", NULL
20624 };
20625
20626 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_m_item_get",kwnames,&obj0)) goto fail;
20627 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20628 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20629 result = (wxListItem *)& ((arg1)->m_item);
20630
20631 {
20632 resultobj = wxPyMake_wxObject(result, 0);
20633 }
20634 return resultobj;
20635 fail:
20636 return NULL;
20637 }
20638
20639
20640 static PyObject *_wrap_ListEvent_GetKeyCode(PyObject *self, PyObject *args, PyObject *kwargs) {
20641 PyObject *resultobj;
20642 wxListEvent *arg1 = (wxListEvent *) 0 ;
20643 int result;
20644 PyObject * obj0 = 0 ;
20645 char *kwnames[] = {
20646 (char *) "self", NULL
20647 };
20648
20649 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_GetKeyCode",kwnames,&obj0)) goto fail;
20650 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20651 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20652 {
20653 PyThreadState* __tstate = wxPyBeginAllowThreads();
20654 result = (int)(arg1)->GetKeyCode();
20655
20656 wxPyEndAllowThreads(__tstate);
20657 if (PyErr_Occurred()) SWIG_fail;
20658 }
20659 resultobj = SWIG_FromInt((int)result);
20660 return resultobj;
20661 fail:
20662 return NULL;
20663 }
20664
20665
20666 static PyObject *_wrap_ListEvent_GetIndex(PyObject *self, PyObject *args, PyObject *kwargs) {
20667 PyObject *resultobj;
20668 wxListEvent *arg1 = (wxListEvent *) 0 ;
20669 long result;
20670 PyObject * obj0 = 0 ;
20671 char *kwnames[] = {
20672 (char *) "self", NULL
20673 };
20674
20675 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_GetIndex",kwnames,&obj0)) goto fail;
20676 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20677 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20678 {
20679 PyThreadState* __tstate = wxPyBeginAllowThreads();
20680 result = (long)(arg1)->GetIndex();
20681
20682 wxPyEndAllowThreads(__tstate);
20683 if (PyErr_Occurred()) SWIG_fail;
20684 }
20685 resultobj = SWIG_FromLong((long)result);
20686 return resultobj;
20687 fail:
20688 return NULL;
20689 }
20690
20691
20692 static PyObject *_wrap_ListEvent_GetColumn(PyObject *self, PyObject *args, PyObject *kwargs) {
20693 PyObject *resultobj;
20694 wxListEvent *arg1 = (wxListEvent *) 0 ;
20695 int result;
20696 PyObject * obj0 = 0 ;
20697 char *kwnames[] = {
20698 (char *) "self", NULL
20699 };
20700
20701 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_GetColumn",kwnames,&obj0)) goto fail;
20702 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20703 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20704 {
20705 PyThreadState* __tstate = wxPyBeginAllowThreads();
20706 result = (int)(arg1)->GetColumn();
20707
20708 wxPyEndAllowThreads(__tstate);
20709 if (PyErr_Occurred()) SWIG_fail;
20710 }
20711 resultobj = SWIG_FromInt((int)result);
20712 return resultobj;
20713 fail:
20714 return NULL;
20715 }
20716
20717
20718 static PyObject *_wrap_ListEvent_GetPoint(PyObject *self, PyObject *args, PyObject *kwargs) {
20719 PyObject *resultobj;
20720 wxListEvent *arg1 = (wxListEvent *) 0 ;
20721 wxPoint result;
20722 PyObject * obj0 = 0 ;
20723 char *kwnames[] = {
20724 (char *) "self", NULL
20725 };
20726
20727 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_GetPoint",kwnames,&obj0)) goto fail;
20728 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20729 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20730 {
20731 PyThreadState* __tstate = wxPyBeginAllowThreads();
20732 result = (arg1)->GetPoint();
20733
20734 wxPyEndAllowThreads(__tstate);
20735 if (PyErr_Occurred()) SWIG_fail;
20736 }
20737 {
20738 wxPoint * resultptr;
20739 resultptr = new wxPoint((wxPoint &) result);
20740 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxPoint, 1);
20741 }
20742 return resultobj;
20743 fail:
20744 return NULL;
20745 }
20746
20747
20748 static PyObject *_wrap_ListEvent_GetLabel(PyObject *self, PyObject *args, PyObject *kwargs) {
20749 PyObject *resultobj;
20750 wxListEvent *arg1 = (wxListEvent *) 0 ;
20751 wxString *result;
20752 PyObject * obj0 = 0 ;
20753 char *kwnames[] = {
20754 (char *) "self", NULL
20755 };
20756
20757 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_GetLabel",kwnames,&obj0)) goto fail;
20758 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20759 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20760 {
20761 PyThreadState* __tstate = wxPyBeginAllowThreads();
20762 {
20763 wxString const &_result_ref = (arg1)->GetLabel();
20764 result = (wxString *) &_result_ref;
20765 }
20766
20767 wxPyEndAllowThreads(__tstate);
20768 if (PyErr_Occurred()) SWIG_fail;
20769 }
20770 {
20771 #if wxUSE_UNICODE
20772 resultobj = PyUnicode_FromWideChar(result->c_str(), result->Len());
20773 #else
20774 resultobj = PyString_FromStringAndSize(result->c_str(), result->Len());
20775 #endif
20776 }
20777 return resultobj;
20778 fail:
20779 return NULL;
20780 }
20781
20782
20783 static PyObject *_wrap_ListEvent_GetText(PyObject *self, PyObject *args, PyObject *kwargs) {
20784 PyObject *resultobj;
20785 wxListEvent *arg1 = (wxListEvent *) 0 ;
20786 wxString *result;
20787 PyObject * obj0 = 0 ;
20788 char *kwnames[] = {
20789 (char *) "self", NULL
20790 };
20791
20792 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_GetText",kwnames,&obj0)) goto fail;
20793 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20794 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20795 {
20796 PyThreadState* __tstate = wxPyBeginAllowThreads();
20797 {
20798 wxString const &_result_ref = (arg1)->GetText();
20799 result = (wxString *) &_result_ref;
20800 }
20801
20802 wxPyEndAllowThreads(__tstate);
20803 if (PyErr_Occurred()) SWIG_fail;
20804 }
20805 {
20806 #if wxUSE_UNICODE
20807 resultobj = PyUnicode_FromWideChar(result->c_str(), result->Len());
20808 #else
20809 resultobj = PyString_FromStringAndSize(result->c_str(), result->Len());
20810 #endif
20811 }
20812 return resultobj;
20813 fail:
20814 return NULL;
20815 }
20816
20817
20818 static PyObject *_wrap_ListEvent_GetImage(PyObject *self, PyObject *args, PyObject *kwargs) {
20819 PyObject *resultobj;
20820 wxListEvent *arg1 = (wxListEvent *) 0 ;
20821 int result;
20822 PyObject * obj0 = 0 ;
20823 char *kwnames[] = {
20824 (char *) "self", NULL
20825 };
20826
20827 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_GetImage",kwnames,&obj0)) goto fail;
20828 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20829 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20830 {
20831 PyThreadState* __tstate = wxPyBeginAllowThreads();
20832 result = (int)(arg1)->GetImage();
20833
20834 wxPyEndAllowThreads(__tstate);
20835 if (PyErr_Occurred()) SWIG_fail;
20836 }
20837 resultobj = SWIG_FromInt((int)result);
20838 return resultobj;
20839 fail:
20840 return NULL;
20841 }
20842
20843
20844 static PyObject *_wrap_ListEvent_GetData(PyObject *self, PyObject *args, PyObject *kwargs) {
20845 PyObject *resultobj;
20846 wxListEvent *arg1 = (wxListEvent *) 0 ;
20847 long result;
20848 PyObject * obj0 = 0 ;
20849 char *kwnames[] = {
20850 (char *) "self", NULL
20851 };
20852
20853 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_GetData",kwnames,&obj0)) goto fail;
20854 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20855 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20856 {
20857 PyThreadState* __tstate = wxPyBeginAllowThreads();
20858 result = (long)(arg1)->GetData();
20859
20860 wxPyEndAllowThreads(__tstate);
20861 if (PyErr_Occurred()) SWIG_fail;
20862 }
20863 resultobj = SWIG_FromLong((long)result);
20864 return resultobj;
20865 fail:
20866 return NULL;
20867 }
20868
20869
20870 static PyObject *_wrap_ListEvent_GetMask(PyObject *self, PyObject *args, PyObject *kwargs) {
20871 PyObject *resultobj;
20872 wxListEvent *arg1 = (wxListEvent *) 0 ;
20873 long result;
20874 PyObject * obj0 = 0 ;
20875 char *kwnames[] = {
20876 (char *) "self", NULL
20877 };
20878
20879 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_GetMask",kwnames,&obj0)) goto fail;
20880 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20881 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20882 {
20883 PyThreadState* __tstate = wxPyBeginAllowThreads();
20884 result = (long)(arg1)->GetMask();
20885
20886 wxPyEndAllowThreads(__tstate);
20887 if (PyErr_Occurred()) SWIG_fail;
20888 }
20889 resultobj = SWIG_FromLong((long)result);
20890 return resultobj;
20891 fail:
20892 return NULL;
20893 }
20894
20895
20896 static PyObject *_wrap_ListEvent_GetItem(PyObject *self, PyObject *args, PyObject *kwargs) {
20897 PyObject *resultobj;
20898 wxListEvent *arg1 = (wxListEvent *) 0 ;
20899 wxListItem *result;
20900 PyObject * obj0 = 0 ;
20901 char *kwnames[] = {
20902 (char *) "self", NULL
20903 };
20904
20905 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_GetItem",kwnames,&obj0)) goto fail;
20906 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20907 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20908 {
20909 PyThreadState* __tstate = wxPyBeginAllowThreads();
20910 {
20911 wxListItem const &_result_ref = (arg1)->GetItem();
20912 result = (wxListItem *) &_result_ref;
20913 }
20914
20915 wxPyEndAllowThreads(__tstate);
20916 if (PyErr_Occurred()) SWIG_fail;
20917 }
20918 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxListItem, 0);
20919 return resultobj;
20920 fail:
20921 return NULL;
20922 }
20923
20924
20925 static PyObject *_wrap_ListEvent_GetCacheFrom(PyObject *self, PyObject *args, PyObject *kwargs) {
20926 PyObject *resultobj;
20927 wxListEvent *arg1 = (wxListEvent *) 0 ;
20928 long result;
20929 PyObject * obj0 = 0 ;
20930 char *kwnames[] = {
20931 (char *) "self", NULL
20932 };
20933
20934 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_GetCacheFrom",kwnames,&obj0)) goto fail;
20935 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20936 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20937 {
20938 PyThreadState* __tstate = wxPyBeginAllowThreads();
20939 result = (long)(arg1)->GetCacheFrom();
20940
20941 wxPyEndAllowThreads(__tstate);
20942 if (PyErr_Occurred()) SWIG_fail;
20943 }
20944 resultobj = SWIG_FromLong((long)result);
20945 return resultobj;
20946 fail:
20947 return NULL;
20948 }
20949
20950
20951 static PyObject *_wrap_ListEvent_GetCacheTo(PyObject *self, PyObject *args, PyObject *kwargs) {
20952 PyObject *resultobj;
20953 wxListEvent *arg1 = (wxListEvent *) 0 ;
20954 long result;
20955 PyObject * obj0 = 0 ;
20956 char *kwnames[] = {
20957 (char *) "self", NULL
20958 };
20959
20960 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_GetCacheTo",kwnames,&obj0)) goto fail;
20961 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20962 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20963 {
20964 PyThreadState* __tstate = wxPyBeginAllowThreads();
20965 result = (long)(arg1)->GetCacheTo();
20966
20967 wxPyEndAllowThreads(__tstate);
20968 if (PyErr_Occurred()) SWIG_fail;
20969 }
20970 resultobj = SWIG_FromLong((long)result);
20971 return resultobj;
20972 fail:
20973 return NULL;
20974 }
20975
20976
20977 static PyObject *_wrap_ListEvent_IsEditCancelled(PyObject *self, PyObject *args, PyObject *kwargs) {
20978 PyObject *resultobj;
20979 wxListEvent *arg1 = (wxListEvent *) 0 ;
20980 bool result;
20981 PyObject * obj0 = 0 ;
20982 char *kwnames[] = {
20983 (char *) "self", NULL
20984 };
20985
20986 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListEvent_IsEditCancelled",kwnames,&obj0)) goto fail;
20987 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
20988 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
20989 {
20990 PyThreadState* __tstate = wxPyBeginAllowThreads();
20991 result = (bool)((wxListEvent const *)arg1)->IsEditCancelled();
20992
20993 wxPyEndAllowThreads(__tstate);
20994 if (PyErr_Occurred()) SWIG_fail;
20995 }
20996 {
20997 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
20998 }
20999 return resultobj;
21000 fail:
21001 return NULL;
21002 }
21003
21004
21005 static PyObject *_wrap_ListEvent_SetEditCanceled(PyObject *self, PyObject *args, PyObject *kwargs) {
21006 PyObject *resultobj;
21007 wxListEvent *arg1 = (wxListEvent *) 0 ;
21008 bool arg2 ;
21009 PyObject * obj0 = 0 ;
21010 PyObject * obj1 = 0 ;
21011 char *kwnames[] = {
21012 (char *) "self",(char *) "editCancelled", NULL
21013 };
21014
21015 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListEvent_SetEditCanceled",kwnames,&obj0,&obj1)) goto fail;
21016 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListEvent,
21017 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21018 arg2 = (bool) SWIG_AsBool(obj1);
21019 if (PyErr_Occurred()) SWIG_fail;
21020 {
21021 PyThreadState* __tstate = wxPyBeginAllowThreads();
21022 (arg1)->SetEditCanceled(arg2);
21023
21024 wxPyEndAllowThreads(__tstate);
21025 if (PyErr_Occurred()) SWIG_fail;
21026 }
21027 Py_INCREF(Py_None); resultobj = Py_None;
21028 return resultobj;
21029 fail:
21030 return NULL;
21031 }
21032
21033
21034 static PyObject * ListEvent_swigregister(PyObject *self, PyObject *args) {
21035 PyObject *obj;
21036 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
21037 SWIG_TypeClientData(SWIGTYPE_p_wxListEvent, obj);
21038 Py_INCREF(obj);
21039 return Py_BuildValue((char *)"");
21040 }
21041 static PyObject *_wrap_new_ListCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
21042 PyObject *resultobj;
21043 wxWindow *arg1 = (wxWindow *) 0 ;
21044 int arg2 = (int) -1 ;
21045 wxPoint const &arg3_defvalue = wxDefaultPosition ;
21046 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
21047 wxSize const &arg4_defvalue = wxDefaultSize ;
21048 wxSize *arg4 = (wxSize *) &arg4_defvalue ;
21049 long arg5 = (long) wxLC_ICON ;
21050 wxValidator const &arg6_defvalue = wxDefaultValidator ;
21051 wxValidator *arg6 = (wxValidator *) &arg6_defvalue ;
21052 wxString const &arg7_defvalue = wxPyListCtrlNameStr ;
21053 wxString *arg7 = (wxString *) &arg7_defvalue ;
21054 wxPyListCtrl *result;
21055 wxPoint temp3 ;
21056 wxSize temp4 ;
21057 bool temp7 = False ;
21058 PyObject * obj0 = 0 ;
21059 PyObject * obj1 = 0 ;
21060 PyObject * obj2 = 0 ;
21061 PyObject * obj3 = 0 ;
21062 PyObject * obj4 = 0 ;
21063 PyObject * obj5 = 0 ;
21064 PyObject * obj6 = 0 ;
21065 char *kwnames[] = {
21066 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
21067 };
21068
21069 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOO:new_ListCtrl",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
21070 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
21071 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21072 if (obj1) {
21073 arg2 = (int) SWIG_AsInt(obj1);
21074 if (PyErr_Occurred()) SWIG_fail;
21075 }
21076 if (obj2) {
21077 {
21078 arg3 = &temp3;
21079 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
21080 }
21081 }
21082 if (obj3) {
21083 {
21084 arg4 = &temp4;
21085 if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
21086 }
21087 }
21088 if (obj4) {
21089 arg5 = (long) SWIG_AsLong(obj4);
21090 if (PyErr_Occurred()) SWIG_fail;
21091 }
21092 if (obj5) {
21093 if ((SWIG_ConvertPtr(obj5,(void **)(&arg6),SWIGTYPE_p_wxValidator,
21094 SWIG_POINTER_EXCEPTION | 0)) == -1)
21095 SWIG_fail;
21096 if (arg6 == NULL) {
21097 PyErr_SetString(PyExc_TypeError,"null reference");
21098 SWIG_fail;
21099 }
21100 }
21101 if (obj6) {
21102 {
21103 arg7 = wxString_in_helper(obj6);
21104 if (arg7 == NULL) SWIG_fail;
21105 temp7 = True;
21106 }
21107 }
21108 {
21109 if (!wxPyCheckForApp()) SWIG_fail;
21110 PyThreadState* __tstate = wxPyBeginAllowThreads();
21111 result = (wxPyListCtrl *)new wxPyListCtrl(arg1,arg2,(wxPoint const &)*arg3,(wxSize const &)*arg4,arg5,(wxValidator const &)*arg6,(wxString const &)*arg7);
21112
21113 wxPyEndAllowThreads(__tstate);
21114 if (PyErr_Occurred()) SWIG_fail;
21115 }
21116 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxPyListCtrl, 1);
21117 {
21118 if (temp7)
21119 delete arg7;
21120 }
21121 return resultobj;
21122 fail:
21123 {
21124 if (temp7)
21125 delete arg7;
21126 }
21127 return NULL;
21128 }
21129
21130
21131 static PyObject *_wrap_new_PreListCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
21132 PyObject *resultobj;
21133 wxPyListCtrl *result;
21134 char *kwnames[] = {
21135 NULL
21136 };
21137
21138 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreListCtrl",kwnames)) goto fail;
21139 {
21140 if (!wxPyCheckForApp()) SWIG_fail;
21141 PyThreadState* __tstate = wxPyBeginAllowThreads();
21142 result = (wxPyListCtrl *)new wxPyListCtrl();
21143
21144 wxPyEndAllowThreads(__tstate);
21145 if (PyErr_Occurred()) SWIG_fail;
21146 }
21147 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxPyListCtrl, 1);
21148 return resultobj;
21149 fail:
21150 return NULL;
21151 }
21152
21153
21154 static PyObject *_wrap_ListCtrl_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
21155 PyObject *resultobj;
21156 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21157 wxWindow *arg2 = (wxWindow *) 0 ;
21158 int arg3 = (int) -1 ;
21159 wxPoint const &arg4_defvalue = wxDefaultPosition ;
21160 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
21161 wxSize const &arg5_defvalue = wxDefaultSize ;
21162 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
21163 long arg6 = (long) wxLC_ICON ;
21164 wxValidator const &arg7_defvalue = wxDefaultValidator ;
21165 wxValidator *arg7 = (wxValidator *) &arg7_defvalue ;
21166 wxString const &arg8_defvalue = wxPyListCtrlNameStr ;
21167 wxString *arg8 = (wxString *) &arg8_defvalue ;
21168 bool result;
21169 wxPoint temp4 ;
21170 wxSize temp5 ;
21171 bool temp8 = False ;
21172 PyObject * obj0 = 0 ;
21173 PyObject * obj1 = 0 ;
21174 PyObject * obj2 = 0 ;
21175 PyObject * obj3 = 0 ;
21176 PyObject * obj4 = 0 ;
21177 PyObject * obj5 = 0 ;
21178 PyObject * obj6 = 0 ;
21179 PyObject * obj7 = 0 ;
21180 char *kwnames[] = {
21181 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
21182 };
21183
21184 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOO:ListCtrl_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
21185 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21186 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21187 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
21188 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21189 if (obj2) {
21190 arg3 = (int) SWIG_AsInt(obj2);
21191 if (PyErr_Occurred()) SWIG_fail;
21192 }
21193 if (obj3) {
21194 {
21195 arg4 = &temp4;
21196 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
21197 }
21198 }
21199 if (obj4) {
21200 {
21201 arg5 = &temp5;
21202 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
21203 }
21204 }
21205 if (obj5) {
21206 arg6 = (long) SWIG_AsLong(obj5);
21207 if (PyErr_Occurred()) SWIG_fail;
21208 }
21209 if (obj6) {
21210 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxValidator,
21211 SWIG_POINTER_EXCEPTION | 0)) == -1)
21212 SWIG_fail;
21213 if (arg7 == NULL) {
21214 PyErr_SetString(PyExc_TypeError,"null reference");
21215 SWIG_fail;
21216 }
21217 }
21218 if (obj7) {
21219 {
21220 arg8 = wxString_in_helper(obj7);
21221 if (arg8 == NULL) SWIG_fail;
21222 temp8 = True;
21223 }
21224 }
21225 {
21226 PyThreadState* __tstate = wxPyBeginAllowThreads();
21227 result = (bool)(arg1)->Create(arg2,arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxValidator const &)*arg7,(wxString const &)*arg8);
21228
21229 wxPyEndAllowThreads(__tstate);
21230 if (PyErr_Occurred()) SWIG_fail;
21231 }
21232 {
21233 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
21234 }
21235 {
21236 if (temp8)
21237 delete arg8;
21238 }
21239 return resultobj;
21240 fail:
21241 {
21242 if (temp8)
21243 delete arg8;
21244 }
21245 return NULL;
21246 }
21247
21248
21249 static PyObject *_wrap_ListCtrl__setCallbackInfo(PyObject *self, PyObject *args, PyObject *kwargs) {
21250 PyObject *resultobj;
21251 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21252 PyObject *arg2 = (PyObject *) 0 ;
21253 PyObject *arg3 = (PyObject *) 0 ;
21254 PyObject * obj0 = 0 ;
21255 PyObject * obj1 = 0 ;
21256 PyObject * obj2 = 0 ;
21257 char *kwnames[] = {
21258 (char *) "self",(char *) "self",(char *) "_class", NULL
21259 };
21260
21261 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl__setCallbackInfo",kwnames,&obj0,&obj1,&obj2)) goto fail;
21262 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21263 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21264 arg2 = obj1;
21265 arg3 = obj2;
21266 {
21267 PyThreadState* __tstate = wxPyBeginAllowThreads();
21268 (arg1)->_setCallbackInfo(arg2,arg3);
21269
21270 wxPyEndAllowThreads(__tstate);
21271 if (PyErr_Occurred()) SWIG_fail;
21272 }
21273 Py_INCREF(Py_None); resultobj = Py_None;
21274 return resultobj;
21275 fail:
21276 return NULL;
21277 }
21278
21279
21280 static PyObject *_wrap_ListCtrl_SetForegroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
21281 PyObject *resultobj;
21282 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21283 wxColour *arg2 = 0 ;
21284 bool result;
21285 wxColour temp2 ;
21286 PyObject * obj0 = 0 ;
21287 PyObject * obj1 = 0 ;
21288 char *kwnames[] = {
21289 (char *) "self",(char *) "col", NULL
21290 };
21291
21292 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_SetForegroundColour",kwnames,&obj0,&obj1)) goto fail;
21293 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21294 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21295 {
21296 arg2 = &temp2;
21297 if ( ! wxColour_helper(obj1, &arg2)) SWIG_fail;
21298 }
21299 {
21300 PyThreadState* __tstate = wxPyBeginAllowThreads();
21301 result = (bool)(arg1)->SetForegroundColour((wxColour const &)*arg2);
21302
21303 wxPyEndAllowThreads(__tstate);
21304 if (PyErr_Occurred()) SWIG_fail;
21305 }
21306 {
21307 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
21308 }
21309 return resultobj;
21310 fail:
21311 return NULL;
21312 }
21313
21314
21315 static PyObject *_wrap_ListCtrl_SetBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
21316 PyObject *resultobj;
21317 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21318 wxColour *arg2 = 0 ;
21319 bool result;
21320 wxColour temp2 ;
21321 PyObject * obj0 = 0 ;
21322 PyObject * obj1 = 0 ;
21323 char *kwnames[] = {
21324 (char *) "self",(char *) "col", NULL
21325 };
21326
21327 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_SetBackgroundColour",kwnames,&obj0,&obj1)) goto fail;
21328 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21329 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21330 {
21331 arg2 = &temp2;
21332 if ( ! wxColour_helper(obj1, &arg2)) SWIG_fail;
21333 }
21334 {
21335 PyThreadState* __tstate = wxPyBeginAllowThreads();
21336 result = (bool)(arg1)->SetBackgroundColour((wxColour const &)*arg2);
21337
21338 wxPyEndAllowThreads(__tstate);
21339 if (PyErr_Occurred()) SWIG_fail;
21340 }
21341 {
21342 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
21343 }
21344 return resultobj;
21345 fail:
21346 return NULL;
21347 }
21348
21349
21350 static PyObject *_wrap_ListCtrl_GetColumn(PyObject *self, PyObject *args, PyObject *kwargs) {
21351 PyObject *resultobj;
21352 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21353 int arg2 ;
21354 wxListItem *result;
21355 PyObject * obj0 = 0 ;
21356 PyObject * obj1 = 0 ;
21357 char *kwnames[] = {
21358 (char *) "self",(char *) "col", NULL
21359 };
21360
21361 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_GetColumn",kwnames,&obj0,&obj1)) goto fail;
21362 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21363 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21364 arg2 = (int) SWIG_AsInt(obj1);
21365 if (PyErr_Occurred()) SWIG_fail;
21366 {
21367 PyThreadState* __tstate = wxPyBeginAllowThreads();
21368 result = (wxListItem *)wxPyListCtrl_GetColumn(arg1,arg2);
21369
21370 wxPyEndAllowThreads(__tstate);
21371 if (PyErr_Occurred()) SWIG_fail;
21372 }
21373 {
21374 resultobj = wxPyMake_wxObject(result, 0);
21375 }
21376 return resultobj;
21377 fail:
21378 return NULL;
21379 }
21380
21381
21382 static PyObject *_wrap_ListCtrl_SetColumn(PyObject *self, PyObject *args, PyObject *kwargs) {
21383 PyObject *resultobj;
21384 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21385 int arg2 ;
21386 wxListItem *arg3 = 0 ;
21387 bool result;
21388 PyObject * obj0 = 0 ;
21389 PyObject * obj1 = 0 ;
21390 PyObject * obj2 = 0 ;
21391 char *kwnames[] = {
21392 (char *) "self",(char *) "col",(char *) "item", NULL
21393 };
21394
21395 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_SetColumn",kwnames,&obj0,&obj1,&obj2)) goto fail;
21396 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21397 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21398 arg2 = (int) SWIG_AsInt(obj1);
21399 if (PyErr_Occurred()) SWIG_fail;
21400 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxListItem,
21401 SWIG_POINTER_EXCEPTION | 0)) == -1)
21402 SWIG_fail;
21403 if (arg3 == NULL) {
21404 PyErr_SetString(PyExc_TypeError,"null reference");
21405 SWIG_fail;
21406 }
21407 {
21408 PyThreadState* __tstate = wxPyBeginAllowThreads();
21409 result = (bool)(arg1)->SetColumn(arg2,*arg3);
21410
21411 wxPyEndAllowThreads(__tstate);
21412 if (PyErr_Occurred()) SWIG_fail;
21413 }
21414 {
21415 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
21416 }
21417 return resultobj;
21418 fail:
21419 return NULL;
21420 }
21421
21422
21423 static PyObject *_wrap_ListCtrl_GetColumnWidth(PyObject *self, PyObject *args, PyObject *kwargs) {
21424 PyObject *resultobj;
21425 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21426 int arg2 ;
21427 int result;
21428 PyObject * obj0 = 0 ;
21429 PyObject * obj1 = 0 ;
21430 char *kwnames[] = {
21431 (char *) "self",(char *) "col", NULL
21432 };
21433
21434 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_GetColumnWidth",kwnames,&obj0,&obj1)) goto fail;
21435 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21436 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21437 arg2 = (int) SWIG_AsInt(obj1);
21438 if (PyErr_Occurred()) SWIG_fail;
21439 {
21440 PyThreadState* __tstate = wxPyBeginAllowThreads();
21441 result = (int)((wxPyListCtrl const *)arg1)->GetColumnWidth(arg2);
21442
21443 wxPyEndAllowThreads(__tstate);
21444 if (PyErr_Occurred()) SWIG_fail;
21445 }
21446 resultobj = SWIG_FromInt((int)result);
21447 return resultobj;
21448 fail:
21449 return NULL;
21450 }
21451
21452
21453 static PyObject *_wrap_ListCtrl_SetColumnWidth(PyObject *self, PyObject *args, PyObject *kwargs) {
21454 PyObject *resultobj;
21455 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21456 int arg2 ;
21457 int arg3 ;
21458 bool result;
21459 PyObject * obj0 = 0 ;
21460 PyObject * obj1 = 0 ;
21461 PyObject * obj2 = 0 ;
21462 char *kwnames[] = {
21463 (char *) "self",(char *) "col",(char *) "width", NULL
21464 };
21465
21466 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_SetColumnWidth",kwnames,&obj0,&obj1,&obj2)) goto fail;
21467 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21468 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21469 arg2 = (int) SWIG_AsInt(obj1);
21470 if (PyErr_Occurred()) SWIG_fail;
21471 arg3 = (int) SWIG_AsInt(obj2);
21472 if (PyErr_Occurred()) SWIG_fail;
21473 {
21474 PyThreadState* __tstate = wxPyBeginAllowThreads();
21475 result = (bool)(arg1)->SetColumnWidth(arg2,arg3);
21476
21477 wxPyEndAllowThreads(__tstate);
21478 if (PyErr_Occurred()) SWIG_fail;
21479 }
21480 {
21481 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
21482 }
21483 return resultobj;
21484 fail:
21485 return NULL;
21486 }
21487
21488
21489 static PyObject *_wrap_ListCtrl_GetCountPerPage(PyObject *self, PyObject *args, PyObject *kwargs) {
21490 PyObject *resultobj;
21491 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21492 int result;
21493 PyObject * obj0 = 0 ;
21494 char *kwnames[] = {
21495 (char *) "self", NULL
21496 };
21497
21498 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListCtrl_GetCountPerPage",kwnames,&obj0)) goto fail;
21499 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21500 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21501 {
21502 PyThreadState* __tstate = wxPyBeginAllowThreads();
21503 result = (int)((wxPyListCtrl const *)arg1)->GetCountPerPage();
21504
21505 wxPyEndAllowThreads(__tstate);
21506 if (PyErr_Occurred()) SWIG_fail;
21507 }
21508 resultobj = SWIG_FromInt((int)result);
21509 return resultobj;
21510 fail:
21511 return NULL;
21512 }
21513
21514
21515 static PyObject *_wrap_ListCtrl_GetViewRect(PyObject *self, PyObject *args, PyObject *kwargs) {
21516 PyObject *resultobj;
21517 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21518 wxRect result;
21519 PyObject * obj0 = 0 ;
21520 char *kwnames[] = {
21521 (char *) "self", NULL
21522 };
21523
21524 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListCtrl_GetViewRect",kwnames,&obj0)) goto fail;
21525 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21526 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21527 {
21528 PyThreadState* __tstate = wxPyBeginAllowThreads();
21529 result = ((wxPyListCtrl const *)arg1)->GetViewRect();
21530
21531 wxPyEndAllowThreads(__tstate);
21532 if (PyErr_Occurred()) SWIG_fail;
21533 }
21534 {
21535 wxRect * resultptr;
21536 resultptr = new wxRect((wxRect &) result);
21537 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxRect, 1);
21538 }
21539 return resultobj;
21540 fail:
21541 return NULL;
21542 }
21543
21544
21545 static PyObject *_wrap_ListCtrl_GetItem(PyObject *self, PyObject *args, PyObject *kwargs) {
21546 PyObject *resultobj;
21547 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21548 long arg2 ;
21549 int arg3 = (int) 0 ;
21550 wxListItem *result;
21551 PyObject * obj0 = 0 ;
21552 PyObject * obj1 = 0 ;
21553 PyObject * obj2 = 0 ;
21554 char *kwnames[] = {
21555 (char *) "self",(char *) "itemId",(char *) "col", NULL
21556 };
21557
21558 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:ListCtrl_GetItem",kwnames,&obj0,&obj1,&obj2)) goto fail;
21559 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21560 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21561 arg2 = (long) SWIG_AsLong(obj1);
21562 if (PyErr_Occurred()) SWIG_fail;
21563 if (obj2) {
21564 arg3 = (int) SWIG_AsInt(obj2);
21565 if (PyErr_Occurred()) SWIG_fail;
21566 }
21567 {
21568 PyThreadState* __tstate = wxPyBeginAllowThreads();
21569 result = (wxListItem *)wxPyListCtrl_GetItem(arg1,arg2,arg3);
21570
21571 wxPyEndAllowThreads(__tstate);
21572 if (PyErr_Occurred()) SWIG_fail;
21573 }
21574 {
21575 resultobj = wxPyMake_wxObject(result, 0);
21576 }
21577 return resultobj;
21578 fail:
21579 return NULL;
21580 }
21581
21582
21583 static PyObject *_wrap_ListCtrl_SetItem(PyObject *self, PyObject *args, PyObject *kwargs) {
21584 PyObject *resultobj;
21585 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21586 wxListItem *arg2 = 0 ;
21587 bool result;
21588 PyObject * obj0 = 0 ;
21589 PyObject * obj1 = 0 ;
21590 char *kwnames[] = {
21591 (char *) "self",(char *) "info", NULL
21592 };
21593
21594 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_SetItem",kwnames,&obj0,&obj1)) goto fail;
21595 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21596 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21597 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxListItem,
21598 SWIG_POINTER_EXCEPTION | 0)) == -1)
21599 SWIG_fail;
21600 if (arg2 == NULL) {
21601 PyErr_SetString(PyExc_TypeError,"null reference");
21602 SWIG_fail;
21603 }
21604 {
21605 PyThreadState* __tstate = wxPyBeginAllowThreads();
21606 result = (bool)(arg1)->SetItem(*arg2);
21607
21608 wxPyEndAllowThreads(__tstate);
21609 if (PyErr_Occurred()) SWIG_fail;
21610 }
21611 {
21612 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
21613 }
21614 return resultobj;
21615 fail:
21616 return NULL;
21617 }
21618
21619
21620 static PyObject *_wrap_ListCtrl_SetStringItem(PyObject *self, PyObject *args, PyObject *kwargs) {
21621 PyObject *resultobj;
21622 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21623 long arg2 ;
21624 int arg3 ;
21625 wxString *arg4 = 0 ;
21626 int arg5 = (int) -1 ;
21627 long result;
21628 bool temp4 = False ;
21629 PyObject * obj0 = 0 ;
21630 PyObject * obj1 = 0 ;
21631 PyObject * obj2 = 0 ;
21632 PyObject * obj3 = 0 ;
21633 PyObject * obj4 = 0 ;
21634 char *kwnames[] = {
21635 (char *) "self",(char *) "index",(char *) "col",(char *) "label",(char *) "imageId", NULL
21636 };
21637
21638 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO|O:ListCtrl_SetStringItem",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
21639 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21640 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21641 arg2 = (long) SWIG_AsLong(obj1);
21642 if (PyErr_Occurred()) SWIG_fail;
21643 arg3 = (int) SWIG_AsInt(obj2);
21644 if (PyErr_Occurred()) SWIG_fail;
21645 {
21646 arg4 = wxString_in_helper(obj3);
21647 if (arg4 == NULL) SWIG_fail;
21648 temp4 = True;
21649 }
21650 if (obj4) {
21651 arg5 = (int) SWIG_AsInt(obj4);
21652 if (PyErr_Occurred()) SWIG_fail;
21653 }
21654 {
21655 PyThreadState* __tstate = wxPyBeginAllowThreads();
21656 result = (long)(arg1)->SetItem(arg2,arg3,(wxString const &)*arg4,arg5);
21657
21658 wxPyEndAllowThreads(__tstate);
21659 if (PyErr_Occurred()) SWIG_fail;
21660 }
21661 resultobj = SWIG_FromLong((long)result);
21662 {
21663 if (temp4)
21664 delete arg4;
21665 }
21666 return resultobj;
21667 fail:
21668 {
21669 if (temp4)
21670 delete arg4;
21671 }
21672 return NULL;
21673 }
21674
21675
21676 static PyObject *_wrap_ListCtrl_GetItemState(PyObject *self, PyObject *args, PyObject *kwargs) {
21677 PyObject *resultobj;
21678 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21679 long arg2 ;
21680 long arg3 ;
21681 int result;
21682 PyObject * obj0 = 0 ;
21683 PyObject * obj1 = 0 ;
21684 PyObject * obj2 = 0 ;
21685 char *kwnames[] = {
21686 (char *) "self",(char *) "item",(char *) "stateMask", NULL
21687 };
21688
21689 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_GetItemState",kwnames,&obj0,&obj1,&obj2)) goto fail;
21690 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21691 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21692 arg2 = (long) SWIG_AsLong(obj1);
21693 if (PyErr_Occurred()) SWIG_fail;
21694 arg3 = (long) SWIG_AsLong(obj2);
21695 if (PyErr_Occurred()) SWIG_fail;
21696 {
21697 PyThreadState* __tstate = wxPyBeginAllowThreads();
21698 result = (int)((wxPyListCtrl const *)arg1)->GetItemState(arg2,arg3);
21699
21700 wxPyEndAllowThreads(__tstate);
21701 if (PyErr_Occurred()) SWIG_fail;
21702 }
21703 resultobj = SWIG_FromInt((int)result);
21704 return resultobj;
21705 fail:
21706 return NULL;
21707 }
21708
21709
21710 static PyObject *_wrap_ListCtrl_SetItemState(PyObject *self, PyObject *args, PyObject *kwargs) {
21711 PyObject *resultobj;
21712 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21713 long arg2 ;
21714 long arg3 ;
21715 long arg4 ;
21716 bool result;
21717 PyObject * obj0 = 0 ;
21718 PyObject * obj1 = 0 ;
21719 PyObject * obj2 = 0 ;
21720 PyObject * obj3 = 0 ;
21721 char *kwnames[] = {
21722 (char *) "self",(char *) "item",(char *) "state",(char *) "stateMask", NULL
21723 };
21724
21725 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO:ListCtrl_SetItemState",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
21726 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21727 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21728 arg2 = (long) SWIG_AsLong(obj1);
21729 if (PyErr_Occurred()) SWIG_fail;
21730 arg3 = (long) SWIG_AsLong(obj2);
21731 if (PyErr_Occurred()) SWIG_fail;
21732 arg4 = (long) SWIG_AsLong(obj3);
21733 if (PyErr_Occurred()) SWIG_fail;
21734 {
21735 PyThreadState* __tstate = wxPyBeginAllowThreads();
21736 result = (bool)(arg1)->SetItemState(arg2,arg3,arg4);
21737
21738 wxPyEndAllowThreads(__tstate);
21739 if (PyErr_Occurred()) SWIG_fail;
21740 }
21741 {
21742 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
21743 }
21744 return resultobj;
21745 fail:
21746 return NULL;
21747 }
21748
21749
21750 static PyObject *_wrap_ListCtrl_SetItemImage(PyObject *self, PyObject *args, PyObject *kwargs) {
21751 PyObject *resultobj;
21752 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21753 long arg2 ;
21754 int arg3 ;
21755 int arg4 ;
21756 bool result;
21757 PyObject * obj0 = 0 ;
21758 PyObject * obj1 = 0 ;
21759 PyObject * obj2 = 0 ;
21760 PyObject * obj3 = 0 ;
21761 char *kwnames[] = {
21762 (char *) "self",(char *) "item",(char *) "image",(char *) "selImage", NULL
21763 };
21764
21765 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO:ListCtrl_SetItemImage",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
21766 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21767 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21768 arg2 = (long) SWIG_AsLong(obj1);
21769 if (PyErr_Occurred()) SWIG_fail;
21770 arg3 = (int) SWIG_AsInt(obj2);
21771 if (PyErr_Occurred()) SWIG_fail;
21772 arg4 = (int) SWIG_AsInt(obj3);
21773 if (PyErr_Occurred()) SWIG_fail;
21774 {
21775 PyThreadState* __tstate = wxPyBeginAllowThreads();
21776 result = (bool)(arg1)->SetItemImage(arg2,arg3,arg4);
21777
21778 wxPyEndAllowThreads(__tstate);
21779 if (PyErr_Occurred()) SWIG_fail;
21780 }
21781 {
21782 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
21783 }
21784 return resultobj;
21785 fail:
21786 return NULL;
21787 }
21788
21789
21790 static PyObject *_wrap_ListCtrl_GetItemText(PyObject *self, PyObject *args, PyObject *kwargs) {
21791 PyObject *resultobj;
21792 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21793 long arg2 ;
21794 wxString result;
21795 PyObject * obj0 = 0 ;
21796 PyObject * obj1 = 0 ;
21797 char *kwnames[] = {
21798 (char *) "self",(char *) "item", NULL
21799 };
21800
21801 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_GetItemText",kwnames,&obj0,&obj1)) goto fail;
21802 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21803 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21804 arg2 = (long) SWIG_AsLong(obj1);
21805 if (PyErr_Occurred()) SWIG_fail;
21806 {
21807 PyThreadState* __tstate = wxPyBeginAllowThreads();
21808 result = ((wxPyListCtrl const *)arg1)->GetItemText(arg2);
21809
21810 wxPyEndAllowThreads(__tstate);
21811 if (PyErr_Occurred()) SWIG_fail;
21812 }
21813 {
21814 #if wxUSE_UNICODE
21815 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
21816 #else
21817 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
21818 #endif
21819 }
21820 return resultobj;
21821 fail:
21822 return NULL;
21823 }
21824
21825
21826 static PyObject *_wrap_ListCtrl_SetItemText(PyObject *self, PyObject *args, PyObject *kwargs) {
21827 PyObject *resultobj;
21828 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21829 long arg2 ;
21830 wxString *arg3 = 0 ;
21831 bool temp3 = False ;
21832 PyObject * obj0 = 0 ;
21833 PyObject * obj1 = 0 ;
21834 PyObject * obj2 = 0 ;
21835 char *kwnames[] = {
21836 (char *) "self",(char *) "item",(char *) "str", NULL
21837 };
21838
21839 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_SetItemText",kwnames,&obj0,&obj1,&obj2)) goto fail;
21840 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21841 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21842 arg2 = (long) SWIG_AsLong(obj1);
21843 if (PyErr_Occurred()) SWIG_fail;
21844 {
21845 arg3 = wxString_in_helper(obj2);
21846 if (arg3 == NULL) SWIG_fail;
21847 temp3 = True;
21848 }
21849 {
21850 PyThreadState* __tstate = wxPyBeginAllowThreads();
21851 (arg1)->SetItemText(arg2,(wxString const &)*arg3);
21852
21853 wxPyEndAllowThreads(__tstate);
21854 if (PyErr_Occurred()) SWIG_fail;
21855 }
21856 Py_INCREF(Py_None); resultobj = Py_None;
21857 {
21858 if (temp3)
21859 delete arg3;
21860 }
21861 return resultobj;
21862 fail:
21863 {
21864 if (temp3)
21865 delete arg3;
21866 }
21867 return NULL;
21868 }
21869
21870
21871 static PyObject *_wrap_ListCtrl_GetItemData(PyObject *self, PyObject *args, PyObject *kwargs) {
21872 PyObject *resultobj;
21873 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21874 long arg2 ;
21875 long result;
21876 PyObject * obj0 = 0 ;
21877 PyObject * obj1 = 0 ;
21878 char *kwnames[] = {
21879 (char *) "self",(char *) "item", NULL
21880 };
21881
21882 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_GetItemData",kwnames,&obj0,&obj1)) goto fail;
21883 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21884 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21885 arg2 = (long) SWIG_AsLong(obj1);
21886 if (PyErr_Occurred()) SWIG_fail;
21887 {
21888 PyThreadState* __tstate = wxPyBeginAllowThreads();
21889 result = (long)((wxPyListCtrl const *)arg1)->GetItemData(arg2);
21890
21891 wxPyEndAllowThreads(__tstate);
21892 if (PyErr_Occurred()) SWIG_fail;
21893 }
21894 resultobj = SWIG_FromLong((long)result);
21895 return resultobj;
21896 fail:
21897 return NULL;
21898 }
21899
21900
21901 static PyObject *_wrap_ListCtrl_SetItemData(PyObject *self, PyObject *args, PyObject *kwargs) {
21902 PyObject *resultobj;
21903 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21904 long arg2 ;
21905 long arg3 ;
21906 bool result;
21907 PyObject * obj0 = 0 ;
21908 PyObject * obj1 = 0 ;
21909 PyObject * obj2 = 0 ;
21910 char *kwnames[] = {
21911 (char *) "self",(char *) "item",(char *) "data", NULL
21912 };
21913
21914 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_SetItemData",kwnames,&obj0,&obj1,&obj2)) goto fail;
21915 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21916 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21917 arg2 = (long) SWIG_AsLong(obj1);
21918 if (PyErr_Occurred()) SWIG_fail;
21919 arg3 = (long) SWIG_AsLong(obj2);
21920 if (PyErr_Occurred()) SWIG_fail;
21921 {
21922 PyThreadState* __tstate = wxPyBeginAllowThreads();
21923 result = (bool)(arg1)->SetItemData(arg2,arg3);
21924
21925 wxPyEndAllowThreads(__tstate);
21926 if (PyErr_Occurred()) SWIG_fail;
21927 }
21928 {
21929 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
21930 }
21931 return resultobj;
21932 fail:
21933 return NULL;
21934 }
21935
21936
21937 static PyObject *_wrap_ListCtrl_GetItemPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
21938 PyObject *resultobj;
21939 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21940 long arg2 ;
21941 wxPoint result;
21942 PyObject * obj0 = 0 ;
21943 PyObject * obj1 = 0 ;
21944 char *kwnames[] = {
21945 (char *) "self",(char *) "item", NULL
21946 };
21947
21948 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_GetItemPosition",kwnames,&obj0,&obj1)) goto fail;
21949 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21950 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21951 arg2 = (long) SWIG_AsLong(obj1);
21952 if (PyErr_Occurred()) SWIG_fail;
21953 {
21954 PyThreadState* __tstate = wxPyBeginAllowThreads();
21955 result = wxPyListCtrl_GetItemPosition(arg1,arg2);
21956
21957 wxPyEndAllowThreads(__tstate);
21958 if (PyErr_Occurred()) SWIG_fail;
21959 }
21960 {
21961 wxPoint * resultptr;
21962 resultptr = new wxPoint((wxPoint &) result);
21963 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxPoint, 1);
21964 }
21965 return resultobj;
21966 fail:
21967 return NULL;
21968 }
21969
21970
21971 static PyObject *_wrap_ListCtrl_GetItemRect(PyObject *self, PyObject *args, PyObject *kwargs) {
21972 PyObject *resultobj;
21973 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
21974 long arg2 ;
21975 int arg3 = (int) wxLIST_RECT_BOUNDS ;
21976 wxRect result;
21977 PyObject * obj0 = 0 ;
21978 PyObject * obj1 = 0 ;
21979 PyObject * obj2 = 0 ;
21980 char *kwnames[] = {
21981 (char *) "self",(char *) "item",(char *) "code", NULL
21982 };
21983
21984 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:ListCtrl_GetItemRect",kwnames,&obj0,&obj1,&obj2)) goto fail;
21985 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
21986 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
21987 arg2 = (long) SWIG_AsLong(obj1);
21988 if (PyErr_Occurred()) SWIG_fail;
21989 if (obj2) {
21990 arg3 = (int) SWIG_AsInt(obj2);
21991 if (PyErr_Occurred()) SWIG_fail;
21992 }
21993 {
21994 PyThreadState* __tstate = wxPyBeginAllowThreads();
21995 result = wxPyListCtrl_GetItemRect(arg1,arg2,arg3);
21996
21997 wxPyEndAllowThreads(__tstate);
21998 if (PyErr_Occurred()) SWIG_fail;
21999 }
22000 {
22001 wxRect * resultptr;
22002 resultptr = new wxRect((wxRect &) result);
22003 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxRect, 1);
22004 }
22005 return resultobj;
22006 fail:
22007 return NULL;
22008 }
22009
22010
22011 static PyObject *_wrap_ListCtrl_SetItemPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
22012 PyObject *resultobj;
22013 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22014 long arg2 ;
22015 wxPoint *arg3 = 0 ;
22016 bool result;
22017 wxPoint temp3 ;
22018 PyObject * obj0 = 0 ;
22019 PyObject * obj1 = 0 ;
22020 PyObject * obj2 = 0 ;
22021 char *kwnames[] = {
22022 (char *) "self",(char *) "item",(char *) "pos", NULL
22023 };
22024
22025 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_SetItemPosition",kwnames,&obj0,&obj1,&obj2)) goto fail;
22026 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22027 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22028 arg2 = (long) SWIG_AsLong(obj1);
22029 if (PyErr_Occurred()) SWIG_fail;
22030 {
22031 arg3 = &temp3;
22032 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
22033 }
22034 {
22035 PyThreadState* __tstate = wxPyBeginAllowThreads();
22036 result = (bool)(arg1)->SetItemPosition(arg2,(wxPoint const &)*arg3);
22037
22038 wxPyEndAllowThreads(__tstate);
22039 if (PyErr_Occurred()) SWIG_fail;
22040 }
22041 {
22042 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
22043 }
22044 return resultobj;
22045 fail:
22046 return NULL;
22047 }
22048
22049
22050 static PyObject *_wrap_ListCtrl_GetItemCount(PyObject *self, PyObject *args, PyObject *kwargs) {
22051 PyObject *resultobj;
22052 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22053 int result;
22054 PyObject * obj0 = 0 ;
22055 char *kwnames[] = {
22056 (char *) "self", NULL
22057 };
22058
22059 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListCtrl_GetItemCount",kwnames,&obj0)) goto fail;
22060 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22061 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22062 {
22063 PyThreadState* __tstate = wxPyBeginAllowThreads();
22064 result = (int)((wxPyListCtrl const *)arg1)->GetItemCount();
22065
22066 wxPyEndAllowThreads(__tstate);
22067 if (PyErr_Occurred()) SWIG_fail;
22068 }
22069 resultobj = SWIG_FromInt((int)result);
22070 return resultobj;
22071 fail:
22072 return NULL;
22073 }
22074
22075
22076 static PyObject *_wrap_ListCtrl_GetColumnCount(PyObject *self, PyObject *args, PyObject *kwargs) {
22077 PyObject *resultobj;
22078 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22079 int result;
22080 PyObject * obj0 = 0 ;
22081 char *kwnames[] = {
22082 (char *) "self", NULL
22083 };
22084
22085 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListCtrl_GetColumnCount",kwnames,&obj0)) goto fail;
22086 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22087 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22088 {
22089 PyThreadState* __tstate = wxPyBeginAllowThreads();
22090 result = (int)((wxPyListCtrl const *)arg1)->GetColumnCount();
22091
22092 wxPyEndAllowThreads(__tstate);
22093 if (PyErr_Occurred()) SWIG_fail;
22094 }
22095 resultobj = SWIG_FromInt((int)result);
22096 return resultobj;
22097 fail:
22098 return NULL;
22099 }
22100
22101
22102 static PyObject *_wrap_ListCtrl_GetItemSpacing(PyObject *self, PyObject *args, PyObject *kwargs) {
22103 PyObject *resultobj;
22104 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22105 wxSize result;
22106 PyObject * obj0 = 0 ;
22107 char *kwnames[] = {
22108 (char *) "self", NULL
22109 };
22110
22111 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListCtrl_GetItemSpacing",kwnames,&obj0)) goto fail;
22112 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22113 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22114 {
22115 PyThreadState* __tstate = wxPyBeginAllowThreads();
22116 result = ((wxPyListCtrl const *)arg1)->GetItemSpacing();
22117
22118 wxPyEndAllowThreads(__tstate);
22119 if (PyErr_Occurred()) SWIG_fail;
22120 }
22121 {
22122 wxSize * resultptr;
22123 resultptr = new wxSize((wxSize &) result);
22124 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
22125 }
22126 return resultobj;
22127 fail:
22128 return NULL;
22129 }
22130
22131
22132 static PyObject *_wrap_ListCtrl_SetItemSpacing(PyObject *self, PyObject *args, PyObject *kwargs) {
22133 PyObject *resultobj;
22134 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22135 int arg2 ;
22136 bool arg3 = (bool) False ;
22137 PyObject * obj0 = 0 ;
22138 PyObject * obj1 = 0 ;
22139 PyObject * obj2 = 0 ;
22140 char *kwnames[] = {
22141 (char *) "self",(char *) "spacing",(char *) "isSmall", NULL
22142 };
22143
22144 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:ListCtrl_SetItemSpacing",kwnames,&obj0,&obj1,&obj2)) goto fail;
22145 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22146 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22147 arg2 = (int) SWIG_AsInt(obj1);
22148 if (PyErr_Occurred()) SWIG_fail;
22149 if (obj2) {
22150 arg3 = (bool) SWIG_AsBool(obj2);
22151 if (PyErr_Occurred()) SWIG_fail;
22152 }
22153 {
22154 PyThreadState* __tstate = wxPyBeginAllowThreads();
22155 (arg1)->SetItemSpacing(arg2,arg3);
22156
22157 wxPyEndAllowThreads(__tstate);
22158 if (PyErr_Occurred()) SWIG_fail;
22159 }
22160 Py_INCREF(Py_None); resultobj = Py_None;
22161 return resultobj;
22162 fail:
22163 return NULL;
22164 }
22165
22166
22167 static PyObject *_wrap_ListCtrl_GetSelectedItemCount(PyObject *self, PyObject *args, PyObject *kwargs) {
22168 PyObject *resultobj;
22169 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22170 int result;
22171 PyObject * obj0 = 0 ;
22172 char *kwnames[] = {
22173 (char *) "self", NULL
22174 };
22175
22176 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListCtrl_GetSelectedItemCount",kwnames,&obj0)) goto fail;
22177 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22178 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22179 {
22180 PyThreadState* __tstate = wxPyBeginAllowThreads();
22181 result = (int)((wxPyListCtrl const *)arg1)->GetSelectedItemCount();
22182
22183 wxPyEndAllowThreads(__tstate);
22184 if (PyErr_Occurred()) SWIG_fail;
22185 }
22186 resultobj = SWIG_FromInt((int)result);
22187 return resultobj;
22188 fail:
22189 return NULL;
22190 }
22191
22192
22193 static PyObject *_wrap_ListCtrl_GetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) {
22194 PyObject *resultobj;
22195 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22196 wxColour result;
22197 PyObject * obj0 = 0 ;
22198 char *kwnames[] = {
22199 (char *) "self", NULL
22200 };
22201
22202 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListCtrl_GetTextColour",kwnames,&obj0)) goto fail;
22203 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22204 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22205 {
22206 PyThreadState* __tstate = wxPyBeginAllowThreads();
22207 result = ((wxPyListCtrl const *)arg1)->GetTextColour();
22208
22209 wxPyEndAllowThreads(__tstate);
22210 if (PyErr_Occurred()) SWIG_fail;
22211 }
22212 {
22213 wxColour * resultptr;
22214 resultptr = new wxColour((wxColour &) result);
22215 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxColour, 1);
22216 }
22217 return resultobj;
22218 fail:
22219 return NULL;
22220 }
22221
22222
22223 static PyObject *_wrap_ListCtrl_SetTextColour(PyObject *self, PyObject *args, PyObject *kwargs) {
22224 PyObject *resultobj;
22225 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22226 wxColour *arg2 = 0 ;
22227 wxColour temp2 ;
22228 PyObject * obj0 = 0 ;
22229 PyObject * obj1 = 0 ;
22230 char *kwnames[] = {
22231 (char *) "self",(char *) "col", NULL
22232 };
22233
22234 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_SetTextColour",kwnames,&obj0,&obj1)) goto fail;
22235 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22236 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22237 {
22238 arg2 = &temp2;
22239 if ( ! wxColour_helper(obj1, &arg2)) SWIG_fail;
22240 }
22241 {
22242 PyThreadState* __tstate = wxPyBeginAllowThreads();
22243 (arg1)->SetTextColour((wxColour const &)*arg2);
22244
22245 wxPyEndAllowThreads(__tstate);
22246 if (PyErr_Occurred()) SWIG_fail;
22247 }
22248 Py_INCREF(Py_None); resultobj = Py_None;
22249 return resultobj;
22250 fail:
22251 return NULL;
22252 }
22253
22254
22255 static PyObject *_wrap_ListCtrl_GetTopItem(PyObject *self, PyObject *args, PyObject *kwargs) {
22256 PyObject *resultobj;
22257 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22258 long result;
22259 PyObject * obj0 = 0 ;
22260 char *kwnames[] = {
22261 (char *) "self", NULL
22262 };
22263
22264 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListCtrl_GetTopItem",kwnames,&obj0)) goto fail;
22265 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22266 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22267 {
22268 PyThreadState* __tstate = wxPyBeginAllowThreads();
22269 result = (long)((wxPyListCtrl const *)arg1)->GetTopItem();
22270
22271 wxPyEndAllowThreads(__tstate);
22272 if (PyErr_Occurred()) SWIG_fail;
22273 }
22274 resultobj = SWIG_FromLong((long)result);
22275 return resultobj;
22276 fail:
22277 return NULL;
22278 }
22279
22280
22281 static PyObject *_wrap_ListCtrl_SetSingleStyle(PyObject *self, PyObject *args, PyObject *kwargs) {
22282 PyObject *resultobj;
22283 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22284 long arg2 ;
22285 bool arg3 = (bool) True ;
22286 PyObject * obj0 = 0 ;
22287 PyObject * obj1 = 0 ;
22288 PyObject * obj2 = 0 ;
22289 char *kwnames[] = {
22290 (char *) "self",(char *) "style",(char *) "add", NULL
22291 };
22292
22293 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:ListCtrl_SetSingleStyle",kwnames,&obj0,&obj1,&obj2)) goto fail;
22294 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22295 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22296 arg2 = (long) SWIG_AsLong(obj1);
22297 if (PyErr_Occurred()) SWIG_fail;
22298 if (obj2) {
22299 arg3 = (bool) SWIG_AsBool(obj2);
22300 if (PyErr_Occurred()) SWIG_fail;
22301 }
22302 {
22303 PyThreadState* __tstate = wxPyBeginAllowThreads();
22304 (arg1)->SetSingleStyle(arg2,arg3);
22305
22306 wxPyEndAllowThreads(__tstate);
22307 if (PyErr_Occurred()) SWIG_fail;
22308 }
22309 Py_INCREF(Py_None); resultobj = Py_None;
22310 return resultobj;
22311 fail:
22312 return NULL;
22313 }
22314
22315
22316 static PyObject *_wrap_ListCtrl_SetWindowStyleFlag(PyObject *self, PyObject *args, PyObject *kwargs) {
22317 PyObject *resultobj;
22318 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22319 long arg2 ;
22320 PyObject * obj0 = 0 ;
22321 PyObject * obj1 = 0 ;
22322 char *kwnames[] = {
22323 (char *) "self",(char *) "style", NULL
22324 };
22325
22326 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_SetWindowStyleFlag",kwnames,&obj0,&obj1)) goto fail;
22327 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22328 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22329 arg2 = (long) SWIG_AsLong(obj1);
22330 if (PyErr_Occurred()) SWIG_fail;
22331 {
22332 PyThreadState* __tstate = wxPyBeginAllowThreads();
22333 (arg1)->SetWindowStyleFlag(arg2);
22334
22335 wxPyEndAllowThreads(__tstate);
22336 if (PyErr_Occurred()) SWIG_fail;
22337 }
22338 Py_INCREF(Py_None); resultobj = Py_None;
22339 return resultobj;
22340 fail:
22341 return NULL;
22342 }
22343
22344
22345 static PyObject *_wrap_ListCtrl_GetNextItem(PyObject *self, PyObject *args, PyObject *kwargs) {
22346 PyObject *resultobj;
22347 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22348 long arg2 ;
22349 int arg3 = (int) wxLIST_NEXT_ALL ;
22350 int arg4 = (int) wxLIST_STATE_DONTCARE ;
22351 long result;
22352 PyObject * obj0 = 0 ;
22353 PyObject * obj1 = 0 ;
22354 PyObject * obj2 = 0 ;
22355 PyObject * obj3 = 0 ;
22356 char *kwnames[] = {
22357 (char *) "self",(char *) "item",(char *) "geometry",(char *) "state", NULL
22358 };
22359
22360 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OO:ListCtrl_GetNextItem",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
22361 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22362 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22363 arg2 = (long) SWIG_AsLong(obj1);
22364 if (PyErr_Occurred()) SWIG_fail;
22365 if (obj2) {
22366 arg3 = (int) SWIG_AsInt(obj2);
22367 if (PyErr_Occurred()) SWIG_fail;
22368 }
22369 if (obj3) {
22370 arg4 = (int) SWIG_AsInt(obj3);
22371 if (PyErr_Occurred()) SWIG_fail;
22372 }
22373 {
22374 PyThreadState* __tstate = wxPyBeginAllowThreads();
22375 result = (long)((wxPyListCtrl const *)arg1)->GetNextItem(arg2,arg3,arg4);
22376
22377 wxPyEndAllowThreads(__tstate);
22378 if (PyErr_Occurred()) SWIG_fail;
22379 }
22380 resultobj = SWIG_FromLong((long)result);
22381 return resultobj;
22382 fail:
22383 return NULL;
22384 }
22385
22386
22387 static PyObject *_wrap_ListCtrl_GetImageList(PyObject *self, PyObject *args, PyObject *kwargs) {
22388 PyObject *resultobj;
22389 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22390 int arg2 ;
22391 wxImageList *result;
22392 PyObject * obj0 = 0 ;
22393 PyObject * obj1 = 0 ;
22394 char *kwnames[] = {
22395 (char *) "self",(char *) "which", NULL
22396 };
22397
22398 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_GetImageList",kwnames,&obj0,&obj1)) goto fail;
22399 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22400 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22401 arg2 = (int) SWIG_AsInt(obj1);
22402 if (PyErr_Occurred()) SWIG_fail;
22403 {
22404 PyThreadState* __tstate = wxPyBeginAllowThreads();
22405 result = (wxImageList *)((wxPyListCtrl const *)arg1)->GetImageList(arg2);
22406
22407 wxPyEndAllowThreads(__tstate);
22408 if (PyErr_Occurred()) SWIG_fail;
22409 }
22410 {
22411 resultobj = wxPyMake_wxObject(result, 0);
22412 }
22413 return resultobj;
22414 fail:
22415 return NULL;
22416 }
22417
22418
22419 static PyObject *_wrap_ListCtrl_SetImageList(PyObject *self, PyObject *args, PyObject *kwargs) {
22420 PyObject *resultobj;
22421 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22422 wxImageList *arg2 = (wxImageList *) 0 ;
22423 int arg3 ;
22424 PyObject * obj0 = 0 ;
22425 PyObject * obj1 = 0 ;
22426 PyObject * obj2 = 0 ;
22427 char *kwnames[] = {
22428 (char *) "self",(char *) "imageList",(char *) "which", NULL
22429 };
22430
22431 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_SetImageList",kwnames,&obj0,&obj1,&obj2)) goto fail;
22432 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22433 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22434 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxImageList,
22435 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22436 arg3 = (int) SWIG_AsInt(obj2);
22437 if (PyErr_Occurred()) SWIG_fail;
22438 {
22439 PyThreadState* __tstate = wxPyBeginAllowThreads();
22440 (arg1)->SetImageList(arg2,arg3);
22441
22442 wxPyEndAllowThreads(__tstate);
22443 if (PyErr_Occurred()) SWIG_fail;
22444 }
22445 Py_INCREF(Py_None); resultobj = Py_None;
22446 return resultobj;
22447 fail:
22448 return NULL;
22449 }
22450
22451
22452 static PyObject *_wrap_ListCtrl_AssignImageList(PyObject *self, PyObject *args, PyObject *kwargs) {
22453 PyObject *resultobj;
22454 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22455 wxImageList *arg2 = (wxImageList *) 0 ;
22456 int arg3 ;
22457 PyObject * obj0 = 0 ;
22458 PyObject * obj1 = 0 ;
22459 PyObject * obj2 = 0 ;
22460 char *kwnames[] = {
22461 (char *) "self",(char *) "imageList",(char *) "which", NULL
22462 };
22463
22464 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_AssignImageList",kwnames,&obj0,&obj1,&obj2)) goto fail;
22465 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22466 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22467 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxImageList,
22468 SWIG_POINTER_EXCEPTION | SWIG_POINTER_DISOWN)) == -1) SWIG_fail;
22469 arg3 = (int) SWIG_AsInt(obj2);
22470 if (PyErr_Occurred()) SWIG_fail;
22471 {
22472 PyThreadState* __tstate = wxPyBeginAllowThreads();
22473 (arg1)->AssignImageList(arg2,arg3);
22474
22475 wxPyEndAllowThreads(__tstate);
22476 if (PyErr_Occurred()) SWIG_fail;
22477 }
22478 Py_INCREF(Py_None); resultobj = Py_None;
22479 return resultobj;
22480 fail:
22481 return NULL;
22482 }
22483
22484
22485 static PyObject *_wrap_ListCtrl_InReportView(PyObject *self, PyObject *args, PyObject *kwargs) {
22486 PyObject *resultobj;
22487 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22488 bool result;
22489 PyObject * obj0 = 0 ;
22490 char *kwnames[] = {
22491 (char *) "self", NULL
22492 };
22493
22494 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListCtrl_InReportView",kwnames,&obj0)) goto fail;
22495 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22496 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22497 {
22498 PyThreadState* __tstate = wxPyBeginAllowThreads();
22499 result = (bool)((wxPyListCtrl const *)arg1)->InReportView();
22500
22501 wxPyEndAllowThreads(__tstate);
22502 if (PyErr_Occurred()) SWIG_fail;
22503 }
22504 {
22505 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
22506 }
22507 return resultobj;
22508 fail:
22509 return NULL;
22510 }
22511
22512
22513 static PyObject *_wrap_ListCtrl_IsVirtual(PyObject *self, PyObject *args, PyObject *kwargs) {
22514 PyObject *resultobj;
22515 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22516 bool result;
22517 PyObject * obj0 = 0 ;
22518 char *kwnames[] = {
22519 (char *) "self", NULL
22520 };
22521
22522 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListCtrl_IsVirtual",kwnames,&obj0)) goto fail;
22523 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22524 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22525 {
22526 PyThreadState* __tstate = wxPyBeginAllowThreads();
22527 result = (bool)((wxPyListCtrl const *)arg1)->IsVirtual();
22528
22529 wxPyEndAllowThreads(__tstate);
22530 if (PyErr_Occurred()) SWIG_fail;
22531 }
22532 {
22533 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
22534 }
22535 return resultobj;
22536 fail:
22537 return NULL;
22538 }
22539
22540
22541 static PyObject *_wrap_ListCtrl_RefreshItem(PyObject *self, PyObject *args, PyObject *kwargs) {
22542 PyObject *resultobj;
22543 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22544 long arg2 ;
22545 PyObject * obj0 = 0 ;
22546 PyObject * obj1 = 0 ;
22547 char *kwnames[] = {
22548 (char *) "self",(char *) "item", NULL
22549 };
22550
22551 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_RefreshItem",kwnames,&obj0,&obj1)) goto fail;
22552 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22553 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22554 arg2 = (long) SWIG_AsLong(obj1);
22555 if (PyErr_Occurred()) SWIG_fail;
22556 {
22557 PyThreadState* __tstate = wxPyBeginAllowThreads();
22558 (arg1)->RefreshItem(arg2);
22559
22560 wxPyEndAllowThreads(__tstate);
22561 if (PyErr_Occurred()) SWIG_fail;
22562 }
22563 Py_INCREF(Py_None); resultobj = Py_None;
22564 return resultobj;
22565 fail:
22566 return NULL;
22567 }
22568
22569
22570 static PyObject *_wrap_ListCtrl_RefreshItems(PyObject *self, PyObject *args, PyObject *kwargs) {
22571 PyObject *resultobj;
22572 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22573 long arg2 ;
22574 long arg3 ;
22575 PyObject * obj0 = 0 ;
22576 PyObject * obj1 = 0 ;
22577 PyObject * obj2 = 0 ;
22578 char *kwnames[] = {
22579 (char *) "self",(char *) "itemFrom",(char *) "itemTo", NULL
22580 };
22581
22582 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_RefreshItems",kwnames,&obj0,&obj1,&obj2)) goto fail;
22583 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22584 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22585 arg2 = (long) SWIG_AsLong(obj1);
22586 if (PyErr_Occurred()) SWIG_fail;
22587 arg3 = (long) SWIG_AsLong(obj2);
22588 if (PyErr_Occurred()) SWIG_fail;
22589 {
22590 PyThreadState* __tstate = wxPyBeginAllowThreads();
22591 (arg1)->RefreshItems(arg2,arg3);
22592
22593 wxPyEndAllowThreads(__tstate);
22594 if (PyErr_Occurred()) SWIG_fail;
22595 }
22596 Py_INCREF(Py_None); resultobj = Py_None;
22597 return resultobj;
22598 fail:
22599 return NULL;
22600 }
22601
22602
22603 static PyObject *_wrap_ListCtrl_Arrange(PyObject *self, PyObject *args, PyObject *kwargs) {
22604 PyObject *resultobj;
22605 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22606 int arg2 = (int) wxLIST_ALIGN_DEFAULT ;
22607 bool result;
22608 PyObject * obj0 = 0 ;
22609 PyObject * obj1 = 0 ;
22610 char *kwnames[] = {
22611 (char *) "self",(char *) "flag", NULL
22612 };
22613
22614 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:ListCtrl_Arrange",kwnames,&obj0,&obj1)) goto fail;
22615 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22616 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22617 if (obj1) {
22618 arg2 = (int) SWIG_AsInt(obj1);
22619 if (PyErr_Occurred()) SWIG_fail;
22620 }
22621 {
22622 PyThreadState* __tstate = wxPyBeginAllowThreads();
22623 result = (bool)(arg1)->Arrange(arg2);
22624
22625 wxPyEndAllowThreads(__tstate);
22626 if (PyErr_Occurred()) SWIG_fail;
22627 }
22628 {
22629 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
22630 }
22631 return resultobj;
22632 fail:
22633 return NULL;
22634 }
22635
22636
22637 static PyObject *_wrap_ListCtrl_DeleteItem(PyObject *self, PyObject *args, PyObject *kwargs) {
22638 PyObject *resultobj;
22639 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22640 long arg2 ;
22641 bool result;
22642 PyObject * obj0 = 0 ;
22643 PyObject * obj1 = 0 ;
22644 char *kwnames[] = {
22645 (char *) "self",(char *) "item", NULL
22646 };
22647
22648 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_DeleteItem",kwnames,&obj0,&obj1)) goto fail;
22649 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22650 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22651 arg2 = (long) SWIG_AsLong(obj1);
22652 if (PyErr_Occurred()) SWIG_fail;
22653 {
22654 PyThreadState* __tstate = wxPyBeginAllowThreads();
22655 result = (bool)(arg1)->DeleteItem(arg2);
22656
22657 wxPyEndAllowThreads(__tstate);
22658 if (PyErr_Occurred()) SWIG_fail;
22659 }
22660 {
22661 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
22662 }
22663 return resultobj;
22664 fail:
22665 return NULL;
22666 }
22667
22668
22669 static PyObject *_wrap_ListCtrl_DeleteAllItems(PyObject *self, PyObject *args, PyObject *kwargs) {
22670 PyObject *resultobj;
22671 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22672 bool result;
22673 PyObject * obj0 = 0 ;
22674 char *kwnames[] = {
22675 (char *) "self", NULL
22676 };
22677
22678 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListCtrl_DeleteAllItems",kwnames,&obj0)) goto fail;
22679 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22680 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22681 {
22682 PyThreadState* __tstate = wxPyBeginAllowThreads();
22683 result = (bool)(arg1)->DeleteAllItems();
22684
22685 wxPyEndAllowThreads(__tstate);
22686 if (PyErr_Occurred()) SWIG_fail;
22687 }
22688 {
22689 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
22690 }
22691 return resultobj;
22692 fail:
22693 return NULL;
22694 }
22695
22696
22697 static PyObject *_wrap_ListCtrl_DeleteColumn(PyObject *self, PyObject *args, PyObject *kwargs) {
22698 PyObject *resultobj;
22699 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22700 int arg2 ;
22701 bool result;
22702 PyObject * obj0 = 0 ;
22703 PyObject * obj1 = 0 ;
22704 char *kwnames[] = {
22705 (char *) "self",(char *) "col", NULL
22706 };
22707
22708 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_DeleteColumn",kwnames,&obj0,&obj1)) goto fail;
22709 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22710 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22711 arg2 = (int) SWIG_AsInt(obj1);
22712 if (PyErr_Occurred()) SWIG_fail;
22713 {
22714 PyThreadState* __tstate = wxPyBeginAllowThreads();
22715 result = (bool)(arg1)->DeleteColumn(arg2);
22716
22717 wxPyEndAllowThreads(__tstate);
22718 if (PyErr_Occurred()) SWIG_fail;
22719 }
22720 {
22721 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
22722 }
22723 return resultobj;
22724 fail:
22725 return NULL;
22726 }
22727
22728
22729 static PyObject *_wrap_ListCtrl_DeleteAllColumns(PyObject *self, PyObject *args, PyObject *kwargs) {
22730 PyObject *resultobj;
22731 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22732 bool result;
22733 PyObject * obj0 = 0 ;
22734 char *kwnames[] = {
22735 (char *) "self", NULL
22736 };
22737
22738 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListCtrl_DeleteAllColumns",kwnames,&obj0)) goto fail;
22739 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22740 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22741 {
22742 PyThreadState* __tstate = wxPyBeginAllowThreads();
22743 result = (bool)(arg1)->DeleteAllColumns();
22744
22745 wxPyEndAllowThreads(__tstate);
22746 if (PyErr_Occurred()) SWIG_fail;
22747 }
22748 {
22749 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
22750 }
22751 return resultobj;
22752 fail:
22753 return NULL;
22754 }
22755
22756
22757 static PyObject *_wrap_ListCtrl_ClearAll(PyObject *self, PyObject *args, PyObject *kwargs) {
22758 PyObject *resultobj;
22759 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22760 PyObject * obj0 = 0 ;
22761 char *kwnames[] = {
22762 (char *) "self", NULL
22763 };
22764
22765 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListCtrl_ClearAll",kwnames,&obj0)) goto fail;
22766 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22767 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22768 {
22769 PyThreadState* __tstate = wxPyBeginAllowThreads();
22770 (arg1)->ClearAll();
22771
22772 wxPyEndAllowThreads(__tstate);
22773 if (PyErr_Occurred()) SWIG_fail;
22774 }
22775 Py_INCREF(Py_None); resultobj = Py_None;
22776 return resultobj;
22777 fail:
22778 return NULL;
22779 }
22780
22781
22782 static PyObject *_wrap_ListCtrl_EditLabel(PyObject *self, PyObject *args, PyObject *kwargs) {
22783 PyObject *resultobj;
22784 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22785 long arg2 ;
22786 PyObject * obj0 = 0 ;
22787 PyObject * obj1 = 0 ;
22788 char *kwnames[] = {
22789 (char *) "self",(char *) "item", NULL
22790 };
22791
22792 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_EditLabel",kwnames,&obj0,&obj1)) goto fail;
22793 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22794 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22795 arg2 = (long) SWIG_AsLong(obj1);
22796 if (PyErr_Occurred()) SWIG_fail;
22797 {
22798 PyThreadState* __tstate = wxPyBeginAllowThreads();
22799 (arg1)->EditLabel(arg2);
22800
22801 wxPyEndAllowThreads(__tstate);
22802 if (PyErr_Occurred()) SWIG_fail;
22803 }
22804 Py_INCREF(Py_None); resultobj = Py_None;
22805 return resultobj;
22806 fail:
22807 return NULL;
22808 }
22809
22810
22811 static PyObject *_wrap_ListCtrl_EnsureVisible(PyObject *self, PyObject *args, PyObject *kwargs) {
22812 PyObject *resultobj;
22813 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22814 long arg2 ;
22815 bool result;
22816 PyObject * obj0 = 0 ;
22817 PyObject * obj1 = 0 ;
22818 char *kwnames[] = {
22819 (char *) "self",(char *) "item", NULL
22820 };
22821
22822 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_EnsureVisible",kwnames,&obj0,&obj1)) goto fail;
22823 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22824 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22825 arg2 = (long) SWIG_AsLong(obj1);
22826 if (PyErr_Occurred()) SWIG_fail;
22827 {
22828 PyThreadState* __tstate = wxPyBeginAllowThreads();
22829 result = (bool)(arg1)->EnsureVisible(arg2);
22830
22831 wxPyEndAllowThreads(__tstate);
22832 if (PyErr_Occurred()) SWIG_fail;
22833 }
22834 {
22835 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
22836 }
22837 return resultobj;
22838 fail:
22839 return NULL;
22840 }
22841
22842
22843 static PyObject *_wrap_ListCtrl_FindItem(PyObject *self, PyObject *args, PyObject *kwargs) {
22844 PyObject *resultobj;
22845 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22846 long arg2 ;
22847 wxString *arg3 = 0 ;
22848 bool arg4 = (bool) False ;
22849 long result;
22850 bool temp3 = False ;
22851 PyObject * obj0 = 0 ;
22852 PyObject * obj1 = 0 ;
22853 PyObject * obj2 = 0 ;
22854 PyObject * obj3 = 0 ;
22855 char *kwnames[] = {
22856 (char *) "self",(char *) "start",(char *) "str",(char *) "partial", NULL
22857 };
22858
22859 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO|O:ListCtrl_FindItem",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
22860 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22861 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22862 arg2 = (long) SWIG_AsLong(obj1);
22863 if (PyErr_Occurred()) SWIG_fail;
22864 {
22865 arg3 = wxString_in_helper(obj2);
22866 if (arg3 == NULL) SWIG_fail;
22867 temp3 = True;
22868 }
22869 if (obj3) {
22870 arg4 = (bool) SWIG_AsBool(obj3);
22871 if (PyErr_Occurred()) SWIG_fail;
22872 }
22873 {
22874 PyThreadState* __tstate = wxPyBeginAllowThreads();
22875 result = (long)(arg1)->FindItem(arg2,(wxString const &)*arg3,arg4);
22876
22877 wxPyEndAllowThreads(__tstate);
22878 if (PyErr_Occurred()) SWIG_fail;
22879 }
22880 resultobj = SWIG_FromLong((long)result);
22881 {
22882 if (temp3)
22883 delete arg3;
22884 }
22885 return resultobj;
22886 fail:
22887 {
22888 if (temp3)
22889 delete arg3;
22890 }
22891 return NULL;
22892 }
22893
22894
22895 static PyObject *_wrap_ListCtrl_FindItemData(PyObject *self, PyObject *args, PyObject *kwargs) {
22896 PyObject *resultobj;
22897 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22898 long arg2 ;
22899 long arg3 ;
22900 long result;
22901 PyObject * obj0 = 0 ;
22902 PyObject * obj1 = 0 ;
22903 PyObject * obj2 = 0 ;
22904 char *kwnames[] = {
22905 (char *) "self",(char *) "start",(char *) "data", NULL
22906 };
22907
22908 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_FindItemData",kwnames,&obj0,&obj1,&obj2)) goto fail;
22909 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22910 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22911 arg2 = (long) SWIG_AsLong(obj1);
22912 if (PyErr_Occurred()) SWIG_fail;
22913 arg3 = (long) SWIG_AsLong(obj2);
22914 if (PyErr_Occurred()) SWIG_fail;
22915 {
22916 PyThreadState* __tstate = wxPyBeginAllowThreads();
22917 result = (long)(arg1)->FindItem(arg2,arg3);
22918
22919 wxPyEndAllowThreads(__tstate);
22920 if (PyErr_Occurred()) SWIG_fail;
22921 }
22922 resultobj = SWIG_FromLong((long)result);
22923 return resultobj;
22924 fail:
22925 return NULL;
22926 }
22927
22928
22929 static PyObject *_wrap_ListCtrl_FindItemAtPos(PyObject *self, PyObject *args, PyObject *kwargs) {
22930 PyObject *resultobj;
22931 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22932 long arg2 ;
22933 wxPoint *arg3 = 0 ;
22934 int arg4 ;
22935 long result;
22936 wxPoint temp3 ;
22937 PyObject * obj0 = 0 ;
22938 PyObject * obj1 = 0 ;
22939 PyObject * obj2 = 0 ;
22940 PyObject * obj3 = 0 ;
22941 char *kwnames[] = {
22942 (char *) "self",(char *) "start",(char *) "pt",(char *) "direction", NULL
22943 };
22944
22945 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO:ListCtrl_FindItemAtPos",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
22946 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22947 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22948 arg2 = (long) SWIG_AsLong(obj1);
22949 if (PyErr_Occurred()) SWIG_fail;
22950 {
22951 arg3 = &temp3;
22952 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
22953 }
22954 arg4 = (int) SWIG_AsInt(obj3);
22955 if (PyErr_Occurred()) SWIG_fail;
22956 {
22957 PyThreadState* __tstate = wxPyBeginAllowThreads();
22958 result = (long)(arg1)->FindItem(arg2,(wxPoint const &)*arg3,arg4);
22959
22960 wxPyEndAllowThreads(__tstate);
22961 if (PyErr_Occurred()) SWIG_fail;
22962 }
22963 resultobj = SWIG_FromLong((long)result);
22964 return resultobj;
22965 fail:
22966 return NULL;
22967 }
22968
22969
22970 static PyObject *_wrap_ListCtrl_HitTest(PyObject *self, PyObject *args, PyObject *kwargs) {
22971 PyObject *resultobj;
22972 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
22973 wxPoint *arg2 = 0 ;
22974 int *arg3 = 0 ;
22975 long result;
22976 wxPoint temp2 ;
22977 int temp3 ;
22978 PyObject * obj0 = 0 ;
22979 PyObject * obj1 = 0 ;
22980 char *kwnames[] = {
22981 (char *) "self",(char *) "point", NULL
22982 };
22983
22984 arg3 = &temp3;
22985 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_HitTest",kwnames,&obj0,&obj1)) goto fail;
22986 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
22987 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
22988 {
22989 arg2 = &temp2;
22990 if ( ! wxPoint_helper(obj1, &arg2)) SWIG_fail;
22991 }
22992 {
22993 PyThreadState* __tstate = wxPyBeginAllowThreads();
22994 result = (long)(arg1)->HitTest((wxPoint const &)*arg2,*arg3);
22995
22996 wxPyEndAllowThreads(__tstate);
22997 if (PyErr_Occurred()) SWIG_fail;
22998 }
22999 resultobj = SWIG_FromLong((long)result);
23000 {
23001 PyObject *o = PyInt_FromLong((long) (*arg3));
23002 resultobj = t_output_helper(resultobj,o);
23003 }
23004 return resultobj;
23005 fail:
23006 return NULL;
23007 }
23008
23009
23010 static PyObject *_wrap_ListCtrl_InsertItem(PyObject *self, PyObject *args, PyObject *kwargs) {
23011 PyObject *resultobj;
23012 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
23013 wxListItem *arg2 = 0 ;
23014 long result;
23015 PyObject * obj0 = 0 ;
23016 PyObject * obj1 = 0 ;
23017 char *kwnames[] = {
23018 (char *) "self",(char *) "info", NULL
23019 };
23020
23021 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_InsertItem",kwnames,&obj0,&obj1)) goto fail;
23022 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
23023 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23024 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxListItem,
23025 SWIG_POINTER_EXCEPTION | 0)) == -1)
23026 SWIG_fail;
23027 if (arg2 == NULL) {
23028 PyErr_SetString(PyExc_TypeError,"null reference");
23029 SWIG_fail;
23030 }
23031 {
23032 PyThreadState* __tstate = wxPyBeginAllowThreads();
23033 result = (long)(arg1)->InsertItem(*arg2);
23034
23035 wxPyEndAllowThreads(__tstate);
23036 if (PyErr_Occurred()) SWIG_fail;
23037 }
23038 resultobj = SWIG_FromLong((long)result);
23039 return resultobj;
23040 fail:
23041 return NULL;
23042 }
23043
23044
23045 static PyObject *_wrap_ListCtrl_InsertStringItem(PyObject *self, PyObject *args, PyObject *kwargs) {
23046 PyObject *resultobj;
23047 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
23048 long arg2 ;
23049 wxString *arg3 = 0 ;
23050 long result;
23051 bool temp3 = False ;
23052 PyObject * obj0 = 0 ;
23053 PyObject * obj1 = 0 ;
23054 PyObject * obj2 = 0 ;
23055 char *kwnames[] = {
23056 (char *) "self",(char *) "index",(char *) "label", NULL
23057 };
23058
23059 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_InsertStringItem",kwnames,&obj0,&obj1,&obj2)) goto fail;
23060 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
23061 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23062 arg2 = (long) SWIG_AsLong(obj1);
23063 if (PyErr_Occurred()) SWIG_fail;
23064 {
23065 arg3 = wxString_in_helper(obj2);
23066 if (arg3 == NULL) SWIG_fail;
23067 temp3 = True;
23068 }
23069 {
23070 PyThreadState* __tstate = wxPyBeginAllowThreads();
23071 result = (long)(arg1)->InsertItem(arg2,(wxString const &)*arg3);
23072
23073 wxPyEndAllowThreads(__tstate);
23074 if (PyErr_Occurred()) SWIG_fail;
23075 }
23076 resultobj = SWIG_FromLong((long)result);
23077 {
23078 if (temp3)
23079 delete arg3;
23080 }
23081 return resultobj;
23082 fail:
23083 {
23084 if (temp3)
23085 delete arg3;
23086 }
23087 return NULL;
23088 }
23089
23090
23091 static PyObject *_wrap_ListCtrl_InsertImageItem(PyObject *self, PyObject *args, PyObject *kwargs) {
23092 PyObject *resultobj;
23093 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
23094 long arg2 ;
23095 int arg3 ;
23096 long result;
23097 PyObject * obj0 = 0 ;
23098 PyObject * obj1 = 0 ;
23099 PyObject * obj2 = 0 ;
23100 char *kwnames[] = {
23101 (char *) "self",(char *) "index",(char *) "imageIndex", NULL
23102 };
23103
23104 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_InsertImageItem",kwnames,&obj0,&obj1,&obj2)) goto fail;
23105 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
23106 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23107 arg2 = (long) SWIG_AsLong(obj1);
23108 if (PyErr_Occurred()) SWIG_fail;
23109 arg3 = (int) SWIG_AsInt(obj2);
23110 if (PyErr_Occurred()) SWIG_fail;
23111 {
23112 PyThreadState* __tstate = wxPyBeginAllowThreads();
23113 result = (long)(arg1)->InsertItem(arg2,arg3);
23114
23115 wxPyEndAllowThreads(__tstate);
23116 if (PyErr_Occurred()) SWIG_fail;
23117 }
23118 resultobj = SWIG_FromLong((long)result);
23119 return resultobj;
23120 fail:
23121 return NULL;
23122 }
23123
23124
23125 static PyObject *_wrap_ListCtrl_InsertImageStringItem(PyObject *self, PyObject *args, PyObject *kwargs) {
23126 PyObject *resultobj;
23127 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
23128 long arg2 ;
23129 wxString *arg3 = 0 ;
23130 int arg4 ;
23131 long result;
23132 bool temp3 = False ;
23133 PyObject * obj0 = 0 ;
23134 PyObject * obj1 = 0 ;
23135 PyObject * obj2 = 0 ;
23136 PyObject * obj3 = 0 ;
23137 char *kwnames[] = {
23138 (char *) "self",(char *) "index",(char *) "label",(char *) "imageIndex", NULL
23139 };
23140
23141 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO:ListCtrl_InsertImageStringItem",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
23142 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
23143 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23144 arg2 = (long) SWIG_AsLong(obj1);
23145 if (PyErr_Occurred()) SWIG_fail;
23146 {
23147 arg3 = wxString_in_helper(obj2);
23148 if (arg3 == NULL) SWIG_fail;
23149 temp3 = True;
23150 }
23151 arg4 = (int) SWIG_AsInt(obj3);
23152 if (PyErr_Occurred()) SWIG_fail;
23153 {
23154 PyThreadState* __tstate = wxPyBeginAllowThreads();
23155 result = (long)(arg1)->InsertItem(arg2,(wxString const &)*arg3,arg4);
23156
23157 wxPyEndAllowThreads(__tstate);
23158 if (PyErr_Occurred()) SWIG_fail;
23159 }
23160 resultobj = SWIG_FromLong((long)result);
23161 {
23162 if (temp3)
23163 delete arg3;
23164 }
23165 return resultobj;
23166 fail:
23167 {
23168 if (temp3)
23169 delete arg3;
23170 }
23171 return NULL;
23172 }
23173
23174
23175 static PyObject *_wrap_ListCtrl_InsertColumnInfo(PyObject *self, PyObject *args, PyObject *kwargs) {
23176 PyObject *resultobj;
23177 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
23178 long arg2 ;
23179 wxListItem *arg3 = 0 ;
23180 long result;
23181 PyObject * obj0 = 0 ;
23182 PyObject * obj1 = 0 ;
23183 PyObject * obj2 = 0 ;
23184 char *kwnames[] = {
23185 (char *) "self",(char *) "col",(char *) "info", NULL
23186 };
23187
23188 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_InsertColumnInfo",kwnames,&obj0,&obj1,&obj2)) goto fail;
23189 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
23190 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23191 arg2 = (long) SWIG_AsLong(obj1);
23192 if (PyErr_Occurred()) SWIG_fail;
23193 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxListItem,
23194 SWIG_POINTER_EXCEPTION | 0)) == -1)
23195 SWIG_fail;
23196 if (arg3 == NULL) {
23197 PyErr_SetString(PyExc_TypeError,"null reference");
23198 SWIG_fail;
23199 }
23200 {
23201 PyThreadState* __tstate = wxPyBeginAllowThreads();
23202 result = (long)(arg1)->InsertColumn(arg2,*arg3);
23203
23204 wxPyEndAllowThreads(__tstate);
23205 if (PyErr_Occurred()) SWIG_fail;
23206 }
23207 resultobj = SWIG_FromLong((long)result);
23208 return resultobj;
23209 fail:
23210 return NULL;
23211 }
23212
23213
23214 static PyObject *_wrap_ListCtrl_InsertColumn(PyObject *self, PyObject *args, PyObject *kwargs) {
23215 PyObject *resultobj;
23216 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
23217 long arg2 ;
23218 wxString *arg3 = 0 ;
23219 int arg4 = (int) wxLIST_FORMAT_LEFT ;
23220 int arg5 = (int) -1 ;
23221 long result;
23222 bool temp3 = False ;
23223 PyObject * obj0 = 0 ;
23224 PyObject * obj1 = 0 ;
23225 PyObject * obj2 = 0 ;
23226 PyObject * obj3 = 0 ;
23227 PyObject * obj4 = 0 ;
23228 char *kwnames[] = {
23229 (char *) "self",(char *) "col",(char *) "heading",(char *) "format",(char *) "width", NULL
23230 };
23231
23232 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO|OO:ListCtrl_InsertColumn",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
23233 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
23234 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23235 arg2 = (long) SWIG_AsLong(obj1);
23236 if (PyErr_Occurred()) SWIG_fail;
23237 {
23238 arg3 = wxString_in_helper(obj2);
23239 if (arg3 == NULL) SWIG_fail;
23240 temp3 = True;
23241 }
23242 if (obj3) {
23243 arg4 = (int) SWIG_AsInt(obj3);
23244 if (PyErr_Occurred()) SWIG_fail;
23245 }
23246 if (obj4) {
23247 arg5 = (int) SWIG_AsInt(obj4);
23248 if (PyErr_Occurred()) SWIG_fail;
23249 }
23250 {
23251 PyThreadState* __tstate = wxPyBeginAllowThreads();
23252 result = (long)(arg1)->InsertColumn(arg2,(wxString const &)*arg3,arg4,arg5);
23253
23254 wxPyEndAllowThreads(__tstate);
23255 if (PyErr_Occurred()) SWIG_fail;
23256 }
23257 resultobj = SWIG_FromLong((long)result);
23258 {
23259 if (temp3)
23260 delete arg3;
23261 }
23262 return resultobj;
23263 fail:
23264 {
23265 if (temp3)
23266 delete arg3;
23267 }
23268 return NULL;
23269 }
23270
23271
23272 static PyObject *_wrap_ListCtrl_SetItemCount(PyObject *self, PyObject *args, PyObject *kwargs) {
23273 PyObject *resultobj;
23274 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
23275 long arg2 ;
23276 PyObject * obj0 = 0 ;
23277 PyObject * obj1 = 0 ;
23278 char *kwnames[] = {
23279 (char *) "self",(char *) "count", NULL
23280 };
23281
23282 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_SetItemCount",kwnames,&obj0,&obj1)) goto fail;
23283 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
23284 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23285 arg2 = (long) SWIG_AsLong(obj1);
23286 if (PyErr_Occurred()) SWIG_fail;
23287 {
23288 PyThreadState* __tstate = wxPyBeginAllowThreads();
23289 (arg1)->SetItemCount(arg2);
23290
23291 wxPyEndAllowThreads(__tstate);
23292 if (PyErr_Occurred()) SWIG_fail;
23293 }
23294 Py_INCREF(Py_None); resultobj = Py_None;
23295 return resultobj;
23296 fail:
23297 return NULL;
23298 }
23299
23300
23301 static PyObject *_wrap_ListCtrl_ScrollList(PyObject *self, PyObject *args, PyObject *kwargs) {
23302 PyObject *resultobj;
23303 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
23304 int arg2 ;
23305 int arg3 ;
23306 bool result;
23307 PyObject * obj0 = 0 ;
23308 PyObject * obj1 = 0 ;
23309 PyObject * obj2 = 0 ;
23310 char *kwnames[] = {
23311 (char *) "self",(char *) "dx",(char *) "dy", NULL
23312 };
23313
23314 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_ScrollList",kwnames,&obj0,&obj1,&obj2)) goto fail;
23315 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
23316 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23317 arg2 = (int) SWIG_AsInt(obj1);
23318 if (PyErr_Occurred()) SWIG_fail;
23319 arg3 = (int) SWIG_AsInt(obj2);
23320 if (PyErr_Occurred()) SWIG_fail;
23321 {
23322 PyThreadState* __tstate = wxPyBeginAllowThreads();
23323 result = (bool)(arg1)->ScrollList(arg2,arg3);
23324
23325 wxPyEndAllowThreads(__tstate);
23326 if (PyErr_Occurred()) SWIG_fail;
23327 }
23328 {
23329 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
23330 }
23331 return resultobj;
23332 fail:
23333 return NULL;
23334 }
23335
23336
23337 static PyObject *_wrap_ListCtrl_SetItemTextColour(PyObject *self, PyObject *args, PyObject *kwargs) {
23338 PyObject *resultobj;
23339 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
23340 long arg2 ;
23341 wxColour *arg3 = 0 ;
23342 wxColour temp3 ;
23343 PyObject * obj0 = 0 ;
23344 PyObject * obj1 = 0 ;
23345 PyObject * obj2 = 0 ;
23346 char *kwnames[] = {
23347 (char *) "self",(char *) "item",(char *) "col", NULL
23348 };
23349
23350 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_SetItemTextColour",kwnames,&obj0,&obj1,&obj2)) goto fail;
23351 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
23352 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23353 arg2 = (long) SWIG_AsLong(obj1);
23354 if (PyErr_Occurred()) SWIG_fail;
23355 {
23356 arg3 = &temp3;
23357 if ( ! wxColour_helper(obj2, &arg3)) SWIG_fail;
23358 }
23359 {
23360 PyThreadState* __tstate = wxPyBeginAllowThreads();
23361 (arg1)->SetItemTextColour(arg2,(wxColour const &)*arg3);
23362
23363 wxPyEndAllowThreads(__tstate);
23364 if (PyErr_Occurred()) SWIG_fail;
23365 }
23366 Py_INCREF(Py_None); resultobj = Py_None;
23367 return resultobj;
23368 fail:
23369 return NULL;
23370 }
23371
23372
23373 static PyObject *_wrap_ListCtrl_GetItemTextColour(PyObject *self, PyObject *args, PyObject *kwargs) {
23374 PyObject *resultobj;
23375 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
23376 long arg2 ;
23377 wxColour result;
23378 PyObject * obj0 = 0 ;
23379 PyObject * obj1 = 0 ;
23380 char *kwnames[] = {
23381 (char *) "self",(char *) "item", NULL
23382 };
23383
23384 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_GetItemTextColour",kwnames,&obj0,&obj1)) goto fail;
23385 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
23386 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23387 arg2 = (long) SWIG_AsLong(obj1);
23388 if (PyErr_Occurred()) SWIG_fail;
23389 {
23390 PyThreadState* __tstate = wxPyBeginAllowThreads();
23391 result = ((wxPyListCtrl const *)arg1)->GetItemTextColour(arg2);
23392
23393 wxPyEndAllowThreads(__tstate);
23394 if (PyErr_Occurred()) SWIG_fail;
23395 }
23396 {
23397 wxColour * resultptr;
23398 resultptr = new wxColour((wxColour &) result);
23399 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxColour, 1);
23400 }
23401 return resultobj;
23402 fail:
23403 return NULL;
23404 }
23405
23406
23407 static PyObject *_wrap_ListCtrl_SetItemBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
23408 PyObject *resultobj;
23409 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
23410 long arg2 ;
23411 wxColour *arg3 = 0 ;
23412 wxColour temp3 ;
23413 PyObject * obj0 = 0 ;
23414 PyObject * obj1 = 0 ;
23415 PyObject * obj2 = 0 ;
23416 char *kwnames[] = {
23417 (char *) "self",(char *) "item",(char *) "col", NULL
23418 };
23419
23420 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListCtrl_SetItemBackgroundColour",kwnames,&obj0,&obj1,&obj2)) goto fail;
23421 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
23422 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23423 arg2 = (long) SWIG_AsLong(obj1);
23424 if (PyErr_Occurred()) SWIG_fail;
23425 {
23426 arg3 = &temp3;
23427 if ( ! wxColour_helper(obj2, &arg3)) SWIG_fail;
23428 }
23429 {
23430 PyThreadState* __tstate = wxPyBeginAllowThreads();
23431 (arg1)->SetItemBackgroundColour(arg2,(wxColour const &)*arg3);
23432
23433 wxPyEndAllowThreads(__tstate);
23434 if (PyErr_Occurred()) SWIG_fail;
23435 }
23436 Py_INCREF(Py_None); resultobj = Py_None;
23437 return resultobj;
23438 fail:
23439 return NULL;
23440 }
23441
23442
23443 static PyObject *_wrap_ListCtrl_GetItemBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
23444 PyObject *resultobj;
23445 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
23446 long arg2 ;
23447 wxColour result;
23448 PyObject * obj0 = 0 ;
23449 PyObject * obj1 = 0 ;
23450 char *kwnames[] = {
23451 (char *) "self",(char *) "item", NULL
23452 };
23453
23454 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_GetItemBackgroundColour",kwnames,&obj0,&obj1)) goto fail;
23455 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
23456 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23457 arg2 = (long) SWIG_AsLong(obj1);
23458 if (PyErr_Occurred()) SWIG_fail;
23459 {
23460 PyThreadState* __tstate = wxPyBeginAllowThreads();
23461 result = ((wxPyListCtrl const *)arg1)->GetItemBackgroundColour(arg2);
23462
23463 wxPyEndAllowThreads(__tstate);
23464 if (PyErr_Occurred()) SWIG_fail;
23465 }
23466 {
23467 wxColour * resultptr;
23468 resultptr = new wxColour((wxColour &) result);
23469 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxColour, 1);
23470 }
23471 return resultobj;
23472 fail:
23473 return NULL;
23474 }
23475
23476
23477 static PyObject *_wrap_ListCtrl_SortItems(PyObject *self, PyObject *args, PyObject *kwargs) {
23478 PyObject *resultobj;
23479 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
23480 PyObject *arg2 = (PyObject *) 0 ;
23481 bool result;
23482 PyObject * obj0 = 0 ;
23483 PyObject * obj1 = 0 ;
23484 char *kwnames[] = {
23485 (char *) "self",(char *) "func", NULL
23486 };
23487
23488 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListCtrl_SortItems",kwnames,&obj0,&obj1)) goto fail;
23489 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
23490 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23491 arg2 = obj1;
23492 {
23493 PyThreadState* __tstate = wxPyBeginAllowThreads();
23494 result = (bool)wxPyListCtrl_SortItems(arg1,arg2);
23495
23496 wxPyEndAllowThreads(__tstate);
23497 if (PyErr_Occurred()) SWIG_fail;
23498 }
23499 {
23500 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
23501 }
23502 return resultobj;
23503 fail:
23504 return NULL;
23505 }
23506
23507
23508 static PyObject *_wrap_ListCtrl_GetMainWindow(PyObject *self, PyObject *args, PyObject *kwargs) {
23509 PyObject *resultobj;
23510 wxPyListCtrl *arg1 = (wxPyListCtrl *) 0 ;
23511 wxWindow *result;
23512 PyObject * obj0 = 0 ;
23513 char *kwnames[] = {
23514 (char *) "self", NULL
23515 };
23516
23517 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListCtrl_GetMainWindow",kwnames,&obj0)) goto fail;
23518 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
23519 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23520 {
23521 PyThreadState* __tstate = wxPyBeginAllowThreads();
23522 result = (wxWindow *)wxPyListCtrl_GetMainWindow(arg1);
23523
23524 wxPyEndAllowThreads(__tstate);
23525 if (PyErr_Occurred()) SWIG_fail;
23526 }
23527 {
23528 resultobj = wxPyMake_wxObject(result, 0);
23529 }
23530 return resultobj;
23531 fail:
23532 return NULL;
23533 }
23534
23535
23536 static PyObject *_wrap_ListCtrl_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
23537 PyObject *resultobj;
23538 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
23539 wxVisualAttributes result;
23540 PyObject * obj0 = 0 ;
23541 char *kwnames[] = {
23542 (char *) "variant", NULL
23543 };
23544
23545 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:ListCtrl_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
23546 if (obj0) {
23547 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
23548 if (PyErr_Occurred()) SWIG_fail;
23549 }
23550 {
23551 if (!wxPyCheckForApp()) SWIG_fail;
23552 PyThreadState* __tstate = wxPyBeginAllowThreads();
23553 result = wxPyListCtrl::GetClassDefaultAttributes((wxWindowVariant )arg1);
23554
23555 wxPyEndAllowThreads(__tstate);
23556 if (PyErr_Occurred()) SWIG_fail;
23557 }
23558 {
23559 wxVisualAttributes * resultptr;
23560 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
23561 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
23562 }
23563 return resultobj;
23564 fail:
23565 return NULL;
23566 }
23567
23568
23569 static PyObject * ListCtrl_swigregister(PyObject *self, PyObject *args) {
23570 PyObject *obj;
23571 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
23572 SWIG_TypeClientData(SWIGTYPE_p_wxPyListCtrl, obj);
23573 Py_INCREF(obj);
23574 return Py_BuildValue((char *)"");
23575 }
23576 static PyObject *_wrap_new_ListView(PyObject *self, PyObject *args, PyObject *kwargs) {
23577 PyObject *resultobj;
23578 wxWindow *arg1 = (wxWindow *) 0 ;
23579 int arg2 = (int) -1 ;
23580 wxPoint const &arg3_defvalue = wxDefaultPosition ;
23581 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
23582 wxSize const &arg4_defvalue = wxDefaultSize ;
23583 wxSize *arg4 = (wxSize *) &arg4_defvalue ;
23584 long arg5 = (long) wxLC_REPORT ;
23585 wxValidator const &arg6_defvalue = wxDefaultValidator ;
23586 wxValidator *arg6 = (wxValidator *) &arg6_defvalue ;
23587 wxString const &arg7_defvalue = wxPyListCtrlNameStr ;
23588 wxString *arg7 = (wxString *) &arg7_defvalue ;
23589 wxListView *result;
23590 wxPoint temp3 ;
23591 wxSize temp4 ;
23592 bool temp7 = False ;
23593 PyObject * obj0 = 0 ;
23594 PyObject * obj1 = 0 ;
23595 PyObject * obj2 = 0 ;
23596 PyObject * obj3 = 0 ;
23597 PyObject * obj4 = 0 ;
23598 PyObject * obj5 = 0 ;
23599 PyObject * obj6 = 0 ;
23600 char *kwnames[] = {
23601 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
23602 };
23603
23604 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOO:new_ListView",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
23605 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
23606 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23607 if (obj1) {
23608 arg2 = (int) SWIG_AsInt(obj1);
23609 if (PyErr_Occurred()) SWIG_fail;
23610 }
23611 if (obj2) {
23612 {
23613 arg3 = &temp3;
23614 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
23615 }
23616 }
23617 if (obj3) {
23618 {
23619 arg4 = &temp4;
23620 if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
23621 }
23622 }
23623 if (obj4) {
23624 arg5 = (long) SWIG_AsLong(obj4);
23625 if (PyErr_Occurred()) SWIG_fail;
23626 }
23627 if (obj5) {
23628 if ((SWIG_ConvertPtr(obj5,(void **)(&arg6),SWIGTYPE_p_wxValidator,
23629 SWIG_POINTER_EXCEPTION | 0)) == -1)
23630 SWIG_fail;
23631 if (arg6 == NULL) {
23632 PyErr_SetString(PyExc_TypeError,"null reference");
23633 SWIG_fail;
23634 }
23635 }
23636 if (obj6) {
23637 {
23638 arg7 = wxString_in_helper(obj6);
23639 if (arg7 == NULL) SWIG_fail;
23640 temp7 = True;
23641 }
23642 }
23643 {
23644 if (!wxPyCheckForApp()) SWIG_fail;
23645 PyThreadState* __tstate = wxPyBeginAllowThreads();
23646 result = (wxListView *)new wxListView(arg1,arg2,(wxPoint const &)*arg3,(wxSize const &)*arg4,arg5,(wxValidator const &)*arg6,(wxString const &)*arg7);
23647
23648 wxPyEndAllowThreads(__tstate);
23649 if (PyErr_Occurred()) SWIG_fail;
23650 }
23651 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxListView, 1);
23652 {
23653 if (temp7)
23654 delete arg7;
23655 }
23656 return resultobj;
23657 fail:
23658 {
23659 if (temp7)
23660 delete arg7;
23661 }
23662 return NULL;
23663 }
23664
23665
23666 static PyObject *_wrap_new_PreListView(PyObject *self, PyObject *args, PyObject *kwargs) {
23667 PyObject *resultobj;
23668 wxListView *result;
23669 char *kwnames[] = {
23670 NULL
23671 };
23672
23673 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreListView",kwnames)) goto fail;
23674 {
23675 if (!wxPyCheckForApp()) SWIG_fail;
23676 PyThreadState* __tstate = wxPyBeginAllowThreads();
23677 result = (wxListView *)new wxListView();
23678
23679 wxPyEndAllowThreads(__tstate);
23680 if (PyErr_Occurred()) SWIG_fail;
23681 }
23682 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxListView, 1);
23683 return resultobj;
23684 fail:
23685 return NULL;
23686 }
23687
23688
23689 static PyObject *_wrap_ListView_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
23690 PyObject *resultobj;
23691 wxListView *arg1 = (wxListView *) 0 ;
23692 wxWindow *arg2 = (wxWindow *) 0 ;
23693 int arg3 = (int) -1 ;
23694 wxPoint const &arg4_defvalue = wxDefaultPosition ;
23695 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
23696 wxSize const &arg5_defvalue = wxDefaultSize ;
23697 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
23698 long arg6 = (long) wxLC_REPORT ;
23699 wxValidator const &arg7_defvalue = wxDefaultValidator ;
23700 wxValidator *arg7 = (wxValidator *) &arg7_defvalue ;
23701 wxString const &arg8_defvalue = wxPyListCtrlNameStr ;
23702 wxString *arg8 = (wxString *) &arg8_defvalue ;
23703 bool result;
23704 wxPoint temp4 ;
23705 wxSize temp5 ;
23706 bool temp8 = False ;
23707 PyObject * obj0 = 0 ;
23708 PyObject * obj1 = 0 ;
23709 PyObject * obj2 = 0 ;
23710 PyObject * obj3 = 0 ;
23711 PyObject * obj4 = 0 ;
23712 PyObject * obj5 = 0 ;
23713 PyObject * obj6 = 0 ;
23714 PyObject * obj7 = 0 ;
23715 char *kwnames[] = {
23716 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
23717 };
23718
23719 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOO:ListView_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
23720 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListView,
23721 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23722 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
23723 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23724 if (obj2) {
23725 arg3 = (int) SWIG_AsInt(obj2);
23726 if (PyErr_Occurred()) SWIG_fail;
23727 }
23728 if (obj3) {
23729 {
23730 arg4 = &temp4;
23731 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
23732 }
23733 }
23734 if (obj4) {
23735 {
23736 arg5 = &temp5;
23737 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
23738 }
23739 }
23740 if (obj5) {
23741 arg6 = (long) SWIG_AsLong(obj5);
23742 if (PyErr_Occurred()) SWIG_fail;
23743 }
23744 if (obj6) {
23745 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxValidator,
23746 SWIG_POINTER_EXCEPTION | 0)) == -1)
23747 SWIG_fail;
23748 if (arg7 == NULL) {
23749 PyErr_SetString(PyExc_TypeError,"null reference");
23750 SWIG_fail;
23751 }
23752 }
23753 if (obj7) {
23754 {
23755 arg8 = wxString_in_helper(obj7);
23756 if (arg8 == NULL) SWIG_fail;
23757 temp8 = True;
23758 }
23759 }
23760 {
23761 PyThreadState* __tstate = wxPyBeginAllowThreads();
23762 result = (bool)(arg1)->Create(arg2,arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxValidator const &)*arg7,(wxString const &)*arg8);
23763
23764 wxPyEndAllowThreads(__tstate);
23765 if (PyErr_Occurred()) SWIG_fail;
23766 }
23767 {
23768 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
23769 }
23770 {
23771 if (temp8)
23772 delete arg8;
23773 }
23774 return resultobj;
23775 fail:
23776 {
23777 if (temp8)
23778 delete arg8;
23779 }
23780 return NULL;
23781 }
23782
23783
23784 static PyObject *_wrap_ListView_Select(PyObject *self, PyObject *args, PyObject *kwargs) {
23785 PyObject *resultobj;
23786 wxListView *arg1 = (wxListView *) 0 ;
23787 long arg2 ;
23788 bool arg3 = (bool) True ;
23789 PyObject * obj0 = 0 ;
23790 PyObject * obj1 = 0 ;
23791 PyObject * obj2 = 0 ;
23792 char *kwnames[] = {
23793 (char *) "self",(char *) "n",(char *) "on", NULL
23794 };
23795
23796 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:ListView_Select",kwnames,&obj0,&obj1,&obj2)) goto fail;
23797 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListView,
23798 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23799 arg2 = (long) SWIG_AsLong(obj1);
23800 if (PyErr_Occurred()) SWIG_fail;
23801 if (obj2) {
23802 arg3 = (bool) SWIG_AsBool(obj2);
23803 if (PyErr_Occurred()) SWIG_fail;
23804 }
23805 {
23806 PyThreadState* __tstate = wxPyBeginAllowThreads();
23807 (arg1)->Select(arg2,arg3);
23808
23809 wxPyEndAllowThreads(__tstate);
23810 if (PyErr_Occurred()) SWIG_fail;
23811 }
23812 Py_INCREF(Py_None); resultobj = Py_None;
23813 return resultobj;
23814 fail:
23815 return NULL;
23816 }
23817
23818
23819 static PyObject *_wrap_ListView_Focus(PyObject *self, PyObject *args, PyObject *kwargs) {
23820 PyObject *resultobj;
23821 wxListView *arg1 = (wxListView *) 0 ;
23822 long arg2 ;
23823 PyObject * obj0 = 0 ;
23824 PyObject * obj1 = 0 ;
23825 char *kwnames[] = {
23826 (char *) "self",(char *) "index", NULL
23827 };
23828
23829 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListView_Focus",kwnames,&obj0,&obj1)) goto fail;
23830 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListView,
23831 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23832 arg2 = (long) SWIG_AsLong(obj1);
23833 if (PyErr_Occurred()) SWIG_fail;
23834 {
23835 PyThreadState* __tstate = wxPyBeginAllowThreads();
23836 (arg1)->Focus(arg2);
23837
23838 wxPyEndAllowThreads(__tstate);
23839 if (PyErr_Occurred()) SWIG_fail;
23840 }
23841 Py_INCREF(Py_None); resultobj = Py_None;
23842 return resultobj;
23843 fail:
23844 return NULL;
23845 }
23846
23847
23848 static PyObject *_wrap_ListView_GetFocusedItem(PyObject *self, PyObject *args, PyObject *kwargs) {
23849 PyObject *resultobj;
23850 wxListView *arg1 = (wxListView *) 0 ;
23851 long result;
23852 PyObject * obj0 = 0 ;
23853 char *kwnames[] = {
23854 (char *) "self", NULL
23855 };
23856
23857 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListView_GetFocusedItem",kwnames,&obj0)) goto fail;
23858 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListView,
23859 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23860 {
23861 PyThreadState* __tstate = wxPyBeginAllowThreads();
23862 result = (long)((wxListView const *)arg1)->GetFocusedItem();
23863
23864 wxPyEndAllowThreads(__tstate);
23865 if (PyErr_Occurred()) SWIG_fail;
23866 }
23867 resultobj = SWIG_FromLong((long)result);
23868 return resultobj;
23869 fail:
23870 return NULL;
23871 }
23872
23873
23874 static PyObject *_wrap_ListView_GetNextSelected(PyObject *self, PyObject *args, PyObject *kwargs) {
23875 PyObject *resultobj;
23876 wxListView *arg1 = (wxListView *) 0 ;
23877 long arg2 ;
23878 long result;
23879 PyObject * obj0 = 0 ;
23880 PyObject * obj1 = 0 ;
23881 char *kwnames[] = {
23882 (char *) "self",(char *) "item", NULL
23883 };
23884
23885 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListView_GetNextSelected",kwnames,&obj0,&obj1)) goto fail;
23886 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListView,
23887 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23888 arg2 = (long) SWIG_AsLong(obj1);
23889 if (PyErr_Occurred()) SWIG_fail;
23890 {
23891 PyThreadState* __tstate = wxPyBeginAllowThreads();
23892 result = (long)((wxListView const *)arg1)->GetNextSelected(arg2);
23893
23894 wxPyEndAllowThreads(__tstate);
23895 if (PyErr_Occurred()) SWIG_fail;
23896 }
23897 resultobj = SWIG_FromLong((long)result);
23898 return resultobj;
23899 fail:
23900 return NULL;
23901 }
23902
23903
23904 static PyObject *_wrap_ListView_GetFirstSelected(PyObject *self, PyObject *args, PyObject *kwargs) {
23905 PyObject *resultobj;
23906 wxListView *arg1 = (wxListView *) 0 ;
23907 long result;
23908 PyObject * obj0 = 0 ;
23909 char *kwnames[] = {
23910 (char *) "self", NULL
23911 };
23912
23913 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ListView_GetFirstSelected",kwnames,&obj0)) goto fail;
23914 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListView,
23915 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23916 {
23917 PyThreadState* __tstate = wxPyBeginAllowThreads();
23918 result = (long)((wxListView const *)arg1)->GetFirstSelected();
23919
23920 wxPyEndAllowThreads(__tstate);
23921 if (PyErr_Occurred()) SWIG_fail;
23922 }
23923 resultobj = SWIG_FromLong((long)result);
23924 return resultobj;
23925 fail:
23926 return NULL;
23927 }
23928
23929
23930 static PyObject *_wrap_ListView_IsSelected(PyObject *self, PyObject *args, PyObject *kwargs) {
23931 PyObject *resultobj;
23932 wxListView *arg1 = (wxListView *) 0 ;
23933 long arg2 ;
23934 bool result;
23935 PyObject * obj0 = 0 ;
23936 PyObject * obj1 = 0 ;
23937 char *kwnames[] = {
23938 (char *) "self",(char *) "index", NULL
23939 };
23940
23941 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListView_IsSelected",kwnames,&obj0,&obj1)) goto fail;
23942 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListView,
23943 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23944 arg2 = (long) SWIG_AsLong(obj1);
23945 if (PyErr_Occurred()) SWIG_fail;
23946 {
23947 PyThreadState* __tstate = wxPyBeginAllowThreads();
23948 result = (bool)(arg1)->IsSelected(arg2);
23949
23950 wxPyEndAllowThreads(__tstate);
23951 if (PyErr_Occurred()) SWIG_fail;
23952 }
23953 {
23954 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
23955 }
23956 return resultobj;
23957 fail:
23958 return NULL;
23959 }
23960
23961
23962 static PyObject *_wrap_ListView_SetColumnImage(PyObject *self, PyObject *args, PyObject *kwargs) {
23963 PyObject *resultobj;
23964 wxListView *arg1 = (wxListView *) 0 ;
23965 int arg2 ;
23966 int arg3 ;
23967 PyObject * obj0 = 0 ;
23968 PyObject * obj1 = 0 ;
23969 PyObject * obj2 = 0 ;
23970 char *kwnames[] = {
23971 (char *) "self",(char *) "col",(char *) "image", NULL
23972 };
23973
23974 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:ListView_SetColumnImage",kwnames,&obj0,&obj1,&obj2)) goto fail;
23975 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListView,
23976 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
23977 arg2 = (int) SWIG_AsInt(obj1);
23978 if (PyErr_Occurred()) SWIG_fail;
23979 arg3 = (int) SWIG_AsInt(obj2);
23980 if (PyErr_Occurred()) SWIG_fail;
23981 {
23982 PyThreadState* __tstate = wxPyBeginAllowThreads();
23983 (arg1)->SetColumnImage(arg2,arg3);
23984
23985 wxPyEndAllowThreads(__tstate);
23986 if (PyErr_Occurred()) SWIG_fail;
23987 }
23988 Py_INCREF(Py_None); resultobj = Py_None;
23989 return resultobj;
23990 fail:
23991 return NULL;
23992 }
23993
23994
23995 static PyObject *_wrap_ListView_ClearColumnImage(PyObject *self, PyObject *args, PyObject *kwargs) {
23996 PyObject *resultobj;
23997 wxListView *arg1 = (wxListView *) 0 ;
23998 int arg2 ;
23999 PyObject * obj0 = 0 ;
24000 PyObject * obj1 = 0 ;
24001 char *kwnames[] = {
24002 (char *) "self",(char *) "col", NULL
24003 };
24004
24005 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:ListView_ClearColumnImage",kwnames,&obj0,&obj1)) goto fail;
24006 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxListView,
24007 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24008 arg2 = (int) SWIG_AsInt(obj1);
24009 if (PyErr_Occurred()) SWIG_fail;
24010 {
24011 PyThreadState* __tstate = wxPyBeginAllowThreads();
24012 (arg1)->ClearColumnImage(arg2);
24013
24014 wxPyEndAllowThreads(__tstate);
24015 if (PyErr_Occurred()) SWIG_fail;
24016 }
24017 Py_INCREF(Py_None); resultobj = Py_None;
24018 return resultobj;
24019 fail:
24020 return NULL;
24021 }
24022
24023
24024 static PyObject * ListView_swigregister(PyObject *self, PyObject *args) {
24025 PyObject *obj;
24026 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
24027 SWIG_TypeClientData(SWIGTYPE_p_wxListView, obj);
24028 Py_INCREF(obj);
24029 return Py_BuildValue((char *)"");
24030 }
24031 static int _wrap_TreeCtrlNameStr_set(PyObject *_val) {
24032 PyErr_SetString(PyExc_TypeError,"Variable TreeCtrlNameStr is read-only.");
24033 return 1;
24034 }
24035
24036
24037 static PyObject *_wrap_TreeCtrlNameStr_get() {
24038 PyObject *pyobj;
24039
24040 {
24041 #if wxUSE_UNICODE
24042 pyobj = PyUnicode_FromWideChar((&wxPyTreeCtrlNameStr)->c_str(), (&wxPyTreeCtrlNameStr)->Len());
24043 #else
24044 pyobj = PyString_FromStringAndSize((&wxPyTreeCtrlNameStr)->c_str(), (&wxPyTreeCtrlNameStr)->Len());
24045 #endif
24046 }
24047 return pyobj;
24048 }
24049
24050
24051 static PyObject *_wrap_new_TreeItemId(PyObject *self, PyObject *args, PyObject *kwargs) {
24052 PyObject *resultobj;
24053 wxTreeItemId *result;
24054 char *kwnames[] = {
24055 NULL
24056 };
24057
24058 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_TreeItemId",kwnames)) goto fail;
24059 {
24060 PyThreadState* __tstate = wxPyBeginAllowThreads();
24061 result = (wxTreeItemId *)new wxTreeItemId();
24062
24063 wxPyEndAllowThreads(__tstate);
24064 if (PyErr_Occurred()) SWIG_fail;
24065 }
24066 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxTreeItemId, 1);
24067 return resultobj;
24068 fail:
24069 return NULL;
24070 }
24071
24072
24073 static PyObject *_wrap_delete_TreeItemId(PyObject *self, PyObject *args, PyObject *kwargs) {
24074 PyObject *resultobj;
24075 wxTreeItemId *arg1 = (wxTreeItemId *) 0 ;
24076 PyObject * obj0 = 0 ;
24077 char *kwnames[] = {
24078 (char *) "self", NULL
24079 };
24080
24081 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:delete_TreeItemId",kwnames,&obj0)) goto fail;
24082 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeItemId,
24083 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24084 {
24085 PyThreadState* __tstate = wxPyBeginAllowThreads();
24086 delete arg1;
24087
24088 wxPyEndAllowThreads(__tstate);
24089 if (PyErr_Occurred()) SWIG_fail;
24090 }
24091 Py_INCREF(Py_None); resultobj = Py_None;
24092 return resultobj;
24093 fail:
24094 return NULL;
24095 }
24096
24097
24098 static PyObject *_wrap_TreeItemId_IsOk(PyObject *self, PyObject *args, PyObject *kwargs) {
24099 PyObject *resultobj;
24100 wxTreeItemId *arg1 = (wxTreeItemId *) 0 ;
24101 bool result;
24102 PyObject * obj0 = 0 ;
24103 char *kwnames[] = {
24104 (char *) "self", NULL
24105 };
24106
24107 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeItemId_IsOk",kwnames,&obj0)) goto fail;
24108 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeItemId,
24109 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24110 {
24111 PyThreadState* __tstate = wxPyBeginAllowThreads();
24112 result = (bool)((wxTreeItemId const *)arg1)->IsOk();
24113
24114 wxPyEndAllowThreads(__tstate);
24115 if (PyErr_Occurred()) SWIG_fail;
24116 }
24117 {
24118 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
24119 }
24120 return resultobj;
24121 fail:
24122 return NULL;
24123 }
24124
24125
24126 static PyObject *_wrap_TreeItemId___eq__(PyObject *self, PyObject *args, PyObject *kwargs) {
24127 PyObject *resultobj;
24128 wxTreeItemId *arg1 = (wxTreeItemId *) 0 ;
24129 wxTreeItemId *arg2 = (wxTreeItemId *) 0 ;
24130 bool result;
24131 PyObject * obj0 = 0 ;
24132 PyObject * obj1 = 0 ;
24133 char *kwnames[] = {
24134 (char *) "self",(char *) "other", NULL
24135 };
24136
24137 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeItemId___eq__",kwnames,&obj0,&obj1)) goto fail;
24138 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeItemId,
24139 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24140 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
24141 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24142 {
24143 PyThreadState* __tstate = wxPyBeginAllowThreads();
24144 result = (bool)wxTreeItemId___eq__(arg1,(wxTreeItemId const *)arg2);
24145
24146 wxPyEndAllowThreads(__tstate);
24147 if (PyErr_Occurred()) SWIG_fail;
24148 }
24149 {
24150 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
24151 }
24152 return resultobj;
24153 fail:
24154 return NULL;
24155 }
24156
24157
24158 static PyObject *_wrap_TreeItemId___ne__(PyObject *self, PyObject *args, PyObject *kwargs) {
24159 PyObject *resultobj;
24160 wxTreeItemId *arg1 = (wxTreeItemId *) 0 ;
24161 wxTreeItemId *arg2 = (wxTreeItemId *) 0 ;
24162 bool result;
24163 PyObject * obj0 = 0 ;
24164 PyObject * obj1 = 0 ;
24165 char *kwnames[] = {
24166 (char *) "self",(char *) "other", NULL
24167 };
24168
24169 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeItemId___ne__",kwnames,&obj0,&obj1)) goto fail;
24170 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeItemId,
24171 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24172 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
24173 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24174 {
24175 PyThreadState* __tstate = wxPyBeginAllowThreads();
24176 result = (bool)wxTreeItemId___ne__(arg1,(wxTreeItemId const *)arg2);
24177
24178 wxPyEndAllowThreads(__tstate);
24179 if (PyErr_Occurred()) SWIG_fail;
24180 }
24181 {
24182 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
24183 }
24184 return resultobj;
24185 fail:
24186 return NULL;
24187 }
24188
24189
24190 static PyObject *_wrap_TreeItemId_m_pItem_set(PyObject *self, PyObject *args, PyObject *kwargs) {
24191 PyObject *resultobj;
24192 wxTreeItemId *arg1 = (wxTreeItemId *) 0 ;
24193 void *arg2 = (void *) 0 ;
24194 PyObject * obj0 = 0 ;
24195 PyObject * obj1 = 0 ;
24196 char *kwnames[] = {
24197 (char *) "self",(char *) "m_pItem", NULL
24198 };
24199
24200 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeItemId_m_pItem_set",kwnames,&obj0,&obj1)) goto fail;
24201 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeItemId,
24202 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24203 if ((SWIG_ConvertPtr(obj1,&arg2,0,SWIG_POINTER_EXCEPTION | SWIG_POINTER_DISOWN)) == -1) SWIG_fail;
24204 if (arg1) (arg1)->m_pItem = arg2;
24205
24206 Py_INCREF(Py_None); resultobj = Py_None;
24207 return resultobj;
24208 fail:
24209 return NULL;
24210 }
24211
24212
24213 static PyObject *_wrap_TreeItemId_m_pItem_get(PyObject *self, PyObject *args, PyObject *kwargs) {
24214 PyObject *resultobj;
24215 wxTreeItemId *arg1 = (wxTreeItemId *) 0 ;
24216 void *result;
24217 PyObject * obj0 = 0 ;
24218 char *kwnames[] = {
24219 (char *) "self", NULL
24220 };
24221
24222 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeItemId_m_pItem_get",kwnames,&obj0)) goto fail;
24223 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeItemId,
24224 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24225 result = (void *) ((arg1)->m_pItem);
24226
24227 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_void, 0);
24228 return resultobj;
24229 fail:
24230 return NULL;
24231 }
24232
24233
24234 static PyObject * TreeItemId_swigregister(PyObject *self, PyObject *args) {
24235 PyObject *obj;
24236 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
24237 SWIG_TypeClientData(SWIGTYPE_p_wxTreeItemId, obj);
24238 Py_INCREF(obj);
24239 return Py_BuildValue((char *)"");
24240 }
24241 static PyObject *_wrap_new_TreeItemData(PyObject *self, PyObject *args, PyObject *kwargs) {
24242 PyObject *resultobj;
24243 PyObject *arg1 = (PyObject *) NULL ;
24244 wxPyTreeItemData *result;
24245 PyObject * obj0 = 0 ;
24246 char *kwnames[] = {
24247 (char *) "obj", NULL
24248 };
24249
24250 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:new_TreeItemData",kwnames,&obj0)) goto fail;
24251 if (obj0) {
24252 arg1 = obj0;
24253 }
24254 {
24255 PyThreadState* __tstate = wxPyBeginAllowThreads();
24256 result = (wxPyTreeItemData *)new wxPyTreeItemData(arg1);
24257
24258 wxPyEndAllowThreads(__tstate);
24259 if (PyErr_Occurred()) SWIG_fail;
24260 }
24261 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxPyTreeItemData, 1);
24262 return resultobj;
24263 fail:
24264 return NULL;
24265 }
24266
24267
24268 static PyObject *_wrap_TreeItemData_GetData(PyObject *self, PyObject *args, PyObject *kwargs) {
24269 PyObject *resultobj;
24270 wxPyTreeItemData *arg1 = (wxPyTreeItemData *) 0 ;
24271 PyObject *result;
24272 PyObject * obj0 = 0 ;
24273 char *kwnames[] = {
24274 (char *) "self", NULL
24275 };
24276
24277 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeItemData_GetData",kwnames,&obj0)) goto fail;
24278 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeItemData,
24279 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24280 {
24281 PyThreadState* __tstate = wxPyBeginAllowThreads();
24282 result = (PyObject *)(arg1)->GetData();
24283
24284 wxPyEndAllowThreads(__tstate);
24285 if (PyErr_Occurred()) SWIG_fail;
24286 }
24287 resultobj = result;
24288 return resultobj;
24289 fail:
24290 return NULL;
24291 }
24292
24293
24294 static PyObject *_wrap_TreeItemData_SetData(PyObject *self, PyObject *args, PyObject *kwargs) {
24295 PyObject *resultobj;
24296 wxPyTreeItemData *arg1 = (wxPyTreeItemData *) 0 ;
24297 PyObject *arg2 = (PyObject *) 0 ;
24298 PyObject * obj0 = 0 ;
24299 PyObject * obj1 = 0 ;
24300 char *kwnames[] = {
24301 (char *) "self",(char *) "obj", NULL
24302 };
24303
24304 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeItemData_SetData",kwnames,&obj0,&obj1)) goto fail;
24305 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeItemData,
24306 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24307 arg2 = obj1;
24308 {
24309 PyThreadState* __tstate = wxPyBeginAllowThreads();
24310 (arg1)->SetData(arg2);
24311
24312 wxPyEndAllowThreads(__tstate);
24313 if (PyErr_Occurred()) SWIG_fail;
24314 }
24315 Py_INCREF(Py_None); resultobj = Py_None;
24316 return resultobj;
24317 fail:
24318 return NULL;
24319 }
24320
24321
24322 static PyObject *_wrap_TreeItemData_GetId(PyObject *self, PyObject *args, PyObject *kwargs) {
24323 PyObject *resultobj;
24324 wxPyTreeItemData *arg1 = (wxPyTreeItemData *) 0 ;
24325 wxTreeItemId *result;
24326 PyObject * obj0 = 0 ;
24327 char *kwnames[] = {
24328 (char *) "self", NULL
24329 };
24330
24331 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeItemData_GetId",kwnames,&obj0)) goto fail;
24332 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeItemData,
24333 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24334 {
24335 PyThreadState* __tstate = wxPyBeginAllowThreads();
24336 {
24337 wxTreeItemId const &_result_ref = (arg1)->GetId();
24338 result = (wxTreeItemId *) &_result_ref;
24339 }
24340
24341 wxPyEndAllowThreads(__tstate);
24342 if (PyErr_Occurred()) SWIG_fail;
24343 }
24344 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxTreeItemId, 0);
24345 return resultobj;
24346 fail:
24347 return NULL;
24348 }
24349
24350
24351 static PyObject *_wrap_TreeItemData_SetId(PyObject *self, PyObject *args, PyObject *kwargs) {
24352 PyObject *resultobj;
24353 wxPyTreeItemData *arg1 = (wxPyTreeItemData *) 0 ;
24354 wxTreeItemId *arg2 = 0 ;
24355 PyObject * obj0 = 0 ;
24356 PyObject * obj1 = 0 ;
24357 char *kwnames[] = {
24358 (char *) "self",(char *) "id", NULL
24359 };
24360
24361 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeItemData_SetId",kwnames,&obj0,&obj1)) goto fail;
24362 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeItemData,
24363 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24364 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
24365 SWIG_POINTER_EXCEPTION | 0)) == -1)
24366 SWIG_fail;
24367 if (arg2 == NULL) {
24368 PyErr_SetString(PyExc_TypeError,"null reference");
24369 SWIG_fail;
24370 }
24371 {
24372 PyThreadState* __tstate = wxPyBeginAllowThreads();
24373 (arg1)->SetId((wxTreeItemId const &)*arg2);
24374
24375 wxPyEndAllowThreads(__tstate);
24376 if (PyErr_Occurred()) SWIG_fail;
24377 }
24378 Py_INCREF(Py_None); resultobj = Py_None;
24379 return resultobj;
24380 fail:
24381 return NULL;
24382 }
24383
24384
24385 static PyObject *_wrap_TreeItemData_Destroy(PyObject *self, PyObject *args, PyObject *kwargs) {
24386 PyObject *resultobj;
24387 wxPyTreeItemData *arg1 = (wxPyTreeItemData *) 0 ;
24388 PyObject * obj0 = 0 ;
24389 char *kwnames[] = {
24390 (char *) "self", NULL
24391 };
24392
24393 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeItemData_Destroy",kwnames,&obj0)) goto fail;
24394 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeItemData,
24395 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24396 {
24397 PyThreadState* __tstate = wxPyBeginAllowThreads();
24398 wxPyTreeItemData_Destroy(arg1);
24399
24400 wxPyEndAllowThreads(__tstate);
24401 if (PyErr_Occurred()) SWIG_fail;
24402 }
24403 Py_INCREF(Py_None); resultobj = Py_None;
24404 return resultobj;
24405 fail:
24406 return NULL;
24407 }
24408
24409
24410 static PyObject * TreeItemData_swigregister(PyObject *self, PyObject *args) {
24411 PyObject *obj;
24412 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
24413 SWIG_TypeClientData(SWIGTYPE_p_wxPyTreeItemData, obj);
24414 Py_INCREF(obj);
24415 return Py_BuildValue((char *)"");
24416 }
24417 static PyObject *_wrap_new_TreeEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
24418 PyObject *resultobj;
24419 wxEventType arg1 = (wxEventType) wxEVT_NULL ;
24420 int arg2 = (int) 0 ;
24421 wxTreeEvent *result;
24422 PyObject * obj0 = 0 ;
24423 PyObject * obj1 = 0 ;
24424 char *kwnames[] = {
24425 (char *) "commandType",(char *) "id", NULL
24426 };
24427
24428 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|OO:new_TreeEvent",kwnames,&obj0,&obj1)) goto fail;
24429 if (obj0) {
24430 arg1 = (wxEventType) SWIG_AsInt(obj0);
24431 if (PyErr_Occurred()) SWIG_fail;
24432 }
24433 if (obj1) {
24434 arg2 = (int) SWIG_AsInt(obj1);
24435 if (PyErr_Occurred()) SWIG_fail;
24436 }
24437 {
24438 PyThreadState* __tstate = wxPyBeginAllowThreads();
24439 result = (wxTreeEvent *)new wxTreeEvent(arg1,arg2);
24440
24441 wxPyEndAllowThreads(__tstate);
24442 if (PyErr_Occurred()) SWIG_fail;
24443 }
24444 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxTreeEvent, 1);
24445 return resultobj;
24446 fail:
24447 return NULL;
24448 }
24449
24450
24451 static PyObject *_wrap_TreeEvent_GetItem(PyObject *self, PyObject *args, PyObject *kwargs) {
24452 PyObject *resultobj;
24453 wxTreeEvent *arg1 = (wxTreeEvent *) 0 ;
24454 wxTreeItemId result;
24455 PyObject * obj0 = 0 ;
24456 char *kwnames[] = {
24457 (char *) "self", NULL
24458 };
24459
24460 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeEvent_GetItem",kwnames,&obj0)) goto fail;
24461 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeEvent,
24462 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24463 {
24464 PyThreadState* __tstate = wxPyBeginAllowThreads();
24465 result = ((wxTreeEvent const *)arg1)->GetItem();
24466
24467 wxPyEndAllowThreads(__tstate);
24468 if (PyErr_Occurred()) SWIG_fail;
24469 }
24470 {
24471 wxTreeItemId * resultptr;
24472 resultptr = new wxTreeItemId((wxTreeItemId &) result);
24473 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
24474 }
24475 return resultobj;
24476 fail:
24477 return NULL;
24478 }
24479
24480
24481 static PyObject *_wrap_TreeEvent_SetItem(PyObject *self, PyObject *args, PyObject *kwargs) {
24482 PyObject *resultobj;
24483 wxTreeEvent *arg1 = (wxTreeEvent *) 0 ;
24484 wxTreeItemId *arg2 = 0 ;
24485 PyObject * obj0 = 0 ;
24486 PyObject * obj1 = 0 ;
24487 char *kwnames[] = {
24488 (char *) "self",(char *) "item", NULL
24489 };
24490
24491 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeEvent_SetItem",kwnames,&obj0,&obj1)) goto fail;
24492 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeEvent,
24493 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24494 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
24495 SWIG_POINTER_EXCEPTION | 0)) == -1)
24496 SWIG_fail;
24497 if (arg2 == NULL) {
24498 PyErr_SetString(PyExc_TypeError,"null reference");
24499 SWIG_fail;
24500 }
24501 {
24502 PyThreadState* __tstate = wxPyBeginAllowThreads();
24503 (arg1)->SetItem((wxTreeItemId const &)*arg2);
24504
24505 wxPyEndAllowThreads(__tstate);
24506 if (PyErr_Occurred()) SWIG_fail;
24507 }
24508 Py_INCREF(Py_None); resultobj = Py_None;
24509 return resultobj;
24510 fail:
24511 return NULL;
24512 }
24513
24514
24515 static PyObject *_wrap_TreeEvent_GetOldItem(PyObject *self, PyObject *args, PyObject *kwargs) {
24516 PyObject *resultobj;
24517 wxTreeEvent *arg1 = (wxTreeEvent *) 0 ;
24518 wxTreeItemId result;
24519 PyObject * obj0 = 0 ;
24520 char *kwnames[] = {
24521 (char *) "self", NULL
24522 };
24523
24524 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeEvent_GetOldItem",kwnames,&obj0)) goto fail;
24525 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeEvent,
24526 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24527 {
24528 PyThreadState* __tstate = wxPyBeginAllowThreads();
24529 result = ((wxTreeEvent const *)arg1)->GetOldItem();
24530
24531 wxPyEndAllowThreads(__tstate);
24532 if (PyErr_Occurred()) SWIG_fail;
24533 }
24534 {
24535 wxTreeItemId * resultptr;
24536 resultptr = new wxTreeItemId((wxTreeItemId &) result);
24537 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
24538 }
24539 return resultobj;
24540 fail:
24541 return NULL;
24542 }
24543
24544
24545 static PyObject *_wrap_TreeEvent_SetOldItem(PyObject *self, PyObject *args, PyObject *kwargs) {
24546 PyObject *resultobj;
24547 wxTreeEvent *arg1 = (wxTreeEvent *) 0 ;
24548 wxTreeItemId *arg2 = 0 ;
24549 PyObject * obj0 = 0 ;
24550 PyObject * obj1 = 0 ;
24551 char *kwnames[] = {
24552 (char *) "self",(char *) "item", NULL
24553 };
24554
24555 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeEvent_SetOldItem",kwnames,&obj0,&obj1)) goto fail;
24556 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeEvent,
24557 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24558 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
24559 SWIG_POINTER_EXCEPTION | 0)) == -1)
24560 SWIG_fail;
24561 if (arg2 == NULL) {
24562 PyErr_SetString(PyExc_TypeError,"null reference");
24563 SWIG_fail;
24564 }
24565 {
24566 PyThreadState* __tstate = wxPyBeginAllowThreads();
24567 (arg1)->SetOldItem((wxTreeItemId const &)*arg2);
24568
24569 wxPyEndAllowThreads(__tstate);
24570 if (PyErr_Occurred()) SWIG_fail;
24571 }
24572 Py_INCREF(Py_None); resultobj = Py_None;
24573 return resultobj;
24574 fail:
24575 return NULL;
24576 }
24577
24578
24579 static PyObject *_wrap_TreeEvent_GetPoint(PyObject *self, PyObject *args, PyObject *kwargs) {
24580 PyObject *resultobj;
24581 wxTreeEvent *arg1 = (wxTreeEvent *) 0 ;
24582 wxPoint result;
24583 PyObject * obj0 = 0 ;
24584 char *kwnames[] = {
24585 (char *) "self", NULL
24586 };
24587
24588 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeEvent_GetPoint",kwnames,&obj0)) goto fail;
24589 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeEvent,
24590 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24591 {
24592 PyThreadState* __tstate = wxPyBeginAllowThreads();
24593 result = ((wxTreeEvent const *)arg1)->GetPoint();
24594
24595 wxPyEndAllowThreads(__tstate);
24596 if (PyErr_Occurred()) SWIG_fail;
24597 }
24598 {
24599 wxPoint * resultptr;
24600 resultptr = new wxPoint((wxPoint &) result);
24601 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxPoint, 1);
24602 }
24603 return resultobj;
24604 fail:
24605 return NULL;
24606 }
24607
24608
24609 static PyObject *_wrap_TreeEvent_SetPoint(PyObject *self, PyObject *args, PyObject *kwargs) {
24610 PyObject *resultobj;
24611 wxTreeEvent *arg1 = (wxTreeEvent *) 0 ;
24612 wxPoint *arg2 = 0 ;
24613 wxPoint temp2 ;
24614 PyObject * obj0 = 0 ;
24615 PyObject * obj1 = 0 ;
24616 char *kwnames[] = {
24617 (char *) "self",(char *) "pt", NULL
24618 };
24619
24620 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeEvent_SetPoint",kwnames,&obj0,&obj1)) goto fail;
24621 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeEvent,
24622 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24623 {
24624 arg2 = &temp2;
24625 if ( ! wxPoint_helper(obj1, &arg2)) SWIG_fail;
24626 }
24627 {
24628 PyThreadState* __tstate = wxPyBeginAllowThreads();
24629 (arg1)->SetPoint((wxPoint const &)*arg2);
24630
24631 wxPyEndAllowThreads(__tstate);
24632 if (PyErr_Occurred()) SWIG_fail;
24633 }
24634 Py_INCREF(Py_None); resultobj = Py_None;
24635 return resultobj;
24636 fail:
24637 return NULL;
24638 }
24639
24640
24641 static PyObject *_wrap_TreeEvent_GetKeyEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
24642 PyObject *resultobj;
24643 wxTreeEvent *arg1 = (wxTreeEvent *) 0 ;
24644 wxKeyEvent *result;
24645 PyObject * obj0 = 0 ;
24646 char *kwnames[] = {
24647 (char *) "self", NULL
24648 };
24649
24650 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeEvent_GetKeyEvent",kwnames,&obj0)) goto fail;
24651 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeEvent,
24652 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24653 {
24654 PyThreadState* __tstate = wxPyBeginAllowThreads();
24655 {
24656 wxKeyEvent const &_result_ref = ((wxTreeEvent const *)arg1)->GetKeyEvent();
24657 result = (wxKeyEvent *) &_result_ref;
24658 }
24659
24660 wxPyEndAllowThreads(__tstate);
24661 if (PyErr_Occurred()) SWIG_fail;
24662 }
24663 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxKeyEvent, 0);
24664 return resultobj;
24665 fail:
24666 return NULL;
24667 }
24668
24669
24670 static PyObject *_wrap_TreeEvent_GetKeyCode(PyObject *self, PyObject *args, PyObject *kwargs) {
24671 PyObject *resultobj;
24672 wxTreeEvent *arg1 = (wxTreeEvent *) 0 ;
24673 int result;
24674 PyObject * obj0 = 0 ;
24675 char *kwnames[] = {
24676 (char *) "self", NULL
24677 };
24678
24679 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeEvent_GetKeyCode",kwnames,&obj0)) goto fail;
24680 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeEvent,
24681 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24682 {
24683 PyThreadState* __tstate = wxPyBeginAllowThreads();
24684 result = (int)((wxTreeEvent const *)arg1)->GetKeyCode();
24685
24686 wxPyEndAllowThreads(__tstate);
24687 if (PyErr_Occurred()) SWIG_fail;
24688 }
24689 resultobj = SWIG_FromInt((int)result);
24690 return resultobj;
24691 fail:
24692 return NULL;
24693 }
24694
24695
24696 static PyObject *_wrap_TreeEvent_SetKeyEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
24697 PyObject *resultobj;
24698 wxTreeEvent *arg1 = (wxTreeEvent *) 0 ;
24699 wxKeyEvent *arg2 = 0 ;
24700 PyObject * obj0 = 0 ;
24701 PyObject * obj1 = 0 ;
24702 char *kwnames[] = {
24703 (char *) "self",(char *) "evt", NULL
24704 };
24705
24706 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeEvent_SetKeyEvent",kwnames,&obj0,&obj1)) goto fail;
24707 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeEvent,
24708 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24709 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxKeyEvent,
24710 SWIG_POINTER_EXCEPTION | 0)) == -1)
24711 SWIG_fail;
24712 if (arg2 == NULL) {
24713 PyErr_SetString(PyExc_TypeError,"null reference");
24714 SWIG_fail;
24715 }
24716 {
24717 PyThreadState* __tstate = wxPyBeginAllowThreads();
24718 (arg1)->SetKeyEvent((wxKeyEvent const &)*arg2);
24719
24720 wxPyEndAllowThreads(__tstate);
24721 if (PyErr_Occurred()) SWIG_fail;
24722 }
24723 Py_INCREF(Py_None); resultobj = Py_None;
24724 return resultobj;
24725 fail:
24726 return NULL;
24727 }
24728
24729
24730 static PyObject *_wrap_TreeEvent_GetLabel(PyObject *self, PyObject *args, PyObject *kwargs) {
24731 PyObject *resultobj;
24732 wxTreeEvent *arg1 = (wxTreeEvent *) 0 ;
24733 wxString *result;
24734 PyObject * obj0 = 0 ;
24735 char *kwnames[] = {
24736 (char *) "self", NULL
24737 };
24738
24739 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeEvent_GetLabel",kwnames,&obj0)) goto fail;
24740 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeEvent,
24741 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24742 {
24743 PyThreadState* __tstate = wxPyBeginAllowThreads();
24744 {
24745 wxString const &_result_ref = ((wxTreeEvent const *)arg1)->GetLabel();
24746 result = (wxString *) &_result_ref;
24747 }
24748
24749 wxPyEndAllowThreads(__tstate);
24750 if (PyErr_Occurred()) SWIG_fail;
24751 }
24752 {
24753 #if wxUSE_UNICODE
24754 resultobj = PyUnicode_FromWideChar(result->c_str(), result->Len());
24755 #else
24756 resultobj = PyString_FromStringAndSize(result->c_str(), result->Len());
24757 #endif
24758 }
24759 return resultobj;
24760 fail:
24761 return NULL;
24762 }
24763
24764
24765 static PyObject *_wrap_TreeEvent_SetLabel(PyObject *self, PyObject *args, PyObject *kwargs) {
24766 PyObject *resultobj;
24767 wxTreeEvent *arg1 = (wxTreeEvent *) 0 ;
24768 wxString *arg2 = 0 ;
24769 bool temp2 = False ;
24770 PyObject * obj0 = 0 ;
24771 PyObject * obj1 = 0 ;
24772 char *kwnames[] = {
24773 (char *) "self",(char *) "label", NULL
24774 };
24775
24776 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeEvent_SetLabel",kwnames,&obj0,&obj1)) goto fail;
24777 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeEvent,
24778 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24779 {
24780 arg2 = wxString_in_helper(obj1);
24781 if (arg2 == NULL) SWIG_fail;
24782 temp2 = True;
24783 }
24784 {
24785 PyThreadState* __tstate = wxPyBeginAllowThreads();
24786 (arg1)->SetLabel((wxString const &)*arg2);
24787
24788 wxPyEndAllowThreads(__tstate);
24789 if (PyErr_Occurred()) SWIG_fail;
24790 }
24791 Py_INCREF(Py_None); resultobj = Py_None;
24792 {
24793 if (temp2)
24794 delete arg2;
24795 }
24796 return resultobj;
24797 fail:
24798 {
24799 if (temp2)
24800 delete arg2;
24801 }
24802 return NULL;
24803 }
24804
24805
24806 static PyObject *_wrap_TreeEvent_IsEditCancelled(PyObject *self, PyObject *args, PyObject *kwargs) {
24807 PyObject *resultobj;
24808 wxTreeEvent *arg1 = (wxTreeEvent *) 0 ;
24809 bool result;
24810 PyObject * obj0 = 0 ;
24811 char *kwnames[] = {
24812 (char *) "self", NULL
24813 };
24814
24815 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeEvent_IsEditCancelled",kwnames,&obj0)) goto fail;
24816 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeEvent,
24817 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24818 {
24819 PyThreadState* __tstate = wxPyBeginAllowThreads();
24820 result = (bool)((wxTreeEvent const *)arg1)->IsEditCancelled();
24821
24822 wxPyEndAllowThreads(__tstate);
24823 if (PyErr_Occurred()) SWIG_fail;
24824 }
24825 {
24826 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
24827 }
24828 return resultobj;
24829 fail:
24830 return NULL;
24831 }
24832
24833
24834 static PyObject *_wrap_TreeEvent_SetEditCanceled(PyObject *self, PyObject *args, PyObject *kwargs) {
24835 PyObject *resultobj;
24836 wxTreeEvent *arg1 = (wxTreeEvent *) 0 ;
24837 bool arg2 ;
24838 PyObject * obj0 = 0 ;
24839 PyObject * obj1 = 0 ;
24840 char *kwnames[] = {
24841 (char *) "self",(char *) "editCancelled", NULL
24842 };
24843
24844 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeEvent_SetEditCanceled",kwnames,&obj0,&obj1)) goto fail;
24845 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeEvent,
24846 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24847 arg2 = (bool) SWIG_AsBool(obj1);
24848 if (PyErr_Occurred()) SWIG_fail;
24849 {
24850 PyThreadState* __tstate = wxPyBeginAllowThreads();
24851 (arg1)->SetEditCanceled(arg2);
24852
24853 wxPyEndAllowThreads(__tstate);
24854 if (PyErr_Occurred()) SWIG_fail;
24855 }
24856 Py_INCREF(Py_None); resultobj = Py_None;
24857 return resultobj;
24858 fail:
24859 return NULL;
24860 }
24861
24862
24863 static PyObject *_wrap_TreeEvent_SetToolTip(PyObject *self, PyObject *args, PyObject *kwargs) {
24864 PyObject *resultobj;
24865 wxTreeEvent *arg1 = (wxTreeEvent *) 0 ;
24866 wxString *arg2 = 0 ;
24867 bool temp2 = False ;
24868 PyObject * obj0 = 0 ;
24869 PyObject * obj1 = 0 ;
24870 char *kwnames[] = {
24871 (char *) "self",(char *) "toolTip", NULL
24872 };
24873
24874 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeEvent_SetToolTip",kwnames,&obj0,&obj1)) goto fail;
24875 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxTreeEvent,
24876 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24877 {
24878 arg2 = wxString_in_helper(obj1);
24879 if (arg2 == NULL) SWIG_fail;
24880 temp2 = True;
24881 }
24882 {
24883 PyThreadState* __tstate = wxPyBeginAllowThreads();
24884 (arg1)->SetToolTip((wxString const &)*arg2);
24885
24886 wxPyEndAllowThreads(__tstate);
24887 if (PyErr_Occurred()) SWIG_fail;
24888 }
24889 Py_INCREF(Py_None); resultobj = Py_None;
24890 {
24891 if (temp2)
24892 delete arg2;
24893 }
24894 return resultobj;
24895 fail:
24896 {
24897 if (temp2)
24898 delete arg2;
24899 }
24900 return NULL;
24901 }
24902
24903
24904 static PyObject * TreeEvent_swigregister(PyObject *self, PyObject *args) {
24905 PyObject *obj;
24906 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
24907 SWIG_TypeClientData(SWIGTYPE_p_wxTreeEvent, obj);
24908 Py_INCREF(obj);
24909 return Py_BuildValue((char *)"");
24910 }
24911 static PyObject *_wrap_new_TreeCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
24912 PyObject *resultobj;
24913 wxWindow *arg1 = (wxWindow *) 0 ;
24914 int arg2 = (int) -1 ;
24915 wxPoint const &arg3_defvalue = wxDefaultPosition ;
24916 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
24917 wxSize const &arg4_defvalue = wxDefaultSize ;
24918 wxSize *arg4 = (wxSize *) &arg4_defvalue ;
24919 long arg5 = (long) wxTR_DEFAULT_STYLE ;
24920 wxValidator const &arg6_defvalue = wxDefaultValidator ;
24921 wxValidator *arg6 = (wxValidator *) &arg6_defvalue ;
24922 wxString const &arg7_defvalue = wxPyTreeCtrlNameStr ;
24923 wxString *arg7 = (wxString *) &arg7_defvalue ;
24924 wxPyTreeCtrl *result;
24925 wxPoint temp3 ;
24926 wxSize temp4 ;
24927 bool temp7 = False ;
24928 PyObject * obj0 = 0 ;
24929 PyObject * obj1 = 0 ;
24930 PyObject * obj2 = 0 ;
24931 PyObject * obj3 = 0 ;
24932 PyObject * obj4 = 0 ;
24933 PyObject * obj5 = 0 ;
24934 PyObject * obj6 = 0 ;
24935 char *kwnames[] = {
24936 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
24937 };
24938
24939 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOO:new_TreeCtrl",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
24940 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
24941 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
24942 if (obj1) {
24943 arg2 = (int) SWIG_AsInt(obj1);
24944 if (PyErr_Occurred()) SWIG_fail;
24945 }
24946 if (obj2) {
24947 {
24948 arg3 = &temp3;
24949 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
24950 }
24951 }
24952 if (obj3) {
24953 {
24954 arg4 = &temp4;
24955 if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
24956 }
24957 }
24958 if (obj4) {
24959 arg5 = (long) SWIG_AsLong(obj4);
24960 if (PyErr_Occurred()) SWIG_fail;
24961 }
24962 if (obj5) {
24963 if ((SWIG_ConvertPtr(obj5,(void **)(&arg6),SWIGTYPE_p_wxValidator,
24964 SWIG_POINTER_EXCEPTION | 0)) == -1)
24965 SWIG_fail;
24966 if (arg6 == NULL) {
24967 PyErr_SetString(PyExc_TypeError,"null reference");
24968 SWIG_fail;
24969 }
24970 }
24971 if (obj6) {
24972 {
24973 arg7 = wxString_in_helper(obj6);
24974 if (arg7 == NULL) SWIG_fail;
24975 temp7 = True;
24976 }
24977 }
24978 {
24979 if (!wxPyCheckForApp()) SWIG_fail;
24980 PyThreadState* __tstate = wxPyBeginAllowThreads();
24981 result = (wxPyTreeCtrl *)new wxPyTreeCtrl(arg1,arg2,(wxPoint const &)*arg3,(wxSize const &)*arg4,arg5,(wxValidator const &)*arg6,(wxString const &)*arg7);
24982
24983 wxPyEndAllowThreads(__tstate);
24984 if (PyErr_Occurred()) SWIG_fail;
24985 }
24986 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxPyTreeCtrl, 1);
24987 {
24988 if (temp7)
24989 delete arg7;
24990 }
24991 return resultobj;
24992 fail:
24993 {
24994 if (temp7)
24995 delete arg7;
24996 }
24997 return NULL;
24998 }
24999
25000
25001 static PyObject *_wrap_new_PreTreeCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
25002 PyObject *resultobj;
25003 wxPyTreeCtrl *result;
25004 char *kwnames[] = {
25005 NULL
25006 };
25007
25008 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreTreeCtrl",kwnames)) goto fail;
25009 {
25010 if (!wxPyCheckForApp()) SWIG_fail;
25011 PyThreadState* __tstate = wxPyBeginAllowThreads();
25012 result = (wxPyTreeCtrl *)new wxPyTreeCtrl();
25013
25014 wxPyEndAllowThreads(__tstate);
25015 if (PyErr_Occurred()) SWIG_fail;
25016 }
25017 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxPyTreeCtrl, 1);
25018 return resultobj;
25019 fail:
25020 return NULL;
25021 }
25022
25023
25024 static PyObject *_wrap_TreeCtrl_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
25025 PyObject *resultobj;
25026 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25027 wxWindow *arg2 = (wxWindow *) 0 ;
25028 int arg3 = (int) -1 ;
25029 wxPoint const &arg4_defvalue = wxDefaultPosition ;
25030 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
25031 wxSize const &arg5_defvalue = wxDefaultSize ;
25032 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
25033 long arg6 = (long) wxTR_DEFAULT_STYLE ;
25034 wxValidator const &arg7_defvalue = wxDefaultValidator ;
25035 wxValidator *arg7 = (wxValidator *) &arg7_defvalue ;
25036 wxString const &arg8_defvalue = wxPyTreeCtrlNameStr ;
25037 wxString *arg8 = (wxString *) &arg8_defvalue ;
25038 bool result;
25039 wxPoint temp4 ;
25040 wxSize temp5 ;
25041 bool temp8 = False ;
25042 PyObject * obj0 = 0 ;
25043 PyObject * obj1 = 0 ;
25044 PyObject * obj2 = 0 ;
25045 PyObject * obj3 = 0 ;
25046 PyObject * obj4 = 0 ;
25047 PyObject * obj5 = 0 ;
25048 PyObject * obj6 = 0 ;
25049 PyObject * obj7 = 0 ;
25050 char *kwnames[] = {
25051 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
25052 };
25053
25054 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOO:TreeCtrl_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
25055 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25056 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25057 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
25058 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25059 if (obj2) {
25060 arg3 = (int) SWIG_AsInt(obj2);
25061 if (PyErr_Occurred()) SWIG_fail;
25062 }
25063 if (obj3) {
25064 {
25065 arg4 = &temp4;
25066 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
25067 }
25068 }
25069 if (obj4) {
25070 {
25071 arg5 = &temp5;
25072 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
25073 }
25074 }
25075 if (obj5) {
25076 arg6 = (long) SWIG_AsLong(obj5);
25077 if (PyErr_Occurred()) SWIG_fail;
25078 }
25079 if (obj6) {
25080 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxValidator,
25081 SWIG_POINTER_EXCEPTION | 0)) == -1)
25082 SWIG_fail;
25083 if (arg7 == NULL) {
25084 PyErr_SetString(PyExc_TypeError,"null reference");
25085 SWIG_fail;
25086 }
25087 }
25088 if (obj7) {
25089 {
25090 arg8 = wxString_in_helper(obj7);
25091 if (arg8 == NULL) SWIG_fail;
25092 temp8 = True;
25093 }
25094 }
25095 {
25096 PyThreadState* __tstate = wxPyBeginAllowThreads();
25097 result = (bool)(arg1)->Create(arg2,arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxValidator const &)*arg7,(wxString const &)*arg8);
25098
25099 wxPyEndAllowThreads(__tstate);
25100 if (PyErr_Occurred()) SWIG_fail;
25101 }
25102 {
25103 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
25104 }
25105 {
25106 if (temp8)
25107 delete arg8;
25108 }
25109 return resultobj;
25110 fail:
25111 {
25112 if (temp8)
25113 delete arg8;
25114 }
25115 return NULL;
25116 }
25117
25118
25119 static PyObject *_wrap_TreeCtrl__setCallbackInfo(PyObject *self, PyObject *args, PyObject *kwargs) {
25120 PyObject *resultobj;
25121 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25122 PyObject *arg2 = (PyObject *) 0 ;
25123 PyObject *arg3 = (PyObject *) 0 ;
25124 PyObject * obj0 = 0 ;
25125 PyObject * obj1 = 0 ;
25126 PyObject * obj2 = 0 ;
25127 char *kwnames[] = {
25128 (char *) "self",(char *) "self",(char *) "_class", NULL
25129 };
25130
25131 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:TreeCtrl__setCallbackInfo",kwnames,&obj0,&obj1,&obj2)) goto fail;
25132 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25133 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25134 arg2 = obj1;
25135 arg3 = obj2;
25136 {
25137 PyThreadState* __tstate = wxPyBeginAllowThreads();
25138 (arg1)->_setCallbackInfo(arg2,arg3);
25139
25140 wxPyEndAllowThreads(__tstate);
25141 if (PyErr_Occurred()) SWIG_fail;
25142 }
25143 Py_INCREF(Py_None); resultobj = Py_None;
25144 return resultobj;
25145 fail:
25146 return NULL;
25147 }
25148
25149
25150 static PyObject *_wrap_TreeCtrl_GetCount(PyObject *self, PyObject *args, PyObject *kwargs) {
25151 PyObject *resultobj;
25152 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25153 size_t result;
25154 PyObject * obj0 = 0 ;
25155 char *kwnames[] = {
25156 (char *) "self", NULL
25157 };
25158
25159 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeCtrl_GetCount",kwnames,&obj0)) goto fail;
25160 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25161 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25162 {
25163 PyThreadState* __tstate = wxPyBeginAllowThreads();
25164 result = (size_t)((wxPyTreeCtrl const *)arg1)->GetCount();
25165
25166 wxPyEndAllowThreads(__tstate);
25167 if (PyErr_Occurred()) SWIG_fail;
25168 }
25169 resultobj = SWIG_FromUnsignedLong((unsigned long)result);
25170 return resultobj;
25171 fail:
25172 return NULL;
25173 }
25174
25175
25176 static PyObject *_wrap_TreeCtrl_GetIndent(PyObject *self, PyObject *args, PyObject *kwargs) {
25177 PyObject *resultobj;
25178 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25179 unsigned int result;
25180 PyObject * obj0 = 0 ;
25181 char *kwnames[] = {
25182 (char *) "self", NULL
25183 };
25184
25185 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeCtrl_GetIndent",kwnames,&obj0)) goto fail;
25186 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25187 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25188 {
25189 PyThreadState* __tstate = wxPyBeginAllowThreads();
25190 result = (unsigned int)((wxPyTreeCtrl const *)arg1)->GetIndent();
25191
25192 wxPyEndAllowThreads(__tstate);
25193 if (PyErr_Occurred()) SWIG_fail;
25194 }
25195 resultobj = SWIG_FromUnsignedInt((unsigned int)result);
25196 return resultobj;
25197 fail:
25198 return NULL;
25199 }
25200
25201
25202 static PyObject *_wrap_TreeCtrl_SetIndent(PyObject *self, PyObject *args, PyObject *kwargs) {
25203 PyObject *resultobj;
25204 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25205 unsigned int arg2 ;
25206 PyObject * obj0 = 0 ;
25207 PyObject * obj1 = 0 ;
25208 char *kwnames[] = {
25209 (char *) "self",(char *) "indent", NULL
25210 };
25211
25212 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_SetIndent",kwnames,&obj0,&obj1)) goto fail;
25213 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25214 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25215 arg2 = (unsigned int) SWIG_AsUnsignedInt(obj1);
25216 if (PyErr_Occurred()) SWIG_fail;
25217 {
25218 PyThreadState* __tstate = wxPyBeginAllowThreads();
25219 (arg1)->SetIndent(arg2);
25220
25221 wxPyEndAllowThreads(__tstate);
25222 if (PyErr_Occurred()) SWIG_fail;
25223 }
25224 Py_INCREF(Py_None); resultobj = Py_None;
25225 return resultobj;
25226 fail:
25227 return NULL;
25228 }
25229
25230
25231 static PyObject *_wrap_TreeCtrl_GetSpacing(PyObject *self, PyObject *args, PyObject *kwargs) {
25232 PyObject *resultobj;
25233 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25234 unsigned int result;
25235 PyObject * obj0 = 0 ;
25236 char *kwnames[] = {
25237 (char *) "self", NULL
25238 };
25239
25240 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeCtrl_GetSpacing",kwnames,&obj0)) goto fail;
25241 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25242 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25243 {
25244 PyThreadState* __tstate = wxPyBeginAllowThreads();
25245 result = (unsigned int)((wxPyTreeCtrl const *)arg1)->GetSpacing();
25246
25247 wxPyEndAllowThreads(__tstate);
25248 if (PyErr_Occurred()) SWIG_fail;
25249 }
25250 resultobj = SWIG_FromUnsignedInt((unsigned int)result);
25251 return resultobj;
25252 fail:
25253 return NULL;
25254 }
25255
25256
25257 static PyObject *_wrap_TreeCtrl_SetSpacing(PyObject *self, PyObject *args, PyObject *kwargs) {
25258 PyObject *resultobj;
25259 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25260 unsigned int arg2 ;
25261 PyObject * obj0 = 0 ;
25262 PyObject * obj1 = 0 ;
25263 char *kwnames[] = {
25264 (char *) "self",(char *) "spacing", NULL
25265 };
25266
25267 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_SetSpacing",kwnames,&obj0,&obj1)) goto fail;
25268 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25269 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25270 arg2 = (unsigned int) SWIG_AsUnsignedInt(obj1);
25271 if (PyErr_Occurred()) SWIG_fail;
25272 {
25273 PyThreadState* __tstate = wxPyBeginAllowThreads();
25274 (arg1)->SetSpacing(arg2);
25275
25276 wxPyEndAllowThreads(__tstate);
25277 if (PyErr_Occurred()) SWIG_fail;
25278 }
25279 Py_INCREF(Py_None); resultobj = Py_None;
25280 return resultobj;
25281 fail:
25282 return NULL;
25283 }
25284
25285
25286 static PyObject *_wrap_TreeCtrl_GetImageList(PyObject *self, PyObject *args, PyObject *kwargs) {
25287 PyObject *resultobj;
25288 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25289 wxImageList *result;
25290 PyObject * obj0 = 0 ;
25291 char *kwnames[] = {
25292 (char *) "self", NULL
25293 };
25294
25295 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeCtrl_GetImageList",kwnames,&obj0)) goto fail;
25296 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25297 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25298 {
25299 PyThreadState* __tstate = wxPyBeginAllowThreads();
25300 result = (wxImageList *)((wxPyTreeCtrl const *)arg1)->GetImageList();
25301
25302 wxPyEndAllowThreads(__tstate);
25303 if (PyErr_Occurred()) SWIG_fail;
25304 }
25305 {
25306 resultobj = wxPyMake_wxObject(result, 0);
25307 }
25308 return resultobj;
25309 fail:
25310 return NULL;
25311 }
25312
25313
25314 static PyObject *_wrap_TreeCtrl_GetStateImageList(PyObject *self, PyObject *args, PyObject *kwargs) {
25315 PyObject *resultobj;
25316 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25317 wxImageList *result;
25318 PyObject * obj0 = 0 ;
25319 char *kwnames[] = {
25320 (char *) "self", NULL
25321 };
25322
25323 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeCtrl_GetStateImageList",kwnames,&obj0)) goto fail;
25324 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25325 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25326 {
25327 PyThreadState* __tstate = wxPyBeginAllowThreads();
25328 result = (wxImageList *)((wxPyTreeCtrl const *)arg1)->GetStateImageList();
25329
25330 wxPyEndAllowThreads(__tstate);
25331 if (PyErr_Occurred()) SWIG_fail;
25332 }
25333 {
25334 resultobj = wxPyMake_wxObject(result, 0);
25335 }
25336 return resultobj;
25337 fail:
25338 return NULL;
25339 }
25340
25341
25342 static PyObject *_wrap_TreeCtrl_SetImageList(PyObject *self, PyObject *args, PyObject *kwargs) {
25343 PyObject *resultobj;
25344 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25345 wxImageList *arg2 = (wxImageList *) 0 ;
25346 PyObject * obj0 = 0 ;
25347 PyObject * obj1 = 0 ;
25348 char *kwnames[] = {
25349 (char *) "self",(char *) "imageList", NULL
25350 };
25351
25352 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_SetImageList",kwnames,&obj0,&obj1)) goto fail;
25353 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25354 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25355 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxImageList,
25356 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25357 {
25358 PyThreadState* __tstate = wxPyBeginAllowThreads();
25359 (arg1)->SetImageList(arg2);
25360
25361 wxPyEndAllowThreads(__tstate);
25362 if (PyErr_Occurred()) SWIG_fail;
25363 }
25364 Py_INCREF(Py_None); resultobj = Py_None;
25365 return resultobj;
25366 fail:
25367 return NULL;
25368 }
25369
25370
25371 static PyObject *_wrap_TreeCtrl_SetStateImageList(PyObject *self, PyObject *args, PyObject *kwargs) {
25372 PyObject *resultobj;
25373 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25374 wxImageList *arg2 = (wxImageList *) 0 ;
25375 PyObject * obj0 = 0 ;
25376 PyObject * obj1 = 0 ;
25377 char *kwnames[] = {
25378 (char *) "self",(char *) "imageList", NULL
25379 };
25380
25381 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_SetStateImageList",kwnames,&obj0,&obj1)) goto fail;
25382 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25383 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25384 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxImageList,
25385 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25386 {
25387 PyThreadState* __tstate = wxPyBeginAllowThreads();
25388 (arg1)->SetStateImageList(arg2);
25389
25390 wxPyEndAllowThreads(__tstate);
25391 if (PyErr_Occurred()) SWIG_fail;
25392 }
25393 Py_INCREF(Py_None); resultobj = Py_None;
25394 return resultobj;
25395 fail:
25396 return NULL;
25397 }
25398
25399
25400 static PyObject *_wrap_TreeCtrl_AssignImageList(PyObject *self, PyObject *args, PyObject *kwargs) {
25401 PyObject *resultobj;
25402 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25403 wxImageList *arg2 = (wxImageList *) 0 ;
25404 PyObject * obj0 = 0 ;
25405 PyObject * obj1 = 0 ;
25406 char *kwnames[] = {
25407 (char *) "self",(char *) "imageList", NULL
25408 };
25409
25410 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_AssignImageList",kwnames,&obj0,&obj1)) goto fail;
25411 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25412 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25413 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxImageList,
25414 SWIG_POINTER_EXCEPTION | SWIG_POINTER_DISOWN)) == -1) SWIG_fail;
25415 {
25416 PyThreadState* __tstate = wxPyBeginAllowThreads();
25417 (arg1)->AssignImageList(arg2);
25418
25419 wxPyEndAllowThreads(__tstate);
25420 if (PyErr_Occurred()) SWIG_fail;
25421 }
25422 Py_INCREF(Py_None); resultobj = Py_None;
25423 return resultobj;
25424 fail:
25425 return NULL;
25426 }
25427
25428
25429 static PyObject *_wrap_TreeCtrl_AssignStateImageList(PyObject *self, PyObject *args, PyObject *kwargs) {
25430 PyObject *resultobj;
25431 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25432 wxImageList *arg2 = (wxImageList *) 0 ;
25433 PyObject * obj0 = 0 ;
25434 PyObject * obj1 = 0 ;
25435 char *kwnames[] = {
25436 (char *) "self",(char *) "imageList", NULL
25437 };
25438
25439 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_AssignStateImageList",kwnames,&obj0,&obj1)) goto fail;
25440 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25441 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25442 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxImageList,
25443 SWIG_POINTER_EXCEPTION | SWIG_POINTER_DISOWN)) == -1) SWIG_fail;
25444 {
25445 PyThreadState* __tstate = wxPyBeginAllowThreads();
25446 (arg1)->AssignStateImageList(arg2);
25447
25448 wxPyEndAllowThreads(__tstate);
25449 if (PyErr_Occurred()) SWIG_fail;
25450 }
25451 Py_INCREF(Py_None); resultobj = Py_None;
25452 return resultobj;
25453 fail:
25454 return NULL;
25455 }
25456
25457
25458 static PyObject *_wrap_TreeCtrl_GetItemText(PyObject *self, PyObject *args, PyObject *kwargs) {
25459 PyObject *resultobj;
25460 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25461 wxTreeItemId *arg2 = 0 ;
25462 wxString result;
25463 PyObject * obj0 = 0 ;
25464 PyObject * obj1 = 0 ;
25465 char *kwnames[] = {
25466 (char *) "self",(char *) "item", NULL
25467 };
25468
25469 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_GetItemText",kwnames,&obj0,&obj1)) goto fail;
25470 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25471 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25472 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
25473 SWIG_POINTER_EXCEPTION | 0)) == -1)
25474 SWIG_fail;
25475 if (arg2 == NULL) {
25476 PyErr_SetString(PyExc_TypeError,"null reference");
25477 SWIG_fail;
25478 }
25479 {
25480 PyThreadState* __tstate = wxPyBeginAllowThreads();
25481 result = ((wxPyTreeCtrl const *)arg1)->GetItemText((wxTreeItemId const &)*arg2);
25482
25483 wxPyEndAllowThreads(__tstate);
25484 if (PyErr_Occurred()) SWIG_fail;
25485 }
25486 {
25487 #if wxUSE_UNICODE
25488 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
25489 #else
25490 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
25491 #endif
25492 }
25493 return resultobj;
25494 fail:
25495 return NULL;
25496 }
25497
25498
25499 static PyObject *_wrap_TreeCtrl_GetItemImage(PyObject *self, PyObject *args, PyObject *kwargs) {
25500 PyObject *resultobj;
25501 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25502 wxTreeItemId *arg2 = 0 ;
25503 int arg3 = (int) wxTreeItemIcon_Normal ;
25504 int result;
25505 PyObject * obj0 = 0 ;
25506 PyObject * obj1 = 0 ;
25507 PyObject * obj2 = 0 ;
25508 char *kwnames[] = {
25509 (char *) "self",(char *) "item",(char *) "which", NULL
25510 };
25511
25512 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:TreeCtrl_GetItemImage",kwnames,&obj0,&obj1,&obj2)) goto fail;
25513 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25514 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25515 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
25516 SWIG_POINTER_EXCEPTION | 0)) == -1)
25517 SWIG_fail;
25518 if (arg2 == NULL) {
25519 PyErr_SetString(PyExc_TypeError,"null reference");
25520 SWIG_fail;
25521 }
25522 if (obj2) {
25523 arg3 = (wxTreeItemIcon) SWIG_AsInt(obj2);
25524 if (PyErr_Occurred()) SWIG_fail;
25525 }
25526 {
25527 PyThreadState* __tstate = wxPyBeginAllowThreads();
25528 result = (int)((wxPyTreeCtrl const *)arg1)->GetItemImage((wxTreeItemId const &)*arg2,(wxTreeItemIcon )arg3);
25529
25530 wxPyEndAllowThreads(__tstate);
25531 if (PyErr_Occurred()) SWIG_fail;
25532 }
25533 resultobj = SWIG_FromInt((int)result);
25534 return resultobj;
25535 fail:
25536 return NULL;
25537 }
25538
25539
25540 static PyObject *_wrap_TreeCtrl_GetItemData(PyObject *self, PyObject *args, PyObject *kwargs) {
25541 PyObject *resultobj;
25542 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25543 wxTreeItemId *arg2 = 0 ;
25544 wxPyTreeItemData *result;
25545 PyObject * obj0 = 0 ;
25546 PyObject * obj1 = 0 ;
25547 char *kwnames[] = {
25548 (char *) "self",(char *) "item", NULL
25549 };
25550
25551 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_GetItemData",kwnames,&obj0,&obj1)) goto fail;
25552 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25553 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25554 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
25555 SWIG_POINTER_EXCEPTION | 0)) == -1)
25556 SWIG_fail;
25557 if (arg2 == NULL) {
25558 PyErr_SetString(PyExc_TypeError,"null reference");
25559 SWIG_fail;
25560 }
25561 {
25562 PyThreadState* __tstate = wxPyBeginAllowThreads();
25563 result = (wxPyTreeItemData *)wxPyTreeCtrl_GetItemData(arg1,(wxTreeItemId const &)*arg2);
25564
25565 wxPyEndAllowThreads(__tstate);
25566 if (PyErr_Occurred()) SWIG_fail;
25567 }
25568 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxPyTreeItemData, 0);
25569 return resultobj;
25570 fail:
25571 return NULL;
25572 }
25573
25574
25575 static PyObject *_wrap_TreeCtrl_GetItemPyData(PyObject *self, PyObject *args, PyObject *kwargs) {
25576 PyObject *resultobj;
25577 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25578 wxTreeItemId *arg2 = 0 ;
25579 PyObject *result;
25580 PyObject * obj0 = 0 ;
25581 PyObject * obj1 = 0 ;
25582 char *kwnames[] = {
25583 (char *) "self",(char *) "item", NULL
25584 };
25585
25586 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_GetItemPyData",kwnames,&obj0,&obj1)) goto fail;
25587 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25588 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25589 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
25590 SWIG_POINTER_EXCEPTION | 0)) == -1)
25591 SWIG_fail;
25592 if (arg2 == NULL) {
25593 PyErr_SetString(PyExc_TypeError,"null reference");
25594 SWIG_fail;
25595 }
25596 {
25597 PyThreadState* __tstate = wxPyBeginAllowThreads();
25598 result = (PyObject *)wxPyTreeCtrl_GetItemPyData(arg1,(wxTreeItemId const &)*arg2);
25599
25600 wxPyEndAllowThreads(__tstate);
25601 if (PyErr_Occurred()) SWIG_fail;
25602 }
25603 resultobj = result;
25604 return resultobj;
25605 fail:
25606 return NULL;
25607 }
25608
25609
25610 static PyObject *_wrap_TreeCtrl_GetItemTextColour(PyObject *self, PyObject *args, PyObject *kwargs) {
25611 PyObject *resultobj;
25612 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25613 wxTreeItemId *arg2 = 0 ;
25614 wxColour result;
25615 PyObject * obj0 = 0 ;
25616 PyObject * obj1 = 0 ;
25617 char *kwnames[] = {
25618 (char *) "self",(char *) "item", NULL
25619 };
25620
25621 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_GetItemTextColour",kwnames,&obj0,&obj1)) goto fail;
25622 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25623 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25624 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
25625 SWIG_POINTER_EXCEPTION | 0)) == -1)
25626 SWIG_fail;
25627 if (arg2 == NULL) {
25628 PyErr_SetString(PyExc_TypeError,"null reference");
25629 SWIG_fail;
25630 }
25631 {
25632 PyThreadState* __tstate = wxPyBeginAllowThreads();
25633 result = ((wxPyTreeCtrl const *)arg1)->GetItemTextColour((wxTreeItemId const &)*arg2);
25634
25635 wxPyEndAllowThreads(__tstate);
25636 if (PyErr_Occurred()) SWIG_fail;
25637 }
25638 {
25639 wxColour * resultptr;
25640 resultptr = new wxColour((wxColour &) result);
25641 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxColour, 1);
25642 }
25643 return resultobj;
25644 fail:
25645 return NULL;
25646 }
25647
25648
25649 static PyObject *_wrap_TreeCtrl_GetItemBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
25650 PyObject *resultobj;
25651 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25652 wxTreeItemId *arg2 = 0 ;
25653 wxColour result;
25654 PyObject * obj0 = 0 ;
25655 PyObject * obj1 = 0 ;
25656 char *kwnames[] = {
25657 (char *) "self",(char *) "item", NULL
25658 };
25659
25660 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_GetItemBackgroundColour",kwnames,&obj0,&obj1)) goto fail;
25661 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25662 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25663 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
25664 SWIG_POINTER_EXCEPTION | 0)) == -1)
25665 SWIG_fail;
25666 if (arg2 == NULL) {
25667 PyErr_SetString(PyExc_TypeError,"null reference");
25668 SWIG_fail;
25669 }
25670 {
25671 PyThreadState* __tstate = wxPyBeginAllowThreads();
25672 result = ((wxPyTreeCtrl const *)arg1)->GetItemBackgroundColour((wxTreeItemId const &)*arg2);
25673
25674 wxPyEndAllowThreads(__tstate);
25675 if (PyErr_Occurred()) SWIG_fail;
25676 }
25677 {
25678 wxColour * resultptr;
25679 resultptr = new wxColour((wxColour &) result);
25680 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxColour, 1);
25681 }
25682 return resultobj;
25683 fail:
25684 return NULL;
25685 }
25686
25687
25688 static PyObject *_wrap_TreeCtrl_GetItemFont(PyObject *self, PyObject *args, PyObject *kwargs) {
25689 PyObject *resultobj;
25690 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25691 wxTreeItemId *arg2 = 0 ;
25692 wxFont result;
25693 PyObject * obj0 = 0 ;
25694 PyObject * obj1 = 0 ;
25695 char *kwnames[] = {
25696 (char *) "self",(char *) "item", NULL
25697 };
25698
25699 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_GetItemFont",kwnames,&obj0,&obj1)) goto fail;
25700 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25701 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25702 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
25703 SWIG_POINTER_EXCEPTION | 0)) == -1)
25704 SWIG_fail;
25705 if (arg2 == NULL) {
25706 PyErr_SetString(PyExc_TypeError,"null reference");
25707 SWIG_fail;
25708 }
25709 {
25710 PyThreadState* __tstate = wxPyBeginAllowThreads();
25711 result = ((wxPyTreeCtrl const *)arg1)->GetItemFont((wxTreeItemId const &)*arg2);
25712
25713 wxPyEndAllowThreads(__tstate);
25714 if (PyErr_Occurred()) SWIG_fail;
25715 }
25716 {
25717 wxFont * resultptr;
25718 resultptr = new wxFont((wxFont &) result);
25719 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxFont, 1);
25720 }
25721 return resultobj;
25722 fail:
25723 return NULL;
25724 }
25725
25726
25727 static PyObject *_wrap_TreeCtrl_SetItemText(PyObject *self, PyObject *args, PyObject *kwargs) {
25728 PyObject *resultobj;
25729 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25730 wxTreeItemId *arg2 = 0 ;
25731 wxString *arg3 = 0 ;
25732 bool temp3 = False ;
25733 PyObject * obj0 = 0 ;
25734 PyObject * obj1 = 0 ;
25735 PyObject * obj2 = 0 ;
25736 char *kwnames[] = {
25737 (char *) "self",(char *) "item",(char *) "text", NULL
25738 };
25739
25740 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:TreeCtrl_SetItemText",kwnames,&obj0,&obj1,&obj2)) goto fail;
25741 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25742 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25743 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
25744 SWIG_POINTER_EXCEPTION | 0)) == -1)
25745 SWIG_fail;
25746 if (arg2 == NULL) {
25747 PyErr_SetString(PyExc_TypeError,"null reference");
25748 SWIG_fail;
25749 }
25750 {
25751 arg3 = wxString_in_helper(obj2);
25752 if (arg3 == NULL) SWIG_fail;
25753 temp3 = True;
25754 }
25755 {
25756 PyThreadState* __tstate = wxPyBeginAllowThreads();
25757 (arg1)->SetItemText((wxTreeItemId const &)*arg2,(wxString const &)*arg3);
25758
25759 wxPyEndAllowThreads(__tstate);
25760 if (PyErr_Occurred()) SWIG_fail;
25761 }
25762 Py_INCREF(Py_None); resultobj = Py_None;
25763 {
25764 if (temp3)
25765 delete arg3;
25766 }
25767 return resultobj;
25768 fail:
25769 {
25770 if (temp3)
25771 delete arg3;
25772 }
25773 return NULL;
25774 }
25775
25776
25777 static PyObject *_wrap_TreeCtrl_SetItemImage(PyObject *self, PyObject *args, PyObject *kwargs) {
25778 PyObject *resultobj;
25779 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25780 wxTreeItemId *arg2 = 0 ;
25781 int arg3 ;
25782 int arg4 = (int) wxTreeItemIcon_Normal ;
25783 PyObject * obj0 = 0 ;
25784 PyObject * obj1 = 0 ;
25785 PyObject * obj2 = 0 ;
25786 PyObject * obj3 = 0 ;
25787 char *kwnames[] = {
25788 (char *) "self",(char *) "item",(char *) "image",(char *) "which", NULL
25789 };
25790
25791 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO|O:TreeCtrl_SetItemImage",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
25792 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25793 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25794 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
25795 SWIG_POINTER_EXCEPTION | 0)) == -1)
25796 SWIG_fail;
25797 if (arg2 == NULL) {
25798 PyErr_SetString(PyExc_TypeError,"null reference");
25799 SWIG_fail;
25800 }
25801 arg3 = (int) SWIG_AsInt(obj2);
25802 if (PyErr_Occurred()) SWIG_fail;
25803 if (obj3) {
25804 arg4 = (wxTreeItemIcon) SWIG_AsInt(obj3);
25805 if (PyErr_Occurred()) SWIG_fail;
25806 }
25807 {
25808 PyThreadState* __tstate = wxPyBeginAllowThreads();
25809 (arg1)->SetItemImage((wxTreeItemId const &)*arg2,arg3,(wxTreeItemIcon )arg4);
25810
25811 wxPyEndAllowThreads(__tstate);
25812 if (PyErr_Occurred()) SWIG_fail;
25813 }
25814 Py_INCREF(Py_None); resultobj = Py_None;
25815 return resultobj;
25816 fail:
25817 return NULL;
25818 }
25819
25820
25821 static PyObject *_wrap_TreeCtrl_SetItemData(PyObject *self, PyObject *args, PyObject *kwargs) {
25822 PyObject *resultobj;
25823 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25824 wxTreeItemId *arg2 = 0 ;
25825 wxPyTreeItemData *arg3 = (wxPyTreeItemData *) 0 ;
25826 PyObject * obj0 = 0 ;
25827 PyObject * obj1 = 0 ;
25828 PyObject * obj2 = 0 ;
25829 char *kwnames[] = {
25830 (char *) "self",(char *) "item",(char *) "data", NULL
25831 };
25832
25833 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:TreeCtrl_SetItemData",kwnames,&obj0,&obj1,&obj2)) goto fail;
25834 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25835 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25836 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
25837 SWIG_POINTER_EXCEPTION | 0)) == -1)
25838 SWIG_fail;
25839 if (arg2 == NULL) {
25840 PyErr_SetString(PyExc_TypeError,"null reference");
25841 SWIG_fail;
25842 }
25843 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxPyTreeItemData,
25844 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25845 {
25846 PyThreadState* __tstate = wxPyBeginAllowThreads();
25847 wxPyTreeCtrl_SetItemData(arg1,(wxTreeItemId const &)*arg2,arg3);
25848
25849 wxPyEndAllowThreads(__tstate);
25850 if (PyErr_Occurred()) SWIG_fail;
25851 }
25852 Py_INCREF(Py_None); resultobj = Py_None;
25853 return resultobj;
25854 fail:
25855 return NULL;
25856 }
25857
25858
25859 static PyObject *_wrap_TreeCtrl_SetItemPyData(PyObject *self, PyObject *args, PyObject *kwargs) {
25860 PyObject *resultobj;
25861 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25862 wxTreeItemId *arg2 = 0 ;
25863 PyObject *arg3 = (PyObject *) 0 ;
25864 PyObject * obj0 = 0 ;
25865 PyObject * obj1 = 0 ;
25866 PyObject * obj2 = 0 ;
25867 char *kwnames[] = {
25868 (char *) "self",(char *) "item",(char *) "obj", NULL
25869 };
25870
25871 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:TreeCtrl_SetItemPyData",kwnames,&obj0,&obj1,&obj2)) goto fail;
25872 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25873 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25874 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
25875 SWIG_POINTER_EXCEPTION | 0)) == -1)
25876 SWIG_fail;
25877 if (arg2 == NULL) {
25878 PyErr_SetString(PyExc_TypeError,"null reference");
25879 SWIG_fail;
25880 }
25881 arg3 = obj2;
25882 {
25883 PyThreadState* __tstate = wxPyBeginAllowThreads();
25884 wxPyTreeCtrl_SetItemPyData(arg1,(wxTreeItemId const &)*arg2,arg3);
25885
25886 wxPyEndAllowThreads(__tstate);
25887 if (PyErr_Occurred()) SWIG_fail;
25888 }
25889 Py_INCREF(Py_None); resultobj = Py_None;
25890 return resultobj;
25891 fail:
25892 return NULL;
25893 }
25894
25895
25896 static PyObject *_wrap_TreeCtrl_SetItemHasChildren(PyObject *self, PyObject *args, PyObject *kwargs) {
25897 PyObject *resultobj;
25898 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25899 wxTreeItemId *arg2 = 0 ;
25900 bool arg3 = (bool) True ;
25901 PyObject * obj0 = 0 ;
25902 PyObject * obj1 = 0 ;
25903 PyObject * obj2 = 0 ;
25904 char *kwnames[] = {
25905 (char *) "self",(char *) "item",(char *) "has", NULL
25906 };
25907
25908 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:TreeCtrl_SetItemHasChildren",kwnames,&obj0,&obj1,&obj2)) goto fail;
25909 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25910 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25911 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
25912 SWIG_POINTER_EXCEPTION | 0)) == -1)
25913 SWIG_fail;
25914 if (arg2 == NULL) {
25915 PyErr_SetString(PyExc_TypeError,"null reference");
25916 SWIG_fail;
25917 }
25918 if (obj2) {
25919 arg3 = (bool) SWIG_AsBool(obj2);
25920 if (PyErr_Occurred()) SWIG_fail;
25921 }
25922 {
25923 PyThreadState* __tstate = wxPyBeginAllowThreads();
25924 (arg1)->SetItemHasChildren((wxTreeItemId const &)*arg2,arg3);
25925
25926 wxPyEndAllowThreads(__tstate);
25927 if (PyErr_Occurred()) SWIG_fail;
25928 }
25929 Py_INCREF(Py_None); resultobj = Py_None;
25930 return resultobj;
25931 fail:
25932 return NULL;
25933 }
25934
25935
25936 static PyObject *_wrap_TreeCtrl_SetItemBold(PyObject *self, PyObject *args, PyObject *kwargs) {
25937 PyObject *resultobj;
25938 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25939 wxTreeItemId *arg2 = 0 ;
25940 bool arg3 = (bool) True ;
25941 PyObject * obj0 = 0 ;
25942 PyObject * obj1 = 0 ;
25943 PyObject * obj2 = 0 ;
25944 char *kwnames[] = {
25945 (char *) "self",(char *) "item",(char *) "bold", NULL
25946 };
25947
25948 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:TreeCtrl_SetItemBold",kwnames,&obj0,&obj1,&obj2)) goto fail;
25949 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25950 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25951 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
25952 SWIG_POINTER_EXCEPTION | 0)) == -1)
25953 SWIG_fail;
25954 if (arg2 == NULL) {
25955 PyErr_SetString(PyExc_TypeError,"null reference");
25956 SWIG_fail;
25957 }
25958 if (obj2) {
25959 arg3 = (bool) SWIG_AsBool(obj2);
25960 if (PyErr_Occurred()) SWIG_fail;
25961 }
25962 {
25963 PyThreadState* __tstate = wxPyBeginAllowThreads();
25964 (arg1)->SetItemBold((wxTreeItemId const &)*arg2,arg3);
25965
25966 wxPyEndAllowThreads(__tstate);
25967 if (PyErr_Occurred()) SWIG_fail;
25968 }
25969 Py_INCREF(Py_None); resultobj = Py_None;
25970 return resultobj;
25971 fail:
25972 return NULL;
25973 }
25974
25975
25976 static PyObject *_wrap_TreeCtrl_SetItemTextColour(PyObject *self, PyObject *args, PyObject *kwargs) {
25977 PyObject *resultobj;
25978 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
25979 wxTreeItemId *arg2 = 0 ;
25980 wxColour *arg3 = 0 ;
25981 wxColour temp3 ;
25982 PyObject * obj0 = 0 ;
25983 PyObject * obj1 = 0 ;
25984 PyObject * obj2 = 0 ;
25985 char *kwnames[] = {
25986 (char *) "self",(char *) "item",(char *) "col", NULL
25987 };
25988
25989 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:TreeCtrl_SetItemTextColour",kwnames,&obj0,&obj1,&obj2)) goto fail;
25990 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
25991 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
25992 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
25993 SWIG_POINTER_EXCEPTION | 0)) == -1)
25994 SWIG_fail;
25995 if (arg2 == NULL) {
25996 PyErr_SetString(PyExc_TypeError,"null reference");
25997 SWIG_fail;
25998 }
25999 {
26000 arg3 = &temp3;
26001 if ( ! wxColour_helper(obj2, &arg3)) SWIG_fail;
26002 }
26003 {
26004 PyThreadState* __tstate = wxPyBeginAllowThreads();
26005 (arg1)->SetItemTextColour((wxTreeItemId const &)*arg2,(wxColour const &)*arg3);
26006
26007 wxPyEndAllowThreads(__tstate);
26008 if (PyErr_Occurred()) SWIG_fail;
26009 }
26010 Py_INCREF(Py_None); resultobj = Py_None;
26011 return resultobj;
26012 fail:
26013 return NULL;
26014 }
26015
26016
26017 static PyObject *_wrap_TreeCtrl_SetItemBackgroundColour(PyObject *self, PyObject *args, PyObject *kwargs) {
26018 PyObject *resultobj;
26019 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26020 wxTreeItemId *arg2 = 0 ;
26021 wxColour *arg3 = 0 ;
26022 wxColour temp3 ;
26023 PyObject * obj0 = 0 ;
26024 PyObject * obj1 = 0 ;
26025 PyObject * obj2 = 0 ;
26026 char *kwnames[] = {
26027 (char *) "self",(char *) "item",(char *) "col", NULL
26028 };
26029
26030 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:TreeCtrl_SetItemBackgroundColour",kwnames,&obj0,&obj1,&obj2)) goto fail;
26031 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26032 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26033 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26034 SWIG_POINTER_EXCEPTION | 0)) == -1)
26035 SWIG_fail;
26036 if (arg2 == NULL) {
26037 PyErr_SetString(PyExc_TypeError,"null reference");
26038 SWIG_fail;
26039 }
26040 {
26041 arg3 = &temp3;
26042 if ( ! wxColour_helper(obj2, &arg3)) SWIG_fail;
26043 }
26044 {
26045 PyThreadState* __tstate = wxPyBeginAllowThreads();
26046 (arg1)->SetItemBackgroundColour((wxTreeItemId const &)*arg2,(wxColour const &)*arg3);
26047
26048 wxPyEndAllowThreads(__tstate);
26049 if (PyErr_Occurred()) SWIG_fail;
26050 }
26051 Py_INCREF(Py_None); resultobj = Py_None;
26052 return resultobj;
26053 fail:
26054 return NULL;
26055 }
26056
26057
26058 static PyObject *_wrap_TreeCtrl_SetItemFont(PyObject *self, PyObject *args, PyObject *kwargs) {
26059 PyObject *resultobj;
26060 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26061 wxTreeItemId *arg2 = 0 ;
26062 wxFont *arg3 = 0 ;
26063 PyObject * obj0 = 0 ;
26064 PyObject * obj1 = 0 ;
26065 PyObject * obj2 = 0 ;
26066 char *kwnames[] = {
26067 (char *) "self",(char *) "item",(char *) "font", NULL
26068 };
26069
26070 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:TreeCtrl_SetItemFont",kwnames,&obj0,&obj1,&obj2)) goto fail;
26071 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26072 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26073 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26074 SWIG_POINTER_EXCEPTION | 0)) == -1)
26075 SWIG_fail;
26076 if (arg2 == NULL) {
26077 PyErr_SetString(PyExc_TypeError,"null reference");
26078 SWIG_fail;
26079 }
26080 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxFont,
26081 SWIG_POINTER_EXCEPTION | 0)) == -1)
26082 SWIG_fail;
26083 if (arg3 == NULL) {
26084 PyErr_SetString(PyExc_TypeError,"null reference");
26085 SWIG_fail;
26086 }
26087 {
26088 PyThreadState* __tstate = wxPyBeginAllowThreads();
26089 (arg1)->SetItemFont((wxTreeItemId const &)*arg2,(wxFont const &)*arg3);
26090
26091 wxPyEndAllowThreads(__tstate);
26092 if (PyErr_Occurred()) SWIG_fail;
26093 }
26094 Py_INCREF(Py_None); resultobj = Py_None;
26095 return resultobj;
26096 fail:
26097 return NULL;
26098 }
26099
26100
26101 static PyObject *_wrap_TreeCtrl_IsVisible(PyObject *self, PyObject *args, PyObject *kwargs) {
26102 PyObject *resultobj;
26103 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26104 wxTreeItemId *arg2 = 0 ;
26105 bool result;
26106 PyObject * obj0 = 0 ;
26107 PyObject * obj1 = 0 ;
26108 char *kwnames[] = {
26109 (char *) "self",(char *) "item", NULL
26110 };
26111
26112 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_IsVisible",kwnames,&obj0,&obj1)) goto fail;
26113 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26114 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26115 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26116 SWIG_POINTER_EXCEPTION | 0)) == -1)
26117 SWIG_fail;
26118 if (arg2 == NULL) {
26119 PyErr_SetString(PyExc_TypeError,"null reference");
26120 SWIG_fail;
26121 }
26122 {
26123 PyThreadState* __tstate = wxPyBeginAllowThreads();
26124 result = (bool)((wxPyTreeCtrl const *)arg1)->IsVisible((wxTreeItemId const &)*arg2);
26125
26126 wxPyEndAllowThreads(__tstate);
26127 if (PyErr_Occurred()) SWIG_fail;
26128 }
26129 {
26130 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
26131 }
26132 return resultobj;
26133 fail:
26134 return NULL;
26135 }
26136
26137
26138 static PyObject *_wrap_TreeCtrl_ItemHasChildren(PyObject *self, PyObject *args, PyObject *kwargs) {
26139 PyObject *resultobj;
26140 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26141 wxTreeItemId *arg2 = 0 ;
26142 bool result;
26143 PyObject * obj0 = 0 ;
26144 PyObject * obj1 = 0 ;
26145 char *kwnames[] = {
26146 (char *) "self",(char *) "item", NULL
26147 };
26148
26149 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_ItemHasChildren",kwnames,&obj0,&obj1)) goto fail;
26150 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26151 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26152 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26153 SWIG_POINTER_EXCEPTION | 0)) == -1)
26154 SWIG_fail;
26155 if (arg2 == NULL) {
26156 PyErr_SetString(PyExc_TypeError,"null reference");
26157 SWIG_fail;
26158 }
26159 {
26160 PyThreadState* __tstate = wxPyBeginAllowThreads();
26161 result = (bool)((wxPyTreeCtrl const *)arg1)->ItemHasChildren((wxTreeItemId const &)*arg2);
26162
26163 wxPyEndAllowThreads(__tstate);
26164 if (PyErr_Occurred()) SWIG_fail;
26165 }
26166 {
26167 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
26168 }
26169 return resultobj;
26170 fail:
26171 return NULL;
26172 }
26173
26174
26175 static PyObject *_wrap_TreeCtrl_IsExpanded(PyObject *self, PyObject *args, PyObject *kwargs) {
26176 PyObject *resultobj;
26177 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26178 wxTreeItemId *arg2 = 0 ;
26179 bool result;
26180 PyObject * obj0 = 0 ;
26181 PyObject * obj1 = 0 ;
26182 char *kwnames[] = {
26183 (char *) "self",(char *) "item", NULL
26184 };
26185
26186 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_IsExpanded",kwnames,&obj0,&obj1)) goto fail;
26187 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26188 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26189 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26190 SWIG_POINTER_EXCEPTION | 0)) == -1)
26191 SWIG_fail;
26192 if (arg2 == NULL) {
26193 PyErr_SetString(PyExc_TypeError,"null reference");
26194 SWIG_fail;
26195 }
26196 {
26197 PyThreadState* __tstate = wxPyBeginAllowThreads();
26198 result = (bool)((wxPyTreeCtrl const *)arg1)->IsExpanded((wxTreeItemId const &)*arg2);
26199
26200 wxPyEndAllowThreads(__tstate);
26201 if (PyErr_Occurred()) SWIG_fail;
26202 }
26203 {
26204 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
26205 }
26206 return resultobj;
26207 fail:
26208 return NULL;
26209 }
26210
26211
26212 static PyObject *_wrap_TreeCtrl_IsSelected(PyObject *self, PyObject *args, PyObject *kwargs) {
26213 PyObject *resultobj;
26214 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26215 wxTreeItemId *arg2 = 0 ;
26216 bool result;
26217 PyObject * obj0 = 0 ;
26218 PyObject * obj1 = 0 ;
26219 char *kwnames[] = {
26220 (char *) "self",(char *) "item", NULL
26221 };
26222
26223 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_IsSelected",kwnames,&obj0,&obj1)) goto fail;
26224 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26225 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26226 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26227 SWIG_POINTER_EXCEPTION | 0)) == -1)
26228 SWIG_fail;
26229 if (arg2 == NULL) {
26230 PyErr_SetString(PyExc_TypeError,"null reference");
26231 SWIG_fail;
26232 }
26233 {
26234 PyThreadState* __tstate = wxPyBeginAllowThreads();
26235 result = (bool)((wxPyTreeCtrl const *)arg1)->IsSelected((wxTreeItemId const &)*arg2);
26236
26237 wxPyEndAllowThreads(__tstate);
26238 if (PyErr_Occurred()) SWIG_fail;
26239 }
26240 {
26241 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
26242 }
26243 return resultobj;
26244 fail:
26245 return NULL;
26246 }
26247
26248
26249 static PyObject *_wrap_TreeCtrl_IsBold(PyObject *self, PyObject *args, PyObject *kwargs) {
26250 PyObject *resultobj;
26251 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26252 wxTreeItemId *arg2 = 0 ;
26253 bool result;
26254 PyObject * obj0 = 0 ;
26255 PyObject * obj1 = 0 ;
26256 char *kwnames[] = {
26257 (char *) "self",(char *) "item", NULL
26258 };
26259
26260 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_IsBold",kwnames,&obj0,&obj1)) goto fail;
26261 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26262 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26263 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26264 SWIG_POINTER_EXCEPTION | 0)) == -1)
26265 SWIG_fail;
26266 if (arg2 == NULL) {
26267 PyErr_SetString(PyExc_TypeError,"null reference");
26268 SWIG_fail;
26269 }
26270 {
26271 PyThreadState* __tstate = wxPyBeginAllowThreads();
26272 result = (bool)((wxPyTreeCtrl const *)arg1)->IsBold((wxTreeItemId const &)*arg2);
26273
26274 wxPyEndAllowThreads(__tstate);
26275 if (PyErr_Occurred()) SWIG_fail;
26276 }
26277 {
26278 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
26279 }
26280 return resultobj;
26281 fail:
26282 return NULL;
26283 }
26284
26285
26286 static PyObject *_wrap_TreeCtrl_GetChildrenCount(PyObject *self, PyObject *args, PyObject *kwargs) {
26287 PyObject *resultobj;
26288 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26289 wxTreeItemId *arg2 = 0 ;
26290 bool arg3 = (bool) True ;
26291 size_t result;
26292 PyObject * obj0 = 0 ;
26293 PyObject * obj1 = 0 ;
26294 PyObject * obj2 = 0 ;
26295 char *kwnames[] = {
26296 (char *) "self",(char *) "item",(char *) "recursively", NULL
26297 };
26298
26299 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:TreeCtrl_GetChildrenCount",kwnames,&obj0,&obj1,&obj2)) goto fail;
26300 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26301 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26302 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26303 SWIG_POINTER_EXCEPTION | 0)) == -1)
26304 SWIG_fail;
26305 if (arg2 == NULL) {
26306 PyErr_SetString(PyExc_TypeError,"null reference");
26307 SWIG_fail;
26308 }
26309 if (obj2) {
26310 arg3 = (bool) SWIG_AsBool(obj2);
26311 if (PyErr_Occurred()) SWIG_fail;
26312 }
26313 {
26314 PyThreadState* __tstate = wxPyBeginAllowThreads();
26315 result = (size_t)(arg1)->GetChildrenCount((wxTreeItemId const &)*arg2,arg3);
26316
26317 wxPyEndAllowThreads(__tstate);
26318 if (PyErr_Occurred()) SWIG_fail;
26319 }
26320 resultobj = SWIG_FromUnsignedLong((unsigned long)result);
26321 return resultobj;
26322 fail:
26323 return NULL;
26324 }
26325
26326
26327 static PyObject *_wrap_TreeCtrl_GetRootItem(PyObject *self, PyObject *args, PyObject *kwargs) {
26328 PyObject *resultobj;
26329 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26330 wxTreeItemId result;
26331 PyObject * obj0 = 0 ;
26332 char *kwnames[] = {
26333 (char *) "self", NULL
26334 };
26335
26336 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeCtrl_GetRootItem",kwnames,&obj0)) goto fail;
26337 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26338 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26339 {
26340 PyThreadState* __tstate = wxPyBeginAllowThreads();
26341 result = ((wxPyTreeCtrl const *)arg1)->GetRootItem();
26342
26343 wxPyEndAllowThreads(__tstate);
26344 if (PyErr_Occurred()) SWIG_fail;
26345 }
26346 {
26347 wxTreeItemId * resultptr;
26348 resultptr = new wxTreeItemId((wxTreeItemId &) result);
26349 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
26350 }
26351 return resultobj;
26352 fail:
26353 return NULL;
26354 }
26355
26356
26357 static PyObject *_wrap_TreeCtrl_GetSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
26358 PyObject *resultobj;
26359 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26360 wxTreeItemId result;
26361 PyObject * obj0 = 0 ;
26362 char *kwnames[] = {
26363 (char *) "self", NULL
26364 };
26365
26366 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeCtrl_GetSelection",kwnames,&obj0)) goto fail;
26367 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26368 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26369 {
26370 PyThreadState* __tstate = wxPyBeginAllowThreads();
26371 result = ((wxPyTreeCtrl const *)arg1)->GetSelection();
26372
26373 wxPyEndAllowThreads(__tstate);
26374 if (PyErr_Occurred()) SWIG_fail;
26375 }
26376 {
26377 wxTreeItemId * resultptr;
26378 resultptr = new wxTreeItemId((wxTreeItemId &) result);
26379 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
26380 }
26381 return resultobj;
26382 fail:
26383 return NULL;
26384 }
26385
26386
26387 static PyObject *_wrap_TreeCtrl_GetSelections(PyObject *self, PyObject *args, PyObject *kwargs) {
26388 PyObject *resultobj;
26389 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26390 PyObject *result;
26391 PyObject * obj0 = 0 ;
26392 char *kwnames[] = {
26393 (char *) "self", NULL
26394 };
26395
26396 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeCtrl_GetSelections",kwnames,&obj0)) goto fail;
26397 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26398 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26399 {
26400 PyThreadState* __tstate = wxPyBeginAllowThreads();
26401 result = (PyObject *)wxPyTreeCtrl_GetSelections(arg1);
26402
26403 wxPyEndAllowThreads(__tstate);
26404 if (PyErr_Occurred()) SWIG_fail;
26405 }
26406 resultobj = result;
26407 return resultobj;
26408 fail:
26409 return NULL;
26410 }
26411
26412
26413 static PyObject *_wrap_TreeCtrl_GetItemParent(PyObject *self, PyObject *args, PyObject *kwargs) {
26414 PyObject *resultobj;
26415 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26416 wxTreeItemId *arg2 = 0 ;
26417 wxTreeItemId result;
26418 PyObject * obj0 = 0 ;
26419 PyObject * obj1 = 0 ;
26420 char *kwnames[] = {
26421 (char *) "self",(char *) "item", NULL
26422 };
26423
26424 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_GetItemParent",kwnames,&obj0,&obj1)) goto fail;
26425 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26426 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26427 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26428 SWIG_POINTER_EXCEPTION | 0)) == -1)
26429 SWIG_fail;
26430 if (arg2 == NULL) {
26431 PyErr_SetString(PyExc_TypeError,"null reference");
26432 SWIG_fail;
26433 }
26434 {
26435 PyThreadState* __tstate = wxPyBeginAllowThreads();
26436 result = ((wxPyTreeCtrl const *)arg1)->GetItemParent((wxTreeItemId const &)*arg2);
26437
26438 wxPyEndAllowThreads(__tstate);
26439 if (PyErr_Occurred()) SWIG_fail;
26440 }
26441 {
26442 wxTreeItemId * resultptr;
26443 resultptr = new wxTreeItemId((wxTreeItemId &) result);
26444 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
26445 }
26446 return resultobj;
26447 fail:
26448 return NULL;
26449 }
26450
26451
26452 static PyObject *_wrap_TreeCtrl_GetFirstChild(PyObject *self, PyObject *args, PyObject *kwargs) {
26453 PyObject *resultobj;
26454 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26455 wxTreeItemId *arg2 = 0 ;
26456 PyObject *result;
26457 PyObject * obj0 = 0 ;
26458 PyObject * obj1 = 0 ;
26459 char *kwnames[] = {
26460 (char *) "self",(char *) "item", NULL
26461 };
26462
26463 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_GetFirstChild",kwnames,&obj0,&obj1)) goto fail;
26464 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26465 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26466 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26467 SWIG_POINTER_EXCEPTION | 0)) == -1)
26468 SWIG_fail;
26469 if (arg2 == NULL) {
26470 PyErr_SetString(PyExc_TypeError,"null reference");
26471 SWIG_fail;
26472 }
26473 {
26474 PyThreadState* __tstate = wxPyBeginAllowThreads();
26475 result = (PyObject *)wxPyTreeCtrl_GetFirstChild(arg1,(wxTreeItemId const &)*arg2);
26476
26477 wxPyEndAllowThreads(__tstate);
26478 if (PyErr_Occurred()) SWIG_fail;
26479 }
26480 resultobj = result;
26481 return resultobj;
26482 fail:
26483 return NULL;
26484 }
26485
26486
26487 static PyObject *_wrap_TreeCtrl_GetNextChild(PyObject *self, PyObject *args, PyObject *kwargs) {
26488 PyObject *resultobj;
26489 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26490 wxTreeItemId *arg2 = 0 ;
26491 void *arg3 = (void *) 0 ;
26492 PyObject *result;
26493 PyObject * obj0 = 0 ;
26494 PyObject * obj1 = 0 ;
26495 PyObject * obj2 = 0 ;
26496 char *kwnames[] = {
26497 (char *) "self",(char *) "item",(char *) "cookie", NULL
26498 };
26499
26500 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:TreeCtrl_GetNextChild",kwnames,&obj0,&obj1,&obj2)) goto fail;
26501 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26502 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26503 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26504 SWIG_POINTER_EXCEPTION | 0)) == -1)
26505 SWIG_fail;
26506 if (arg2 == NULL) {
26507 PyErr_SetString(PyExc_TypeError,"null reference");
26508 SWIG_fail;
26509 }
26510 if ((SWIG_ConvertPtr(obj2,&arg3,0,SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26511 {
26512 PyThreadState* __tstate = wxPyBeginAllowThreads();
26513 result = (PyObject *)wxPyTreeCtrl_GetNextChild(arg1,(wxTreeItemId const &)*arg2,arg3);
26514
26515 wxPyEndAllowThreads(__tstate);
26516 if (PyErr_Occurred()) SWIG_fail;
26517 }
26518 resultobj = result;
26519 return resultobj;
26520 fail:
26521 return NULL;
26522 }
26523
26524
26525 static PyObject *_wrap_TreeCtrl_GetLastChild(PyObject *self, PyObject *args, PyObject *kwargs) {
26526 PyObject *resultobj;
26527 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26528 wxTreeItemId *arg2 = 0 ;
26529 wxTreeItemId result;
26530 PyObject * obj0 = 0 ;
26531 PyObject * obj1 = 0 ;
26532 char *kwnames[] = {
26533 (char *) "self",(char *) "item", NULL
26534 };
26535
26536 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_GetLastChild",kwnames,&obj0,&obj1)) goto fail;
26537 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26538 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26539 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26540 SWIG_POINTER_EXCEPTION | 0)) == -1)
26541 SWIG_fail;
26542 if (arg2 == NULL) {
26543 PyErr_SetString(PyExc_TypeError,"null reference");
26544 SWIG_fail;
26545 }
26546 {
26547 PyThreadState* __tstate = wxPyBeginAllowThreads();
26548 result = ((wxPyTreeCtrl const *)arg1)->GetLastChild((wxTreeItemId const &)*arg2);
26549
26550 wxPyEndAllowThreads(__tstate);
26551 if (PyErr_Occurred()) SWIG_fail;
26552 }
26553 {
26554 wxTreeItemId * resultptr;
26555 resultptr = new wxTreeItemId((wxTreeItemId &) result);
26556 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
26557 }
26558 return resultobj;
26559 fail:
26560 return NULL;
26561 }
26562
26563
26564 static PyObject *_wrap_TreeCtrl_GetNextSibling(PyObject *self, PyObject *args, PyObject *kwargs) {
26565 PyObject *resultobj;
26566 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26567 wxTreeItemId *arg2 = 0 ;
26568 wxTreeItemId result;
26569 PyObject * obj0 = 0 ;
26570 PyObject * obj1 = 0 ;
26571 char *kwnames[] = {
26572 (char *) "self",(char *) "item", NULL
26573 };
26574
26575 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_GetNextSibling",kwnames,&obj0,&obj1)) goto fail;
26576 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26577 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26578 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26579 SWIG_POINTER_EXCEPTION | 0)) == -1)
26580 SWIG_fail;
26581 if (arg2 == NULL) {
26582 PyErr_SetString(PyExc_TypeError,"null reference");
26583 SWIG_fail;
26584 }
26585 {
26586 PyThreadState* __tstate = wxPyBeginAllowThreads();
26587 result = ((wxPyTreeCtrl const *)arg1)->GetNextSibling((wxTreeItemId const &)*arg2);
26588
26589 wxPyEndAllowThreads(__tstate);
26590 if (PyErr_Occurred()) SWIG_fail;
26591 }
26592 {
26593 wxTreeItemId * resultptr;
26594 resultptr = new wxTreeItemId((wxTreeItemId &) result);
26595 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
26596 }
26597 return resultobj;
26598 fail:
26599 return NULL;
26600 }
26601
26602
26603 static PyObject *_wrap_TreeCtrl_GetPrevSibling(PyObject *self, PyObject *args, PyObject *kwargs) {
26604 PyObject *resultobj;
26605 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26606 wxTreeItemId *arg2 = 0 ;
26607 wxTreeItemId result;
26608 PyObject * obj0 = 0 ;
26609 PyObject * obj1 = 0 ;
26610 char *kwnames[] = {
26611 (char *) "self",(char *) "item", NULL
26612 };
26613
26614 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_GetPrevSibling",kwnames,&obj0,&obj1)) goto fail;
26615 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26616 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26617 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26618 SWIG_POINTER_EXCEPTION | 0)) == -1)
26619 SWIG_fail;
26620 if (arg2 == NULL) {
26621 PyErr_SetString(PyExc_TypeError,"null reference");
26622 SWIG_fail;
26623 }
26624 {
26625 PyThreadState* __tstate = wxPyBeginAllowThreads();
26626 result = ((wxPyTreeCtrl const *)arg1)->GetPrevSibling((wxTreeItemId const &)*arg2);
26627
26628 wxPyEndAllowThreads(__tstate);
26629 if (PyErr_Occurred()) SWIG_fail;
26630 }
26631 {
26632 wxTreeItemId * resultptr;
26633 resultptr = new wxTreeItemId((wxTreeItemId &) result);
26634 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
26635 }
26636 return resultobj;
26637 fail:
26638 return NULL;
26639 }
26640
26641
26642 static PyObject *_wrap_TreeCtrl_GetFirstVisibleItem(PyObject *self, PyObject *args, PyObject *kwargs) {
26643 PyObject *resultobj;
26644 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26645 wxTreeItemId result;
26646 PyObject * obj0 = 0 ;
26647 char *kwnames[] = {
26648 (char *) "self", NULL
26649 };
26650
26651 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeCtrl_GetFirstVisibleItem",kwnames,&obj0)) goto fail;
26652 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26653 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26654 {
26655 PyThreadState* __tstate = wxPyBeginAllowThreads();
26656 result = ((wxPyTreeCtrl const *)arg1)->GetFirstVisibleItem();
26657
26658 wxPyEndAllowThreads(__tstate);
26659 if (PyErr_Occurred()) SWIG_fail;
26660 }
26661 {
26662 wxTreeItemId * resultptr;
26663 resultptr = new wxTreeItemId((wxTreeItemId &) result);
26664 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
26665 }
26666 return resultobj;
26667 fail:
26668 return NULL;
26669 }
26670
26671
26672 static PyObject *_wrap_TreeCtrl_GetNextVisible(PyObject *self, PyObject *args, PyObject *kwargs) {
26673 PyObject *resultobj;
26674 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26675 wxTreeItemId *arg2 = 0 ;
26676 wxTreeItemId result;
26677 PyObject * obj0 = 0 ;
26678 PyObject * obj1 = 0 ;
26679 char *kwnames[] = {
26680 (char *) "self",(char *) "item", NULL
26681 };
26682
26683 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_GetNextVisible",kwnames,&obj0,&obj1)) goto fail;
26684 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26685 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26686 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26687 SWIG_POINTER_EXCEPTION | 0)) == -1)
26688 SWIG_fail;
26689 if (arg2 == NULL) {
26690 PyErr_SetString(PyExc_TypeError,"null reference");
26691 SWIG_fail;
26692 }
26693 {
26694 PyThreadState* __tstate = wxPyBeginAllowThreads();
26695 result = ((wxPyTreeCtrl const *)arg1)->GetNextVisible((wxTreeItemId const &)*arg2);
26696
26697 wxPyEndAllowThreads(__tstate);
26698 if (PyErr_Occurred()) SWIG_fail;
26699 }
26700 {
26701 wxTreeItemId * resultptr;
26702 resultptr = new wxTreeItemId((wxTreeItemId &) result);
26703 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
26704 }
26705 return resultobj;
26706 fail:
26707 return NULL;
26708 }
26709
26710
26711 static PyObject *_wrap_TreeCtrl_GetPrevVisible(PyObject *self, PyObject *args, PyObject *kwargs) {
26712 PyObject *resultobj;
26713 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26714 wxTreeItemId *arg2 = 0 ;
26715 wxTreeItemId result;
26716 PyObject * obj0 = 0 ;
26717 PyObject * obj1 = 0 ;
26718 char *kwnames[] = {
26719 (char *) "self",(char *) "item", NULL
26720 };
26721
26722 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_GetPrevVisible",kwnames,&obj0,&obj1)) goto fail;
26723 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26724 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26725 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26726 SWIG_POINTER_EXCEPTION | 0)) == -1)
26727 SWIG_fail;
26728 if (arg2 == NULL) {
26729 PyErr_SetString(PyExc_TypeError,"null reference");
26730 SWIG_fail;
26731 }
26732 {
26733 PyThreadState* __tstate = wxPyBeginAllowThreads();
26734 result = ((wxPyTreeCtrl const *)arg1)->GetPrevVisible((wxTreeItemId const &)*arg2);
26735
26736 wxPyEndAllowThreads(__tstate);
26737 if (PyErr_Occurred()) SWIG_fail;
26738 }
26739 {
26740 wxTreeItemId * resultptr;
26741 resultptr = new wxTreeItemId((wxTreeItemId &) result);
26742 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
26743 }
26744 return resultobj;
26745 fail:
26746 return NULL;
26747 }
26748
26749
26750 static PyObject *_wrap_TreeCtrl_AddRoot(PyObject *self, PyObject *args, PyObject *kwargs) {
26751 PyObject *resultobj;
26752 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26753 wxString *arg2 = 0 ;
26754 int arg3 = (int) -1 ;
26755 int arg4 = (int) -1 ;
26756 wxPyTreeItemData *arg5 = (wxPyTreeItemData *) NULL ;
26757 wxTreeItemId result;
26758 bool temp2 = False ;
26759 PyObject * obj0 = 0 ;
26760 PyObject * obj1 = 0 ;
26761 PyObject * obj2 = 0 ;
26762 PyObject * obj3 = 0 ;
26763 PyObject * obj4 = 0 ;
26764 char *kwnames[] = {
26765 (char *) "self",(char *) "text",(char *) "image",(char *) "selectedImage",(char *) "data", NULL
26766 };
26767
26768 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOO:TreeCtrl_AddRoot",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
26769 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26770 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26771 {
26772 arg2 = wxString_in_helper(obj1);
26773 if (arg2 == NULL) SWIG_fail;
26774 temp2 = True;
26775 }
26776 if (obj2) {
26777 arg3 = (int) SWIG_AsInt(obj2);
26778 if (PyErr_Occurred()) SWIG_fail;
26779 }
26780 if (obj3) {
26781 arg4 = (int) SWIG_AsInt(obj3);
26782 if (PyErr_Occurred()) SWIG_fail;
26783 }
26784 if (obj4) {
26785 if ((SWIG_ConvertPtr(obj4,(void **)(&arg5),SWIGTYPE_p_wxPyTreeItemData,
26786 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26787 }
26788 {
26789 PyThreadState* __tstate = wxPyBeginAllowThreads();
26790 result = (arg1)->AddRoot((wxString const &)*arg2,arg3,arg4,arg5);
26791
26792 wxPyEndAllowThreads(__tstate);
26793 if (PyErr_Occurred()) SWIG_fail;
26794 }
26795 {
26796 wxTreeItemId * resultptr;
26797 resultptr = new wxTreeItemId((wxTreeItemId &) result);
26798 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
26799 }
26800 {
26801 if (temp2)
26802 delete arg2;
26803 }
26804 return resultobj;
26805 fail:
26806 {
26807 if (temp2)
26808 delete arg2;
26809 }
26810 return NULL;
26811 }
26812
26813
26814 static PyObject *_wrap_TreeCtrl_PrependItem(PyObject *self, PyObject *args, PyObject *kwargs) {
26815 PyObject *resultobj;
26816 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26817 wxTreeItemId *arg2 = 0 ;
26818 wxString *arg3 = 0 ;
26819 int arg4 = (int) -1 ;
26820 int arg5 = (int) -1 ;
26821 wxPyTreeItemData *arg6 = (wxPyTreeItemData *) NULL ;
26822 wxTreeItemId result;
26823 bool temp3 = False ;
26824 PyObject * obj0 = 0 ;
26825 PyObject * obj1 = 0 ;
26826 PyObject * obj2 = 0 ;
26827 PyObject * obj3 = 0 ;
26828 PyObject * obj4 = 0 ;
26829 PyObject * obj5 = 0 ;
26830 char *kwnames[] = {
26831 (char *) "self",(char *) "parent",(char *) "text",(char *) "image",(char *) "selectedImage",(char *) "data", NULL
26832 };
26833
26834 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO|OOO:TreeCtrl_PrependItem",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail;
26835 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26836 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26837 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26838 SWIG_POINTER_EXCEPTION | 0)) == -1)
26839 SWIG_fail;
26840 if (arg2 == NULL) {
26841 PyErr_SetString(PyExc_TypeError,"null reference");
26842 SWIG_fail;
26843 }
26844 {
26845 arg3 = wxString_in_helper(obj2);
26846 if (arg3 == NULL) SWIG_fail;
26847 temp3 = True;
26848 }
26849 if (obj3) {
26850 arg4 = (int) SWIG_AsInt(obj3);
26851 if (PyErr_Occurred()) SWIG_fail;
26852 }
26853 if (obj4) {
26854 arg5 = (int) SWIG_AsInt(obj4);
26855 if (PyErr_Occurred()) SWIG_fail;
26856 }
26857 if (obj5) {
26858 if ((SWIG_ConvertPtr(obj5,(void **)(&arg6),SWIGTYPE_p_wxPyTreeItemData,
26859 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26860 }
26861 {
26862 PyThreadState* __tstate = wxPyBeginAllowThreads();
26863 result = (arg1)->PrependItem((wxTreeItemId const &)*arg2,(wxString const &)*arg3,arg4,arg5,arg6);
26864
26865 wxPyEndAllowThreads(__tstate);
26866 if (PyErr_Occurred()) SWIG_fail;
26867 }
26868 {
26869 wxTreeItemId * resultptr;
26870 resultptr = new wxTreeItemId((wxTreeItemId &) result);
26871 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
26872 }
26873 {
26874 if (temp3)
26875 delete arg3;
26876 }
26877 return resultobj;
26878 fail:
26879 {
26880 if (temp3)
26881 delete arg3;
26882 }
26883 return NULL;
26884 }
26885
26886
26887 static PyObject *_wrap_TreeCtrl_InsertItem(PyObject *self, PyObject *args, PyObject *kwargs) {
26888 PyObject *resultobj;
26889 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26890 wxTreeItemId *arg2 = 0 ;
26891 wxTreeItemId *arg3 = 0 ;
26892 wxString *arg4 = 0 ;
26893 int arg5 = (int) -1 ;
26894 int arg6 = (int) -1 ;
26895 wxPyTreeItemData *arg7 = (wxPyTreeItemData *) NULL ;
26896 wxTreeItemId result;
26897 bool temp4 = False ;
26898 PyObject * obj0 = 0 ;
26899 PyObject * obj1 = 0 ;
26900 PyObject * obj2 = 0 ;
26901 PyObject * obj3 = 0 ;
26902 PyObject * obj4 = 0 ;
26903 PyObject * obj5 = 0 ;
26904 PyObject * obj6 = 0 ;
26905 char *kwnames[] = {
26906 (char *) "self",(char *) "parent",(char *) "idPrevious",(char *) "text",(char *) "image",(char *) "selectedImage",(char *) "data", NULL
26907 };
26908
26909 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO|OOO:TreeCtrl_InsertItem",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
26910 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26911 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26912 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26913 SWIG_POINTER_EXCEPTION | 0)) == -1)
26914 SWIG_fail;
26915 if (arg2 == NULL) {
26916 PyErr_SetString(PyExc_TypeError,"null reference");
26917 SWIG_fail;
26918 }
26919 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxTreeItemId,
26920 SWIG_POINTER_EXCEPTION | 0)) == -1)
26921 SWIG_fail;
26922 if (arg3 == NULL) {
26923 PyErr_SetString(PyExc_TypeError,"null reference");
26924 SWIG_fail;
26925 }
26926 {
26927 arg4 = wxString_in_helper(obj3);
26928 if (arg4 == NULL) SWIG_fail;
26929 temp4 = True;
26930 }
26931 if (obj4) {
26932 arg5 = (int) SWIG_AsInt(obj4);
26933 if (PyErr_Occurred()) SWIG_fail;
26934 }
26935 if (obj5) {
26936 arg6 = (int) SWIG_AsInt(obj5);
26937 if (PyErr_Occurred()) SWIG_fail;
26938 }
26939 if (obj6) {
26940 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxPyTreeItemData,
26941 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26942 }
26943 {
26944 PyThreadState* __tstate = wxPyBeginAllowThreads();
26945 result = (arg1)->InsertItem((wxTreeItemId const &)*arg2,(wxTreeItemId const &)*arg3,(wxString const &)*arg4,arg5,arg6,arg7);
26946
26947 wxPyEndAllowThreads(__tstate);
26948 if (PyErr_Occurred()) SWIG_fail;
26949 }
26950 {
26951 wxTreeItemId * resultptr;
26952 resultptr = new wxTreeItemId((wxTreeItemId &) result);
26953 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
26954 }
26955 {
26956 if (temp4)
26957 delete arg4;
26958 }
26959 return resultobj;
26960 fail:
26961 {
26962 if (temp4)
26963 delete arg4;
26964 }
26965 return NULL;
26966 }
26967
26968
26969 static PyObject *_wrap_TreeCtrl_InsertItemBefore(PyObject *self, PyObject *args, PyObject *kwargs) {
26970 PyObject *resultobj;
26971 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
26972 wxTreeItemId *arg2 = 0 ;
26973 size_t arg3 ;
26974 wxString *arg4 = 0 ;
26975 int arg5 = (int) -1 ;
26976 int arg6 = (int) -1 ;
26977 wxPyTreeItemData *arg7 = (wxPyTreeItemData *) NULL ;
26978 wxTreeItemId result;
26979 bool temp4 = False ;
26980 PyObject * obj0 = 0 ;
26981 PyObject * obj1 = 0 ;
26982 PyObject * obj2 = 0 ;
26983 PyObject * obj3 = 0 ;
26984 PyObject * obj4 = 0 ;
26985 PyObject * obj5 = 0 ;
26986 PyObject * obj6 = 0 ;
26987 char *kwnames[] = {
26988 (char *) "self",(char *) "parent",(char *) "index",(char *) "text",(char *) "image",(char *) "selectedImage",(char *) "data", NULL
26989 };
26990
26991 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO|OOO:TreeCtrl_InsertItemBefore",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
26992 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
26993 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
26994 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
26995 SWIG_POINTER_EXCEPTION | 0)) == -1)
26996 SWIG_fail;
26997 if (arg2 == NULL) {
26998 PyErr_SetString(PyExc_TypeError,"null reference");
26999 SWIG_fail;
27000 }
27001 arg3 = (size_t) SWIG_AsUnsignedLong(obj2);
27002 if (PyErr_Occurred()) SWIG_fail;
27003 {
27004 arg4 = wxString_in_helper(obj3);
27005 if (arg4 == NULL) SWIG_fail;
27006 temp4 = True;
27007 }
27008 if (obj4) {
27009 arg5 = (int) SWIG_AsInt(obj4);
27010 if (PyErr_Occurred()) SWIG_fail;
27011 }
27012 if (obj5) {
27013 arg6 = (int) SWIG_AsInt(obj5);
27014 if (PyErr_Occurred()) SWIG_fail;
27015 }
27016 if (obj6) {
27017 if ((SWIG_ConvertPtr(obj6,(void **)(&arg7),SWIGTYPE_p_wxPyTreeItemData,
27018 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27019 }
27020 {
27021 PyThreadState* __tstate = wxPyBeginAllowThreads();
27022 result = (arg1)->InsertItem((wxTreeItemId const &)*arg2,arg3,(wxString const &)*arg4,arg5,arg6,arg7);
27023
27024 wxPyEndAllowThreads(__tstate);
27025 if (PyErr_Occurred()) SWIG_fail;
27026 }
27027 {
27028 wxTreeItemId * resultptr;
27029 resultptr = new wxTreeItemId((wxTreeItemId &) result);
27030 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
27031 }
27032 {
27033 if (temp4)
27034 delete arg4;
27035 }
27036 return resultobj;
27037 fail:
27038 {
27039 if (temp4)
27040 delete arg4;
27041 }
27042 return NULL;
27043 }
27044
27045
27046 static PyObject *_wrap_TreeCtrl_AppendItem(PyObject *self, PyObject *args, PyObject *kwargs) {
27047 PyObject *resultobj;
27048 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27049 wxTreeItemId *arg2 = 0 ;
27050 wxString *arg3 = 0 ;
27051 int arg4 = (int) -1 ;
27052 int arg5 = (int) -1 ;
27053 wxPyTreeItemData *arg6 = (wxPyTreeItemData *) NULL ;
27054 wxTreeItemId result;
27055 bool temp3 = False ;
27056 PyObject * obj0 = 0 ;
27057 PyObject * obj1 = 0 ;
27058 PyObject * obj2 = 0 ;
27059 PyObject * obj3 = 0 ;
27060 PyObject * obj4 = 0 ;
27061 PyObject * obj5 = 0 ;
27062 char *kwnames[] = {
27063 (char *) "self",(char *) "parent",(char *) "text",(char *) "image",(char *) "selectedImage",(char *) "data", NULL
27064 };
27065
27066 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO|OOO:TreeCtrl_AppendItem",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail;
27067 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27068 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27069 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
27070 SWIG_POINTER_EXCEPTION | 0)) == -1)
27071 SWIG_fail;
27072 if (arg2 == NULL) {
27073 PyErr_SetString(PyExc_TypeError,"null reference");
27074 SWIG_fail;
27075 }
27076 {
27077 arg3 = wxString_in_helper(obj2);
27078 if (arg3 == NULL) SWIG_fail;
27079 temp3 = True;
27080 }
27081 if (obj3) {
27082 arg4 = (int) SWIG_AsInt(obj3);
27083 if (PyErr_Occurred()) SWIG_fail;
27084 }
27085 if (obj4) {
27086 arg5 = (int) SWIG_AsInt(obj4);
27087 if (PyErr_Occurred()) SWIG_fail;
27088 }
27089 if (obj5) {
27090 if ((SWIG_ConvertPtr(obj5,(void **)(&arg6),SWIGTYPE_p_wxPyTreeItemData,
27091 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27092 }
27093 {
27094 PyThreadState* __tstate = wxPyBeginAllowThreads();
27095 result = (arg1)->AppendItem((wxTreeItemId const &)*arg2,(wxString const &)*arg3,arg4,arg5,arg6);
27096
27097 wxPyEndAllowThreads(__tstate);
27098 if (PyErr_Occurred()) SWIG_fail;
27099 }
27100 {
27101 wxTreeItemId * resultptr;
27102 resultptr = new wxTreeItemId((wxTreeItemId &) result);
27103 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
27104 }
27105 {
27106 if (temp3)
27107 delete arg3;
27108 }
27109 return resultobj;
27110 fail:
27111 {
27112 if (temp3)
27113 delete arg3;
27114 }
27115 return NULL;
27116 }
27117
27118
27119 static PyObject *_wrap_TreeCtrl_Delete(PyObject *self, PyObject *args, PyObject *kwargs) {
27120 PyObject *resultobj;
27121 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27122 wxTreeItemId *arg2 = 0 ;
27123 PyObject * obj0 = 0 ;
27124 PyObject * obj1 = 0 ;
27125 char *kwnames[] = {
27126 (char *) "self",(char *) "item", NULL
27127 };
27128
27129 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_Delete",kwnames,&obj0,&obj1)) goto fail;
27130 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27131 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27132 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
27133 SWIG_POINTER_EXCEPTION | 0)) == -1)
27134 SWIG_fail;
27135 if (arg2 == NULL) {
27136 PyErr_SetString(PyExc_TypeError,"null reference");
27137 SWIG_fail;
27138 }
27139 {
27140 PyThreadState* __tstate = wxPyBeginAllowThreads();
27141 (arg1)->Delete((wxTreeItemId const &)*arg2);
27142
27143 wxPyEndAllowThreads(__tstate);
27144 if (PyErr_Occurred()) SWIG_fail;
27145 }
27146 Py_INCREF(Py_None); resultobj = Py_None;
27147 return resultobj;
27148 fail:
27149 return NULL;
27150 }
27151
27152
27153 static PyObject *_wrap_TreeCtrl_DeleteChildren(PyObject *self, PyObject *args, PyObject *kwargs) {
27154 PyObject *resultobj;
27155 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27156 wxTreeItemId *arg2 = 0 ;
27157 PyObject * obj0 = 0 ;
27158 PyObject * obj1 = 0 ;
27159 char *kwnames[] = {
27160 (char *) "self",(char *) "item", NULL
27161 };
27162
27163 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_DeleteChildren",kwnames,&obj0,&obj1)) goto fail;
27164 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27165 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27166 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
27167 SWIG_POINTER_EXCEPTION | 0)) == -1)
27168 SWIG_fail;
27169 if (arg2 == NULL) {
27170 PyErr_SetString(PyExc_TypeError,"null reference");
27171 SWIG_fail;
27172 }
27173 {
27174 PyThreadState* __tstate = wxPyBeginAllowThreads();
27175 (arg1)->DeleteChildren((wxTreeItemId const &)*arg2);
27176
27177 wxPyEndAllowThreads(__tstate);
27178 if (PyErr_Occurred()) SWIG_fail;
27179 }
27180 Py_INCREF(Py_None); resultobj = Py_None;
27181 return resultobj;
27182 fail:
27183 return NULL;
27184 }
27185
27186
27187 static PyObject *_wrap_TreeCtrl_DeleteAllItems(PyObject *self, PyObject *args, PyObject *kwargs) {
27188 PyObject *resultobj;
27189 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27190 PyObject * obj0 = 0 ;
27191 char *kwnames[] = {
27192 (char *) "self", NULL
27193 };
27194
27195 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeCtrl_DeleteAllItems",kwnames,&obj0)) goto fail;
27196 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27197 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27198 {
27199 PyThreadState* __tstate = wxPyBeginAllowThreads();
27200 (arg1)->DeleteAllItems();
27201
27202 wxPyEndAllowThreads(__tstate);
27203 if (PyErr_Occurred()) SWIG_fail;
27204 }
27205 Py_INCREF(Py_None); resultobj = Py_None;
27206 return resultobj;
27207 fail:
27208 return NULL;
27209 }
27210
27211
27212 static PyObject *_wrap_TreeCtrl_Expand(PyObject *self, PyObject *args, PyObject *kwargs) {
27213 PyObject *resultobj;
27214 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27215 wxTreeItemId *arg2 = 0 ;
27216 PyObject * obj0 = 0 ;
27217 PyObject * obj1 = 0 ;
27218 char *kwnames[] = {
27219 (char *) "self",(char *) "item", NULL
27220 };
27221
27222 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_Expand",kwnames,&obj0,&obj1)) goto fail;
27223 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27224 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27225 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
27226 SWIG_POINTER_EXCEPTION | 0)) == -1)
27227 SWIG_fail;
27228 if (arg2 == NULL) {
27229 PyErr_SetString(PyExc_TypeError,"null reference");
27230 SWIG_fail;
27231 }
27232 {
27233 PyThreadState* __tstate = wxPyBeginAllowThreads();
27234 (arg1)->Expand((wxTreeItemId const &)*arg2);
27235
27236 wxPyEndAllowThreads(__tstate);
27237 if (PyErr_Occurred()) SWIG_fail;
27238 }
27239 Py_INCREF(Py_None); resultobj = Py_None;
27240 return resultobj;
27241 fail:
27242 return NULL;
27243 }
27244
27245
27246 static PyObject *_wrap_TreeCtrl_Collapse(PyObject *self, PyObject *args, PyObject *kwargs) {
27247 PyObject *resultobj;
27248 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27249 wxTreeItemId *arg2 = 0 ;
27250 PyObject * obj0 = 0 ;
27251 PyObject * obj1 = 0 ;
27252 char *kwnames[] = {
27253 (char *) "self",(char *) "item", NULL
27254 };
27255
27256 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_Collapse",kwnames,&obj0,&obj1)) goto fail;
27257 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27258 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27259 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
27260 SWIG_POINTER_EXCEPTION | 0)) == -1)
27261 SWIG_fail;
27262 if (arg2 == NULL) {
27263 PyErr_SetString(PyExc_TypeError,"null reference");
27264 SWIG_fail;
27265 }
27266 {
27267 PyThreadState* __tstate = wxPyBeginAllowThreads();
27268 (arg1)->Collapse((wxTreeItemId const &)*arg2);
27269
27270 wxPyEndAllowThreads(__tstate);
27271 if (PyErr_Occurred()) SWIG_fail;
27272 }
27273 Py_INCREF(Py_None); resultobj = Py_None;
27274 return resultobj;
27275 fail:
27276 return NULL;
27277 }
27278
27279
27280 static PyObject *_wrap_TreeCtrl_CollapseAndReset(PyObject *self, PyObject *args, PyObject *kwargs) {
27281 PyObject *resultobj;
27282 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27283 wxTreeItemId *arg2 = 0 ;
27284 PyObject * obj0 = 0 ;
27285 PyObject * obj1 = 0 ;
27286 char *kwnames[] = {
27287 (char *) "self",(char *) "item", NULL
27288 };
27289
27290 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_CollapseAndReset",kwnames,&obj0,&obj1)) goto fail;
27291 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27292 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27293 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
27294 SWIG_POINTER_EXCEPTION | 0)) == -1)
27295 SWIG_fail;
27296 if (arg2 == NULL) {
27297 PyErr_SetString(PyExc_TypeError,"null reference");
27298 SWIG_fail;
27299 }
27300 {
27301 PyThreadState* __tstate = wxPyBeginAllowThreads();
27302 (arg1)->CollapseAndReset((wxTreeItemId const &)*arg2);
27303
27304 wxPyEndAllowThreads(__tstate);
27305 if (PyErr_Occurred()) SWIG_fail;
27306 }
27307 Py_INCREF(Py_None); resultobj = Py_None;
27308 return resultobj;
27309 fail:
27310 return NULL;
27311 }
27312
27313
27314 static PyObject *_wrap_TreeCtrl_Toggle(PyObject *self, PyObject *args, PyObject *kwargs) {
27315 PyObject *resultobj;
27316 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27317 wxTreeItemId *arg2 = 0 ;
27318 PyObject * obj0 = 0 ;
27319 PyObject * obj1 = 0 ;
27320 char *kwnames[] = {
27321 (char *) "self",(char *) "item", NULL
27322 };
27323
27324 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_Toggle",kwnames,&obj0,&obj1)) goto fail;
27325 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27326 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27327 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
27328 SWIG_POINTER_EXCEPTION | 0)) == -1)
27329 SWIG_fail;
27330 if (arg2 == NULL) {
27331 PyErr_SetString(PyExc_TypeError,"null reference");
27332 SWIG_fail;
27333 }
27334 {
27335 PyThreadState* __tstate = wxPyBeginAllowThreads();
27336 (arg1)->Toggle((wxTreeItemId const &)*arg2);
27337
27338 wxPyEndAllowThreads(__tstate);
27339 if (PyErr_Occurred()) SWIG_fail;
27340 }
27341 Py_INCREF(Py_None); resultobj = Py_None;
27342 return resultobj;
27343 fail:
27344 return NULL;
27345 }
27346
27347
27348 static PyObject *_wrap_TreeCtrl_Unselect(PyObject *self, PyObject *args, PyObject *kwargs) {
27349 PyObject *resultobj;
27350 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27351 PyObject * obj0 = 0 ;
27352 char *kwnames[] = {
27353 (char *) "self", NULL
27354 };
27355
27356 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeCtrl_Unselect",kwnames,&obj0)) goto fail;
27357 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27358 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27359 {
27360 PyThreadState* __tstate = wxPyBeginAllowThreads();
27361 (arg1)->Unselect();
27362
27363 wxPyEndAllowThreads(__tstate);
27364 if (PyErr_Occurred()) SWIG_fail;
27365 }
27366 Py_INCREF(Py_None); resultobj = Py_None;
27367 return resultobj;
27368 fail:
27369 return NULL;
27370 }
27371
27372
27373 static PyObject *_wrap_TreeCtrl_UnselectItem(PyObject *self, PyObject *args, PyObject *kwargs) {
27374 PyObject *resultobj;
27375 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27376 wxTreeItemId *arg2 = 0 ;
27377 PyObject * obj0 = 0 ;
27378 PyObject * obj1 = 0 ;
27379 char *kwnames[] = {
27380 (char *) "self",(char *) "item", NULL
27381 };
27382
27383 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_UnselectItem",kwnames,&obj0,&obj1)) goto fail;
27384 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27385 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27386 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
27387 SWIG_POINTER_EXCEPTION | 0)) == -1)
27388 SWIG_fail;
27389 if (arg2 == NULL) {
27390 PyErr_SetString(PyExc_TypeError,"null reference");
27391 SWIG_fail;
27392 }
27393 {
27394 PyThreadState* __tstate = wxPyBeginAllowThreads();
27395 (arg1)->UnselectItem((wxTreeItemId const &)*arg2);
27396
27397 wxPyEndAllowThreads(__tstate);
27398 if (PyErr_Occurred()) SWIG_fail;
27399 }
27400 Py_INCREF(Py_None); resultobj = Py_None;
27401 return resultobj;
27402 fail:
27403 return NULL;
27404 }
27405
27406
27407 static PyObject *_wrap_TreeCtrl_UnselectAll(PyObject *self, PyObject *args, PyObject *kwargs) {
27408 PyObject *resultobj;
27409 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27410 PyObject * obj0 = 0 ;
27411 char *kwnames[] = {
27412 (char *) "self", NULL
27413 };
27414
27415 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeCtrl_UnselectAll",kwnames,&obj0)) goto fail;
27416 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27417 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27418 {
27419 PyThreadState* __tstate = wxPyBeginAllowThreads();
27420 (arg1)->UnselectAll();
27421
27422 wxPyEndAllowThreads(__tstate);
27423 if (PyErr_Occurred()) SWIG_fail;
27424 }
27425 Py_INCREF(Py_None); resultobj = Py_None;
27426 return resultobj;
27427 fail:
27428 return NULL;
27429 }
27430
27431
27432 static PyObject *_wrap_TreeCtrl_SelectItem(PyObject *self, PyObject *args, PyObject *kwargs) {
27433 PyObject *resultobj;
27434 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27435 wxTreeItemId *arg2 = 0 ;
27436 bool arg3 = (bool) True ;
27437 PyObject * obj0 = 0 ;
27438 PyObject * obj1 = 0 ;
27439 PyObject * obj2 = 0 ;
27440 char *kwnames[] = {
27441 (char *) "self",(char *) "item",(char *) "select", NULL
27442 };
27443
27444 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:TreeCtrl_SelectItem",kwnames,&obj0,&obj1,&obj2)) goto fail;
27445 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27446 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27447 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
27448 SWIG_POINTER_EXCEPTION | 0)) == -1)
27449 SWIG_fail;
27450 if (arg2 == NULL) {
27451 PyErr_SetString(PyExc_TypeError,"null reference");
27452 SWIG_fail;
27453 }
27454 if (obj2) {
27455 arg3 = (bool) SWIG_AsBool(obj2);
27456 if (PyErr_Occurred()) SWIG_fail;
27457 }
27458 {
27459 PyThreadState* __tstate = wxPyBeginAllowThreads();
27460 (arg1)->SelectItem((wxTreeItemId const &)*arg2,arg3);
27461
27462 wxPyEndAllowThreads(__tstate);
27463 if (PyErr_Occurred()) SWIG_fail;
27464 }
27465 Py_INCREF(Py_None); resultobj = Py_None;
27466 return resultobj;
27467 fail:
27468 return NULL;
27469 }
27470
27471
27472 static PyObject *_wrap_TreeCtrl_ToggleItemSelection(PyObject *self, PyObject *args, PyObject *kwargs) {
27473 PyObject *resultobj;
27474 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27475 wxTreeItemId *arg2 = 0 ;
27476 PyObject * obj0 = 0 ;
27477 PyObject * obj1 = 0 ;
27478 char *kwnames[] = {
27479 (char *) "self",(char *) "item", NULL
27480 };
27481
27482 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_ToggleItemSelection",kwnames,&obj0,&obj1)) goto fail;
27483 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27484 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27485 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
27486 SWIG_POINTER_EXCEPTION | 0)) == -1)
27487 SWIG_fail;
27488 if (arg2 == NULL) {
27489 PyErr_SetString(PyExc_TypeError,"null reference");
27490 SWIG_fail;
27491 }
27492 {
27493 PyThreadState* __tstate = wxPyBeginAllowThreads();
27494 (arg1)->ToggleItemSelection((wxTreeItemId const &)*arg2);
27495
27496 wxPyEndAllowThreads(__tstate);
27497 if (PyErr_Occurred()) SWIG_fail;
27498 }
27499 Py_INCREF(Py_None); resultobj = Py_None;
27500 return resultobj;
27501 fail:
27502 return NULL;
27503 }
27504
27505
27506 static PyObject *_wrap_TreeCtrl_EnsureVisible(PyObject *self, PyObject *args, PyObject *kwargs) {
27507 PyObject *resultobj;
27508 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27509 wxTreeItemId *arg2 = 0 ;
27510 PyObject * obj0 = 0 ;
27511 PyObject * obj1 = 0 ;
27512 char *kwnames[] = {
27513 (char *) "self",(char *) "item", NULL
27514 };
27515
27516 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_EnsureVisible",kwnames,&obj0,&obj1)) goto fail;
27517 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27518 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27519 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
27520 SWIG_POINTER_EXCEPTION | 0)) == -1)
27521 SWIG_fail;
27522 if (arg2 == NULL) {
27523 PyErr_SetString(PyExc_TypeError,"null reference");
27524 SWIG_fail;
27525 }
27526 {
27527 PyThreadState* __tstate = wxPyBeginAllowThreads();
27528 (arg1)->EnsureVisible((wxTreeItemId const &)*arg2);
27529
27530 wxPyEndAllowThreads(__tstate);
27531 if (PyErr_Occurred()) SWIG_fail;
27532 }
27533 Py_INCREF(Py_None); resultobj = Py_None;
27534 return resultobj;
27535 fail:
27536 return NULL;
27537 }
27538
27539
27540 static PyObject *_wrap_TreeCtrl_ScrollTo(PyObject *self, PyObject *args, PyObject *kwargs) {
27541 PyObject *resultobj;
27542 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27543 wxTreeItemId *arg2 = 0 ;
27544 PyObject * obj0 = 0 ;
27545 PyObject * obj1 = 0 ;
27546 char *kwnames[] = {
27547 (char *) "self",(char *) "item", NULL
27548 };
27549
27550 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_ScrollTo",kwnames,&obj0,&obj1)) goto fail;
27551 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27552 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27553 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
27554 SWIG_POINTER_EXCEPTION | 0)) == -1)
27555 SWIG_fail;
27556 if (arg2 == NULL) {
27557 PyErr_SetString(PyExc_TypeError,"null reference");
27558 SWIG_fail;
27559 }
27560 {
27561 PyThreadState* __tstate = wxPyBeginAllowThreads();
27562 (arg1)->ScrollTo((wxTreeItemId const &)*arg2);
27563
27564 wxPyEndAllowThreads(__tstate);
27565 if (PyErr_Occurred()) SWIG_fail;
27566 }
27567 Py_INCREF(Py_None); resultobj = Py_None;
27568 return resultobj;
27569 fail:
27570 return NULL;
27571 }
27572
27573
27574 static PyObject *_wrap_TreeCtrl_EditLabel(PyObject *self, PyObject *args, PyObject *kwargs) {
27575 PyObject *resultobj;
27576 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27577 wxTreeItemId *arg2 = 0 ;
27578 PyObject * obj0 = 0 ;
27579 PyObject * obj1 = 0 ;
27580 char *kwnames[] = {
27581 (char *) "self",(char *) "item", NULL
27582 };
27583
27584 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_EditLabel",kwnames,&obj0,&obj1)) goto fail;
27585 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27586 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27587 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
27588 SWIG_POINTER_EXCEPTION | 0)) == -1)
27589 SWIG_fail;
27590 if (arg2 == NULL) {
27591 PyErr_SetString(PyExc_TypeError,"null reference");
27592 SWIG_fail;
27593 }
27594 {
27595 PyThreadState* __tstate = wxPyBeginAllowThreads();
27596 (arg1)->EditLabel((wxTreeItemId const &)*arg2);
27597
27598 wxPyEndAllowThreads(__tstate);
27599 if (PyErr_Occurred()) SWIG_fail;
27600 }
27601 Py_INCREF(Py_None); resultobj = Py_None;
27602 return resultobj;
27603 fail:
27604 return NULL;
27605 }
27606
27607
27608 static PyObject *_wrap_TreeCtrl_GetEditControl(PyObject *self, PyObject *args, PyObject *kwargs) {
27609 PyObject *resultobj;
27610 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27611 wxTextCtrl *result;
27612 PyObject * obj0 = 0 ;
27613 char *kwnames[] = {
27614 (char *) "self", NULL
27615 };
27616
27617 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:TreeCtrl_GetEditControl",kwnames,&obj0)) goto fail;
27618 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27619 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27620 {
27621 PyThreadState* __tstate = wxPyBeginAllowThreads();
27622 result = (wxTextCtrl *)((wxPyTreeCtrl const *)arg1)->GetEditControl();
27623
27624 wxPyEndAllowThreads(__tstate);
27625 if (PyErr_Occurred()) SWIG_fail;
27626 }
27627 {
27628 resultobj = wxPyMake_wxObject(result, 0);
27629 }
27630 return resultobj;
27631 fail:
27632 return NULL;
27633 }
27634
27635
27636 static PyObject *_wrap_TreeCtrl_SortChildren(PyObject *self, PyObject *args, PyObject *kwargs) {
27637 PyObject *resultobj;
27638 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27639 wxTreeItemId *arg2 = 0 ;
27640 PyObject * obj0 = 0 ;
27641 PyObject * obj1 = 0 ;
27642 char *kwnames[] = {
27643 (char *) "self",(char *) "item", NULL
27644 };
27645
27646 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_SortChildren",kwnames,&obj0,&obj1)) goto fail;
27647 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27648 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27649 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
27650 SWIG_POINTER_EXCEPTION | 0)) == -1)
27651 SWIG_fail;
27652 if (arg2 == NULL) {
27653 PyErr_SetString(PyExc_TypeError,"null reference");
27654 SWIG_fail;
27655 }
27656 {
27657 PyThreadState* __tstate = wxPyBeginAllowThreads();
27658 (arg1)->SortChildren((wxTreeItemId const &)*arg2);
27659
27660 wxPyEndAllowThreads(__tstate);
27661 if (PyErr_Occurred()) SWIG_fail;
27662 }
27663 Py_INCREF(Py_None); resultobj = Py_None;
27664 return resultobj;
27665 fail:
27666 return NULL;
27667 }
27668
27669
27670 static PyObject *_wrap_TreeCtrl_HitTest(PyObject *self, PyObject *args, PyObject *kwargs) {
27671 PyObject *resultobj;
27672 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27673 wxPoint *arg2 = 0 ;
27674 int *arg3 = 0 ;
27675 wxTreeItemId result;
27676 wxPoint temp2 ;
27677 int temp3 ;
27678 PyObject * obj0 = 0 ;
27679 PyObject * obj1 = 0 ;
27680 char *kwnames[] = {
27681 (char *) "self",(char *) "point", NULL
27682 };
27683
27684 arg3 = &temp3;
27685 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:TreeCtrl_HitTest",kwnames,&obj0,&obj1)) goto fail;
27686 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27687 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27688 {
27689 arg2 = &temp2;
27690 if ( ! wxPoint_helper(obj1, &arg2)) SWIG_fail;
27691 }
27692 {
27693 PyThreadState* __tstate = wxPyBeginAllowThreads();
27694 result = (arg1)->HitTest((wxPoint const &)*arg2,*arg3);
27695
27696 wxPyEndAllowThreads(__tstate);
27697 if (PyErr_Occurred()) SWIG_fail;
27698 }
27699 {
27700 wxTreeItemId * resultptr;
27701 resultptr = new wxTreeItemId((wxTreeItemId &) result);
27702 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
27703 }
27704 {
27705 PyObject *o = PyInt_FromLong((long) (*arg3));
27706 resultobj = t_output_helper(resultobj,o);
27707 }
27708 return resultobj;
27709 fail:
27710 return NULL;
27711 }
27712
27713
27714 static PyObject *_wrap_TreeCtrl_GetBoundingRect(PyObject *self, PyObject *args, PyObject *kwargs) {
27715 PyObject *resultobj;
27716 wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
27717 wxTreeItemId *arg2 = 0 ;
27718 bool arg3 = (bool) False ;
27719 PyObject *result;
27720 PyObject * obj0 = 0 ;
27721 PyObject * obj1 = 0 ;
27722 PyObject * obj2 = 0 ;
27723 char *kwnames[] = {
27724 (char *) "self",(char *) "item",(char *) "textOnly", NULL
27725 };
27726
27727 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:TreeCtrl_GetBoundingRect",kwnames,&obj0,&obj1,&obj2)) goto fail;
27728 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
27729 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27730 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
27731 SWIG_POINTER_EXCEPTION | 0)) == -1)
27732 SWIG_fail;
27733 if (arg2 == NULL) {
27734 PyErr_SetString(PyExc_TypeError,"null reference");
27735 SWIG_fail;
27736 }
27737 if (obj2) {
27738 arg3 = (bool) SWIG_AsBool(obj2);
27739 if (PyErr_Occurred()) SWIG_fail;
27740 }
27741 {
27742 PyThreadState* __tstate = wxPyBeginAllowThreads();
27743 result = (PyObject *)wxPyTreeCtrl_GetBoundingRect(arg1,(wxTreeItemId const &)*arg2,arg3);
27744
27745 wxPyEndAllowThreads(__tstate);
27746 if (PyErr_Occurred()) SWIG_fail;
27747 }
27748 resultobj = result;
27749 return resultobj;
27750 fail:
27751 return NULL;
27752 }
27753
27754
27755 static PyObject *_wrap_TreeCtrl_GetClassDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
27756 PyObject *resultobj;
27757 int arg1 = (int) wxWINDOW_VARIANT_NORMAL ;
27758 wxVisualAttributes result;
27759 PyObject * obj0 = 0 ;
27760 char *kwnames[] = {
27761 (char *) "variant", NULL
27762 };
27763
27764 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:TreeCtrl_GetClassDefaultAttributes",kwnames,&obj0)) goto fail;
27765 if (obj0) {
27766 arg1 = (wxWindowVariant) SWIG_AsInt(obj0);
27767 if (PyErr_Occurred()) SWIG_fail;
27768 }
27769 {
27770 if (!wxPyCheckForApp()) SWIG_fail;
27771 PyThreadState* __tstate = wxPyBeginAllowThreads();
27772 result = wxPyTreeCtrl::GetClassDefaultAttributes((wxWindowVariant )arg1);
27773
27774 wxPyEndAllowThreads(__tstate);
27775 if (PyErr_Occurred()) SWIG_fail;
27776 }
27777 {
27778 wxVisualAttributes * resultptr;
27779 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
27780 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
27781 }
27782 return resultobj;
27783 fail:
27784 return NULL;
27785 }
27786
27787
27788 static PyObject * TreeCtrl_swigregister(PyObject *self, PyObject *args) {
27789 PyObject *obj;
27790 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
27791 SWIG_TypeClientData(SWIGTYPE_p_wxPyTreeCtrl, obj);
27792 Py_INCREF(obj);
27793 return Py_BuildValue((char *)"");
27794 }
27795 static int _wrap_DirDialogDefaultFolderStr_set(PyObject *_val) {
27796 PyErr_SetString(PyExc_TypeError,"Variable DirDialogDefaultFolderStr is read-only.");
27797 return 1;
27798 }
27799
27800
27801 static PyObject *_wrap_DirDialogDefaultFolderStr_get() {
27802 PyObject *pyobj;
27803
27804 {
27805 #if wxUSE_UNICODE
27806 pyobj = PyUnicode_FromWideChar((&wxPyDirDialogDefaultFolderStr)->c_str(), (&wxPyDirDialogDefaultFolderStr)->Len());
27807 #else
27808 pyobj = PyString_FromStringAndSize((&wxPyDirDialogDefaultFolderStr)->c_str(), (&wxPyDirDialogDefaultFolderStr)->Len());
27809 #endif
27810 }
27811 return pyobj;
27812 }
27813
27814
27815 static PyObject *_wrap_new_GenericDirCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
27816 PyObject *resultobj;
27817 wxWindow *arg1 = (wxWindow *) 0 ;
27818 int arg2 = (int) (int)-1 ;
27819 wxString const &arg3_defvalue = wxPyDirDialogDefaultFolderStr ;
27820 wxString *arg3 = (wxString *) &arg3_defvalue ;
27821 wxPoint const &arg4_defvalue = wxDefaultPosition ;
27822 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
27823 wxSize const &arg5_defvalue = wxDefaultSize ;
27824 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
27825 long arg6 = (long) wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER ;
27826 wxString const &arg7_defvalue = wxPyEmptyString ;
27827 wxString *arg7 = (wxString *) &arg7_defvalue ;
27828 int arg8 = (int) 0 ;
27829 wxString const &arg9_defvalue = wxPyTreeCtrlNameStr ;
27830 wxString *arg9 = (wxString *) &arg9_defvalue ;
27831 wxGenericDirCtrl *result;
27832 bool temp3 = False ;
27833 wxPoint temp4 ;
27834 wxSize temp5 ;
27835 bool temp7 = False ;
27836 bool temp9 = False ;
27837 PyObject * obj0 = 0 ;
27838 PyObject * obj1 = 0 ;
27839 PyObject * obj2 = 0 ;
27840 PyObject * obj3 = 0 ;
27841 PyObject * obj4 = 0 ;
27842 PyObject * obj5 = 0 ;
27843 PyObject * obj6 = 0 ;
27844 PyObject * obj7 = 0 ;
27845 PyObject * obj8 = 0 ;
27846 char *kwnames[] = {
27847 (char *) "parent",(char *) "id",(char *) "dir",(char *) "pos",(char *) "size",(char *) "style",(char *) "filter",(char *) "defaultFilter",(char *) "name", NULL
27848 };
27849
27850 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOOO:new_GenericDirCtrl",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail;
27851 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
27852 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
27853 if (obj1) {
27854 arg2 = (int const) SWIG_AsInt(obj1);
27855 if (PyErr_Occurred()) SWIG_fail;
27856 }
27857 if (obj2) {
27858 {
27859 arg3 = wxString_in_helper(obj2);
27860 if (arg3 == NULL) SWIG_fail;
27861 temp3 = True;
27862 }
27863 }
27864 if (obj3) {
27865 {
27866 arg4 = &temp4;
27867 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
27868 }
27869 }
27870 if (obj4) {
27871 {
27872 arg5 = &temp5;
27873 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
27874 }
27875 }
27876 if (obj5) {
27877 arg6 = (long) SWIG_AsLong(obj5);
27878 if (PyErr_Occurred()) SWIG_fail;
27879 }
27880 if (obj6) {
27881 {
27882 arg7 = wxString_in_helper(obj6);
27883 if (arg7 == NULL) SWIG_fail;
27884 temp7 = True;
27885 }
27886 }
27887 if (obj7) {
27888 arg8 = (int) SWIG_AsInt(obj7);
27889 if (PyErr_Occurred()) SWIG_fail;
27890 }
27891 if (obj8) {
27892 {
27893 arg9 = wxString_in_helper(obj8);
27894 if (arg9 == NULL) SWIG_fail;
27895 temp9 = True;
27896 }
27897 }
27898 {
27899 if (!wxPyCheckForApp()) SWIG_fail;
27900 PyThreadState* __tstate = wxPyBeginAllowThreads();
27901 result = (wxGenericDirCtrl *)new wxGenericDirCtrl(arg1,arg2,(wxString const &)*arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxString const &)*arg7,arg8,(wxString const &)*arg9);
27902
27903 wxPyEndAllowThreads(__tstate);
27904 if (PyErr_Occurred()) SWIG_fail;
27905 }
27906 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxGenericDirCtrl, 1);
27907 {
27908 if (temp3)
27909 delete arg3;
27910 }
27911 {
27912 if (temp7)
27913 delete arg7;
27914 }
27915 {
27916 if (temp9)
27917 delete arg9;
27918 }
27919 return resultobj;
27920 fail:
27921 {
27922 if (temp3)
27923 delete arg3;
27924 }
27925 {
27926 if (temp7)
27927 delete arg7;
27928 }
27929 {
27930 if (temp9)
27931 delete arg9;
27932 }
27933 return NULL;
27934 }
27935
27936
27937 static PyObject *_wrap_new_PreGenericDirCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
27938 PyObject *resultobj;
27939 wxGenericDirCtrl *result;
27940 char *kwnames[] = {
27941 NULL
27942 };
27943
27944 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreGenericDirCtrl",kwnames)) goto fail;
27945 {
27946 if (!wxPyCheckForApp()) SWIG_fail;
27947 PyThreadState* __tstate = wxPyBeginAllowThreads();
27948 result = (wxGenericDirCtrl *)new wxGenericDirCtrl();
27949
27950 wxPyEndAllowThreads(__tstate);
27951 if (PyErr_Occurred()) SWIG_fail;
27952 }
27953 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxGenericDirCtrl, 1);
27954 return resultobj;
27955 fail:
27956 return NULL;
27957 }
27958
27959
27960 static PyObject *_wrap_GenericDirCtrl_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
27961 PyObject *resultobj;
27962 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
27963 wxWindow *arg2 = (wxWindow *) 0 ;
27964 int arg3 = (int) (int)-1 ;
27965 wxString const &arg4_defvalue = wxPyDirDialogDefaultFolderStr ;
27966 wxString *arg4 = (wxString *) &arg4_defvalue ;
27967 wxPoint const &arg5_defvalue = wxDefaultPosition ;
27968 wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
27969 wxSize const &arg6_defvalue = wxDefaultSize ;
27970 wxSize *arg6 = (wxSize *) &arg6_defvalue ;
27971 long arg7 = (long) wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER ;
27972 wxString const &arg8_defvalue = wxPyEmptyString ;
27973 wxString *arg8 = (wxString *) &arg8_defvalue ;
27974 int arg9 = (int) 0 ;
27975 wxString const &arg10_defvalue = wxPyTreeCtrlNameStr ;
27976 wxString *arg10 = (wxString *) &arg10_defvalue ;
27977 bool result;
27978 bool temp4 = False ;
27979 wxPoint temp5 ;
27980 wxSize temp6 ;
27981 bool temp8 = False ;
27982 bool temp10 = False ;
27983 PyObject * obj0 = 0 ;
27984 PyObject * obj1 = 0 ;
27985 PyObject * obj2 = 0 ;
27986 PyObject * obj3 = 0 ;
27987 PyObject * obj4 = 0 ;
27988 PyObject * obj5 = 0 ;
27989 PyObject * obj6 = 0 ;
27990 PyObject * obj7 = 0 ;
27991 PyObject * obj8 = 0 ;
27992 PyObject * obj9 = 0 ;
27993 char *kwnames[] = {
27994 (char *) "self",(char *) "parent",(char *) "id",(char *) "dir",(char *) "pos",(char *) "size",(char *) "style",(char *) "filter",(char *) "defaultFilter",(char *) "name", NULL
27995 };
27996
27997 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOOO:GenericDirCtrl_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) goto fail;
27998 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
27999 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28000 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
28001 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28002 if (obj2) {
28003 arg3 = (int const) SWIG_AsInt(obj2);
28004 if (PyErr_Occurred()) SWIG_fail;
28005 }
28006 if (obj3) {
28007 {
28008 arg4 = wxString_in_helper(obj3);
28009 if (arg4 == NULL) SWIG_fail;
28010 temp4 = True;
28011 }
28012 }
28013 if (obj4) {
28014 {
28015 arg5 = &temp5;
28016 if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
28017 }
28018 }
28019 if (obj5) {
28020 {
28021 arg6 = &temp6;
28022 if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
28023 }
28024 }
28025 if (obj6) {
28026 arg7 = (long) SWIG_AsLong(obj6);
28027 if (PyErr_Occurred()) SWIG_fail;
28028 }
28029 if (obj7) {
28030 {
28031 arg8 = wxString_in_helper(obj7);
28032 if (arg8 == NULL) SWIG_fail;
28033 temp8 = True;
28034 }
28035 }
28036 if (obj8) {
28037 arg9 = (int) SWIG_AsInt(obj8);
28038 if (PyErr_Occurred()) SWIG_fail;
28039 }
28040 if (obj9) {
28041 {
28042 arg10 = wxString_in_helper(obj9);
28043 if (arg10 == NULL) SWIG_fail;
28044 temp10 = True;
28045 }
28046 }
28047 {
28048 PyThreadState* __tstate = wxPyBeginAllowThreads();
28049 result = (bool)(arg1)->Create(arg2,arg3,(wxString const &)*arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,arg7,(wxString const &)*arg8,arg9,(wxString const &)*arg10);
28050
28051 wxPyEndAllowThreads(__tstate);
28052 if (PyErr_Occurred()) SWIG_fail;
28053 }
28054 {
28055 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
28056 }
28057 {
28058 if (temp4)
28059 delete arg4;
28060 }
28061 {
28062 if (temp8)
28063 delete arg8;
28064 }
28065 {
28066 if (temp10)
28067 delete arg10;
28068 }
28069 return resultobj;
28070 fail:
28071 {
28072 if (temp4)
28073 delete arg4;
28074 }
28075 {
28076 if (temp8)
28077 delete arg8;
28078 }
28079 {
28080 if (temp10)
28081 delete arg10;
28082 }
28083 return NULL;
28084 }
28085
28086
28087 static PyObject *_wrap_GenericDirCtrl_ExpandPath(PyObject *self, PyObject *args, PyObject *kwargs) {
28088 PyObject *resultobj;
28089 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28090 wxString *arg2 = 0 ;
28091 bool result;
28092 bool temp2 = False ;
28093 PyObject * obj0 = 0 ;
28094 PyObject * obj1 = 0 ;
28095 char *kwnames[] = {
28096 (char *) "self",(char *) "path", NULL
28097 };
28098
28099 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:GenericDirCtrl_ExpandPath",kwnames,&obj0,&obj1)) goto fail;
28100 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28101 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28102 {
28103 arg2 = wxString_in_helper(obj1);
28104 if (arg2 == NULL) SWIG_fail;
28105 temp2 = True;
28106 }
28107 {
28108 PyThreadState* __tstate = wxPyBeginAllowThreads();
28109 result = (bool)(arg1)->ExpandPath((wxString const &)*arg2);
28110
28111 wxPyEndAllowThreads(__tstate);
28112 if (PyErr_Occurred()) SWIG_fail;
28113 }
28114 {
28115 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
28116 }
28117 {
28118 if (temp2)
28119 delete arg2;
28120 }
28121 return resultobj;
28122 fail:
28123 {
28124 if (temp2)
28125 delete arg2;
28126 }
28127 return NULL;
28128 }
28129
28130
28131 static PyObject *_wrap_GenericDirCtrl_GetDefaultPath(PyObject *self, PyObject *args, PyObject *kwargs) {
28132 PyObject *resultobj;
28133 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28134 wxString result;
28135 PyObject * obj0 = 0 ;
28136 char *kwnames[] = {
28137 (char *) "self", NULL
28138 };
28139
28140 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:GenericDirCtrl_GetDefaultPath",kwnames,&obj0)) goto fail;
28141 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28142 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28143 {
28144 PyThreadState* __tstate = wxPyBeginAllowThreads();
28145 result = ((wxGenericDirCtrl const *)arg1)->GetDefaultPath();
28146
28147 wxPyEndAllowThreads(__tstate);
28148 if (PyErr_Occurred()) SWIG_fail;
28149 }
28150 {
28151 #if wxUSE_UNICODE
28152 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
28153 #else
28154 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
28155 #endif
28156 }
28157 return resultobj;
28158 fail:
28159 return NULL;
28160 }
28161
28162
28163 static PyObject *_wrap_GenericDirCtrl_SetDefaultPath(PyObject *self, PyObject *args, PyObject *kwargs) {
28164 PyObject *resultobj;
28165 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28166 wxString *arg2 = 0 ;
28167 bool temp2 = False ;
28168 PyObject * obj0 = 0 ;
28169 PyObject * obj1 = 0 ;
28170 char *kwnames[] = {
28171 (char *) "self",(char *) "path", NULL
28172 };
28173
28174 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:GenericDirCtrl_SetDefaultPath",kwnames,&obj0,&obj1)) goto fail;
28175 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28176 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28177 {
28178 arg2 = wxString_in_helper(obj1);
28179 if (arg2 == NULL) SWIG_fail;
28180 temp2 = True;
28181 }
28182 {
28183 PyThreadState* __tstate = wxPyBeginAllowThreads();
28184 (arg1)->SetDefaultPath((wxString const &)*arg2);
28185
28186 wxPyEndAllowThreads(__tstate);
28187 if (PyErr_Occurred()) SWIG_fail;
28188 }
28189 Py_INCREF(Py_None); resultobj = Py_None;
28190 {
28191 if (temp2)
28192 delete arg2;
28193 }
28194 return resultobj;
28195 fail:
28196 {
28197 if (temp2)
28198 delete arg2;
28199 }
28200 return NULL;
28201 }
28202
28203
28204 static PyObject *_wrap_GenericDirCtrl_GetPath(PyObject *self, PyObject *args, PyObject *kwargs) {
28205 PyObject *resultobj;
28206 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28207 wxString result;
28208 PyObject * obj0 = 0 ;
28209 char *kwnames[] = {
28210 (char *) "self", NULL
28211 };
28212
28213 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:GenericDirCtrl_GetPath",kwnames,&obj0)) goto fail;
28214 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28215 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28216 {
28217 PyThreadState* __tstate = wxPyBeginAllowThreads();
28218 result = ((wxGenericDirCtrl const *)arg1)->GetPath();
28219
28220 wxPyEndAllowThreads(__tstate);
28221 if (PyErr_Occurred()) SWIG_fail;
28222 }
28223 {
28224 #if wxUSE_UNICODE
28225 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
28226 #else
28227 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
28228 #endif
28229 }
28230 return resultobj;
28231 fail:
28232 return NULL;
28233 }
28234
28235
28236 static PyObject *_wrap_GenericDirCtrl_GetFilePath(PyObject *self, PyObject *args, PyObject *kwargs) {
28237 PyObject *resultobj;
28238 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28239 wxString result;
28240 PyObject * obj0 = 0 ;
28241 char *kwnames[] = {
28242 (char *) "self", NULL
28243 };
28244
28245 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:GenericDirCtrl_GetFilePath",kwnames,&obj0)) goto fail;
28246 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28247 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28248 {
28249 PyThreadState* __tstate = wxPyBeginAllowThreads();
28250 result = ((wxGenericDirCtrl const *)arg1)->GetFilePath();
28251
28252 wxPyEndAllowThreads(__tstate);
28253 if (PyErr_Occurred()) SWIG_fail;
28254 }
28255 {
28256 #if wxUSE_UNICODE
28257 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
28258 #else
28259 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
28260 #endif
28261 }
28262 return resultobj;
28263 fail:
28264 return NULL;
28265 }
28266
28267
28268 static PyObject *_wrap_GenericDirCtrl_SetPath(PyObject *self, PyObject *args, PyObject *kwargs) {
28269 PyObject *resultobj;
28270 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28271 wxString *arg2 = 0 ;
28272 bool temp2 = False ;
28273 PyObject * obj0 = 0 ;
28274 PyObject * obj1 = 0 ;
28275 char *kwnames[] = {
28276 (char *) "self",(char *) "path", NULL
28277 };
28278
28279 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:GenericDirCtrl_SetPath",kwnames,&obj0,&obj1)) goto fail;
28280 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28281 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28282 {
28283 arg2 = wxString_in_helper(obj1);
28284 if (arg2 == NULL) SWIG_fail;
28285 temp2 = True;
28286 }
28287 {
28288 PyThreadState* __tstate = wxPyBeginAllowThreads();
28289 (arg1)->SetPath((wxString const &)*arg2);
28290
28291 wxPyEndAllowThreads(__tstate);
28292 if (PyErr_Occurred()) SWIG_fail;
28293 }
28294 Py_INCREF(Py_None); resultobj = Py_None;
28295 {
28296 if (temp2)
28297 delete arg2;
28298 }
28299 return resultobj;
28300 fail:
28301 {
28302 if (temp2)
28303 delete arg2;
28304 }
28305 return NULL;
28306 }
28307
28308
28309 static PyObject *_wrap_GenericDirCtrl_ShowHidden(PyObject *self, PyObject *args, PyObject *kwargs) {
28310 PyObject *resultobj;
28311 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28312 bool arg2 ;
28313 PyObject * obj0 = 0 ;
28314 PyObject * obj1 = 0 ;
28315 char *kwnames[] = {
28316 (char *) "self",(char *) "show", NULL
28317 };
28318
28319 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:GenericDirCtrl_ShowHidden",kwnames,&obj0,&obj1)) goto fail;
28320 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28321 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28322 arg2 = (bool) SWIG_AsBool(obj1);
28323 if (PyErr_Occurred()) SWIG_fail;
28324 {
28325 PyThreadState* __tstate = wxPyBeginAllowThreads();
28326 (arg1)->ShowHidden(arg2);
28327
28328 wxPyEndAllowThreads(__tstate);
28329 if (PyErr_Occurred()) SWIG_fail;
28330 }
28331 Py_INCREF(Py_None); resultobj = Py_None;
28332 return resultobj;
28333 fail:
28334 return NULL;
28335 }
28336
28337
28338 static PyObject *_wrap_GenericDirCtrl_GetShowHidden(PyObject *self, PyObject *args, PyObject *kwargs) {
28339 PyObject *resultobj;
28340 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28341 bool result;
28342 PyObject * obj0 = 0 ;
28343 char *kwnames[] = {
28344 (char *) "self", NULL
28345 };
28346
28347 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:GenericDirCtrl_GetShowHidden",kwnames,&obj0)) goto fail;
28348 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28349 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28350 {
28351 PyThreadState* __tstate = wxPyBeginAllowThreads();
28352 result = (bool)(arg1)->GetShowHidden();
28353
28354 wxPyEndAllowThreads(__tstate);
28355 if (PyErr_Occurred()) SWIG_fail;
28356 }
28357 {
28358 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
28359 }
28360 return resultobj;
28361 fail:
28362 return NULL;
28363 }
28364
28365
28366 static PyObject *_wrap_GenericDirCtrl_GetFilter(PyObject *self, PyObject *args, PyObject *kwargs) {
28367 PyObject *resultobj;
28368 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28369 wxString result;
28370 PyObject * obj0 = 0 ;
28371 char *kwnames[] = {
28372 (char *) "self", NULL
28373 };
28374
28375 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:GenericDirCtrl_GetFilter",kwnames,&obj0)) goto fail;
28376 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28377 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28378 {
28379 PyThreadState* __tstate = wxPyBeginAllowThreads();
28380 result = ((wxGenericDirCtrl const *)arg1)->GetFilter();
28381
28382 wxPyEndAllowThreads(__tstate);
28383 if (PyErr_Occurred()) SWIG_fail;
28384 }
28385 {
28386 #if wxUSE_UNICODE
28387 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
28388 #else
28389 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
28390 #endif
28391 }
28392 return resultobj;
28393 fail:
28394 return NULL;
28395 }
28396
28397
28398 static PyObject *_wrap_GenericDirCtrl_SetFilter(PyObject *self, PyObject *args, PyObject *kwargs) {
28399 PyObject *resultobj;
28400 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28401 wxString *arg2 = 0 ;
28402 bool temp2 = False ;
28403 PyObject * obj0 = 0 ;
28404 PyObject * obj1 = 0 ;
28405 char *kwnames[] = {
28406 (char *) "self",(char *) "filter", NULL
28407 };
28408
28409 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:GenericDirCtrl_SetFilter",kwnames,&obj0,&obj1)) goto fail;
28410 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28411 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28412 {
28413 arg2 = wxString_in_helper(obj1);
28414 if (arg2 == NULL) SWIG_fail;
28415 temp2 = True;
28416 }
28417 {
28418 PyThreadState* __tstate = wxPyBeginAllowThreads();
28419 (arg1)->SetFilter((wxString const &)*arg2);
28420
28421 wxPyEndAllowThreads(__tstate);
28422 if (PyErr_Occurred()) SWIG_fail;
28423 }
28424 Py_INCREF(Py_None); resultobj = Py_None;
28425 {
28426 if (temp2)
28427 delete arg2;
28428 }
28429 return resultobj;
28430 fail:
28431 {
28432 if (temp2)
28433 delete arg2;
28434 }
28435 return NULL;
28436 }
28437
28438
28439 static PyObject *_wrap_GenericDirCtrl_GetFilterIndex(PyObject *self, PyObject *args, PyObject *kwargs) {
28440 PyObject *resultobj;
28441 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28442 int result;
28443 PyObject * obj0 = 0 ;
28444 char *kwnames[] = {
28445 (char *) "self", NULL
28446 };
28447
28448 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:GenericDirCtrl_GetFilterIndex",kwnames,&obj0)) goto fail;
28449 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28450 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28451 {
28452 PyThreadState* __tstate = wxPyBeginAllowThreads();
28453 result = (int)((wxGenericDirCtrl const *)arg1)->GetFilterIndex();
28454
28455 wxPyEndAllowThreads(__tstate);
28456 if (PyErr_Occurred()) SWIG_fail;
28457 }
28458 resultobj = SWIG_FromInt((int)result);
28459 return resultobj;
28460 fail:
28461 return NULL;
28462 }
28463
28464
28465 static PyObject *_wrap_GenericDirCtrl_SetFilterIndex(PyObject *self, PyObject *args, PyObject *kwargs) {
28466 PyObject *resultobj;
28467 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28468 int arg2 ;
28469 PyObject * obj0 = 0 ;
28470 PyObject * obj1 = 0 ;
28471 char *kwnames[] = {
28472 (char *) "self",(char *) "n", NULL
28473 };
28474
28475 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:GenericDirCtrl_SetFilterIndex",kwnames,&obj0,&obj1)) goto fail;
28476 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28477 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28478 arg2 = (int) SWIG_AsInt(obj1);
28479 if (PyErr_Occurred()) SWIG_fail;
28480 {
28481 PyThreadState* __tstate = wxPyBeginAllowThreads();
28482 (arg1)->SetFilterIndex(arg2);
28483
28484 wxPyEndAllowThreads(__tstate);
28485 if (PyErr_Occurred()) SWIG_fail;
28486 }
28487 Py_INCREF(Py_None); resultobj = Py_None;
28488 return resultobj;
28489 fail:
28490 return NULL;
28491 }
28492
28493
28494 static PyObject *_wrap_GenericDirCtrl_GetRootId(PyObject *self, PyObject *args, PyObject *kwargs) {
28495 PyObject *resultobj;
28496 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28497 wxTreeItemId result;
28498 PyObject * obj0 = 0 ;
28499 char *kwnames[] = {
28500 (char *) "self", NULL
28501 };
28502
28503 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:GenericDirCtrl_GetRootId",kwnames,&obj0)) goto fail;
28504 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28505 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28506 {
28507 PyThreadState* __tstate = wxPyBeginAllowThreads();
28508 result = (arg1)->GetRootId();
28509
28510 wxPyEndAllowThreads(__tstate);
28511 if (PyErr_Occurred()) SWIG_fail;
28512 }
28513 {
28514 wxTreeItemId * resultptr;
28515 resultptr = new wxTreeItemId((wxTreeItemId &) result);
28516 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
28517 }
28518 return resultobj;
28519 fail:
28520 return NULL;
28521 }
28522
28523
28524 static PyObject *_wrap_GenericDirCtrl_GetTreeCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
28525 PyObject *resultobj;
28526 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28527 wxPyTreeCtrl *result;
28528 PyObject * obj0 = 0 ;
28529 char *kwnames[] = {
28530 (char *) "self", NULL
28531 };
28532
28533 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:GenericDirCtrl_GetTreeCtrl",kwnames,&obj0)) goto fail;
28534 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28535 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28536 {
28537 PyThreadState* __tstate = wxPyBeginAllowThreads();
28538 result = (wxPyTreeCtrl *)((wxGenericDirCtrl const *)arg1)->GetTreeCtrl();
28539
28540 wxPyEndAllowThreads(__tstate);
28541 if (PyErr_Occurred()) SWIG_fail;
28542 }
28543 {
28544 resultobj = wxPyMake_wxObject(result, 0);
28545 }
28546 return resultobj;
28547 fail:
28548 return NULL;
28549 }
28550
28551
28552 static PyObject *_wrap_GenericDirCtrl_GetFilterListCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
28553 PyObject *resultobj;
28554 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28555 wxDirFilterListCtrl *result;
28556 PyObject * obj0 = 0 ;
28557 char *kwnames[] = {
28558 (char *) "self", NULL
28559 };
28560
28561 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:GenericDirCtrl_GetFilterListCtrl",kwnames,&obj0)) goto fail;
28562 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28563 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28564 {
28565 PyThreadState* __tstate = wxPyBeginAllowThreads();
28566 result = (wxDirFilterListCtrl *)((wxGenericDirCtrl const *)arg1)->GetFilterListCtrl();
28567
28568 wxPyEndAllowThreads(__tstate);
28569 if (PyErr_Occurred()) SWIG_fail;
28570 }
28571 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxDirFilterListCtrl, 0);
28572 return resultobj;
28573 fail:
28574 return NULL;
28575 }
28576
28577
28578 static PyObject *_wrap_GenericDirCtrl_FindChild(PyObject *self, PyObject *args, PyObject *kwargs) {
28579 PyObject *resultobj;
28580 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28581 wxTreeItemId arg2 ;
28582 wxString *arg3 = 0 ;
28583 bool *arg4 = 0 ;
28584 wxTreeItemId result;
28585 wxTreeItemId *argp2 ;
28586 bool temp3 = False ;
28587 bool temp4 ;
28588 PyObject * obj0 = 0 ;
28589 PyObject * obj1 = 0 ;
28590 PyObject * obj2 = 0 ;
28591 char *kwnames[] = {
28592 (char *) "self",(char *) "parentId",(char *) "path", NULL
28593 };
28594
28595 arg4 = &temp4;
28596 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:GenericDirCtrl_FindChild",kwnames,&obj0,&obj1,&obj2)) goto fail;
28597 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28598 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28599 if ((SWIG_ConvertPtr(obj1,(void **)(&argp2),SWIGTYPE_p_wxTreeItemId,
28600 SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;
28601 arg2 = *argp2;
28602 {
28603 arg3 = wxString_in_helper(obj2);
28604 if (arg3 == NULL) SWIG_fail;
28605 temp3 = True;
28606 }
28607 {
28608 PyThreadState* __tstate = wxPyBeginAllowThreads();
28609 result = (arg1)->FindChild(arg2,(wxString const &)*arg3,*arg4);
28610
28611 wxPyEndAllowThreads(__tstate);
28612 if (PyErr_Occurred()) SWIG_fail;
28613 }
28614 {
28615 wxTreeItemId * resultptr;
28616 resultptr = new wxTreeItemId((wxTreeItemId &) result);
28617 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxTreeItemId, 1);
28618 }
28619 {
28620 PyObject *o = PyInt_FromLong((long) (*arg4));
28621 resultobj = t_output_helper(resultobj,o);
28622 }
28623 {
28624 if (temp3)
28625 delete arg3;
28626 }
28627 return resultobj;
28628 fail:
28629 {
28630 if (temp3)
28631 delete arg3;
28632 }
28633 return NULL;
28634 }
28635
28636
28637 static PyObject *_wrap_GenericDirCtrl_DoResize(PyObject *self, PyObject *args, PyObject *kwargs) {
28638 PyObject *resultobj;
28639 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28640 PyObject * obj0 = 0 ;
28641 char *kwnames[] = {
28642 (char *) "self", NULL
28643 };
28644
28645 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:GenericDirCtrl_DoResize",kwnames,&obj0)) goto fail;
28646 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28647 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28648 {
28649 PyThreadState* __tstate = wxPyBeginAllowThreads();
28650 (arg1)->DoResize();
28651
28652 wxPyEndAllowThreads(__tstate);
28653 if (PyErr_Occurred()) SWIG_fail;
28654 }
28655 Py_INCREF(Py_None); resultobj = Py_None;
28656 return resultobj;
28657 fail:
28658 return NULL;
28659 }
28660
28661
28662 static PyObject *_wrap_GenericDirCtrl_ReCreateTree(PyObject *self, PyObject *args, PyObject *kwargs) {
28663 PyObject *resultobj;
28664 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28665 PyObject * obj0 = 0 ;
28666 char *kwnames[] = {
28667 (char *) "self", NULL
28668 };
28669
28670 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:GenericDirCtrl_ReCreateTree",kwnames,&obj0)) goto fail;
28671 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28672 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28673 {
28674 PyThreadState* __tstate = wxPyBeginAllowThreads();
28675 (arg1)->ReCreateTree();
28676
28677 wxPyEndAllowThreads(__tstate);
28678 if (PyErr_Occurred()) SWIG_fail;
28679 }
28680 Py_INCREF(Py_None); resultobj = Py_None;
28681 return resultobj;
28682 fail:
28683 return NULL;
28684 }
28685
28686
28687 static PyObject * GenericDirCtrl_swigregister(PyObject *self, PyObject *args) {
28688 PyObject *obj;
28689 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
28690 SWIG_TypeClientData(SWIGTYPE_p_wxGenericDirCtrl, obj);
28691 Py_INCREF(obj);
28692 return Py_BuildValue((char *)"");
28693 }
28694 static PyObject *_wrap_new_DirFilterListCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
28695 PyObject *resultobj;
28696 wxGenericDirCtrl *arg1 = (wxGenericDirCtrl *) 0 ;
28697 int arg2 = (int) (int)-1 ;
28698 wxPoint const &arg3_defvalue = wxDefaultPosition ;
28699 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
28700 wxSize const &arg4_defvalue = wxDefaultSize ;
28701 wxSize *arg4 = (wxSize *) &arg4_defvalue ;
28702 long arg5 = (long) 0 ;
28703 wxDirFilterListCtrl *result;
28704 wxPoint temp3 ;
28705 wxSize temp4 ;
28706 PyObject * obj0 = 0 ;
28707 PyObject * obj1 = 0 ;
28708 PyObject * obj2 = 0 ;
28709 PyObject * obj3 = 0 ;
28710 PyObject * obj4 = 0 ;
28711 char *kwnames[] = {
28712 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
28713 };
28714
28715 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOO:new_DirFilterListCtrl",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
28716 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDirCtrl,
28717 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28718 if (obj1) {
28719 arg2 = (int const) SWIG_AsInt(obj1);
28720 if (PyErr_Occurred()) SWIG_fail;
28721 }
28722 if (obj2) {
28723 {
28724 arg3 = &temp3;
28725 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
28726 }
28727 }
28728 if (obj3) {
28729 {
28730 arg4 = &temp4;
28731 if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
28732 }
28733 }
28734 if (obj4) {
28735 arg5 = (long) SWIG_AsLong(obj4);
28736 if (PyErr_Occurred()) SWIG_fail;
28737 }
28738 {
28739 if (!wxPyCheckForApp()) SWIG_fail;
28740 PyThreadState* __tstate = wxPyBeginAllowThreads();
28741 result = (wxDirFilterListCtrl *)new wxDirFilterListCtrl(arg1,arg2,(wxPoint const &)*arg3,(wxSize const &)*arg4,arg5);
28742
28743 wxPyEndAllowThreads(__tstate);
28744 if (PyErr_Occurred()) SWIG_fail;
28745 }
28746 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxDirFilterListCtrl, 1);
28747 return resultobj;
28748 fail:
28749 return NULL;
28750 }
28751
28752
28753 static PyObject *_wrap_new_PreDirFilterListCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
28754 PyObject *resultobj;
28755 wxDirFilterListCtrl *result;
28756 char *kwnames[] = {
28757 NULL
28758 };
28759
28760 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreDirFilterListCtrl",kwnames)) goto fail;
28761 {
28762 if (!wxPyCheckForApp()) SWIG_fail;
28763 PyThreadState* __tstate = wxPyBeginAllowThreads();
28764 result = (wxDirFilterListCtrl *)new wxDirFilterListCtrl();
28765
28766 wxPyEndAllowThreads(__tstate);
28767 if (PyErr_Occurred()) SWIG_fail;
28768 }
28769 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxDirFilterListCtrl, 1);
28770 return resultobj;
28771 fail:
28772 return NULL;
28773 }
28774
28775
28776 static PyObject *_wrap_DirFilterListCtrl_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
28777 PyObject *resultobj;
28778 wxDirFilterListCtrl *arg1 = (wxDirFilterListCtrl *) 0 ;
28779 wxGenericDirCtrl *arg2 = (wxGenericDirCtrl *) 0 ;
28780 int arg3 = (int) (int)-1 ;
28781 wxPoint const &arg4_defvalue = wxDefaultPosition ;
28782 wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
28783 wxSize const &arg5_defvalue = wxDefaultSize ;
28784 wxSize *arg5 = (wxSize *) &arg5_defvalue ;
28785 long arg6 = (long) 0 ;
28786 bool result;
28787 wxPoint temp4 ;
28788 wxSize temp5 ;
28789 PyObject * obj0 = 0 ;
28790 PyObject * obj1 = 0 ;
28791 PyObject * obj2 = 0 ;
28792 PyObject * obj3 = 0 ;
28793 PyObject * obj4 = 0 ;
28794 PyObject * obj5 = 0 ;
28795 char *kwnames[] = {
28796 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
28797 };
28798
28799 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOO:DirFilterListCtrl_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail;
28800 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxDirFilterListCtrl,
28801 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28802 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxGenericDirCtrl,
28803 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28804 if (obj2) {
28805 arg3 = (int const) SWIG_AsInt(obj2);
28806 if (PyErr_Occurred()) SWIG_fail;
28807 }
28808 if (obj3) {
28809 {
28810 arg4 = &temp4;
28811 if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
28812 }
28813 }
28814 if (obj4) {
28815 {
28816 arg5 = &temp5;
28817 if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
28818 }
28819 }
28820 if (obj5) {
28821 arg6 = (long) SWIG_AsLong(obj5);
28822 if (PyErr_Occurred()) SWIG_fail;
28823 }
28824 {
28825 PyThreadState* __tstate = wxPyBeginAllowThreads();
28826 result = (bool)(arg1)->Create(arg2,arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6);
28827
28828 wxPyEndAllowThreads(__tstate);
28829 if (PyErr_Occurred()) SWIG_fail;
28830 }
28831 {
28832 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
28833 }
28834 return resultobj;
28835 fail:
28836 return NULL;
28837 }
28838
28839
28840 static PyObject *_wrap_DirFilterListCtrl_FillFilterList(PyObject *self, PyObject *args, PyObject *kwargs) {
28841 PyObject *resultobj;
28842 wxDirFilterListCtrl *arg1 = (wxDirFilterListCtrl *) 0 ;
28843 wxString *arg2 = 0 ;
28844 int arg3 ;
28845 bool temp2 = False ;
28846 PyObject * obj0 = 0 ;
28847 PyObject * obj1 = 0 ;
28848 PyObject * obj2 = 0 ;
28849 char *kwnames[] = {
28850 (char *) "self",(char *) "filter",(char *) "defaultFilter", NULL
28851 };
28852
28853 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:DirFilterListCtrl_FillFilterList",kwnames,&obj0,&obj1,&obj2)) goto fail;
28854 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxDirFilterListCtrl,
28855 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28856 {
28857 arg2 = wxString_in_helper(obj1);
28858 if (arg2 == NULL) SWIG_fail;
28859 temp2 = True;
28860 }
28861 arg3 = (int) SWIG_AsInt(obj2);
28862 if (PyErr_Occurred()) SWIG_fail;
28863 {
28864 PyThreadState* __tstate = wxPyBeginAllowThreads();
28865 (arg1)->FillFilterList((wxString const &)*arg2,arg3);
28866
28867 wxPyEndAllowThreads(__tstate);
28868 if (PyErr_Occurred()) SWIG_fail;
28869 }
28870 Py_INCREF(Py_None); resultobj = Py_None;
28871 {
28872 if (temp2)
28873 delete arg2;
28874 }
28875 return resultobj;
28876 fail:
28877 {
28878 if (temp2)
28879 delete arg2;
28880 }
28881 return NULL;
28882 }
28883
28884
28885 static PyObject * DirFilterListCtrl_swigregister(PyObject *self, PyObject *args) {
28886 PyObject *obj;
28887 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
28888 SWIG_TypeClientData(SWIGTYPE_p_wxDirFilterListCtrl, obj);
28889 Py_INCREF(obj);
28890 return Py_BuildValue((char *)"");
28891 }
28892 static PyObject *_wrap_new_PyControl(PyObject *self, PyObject *args, PyObject *kwargs) {
28893 PyObject *resultobj;
28894 wxWindow *arg1 = (wxWindow *) 0 ;
28895 int arg2 = (int) (int)-1 ;
28896 wxPoint const &arg3_defvalue = wxDefaultPosition ;
28897 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
28898 wxSize const &arg4_defvalue = wxDefaultSize ;
28899 wxSize *arg4 = (wxSize *) &arg4_defvalue ;
28900 long arg5 = (long) 0 ;
28901 wxValidator const &arg6_defvalue = wxDefaultValidator ;
28902 wxValidator *arg6 = (wxValidator *) &arg6_defvalue ;
28903 wxString const &arg7_defvalue = wxPyControlNameStr ;
28904 wxString *arg7 = (wxString *) &arg7_defvalue ;
28905 wxPyControl *result;
28906 wxPoint temp3 ;
28907 wxSize temp4 ;
28908 bool temp7 = False ;
28909 PyObject * obj0 = 0 ;
28910 PyObject * obj1 = 0 ;
28911 PyObject * obj2 = 0 ;
28912 PyObject * obj3 = 0 ;
28913 PyObject * obj4 = 0 ;
28914 PyObject * obj5 = 0 ;
28915 PyObject * obj6 = 0 ;
28916 char *kwnames[] = {
28917 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
28918 };
28919
28920 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOO:new_PyControl",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
28921 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
28922 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
28923 if (obj1) {
28924 arg2 = (int const) SWIG_AsInt(obj1);
28925 if (PyErr_Occurred()) SWIG_fail;
28926 }
28927 if (obj2) {
28928 {
28929 arg3 = &temp3;
28930 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
28931 }
28932 }
28933 if (obj3) {
28934 {
28935 arg4 = &temp4;
28936 if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
28937 }
28938 }
28939 if (obj4) {
28940 arg5 = (long) SWIG_AsLong(obj4);
28941 if (PyErr_Occurred()) SWIG_fail;
28942 }
28943 if (obj5) {
28944 if ((SWIG_ConvertPtr(obj5,(void **)(&arg6),SWIGTYPE_p_wxValidator,
28945 SWIG_POINTER_EXCEPTION | 0)) == -1)
28946 SWIG_fail;
28947 if (arg6 == NULL) {
28948 PyErr_SetString(PyExc_TypeError,"null reference");
28949 SWIG_fail;
28950 }
28951 }
28952 if (obj6) {
28953 {
28954 arg7 = wxString_in_helper(obj6);
28955 if (arg7 == NULL) SWIG_fail;
28956 temp7 = True;
28957 }
28958 }
28959 {
28960 if (!wxPyCheckForApp()) SWIG_fail;
28961 PyThreadState* __tstate = wxPyBeginAllowThreads();
28962 result = (wxPyControl *)new wxPyControl(arg1,arg2,(wxPoint const &)*arg3,(wxSize const &)*arg4,arg5,(wxValidator const &)*arg6,(wxString const &)*arg7);
28963
28964 wxPyEndAllowThreads(__tstate);
28965 if (PyErr_Occurred()) SWIG_fail;
28966 }
28967 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxPyControl, 1);
28968 {
28969 if (temp7)
28970 delete arg7;
28971 }
28972 return resultobj;
28973 fail:
28974 {
28975 if (temp7)
28976 delete arg7;
28977 }
28978 return NULL;
28979 }
28980
28981
28982 static PyObject *_wrap_new_PrePyControl(PyObject *self, PyObject *args, PyObject *kwargs) {
28983 PyObject *resultobj;
28984 wxPyControl *result;
28985 char *kwnames[] = {
28986 NULL
28987 };
28988
28989 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PrePyControl",kwnames)) goto fail;
28990 {
28991 if (!wxPyCheckForApp()) SWIG_fail;
28992 PyThreadState* __tstate = wxPyBeginAllowThreads();
28993 result = (wxPyControl *)new wxPyControl();
28994
28995 wxPyEndAllowThreads(__tstate);
28996 if (PyErr_Occurred()) SWIG_fail;
28997 }
28998 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxPyControl, 1);
28999 return resultobj;
29000 fail:
29001 return NULL;
29002 }
29003
29004
29005 static PyObject *_wrap_PyControl__setCallbackInfo(PyObject *self, PyObject *args, PyObject *kwargs) {
29006 PyObject *resultobj;
29007 wxPyControl *arg1 = (wxPyControl *) 0 ;
29008 PyObject *arg2 = (PyObject *) 0 ;
29009 PyObject *arg3 = (PyObject *) 0 ;
29010 PyObject * obj0 = 0 ;
29011 PyObject * obj1 = 0 ;
29012 PyObject * obj2 = 0 ;
29013 char *kwnames[] = {
29014 (char *) "self",(char *) "self",(char *) "_class", NULL
29015 };
29016
29017 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:PyControl__setCallbackInfo",kwnames,&obj0,&obj1,&obj2)) goto fail;
29018 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29019 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29020 arg2 = obj1;
29021 arg3 = obj2;
29022 {
29023 PyThreadState* __tstate = wxPyBeginAllowThreads();
29024 (arg1)->_setCallbackInfo(arg2,arg3);
29025
29026 wxPyEndAllowThreads(__tstate);
29027 if (PyErr_Occurred()) SWIG_fail;
29028 }
29029 Py_INCREF(Py_None); resultobj = Py_None;
29030 return resultobj;
29031 fail:
29032 return NULL;
29033 }
29034
29035
29036 static PyObject *_wrap_PyControl_SetBestSize(PyObject *self, PyObject *args, PyObject *kwargs) {
29037 PyObject *resultobj;
29038 wxPyControl *arg1 = (wxPyControl *) 0 ;
29039 wxSize *arg2 = 0 ;
29040 wxSize temp2 ;
29041 PyObject * obj0 = 0 ;
29042 PyObject * obj1 = 0 ;
29043 char *kwnames[] = {
29044 (char *) "self",(char *) "size", NULL
29045 };
29046
29047 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:PyControl_SetBestSize",kwnames,&obj0,&obj1)) goto fail;
29048 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29049 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29050 {
29051 arg2 = &temp2;
29052 if ( ! wxSize_helper(obj1, &arg2)) SWIG_fail;
29053 }
29054 {
29055 PyThreadState* __tstate = wxPyBeginAllowThreads();
29056 (arg1)->SetBestSize((wxSize const &)*arg2);
29057
29058 wxPyEndAllowThreads(__tstate);
29059 if (PyErr_Occurred()) SWIG_fail;
29060 }
29061 Py_INCREF(Py_None); resultobj = Py_None;
29062 return resultobj;
29063 fail:
29064 return NULL;
29065 }
29066
29067
29068 static PyObject *_wrap_PyControl_base_DoMoveWindow(PyObject *self, PyObject *args, PyObject *kwargs) {
29069 PyObject *resultobj;
29070 wxPyControl *arg1 = (wxPyControl *) 0 ;
29071 int arg2 ;
29072 int arg3 ;
29073 int arg4 ;
29074 int arg5 ;
29075 PyObject * obj0 = 0 ;
29076 PyObject * obj1 = 0 ;
29077 PyObject * obj2 = 0 ;
29078 PyObject * obj3 = 0 ;
29079 PyObject * obj4 = 0 ;
29080 char *kwnames[] = {
29081 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
29082 };
29083
29084 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO:PyControl_base_DoMoveWindow",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
29085 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29086 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29087 arg2 = (int) SWIG_AsInt(obj1);
29088 if (PyErr_Occurred()) SWIG_fail;
29089 arg3 = (int) SWIG_AsInt(obj2);
29090 if (PyErr_Occurred()) SWIG_fail;
29091 arg4 = (int) SWIG_AsInt(obj3);
29092 if (PyErr_Occurred()) SWIG_fail;
29093 arg5 = (int) SWIG_AsInt(obj4);
29094 if (PyErr_Occurred()) SWIG_fail;
29095 {
29096 PyThreadState* __tstate = wxPyBeginAllowThreads();
29097 (arg1)->base_DoMoveWindow(arg2,arg3,arg4,arg5);
29098
29099 wxPyEndAllowThreads(__tstate);
29100 if (PyErr_Occurred()) SWIG_fail;
29101 }
29102 Py_INCREF(Py_None); resultobj = Py_None;
29103 return resultobj;
29104 fail:
29105 return NULL;
29106 }
29107
29108
29109 static PyObject *_wrap_PyControl_base_DoSetSize(PyObject *self, PyObject *args, PyObject *kwargs) {
29110 PyObject *resultobj;
29111 wxPyControl *arg1 = (wxPyControl *) 0 ;
29112 int arg2 ;
29113 int arg3 ;
29114 int arg4 ;
29115 int arg5 ;
29116 int arg6 = (int) wxSIZE_AUTO ;
29117 PyObject * obj0 = 0 ;
29118 PyObject * obj1 = 0 ;
29119 PyObject * obj2 = 0 ;
29120 PyObject * obj3 = 0 ;
29121 PyObject * obj4 = 0 ;
29122 PyObject * obj5 = 0 ;
29123 char *kwnames[] = {
29124 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height",(char *) "sizeFlags", NULL
29125 };
29126
29127 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO|O:PyControl_base_DoSetSize",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail;
29128 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29129 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29130 arg2 = (int) SWIG_AsInt(obj1);
29131 if (PyErr_Occurred()) SWIG_fail;
29132 arg3 = (int) SWIG_AsInt(obj2);
29133 if (PyErr_Occurred()) SWIG_fail;
29134 arg4 = (int) SWIG_AsInt(obj3);
29135 if (PyErr_Occurred()) SWIG_fail;
29136 arg5 = (int) SWIG_AsInt(obj4);
29137 if (PyErr_Occurred()) SWIG_fail;
29138 if (obj5) {
29139 arg6 = (int) SWIG_AsInt(obj5);
29140 if (PyErr_Occurred()) SWIG_fail;
29141 }
29142 {
29143 PyThreadState* __tstate = wxPyBeginAllowThreads();
29144 (arg1)->base_DoSetSize(arg2,arg3,arg4,arg5,arg6);
29145
29146 wxPyEndAllowThreads(__tstate);
29147 if (PyErr_Occurred()) SWIG_fail;
29148 }
29149 Py_INCREF(Py_None); resultobj = Py_None;
29150 return resultobj;
29151 fail:
29152 return NULL;
29153 }
29154
29155
29156 static PyObject *_wrap_PyControl_base_DoSetClientSize(PyObject *self, PyObject *args, PyObject *kwargs) {
29157 PyObject *resultobj;
29158 wxPyControl *arg1 = (wxPyControl *) 0 ;
29159 int arg2 ;
29160 int arg3 ;
29161 PyObject * obj0 = 0 ;
29162 PyObject * obj1 = 0 ;
29163 PyObject * obj2 = 0 ;
29164 char *kwnames[] = {
29165 (char *) "self",(char *) "width",(char *) "height", NULL
29166 };
29167
29168 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:PyControl_base_DoSetClientSize",kwnames,&obj0,&obj1,&obj2)) goto fail;
29169 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29170 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29171 arg2 = (int) SWIG_AsInt(obj1);
29172 if (PyErr_Occurred()) SWIG_fail;
29173 arg3 = (int) SWIG_AsInt(obj2);
29174 if (PyErr_Occurred()) SWIG_fail;
29175 {
29176 PyThreadState* __tstate = wxPyBeginAllowThreads();
29177 (arg1)->base_DoSetClientSize(arg2,arg3);
29178
29179 wxPyEndAllowThreads(__tstate);
29180 if (PyErr_Occurred()) SWIG_fail;
29181 }
29182 Py_INCREF(Py_None); resultobj = Py_None;
29183 return resultobj;
29184 fail:
29185 return NULL;
29186 }
29187
29188
29189 static PyObject *_wrap_PyControl_base_DoSetVirtualSize(PyObject *self, PyObject *args, PyObject *kwargs) {
29190 PyObject *resultobj;
29191 wxPyControl *arg1 = (wxPyControl *) 0 ;
29192 int arg2 ;
29193 int arg3 ;
29194 PyObject * obj0 = 0 ;
29195 PyObject * obj1 = 0 ;
29196 PyObject * obj2 = 0 ;
29197 char *kwnames[] = {
29198 (char *) "self",(char *) "x",(char *) "y", NULL
29199 };
29200
29201 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:PyControl_base_DoSetVirtualSize",kwnames,&obj0,&obj1,&obj2)) goto fail;
29202 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29203 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29204 arg2 = (int) SWIG_AsInt(obj1);
29205 if (PyErr_Occurred()) SWIG_fail;
29206 arg3 = (int) SWIG_AsInt(obj2);
29207 if (PyErr_Occurred()) SWIG_fail;
29208 {
29209 PyThreadState* __tstate = wxPyBeginAllowThreads();
29210 (arg1)->base_DoSetVirtualSize(arg2,arg3);
29211
29212 wxPyEndAllowThreads(__tstate);
29213 if (PyErr_Occurred()) SWIG_fail;
29214 }
29215 Py_INCREF(Py_None); resultobj = Py_None;
29216 return resultobj;
29217 fail:
29218 return NULL;
29219 }
29220
29221
29222 static PyObject *_wrap_PyControl_base_DoGetSize(PyObject *self, PyObject *args, PyObject *kwargs) {
29223 PyObject *resultobj;
29224 wxPyControl *arg1 = (wxPyControl *) 0 ;
29225 int *arg2 = (int *) 0 ;
29226 int *arg3 = (int *) 0 ;
29227 int temp2 ;
29228 int temp3 ;
29229 PyObject * obj0 = 0 ;
29230 char *kwnames[] = {
29231 (char *) "self", NULL
29232 };
29233
29234 arg2 = &temp2;
29235 arg3 = &temp3;
29236 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyControl_base_DoGetSize",kwnames,&obj0)) goto fail;
29237 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29238 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29239 {
29240 PyThreadState* __tstate = wxPyBeginAllowThreads();
29241 ((wxPyControl const *)arg1)->base_DoGetSize(arg2,arg3);
29242
29243 wxPyEndAllowThreads(__tstate);
29244 if (PyErr_Occurred()) SWIG_fail;
29245 }
29246 Py_INCREF(Py_None); resultobj = Py_None;
29247 {
29248 PyObject *o = PyInt_FromLong((long) (*arg2));
29249 resultobj = t_output_helper(resultobj,o);
29250 }
29251 {
29252 PyObject *o = PyInt_FromLong((long) (*arg3));
29253 resultobj = t_output_helper(resultobj,o);
29254 }
29255 return resultobj;
29256 fail:
29257 return NULL;
29258 }
29259
29260
29261 static PyObject *_wrap_PyControl_base_DoGetClientSize(PyObject *self, PyObject *args, PyObject *kwargs) {
29262 PyObject *resultobj;
29263 wxPyControl *arg1 = (wxPyControl *) 0 ;
29264 int *arg2 = (int *) 0 ;
29265 int *arg3 = (int *) 0 ;
29266 int temp2 ;
29267 int temp3 ;
29268 PyObject * obj0 = 0 ;
29269 char *kwnames[] = {
29270 (char *) "self", NULL
29271 };
29272
29273 arg2 = &temp2;
29274 arg3 = &temp3;
29275 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyControl_base_DoGetClientSize",kwnames,&obj0)) goto fail;
29276 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29277 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29278 {
29279 PyThreadState* __tstate = wxPyBeginAllowThreads();
29280 ((wxPyControl const *)arg1)->base_DoGetClientSize(arg2,arg3);
29281
29282 wxPyEndAllowThreads(__tstate);
29283 if (PyErr_Occurred()) SWIG_fail;
29284 }
29285 Py_INCREF(Py_None); resultobj = Py_None;
29286 {
29287 PyObject *o = PyInt_FromLong((long) (*arg2));
29288 resultobj = t_output_helper(resultobj,o);
29289 }
29290 {
29291 PyObject *o = PyInt_FromLong((long) (*arg3));
29292 resultobj = t_output_helper(resultobj,o);
29293 }
29294 return resultobj;
29295 fail:
29296 return NULL;
29297 }
29298
29299
29300 static PyObject *_wrap_PyControl_base_DoGetPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
29301 PyObject *resultobj;
29302 wxPyControl *arg1 = (wxPyControl *) 0 ;
29303 int *arg2 = (int *) 0 ;
29304 int *arg3 = (int *) 0 ;
29305 int temp2 ;
29306 int temp3 ;
29307 PyObject * obj0 = 0 ;
29308 char *kwnames[] = {
29309 (char *) "self", NULL
29310 };
29311
29312 arg2 = &temp2;
29313 arg3 = &temp3;
29314 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyControl_base_DoGetPosition",kwnames,&obj0)) goto fail;
29315 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29316 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29317 {
29318 PyThreadState* __tstate = wxPyBeginAllowThreads();
29319 ((wxPyControl const *)arg1)->base_DoGetPosition(arg2,arg3);
29320
29321 wxPyEndAllowThreads(__tstate);
29322 if (PyErr_Occurred()) SWIG_fail;
29323 }
29324 Py_INCREF(Py_None); resultobj = Py_None;
29325 {
29326 PyObject *o = PyInt_FromLong((long) (*arg2));
29327 resultobj = t_output_helper(resultobj,o);
29328 }
29329 {
29330 PyObject *o = PyInt_FromLong((long) (*arg3));
29331 resultobj = t_output_helper(resultobj,o);
29332 }
29333 return resultobj;
29334 fail:
29335 return NULL;
29336 }
29337
29338
29339 static PyObject *_wrap_PyControl_base_DoGetVirtualSize(PyObject *self, PyObject *args, PyObject *kwargs) {
29340 PyObject *resultobj;
29341 wxPyControl *arg1 = (wxPyControl *) 0 ;
29342 wxSize result;
29343 PyObject * obj0 = 0 ;
29344 char *kwnames[] = {
29345 (char *) "self", NULL
29346 };
29347
29348 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyControl_base_DoGetVirtualSize",kwnames,&obj0)) goto fail;
29349 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29350 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29351 {
29352 PyThreadState* __tstate = wxPyBeginAllowThreads();
29353 result = ((wxPyControl const *)arg1)->base_DoGetVirtualSize();
29354
29355 wxPyEndAllowThreads(__tstate);
29356 if (PyErr_Occurred()) SWIG_fail;
29357 }
29358 {
29359 wxSize * resultptr;
29360 resultptr = new wxSize((wxSize &) result);
29361 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
29362 }
29363 return resultobj;
29364 fail:
29365 return NULL;
29366 }
29367
29368
29369 static PyObject *_wrap_PyControl_base_DoGetBestSize(PyObject *self, PyObject *args, PyObject *kwargs) {
29370 PyObject *resultobj;
29371 wxPyControl *arg1 = (wxPyControl *) 0 ;
29372 wxSize result;
29373 PyObject * obj0 = 0 ;
29374 char *kwnames[] = {
29375 (char *) "self", NULL
29376 };
29377
29378 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyControl_base_DoGetBestSize",kwnames,&obj0)) goto fail;
29379 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29380 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29381 {
29382 PyThreadState* __tstate = wxPyBeginAllowThreads();
29383 result = ((wxPyControl const *)arg1)->base_DoGetBestSize();
29384
29385 wxPyEndAllowThreads(__tstate);
29386 if (PyErr_Occurred()) SWIG_fail;
29387 }
29388 {
29389 wxSize * resultptr;
29390 resultptr = new wxSize((wxSize &) result);
29391 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
29392 }
29393 return resultobj;
29394 fail:
29395 return NULL;
29396 }
29397
29398
29399 static PyObject *_wrap_PyControl_base_InitDialog(PyObject *self, PyObject *args, PyObject *kwargs) {
29400 PyObject *resultobj;
29401 wxPyControl *arg1 = (wxPyControl *) 0 ;
29402 PyObject * obj0 = 0 ;
29403 char *kwnames[] = {
29404 (char *) "self", NULL
29405 };
29406
29407 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyControl_base_InitDialog",kwnames,&obj0)) goto fail;
29408 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29409 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29410 {
29411 PyThreadState* __tstate = wxPyBeginAllowThreads();
29412 (arg1)->base_InitDialog();
29413
29414 wxPyEndAllowThreads(__tstate);
29415 if (PyErr_Occurred()) SWIG_fail;
29416 }
29417 Py_INCREF(Py_None); resultobj = Py_None;
29418 return resultobj;
29419 fail:
29420 return NULL;
29421 }
29422
29423
29424 static PyObject *_wrap_PyControl_base_TransferDataToWindow(PyObject *self, PyObject *args, PyObject *kwargs) {
29425 PyObject *resultobj;
29426 wxPyControl *arg1 = (wxPyControl *) 0 ;
29427 bool result;
29428 PyObject * obj0 = 0 ;
29429 char *kwnames[] = {
29430 (char *) "self", NULL
29431 };
29432
29433 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyControl_base_TransferDataToWindow",kwnames,&obj0)) goto fail;
29434 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29435 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29436 {
29437 PyThreadState* __tstate = wxPyBeginAllowThreads();
29438 result = (bool)(arg1)->base_TransferDataToWindow();
29439
29440 wxPyEndAllowThreads(__tstate);
29441 if (PyErr_Occurred()) SWIG_fail;
29442 }
29443 {
29444 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
29445 }
29446 return resultobj;
29447 fail:
29448 return NULL;
29449 }
29450
29451
29452 static PyObject *_wrap_PyControl_base_TransferDataFromWindow(PyObject *self, PyObject *args, PyObject *kwargs) {
29453 PyObject *resultobj;
29454 wxPyControl *arg1 = (wxPyControl *) 0 ;
29455 bool result;
29456 PyObject * obj0 = 0 ;
29457 char *kwnames[] = {
29458 (char *) "self", NULL
29459 };
29460
29461 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyControl_base_TransferDataFromWindow",kwnames,&obj0)) goto fail;
29462 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29463 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29464 {
29465 PyThreadState* __tstate = wxPyBeginAllowThreads();
29466 result = (bool)(arg1)->base_TransferDataFromWindow();
29467
29468 wxPyEndAllowThreads(__tstate);
29469 if (PyErr_Occurred()) SWIG_fail;
29470 }
29471 {
29472 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
29473 }
29474 return resultobj;
29475 fail:
29476 return NULL;
29477 }
29478
29479
29480 static PyObject *_wrap_PyControl_base_Validate(PyObject *self, PyObject *args, PyObject *kwargs) {
29481 PyObject *resultobj;
29482 wxPyControl *arg1 = (wxPyControl *) 0 ;
29483 bool result;
29484 PyObject * obj0 = 0 ;
29485 char *kwnames[] = {
29486 (char *) "self", NULL
29487 };
29488
29489 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyControl_base_Validate",kwnames,&obj0)) goto fail;
29490 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29491 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29492 {
29493 PyThreadState* __tstate = wxPyBeginAllowThreads();
29494 result = (bool)(arg1)->base_Validate();
29495
29496 wxPyEndAllowThreads(__tstate);
29497 if (PyErr_Occurred()) SWIG_fail;
29498 }
29499 {
29500 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
29501 }
29502 return resultobj;
29503 fail:
29504 return NULL;
29505 }
29506
29507
29508 static PyObject *_wrap_PyControl_base_AcceptsFocus(PyObject *self, PyObject *args, PyObject *kwargs) {
29509 PyObject *resultobj;
29510 wxPyControl *arg1 = (wxPyControl *) 0 ;
29511 bool result;
29512 PyObject * obj0 = 0 ;
29513 char *kwnames[] = {
29514 (char *) "self", NULL
29515 };
29516
29517 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyControl_base_AcceptsFocus",kwnames,&obj0)) goto fail;
29518 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29519 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29520 {
29521 PyThreadState* __tstate = wxPyBeginAllowThreads();
29522 result = (bool)((wxPyControl const *)arg1)->base_AcceptsFocus();
29523
29524 wxPyEndAllowThreads(__tstate);
29525 if (PyErr_Occurred()) SWIG_fail;
29526 }
29527 {
29528 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
29529 }
29530 return resultobj;
29531 fail:
29532 return NULL;
29533 }
29534
29535
29536 static PyObject *_wrap_PyControl_base_AcceptsFocusFromKeyboard(PyObject *self, PyObject *args, PyObject *kwargs) {
29537 PyObject *resultobj;
29538 wxPyControl *arg1 = (wxPyControl *) 0 ;
29539 bool result;
29540 PyObject * obj0 = 0 ;
29541 char *kwnames[] = {
29542 (char *) "self", NULL
29543 };
29544
29545 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyControl_base_AcceptsFocusFromKeyboard",kwnames,&obj0)) goto fail;
29546 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29547 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29548 {
29549 PyThreadState* __tstate = wxPyBeginAllowThreads();
29550 result = (bool)((wxPyControl const *)arg1)->base_AcceptsFocusFromKeyboard();
29551
29552 wxPyEndAllowThreads(__tstate);
29553 if (PyErr_Occurred()) SWIG_fail;
29554 }
29555 {
29556 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
29557 }
29558 return resultobj;
29559 fail:
29560 return NULL;
29561 }
29562
29563
29564 static PyObject *_wrap_PyControl_base_GetMaxSize(PyObject *self, PyObject *args, PyObject *kwargs) {
29565 PyObject *resultobj;
29566 wxPyControl *arg1 = (wxPyControl *) 0 ;
29567 wxSize result;
29568 PyObject * obj0 = 0 ;
29569 char *kwnames[] = {
29570 (char *) "self", NULL
29571 };
29572
29573 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyControl_base_GetMaxSize",kwnames,&obj0)) goto fail;
29574 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29575 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29576 {
29577 PyThreadState* __tstate = wxPyBeginAllowThreads();
29578 result = ((wxPyControl const *)arg1)->base_GetMaxSize();
29579
29580 wxPyEndAllowThreads(__tstate);
29581 if (PyErr_Occurred()) SWIG_fail;
29582 }
29583 {
29584 wxSize * resultptr;
29585 resultptr = new wxSize((wxSize &) result);
29586 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
29587 }
29588 return resultobj;
29589 fail:
29590 return NULL;
29591 }
29592
29593
29594 static PyObject *_wrap_PyControl_base_AddChild(PyObject *self, PyObject *args, PyObject *kwargs) {
29595 PyObject *resultobj;
29596 wxPyControl *arg1 = (wxPyControl *) 0 ;
29597 wxWindow *arg2 = (wxWindow *) 0 ;
29598 PyObject * obj0 = 0 ;
29599 PyObject * obj1 = 0 ;
29600 char *kwnames[] = {
29601 (char *) "self",(char *) "child", NULL
29602 };
29603
29604 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:PyControl_base_AddChild",kwnames,&obj0,&obj1)) goto fail;
29605 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29606 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29607 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
29608 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29609 {
29610 PyThreadState* __tstate = wxPyBeginAllowThreads();
29611 (arg1)->base_AddChild(arg2);
29612
29613 wxPyEndAllowThreads(__tstate);
29614 if (PyErr_Occurred()) SWIG_fail;
29615 }
29616 Py_INCREF(Py_None); resultobj = Py_None;
29617 return resultobj;
29618 fail:
29619 return NULL;
29620 }
29621
29622
29623 static PyObject *_wrap_PyControl_base_RemoveChild(PyObject *self, PyObject *args, PyObject *kwargs) {
29624 PyObject *resultobj;
29625 wxPyControl *arg1 = (wxPyControl *) 0 ;
29626 wxWindow *arg2 = (wxWindow *) 0 ;
29627 PyObject * obj0 = 0 ;
29628 PyObject * obj1 = 0 ;
29629 char *kwnames[] = {
29630 (char *) "self",(char *) "child", NULL
29631 };
29632
29633 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:PyControl_base_RemoveChild",kwnames,&obj0,&obj1)) goto fail;
29634 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29635 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29636 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
29637 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29638 {
29639 PyThreadState* __tstate = wxPyBeginAllowThreads();
29640 (arg1)->base_RemoveChild(arg2);
29641
29642 wxPyEndAllowThreads(__tstate);
29643 if (PyErr_Occurred()) SWIG_fail;
29644 }
29645 Py_INCREF(Py_None); resultobj = Py_None;
29646 return resultobj;
29647 fail:
29648 return NULL;
29649 }
29650
29651
29652 static PyObject *_wrap_PyControl_base_ShouldInheritColours(PyObject *self, PyObject *args, PyObject *kwargs) {
29653 PyObject *resultobj;
29654 wxPyControl *arg1 = (wxPyControl *) 0 ;
29655 bool result;
29656 PyObject * obj0 = 0 ;
29657 char *kwnames[] = {
29658 (char *) "self", NULL
29659 };
29660
29661 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyControl_base_ShouldInheritColours",kwnames,&obj0)) goto fail;
29662 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29663 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29664 {
29665 PyThreadState* __tstate = wxPyBeginAllowThreads();
29666 result = (bool)((wxPyControl const *)arg1)->base_ShouldInheritColours();
29667
29668 wxPyEndAllowThreads(__tstate);
29669 if (PyErr_Occurred()) SWIG_fail;
29670 }
29671 {
29672 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
29673 }
29674 return resultobj;
29675 fail:
29676 return NULL;
29677 }
29678
29679
29680 static PyObject *_wrap_PyControl_base_ApplyParentThemeBackground(PyObject *self, PyObject *args, PyObject *kwargs) {
29681 PyObject *resultobj;
29682 wxPyControl *arg1 = (wxPyControl *) 0 ;
29683 wxColour *arg2 = 0 ;
29684 wxColour temp2 ;
29685 PyObject * obj0 = 0 ;
29686 PyObject * obj1 = 0 ;
29687 char *kwnames[] = {
29688 (char *) "self",(char *) "c", NULL
29689 };
29690
29691 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:PyControl_base_ApplyParentThemeBackground",kwnames,&obj0,&obj1)) goto fail;
29692 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29693 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29694 {
29695 arg2 = &temp2;
29696 if ( ! wxColour_helper(obj1, &arg2)) SWIG_fail;
29697 }
29698 {
29699 PyThreadState* __tstate = wxPyBeginAllowThreads();
29700 (arg1)->base_ApplyParentThemeBackground((wxColour const &)*arg2);
29701
29702 wxPyEndAllowThreads(__tstate);
29703 if (PyErr_Occurred()) SWIG_fail;
29704 }
29705 Py_INCREF(Py_None); resultobj = Py_None;
29706 return resultobj;
29707 fail:
29708 return NULL;
29709 }
29710
29711
29712 static PyObject *_wrap_PyControl_base_GetDefaultAttributes(PyObject *self, PyObject *args, PyObject *kwargs) {
29713 PyObject *resultobj;
29714 wxPyControl *arg1 = (wxPyControl *) 0 ;
29715 wxVisualAttributes result;
29716 PyObject * obj0 = 0 ;
29717 char *kwnames[] = {
29718 (char *) "self", NULL
29719 };
29720
29721 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:PyControl_base_GetDefaultAttributes",kwnames,&obj0)) goto fail;
29722 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyControl,
29723 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29724 {
29725 PyThreadState* __tstate = wxPyBeginAllowThreads();
29726 result = (arg1)->base_GetDefaultAttributes();
29727
29728 wxPyEndAllowThreads(__tstate);
29729 if (PyErr_Occurred()) SWIG_fail;
29730 }
29731 {
29732 wxVisualAttributes * resultptr;
29733 resultptr = new wxVisualAttributes((wxVisualAttributes &) result);
29734 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxVisualAttributes, 1);
29735 }
29736 return resultobj;
29737 fail:
29738 return NULL;
29739 }
29740
29741
29742 static PyObject * PyControl_swigregister(PyObject *self, PyObject *args) {
29743 PyObject *obj;
29744 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
29745 SWIG_TypeClientData(SWIGTYPE_p_wxPyControl, obj);
29746 Py_INCREF(obj);
29747 return Py_BuildValue((char *)"");
29748 }
29749 static PyObject *_wrap_new_HelpEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
29750 PyObject *resultobj;
29751 wxEventType arg1 = (wxEventType) wxEVT_NULL ;
29752 int arg2 = (int) 0 ;
29753 wxPoint const &arg3_defvalue = wxDefaultPosition ;
29754 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
29755 wxHelpEvent *result;
29756 wxPoint temp3 ;
29757 PyObject * obj0 = 0 ;
29758 PyObject * obj1 = 0 ;
29759 PyObject * obj2 = 0 ;
29760 char *kwnames[] = {
29761 (char *) "type",(char *) "winid",(char *) "pt", NULL
29762 };
29763
29764 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|OOO:new_HelpEvent",kwnames,&obj0,&obj1,&obj2)) goto fail;
29765 if (obj0) {
29766 arg1 = (wxEventType) SWIG_AsInt(obj0);
29767 if (PyErr_Occurred()) SWIG_fail;
29768 }
29769 if (obj1) {
29770 arg2 = (int) SWIG_AsInt(obj1);
29771 if (PyErr_Occurred()) SWIG_fail;
29772 }
29773 if (obj2) {
29774 {
29775 arg3 = &temp3;
29776 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
29777 }
29778 }
29779 {
29780 PyThreadState* __tstate = wxPyBeginAllowThreads();
29781 result = (wxHelpEvent *)new wxHelpEvent(arg1,arg2,(wxPoint const &)*arg3);
29782
29783 wxPyEndAllowThreads(__tstate);
29784 if (PyErr_Occurred()) SWIG_fail;
29785 }
29786 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxHelpEvent, 1);
29787 return resultobj;
29788 fail:
29789 return NULL;
29790 }
29791
29792
29793 static PyObject *_wrap_HelpEvent_GetPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
29794 PyObject *resultobj;
29795 wxHelpEvent *arg1 = (wxHelpEvent *) 0 ;
29796 wxPoint result;
29797 PyObject * obj0 = 0 ;
29798 char *kwnames[] = {
29799 (char *) "self", NULL
29800 };
29801
29802 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:HelpEvent_GetPosition",kwnames,&obj0)) goto fail;
29803 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxHelpEvent,
29804 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29805 {
29806 PyThreadState* __tstate = wxPyBeginAllowThreads();
29807 result = ((wxHelpEvent const *)arg1)->GetPosition();
29808
29809 wxPyEndAllowThreads(__tstate);
29810 if (PyErr_Occurred()) SWIG_fail;
29811 }
29812 {
29813 wxPoint * resultptr;
29814 resultptr = new wxPoint((wxPoint &) result);
29815 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxPoint, 1);
29816 }
29817 return resultobj;
29818 fail:
29819 return NULL;
29820 }
29821
29822
29823 static PyObject *_wrap_HelpEvent_SetPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
29824 PyObject *resultobj;
29825 wxHelpEvent *arg1 = (wxHelpEvent *) 0 ;
29826 wxPoint *arg2 = 0 ;
29827 wxPoint temp2 ;
29828 PyObject * obj0 = 0 ;
29829 PyObject * obj1 = 0 ;
29830 char *kwnames[] = {
29831 (char *) "self",(char *) "pos", NULL
29832 };
29833
29834 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:HelpEvent_SetPosition",kwnames,&obj0,&obj1)) goto fail;
29835 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxHelpEvent,
29836 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29837 {
29838 arg2 = &temp2;
29839 if ( ! wxPoint_helper(obj1, &arg2)) SWIG_fail;
29840 }
29841 {
29842 PyThreadState* __tstate = wxPyBeginAllowThreads();
29843 (arg1)->SetPosition((wxPoint const &)*arg2);
29844
29845 wxPyEndAllowThreads(__tstate);
29846 if (PyErr_Occurred()) SWIG_fail;
29847 }
29848 Py_INCREF(Py_None); resultobj = Py_None;
29849 return resultobj;
29850 fail:
29851 return NULL;
29852 }
29853
29854
29855 static PyObject *_wrap_HelpEvent_GetLink(PyObject *self, PyObject *args, PyObject *kwargs) {
29856 PyObject *resultobj;
29857 wxHelpEvent *arg1 = (wxHelpEvent *) 0 ;
29858 wxString *result;
29859 PyObject * obj0 = 0 ;
29860 char *kwnames[] = {
29861 (char *) "self", NULL
29862 };
29863
29864 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:HelpEvent_GetLink",kwnames,&obj0)) goto fail;
29865 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxHelpEvent,
29866 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29867 {
29868 PyThreadState* __tstate = wxPyBeginAllowThreads();
29869 {
29870 wxString const &_result_ref = ((wxHelpEvent const *)arg1)->GetLink();
29871 result = (wxString *) &_result_ref;
29872 }
29873
29874 wxPyEndAllowThreads(__tstate);
29875 if (PyErr_Occurred()) SWIG_fail;
29876 }
29877 {
29878 #if wxUSE_UNICODE
29879 resultobj = PyUnicode_FromWideChar(result->c_str(), result->Len());
29880 #else
29881 resultobj = PyString_FromStringAndSize(result->c_str(), result->Len());
29882 #endif
29883 }
29884 return resultobj;
29885 fail:
29886 return NULL;
29887 }
29888
29889
29890 static PyObject *_wrap_HelpEvent_SetLink(PyObject *self, PyObject *args, PyObject *kwargs) {
29891 PyObject *resultobj;
29892 wxHelpEvent *arg1 = (wxHelpEvent *) 0 ;
29893 wxString *arg2 = 0 ;
29894 bool temp2 = False ;
29895 PyObject * obj0 = 0 ;
29896 PyObject * obj1 = 0 ;
29897 char *kwnames[] = {
29898 (char *) "self",(char *) "link", NULL
29899 };
29900
29901 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:HelpEvent_SetLink",kwnames,&obj0,&obj1)) goto fail;
29902 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxHelpEvent,
29903 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29904 {
29905 arg2 = wxString_in_helper(obj1);
29906 if (arg2 == NULL) SWIG_fail;
29907 temp2 = True;
29908 }
29909 {
29910 PyThreadState* __tstate = wxPyBeginAllowThreads();
29911 (arg1)->SetLink((wxString const &)*arg2);
29912
29913 wxPyEndAllowThreads(__tstate);
29914 if (PyErr_Occurred()) SWIG_fail;
29915 }
29916 Py_INCREF(Py_None); resultobj = Py_None;
29917 {
29918 if (temp2)
29919 delete arg2;
29920 }
29921 return resultobj;
29922 fail:
29923 {
29924 if (temp2)
29925 delete arg2;
29926 }
29927 return NULL;
29928 }
29929
29930
29931 static PyObject *_wrap_HelpEvent_GetTarget(PyObject *self, PyObject *args, PyObject *kwargs) {
29932 PyObject *resultobj;
29933 wxHelpEvent *arg1 = (wxHelpEvent *) 0 ;
29934 wxString *result;
29935 PyObject * obj0 = 0 ;
29936 char *kwnames[] = {
29937 (char *) "self", NULL
29938 };
29939
29940 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:HelpEvent_GetTarget",kwnames,&obj0)) goto fail;
29941 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxHelpEvent,
29942 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29943 {
29944 PyThreadState* __tstate = wxPyBeginAllowThreads();
29945 {
29946 wxString const &_result_ref = ((wxHelpEvent const *)arg1)->GetTarget();
29947 result = (wxString *) &_result_ref;
29948 }
29949
29950 wxPyEndAllowThreads(__tstate);
29951 if (PyErr_Occurred()) SWIG_fail;
29952 }
29953 {
29954 #if wxUSE_UNICODE
29955 resultobj = PyUnicode_FromWideChar(result->c_str(), result->Len());
29956 #else
29957 resultobj = PyString_FromStringAndSize(result->c_str(), result->Len());
29958 #endif
29959 }
29960 return resultobj;
29961 fail:
29962 return NULL;
29963 }
29964
29965
29966 static PyObject *_wrap_HelpEvent_SetTarget(PyObject *self, PyObject *args, PyObject *kwargs) {
29967 PyObject *resultobj;
29968 wxHelpEvent *arg1 = (wxHelpEvent *) 0 ;
29969 wxString *arg2 = 0 ;
29970 bool temp2 = False ;
29971 PyObject * obj0 = 0 ;
29972 PyObject * obj1 = 0 ;
29973 char *kwnames[] = {
29974 (char *) "self",(char *) "target", NULL
29975 };
29976
29977 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:HelpEvent_SetTarget",kwnames,&obj0,&obj1)) goto fail;
29978 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxHelpEvent,
29979 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
29980 {
29981 arg2 = wxString_in_helper(obj1);
29982 if (arg2 == NULL) SWIG_fail;
29983 temp2 = True;
29984 }
29985 {
29986 PyThreadState* __tstate = wxPyBeginAllowThreads();
29987 (arg1)->SetTarget((wxString const &)*arg2);
29988
29989 wxPyEndAllowThreads(__tstate);
29990 if (PyErr_Occurred()) SWIG_fail;
29991 }
29992 Py_INCREF(Py_None); resultobj = Py_None;
29993 {
29994 if (temp2)
29995 delete arg2;
29996 }
29997 return resultobj;
29998 fail:
29999 {
30000 if (temp2)
30001 delete arg2;
30002 }
30003 return NULL;
30004 }
30005
30006
30007 static PyObject * HelpEvent_swigregister(PyObject *self, PyObject *args) {
30008 PyObject *obj;
30009 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
30010 SWIG_TypeClientData(SWIGTYPE_p_wxHelpEvent, obj);
30011 Py_INCREF(obj);
30012 return Py_BuildValue((char *)"");
30013 }
30014 static PyObject *_wrap_new_ContextHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
30015 PyObject *resultobj;
30016 wxWindow *arg1 = (wxWindow *) NULL ;
30017 bool arg2 = (bool) True ;
30018 wxContextHelp *result;
30019 PyObject * obj0 = 0 ;
30020 PyObject * obj1 = 0 ;
30021 char *kwnames[] = {
30022 (char *) "window",(char *) "doNow", NULL
30023 };
30024
30025 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|OO:new_ContextHelp",kwnames,&obj0,&obj1)) goto fail;
30026 if (obj0) {
30027 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
30028 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30029 }
30030 if (obj1) {
30031 arg2 = (bool) SWIG_AsBool(obj1);
30032 if (PyErr_Occurred()) SWIG_fail;
30033 }
30034 {
30035 if (!wxPyCheckForApp()) SWIG_fail;
30036 PyThreadState* __tstate = wxPyBeginAllowThreads();
30037 result = (wxContextHelp *)new wxContextHelp(arg1,arg2);
30038
30039 wxPyEndAllowThreads(__tstate);
30040 if (PyErr_Occurred()) SWIG_fail;
30041 }
30042 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxContextHelp, 1);
30043 return resultobj;
30044 fail:
30045 return NULL;
30046 }
30047
30048
30049 static PyObject *_wrap_delete_ContextHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
30050 PyObject *resultobj;
30051 wxContextHelp *arg1 = (wxContextHelp *) 0 ;
30052 PyObject * obj0 = 0 ;
30053 char *kwnames[] = {
30054 (char *) "self", NULL
30055 };
30056
30057 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:delete_ContextHelp",kwnames,&obj0)) goto fail;
30058 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxContextHelp,
30059 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30060 {
30061 PyThreadState* __tstate = wxPyBeginAllowThreads();
30062 delete arg1;
30063
30064 wxPyEndAllowThreads(__tstate);
30065 if (PyErr_Occurred()) SWIG_fail;
30066 }
30067 Py_INCREF(Py_None); resultobj = Py_None;
30068 return resultobj;
30069 fail:
30070 return NULL;
30071 }
30072
30073
30074 static PyObject *_wrap_ContextHelp_BeginContextHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
30075 PyObject *resultobj;
30076 wxContextHelp *arg1 = (wxContextHelp *) 0 ;
30077 wxWindow *arg2 = (wxWindow *) NULL ;
30078 bool result;
30079 PyObject * obj0 = 0 ;
30080 PyObject * obj1 = 0 ;
30081 char *kwnames[] = {
30082 (char *) "self",(char *) "window", NULL
30083 };
30084
30085 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:ContextHelp_BeginContextHelp",kwnames,&obj0,&obj1)) goto fail;
30086 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxContextHelp,
30087 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30088 if (obj1) {
30089 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
30090 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30091 }
30092 {
30093 PyThreadState* __tstate = wxPyBeginAllowThreads();
30094 result = (bool)(arg1)->BeginContextHelp(arg2);
30095
30096 wxPyEndAllowThreads(__tstate);
30097 if (PyErr_Occurred()) SWIG_fail;
30098 }
30099 {
30100 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
30101 }
30102 return resultobj;
30103 fail:
30104 return NULL;
30105 }
30106
30107
30108 static PyObject *_wrap_ContextHelp_EndContextHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
30109 PyObject *resultobj;
30110 wxContextHelp *arg1 = (wxContextHelp *) 0 ;
30111 bool result;
30112 PyObject * obj0 = 0 ;
30113 char *kwnames[] = {
30114 (char *) "self", NULL
30115 };
30116
30117 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:ContextHelp_EndContextHelp",kwnames,&obj0)) goto fail;
30118 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxContextHelp,
30119 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30120 {
30121 PyThreadState* __tstate = wxPyBeginAllowThreads();
30122 result = (bool)(arg1)->EndContextHelp();
30123
30124 wxPyEndAllowThreads(__tstate);
30125 if (PyErr_Occurred()) SWIG_fail;
30126 }
30127 {
30128 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
30129 }
30130 return resultobj;
30131 fail:
30132 return NULL;
30133 }
30134
30135
30136 static PyObject * ContextHelp_swigregister(PyObject *self, PyObject *args) {
30137 PyObject *obj;
30138 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
30139 SWIG_TypeClientData(SWIGTYPE_p_wxContextHelp, obj);
30140 Py_INCREF(obj);
30141 return Py_BuildValue((char *)"");
30142 }
30143 static PyObject *_wrap_new_ContextHelpButton(PyObject *self, PyObject *args, PyObject *kwargs) {
30144 PyObject *resultobj;
30145 wxWindow *arg1 = (wxWindow *) 0 ;
30146 int arg2 = (int) wxID_CONTEXT_HELP ;
30147 wxPoint const &arg3_defvalue = wxDefaultPosition ;
30148 wxPoint *arg3 = (wxPoint *) &arg3_defvalue ;
30149 wxSize const &arg4_defvalue = wxDefaultSize ;
30150 wxSize *arg4 = (wxSize *) &arg4_defvalue ;
30151 long arg5 = (long) wxBU_AUTODRAW ;
30152 wxContextHelpButton *result;
30153 wxPoint temp3 ;
30154 wxSize temp4 ;
30155 PyObject * obj0 = 0 ;
30156 PyObject * obj1 = 0 ;
30157 PyObject * obj2 = 0 ;
30158 PyObject * obj3 = 0 ;
30159 PyObject * obj4 = 0 ;
30160 char *kwnames[] = {
30161 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
30162 };
30163
30164 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOO:new_ContextHelpButton",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
30165 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
30166 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30167 if (obj1) {
30168 arg2 = (int) SWIG_AsInt(obj1);
30169 if (PyErr_Occurred()) SWIG_fail;
30170 }
30171 if (obj2) {
30172 {
30173 arg3 = &temp3;
30174 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
30175 }
30176 }
30177 if (obj3) {
30178 {
30179 arg4 = &temp4;
30180 if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
30181 }
30182 }
30183 if (obj4) {
30184 arg5 = (long) SWIG_AsLong(obj4);
30185 if (PyErr_Occurred()) SWIG_fail;
30186 }
30187 {
30188 if (!wxPyCheckForApp()) SWIG_fail;
30189 PyThreadState* __tstate = wxPyBeginAllowThreads();
30190 result = (wxContextHelpButton *)new wxContextHelpButton(arg1,arg2,(wxPoint const &)*arg3,(wxSize const &)*arg4,arg5);
30191
30192 wxPyEndAllowThreads(__tstate);
30193 if (PyErr_Occurred()) SWIG_fail;
30194 }
30195 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxContextHelpButton, 1);
30196 return resultobj;
30197 fail:
30198 return NULL;
30199 }
30200
30201
30202 static PyObject * ContextHelpButton_swigregister(PyObject *self, PyObject *args) {
30203 PyObject *obj;
30204 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
30205 SWIG_TypeClientData(SWIGTYPE_p_wxContextHelpButton, obj);
30206 Py_INCREF(obj);
30207 return Py_BuildValue((char *)"");
30208 }
30209 static PyObject *_wrap_HelpProvider_Set(PyObject *self, PyObject *args, PyObject *kwargs) {
30210 PyObject *resultobj;
30211 wxHelpProvider *arg1 = (wxHelpProvider *) 0 ;
30212 wxHelpProvider *result;
30213 PyObject * obj0 = 0 ;
30214 char *kwnames[] = {
30215 (char *) "helpProvider", NULL
30216 };
30217
30218 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:HelpProvider_Set",kwnames,&obj0)) goto fail;
30219 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxHelpProvider,
30220 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30221 {
30222 PyThreadState* __tstate = wxPyBeginAllowThreads();
30223 result = (wxHelpProvider *)wxHelpProvider::Set(arg1);
30224
30225 wxPyEndAllowThreads(__tstate);
30226 if (PyErr_Occurred()) SWIG_fail;
30227 }
30228 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxHelpProvider, 0);
30229 return resultobj;
30230 fail:
30231 return NULL;
30232 }
30233
30234
30235 static PyObject *_wrap_HelpProvider_Get(PyObject *self, PyObject *args, PyObject *kwargs) {
30236 PyObject *resultobj;
30237 wxHelpProvider *result;
30238 char *kwnames[] = {
30239 NULL
30240 };
30241
30242 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":HelpProvider_Get",kwnames)) goto fail;
30243 {
30244 PyThreadState* __tstate = wxPyBeginAllowThreads();
30245 result = (wxHelpProvider *)wxHelpProvider::Get();
30246
30247 wxPyEndAllowThreads(__tstate);
30248 if (PyErr_Occurred()) SWIG_fail;
30249 }
30250 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxHelpProvider, 0);
30251 return resultobj;
30252 fail:
30253 return NULL;
30254 }
30255
30256
30257 static PyObject *_wrap_HelpProvider_GetHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
30258 PyObject *resultobj;
30259 wxHelpProvider *arg1 = (wxHelpProvider *) 0 ;
30260 wxWindow *arg2 = (wxWindow *) 0 ;
30261 wxString result;
30262 PyObject * obj0 = 0 ;
30263 PyObject * obj1 = 0 ;
30264 char *kwnames[] = {
30265 (char *) "self",(char *) "window", NULL
30266 };
30267
30268 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:HelpProvider_GetHelp",kwnames,&obj0,&obj1)) goto fail;
30269 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxHelpProvider,
30270 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30271 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
30272 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30273 {
30274 PyThreadState* __tstate = wxPyBeginAllowThreads();
30275 result = (arg1)->GetHelp((wxWindow const *)arg2);
30276
30277 wxPyEndAllowThreads(__tstate);
30278 if (PyErr_Occurred()) SWIG_fail;
30279 }
30280 {
30281 #if wxUSE_UNICODE
30282 resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
30283 #else
30284 resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
30285 #endif
30286 }
30287 return resultobj;
30288 fail:
30289 return NULL;
30290 }
30291
30292
30293 static PyObject *_wrap_HelpProvider_ShowHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
30294 PyObject *resultobj;
30295 wxHelpProvider *arg1 = (wxHelpProvider *) 0 ;
30296 wxWindow *arg2 = (wxWindow *) 0 ;
30297 bool result;
30298 PyObject * obj0 = 0 ;
30299 PyObject * obj1 = 0 ;
30300 char *kwnames[] = {
30301 (char *) "self",(char *) "window", NULL
30302 };
30303
30304 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:HelpProvider_ShowHelp",kwnames,&obj0,&obj1)) goto fail;
30305 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxHelpProvider,
30306 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30307 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
30308 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30309 {
30310 PyThreadState* __tstate = wxPyBeginAllowThreads();
30311 result = (bool)(arg1)->ShowHelp(arg2);
30312
30313 wxPyEndAllowThreads(__tstate);
30314 if (PyErr_Occurred()) SWIG_fail;
30315 }
30316 {
30317 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
30318 }
30319 return resultobj;
30320 fail:
30321 return NULL;
30322 }
30323
30324
30325 static PyObject *_wrap_HelpProvider_AddHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
30326 PyObject *resultobj;
30327 wxHelpProvider *arg1 = (wxHelpProvider *) 0 ;
30328 wxWindow *arg2 = (wxWindow *) 0 ;
30329 wxString *arg3 = 0 ;
30330 bool temp3 = False ;
30331 PyObject * obj0 = 0 ;
30332 PyObject * obj1 = 0 ;
30333 PyObject * obj2 = 0 ;
30334 char *kwnames[] = {
30335 (char *) "self",(char *) "window",(char *) "text", NULL
30336 };
30337
30338 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:HelpProvider_AddHelp",kwnames,&obj0,&obj1,&obj2)) goto fail;
30339 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxHelpProvider,
30340 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30341 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
30342 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30343 {
30344 arg3 = wxString_in_helper(obj2);
30345 if (arg3 == NULL) SWIG_fail;
30346 temp3 = True;
30347 }
30348 {
30349 PyThreadState* __tstate = wxPyBeginAllowThreads();
30350 (arg1)->AddHelp(arg2,(wxString const &)*arg3);
30351
30352 wxPyEndAllowThreads(__tstate);
30353 if (PyErr_Occurred()) SWIG_fail;
30354 }
30355 Py_INCREF(Py_None); resultobj = Py_None;
30356 {
30357 if (temp3)
30358 delete arg3;
30359 }
30360 return resultobj;
30361 fail:
30362 {
30363 if (temp3)
30364 delete arg3;
30365 }
30366 return NULL;
30367 }
30368
30369
30370 static PyObject *_wrap_HelpProvider_AddHelpById(PyObject *self, PyObject *args, PyObject *kwargs) {
30371 PyObject *resultobj;
30372 wxHelpProvider *arg1 = (wxHelpProvider *) 0 ;
30373 int arg2 ;
30374 wxString *arg3 = 0 ;
30375 bool temp3 = False ;
30376 PyObject * obj0 = 0 ;
30377 PyObject * obj1 = 0 ;
30378 PyObject * obj2 = 0 ;
30379 char *kwnames[] = {
30380 (char *) "self",(char *) "id",(char *) "text", NULL
30381 };
30382
30383 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:HelpProvider_AddHelpById",kwnames,&obj0,&obj1,&obj2)) goto fail;
30384 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxHelpProvider,
30385 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30386 arg2 = (int) SWIG_AsInt(obj1);
30387 if (PyErr_Occurred()) SWIG_fail;
30388 {
30389 arg3 = wxString_in_helper(obj2);
30390 if (arg3 == NULL) SWIG_fail;
30391 temp3 = True;
30392 }
30393 {
30394 PyThreadState* __tstate = wxPyBeginAllowThreads();
30395 (arg1)->AddHelp(arg2,(wxString const &)*arg3);
30396
30397 wxPyEndAllowThreads(__tstate);
30398 if (PyErr_Occurred()) SWIG_fail;
30399 }
30400 Py_INCREF(Py_None); resultobj = Py_None;
30401 {
30402 if (temp3)
30403 delete arg3;
30404 }
30405 return resultobj;
30406 fail:
30407 {
30408 if (temp3)
30409 delete arg3;
30410 }
30411 return NULL;
30412 }
30413
30414
30415 static PyObject *_wrap_HelpProvider_RemoveHelp(PyObject *self, PyObject *args, PyObject *kwargs) {
30416 PyObject *resultobj;
30417 wxHelpProvider *arg1 = (wxHelpProvider *) 0 ;
30418 wxWindow *arg2 = (wxWindow *) 0 ;
30419 PyObject * obj0 = 0 ;
30420 PyObject * obj1 = 0 ;
30421 char *kwnames[] = {
30422 (char *) "self",(char *) "window", NULL
30423 };
30424
30425 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:HelpProvider_RemoveHelp",kwnames,&obj0,&obj1)) goto fail;
30426 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxHelpProvider,
30427 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30428 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
30429 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30430 {
30431 PyThreadState* __tstate = wxPyBeginAllowThreads();
30432 (arg1)->RemoveHelp(arg2);
30433
30434 wxPyEndAllowThreads(__tstate);
30435 if (PyErr_Occurred()) SWIG_fail;
30436 }
30437 Py_INCREF(Py_None); resultobj = Py_None;
30438 return resultobj;
30439 fail:
30440 return NULL;
30441 }
30442
30443
30444 static PyObject *_wrap_HelpProvider_Destroy(PyObject *self, PyObject *args, PyObject *kwargs) {
30445 PyObject *resultobj;
30446 wxHelpProvider *arg1 = (wxHelpProvider *) 0 ;
30447 PyObject * obj0 = 0 ;
30448 char *kwnames[] = {
30449 (char *) "self", NULL
30450 };
30451
30452 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:HelpProvider_Destroy",kwnames,&obj0)) goto fail;
30453 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxHelpProvider,
30454 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30455 {
30456 PyThreadState* __tstate = wxPyBeginAllowThreads();
30457 wxHelpProvider_Destroy(arg1);
30458
30459 wxPyEndAllowThreads(__tstate);
30460 if (PyErr_Occurred()) SWIG_fail;
30461 }
30462 Py_INCREF(Py_None); resultobj = Py_None;
30463 return resultobj;
30464 fail:
30465 return NULL;
30466 }
30467
30468
30469 static PyObject * HelpProvider_swigregister(PyObject *self, PyObject *args) {
30470 PyObject *obj;
30471 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
30472 SWIG_TypeClientData(SWIGTYPE_p_wxHelpProvider, obj);
30473 Py_INCREF(obj);
30474 return Py_BuildValue((char *)"");
30475 }
30476 static PyObject *_wrap_new_SimpleHelpProvider(PyObject *self, PyObject *args, PyObject *kwargs) {
30477 PyObject *resultobj;
30478 wxSimpleHelpProvider *result;
30479 char *kwnames[] = {
30480 NULL
30481 };
30482
30483 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_SimpleHelpProvider",kwnames)) goto fail;
30484 {
30485 PyThreadState* __tstate = wxPyBeginAllowThreads();
30486 result = (wxSimpleHelpProvider *)new wxSimpleHelpProvider();
30487
30488 wxPyEndAllowThreads(__tstate);
30489 if (PyErr_Occurred()) SWIG_fail;
30490 }
30491 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxSimpleHelpProvider, 1);
30492 return resultobj;
30493 fail:
30494 return NULL;
30495 }
30496
30497
30498 static PyObject * SimpleHelpProvider_swigregister(PyObject *self, PyObject *args) {
30499 PyObject *obj;
30500 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
30501 SWIG_TypeClientData(SWIGTYPE_p_wxSimpleHelpProvider, obj);
30502 Py_INCREF(obj);
30503 return Py_BuildValue((char *)"");
30504 }
30505 static PyObject *_wrap_new_DragImage(PyObject *self, PyObject *args, PyObject *kwargs) {
30506 PyObject *resultobj;
30507 wxBitmap *arg1 = 0 ;
30508 wxCursor const &arg2_defvalue = wxNullCursor ;
30509 wxCursor *arg2 = (wxCursor *) &arg2_defvalue ;
30510 wxGenericDragImage *result;
30511 PyObject * obj0 = 0 ;
30512 PyObject * obj1 = 0 ;
30513 char *kwnames[] = {
30514 (char *) "image",(char *) "cursor", NULL
30515 };
30516
30517 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:new_DragImage",kwnames,&obj0,&obj1)) goto fail;
30518 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxBitmap,
30519 SWIG_POINTER_EXCEPTION | 0)) == -1)
30520 SWIG_fail;
30521 if (arg1 == NULL) {
30522 PyErr_SetString(PyExc_TypeError,"null reference");
30523 SWIG_fail;
30524 }
30525 if (obj1) {
30526 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxCursor,
30527 SWIG_POINTER_EXCEPTION | 0)) == -1)
30528 SWIG_fail;
30529 if (arg2 == NULL) {
30530 PyErr_SetString(PyExc_TypeError,"null reference");
30531 SWIG_fail;
30532 }
30533 }
30534 {
30535 if (!wxPyCheckForApp()) SWIG_fail;
30536 PyThreadState* __tstate = wxPyBeginAllowThreads();
30537 result = (wxGenericDragImage *)new wxGenericDragImage((wxBitmap const &)*arg1,(wxCursor const &)*arg2);
30538
30539 wxPyEndAllowThreads(__tstate);
30540 if (PyErr_Occurred()) SWIG_fail;
30541 }
30542 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxGenericDragImage, 1);
30543 return resultobj;
30544 fail:
30545 return NULL;
30546 }
30547
30548
30549 static PyObject *_wrap_new_DragIcon(PyObject *self, PyObject *args, PyObject *kwargs) {
30550 PyObject *resultobj;
30551 wxIcon *arg1 = 0 ;
30552 wxCursor const &arg2_defvalue = wxNullCursor ;
30553 wxCursor *arg2 = (wxCursor *) &arg2_defvalue ;
30554 wxGenericDragImage *result;
30555 PyObject * obj0 = 0 ;
30556 PyObject * obj1 = 0 ;
30557 char *kwnames[] = {
30558 (char *) "image",(char *) "cursor", NULL
30559 };
30560
30561 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:new_DragIcon",kwnames,&obj0,&obj1)) goto fail;
30562 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxIcon,
30563 SWIG_POINTER_EXCEPTION | 0)) == -1)
30564 SWIG_fail;
30565 if (arg1 == NULL) {
30566 PyErr_SetString(PyExc_TypeError,"null reference");
30567 SWIG_fail;
30568 }
30569 if (obj1) {
30570 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxCursor,
30571 SWIG_POINTER_EXCEPTION | 0)) == -1)
30572 SWIG_fail;
30573 if (arg2 == NULL) {
30574 PyErr_SetString(PyExc_TypeError,"null reference");
30575 SWIG_fail;
30576 }
30577 }
30578 {
30579 if (!wxPyCheckForApp()) SWIG_fail;
30580 PyThreadState* __tstate = wxPyBeginAllowThreads();
30581 result = (wxGenericDragImage *)new wxGenericDragImage((wxIcon const &)*arg1,(wxCursor const &)*arg2);
30582
30583 wxPyEndAllowThreads(__tstate);
30584 if (PyErr_Occurred()) SWIG_fail;
30585 }
30586 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxGenericDragImage, 1);
30587 return resultobj;
30588 fail:
30589 return NULL;
30590 }
30591
30592
30593 static PyObject *_wrap_new_DragString(PyObject *self, PyObject *args, PyObject *kwargs) {
30594 PyObject *resultobj;
30595 wxString *arg1 = 0 ;
30596 wxCursor const &arg2_defvalue = wxNullCursor ;
30597 wxCursor *arg2 = (wxCursor *) &arg2_defvalue ;
30598 wxGenericDragImage *result;
30599 bool temp1 = False ;
30600 PyObject * obj0 = 0 ;
30601 PyObject * obj1 = 0 ;
30602 char *kwnames[] = {
30603 (char *) "str",(char *) "cursor", NULL
30604 };
30605
30606 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:new_DragString",kwnames,&obj0,&obj1)) goto fail;
30607 {
30608 arg1 = wxString_in_helper(obj0);
30609 if (arg1 == NULL) SWIG_fail;
30610 temp1 = True;
30611 }
30612 if (obj1) {
30613 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxCursor,
30614 SWIG_POINTER_EXCEPTION | 0)) == -1)
30615 SWIG_fail;
30616 if (arg2 == NULL) {
30617 PyErr_SetString(PyExc_TypeError,"null reference");
30618 SWIG_fail;
30619 }
30620 }
30621 {
30622 if (!wxPyCheckForApp()) SWIG_fail;
30623 PyThreadState* __tstate = wxPyBeginAllowThreads();
30624 result = (wxGenericDragImage *)new wxGenericDragImage((wxString const &)*arg1,(wxCursor const &)*arg2);
30625
30626 wxPyEndAllowThreads(__tstate);
30627 if (PyErr_Occurred()) SWIG_fail;
30628 }
30629 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxGenericDragImage, 1);
30630 {
30631 if (temp1)
30632 delete arg1;
30633 }
30634 return resultobj;
30635 fail:
30636 {
30637 if (temp1)
30638 delete arg1;
30639 }
30640 return NULL;
30641 }
30642
30643
30644 static PyObject *_wrap_new_DragTreeItem(PyObject *self, PyObject *args, PyObject *kwargs) {
30645 PyObject *resultobj;
30646 wxPyTreeCtrl *arg1 = 0 ;
30647 wxTreeItemId *arg2 = 0 ;
30648 wxGenericDragImage *result;
30649 PyObject * obj0 = 0 ;
30650 PyObject * obj1 = 0 ;
30651 char *kwnames[] = {
30652 (char *) "treeCtrl",(char *) "id", NULL
30653 };
30654
30655 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:new_DragTreeItem",kwnames,&obj0,&obj1)) goto fail;
30656 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyTreeCtrl,
30657 SWIG_POINTER_EXCEPTION | 0)) == -1)
30658 SWIG_fail;
30659 if (arg1 == NULL) {
30660 PyErr_SetString(PyExc_TypeError,"null reference");
30661 SWIG_fail;
30662 }
30663 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxTreeItemId,
30664 SWIG_POINTER_EXCEPTION | 0)) == -1)
30665 SWIG_fail;
30666 if (arg2 == NULL) {
30667 PyErr_SetString(PyExc_TypeError,"null reference");
30668 SWIG_fail;
30669 }
30670 {
30671 if (!wxPyCheckForApp()) SWIG_fail;
30672 PyThreadState* __tstate = wxPyBeginAllowThreads();
30673 result = (wxGenericDragImage *)new wxGenericDragImage((wxPyTreeCtrl const &)*arg1,*arg2);
30674
30675 wxPyEndAllowThreads(__tstate);
30676 if (PyErr_Occurred()) SWIG_fail;
30677 }
30678 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxGenericDragImage, 1);
30679 return resultobj;
30680 fail:
30681 return NULL;
30682 }
30683
30684
30685 static PyObject *_wrap_new_DragListItem(PyObject *self, PyObject *args, PyObject *kwargs) {
30686 PyObject *resultobj;
30687 wxPyListCtrl *arg1 = 0 ;
30688 long arg2 ;
30689 wxGenericDragImage *result;
30690 PyObject * obj0 = 0 ;
30691 PyObject * obj1 = 0 ;
30692 char *kwnames[] = {
30693 (char *) "listCtrl",(char *) "id", NULL
30694 };
30695
30696 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:new_DragListItem",kwnames,&obj0,&obj1)) goto fail;
30697 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxPyListCtrl,
30698 SWIG_POINTER_EXCEPTION | 0)) == -1)
30699 SWIG_fail;
30700 if (arg1 == NULL) {
30701 PyErr_SetString(PyExc_TypeError,"null reference");
30702 SWIG_fail;
30703 }
30704 arg2 = (long) SWIG_AsLong(obj1);
30705 if (PyErr_Occurred()) SWIG_fail;
30706 {
30707 if (!wxPyCheckForApp()) SWIG_fail;
30708 PyThreadState* __tstate = wxPyBeginAllowThreads();
30709 result = (wxGenericDragImage *)new wxGenericDragImage((wxPyListCtrl const &)*arg1,arg2);
30710
30711 wxPyEndAllowThreads(__tstate);
30712 if (PyErr_Occurred()) SWIG_fail;
30713 }
30714 resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxGenericDragImage, 1);
30715 return resultobj;
30716 fail:
30717 return NULL;
30718 }
30719
30720
30721 static PyObject *_wrap_delete_DragImage(PyObject *self, PyObject *args, PyObject *kwargs) {
30722 PyObject *resultobj;
30723 wxGenericDragImage *arg1 = (wxGenericDragImage *) 0 ;
30724 PyObject * obj0 = 0 ;
30725 char *kwnames[] = {
30726 (char *) "self", NULL
30727 };
30728
30729 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:delete_DragImage",kwnames,&obj0)) goto fail;
30730 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDragImage,
30731 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30732 {
30733 PyThreadState* __tstate = wxPyBeginAllowThreads();
30734 delete arg1;
30735
30736 wxPyEndAllowThreads(__tstate);
30737 if (PyErr_Occurred()) SWIG_fail;
30738 }
30739 Py_INCREF(Py_None); resultobj = Py_None;
30740 return resultobj;
30741 fail:
30742 return NULL;
30743 }
30744
30745
30746 static PyObject *_wrap_DragImage_SetBackingBitmap(PyObject *self, PyObject *args, PyObject *kwargs) {
30747 PyObject *resultobj;
30748 wxGenericDragImage *arg1 = (wxGenericDragImage *) 0 ;
30749 wxBitmap *arg2 = (wxBitmap *) 0 ;
30750 PyObject * obj0 = 0 ;
30751 PyObject * obj1 = 0 ;
30752 char *kwnames[] = {
30753 (char *) "self",(char *) "bitmap", NULL
30754 };
30755
30756 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:DragImage_SetBackingBitmap",kwnames,&obj0,&obj1)) goto fail;
30757 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDragImage,
30758 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30759 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxBitmap,
30760 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30761 {
30762 PyThreadState* __tstate = wxPyBeginAllowThreads();
30763 (arg1)->SetBackingBitmap(arg2);
30764
30765 wxPyEndAllowThreads(__tstate);
30766 if (PyErr_Occurred()) SWIG_fail;
30767 }
30768 Py_INCREF(Py_None); resultobj = Py_None;
30769 return resultobj;
30770 fail:
30771 return NULL;
30772 }
30773
30774
30775 static PyObject *_wrap_DragImage_BeginDrag(PyObject *self, PyObject *args, PyObject *kwargs) {
30776 PyObject *resultobj;
30777 wxGenericDragImage *arg1 = (wxGenericDragImage *) 0 ;
30778 wxPoint *arg2 = 0 ;
30779 wxWindow *arg3 = (wxWindow *) 0 ;
30780 bool arg4 = (bool) False ;
30781 wxRect *arg5 = (wxRect *) NULL ;
30782 bool result;
30783 wxPoint temp2 ;
30784 PyObject * obj0 = 0 ;
30785 PyObject * obj1 = 0 ;
30786 PyObject * obj2 = 0 ;
30787 PyObject * obj3 = 0 ;
30788 PyObject * obj4 = 0 ;
30789 char *kwnames[] = {
30790 (char *) "self",(char *) "hotspot",(char *) "window",(char *) "fullScreen",(char *) "rect", NULL
30791 };
30792
30793 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO|OO:DragImage_BeginDrag",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
30794 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDragImage,
30795 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30796 {
30797 arg2 = &temp2;
30798 if ( ! wxPoint_helper(obj1, &arg2)) SWIG_fail;
30799 }
30800 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxWindow,
30801 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30802 if (obj3) {
30803 arg4 = (bool) SWIG_AsBool(obj3);
30804 if (PyErr_Occurred()) SWIG_fail;
30805 }
30806 if (obj4) {
30807 if ((SWIG_ConvertPtr(obj4,(void **)(&arg5),SWIGTYPE_p_wxRect,
30808 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30809 }
30810 {
30811 PyThreadState* __tstate = wxPyBeginAllowThreads();
30812 result = (bool)(arg1)->BeginDrag((wxPoint const &)*arg2,arg3,arg4,arg5);
30813
30814 wxPyEndAllowThreads(__tstate);
30815 if (PyErr_Occurred()) SWIG_fail;
30816 }
30817 {
30818 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
30819 }
30820 return resultobj;
30821 fail:
30822 return NULL;
30823 }
30824
30825
30826 static PyObject *_wrap_DragImage_BeginDragBounded(PyObject *self, PyObject *args, PyObject *kwargs) {
30827 PyObject *resultobj;
30828 wxGenericDragImage *arg1 = (wxGenericDragImage *) 0 ;
30829 wxPoint *arg2 = 0 ;
30830 wxWindow *arg3 = (wxWindow *) 0 ;
30831 wxWindow *arg4 = (wxWindow *) 0 ;
30832 bool result;
30833 wxPoint temp2 ;
30834 PyObject * obj0 = 0 ;
30835 PyObject * obj1 = 0 ;
30836 PyObject * obj2 = 0 ;
30837 PyObject * obj3 = 0 ;
30838 char *kwnames[] = {
30839 (char *) "self",(char *) "hotspot",(char *) "window",(char *) "boundingWindow", NULL
30840 };
30841
30842 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO:DragImage_BeginDragBounded",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
30843 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDragImage,
30844 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30845 {
30846 arg2 = &temp2;
30847 if ( ! wxPoint_helper(obj1, &arg2)) SWIG_fail;
30848 }
30849 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxWindow,
30850 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30851 if ((SWIG_ConvertPtr(obj3,(void **)(&arg4),SWIGTYPE_p_wxWindow,
30852 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30853 {
30854 PyThreadState* __tstate = wxPyBeginAllowThreads();
30855 result = (bool)(arg1)->BeginDrag((wxPoint const &)*arg2,arg3,arg4);
30856
30857 wxPyEndAllowThreads(__tstate);
30858 if (PyErr_Occurred()) SWIG_fail;
30859 }
30860 {
30861 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
30862 }
30863 return resultobj;
30864 fail:
30865 return NULL;
30866 }
30867
30868
30869 static PyObject *_wrap_DragImage_EndDrag(PyObject *self, PyObject *args, PyObject *kwargs) {
30870 PyObject *resultobj;
30871 wxGenericDragImage *arg1 = (wxGenericDragImage *) 0 ;
30872 bool result;
30873 PyObject * obj0 = 0 ;
30874 char *kwnames[] = {
30875 (char *) "self", NULL
30876 };
30877
30878 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:DragImage_EndDrag",kwnames,&obj0)) goto fail;
30879 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDragImage,
30880 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30881 {
30882 PyThreadState* __tstate = wxPyBeginAllowThreads();
30883 result = (bool)(arg1)->EndDrag();
30884
30885 wxPyEndAllowThreads(__tstate);
30886 if (PyErr_Occurred()) SWIG_fail;
30887 }
30888 {
30889 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
30890 }
30891 return resultobj;
30892 fail:
30893 return NULL;
30894 }
30895
30896
30897 static PyObject *_wrap_DragImage_Move(PyObject *self, PyObject *args, PyObject *kwargs) {
30898 PyObject *resultobj;
30899 wxGenericDragImage *arg1 = (wxGenericDragImage *) 0 ;
30900 wxPoint *arg2 = 0 ;
30901 bool result;
30902 wxPoint temp2 ;
30903 PyObject * obj0 = 0 ;
30904 PyObject * obj1 = 0 ;
30905 char *kwnames[] = {
30906 (char *) "self",(char *) "pt", NULL
30907 };
30908
30909 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:DragImage_Move",kwnames,&obj0,&obj1)) goto fail;
30910 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDragImage,
30911 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30912 {
30913 arg2 = &temp2;
30914 if ( ! wxPoint_helper(obj1, &arg2)) SWIG_fail;
30915 }
30916 {
30917 PyThreadState* __tstate = wxPyBeginAllowThreads();
30918 result = (bool)(arg1)->Move((wxPoint const &)*arg2);
30919
30920 wxPyEndAllowThreads(__tstate);
30921 if (PyErr_Occurred()) SWIG_fail;
30922 }
30923 {
30924 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
30925 }
30926 return resultobj;
30927 fail:
30928 return NULL;
30929 }
30930
30931
30932 static PyObject *_wrap_DragImage_Show(PyObject *self, PyObject *args, PyObject *kwargs) {
30933 PyObject *resultobj;
30934 wxGenericDragImage *arg1 = (wxGenericDragImage *) 0 ;
30935 bool result;
30936 PyObject * obj0 = 0 ;
30937 char *kwnames[] = {
30938 (char *) "self", NULL
30939 };
30940
30941 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:DragImage_Show",kwnames,&obj0)) goto fail;
30942 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDragImage,
30943 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30944 {
30945 PyThreadState* __tstate = wxPyBeginAllowThreads();
30946 result = (bool)(arg1)->Show();
30947
30948 wxPyEndAllowThreads(__tstate);
30949 if (PyErr_Occurred()) SWIG_fail;
30950 }
30951 {
30952 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
30953 }
30954 return resultobj;
30955 fail:
30956 return NULL;
30957 }
30958
30959
30960 static PyObject *_wrap_DragImage_Hide(PyObject *self, PyObject *args, PyObject *kwargs) {
30961 PyObject *resultobj;
30962 wxGenericDragImage *arg1 = (wxGenericDragImage *) 0 ;
30963 bool result;
30964 PyObject * obj0 = 0 ;
30965 char *kwnames[] = {
30966 (char *) "self", NULL
30967 };
30968
30969 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:DragImage_Hide",kwnames,&obj0)) goto fail;
30970 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDragImage,
30971 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
30972 {
30973 PyThreadState* __tstate = wxPyBeginAllowThreads();
30974 result = (bool)(arg1)->Hide();
30975
30976 wxPyEndAllowThreads(__tstate);
30977 if (PyErr_Occurred()) SWIG_fail;
30978 }
30979 {
30980 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
30981 }
30982 return resultobj;
30983 fail:
30984 return NULL;
30985 }
30986
30987
30988 static PyObject *_wrap_DragImage_GetImageRect(PyObject *self, PyObject *args, PyObject *kwargs) {
30989 PyObject *resultobj;
30990 wxGenericDragImage *arg1 = (wxGenericDragImage *) 0 ;
30991 wxPoint *arg2 = 0 ;
30992 wxRect result;
30993 wxPoint temp2 ;
30994 PyObject * obj0 = 0 ;
30995 PyObject * obj1 = 0 ;
30996 char *kwnames[] = {
30997 (char *) "self",(char *) "pos", NULL
30998 };
30999
31000 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:DragImage_GetImageRect",kwnames,&obj0,&obj1)) goto fail;
31001 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDragImage,
31002 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
31003 {
31004 arg2 = &temp2;
31005 if ( ! wxPoint_helper(obj1, &arg2)) SWIG_fail;
31006 }
31007 {
31008 PyThreadState* __tstate = wxPyBeginAllowThreads();
31009 result = ((wxGenericDragImage const *)arg1)->GetImageRect((wxPoint const &)*arg2);
31010
31011 wxPyEndAllowThreads(__tstate);
31012 if (PyErr_Occurred()) SWIG_fail;
31013 }
31014 {
31015 wxRect * resultptr;
31016 resultptr = new wxRect((wxRect &) result);
31017 resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxRect, 1);
31018 }
31019 return resultobj;
31020 fail:
31021 return NULL;
31022 }
31023
31024
31025 static PyObject *_wrap_DragImage_DoDrawImage(PyObject *self, PyObject *args, PyObject *kwargs) {
31026 PyObject *resultobj;
31027 wxGenericDragImage *arg1 = (wxGenericDragImage *) 0 ;
31028 wxDC *arg2 = 0 ;
31029 wxPoint *arg3 = 0 ;
31030 bool result;
31031 wxPoint temp3 ;
31032 PyObject * obj0 = 0 ;
31033 PyObject * obj1 = 0 ;
31034 PyObject * obj2 = 0 ;
31035 char *kwnames[] = {
31036 (char *) "self",(char *) "dc",(char *) "pos", NULL
31037 };
31038
31039 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:DragImage_DoDrawImage",kwnames,&obj0,&obj1,&obj2)) goto fail;
31040 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDragImage,
31041 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
31042 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxDC,
31043 SWIG_POINTER_EXCEPTION | 0)) == -1)
31044 SWIG_fail;
31045 if (arg2 == NULL) {
31046 PyErr_SetString(PyExc_TypeError,"null reference");
31047 SWIG_fail;
31048 }
31049 {
31050 arg3 = &temp3;
31051 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
31052 }
31053 {
31054 PyThreadState* __tstate = wxPyBeginAllowThreads();
31055 result = (bool)((wxGenericDragImage const *)arg1)->DoDrawImage(*arg2,(wxPoint const &)*arg3);
31056
31057 wxPyEndAllowThreads(__tstate);
31058 if (PyErr_Occurred()) SWIG_fail;
31059 }
31060 {
31061 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
31062 }
31063 return resultobj;
31064 fail:
31065 return NULL;
31066 }
31067
31068
31069 static PyObject *_wrap_DragImage_UpdateBackingFromWindow(PyObject *self, PyObject *args, PyObject *kwargs) {
31070 PyObject *resultobj;
31071 wxGenericDragImage *arg1 = (wxGenericDragImage *) 0 ;
31072 wxDC *arg2 = 0 ;
31073 wxMemoryDC *arg3 = 0 ;
31074 wxRect *arg4 = 0 ;
31075 wxRect *arg5 = 0 ;
31076 bool result;
31077 wxRect temp4 ;
31078 wxRect temp5 ;
31079 PyObject * obj0 = 0 ;
31080 PyObject * obj1 = 0 ;
31081 PyObject * obj2 = 0 ;
31082 PyObject * obj3 = 0 ;
31083 PyObject * obj4 = 0 ;
31084 char *kwnames[] = {
31085 (char *) "self",(char *) "windowDC",(char *) "destDC",(char *) "sourceRect",(char *) "destRect", NULL
31086 };
31087
31088 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO:DragImage_UpdateBackingFromWindow",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
31089 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDragImage,
31090 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
31091 if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxDC,
31092 SWIG_POINTER_EXCEPTION | 0)) == -1)
31093 SWIG_fail;
31094 if (arg2 == NULL) {
31095 PyErr_SetString(PyExc_TypeError,"null reference");
31096 SWIG_fail;
31097 }
31098 if ((SWIG_ConvertPtr(obj2,(void **)(&arg3),SWIGTYPE_p_wxMemoryDC,
31099 SWIG_POINTER_EXCEPTION | 0)) == -1)
31100 SWIG_fail;
31101 if (arg3 == NULL) {
31102 PyErr_SetString(PyExc_TypeError,"null reference");
31103 SWIG_fail;
31104 }
31105 {
31106 arg4 = &temp4;
31107 if ( ! wxRect_helper(obj3, &arg4)) SWIG_fail;
31108 }
31109 {
31110 arg5 = &temp5;
31111 if ( ! wxRect_helper(obj4, &arg5)) SWIG_fail;
31112 }
31113 {
31114 PyThreadState* __tstate = wxPyBeginAllowThreads();
31115 result = (bool)((wxGenericDragImage const *)arg1)->UpdateBackingFromWindow(*arg2,*arg3,(wxRect const &)*arg4,(wxRect const &)*arg5);
31116
31117 wxPyEndAllowThreads(__tstate);
31118 if (PyErr_Occurred()) SWIG_fail;
31119 }
31120 {
31121 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
31122 }
31123 return resultobj;
31124 fail:
31125 return NULL;
31126 }
31127
31128
31129 static PyObject *_wrap_DragImage_RedrawImage(PyObject *self, PyObject *args, PyObject *kwargs) {
31130 PyObject *resultobj;
31131 wxGenericDragImage *arg1 = (wxGenericDragImage *) 0 ;
31132 wxPoint *arg2 = 0 ;
31133 wxPoint *arg3 = 0 ;
31134 bool arg4 ;
31135 bool arg5 ;
31136 bool result;
31137 wxPoint temp2 ;
31138 wxPoint temp3 ;
31139 PyObject * obj0 = 0 ;
31140 PyObject * obj1 = 0 ;
31141 PyObject * obj2 = 0 ;
31142 PyObject * obj3 = 0 ;
31143 PyObject * obj4 = 0 ;
31144 char *kwnames[] = {
31145 (char *) "self",(char *) "oldPos",(char *) "newPos",(char *) "eraseOld",(char *) "drawNew", NULL
31146 };
31147
31148 if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO:DragImage_RedrawImage",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
31149 if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGenericDragImage,
31150 SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
31151 {
31152 arg2 = &temp2;
31153 if ( ! wxPoint_helper(obj1, &arg2)) SWIG_fail;
31154 }
31155 {
31156 arg3 = &temp3;
31157 if ( ! wxPoint_helper(obj2, &arg3)) SWIG_fail;
31158 }
31159 arg4 = (bool) SWIG_AsBool(obj3);
31160 if (PyErr_Occurred()) SWIG_fail;
31161 arg5 = (bool) SWIG_AsBool(obj4);
31162 if (PyErr_Occurred()) SWIG_fail;
31163 {
31164 PyThreadState* __tstate = wxPyBeginAllowThreads();
31165 result = (bool)(arg1)->RedrawImage((wxPoint const &)*arg2,(wxPoint const &)*arg3,arg4,arg5);
31166
31167 wxPyEndAllowThreads(__tstate);
31168 if (PyErr_Occurred()) SWIG_fail;
31169 }
31170 {
31171 resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
31172 }
31173 return resultobj;
31174 fail:
31175 return NULL;
31176 }
31177
31178
31179 static PyObject * DragImage_swigregister(PyObject *self, PyObject *args) {
31180 PyObject *obj;
31181 if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
31182 SWIG_TypeClientData(SWIGTYPE_p_wxGenericDragImage, obj);
31183 Py_INCREF(obj);
31184 return Py_BuildValue((char *)"");
31185 }
31186 static PyMethodDef SwigMethods[] = {
31187 { (char *)"new_Button", (PyCFunction) _wrap_new_Button, METH_VARARGS | METH_KEYWORDS },
31188 { (char *)"new_PreButton", (PyCFunction) _wrap_new_PreButton, METH_VARARGS | METH_KEYWORDS },
31189 { (char *)"Button_Create", (PyCFunction) _wrap_Button_Create, METH_VARARGS | METH_KEYWORDS },
31190 { (char *)"Button_SetDefault", (PyCFunction) _wrap_Button_SetDefault, METH_VARARGS | METH_KEYWORDS },
31191 { (char *)"Button_GetDefaultSize", (PyCFunction) _wrap_Button_GetDefaultSize, METH_VARARGS | METH_KEYWORDS },
31192 { (char *)"Button_GetClassDefaultAttributes", (PyCFunction) _wrap_Button_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31193 { (char *)"Button_swigregister", Button_swigregister, METH_VARARGS },
31194 { (char *)"new_BitmapButton", (PyCFunction) _wrap_new_BitmapButton, METH_VARARGS | METH_KEYWORDS },
31195 { (char *)"new_PreBitmapButton", (PyCFunction) _wrap_new_PreBitmapButton, METH_VARARGS | METH_KEYWORDS },
31196 { (char *)"BitmapButton_Create", (PyCFunction) _wrap_BitmapButton_Create, METH_VARARGS | METH_KEYWORDS },
31197 { (char *)"BitmapButton_GetBitmapLabel", (PyCFunction) _wrap_BitmapButton_GetBitmapLabel, METH_VARARGS | METH_KEYWORDS },
31198 { (char *)"BitmapButton_GetBitmapDisabled", (PyCFunction) _wrap_BitmapButton_GetBitmapDisabled, METH_VARARGS | METH_KEYWORDS },
31199 { (char *)"BitmapButton_GetBitmapFocus", (PyCFunction) _wrap_BitmapButton_GetBitmapFocus, METH_VARARGS | METH_KEYWORDS },
31200 { (char *)"BitmapButton_GetBitmapSelected", (PyCFunction) _wrap_BitmapButton_GetBitmapSelected, METH_VARARGS | METH_KEYWORDS },
31201 { (char *)"BitmapButton_SetBitmapDisabled", (PyCFunction) _wrap_BitmapButton_SetBitmapDisabled, METH_VARARGS | METH_KEYWORDS },
31202 { (char *)"BitmapButton_SetBitmapFocus", (PyCFunction) _wrap_BitmapButton_SetBitmapFocus, METH_VARARGS | METH_KEYWORDS },
31203 { (char *)"BitmapButton_SetBitmapSelected", (PyCFunction) _wrap_BitmapButton_SetBitmapSelected, METH_VARARGS | METH_KEYWORDS },
31204 { (char *)"BitmapButton_SetBitmapLabel", (PyCFunction) _wrap_BitmapButton_SetBitmapLabel, METH_VARARGS | METH_KEYWORDS },
31205 { (char *)"BitmapButton_SetMargins", (PyCFunction) _wrap_BitmapButton_SetMargins, METH_VARARGS | METH_KEYWORDS },
31206 { (char *)"BitmapButton_GetMarginX", (PyCFunction) _wrap_BitmapButton_GetMarginX, METH_VARARGS | METH_KEYWORDS },
31207 { (char *)"BitmapButton_GetMarginY", (PyCFunction) _wrap_BitmapButton_GetMarginY, METH_VARARGS | METH_KEYWORDS },
31208 { (char *)"BitmapButton_swigregister", BitmapButton_swigregister, METH_VARARGS },
31209 { (char *)"new_CheckBox", (PyCFunction) _wrap_new_CheckBox, METH_VARARGS | METH_KEYWORDS },
31210 { (char *)"new_PreCheckBox", (PyCFunction) _wrap_new_PreCheckBox, METH_VARARGS | METH_KEYWORDS },
31211 { (char *)"CheckBox_Create", (PyCFunction) _wrap_CheckBox_Create, METH_VARARGS | METH_KEYWORDS },
31212 { (char *)"CheckBox_GetValue", (PyCFunction) _wrap_CheckBox_GetValue, METH_VARARGS | METH_KEYWORDS },
31213 { (char *)"CheckBox_IsChecked", (PyCFunction) _wrap_CheckBox_IsChecked, METH_VARARGS | METH_KEYWORDS },
31214 { (char *)"CheckBox_SetValue", (PyCFunction) _wrap_CheckBox_SetValue, METH_VARARGS | METH_KEYWORDS },
31215 { (char *)"CheckBox_Get3StateValue", (PyCFunction) _wrap_CheckBox_Get3StateValue, METH_VARARGS | METH_KEYWORDS },
31216 { (char *)"CheckBox_Set3StateValue", (PyCFunction) _wrap_CheckBox_Set3StateValue, METH_VARARGS | METH_KEYWORDS },
31217 { (char *)"CheckBox_Is3State", (PyCFunction) _wrap_CheckBox_Is3State, METH_VARARGS | METH_KEYWORDS },
31218 { (char *)"CheckBox_Is3rdStateAllowedForUser", (PyCFunction) _wrap_CheckBox_Is3rdStateAllowedForUser, METH_VARARGS | METH_KEYWORDS },
31219 { (char *)"CheckBox_GetClassDefaultAttributes", (PyCFunction) _wrap_CheckBox_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31220 { (char *)"CheckBox_swigregister", CheckBox_swigregister, METH_VARARGS },
31221 { (char *)"new_Choice", (PyCFunction) _wrap_new_Choice, METH_VARARGS | METH_KEYWORDS },
31222 { (char *)"new_PreChoice", (PyCFunction) _wrap_new_PreChoice, METH_VARARGS | METH_KEYWORDS },
31223 { (char *)"Choice_Create", (PyCFunction) _wrap_Choice_Create, METH_VARARGS | METH_KEYWORDS },
31224 { (char *)"Choice_SetSelection", (PyCFunction) _wrap_Choice_SetSelection, METH_VARARGS | METH_KEYWORDS },
31225 { (char *)"Choice_SetStringSelection", (PyCFunction) _wrap_Choice_SetStringSelection, METH_VARARGS | METH_KEYWORDS },
31226 { (char *)"Choice_SetString", (PyCFunction) _wrap_Choice_SetString, METH_VARARGS | METH_KEYWORDS },
31227 { (char *)"Choice_GetClassDefaultAttributes", (PyCFunction) _wrap_Choice_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31228 { (char *)"Choice_swigregister", Choice_swigregister, METH_VARARGS },
31229 { (char *)"new_ComboBox", (PyCFunction) _wrap_new_ComboBox, METH_VARARGS | METH_KEYWORDS },
31230 { (char *)"new_PreComboBox", (PyCFunction) _wrap_new_PreComboBox, METH_VARARGS | METH_KEYWORDS },
31231 { (char *)"ComboBox_Create", (PyCFunction) _wrap_ComboBox_Create, METH_VARARGS | METH_KEYWORDS },
31232 { (char *)"ComboBox_GetValue", (PyCFunction) _wrap_ComboBox_GetValue, METH_VARARGS | METH_KEYWORDS },
31233 { (char *)"ComboBox_SetValue", (PyCFunction) _wrap_ComboBox_SetValue, METH_VARARGS | METH_KEYWORDS },
31234 { (char *)"ComboBox_Copy", (PyCFunction) _wrap_ComboBox_Copy, METH_VARARGS | METH_KEYWORDS },
31235 { (char *)"ComboBox_Cut", (PyCFunction) _wrap_ComboBox_Cut, METH_VARARGS | METH_KEYWORDS },
31236 { (char *)"ComboBox_Paste", (PyCFunction) _wrap_ComboBox_Paste, METH_VARARGS | METH_KEYWORDS },
31237 { (char *)"ComboBox_SetInsertionPoint", (PyCFunction) _wrap_ComboBox_SetInsertionPoint, METH_VARARGS | METH_KEYWORDS },
31238 { (char *)"ComboBox_GetInsertionPoint", (PyCFunction) _wrap_ComboBox_GetInsertionPoint, METH_VARARGS | METH_KEYWORDS },
31239 { (char *)"ComboBox_GetLastPosition", (PyCFunction) _wrap_ComboBox_GetLastPosition, METH_VARARGS | METH_KEYWORDS },
31240 { (char *)"ComboBox_Replace", (PyCFunction) _wrap_ComboBox_Replace, METH_VARARGS | METH_KEYWORDS },
31241 { (char *)"ComboBox_SetSelection", (PyCFunction) _wrap_ComboBox_SetSelection, METH_VARARGS | METH_KEYWORDS },
31242 { (char *)"ComboBox_SetMark", (PyCFunction) _wrap_ComboBox_SetMark, METH_VARARGS | METH_KEYWORDS },
31243 { (char *)"ComboBox_SetStringSelection", (PyCFunction) _wrap_ComboBox_SetStringSelection, METH_VARARGS | METH_KEYWORDS },
31244 { (char *)"ComboBox_SetString", (PyCFunction) _wrap_ComboBox_SetString, METH_VARARGS | METH_KEYWORDS },
31245 { (char *)"ComboBox_SetEditable", (PyCFunction) _wrap_ComboBox_SetEditable, METH_VARARGS | METH_KEYWORDS },
31246 { (char *)"ComboBox_SetInsertionPointEnd", (PyCFunction) _wrap_ComboBox_SetInsertionPointEnd, METH_VARARGS | METH_KEYWORDS },
31247 { (char *)"ComboBox_Remove", (PyCFunction) _wrap_ComboBox_Remove, METH_VARARGS | METH_KEYWORDS },
31248 { (char *)"ComboBox_GetClassDefaultAttributes", (PyCFunction) _wrap_ComboBox_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31249 { (char *)"ComboBox_swigregister", ComboBox_swigregister, METH_VARARGS },
31250 { (char *)"new_Gauge", (PyCFunction) _wrap_new_Gauge, METH_VARARGS | METH_KEYWORDS },
31251 { (char *)"new_PreGauge", (PyCFunction) _wrap_new_PreGauge, METH_VARARGS | METH_KEYWORDS },
31252 { (char *)"Gauge_Create", (PyCFunction) _wrap_Gauge_Create, METH_VARARGS | METH_KEYWORDS },
31253 { (char *)"Gauge_SetRange", (PyCFunction) _wrap_Gauge_SetRange, METH_VARARGS | METH_KEYWORDS },
31254 { (char *)"Gauge_GetRange", (PyCFunction) _wrap_Gauge_GetRange, METH_VARARGS | METH_KEYWORDS },
31255 { (char *)"Gauge_SetValue", (PyCFunction) _wrap_Gauge_SetValue, METH_VARARGS | METH_KEYWORDS },
31256 { (char *)"Gauge_GetValue", (PyCFunction) _wrap_Gauge_GetValue, METH_VARARGS | METH_KEYWORDS },
31257 { (char *)"Gauge_IsVertical", (PyCFunction) _wrap_Gauge_IsVertical, METH_VARARGS | METH_KEYWORDS },
31258 { (char *)"Gauge_SetShadowWidth", (PyCFunction) _wrap_Gauge_SetShadowWidth, METH_VARARGS | METH_KEYWORDS },
31259 { (char *)"Gauge_GetShadowWidth", (PyCFunction) _wrap_Gauge_GetShadowWidth, METH_VARARGS | METH_KEYWORDS },
31260 { (char *)"Gauge_SetBezelFace", (PyCFunction) _wrap_Gauge_SetBezelFace, METH_VARARGS | METH_KEYWORDS },
31261 { (char *)"Gauge_GetBezelFace", (PyCFunction) _wrap_Gauge_GetBezelFace, METH_VARARGS | METH_KEYWORDS },
31262 { (char *)"Gauge_GetClassDefaultAttributes", (PyCFunction) _wrap_Gauge_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31263 { (char *)"Gauge_swigregister", Gauge_swigregister, METH_VARARGS },
31264 { (char *)"new_StaticBox", (PyCFunction) _wrap_new_StaticBox, METH_VARARGS | METH_KEYWORDS },
31265 { (char *)"new_PreStaticBox", (PyCFunction) _wrap_new_PreStaticBox, METH_VARARGS | METH_KEYWORDS },
31266 { (char *)"StaticBox_Create", (PyCFunction) _wrap_StaticBox_Create, METH_VARARGS | METH_KEYWORDS },
31267 { (char *)"StaticBox_GetClassDefaultAttributes", (PyCFunction) _wrap_StaticBox_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31268 { (char *)"StaticBox_swigregister", StaticBox_swigregister, METH_VARARGS },
31269 { (char *)"new_StaticLine", (PyCFunction) _wrap_new_StaticLine, METH_VARARGS | METH_KEYWORDS },
31270 { (char *)"new_PreStaticLine", (PyCFunction) _wrap_new_PreStaticLine, METH_VARARGS | METH_KEYWORDS },
31271 { (char *)"StaticLine_Create", (PyCFunction) _wrap_StaticLine_Create, METH_VARARGS | METH_KEYWORDS },
31272 { (char *)"StaticLine_IsVertical", (PyCFunction) _wrap_StaticLine_IsVertical, METH_VARARGS | METH_KEYWORDS },
31273 { (char *)"StaticLine_GetDefaultSize", (PyCFunction) _wrap_StaticLine_GetDefaultSize, METH_VARARGS | METH_KEYWORDS },
31274 { (char *)"StaticLine_GetClassDefaultAttributes", (PyCFunction) _wrap_StaticLine_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31275 { (char *)"StaticLine_swigregister", StaticLine_swigregister, METH_VARARGS },
31276 { (char *)"new_StaticText", (PyCFunction) _wrap_new_StaticText, METH_VARARGS | METH_KEYWORDS },
31277 { (char *)"new_PreStaticText", (PyCFunction) _wrap_new_PreStaticText, METH_VARARGS | METH_KEYWORDS },
31278 { (char *)"StaticText_Create", (PyCFunction) _wrap_StaticText_Create, METH_VARARGS | METH_KEYWORDS },
31279 { (char *)"StaticText_GetClassDefaultAttributes", (PyCFunction) _wrap_StaticText_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31280 { (char *)"StaticText_swigregister", StaticText_swigregister, METH_VARARGS },
31281 { (char *)"new_StaticBitmap", (PyCFunction) _wrap_new_StaticBitmap, METH_VARARGS | METH_KEYWORDS },
31282 { (char *)"new_PreStaticBitmap", (PyCFunction) _wrap_new_PreStaticBitmap, METH_VARARGS | METH_KEYWORDS },
31283 { (char *)"StaticBitmap_Create", (PyCFunction) _wrap_StaticBitmap_Create, METH_VARARGS | METH_KEYWORDS },
31284 { (char *)"StaticBitmap_GetBitmap", (PyCFunction) _wrap_StaticBitmap_GetBitmap, METH_VARARGS | METH_KEYWORDS },
31285 { (char *)"StaticBitmap_SetBitmap", (PyCFunction) _wrap_StaticBitmap_SetBitmap, METH_VARARGS | METH_KEYWORDS },
31286 { (char *)"StaticBitmap_SetIcon", (PyCFunction) _wrap_StaticBitmap_SetIcon, METH_VARARGS | METH_KEYWORDS },
31287 { (char *)"StaticBitmap_GetClassDefaultAttributes", (PyCFunction) _wrap_StaticBitmap_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31288 { (char *)"StaticBitmap_swigregister", StaticBitmap_swigregister, METH_VARARGS },
31289 { (char *)"new_ListBox", (PyCFunction) _wrap_new_ListBox, METH_VARARGS | METH_KEYWORDS },
31290 { (char *)"new_PreListBox", (PyCFunction) _wrap_new_PreListBox, METH_VARARGS | METH_KEYWORDS },
31291 { (char *)"ListBox_Create", (PyCFunction) _wrap_ListBox_Create, METH_VARARGS | METH_KEYWORDS },
31292 { (char *)"ListBox_Insert", (PyCFunction) _wrap_ListBox_Insert, METH_VARARGS | METH_KEYWORDS },
31293 { (char *)"ListBox_InsertItems", (PyCFunction) _wrap_ListBox_InsertItems, METH_VARARGS | METH_KEYWORDS },
31294 { (char *)"ListBox_Set", (PyCFunction) _wrap_ListBox_Set, METH_VARARGS | METH_KEYWORDS },
31295 { (char *)"ListBox_IsSelected", (PyCFunction) _wrap_ListBox_IsSelected, METH_VARARGS | METH_KEYWORDS },
31296 { (char *)"ListBox_SetSelection", (PyCFunction) _wrap_ListBox_SetSelection, METH_VARARGS | METH_KEYWORDS },
31297 { (char *)"ListBox_Select", (PyCFunction) _wrap_ListBox_Select, METH_VARARGS | METH_KEYWORDS },
31298 { (char *)"ListBox_Deselect", (PyCFunction) _wrap_ListBox_Deselect, METH_VARARGS | METH_KEYWORDS },
31299 { (char *)"ListBox_DeselectAll", (PyCFunction) _wrap_ListBox_DeselectAll, METH_VARARGS | METH_KEYWORDS },
31300 { (char *)"ListBox_SetStringSelection", (PyCFunction) _wrap_ListBox_SetStringSelection, METH_VARARGS | METH_KEYWORDS },
31301 { (char *)"ListBox_GetSelections", (PyCFunction) _wrap_ListBox_GetSelections, METH_VARARGS | METH_KEYWORDS },
31302 { (char *)"ListBox_SetFirstItem", (PyCFunction) _wrap_ListBox_SetFirstItem, METH_VARARGS | METH_KEYWORDS },
31303 { (char *)"ListBox_SetFirstItemStr", (PyCFunction) _wrap_ListBox_SetFirstItemStr, METH_VARARGS | METH_KEYWORDS },
31304 { (char *)"ListBox_EnsureVisible", (PyCFunction) _wrap_ListBox_EnsureVisible, METH_VARARGS | METH_KEYWORDS },
31305 { (char *)"ListBox_AppendAndEnsureVisible", (PyCFunction) _wrap_ListBox_AppendAndEnsureVisible, METH_VARARGS | METH_KEYWORDS },
31306 { (char *)"ListBox_IsSorted", (PyCFunction) _wrap_ListBox_IsSorted, METH_VARARGS | METH_KEYWORDS },
31307 { (char *)"ListBox_SetItemForegroundColour", (PyCFunction) _wrap_ListBox_SetItemForegroundColour, METH_VARARGS | METH_KEYWORDS },
31308 { (char *)"ListBox_SetItemBackgroundColour", (PyCFunction) _wrap_ListBox_SetItemBackgroundColour, METH_VARARGS | METH_KEYWORDS },
31309 { (char *)"ListBox_SetItemFont", (PyCFunction) _wrap_ListBox_SetItemFont, METH_VARARGS | METH_KEYWORDS },
31310 { (char *)"ListBox_GetClassDefaultAttributes", (PyCFunction) _wrap_ListBox_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31311 { (char *)"ListBox_swigregister", ListBox_swigregister, METH_VARARGS },
31312 { (char *)"new_CheckListBox", (PyCFunction) _wrap_new_CheckListBox, METH_VARARGS | METH_KEYWORDS },
31313 { (char *)"new_PreCheckListBox", (PyCFunction) _wrap_new_PreCheckListBox, METH_VARARGS | METH_KEYWORDS },
31314 { (char *)"CheckListBox_Create", (PyCFunction) _wrap_CheckListBox_Create, METH_VARARGS | METH_KEYWORDS },
31315 { (char *)"CheckListBox_IsChecked", (PyCFunction) _wrap_CheckListBox_IsChecked, METH_VARARGS | METH_KEYWORDS },
31316 { (char *)"CheckListBox_Check", (PyCFunction) _wrap_CheckListBox_Check, METH_VARARGS | METH_KEYWORDS },
31317 { (char *)"CheckListBox_GetItemHeight", (PyCFunction) _wrap_CheckListBox_GetItemHeight, METH_VARARGS | METH_KEYWORDS },
31318 { (char *)"CheckListBox_HitTest", (PyCFunction) _wrap_CheckListBox_HitTest, METH_VARARGS | METH_KEYWORDS },
31319 { (char *)"CheckListBox_HitTestXY", (PyCFunction) _wrap_CheckListBox_HitTestXY, METH_VARARGS | METH_KEYWORDS },
31320 { (char *)"CheckListBox_swigregister", CheckListBox_swigregister, METH_VARARGS },
31321 { (char *)"new_TextAttr", (PyCFunction) _wrap_new_TextAttr, METH_VARARGS | METH_KEYWORDS },
31322 { (char *)"delete_TextAttr", (PyCFunction) _wrap_delete_TextAttr, METH_VARARGS | METH_KEYWORDS },
31323 { (char *)"TextAttr_Init", (PyCFunction) _wrap_TextAttr_Init, METH_VARARGS | METH_KEYWORDS },
31324 { (char *)"TextAttr_SetTextColour", (PyCFunction) _wrap_TextAttr_SetTextColour, METH_VARARGS | METH_KEYWORDS },
31325 { (char *)"TextAttr_SetBackgroundColour", (PyCFunction) _wrap_TextAttr_SetBackgroundColour, METH_VARARGS | METH_KEYWORDS },
31326 { (char *)"TextAttr_SetFont", (PyCFunction) _wrap_TextAttr_SetFont, METH_VARARGS | METH_KEYWORDS },
31327 { (char *)"TextAttr_SetAlignment", (PyCFunction) _wrap_TextAttr_SetAlignment, METH_VARARGS | METH_KEYWORDS },
31328 { (char *)"TextAttr_SetTabs", (PyCFunction) _wrap_TextAttr_SetTabs, METH_VARARGS | METH_KEYWORDS },
31329 { (char *)"TextAttr_SetLeftIndent", (PyCFunction) _wrap_TextAttr_SetLeftIndent, METH_VARARGS | METH_KEYWORDS },
31330 { (char *)"TextAttr_SetRightIndent", (PyCFunction) _wrap_TextAttr_SetRightIndent, METH_VARARGS | METH_KEYWORDS },
31331 { (char *)"TextAttr_SetFlags", (PyCFunction) _wrap_TextAttr_SetFlags, METH_VARARGS | METH_KEYWORDS },
31332 { (char *)"TextAttr_HasTextColour", (PyCFunction) _wrap_TextAttr_HasTextColour, METH_VARARGS | METH_KEYWORDS },
31333 { (char *)"TextAttr_HasBackgroundColour", (PyCFunction) _wrap_TextAttr_HasBackgroundColour, METH_VARARGS | METH_KEYWORDS },
31334 { (char *)"TextAttr_HasFont", (PyCFunction) _wrap_TextAttr_HasFont, METH_VARARGS | METH_KEYWORDS },
31335 { (char *)"TextAttr_HasAlignment", (PyCFunction) _wrap_TextAttr_HasAlignment, METH_VARARGS | METH_KEYWORDS },
31336 { (char *)"TextAttr_HasTabs", (PyCFunction) _wrap_TextAttr_HasTabs, METH_VARARGS | METH_KEYWORDS },
31337 { (char *)"TextAttr_HasLeftIndent", (PyCFunction) _wrap_TextAttr_HasLeftIndent, METH_VARARGS | METH_KEYWORDS },
31338 { (char *)"TextAttr_HasRightIndent", (PyCFunction) _wrap_TextAttr_HasRightIndent, METH_VARARGS | METH_KEYWORDS },
31339 { (char *)"TextAttr_HasFlag", (PyCFunction) _wrap_TextAttr_HasFlag, METH_VARARGS | METH_KEYWORDS },
31340 { (char *)"TextAttr_GetTextColour", (PyCFunction) _wrap_TextAttr_GetTextColour, METH_VARARGS | METH_KEYWORDS },
31341 { (char *)"TextAttr_GetBackgroundColour", (PyCFunction) _wrap_TextAttr_GetBackgroundColour, METH_VARARGS | METH_KEYWORDS },
31342 { (char *)"TextAttr_GetFont", (PyCFunction) _wrap_TextAttr_GetFont, METH_VARARGS | METH_KEYWORDS },
31343 { (char *)"TextAttr_GetAlignment", (PyCFunction) _wrap_TextAttr_GetAlignment, METH_VARARGS | METH_KEYWORDS },
31344 { (char *)"TextAttr_GetTabs", (PyCFunction) _wrap_TextAttr_GetTabs, METH_VARARGS | METH_KEYWORDS },
31345 { (char *)"TextAttr_GetLeftIndent", (PyCFunction) _wrap_TextAttr_GetLeftIndent, METH_VARARGS | METH_KEYWORDS },
31346 { (char *)"TextAttr_GetLeftSubIndent", (PyCFunction) _wrap_TextAttr_GetLeftSubIndent, METH_VARARGS | METH_KEYWORDS },
31347 { (char *)"TextAttr_GetRightIndent", (PyCFunction) _wrap_TextAttr_GetRightIndent, METH_VARARGS | METH_KEYWORDS },
31348 { (char *)"TextAttr_GetFlags", (PyCFunction) _wrap_TextAttr_GetFlags, METH_VARARGS | METH_KEYWORDS },
31349 { (char *)"TextAttr_IsDefault", (PyCFunction) _wrap_TextAttr_IsDefault, METH_VARARGS | METH_KEYWORDS },
31350 { (char *)"TextAttr_Combine", (PyCFunction) _wrap_TextAttr_Combine, METH_VARARGS | METH_KEYWORDS },
31351 { (char *)"TextAttr_swigregister", TextAttr_swigregister, METH_VARARGS },
31352 { (char *)"new_TextCtrl", (PyCFunction) _wrap_new_TextCtrl, METH_VARARGS | METH_KEYWORDS },
31353 { (char *)"new_PreTextCtrl", (PyCFunction) _wrap_new_PreTextCtrl, METH_VARARGS | METH_KEYWORDS },
31354 { (char *)"TextCtrl_Create", (PyCFunction) _wrap_TextCtrl_Create, METH_VARARGS | METH_KEYWORDS },
31355 { (char *)"TextCtrl_GetValue", (PyCFunction) _wrap_TextCtrl_GetValue, METH_VARARGS | METH_KEYWORDS },
31356 { (char *)"TextCtrl_SetValue", (PyCFunction) _wrap_TextCtrl_SetValue, METH_VARARGS | METH_KEYWORDS },
31357 { (char *)"TextCtrl_GetRange", (PyCFunction) _wrap_TextCtrl_GetRange, METH_VARARGS | METH_KEYWORDS },
31358 { (char *)"TextCtrl_GetLineLength", (PyCFunction) _wrap_TextCtrl_GetLineLength, METH_VARARGS | METH_KEYWORDS },
31359 { (char *)"TextCtrl_GetLineText", (PyCFunction) _wrap_TextCtrl_GetLineText, METH_VARARGS | METH_KEYWORDS },
31360 { (char *)"TextCtrl_GetNumberOfLines", (PyCFunction) _wrap_TextCtrl_GetNumberOfLines, METH_VARARGS | METH_KEYWORDS },
31361 { (char *)"TextCtrl_IsModified", (PyCFunction) _wrap_TextCtrl_IsModified, METH_VARARGS | METH_KEYWORDS },
31362 { (char *)"TextCtrl_IsEditable", (PyCFunction) _wrap_TextCtrl_IsEditable, METH_VARARGS | METH_KEYWORDS },
31363 { (char *)"TextCtrl_IsSingleLine", (PyCFunction) _wrap_TextCtrl_IsSingleLine, METH_VARARGS | METH_KEYWORDS },
31364 { (char *)"TextCtrl_IsMultiLine", (PyCFunction) _wrap_TextCtrl_IsMultiLine, METH_VARARGS | METH_KEYWORDS },
31365 { (char *)"TextCtrl_GetSelection", (PyCFunction) _wrap_TextCtrl_GetSelection, METH_VARARGS | METH_KEYWORDS },
31366 { (char *)"TextCtrl_GetStringSelection", (PyCFunction) _wrap_TextCtrl_GetStringSelection, METH_VARARGS | METH_KEYWORDS },
31367 { (char *)"TextCtrl_Clear", (PyCFunction) _wrap_TextCtrl_Clear, METH_VARARGS | METH_KEYWORDS },
31368 { (char *)"TextCtrl_Replace", (PyCFunction) _wrap_TextCtrl_Replace, METH_VARARGS | METH_KEYWORDS },
31369 { (char *)"TextCtrl_Remove", (PyCFunction) _wrap_TextCtrl_Remove, METH_VARARGS | METH_KEYWORDS },
31370 { (char *)"TextCtrl_LoadFile", (PyCFunction) _wrap_TextCtrl_LoadFile, METH_VARARGS | METH_KEYWORDS },
31371 { (char *)"TextCtrl_SaveFile", (PyCFunction) _wrap_TextCtrl_SaveFile, METH_VARARGS | METH_KEYWORDS },
31372 { (char *)"TextCtrl_MarkDirty", (PyCFunction) _wrap_TextCtrl_MarkDirty, METH_VARARGS | METH_KEYWORDS },
31373 { (char *)"TextCtrl_DiscardEdits", (PyCFunction) _wrap_TextCtrl_DiscardEdits, METH_VARARGS | METH_KEYWORDS },
31374 { (char *)"TextCtrl_SetMaxLength", (PyCFunction) _wrap_TextCtrl_SetMaxLength, METH_VARARGS | METH_KEYWORDS },
31375 { (char *)"TextCtrl_WriteText", (PyCFunction) _wrap_TextCtrl_WriteText, METH_VARARGS | METH_KEYWORDS },
31376 { (char *)"TextCtrl_AppendText", (PyCFunction) _wrap_TextCtrl_AppendText, METH_VARARGS | METH_KEYWORDS },
31377 { (char *)"TextCtrl_EmulateKeyPress", (PyCFunction) _wrap_TextCtrl_EmulateKeyPress, METH_VARARGS | METH_KEYWORDS },
31378 { (char *)"TextCtrl_SetStyle", (PyCFunction) _wrap_TextCtrl_SetStyle, METH_VARARGS | METH_KEYWORDS },
31379 { (char *)"TextCtrl_GetStyle", (PyCFunction) _wrap_TextCtrl_GetStyle, METH_VARARGS | METH_KEYWORDS },
31380 { (char *)"TextCtrl_SetDefaultStyle", (PyCFunction) _wrap_TextCtrl_SetDefaultStyle, METH_VARARGS | METH_KEYWORDS },
31381 { (char *)"TextCtrl_GetDefaultStyle", (PyCFunction) _wrap_TextCtrl_GetDefaultStyle, METH_VARARGS | METH_KEYWORDS },
31382 { (char *)"TextCtrl_XYToPosition", (PyCFunction) _wrap_TextCtrl_XYToPosition, METH_VARARGS | METH_KEYWORDS },
31383 { (char *)"TextCtrl_PositionToXY", (PyCFunction) _wrap_TextCtrl_PositionToXY, METH_VARARGS | METH_KEYWORDS },
31384 { (char *)"TextCtrl_ShowPosition", (PyCFunction) _wrap_TextCtrl_ShowPosition, METH_VARARGS | METH_KEYWORDS },
31385 { (char *)"TextCtrl_HitTest", (PyCFunction) _wrap_TextCtrl_HitTest, METH_VARARGS | METH_KEYWORDS },
31386 { (char *)"TextCtrl_Copy", (PyCFunction) _wrap_TextCtrl_Copy, METH_VARARGS | METH_KEYWORDS },
31387 { (char *)"TextCtrl_Cut", (PyCFunction) _wrap_TextCtrl_Cut, METH_VARARGS | METH_KEYWORDS },
31388 { (char *)"TextCtrl_Paste", (PyCFunction) _wrap_TextCtrl_Paste, METH_VARARGS | METH_KEYWORDS },
31389 { (char *)"TextCtrl_CanCopy", (PyCFunction) _wrap_TextCtrl_CanCopy, METH_VARARGS | METH_KEYWORDS },
31390 { (char *)"TextCtrl_CanCut", (PyCFunction) _wrap_TextCtrl_CanCut, METH_VARARGS | METH_KEYWORDS },
31391 { (char *)"TextCtrl_CanPaste", (PyCFunction) _wrap_TextCtrl_CanPaste, METH_VARARGS | METH_KEYWORDS },
31392 { (char *)"TextCtrl_Undo", (PyCFunction) _wrap_TextCtrl_Undo, METH_VARARGS | METH_KEYWORDS },
31393 { (char *)"TextCtrl_Redo", (PyCFunction) _wrap_TextCtrl_Redo, METH_VARARGS | METH_KEYWORDS },
31394 { (char *)"TextCtrl_CanUndo", (PyCFunction) _wrap_TextCtrl_CanUndo, METH_VARARGS | METH_KEYWORDS },
31395 { (char *)"TextCtrl_CanRedo", (PyCFunction) _wrap_TextCtrl_CanRedo, METH_VARARGS | METH_KEYWORDS },
31396 { (char *)"TextCtrl_SetInsertionPoint", (PyCFunction) _wrap_TextCtrl_SetInsertionPoint, METH_VARARGS | METH_KEYWORDS },
31397 { (char *)"TextCtrl_SetInsertionPointEnd", (PyCFunction) _wrap_TextCtrl_SetInsertionPointEnd, METH_VARARGS | METH_KEYWORDS },
31398 { (char *)"TextCtrl_GetInsertionPoint", (PyCFunction) _wrap_TextCtrl_GetInsertionPoint, METH_VARARGS | METH_KEYWORDS },
31399 { (char *)"TextCtrl_GetLastPosition", (PyCFunction) _wrap_TextCtrl_GetLastPosition, METH_VARARGS | METH_KEYWORDS },
31400 { (char *)"TextCtrl_SetSelection", (PyCFunction) _wrap_TextCtrl_SetSelection, METH_VARARGS | METH_KEYWORDS },
31401 { (char *)"TextCtrl_SelectAll", (PyCFunction) _wrap_TextCtrl_SelectAll, METH_VARARGS | METH_KEYWORDS },
31402 { (char *)"TextCtrl_SetEditable", (PyCFunction) _wrap_TextCtrl_SetEditable, METH_VARARGS | METH_KEYWORDS },
31403 { (char *)"TextCtrl_write", (PyCFunction) _wrap_TextCtrl_write, METH_VARARGS | METH_KEYWORDS },
31404 { (char *)"TextCtrl_GetString", (PyCFunction) _wrap_TextCtrl_GetString, METH_VARARGS | METH_KEYWORDS },
31405 { (char *)"TextCtrl_GetClassDefaultAttributes", (PyCFunction) _wrap_TextCtrl_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31406 { (char *)"TextCtrl_swigregister", TextCtrl_swigregister, METH_VARARGS },
31407 { (char *)"new_TextUrlEvent", (PyCFunction) _wrap_new_TextUrlEvent, METH_VARARGS | METH_KEYWORDS },
31408 { (char *)"TextUrlEvent_GetMouseEvent", (PyCFunction) _wrap_TextUrlEvent_GetMouseEvent, METH_VARARGS | METH_KEYWORDS },
31409 { (char *)"TextUrlEvent_GetURLStart", (PyCFunction) _wrap_TextUrlEvent_GetURLStart, METH_VARARGS | METH_KEYWORDS },
31410 { (char *)"TextUrlEvent_GetURLEnd", (PyCFunction) _wrap_TextUrlEvent_GetURLEnd, METH_VARARGS | METH_KEYWORDS },
31411 { (char *)"TextUrlEvent_swigregister", TextUrlEvent_swigregister, METH_VARARGS },
31412 { (char *)"new_ScrollBar", (PyCFunction) _wrap_new_ScrollBar, METH_VARARGS | METH_KEYWORDS },
31413 { (char *)"new_PreScrollBar", (PyCFunction) _wrap_new_PreScrollBar, METH_VARARGS | METH_KEYWORDS },
31414 { (char *)"ScrollBar_Create", (PyCFunction) _wrap_ScrollBar_Create, METH_VARARGS | METH_KEYWORDS },
31415 { (char *)"ScrollBar_GetThumbPosition", (PyCFunction) _wrap_ScrollBar_GetThumbPosition, METH_VARARGS | METH_KEYWORDS },
31416 { (char *)"ScrollBar_GetThumbSize", (PyCFunction) _wrap_ScrollBar_GetThumbSize, METH_VARARGS | METH_KEYWORDS },
31417 { (char *)"ScrollBar_GetPageSize", (PyCFunction) _wrap_ScrollBar_GetPageSize, METH_VARARGS | METH_KEYWORDS },
31418 { (char *)"ScrollBar_GetRange", (PyCFunction) _wrap_ScrollBar_GetRange, METH_VARARGS | METH_KEYWORDS },
31419 { (char *)"ScrollBar_IsVertical", (PyCFunction) _wrap_ScrollBar_IsVertical, METH_VARARGS | METH_KEYWORDS },
31420 { (char *)"ScrollBar_SetThumbPosition", (PyCFunction) _wrap_ScrollBar_SetThumbPosition, METH_VARARGS | METH_KEYWORDS },
31421 { (char *)"ScrollBar_SetScrollbar", (PyCFunction) _wrap_ScrollBar_SetScrollbar, METH_VARARGS | METH_KEYWORDS },
31422 { (char *)"ScrollBar_GetClassDefaultAttributes", (PyCFunction) _wrap_ScrollBar_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31423 { (char *)"ScrollBar_swigregister", ScrollBar_swigregister, METH_VARARGS },
31424 { (char *)"new_SpinButton", (PyCFunction) _wrap_new_SpinButton, METH_VARARGS | METH_KEYWORDS },
31425 { (char *)"new_PreSpinButton", (PyCFunction) _wrap_new_PreSpinButton, METH_VARARGS | METH_KEYWORDS },
31426 { (char *)"SpinButton_Create", (PyCFunction) _wrap_SpinButton_Create, METH_VARARGS | METH_KEYWORDS },
31427 { (char *)"SpinButton_GetValue", (PyCFunction) _wrap_SpinButton_GetValue, METH_VARARGS | METH_KEYWORDS },
31428 { (char *)"SpinButton_GetMin", (PyCFunction) _wrap_SpinButton_GetMin, METH_VARARGS | METH_KEYWORDS },
31429 { (char *)"SpinButton_GetMax", (PyCFunction) _wrap_SpinButton_GetMax, METH_VARARGS | METH_KEYWORDS },
31430 { (char *)"SpinButton_SetValue", (PyCFunction) _wrap_SpinButton_SetValue, METH_VARARGS | METH_KEYWORDS },
31431 { (char *)"SpinButton_SetMin", (PyCFunction) _wrap_SpinButton_SetMin, METH_VARARGS | METH_KEYWORDS },
31432 { (char *)"SpinButton_SetMax", (PyCFunction) _wrap_SpinButton_SetMax, METH_VARARGS | METH_KEYWORDS },
31433 { (char *)"SpinButton_SetRange", (PyCFunction) _wrap_SpinButton_SetRange, METH_VARARGS | METH_KEYWORDS },
31434 { (char *)"SpinButton_IsVertical", (PyCFunction) _wrap_SpinButton_IsVertical, METH_VARARGS | METH_KEYWORDS },
31435 { (char *)"SpinButton_GetClassDefaultAttributes", (PyCFunction) _wrap_SpinButton_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31436 { (char *)"SpinButton_swigregister", SpinButton_swigregister, METH_VARARGS },
31437 { (char *)"new_SpinCtrl", (PyCFunction) _wrap_new_SpinCtrl, METH_VARARGS | METH_KEYWORDS },
31438 { (char *)"new_PreSpinCtrl", (PyCFunction) _wrap_new_PreSpinCtrl, METH_VARARGS | METH_KEYWORDS },
31439 { (char *)"SpinCtrl_Create", (PyCFunction) _wrap_SpinCtrl_Create, METH_VARARGS | METH_KEYWORDS },
31440 { (char *)"SpinCtrl_GetValue", (PyCFunction) _wrap_SpinCtrl_GetValue, METH_VARARGS | METH_KEYWORDS },
31441 { (char *)"SpinCtrl_SetValue", (PyCFunction) _wrap_SpinCtrl_SetValue, METH_VARARGS | METH_KEYWORDS },
31442 { (char *)"SpinCtrl_SetValueString", (PyCFunction) _wrap_SpinCtrl_SetValueString, METH_VARARGS | METH_KEYWORDS },
31443 { (char *)"SpinCtrl_SetRange", (PyCFunction) _wrap_SpinCtrl_SetRange, METH_VARARGS | METH_KEYWORDS },
31444 { (char *)"SpinCtrl_GetMin", (PyCFunction) _wrap_SpinCtrl_GetMin, METH_VARARGS | METH_KEYWORDS },
31445 { (char *)"SpinCtrl_GetMax", (PyCFunction) _wrap_SpinCtrl_GetMax, METH_VARARGS | METH_KEYWORDS },
31446 { (char *)"SpinCtrl_SetSelection", (PyCFunction) _wrap_SpinCtrl_SetSelection, METH_VARARGS | METH_KEYWORDS },
31447 { (char *)"SpinCtrl_GetClassDefaultAttributes", (PyCFunction) _wrap_SpinCtrl_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31448 { (char *)"SpinCtrl_swigregister", SpinCtrl_swigregister, METH_VARARGS },
31449 { (char *)"new_SpinEvent", (PyCFunction) _wrap_new_SpinEvent, METH_VARARGS | METH_KEYWORDS },
31450 { (char *)"SpinEvent_GetPosition", (PyCFunction) _wrap_SpinEvent_GetPosition, METH_VARARGS | METH_KEYWORDS },
31451 { (char *)"SpinEvent_SetPosition", (PyCFunction) _wrap_SpinEvent_SetPosition, METH_VARARGS | METH_KEYWORDS },
31452 { (char *)"SpinEvent_swigregister", SpinEvent_swigregister, METH_VARARGS },
31453 { (char *)"new_RadioBox", (PyCFunction) _wrap_new_RadioBox, METH_VARARGS | METH_KEYWORDS },
31454 { (char *)"new_PreRadioBox", (PyCFunction) _wrap_new_PreRadioBox, METH_VARARGS | METH_KEYWORDS },
31455 { (char *)"RadioBox_Create", (PyCFunction) _wrap_RadioBox_Create, METH_VARARGS | METH_KEYWORDS },
31456 { (char *)"RadioBox_SetSelection", (PyCFunction) _wrap_RadioBox_SetSelection, METH_VARARGS | METH_KEYWORDS },
31457 { (char *)"RadioBox_GetSelection", (PyCFunction) _wrap_RadioBox_GetSelection, METH_VARARGS | METH_KEYWORDS },
31458 { (char *)"RadioBox_GetStringSelection", (PyCFunction) _wrap_RadioBox_GetStringSelection, METH_VARARGS | METH_KEYWORDS },
31459 { (char *)"RadioBox_SetStringSelection", (PyCFunction) _wrap_RadioBox_SetStringSelection, METH_VARARGS | METH_KEYWORDS },
31460 { (char *)"RadioBox_GetCount", (PyCFunction) _wrap_RadioBox_GetCount, METH_VARARGS | METH_KEYWORDS },
31461 { (char *)"RadioBox_FindString", (PyCFunction) _wrap_RadioBox_FindString, METH_VARARGS | METH_KEYWORDS },
31462 { (char *)"RadioBox_GetString", (PyCFunction) _wrap_RadioBox_GetString, METH_VARARGS | METH_KEYWORDS },
31463 { (char *)"RadioBox_SetString", (PyCFunction) _wrap_RadioBox_SetString, METH_VARARGS | METH_KEYWORDS },
31464 { (char *)"RadioBox_EnableItem", (PyCFunction) _wrap_RadioBox_EnableItem, METH_VARARGS | METH_KEYWORDS },
31465 { (char *)"RadioBox_ShowItem", (PyCFunction) _wrap_RadioBox_ShowItem, METH_VARARGS | METH_KEYWORDS },
31466 { (char *)"RadioBox_GetColumnCount", (PyCFunction) _wrap_RadioBox_GetColumnCount, METH_VARARGS | METH_KEYWORDS },
31467 { (char *)"RadioBox_GetRowCount", (PyCFunction) _wrap_RadioBox_GetRowCount, METH_VARARGS | METH_KEYWORDS },
31468 { (char *)"RadioBox_GetNextItem", (PyCFunction) _wrap_RadioBox_GetNextItem, METH_VARARGS | METH_KEYWORDS },
31469 { (char *)"RadioBox_GetClassDefaultAttributes", (PyCFunction) _wrap_RadioBox_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31470 { (char *)"RadioBox_swigregister", RadioBox_swigregister, METH_VARARGS },
31471 { (char *)"new_RadioButton", (PyCFunction) _wrap_new_RadioButton, METH_VARARGS | METH_KEYWORDS },
31472 { (char *)"new_PreRadioButton", (PyCFunction) _wrap_new_PreRadioButton, METH_VARARGS | METH_KEYWORDS },
31473 { (char *)"RadioButton_Create", (PyCFunction) _wrap_RadioButton_Create, METH_VARARGS | METH_KEYWORDS },
31474 { (char *)"RadioButton_GetValue", (PyCFunction) _wrap_RadioButton_GetValue, METH_VARARGS | METH_KEYWORDS },
31475 { (char *)"RadioButton_SetValue", (PyCFunction) _wrap_RadioButton_SetValue, METH_VARARGS | METH_KEYWORDS },
31476 { (char *)"RadioButton_GetClassDefaultAttributes", (PyCFunction) _wrap_RadioButton_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31477 { (char *)"RadioButton_swigregister", RadioButton_swigregister, METH_VARARGS },
31478 { (char *)"new_Slider", (PyCFunction) _wrap_new_Slider, METH_VARARGS | METH_KEYWORDS },
31479 { (char *)"new_PreSlider", (PyCFunction) _wrap_new_PreSlider, METH_VARARGS | METH_KEYWORDS },
31480 { (char *)"Slider_Create", (PyCFunction) _wrap_Slider_Create, METH_VARARGS | METH_KEYWORDS },
31481 { (char *)"Slider_GetValue", (PyCFunction) _wrap_Slider_GetValue, METH_VARARGS | METH_KEYWORDS },
31482 { (char *)"Slider_SetValue", (PyCFunction) _wrap_Slider_SetValue, METH_VARARGS | METH_KEYWORDS },
31483 { (char *)"Slider_SetRange", (PyCFunction) _wrap_Slider_SetRange, METH_VARARGS | METH_KEYWORDS },
31484 { (char *)"Slider_GetMin", (PyCFunction) _wrap_Slider_GetMin, METH_VARARGS | METH_KEYWORDS },
31485 { (char *)"Slider_GetMax", (PyCFunction) _wrap_Slider_GetMax, METH_VARARGS | METH_KEYWORDS },
31486 { (char *)"Slider_SetMin", (PyCFunction) _wrap_Slider_SetMin, METH_VARARGS | METH_KEYWORDS },
31487 { (char *)"Slider_SetMax", (PyCFunction) _wrap_Slider_SetMax, METH_VARARGS | METH_KEYWORDS },
31488 { (char *)"Slider_SetLineSize", (PyCFunction) _wrap_Slider_SetLineSize, METH_VARARGS | METH_KEYWORDS },
31489 { (char *)"Slider_SetPageSize", (PyCFunction) _wrap_Slider_SetPageSize, METH_VARARGS | METH_KEYWORDS },
31490 { (char *)"Slider_GetLineSize", (PyCFunction) _wrap_Slider_GetLineSize, METH_VARARGS | METH_KEYWORDS },
31491 { (char *)"Slider_GetPageSize", (PyCFunction) _wrap_Slider_GetPageSize, METH_VARARGS | METH_KEYWORDS },
31492 { (char *)"Slider_SetThumbLength", (PyCFunction) _wrap_Slider_SetThumbLength, METH_VARARGS | METH_KEYWORDS },
31493 { (char *)"Slider_GetThumbLength", (PyCFunction) _wrap_Slider_GetThumbLength, METH_VARARGS | METH_KEYWORDS },
31494 { (char *)"Slider_SetTickFreq", (PyCFunction) _wrap_Slider_SetTickFreq, METH_VARARGS | METH_KEYWORDS },
31495 { (char *)"Slider_GetTickFreq", (PyCFunction) _wrap_Slider_GetTickFreq, METH_VARARGS | METH_KEYWORDS },
31496 { (char *)"Slider_ClearTicks", (PyCFunction) _wrap_Slider_ClearTicks, METH_VARARGS | METH_KEYWORDS },
31497 { (char *)"Slider_SetTick", (PyCFunction) _wrap_Slider_SetTick, METH_VARARGS | METH_KEYWORDS },
31498 { (char *)"Slider_ClearSel", (PyCFunction) _wrap_Slider_ClearSel, METH_VARARGS | METH_KEYWORDS },
31499 { (char *)"Slider_GetSelEnd", (PyCFunction) _wrap_Slider_GetSelEnd, METH_VARARGS | METH_KEYWORDS },
31500 { (char *)"Slider_GetSelStart", (PyCFunction) _wrap_Slider_GetSelStart, METH_VARARGS | METH_KEYWORDS },
31501 { (char *)"Slider_SetSelection", (PyCFunction) _wrap_Slider_SetSelection, METH_VARARGS | METH_KEYWORDS },
31502 { (char *)"Slider_GetClassDefaultAttributes", (PyCFunction) _wrap_Slider_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31503 { (char *)"Slider_swigregister", Slider_swigregister, METH_VARARGS },
31504 { (char *)"new_ToggleButton", (PyCFunction) _wrap_new_ToggleButton, METH_VARARGS | METH_KEYWORDS },
31505 { (char *)"new_PreToggleButton", (PyCFunction) _wrap_new_PreToggleButton, METH_VARARGS | METH_KEYWORDS },
31506 { (char *)"ToggleButton_Create", (PyCFunction) _wrap_ToggleButton_Create, METH_VARARGS | METH_KEYWORDS },
31507 { (char *)"ToggleButton_SetValue", (PyCFunction) _wrap_ToggleButton_SetValue, METH_VARARGS | METH_KEYWORDS },
31508 { (char *)"ToggleButton_GetValue", (PyCFunction) _wrap_ToggleButton_GetValue, METH_VARARGS | METH_KEYWORDS },
31509 { (char *)"ToggleButton_SetLabel", (PyCFunction) _wrap_ToggleButton_SetLabel, METH_VARARGS | METH_KEYWORDS },
31510 { (char *)"ToggleButton_GetClassDefaultAttributes", (PyCFunction) _wrap_ToggleButton_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31511 { (char *)"ToggleButton_swigregister", ToggleButton_swigregister, METH_VARARGS },
31512 { (char *)"BookCtrl_GetPageCount", (PyCFunction) _wrap_BookCtrl_GetPageCount, METH_VARARGS | METH_KEYWORDS },
31513 { (char *)"BookCtrl_GetPage", (PyCFunction) _wrap_BookCtrl_GetPage, METH_VARARGS | METH_KEYWORDS },
31514 { (char *)"BookCtrl_GetSelection", (PyCFunction) _wrap_BookCtrl_GetSelection, METH_VARARGS | METH_KEYWORDS },
31515 { (char *)"BookCtrl_SetPageText", (PyCFunction) _wrap_BookCtrl_SetPageText, METH_VARARGS | METH_KEYWORDS },
31516 { (char *)"BookCtrl_GetPageText", (PyCFunction) _wrap_BookCtrl_GetPageText, METH_VARARGS | METH_KEYWORDS },
31517 { (char *)"BookCtrl_SetImageList", (PyCFunction) _wrap_BookCtrl_SetImageList, METH_VARARGS | METH_KEYWORDS },
31518 { (char *)"BookCtrl_AssignImageList", (PyCFunction) _wrap_BookCtrl_AssignImageList, METH_VARARGS | METH_KEYWORDS },
31519 { (char *)"BookCtrl_GetImageList", (PyCFunction) _wrap_BookCtrl_GetImageList, METH_VARARGS | METH_KEYWORDS },
31520 { (char *)"BookCtrl_GetPageImage", (PyCFunction) _wrap_BookCtrl_GetPageImage, METH_VARARGS | METH_KEYWORDS },
31521 { (char *)"BookCtrl_SetPageImage", (PyCFunction) _wrap_BookCtrl_SetPageImage, METH_VARARGS | METH_KEYWORDS },
31522 { (char *)"BookCtrl_SetPageSize", (PyCFunction) _wrap_BookCtrl_SetPageSize, METH_VARARGS | METH_KEYWORDS },
31523 { (char *)"BookCtrl_CalcSizeFromPage", (PyCFunction) _wrap_BookCtrl_CalcSizeFromPage, METH_VARARGS | METH_KEYWORDS },
31524 { (char *)"BookCtrl_DeletePage", (PyCFunction) _wrap_BookCtrl_DeletePage, METH_VARARGS | METH_KEYWORDS },
31525 { (char *)"BookCtrl_RemovePage", (PyCFunction) _wrap_BookCtrl_RemovePage, METH_VARARGS | METH_KEYWORDS },
31526 { (char *)"BookCtrl_DeleteAllPages", (PyCFunction) _wrap_BookCtrl_DeleteAllPages, METH_VARARGS | METH_KEYWORDS },
31527 { (char *)"BookCtrl_AddPage", (PyCFunction) _wrap_BookCtrl_AddPage, METH_VARARGS | METH_KEYWORDS },
31528 { (char *)"BookCtrl_InsertPage", (PyCFunction) _wrap_BookCtrl_InsertPage, METH_VARARGS | METH_KEYWORDS },
31529 { (char *)"BookCtrl_SetSelection", (PyCFunction) _wrap_BookCtrl_SetSelection, METH_VARARGS | METH_KEYWORDS },
31530 { (char *)"BookCtrl_AdvanceSelection", (PyCFunction) _wrap_BookCtrl_AdvanceSelection, METH_VARARGS | METH_KEYWORDS },
31531 { (char *)"BookCtrl_GetClassDefaultAttributes", (PyCFunction) _wrap_BookCtrl_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31532 { (char *)"BookCtrl_swigregister", BookCtrl_swigregister, METH_VARARGS },
31533 { (char *)"new_BookCtrlEvent", (PyCFunction) _wrap_new_BookCtrlEvent, METH_VARARGS | METH_KEYWORDS },
31534 { (char *)"BookCtrlEvent_GetSelection", (PyCFunction) _wrap_BookCtrlEvent_GetSelection, METH_VARARGS | METH_KEYWORDS },
31535 { (char *)"BookCtrlEvent_SetSelection", (PyCFunction) _wrap_BookCtrlEvent_SetSelection, METH_VARARGS | METH_KEYWORDS },
31536 { (char *)"BookCtrlEvent_GetOldSelection", (PyCFunction) _wrap_BookCtrlEvent_GetOldSelection, METH_VARARGS | METH_KEYWORDS },
31537 { (char *)"BookCtrlEvent_SetOldSelection", (PyCFunction) _wrap_BookCtrlEvent_SetOldSelection, METH_VARARGS | METH_KEYWORDS },
31538 { (char *)"BookCtrlEvent_swigregister", BookCtrlEvent_swigregister, METH_VARARGS },
31539 { (char *)"new_Notebook", (PyCFunction) _wrap_new_Notebook, METH_VARARGS | METH_KEYWORDS },
31540 { (char *)"new_PreNotebook", (PyCFunction) _wrap_new_PreNotebook, METH_VARARGS | METH_KEYWORDS },
31541 { (char *)"Notebook_Create", (PyCFunction) _wrap_Notebook_Create, METH_VARARGS | METH_KEYWORDS },
31542 { (char *)"Notebook_GetRowCount", (PyCFunction) _wrap_Notebook_GetRowCount, METH_VARARGS | METH_KEYWORDS },
31543 { (char *)"Notebook_SetPadding", (PyCFunction) _wrap_Notebook_SetPadding, METH_VARARGS | METH_KEYWORDS },
31544 { (char *)"Notebook_SetTabSize", (PyCFunction) _wrap_Notebook_SetTabSize, METH_VARARGS | METH_KEYWORDS },
31545 { (char *)"Notebook_HitTest", (PyCFunction) _wrap_Notebook_HitTest, METH_VARARGS | METH_KEYWORDS },
31546 { (char *)"Notebook_CalcSizeFromPage", (PyCFunction) _wrap_Notebook_CalcSizeFromPage, METH_VARARGS | METH_KEYWORDS },
31547 { (char *)"Notebook_GetClassDefaultAttributes", (PyCFunction) _wrap_Notebook_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31548 { (char *)"Notebook_swigregister", Notebook_swigregister, METH_VARARGS },
31549 { (char *)"new_NotebookEvent", (PyCFunction) _wrap_new_NotebookEvent, METH_VARARGS | METH_KEYWORDS },
31550 { (char *)"NotebookEvent_swigregister", NotebookEvent_swigregister, METH_VARARGS },
31551 { (char *)"new_Listbook", (PyCFunction) _wrap_new_Listbook, METH_VARARGS | METH_KEYWORDS },
31552 { (char *)"new_PreListbook", (PyCFunction) _wrap_new_PreListbook, METH_VARARGS | METH_KEYWORDS },
31553 { (char *)"Listbook_Create", (PyCFunction) _wrap_Listbook_Create, METH_VARARGS | METH_KEYWORDS },
31554 { (char *)"Listbook_IsVertical", (PyCFunction) _wrap_Listbook_IsVertical, METH_VARARGS | METH_KEYWORDS },
31555 { (char *)"Listbook_swigregister", Listbook_swigregister, METH_VARARGS },
31556 { (char *)"new_ListbookEvent", (PyCFunction) _wrap_new_ListbookEvent, METH_VARARGS | METH_KEYWORDS },
31557 { (char *)"ListbookEvent_swigregister", ListbookEvent_swigregister, METH_VARARGS },
31558 { (char *)"new_BookCtrlSizer", (PyCFunction) _wrap_new_BookCtrlSizer, METH_VARARGS | METH_KEYWORDS },
31559 { (char *)"BookCtrlSizer_RecalcSizes", (PyCFunction) _wrap_BookCtrlSizer_RecalcSizes, METH_VARARGS | METH_KEYWORDS },
31560 { (char *)"BookCtrlSizer_CalcMin", (PyCFunction) _wrap_BookCtrlSizer_CalcMin, METH_VARARGS | METH_KEYWORDS },
31561 { (char *)"BookCtrlSizer_GetControl", (PyCFunction) _wrap_BookCtrlSizer_GetControl, METH_VARARGS | METH_KEYWORDS },
31562 { (char *)"BookCtrlSizer_swigregister", BookCtrlSizer_swigregister, METH_VARARGS },
31563 { (char *)"new_NotebookSizer", (PyCFunction) _wrap_new_NotebookSizer, METH_VARARGS | METH_KEYWORDS },
31564 { (char *)"NotebookSizer_RecalcSizes", (PyCFunction) _wrap_NotebookSizer_RecalcSizes, METH_VARARGS | METH_KEYWORDS },
31565 { (char *)"NotebookSizer_CalcMin", (PyCFunction) _wrap_NotebookSizer_CalcMin, METH_VARARGS | METH_KEYWORDS },
31566 { (char *)"NotebookSizer_GetNotebook", (PyCFunction) _wrap_NotebookSizer_GetNotebook, METH_VARARGS | METH_KEYWORDS },
31567 { (char *)"NotebookSizer_swigregister", NotebookSizer_swigregister, METH_VARARGS },
31568 { (char *)"ToolBarToolBase_GetId", (PyCFunction) _wrap_ToolBarToolBase_GetId, METH_VARARGS | METH_KEYWORDS },
31569 { (char *)"ToolBarToolBase_GetControl", (PyCFunction) _wrap_ToolBarToolBase_GetControl, METH_VARARGS | METH_KEYWORDS },
31570 { (char *)"ToolBarToolBase_GetToolBar", (PyCFunction) _wrap_ToolBarToolBase_GetToolBar, METH_VARARGS | METH_KEYWORDS },
31571 { (char *)"ToolBarToolBase_IsButton", (PyCFunction) _wrap_ToolBarToolBase_IsButton, METH_VARARGS | METH_KEYWORDS },
31572 { (char *)"ToolBarToolBase_IsControl", (PyCFunction) _wrap_ToolBarToolBase_IsControl, METH_VARARGS | METH_KEYWORDS },
31573 { (char *)"ToolBarToolBase_IsSeparator", (PyCFunction) _wrap_ToolBarToolBase_IsSeparator, METH_VARARGS | METH_KEYWORDS },
31574 { (char *)"ToolBarToolBase_GetStyle", (PyCFunction) _wrap_ToolBarToolBase_GetStyle, METH_VARARGS | METH_KEYWORDS },
31575 { (char *)"ToolBarToolBase_GetKind", (PyCFunction) _wrap_ToolBarToolBase_GetKind, METH_VARARGS | METH_KEYWORDS },
31576 { (char *)"ToolBarToolBase_IsEnabled", (PyCFunction) _wrap_ToolBarToolBase_IsEnabled, METH_VARARGS | METH_KEYWORDS },
31577 { (char *)"ToolBarToolBase_IsToggled", (PyCFunction) _wrap_ToolBarToolBase_IsToggled, METH_VARARGS | METH_KEYWORDS },
31578 { (char *)"ToolBarToolBase_CanBeToggled", (PyCFunction) _wrap_ToolBarToolBase_CanBeToggled, METH_VARARGS | METH_KEYWORDS },
31579 { (char *)"ToolBarToolBase_GetNormalBitmap", (PyCFunction) _wrap_ToolBarToolBase_GetNormalBitmap, METH_VARARGS | METH_KEYWORDS },
31580 { (char *)"ToolBarToolBase_GetDisabledBitmap", (PyCFunction) _wrap_ToolBarToolBase_GetDisabledBitmap, METH_VARARGS | METH_KEYWORDS },
31581 { (char *)"ToolBarToolBase_GetBitmap", (PyCFunction) _wrap_ToolBarToolBase_GetBitmap, METH_VARARGS | METH_KEYWORDS },
31582 { (char *)"ToolBarToolBase_GetLabel", (PyCFunction) _wrap_ToolBarToolBase_GetLabel, METH_VARARGS | METH_KEYWORDS },
31583 { (char *)"ToolBarToolBase_GetShortHelp", (PyCFunction) _wrap_ToolBarToolBase_GetShortHelp, METH_VARARGS | METH_KEYWORDS },
31584 { (char *)"ToolBarToolBase_GetLongHelp", (PyCFunction) _wrap_ToolBarToolBase_GetLongHelp, METH_VARARGS | METH_KEYWORDS },
31585 { (char *)"ToolBarToolBase_Enable", (PyCFunction) _wrap_ToolBarToolBase_Enable, METH_VARARGS | METH_KEYWORDS },
31586 { (char *)"ToolBarToolBase_Toggle", (PyCFunction) _wrap_ToolBarToolBase_Toggle, METH_VARARGS | METH_KEYWORDS },
31587 { (char *)"ToolBarToolBase_SetToggle", (PyCFunction) _wrap_ToolBarToolBase_SetToggle, METH_VARARGS | METH_KEYWORDS },
31588 { (char *)"ToolBarToolBase_SetShortHelp", (PyCFunction) _wrap_ToolBarToolBase_SetShortHelp, METH_VARARGS | METH_KEYWORDS },
31589 { (char *)"ToolBarToolBase_SetLongHelp", (PyCFunction) _wrap_ToolBarToolBase_SetLongHelp, METH_VARARGS | METH_KEYWORDS },
31590 { (char *)"ToolBarToolBase_SetNormalBitmap", (PyCFunction) _wrap_ToolBarToolBase_SetNormalBitmap, METH_VARARGS | METH_KEYWORDS },
31591 { (char *)"ToolBarToolBase_SetDisabledBitmap", (PyCFunction) _wrap_ToolBarToolBase_SetDisabledBitmap, METH_VARARGS | METH_KEYWORDS },
31592 { (char *)"ToolBarToolBase_SetLabel", (PyCFunction) _wrap_ToolBarToolBase_SetLabel, METH_VARARGS | METH_KEYWORDS },
31593 { (char *)"ToolBarToolBase_Detach", (PyCFunction) _wrap_ToolBarToolBase_Detach, METH_VARARGS | METH_KEYWORDS },
31594 { (char *)"ToolBarToolBase_Attach", (PyCFunction) _wrap_ToolBarToolBase_Attach, METH_VARARGS | METH_KEYWORDS },
31595 { (char *)"ToolBarToolBase_GetClientData", (PyCFunction) _wrap_ToolBarToolBase_GetClientData, METH_VARARGS | METH_KEYWORDS },
31596 { (char *)"ToolBarToolBase_SetClientData", (PyCFunction) _wrap_ToolBarToolBase_SetClientData, METH_VARARGS | METH_KEYWORDS },
31597 { (char *)"ToolBarToolBase_swigregister", ToolBarToolBase_swigregister, METH_VARARGS },
31598 { (char *)"ToolBarBase_DoAddTool", (PyCFunction) _wrap_ToolBarBase_DoAddTool, METH_VARARGS | METH_KEYWORDS },
31599 { (char *)"ToolBarBase_DoInsertTool", (PyCFunction) _wrap_ToolBarBase_DoInsertTool, METH_VARARGS | METH_KEYWORDS },
31600 { (char *)"ToolBarBase_AddToolItem", (PyCFunction) _wrap_ToolBarBase_AddToolItem, METH_VARARGS | METH_KEYWORDS },
31601 { (char *)"ToolBarBase_InsertToolItem", (PyCFunction) _wrap_ToolBarBase_InsertToolItem, METH_VARARGS | METH_KEYWORDS },
31602 { (char *)"ToolBarBase_AddControl", (PyCFunction) _wrap_ToolBarBase_AddControl, METH_VARARGS | METH_KEYWORDS },
31603 { (char *)"ToolBarBase_InsertControl", (PyCFunction) _wrap_ToolBarBase_InsertControl, METH_VARARGS | METH_KEYWORDS },
31604 { (char *)"ToolBarBase_FindControl", (PyCFunction) _wrap_ToolBarBase_FindControl, METH_VARARGS | METH_KEYWORDS },
31605 { (char *)"ToolBarBase_AddSeparator", (PyCFunction) _wrap_ToolBarBase_AddSeparator, METH_VARARGS | METH_KEYWORDS },
31606 { (char *)"ToolBarBase_InsertSeparator", (PyCFunction) _wrap_ToolBarBase_InsertSeparator, METH_VARARGS | METH_KEYWORDS },
31607 { (char *)"ToolBarBase_RemoveTool", (PyCFunction) _wrap_ToolBarBase_RemoveTool, METH_VARARGS | METH_KEYWORDS },
31608 { (char *)"ToolBarBase_DeleteToolByPos", (PyCFunction) _wrap_ToolBarBase_DeleteToolByPos, METH_VARARGS | METH_KEYWORDS },
31609 { (char *)"ToolBarBase_DeleteTool", (PyCFunction) _wrap_ToolBarBase_DeleteTool, METH_VARARGS | METH_KEYWORDS },
31610 { (char *)"ToolBarBase_ClearTools", (PyCFunction) _wrap_ToolBarBase_ClearTools, METH_VARARGS | METH_KEYWORDS },
31611 { (char *)"ToolBarBase_Realize", (PyCFunction) _wrap_ToolBarBase_Realize, METH_VARARGS | METH_KEYWORDS },
31612 { (char *)"ToolBarBase_EnableTool", (PyCFunction) _wrap_ToolBarBase_EnableTool, METH_VARARGS | METH_KEYWORDS },
31613 { (char *)"ToolBarBase_ToggleTool", (PyCFunction) _wrap_ToolBarBase_ToggleTool, METH_VARARGS | METH_KEYWORDS },
31614 { (char *)"ToolBarBase_SetToggle", (PyCFunction) _wrap_ToolBarBase_SetToggle, METH_VARARGS | METH_KEYWORDS },
31615 { (char *)"ToolBarBase_GetToolClientData", (PyCFunction) _wrap_ToolBarBase_GetToolClientData, METH_VARARGS | METH_KEYWORDS },
31616 { (char *)"ToolBarBase_SetToolClientData", (PyCFunction) _wrap_ToolBarBase_SetToolClientData, METH_VARARGS | METH_KEYWORDS },
31617 { (char *)"ToolBarBase_GetToolPos", (PyCFunction) _wrap_ToolBarBase_GetToolPos, METH_VARARGS | METH_KEYWORDS },
31618 { (char *)"ToolBarBase_GetToolState", (PyCFunction) _wrap_ToolBarBase_GetToolState, METH_VARARGS | METH_KEYWORDS },
31619 { (char *)"ToolBarBase_GetToolEnabled", (PyCFunction) _wrap_ToolBarBase_GetToolEnabled, METH_VARARGS | METH_KEYWORDS },
31620 { (char *)"ToolBarBase_SetToolShortHelp", (PyCFunction) _wrap_ToolBarBase_SetToolShortHelp, METH_VARARGS | METH_KEYWORDS },
31621 { (char *)"ToolBarBase_GetToolShortHelp", (PyCFunction) _wrap_ToolBarBase_GetToolShortHelp, METH_VARARGS | METH_KEYWORDS },
31622 { (char *)"ToolBarBase_SetToolLongHelp", (PyCFunction) _wrap_ToolBarBase_SetToolLongHelp, METH_VARARGS | METH_KEYWORDS },
31623 { (char *)"ToolBarBase_GetToolLongHelp", (PyCFunction) _wrap_ToolBarBase_GetToolLongHelp, METH_VARARGS | METH_KEYWORDS },
31624 { (char *)"ToolBarBase_SetMarginsXY", (PyCFunction) _wrap_ToolBarBase_SetMarginsXY, METH_VARARGS | METH_KEYWORDS },
31625 { (char *)"ToolBarBase_SetMargins", (PyCFunction) _wrap_ToolBarBase_SetMargins, METH_VARARGS | METH_KEYWORDS },
31626 { (char *)"ToolBarBase_SetToolPacking", (PyCFunction) _wrap_ToolBarBase_SetToolPacking, METH_VARARGS | METH_KEYWORDS },
31627 { (char *)"ToolBarBase_SetToolSeparation", (PyCFunction) _wrap_ToolBarBase_SetToolSeparation, METH_VARARGS | METH_KEYWORDS },
31628 { (char *)"ToolBarBase_GetToolMargins", (PyCFunction) _wrap_ToolBarBase_GetToolMargins, METH_VARARGS | METH_KEYWORDS },
31629 { (char *)"ToolBarBase_GetMargins", (PyCFunction) _wrap_ToolBarBase_GetMargins, METH_VARARGS | METH_KEYWORDS },
31630 { (char *)"ToolBarBase_GetToolPacking", (PyCFunction) _wrap_ToolBarBase_GetToolPacking, METH_VARARGS | METH_KEYWORDS },
31631 { (char *)"ToolBarBase_GetToolSeparation", (PyCFunction) _wrap_ToolBarBase_GetToolSeparation, METH_VARARGS | METH_KEYWORDS },
31632 { (char *)"ToolBarBase_SetRows", (PyCFunction) _wrap_ToolBarBase_SetRows, METH_VARARGS | METH_KEYWORDS },
31633 { (char *)"ToolBarBase_SetMaxRowsCols", (PyCFunction) _wrap_ToolBarBase_SetMaxRowsCols, METH_VARARGS | METH_KEYWORDS },
31634 { (char *)"ToolBarBase_GetMaxRows", (PyCFunction) _wrap_ToolBarBase_GetMaxRows, METH_VARARGS | METH_KEYWORDS },
31635 { (char *)"ToolBarBase_GetMaxCols", (PyCFunction) _wrap_ToolBarBase_GetMaxCols, METH_VARARGS | METH_KEYWORDS },
31636 { (char *)"ToolBarBase_SetToolBitmapSize", (PyCFunction) _wrap_ToolBarBase_SetToolBitmapSize, METH_VARARGS | METH_KEYWORDS },
31637 { (char *)"ToolBarBase_GetToolBitmapSize", (PyCFunction) _wrap_ToolBarBase_GetToolBitmapSize, METH_VARARGS | METH_KEYWORDS },
31638 { (char *)"ToolBarBase_GetToolSize", (PyCFunction) _wrap_ToolBarBase_GetToolSize, METH_VARARGS | METH_KEYWORDS },
31639 { (char *)"ToolBarBase_FindToolForPosition", (PyCFunction) _wrap_ToolBarBase_FindToolForPosition, METH_VARARGS | METH_KEYWORDS },
31640 { (char *)"ToolBarBase_FindById", (PyCFunction) _wrap_ToolBarBase_FindById, METH_VARARGS | METH_KEYWORDS },
31641 { (char *)"ToolBarBase_IsVertical", (PyCFunction) _wrap_ToolBarBase_IsVertical, METH_VARARGS | METH_KEYWORDS },
31642 { (char *)"ToolBarBase_swigregister", ToolBarBase_swigregister, METH_VARARGS },
31643 { (char *)"new_ToolBar", (PyCFunction) _wrap_new_ToolBar, METH_VARARGS | METH_KEYWORDS },
31644 { (char *)"new_PreToolBar", (PyCFunction) _wrap_new_PreToolBar, METH_VARARGS | METH_KEYWORDS },
31645 { (char *)"ToolBar_Create", (PyCFunction) _wrap_ToolBar_Create, METH_VARARGS | METH_KEYWORDS },
31646 { (char *)"ToolBar_FindToolForPosition", (PyCFunction) _wrap_ToolBar_FindToolForPosition, METH_VARARGS | METH_KEYWORDS },
31647 { (char *)"ToolBar_GetClassDefaultAttributes", (PyCFunction) _wrap_ToolBar_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31648 { (char *)"ToolBar_swigregister", ToolBar_swigregister, METH_VARARGS },
31649 { (char *)"new_ListItemAttr", (PyCFunction) _wrap_new_ListItemAttr, METH_VARARGS | METH_KEYWORDS },
31650 { (char *)"ListItemAttr_SetTextColour", (PyCFunction) _wrap_ListItemAttr_SetTextColour, METH_VARARGS | METH_KEYWORDS },
31651 { (char *)"ListItemAttr_SetBackgroundColour", (PyCFunction) _wrap_ListItemAttr_SetBackgroundColour, METH_VARARGS | METH_KEYWORDS },
31652 { (char *)"ListItemAttr_SetFont", (PyCFunction) _wrap_ListItemAttr_SetFont, METH_VARARGS | METH_KEYWORDS },
31653 { (char *)"ListItemAttr_HasTextColour", (PyCFunction) _wrap_ListItemAttr_HasTextColour, METH_VARARGS | METH_KEYWORDS },
31654 { (char *)"ListItemAttr_HasBackgroundColour", (PyCFunction) _wrap_ListItemAttr_HasBackgroundColour, METH_VARARGS | METH_KEYWORDS },
31655 { (char *)"ListItemAttr_HasFont", (PyCFunction) _wrap_ListItemAttr_HasFont, METH_VARARGS | METH_KEYWORDS },
31656 { (char *)"ListItemAttr_GetTextColour", (PyCFunction) _wrap_ListItemAttr_GetTextColour, METH_VARARGS | METH_KEYWORDS },
31657 { (char *)"ListItemAttr_GetBackgroundColour", (PyCFunction) _wrap_ListItemAttr_GetBackgroundColour, METH_VARARGS | METH_KEYWORDS },
31658 { (char *)"ListItemAttr_GetFont", (PyCFunction) _wrap_ListItemAttr_GetFont, METH_VARARGS | METH_KEYWORDS },
31659 { (char *)"ListItemAttr_Destroy", (PyCFunction) _wrap_ListItemAttr_Destroy, METH_VARARGS | METH_KEYWORDS },
31660 { (char *)"ListItemAttr_swigregister", ListItemAttr_swigregister, METH_VARARGS },
31661 { (char *)"new_ListItem", (PyCFunction) _wrap_new_ListItem, METH_VARARGS | METH_KEYWORDS },
31662 { (char *)"delete_ListItem", (PyCFunction) _wrap_delete_ListItem, METH_VARARGS | METH_KEYWORDS },
31663 { (char *)"ListItem_Clear", (PyCFunction) _wrap_ListItem_Clear, METH_VARARGS | METH_KEYWORDS },
31664 { (char *)"ListItem_ClearAttributes", (PyCFunction) _wrap_ListItem_ClearAttributes, METH_VARARGS | METH_KEYWORDS },
31665 { (char *)"ListItem_SetMask", (PyCFunction) _wrap_ListItem_SetMask, METH_VARARGS | METH_KEYWORDS },
31666 { (char *)"ListItem_SetId", (PyCFunction) _wrap_ListItem_SetId, METH_VARARGS | METH_KEYWORDS },
31667 { (char *)"ListItem_SetColumn", (PyCFunction) _wrap_ListItem_SetColumn, METH_VARARGS | METH_KEYWORDS },
31668 { (char *)"ListItem_SetState", (PyCFunction) _wrap_ListItem_SetState, METH_VARARGS | METH_KEYWORDS },
31669 { (char *)"ListItem_SetStateMask", (PyCFunction) _wrap_ListItem_SetStateMask, METH_VARARGS | METH_KEYWORDS },
31670 { (char *)"ListItem_SetText", (PyCFunction) _wrap_ListItem_SetText, METH_VARARGS | METH_KEYWORDS },
31671 { (char *)"ListItem_SetImage", (PyCFunction) _wrap_ListItem_SetImage, METH_VARARGS | METH_KEYWORDS },
31672 { (char *)"ListItem_SetData", (PyCFunction) _wrap_ListItem_SetData, METH_VARARGS | METH_KEYWORDS },
31673 { (char *)"ListItem_SetWidth", (PyCFunction) _wrap_ListItem_SetWidth, METH_VARARGS | METH_KEYWORDS },
31674 { (char *)"ListItem_SetAlign", (PyCFunction) _wrap_ListItem_SetAlign, METH_VARARGS | METH_KEYWORDS },
31675 { (char *)"ListItem_SetTextColour", (PyCFunction) _wrap_ListItem_SetTextColour, METH_VARARGS | METH_KEYWORDS },
31676 { (char *)"ListItem_SetBackgroundColour", (PyCFunction) _wrap_ListItem_SetBackgroundColour, METH_VARARGS | METH_KEYWORDS },
31677 { (char *)"ListItem_SetFont", (PyCFunction) _wrap_ListItem_SetFont, METH_VARARGS | METH_KEYWORDS },
31678 { (char *)"ListItem_GetMask", (PyCFunction) _wrap_ListItem_GetMask, METH_VARARGS | METH_KEYWORDS },
31679 { (char *)"ListItem_GetId", (PyCFunction) _wrap_ListItem_GetId, METH_VARARGS | METH_KEYWORDS },
31680 { (char *)"ListItem_GetColumn", (PyCFunction) _wrap_ListItem_GetColumn, METH_VARARGS | METH_KEYWORDS },
31681 { (char *)"ListItem_GetState", (PyCFunction) _wrap_ListItem_GetState, METH_VARARGS | METH_KEYWORDS },
31682 { (char *)"ListItem_GetText", (PyCFunction) _wrap_ListItem_GetText, METH_VARARGS | METH_KEYWORDS },
31683 { (char *)"ListItem_GetImage", (PyCFunction) _wrap_ListItem_GetImage, METH_VARARGS | METH_KEYWORDS },
31684 { (char *)"ListItem_GetData", (PyCFunction) _wrap_ListItem_GetData, METH_VARARGS | METH_KEYWORDS },
31685 { (char *)"ListItem_GetWidth", (PyCFunction) _wrap_ListItem_GetWidth, METH_VARARGS | METH_KEYWORDS },
31686 { (char *)"ListItem_GetAlign", (PyCFunction) _wrap_ListItem_GetAlign, METH_VARARGS | METH_KEYWORDS },
31687 { (char *)"ListItem_GetAttributes", (PyCFunction) _wrap_ListItem_GetAttributes, METH_VARARGS | METH_KEYWORDS },
31688 { (char *)"ListItem_HasAttributes", (PyCFunction) _wrap_ListItem_HasAttributes, METH_VARARGS | METH_KEYWORDS },
31689 { (char *)"ListItem_GetTextColour", (PyCFunction) _wrap_ListItem_GetTextColour, METH_VARARGS | METH_KEYWORDS },
31690 { (char *)"ListItem_GetBackgroundColour", (PyCFunction) _wrap_ListItem_GetBackgroundColour, METH_VARARGS | METH_KEYWORDS },
31691 { (char *)"ListItem_GetFont", (PyCFunction) _wrap_ListItem_GetFont, METH_VARARGS | METH_KEYWORDS },
31692 { (char *)"ListItem_m_mask_set", (PyCFunction) _wrap_ListItem_m_mask_set, METH_VARARGS | METH_KEYWORDS },
31693 { (char *)"ListItem_m_mask_get", (PyCFunction) _wrap_ListItem_m_mask_get, METH_VARARGS | METH_KEYWORDS },
31694 { (char *)"ListItem_m_itemId_set", (PyCFunction) _wrap_ListItem_m_itemId_set, METH_VARARGS | METH_KEYWORDS },
31695 { (char *)"ListItem_m_itemId_get", (PyCFunction) _wrap_ListItem_m_itemId_get, METH_VARARGS | METH_KEYWORDS },
31696 { (char *)"ListItem_m_col_set", (PyCFunction) _wrap_ListItem_m_col_set, METH_VARARGS | METH_KEYWORDS },
31697 { (char *)"ListItem_m_col_get", (PyCFunction) _wrap_ListItem_m_col_get, METH_VARARGS | METH_KEYWORDS },
31698 { (char *)"ListItem_m_state_set", (PyCFunction) _wrap_ListItem_m_state_set, METH_VARARGS | METH_KEYWORDS },
31699 { (char *)"ListItem_m_state_get", (PyCFunction) _wrap_ListItem_m_state_get, METH_VARARGS | METH_KEYWORDS },
31700 { (char *)"ListItem_m_stateMask_set", (PyCFunction) _wrap_ListItem_m_stateMask_set, METH_VARARGS | METH_KEYWORDS },
31701 { (char *)"ListItem_m_stateMask_get", (PyCFunction) _wrap_ListItem_m_stateMask_get, METH_VARARGS | METH_KEYWORDS },
31702 { (char *)"ListItem_m_text_set", (PyCFunction) _wrap_ListItem_m_text_set, METH_VARARGS | METH_KEYWORDS },
31703 { (char *)"ListItem_m_text_get", (PyCFunction) _wrap_ListItem_m_text_get, METH_VARARGS | METH_KEYWORDS },
31704 { (char *)"ListItem_m_image_set", (PyCFunction) _wrap_ListItem_m_image_set, METH_VARARGS | METH_KEYWORDS },
31705 { (char *)"ListItem_m_image_get", (PyCFunction) _wrap_ListItem_m_image_get, METH_VARARGS | METH_KEYWORDS },
31706 { (char *)"ListItem_m_data_set", (PyCFunction) _wrap_ListItem_m_data_set, METH_VARARGS | METH_KEYWORDS },
31707 { (char *)"ListItem_m_data_get", (PyCFunction) _wrap_ListItem_m_data_get, METH_VARARGS | METH_KEYWORDS },
31708 { (char *)"ListItem_m_format_set", (PyCFunction) _wrap_ListItem_m_format_set, METH_VARARGS | METH_KEYWORDS },
31709 { (char *)"ListItem_m_format_get", (PyCFunction) _wrap_ListItem_m_format_get, METH_VARARGS | METH_KEYWORDS },
31710 { (char *)"ListItem_m_width_set", (PyCFunction) _wrap_ListItem_m_width_set, METH_VARARGS | METH_KEYWORDS },
31711 { (char *)"ListItem_m_width_get", (PyCFunction) _wrap_ListItem_m_width_get, METH_VARARGS | METH_KEYWORDS },
31712 { (char *)"ListItem_swigregister", ListItem_swigregister, METH_VARARGS },
31713 { (char *)"new_ListEvent", (PyCFunction) _wrap_new_ListEvent, METH_VARARGS | METH_KEYWORDS },
31714 { (char *)"ListEvent_m_code_set", (PyCFunction) _wrap_ListEvent_m_code_set, METH_VARARGS | METH_KEYWORDS },
31715 { (char *)"ListEvent_m_code_get", (PyCFunction) _wrap_ListEvent_m_code_get, METH_VARARGS | METH_KEYWORDS },
31716 { (char *)"ListEvent_m_oldItemIndex_set", (PyCFunction) _wrap_ListEvent_m_oldItemIndex_set, METH_VARARGS | METH_KEYWORDS },
31717 { (char *)"ListEvent_m_oldItemIndex_get", (PyCFunction) _wrap_ListEvent_m_oldItemIndex_get, METH_VARARGS | METH_KEYWORDS },
31718 { (char *)"ListEvent_m_itemIndex_set", (PyCFunction) _wrap_ListEvent_m_itemIndex_set, METH_VARARGS | METH_KEYWORDS },
31719 { (char *)"ListEvent_m_itemIndex_get", (PyCFunction) _wrap_ListEvent_m_itemIndex_get, METH_VARARGS | METH_KEYWORDS },
31720 { (char *)"ListEvent_m_col_set", (PyCFunction) _wrap_ListEvent_m_col_set, METH_VARARGS | METH_KEYWORDS },
31721 { (char *)"ListEvent_m_col_get", (PyCFunction) _wrap_ListEvent_m_col_get, METH_VARARGS | METH_KEYWORDS },
31722 { (char *)"ListEvent_m_pointDrag_set", (PyCFunction) _wrap_ListEvent_m_pointDrag_set, METH_VARARGS | METH_KEYWORDS },
31723 { (char *)"ListEvent_m_pointDrag_get", (PyCFunction) _wrap_ListEvent_m_pointDrag_get, METH_VARARGS | METH_KEYWORDS },
31724 { (char *)"ListEvent_m_item_get", (PyCFunction) _wrap_ListEvent_m_item_get, METH_VARARGS | METH_KEYWORDS },
31725 { (char *)"ListEvent_GetKeyCode", (PyCFunction) _wrap_ListEvent_GetKeyCode, METH_VARARGS | METH_KEYWORDS },
31726 { (char *)"ListEvent_GetIndex", (PyCFunction) _wrap_ListEvent_GetIndex, METH_VARARGS | METH_KEYWORDS },
31727 { (char *)"ListEvent_GetColumn", (PyCFunction) _wrap_ListEvent_GetColumn, METH_VARARGS | METH_KEYWORDS },
31728 { (char *)"ListEvent_GetPoint", (PyCFunction) _wrap_ListEvent_GetPoint, METH_VARARGS | METH_KEYWORDS },
31729 { (char *)"ListEvent_GetLabel", (PyCFunction) _wrap_ListEvent_GetLabel, METH_VARARGS | METH_KEYWORDS },
31730 { (char *)"ListEvent_GetText", (PyCFunction) _wrap_ListEvent_GetText, METH_VARARGS | METH_KEYWORDS },
31731 { (char *)"ListEvent_GetImage", (PyCFunction) _wrap_ListEvent_GetImage, METH_VARARGS | METH_KEYWORDS },
31732 { (char *)"ListEvent_GetData", (PyCFunction) _wrap_ListEvent_GetData, METH_VARARGS | METH_KEYWORDS },
31733 { (char *)"ListEvent_GetMask", (PyCFunction) _wrap_ListEvent_GetMask, METH_VARARGS | METH_KEYWORDS },
31734 { (char *)"ListEvent_GetItem", (PyCFunction) _wrap_ListEvent_GetItem, METH_VARARGS | METH_KEYWORDS },
31735 { (char *)"ListEvent_GetCacheFrom", (PyCFunction) _wrap_ListEvent_GetCacheFrom, METH_VARARGS | METH_KEYWORDS },
31736 { (char *)"ListEvent_GetCacheTo", (PyCFunction) _wrap_ListEvent_GetCacheTo, METH_VARARGS | METH_KEYWORDS },
31737 { (char *)"ListEvent_IsEditCancelled", (PyCFunction) _wrap_ListEvent_IsEditCancelled, METH_VARARGS | METH_KEYWORDS },
31738 { (char *)"ListEvent_SetEditCanceled", (PyCFunction) _wrap_ListEvent_SetEditCanceled, METH_VARARGS | METH_KEYWORDS },
31739 { (char *)"ListEvent_swigregister", ListEvent_swigregister, METH_VARARGS },
31740 { (char *)"new_ListCtrl", (PyCFunction) _wrap_new_ListCtrl, METH_VARARGS | METH_KEYWORDS },
31741 { (char *)"new_PreListCtrl", (PyCFunction) _wrap_new_PreListCtrl, METH_VARARGS | METH_KEYWORDS },
31742 { (char *)"ListCtrl_Create", (PyCFunction) _wrap_ListCtrl_Create, METH_VARARGS | METH_KEYWORDS },
31743 { (char *)"ListCtrl__setCallbackInfo", (PyCFunction) _wrap_ListCtrl__setCallbackInfo, METH_VARARGS | METH_KEYWORDS },
31744 { (char *)"ListCtrl_SetForegroundColour", (PyCFunction) _wrap_ListCtrl_SetForegroundColour, METH_VARARGS | METH_KEYWORDS },
31745 { (char *)"ListCtrl_SetBackgroundColour", (PyCFunction) _wrap_ListCtrl_SetBackgroundColour, METH_VARARGS | METH_KEYWORDS },
31746 { (char *)"ListCtrl_GetColumn", (PyCFunction) _wrap_ListCtrl_GetColumn, METH_VARARGS | METH_KEYWORDS },
31747 { (char *)"ListCtrl_SetColumn", (PyCFunction) _wrap_ListCtrl_SetColumn, METH_VARARGS | METH_KEYWORDS },
31748 { (char *)"ListCtrl_GetColumnWidth", (PyCFunction) _wrap_ListCtrl_GetColumnWidth, METH_VARARGS | METH_KEYWORDS },
31749 { (char *)"ListCtrl_SetColumnWidth", (PyCFunction) _wrap_ListCtrl_SetColumnWidth, METH_VARARGS | METH_KEYWORDS },
31750 { (char *)"ListCtrl_GetCountPerPage", (PyCFunction) _wrap_ListCtrl_GetCountPerPage, METH_VARARGS | METH_KEYWORDS },
31751 { (char *)"ListCtrl_GetViewRect", (PyCFunction) _wrap_ListCtrl_GetViewRect, METH_VARARGS | METH_KEYWORDS },
31752 { (char *)"ListCtrl_GetItem", (PyCFunction) _wrap_ListCtrl_GetItem, METH_VARARGS | METH_KEYWORDS },
31753 { (char *)"ListCtrl_SetItem", (PyCFunction) _wrap_ListCtrl_SetItem, METH_VARARGS | METH_KEYWORDS },
31754 { (char *)"ListCtrl_SetStringItem", (PyCFunction) _wrap_ListCtrl_SetStringItem, METH_VARARGS | METH_KEYWORDS },
31755 { (char *)"ListCtrl_GetItemState", (PyCFunction) _wrap_ListCtrl_GetItemState, METH_VARARGS | METH_KEYWORDS },
31756 { (char *)"ListCtrl_SetItemState", (PyCFunction) _wrap_ListCtrl_SetItemState, METH_VARARGS | METH_KEYWORDS },
31757 { (char *)"ListCtrl_SetItemImage", (PyCFunction) _wrap_ListCtrl_SetItemImage, METH_VARARGS | METH_KEYWORDS },
31758 { (char *)"ListCtrl_GetItemText", (PyCFunction) _wrap_ListCtrl_GetItemText, METH_VARARGS | METH_KEYWORDS },
31759 { (char *)"ListCtrl_SetItemText", (PyCFunction) _wrap_ListCtrl_SetItemText, METH_VARARGS | METH_KEYWORDS },
31760 { (char *)"ListCtrl_GetItemData", (PyCFunction) _wrap_ListCtrl_GetItemData, METH_VARARGS | METH_KEYWORDS },
31761 { (char *)"ListCtrl_SetItemData", (PyCFunction) _wrap_ListCtrl_SetItemData, METH_VARARGS | METH_KEYWORDS },
31762 { (char *)"ListCtrl_GetItemPosition", (PyCFunction) _wrap_ListCtrl_GetItemPosition, METH_VARARGS | METH_KEYWORDS },
31763 { (char *)"ListCtrl_GetItemRect", (PyCFunction) _wrap_ListCtrl_GetItemRect, METH_VARARGS | METH_KEYWORDS },
31764 { (char *)"ListCtrl_SetItemPosition", (PyCFunction) _wrap_ListCtrl_SetItemPosition, METH_VARARGS | METH_KEYWORDS },
31765 { (char *)"ListCtrl_GetItemCount", (PyCFunction) _wrap_ListCtrl_GetItemCount, METH_VARARGS | METH_KEYWORDS },
31766 { (char *)"ListCtrl_GetColumnCount", (PyCFunction) _wrap_ListCtrl_GetColumnCount, METH_VARARGS | METH_KEYWORDS },
31767 { (char *)"ListCtrl_GetItemSpacing", (PyCFunction) _wrap_ListCtrl_GetItemSpacing, METH_VARARGS | METH_KEYWORDS },
31768 { (char *)"ListCtrl_SetItemSpacing", (PyCFunction) _wrap_ListCtrl_SetItemSpacing, METH_VARARGS | METH_KEYWORDS },
31769 { (char *)"ListCtrl_GetSelectedItemCount", (PyCFunction) _wrap_ListCtrl_GetSelectedItemCount, METH_VARARGS | METH_KEYWORDS },
31770 { (char *)"ListCtrl_GetTextColour", (PyCFunction) _wrap_ListCtrl_GetTextColour, METH_VARARGS | METH_KEYWORDS },
31771 { (char *)"ListCtrl_SetTextColour", (PyCFunction) _wrap_ListCtrl_SetTextColour, METH_VARARGS | METH_KEYWORDS },
31772 { (char *)"ListCtrl_GetTopItem", (PyCFunction) _wrap_ListCtrl_GetTopItem, METH_VARARGS | METH_KEYWORDS },
31773 { (char *)"ListCtrl_SetSingleStyle", (PyCFunction) _wrap_ListCtrl_SetSingleStyle, METH_VARARGS | METH_KEYWORDS },
31774 { (char *)"ListCtrl_SetWindowStyleFlag", (PyCFunction) _wrap_ListCtrl_SetWindowStyleFlag, METH_VARARGS | METH_KEYWORDS },
31775 { (char *)"ListCtrl_GetNextItem", (PyCFunction) _wrap_ListCtrl_GetNextItem, METH_VARARGS | METH_KEYWORDS },
31776 { (char *)"ListCtrl_GetImageList", (PyCFunction) _wrap_ListCtrl_GetImageList, METH_VARARGS | METH_KEYWORDS },
31777 { (char *)"ListCtrl_SetImageList", (PyCFunction) _wrap_ListCtrl_SetImageList, METH_VARARGS | METH_KEYWORDS },
31778 { (char *)"ListCtrl_AssignImageList", (PyCFunction) _wrap_ListCtrl_AssignImageList, METH_VARARGS | METH_KEYWORDS },
31779 { (char *)"ListCtrl_InReportView", (PyCFunction) _wrap_ListCtrl_InReportView, METH_VARARGS | METH_KEYWORDS },
31780 { (char *)"ListCtrl_IsVirtual", (PyCFunction) _wrap_ListCtrl_IsVirtual, METH_VARARGS | METH_KEYWORDS },
31781 { (char *)"ListCtrl_RefreshItem", (PyCFunction) _wrap_ListCtrl_RefreshItem, METH_VARARGS | METH_KEYWORDS },
31782 { (char *)"ListCtrl_RefreshItems", (PyCFunction) _wrap_ListCtrl_RefreshItems, METH_VARARGS | METH_KEYWORDS },
31783 { (char *)"ListCtrl_Arrange", (PyCFunction) _wrap_ListCtrl_Arrange, METH_VARARGS | METH_KEYWORDS },
31784 { (char *)"ListCtrl_DeleteItem", (PyCFunction) _wrap_ListCtrl_DeleteItem, METH_VARARGS | METH_KEYWORDS },
31785 { (char *)"ListCtrl_DeleteAllItems", (PyCFunction) _wrap_ListCtrl_DeleteAllItems, METH_VARARGS | METH_KEYWORDS },
31786 { (char *)"ListCtrl_DeleteColumn", (PyCFunction) _wrap_ListCtrl_DeleteColumn, METH_VARARGS | METH_KEYWORDS },
31787 { (char *)"ListCtrl_DeleteAllColumns", (PyCFunction) _wrap_ListCtrl_DeleteAllColumns, METH_VARARGS | METH_KEYWORDS },
31788 { (char *)"ListCtrl_ClearAll", (PyCFunction) _wrap_ListCtrl_ClearAll, METH_VARARGS | METH_KEYWORDS },
31789 { (char *)"ListCtrl_EditLabel", (PyCFunction) _wrap_ListCtrl_EditLabel, METH_VARARGS | METH_KEYWORDS },
31790 { (char *)"ListCtrl_EnsureVisible", (PyCFunction) _wrap_ListCtrl_EnsureVisible, METH_VARARGS | METH_KEYWORDS },
31791 { (char *)"ListCtrl_FindItem", (PyCFunction) _wrap_ListCtrl_FindItem, METH_VARARGS | METH_KEYWORDS },
31792 { (char *)"ListCtrl_FindItemData", (PyCFunction) _wrap_ListCtrl_FindItemData, METH_VARARGS | METH_KEYWORDS },
31793 { (char *)"ListCtrl_FindItemAtPos", (PyCFunction) _wrap_ListCtrl_FindItemAtPos, METH_VARARGS | METH_KEYWORDS },
31794 { (char *)"ListCtrl_HitTest", (PyCFunction) _wrap_ListCtrl_HitTest, METH_VARARGS | METH_KEYWORDS },
31795 { (char *)"ListCtrl_InsertItem", (PyCFunction) _wrap_ListCtrl_InsertItem, METH_VARARGS | METH_KEYWORDS },
31796 { (char *)"ListCtrl_InsertStringItem", (PyCFunction) _wrap_ListCtrl_InsertStringItem, METH_VARARGS | METH_KEYWORDS },
31797 { (char *)"ListCtrl_InsertImageItem", (PyCFunction) _wrap_ListCtrl_InsertImageItem, METH_VARARGS | METH_KEYWORDS },
31798 { (char *)"ListCtrl_InsertImageStringItem", (PyCFunction) _wrap_ListCtrl_InsertImageStringItem, METH_VARARGS | METH_KEYWORDS },
31799 { (char *)"ListCtrl_InsertColumnInfo", (PyCFunction) _wrap_ListCtrl_InsertColumnInfo, METH_VARARGS | METH_KEYWORDS },
31800 { (char *)"ListCtrl_InsertColumn", (PyCFunction) _wrap_ListCtrl_InsertColumn, METH_VARARGS | METH_KEYWORDS },
31801 { (char *)"ListCtrl_SetItemCount", (PyCFunction) _wrap_ListCtrl_SetItemCount, METH_VARARGS | METH_KEYWORDS },
31802 { (char *)"ListCtrl_ScrollList", (PyCFunction) _wrap_ListCtrl_ScrollList, METH_VARARGS | METH_KEYWORDS },
31803 { (char *)"ListCtrl_SetItemTextColour", (PyCFunction) _wrap_ListCtrl_SetItemTextColour, METH_VARARGS | METH_KEYWORDS },
31804 { (char *)"ListCtrl_GetItemTextColour", (PyCFunction) _wrap_ListCtrl_GetItemTextColour, METH_VARARGS | METH_KEYWORDS },
31805 { (char *)"ListCtrl_SetItemBackgroundColour", (PyCFunction) _wrap_ListCtrl_SetItemBackgroundColour, METH_VARARGS | METH_KEYWORDS },
31806 { (char *)"ListCtrl_GetItemBackgroundColour", (PyCFunction) _wrap_ListCtrl_GetItemBackgroundColour, METH_VARARGS | METH_KEYWORDS },
31807 { (char *)"ListCtrl_SortItems", (PyCFunction) _wrap_ListCtrl_SortItems, METH_VARARGS | METH_KEYWORDS },
31808 { (char *)"ListCtrl_GetMainWindow", (PyCFunction) _wrap_ListCtrl_GetMainWindow, METH_VARARGS | METH_KEYWORDS },
31809 { (char *)"ListCtrl_GetClassDefaultAttributes", (PyCFunction) _wrap_ListCtrl_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31810 { (char *)"ListCtrl_swigregister", ListCtrl_swigregister, METH_VARARGS },
31811 { (char *)"new_ListView", (PyCFunction) _wrap_new_ListView, METH_VARARGS | METH_KEYWORDS },
31812 { (char *)"new_PreListView", (PyCFunction) _wrap_new_PreListView, METH_VARARGS | METH_KEYWORDS },
31813 { (char *)"ListView_Create", (PyCFunction) _wrap_ListView_Create, METH_VARARGS | METH_KEYWORDS },
31814 { (char *)"ListView_Select", (PyCFunction) _wrap_ListView_Select, METH_VARARGS | METH_KEYWORDS },
31815 { (char *)"ListView_Focus", (PyCFunction) _wrap_ListView_Focus, METH_VARARGS | METH_KEYWORDS },
31816 { (char *)"ListView_GetFocusedItem", (PyCFunction) _wrap_ListView_GetFocusedItem, METH_VARARGS | METH_KEYWORDS },
31817 { (char *)"ListView_GetNextSelected", (PyCFunction) _wrap_ListView_GetNextSelected, METH_VARARGS | METH_KEYWORDS },
31818 { (char *)"ListView_GetFirstSelected", (PyCFunction) _wrap_ListView_GetFirstSelected, METH_VARARGS | METH_KEYWORDS },
31819 { (char *)"ListView_IsSelected", (PyCFunction) _wrap_ListView_IsSelected, METH_VARARGS | METH_KEYWORDS },
31820 { (char *)"ListView_SetColumnImage", (PyCFunction) _wrap_ListView_SetColumnImage, METH_VARARGS | METH_KEYWORDS },
31821 { (char *)"ListView_ClearColumnImage", (PyCFunction) _wrap_ListView_ClearColumnImage, METH_VARARGS | METH_KEYWORDS },
31822 { (char *)"ListView_swigregister", ListView_swigregister, METH_VARARGS },
31823 { (char *)"new_TreeItemId", (PyCFunction) _wrap_new_TreeItemId, METH_VARARGS | METH_KEYWORDS },
31824 { (char *)"delete_TreeItemId", (PyCFunction) _wrap_delete_TreeItemId, METH_VARARGS | METH_KEYWORDS },
31825 { (char *)"TreeItemId_IsOk", (PyCFunction) _wrap_TreeItemId_IsOk, METH_VARARGS | METH_KEYWORDS },
31826 { (char *)"TreeItemId___eq__", (PyCFunction) _wrap_TreeItemId___eq__, METH_VARARGS | METH_KEYWORDS },
31827 { (char *)"TreeItemId___ne__", (PyCFunction) _wrap_TreeItemId___ne__, METH_VARARGS | METH_KEYWORDS },
31828 { (char *)"TreeItemId_m_pItem_set", (PyCFunction) _wrap_TreeItemId_m_pItem_set, METH_VARARGS | METH_KEYWORDS },
31829 { (char *)"TreeItemId_m_pItem_get", (PyCFunction) _wrap_TreeItemId_m_pItem_get, METH_VARARGS | METH_KEYWORDS },
31830 { (char *)"TreeItemId_swigregister", TreeItemId_swigregister, METH_VARARGS },
31831 { (char *)"new_TreeItemData", (PyCFunction) _wrap_new_TreeItemData, METH_VARARGS | METH_KEYWORDS },
31832 { (char *)"TreeItemData_GetData", (PyCFunction) _wrap_TreeItemData_GetData, METH_VARARGS | METH_KEYWORDS },
31833 { (char *)"TreeItemData_SetData", (PyCFunction) _wrap_TreeItemData_SetData, METH_VARARGS | METH_KEYWORDS },
31834 { (char *)"TreeItemData_GetId", (PyCFunction) _wrap_TreeItemData_GetId, METH_VARARGS | METH_KEYWORDS },
31835 { (char *)"TreeItemData_SetId", (PyCFunction) _wrap_TreeItemData_SetId, METH_VARARGS | METH_KEYWORDS },
31836 { (char *)"TreeItemData_Destroy", (PyCFunction) _wrap_TreeItemData_Destroy, METH_VARARGS | METH_KEYWORDS },
31837 { (char *)"TreeItemData_swigregister", TreeItemData_swigregister, METH_VARARGS },
31838 { (char *)"new_TreeEvent", (PyCFunction) _wrap_new_TreeEvent, METH_VARARGS | METH_KEYWORDS },
31839 { (char *)"TreeEvent_GetItem", (PyCFunction) _wrap_TreeEvent_GetItem, METH_VARARGS | METH_KEYWORDS },
31840 { (char *)"TreeEvent_SetItem", (PyCFunction) _wrap_TreeEvent_SetItem, METH_VARARGS | METH_KEYWORDS },
31841 { (char *)"TreeEvent_GetOldItem", (PyCFunction) _wrap_TreeEvent_GetOldItem, METH_VARARGS | METH_KEYWORDS },
31842 { (char *)"TreeEvent_SetOldItem", (PyCFunction) _wrap_TreeEvent_SetOldItem, METH_VARARGS | METH_KEYWORDS },
31843 { (char *)"TreeEvent_GetPoint", (PyCFunction) _wrap_TreeEvent_GetPoint, METH_VARARGS | METH_KEYWORDS },
31844 { (char *)"TreeEvent_SetPoint", (PyCFunction) _wrap_TreeEvent_SetPoint, METH_VARARGS | METH_KEYWORDS },
31845 { (char *)"TreeEvent_GetKeyEvent", (PyCFunction) _wrap_TreeEvent_GetKeyEvent, METH_VARARGS | METH_KEYWORDS },
31846 { (char *)"TreeEvent_GetKeyCode", (PyCFunction) _wrap_TreeEvent_GetKeyCode, METH_VARARGS | METH_KEYWORDS },
31847 { (char *)"TreeEvent_SetKeyEvent", (PyCFunction) _wrap_TreeEvent_SetKeyEvent, METH_VARARGS | METH_KEYWORDS },
31848 { (char *)"TreeEvent_GetLabel", (PyCFunction) _wrap_TreeEvent_GetLabel, METH_VARARGS | METH_KEYWORDS },
31849 { (char *)"TreeEvent_SetLabel", (PyCFunction) _wrap_TreeEvent_SetLabel, METH_VARARGS | METH_KEYWORDS },
31850 { (char *)"TreeEvent_IsEditCancelled", (PyCFunction) _wrap_TreeEvent_IsEditCancelled, METH_VARARGS | METH_KEYWORDS },
31851 { (char *)"TreeEvent_SetEditCanceled", (PyCFunction) _wrap_TreeEvent_SetEditCanceled, METH_VARARGS | METH_KEYWORDS },
31852 { (char *)"TreeEvent_SetToolTip", (PyCFunction) _wrap_TreeEvent_SetToolTip, METH_VARARGS | METH_KEYWORDS },
31853 { (char *)"TreeEvent_swigregister", TreeEvent_swigregister, METH_VARARGS },
31854 { (char *)"new_TreeCtrl", (PyCFunction) _wrap_new_TreeCtrl, METH_VARARGS | METH_KEYWORDS },
31855 { (char *)"new_PreTreeCtrl", (PyCFunction) _wrap_new_PreTreeCtrl, METH_VARARGS | METH_KEYWORDS },
31856 { (char *)"TreeCtrl_Create", (PyCFunction) _wrap_TreeCtrl_Create, METH_VARARGS | METH_KEYWORDS },
31857 { (char *)"TreeCtrl__setCallbackInfo", (PyCFunction) _wrap_TreeCtrl__setCallbackInfo, METH_VARARGS | METH_KEYWORDS },
31858 { (char *)"TreeCtrl_GetCount", (PyCFunction) _wrap_TreeCtrl_GetCount, METH_VARARGS | METH_KEYWORDS },
31859 { (char *)"TreeCtrl_GetIndent", (PyCFunction) _wrap_TreeCtrl_GetIndent, METH_VARARGS | METH_KEYWORDS },
31860 { (char *)"TreeCtrl_SetIndent", (PyCFunction) _wrap_TreeCtrl_SetIndent, METH_VARARGS | METH_KEYWORDS },
31861 { (char *)"TreeCtrl_GetSpacing", (PyCFunction) _wrap_TreeCtrl_GetSpacing, METH_VARARGS | METH_KEYWORDS },
31862 { (char *)"TreeCtrl_SetSpacing", (PyCFunction) _wrap_TreeCtrl_SetSpacing, METH_VARARGS | METH_KEYWORDS },
31863 { (char *)"TreeCtrl_GetImageList", (PyCFunction) _wrap_TreeCtrl_GetImageList, METH_VARARGS | METH_KEYWORDS },
31864 { (char *)"TreeCtrl_GetStateImageList", (PyCFunction) _wrap_TreeCtrl_GetStateImageList, METH_VARARGS | METH_KEYWORDS },
31865 { (char *)"TreeCtrl_SetImageList", (PyCFunction) _wrap_TreeCtrl_SetImageList, METH_VARARGS | METH_KEYWORDS },
31866 { (char *)"TreeCtrl_SetStateImageList", (PyCFunction) _wrap_TreeCtrl_SetStateImageList, METH_VARARGS | METH_KEYWORDS },
31867 { (char *)"TreeCtrl_AssignImageList", (PyCFunction) _wrap_TreeCtrl_AssignImageList, METH_VARARGS | METH_KEYWORDS },
31868 { (char *)"TreeCtrl_AssignStateImageList", (PyCFunction) _wrap_TreeCtrl_AssignStateImageList, METH_VARARGS | METH_KEYWORDS },
31869 { (char *)"TreeCtrl_GetItemText", (PyCFunction) _wrap_TreeCtrl_GetItemText, METH_VARARGS | METH_KEYWORDS },
31870 { (char *)"TreeCtrl_GetItemImage", (PyCFunction) _wrap_TreeCtrl_GetItemImage, METH_VARARGS | METH_KEYWORDS },
31871 { (char *)"TreeCtrl_GetItemData", (PyCFunction) _wrap_TreeCtrl_GetItemData, METH_VARARGS | METH_KEYWORDS },
31872 { (char *)"TreeCtrl_GetItemPyData", (PyCFunction) _wrap_TreeCtrl_GetItemPyData, METH_VARARGS | METH_KEYWORDS },
31873 { (char *)"TreeCtrl_GetItemTextColour", (PyCFunction) _wrap_TreeCtrl_GetItemTextColour, METH_VARARGS | METH_KEYWORDS },
31874 { (char *)"TreeCtrl_GetItemBackgroundColour", (PyCFunction) _wrap_TreeCtrl_GetItemBackgroundColour, METH_VARARGS | METH_KEYWORDS },
31875 { (char *)"TreeCtrl_GetItemFont", (PyCFunction) _wrap_TreeCtrl_GetItemFont, METH_VARARGS | METH_KEYWORDS },
31876 { (char *)"TreeCtrl_SetItemText", (PyCFunction) _wrap_TreeCtrl_SetItemText, METH_VARARGS | METH_KEYWORDS },
31877 { (char *)"TreeCtrl_SetItemImage", (PyCFunction) _wrap_TreeCtrl_SetItemImage, METH_VARARGS | METH_KEYWORDS },
31878 { (char *)"TreeCtrl_SetItemData", (PyCFunction) _wrap_TreeCtrl_SetItemData, METH_VARARGS | METH_KEYWORDS },
31879 { (char *)"TreeCtrl_SetItemPyData", (PyCFunction) _wrap_TreeCtrl_SetItemPyData, METH_VARARGS | METH_KEYWORDS },
31880 { (char *)"TreeCtrl_SetItemHasChildren", (PyCFunction) _wrap_TreeCtrl_SetItemHasChildren, METH_VARARGS | METH_KEYWORDS },
31881 { (char *)"TreeCtrl_SetItemBold", (PyCFunction) _wrap_TreeCtrl_SetItemBold, METH_VARARGS | METH_KEYWORDS },
31882 { (char *)"TreeCtrl_SetItemTextColour", (PyCFunction) _wrap_TreeCtrl_SetItemTextColour, METH_VARARGS | METH_KEYWORDS },
31883 { (char *)"TreeCtrl_SetItemBackgroundColour", (PyCFunction) _wrap_TreeCtrl_SetItemBackgroundColour, METH_VARARGS | METH_KEYWORDS },
31884 { (char *)"TreeCtrl_SetItemFont", (PyCFunction) _wrap_TreeCtrl_SetItemFont, METH_VARARGS | METH_KEYWORDS },
31885 { (char *)"TreeCtrl_IsVisible", (PyCFunction) _wrap_TreeCtrl_IsVisible, METH_VARARGS | METH_KEYWORDS },
31886 { (char *)"TreeCtrl_ItemHasChildren", (PyCFunction) _wrap_TreeCtrl_ItemHasChildren, METH_VARARGS | METH_KEYWORDS },
31887 { (char *)"TreeCtrl_IsExpanded", (PyCFunction) _wrap_TreeCtrl_IsExpanded, METH_VARARGS | METH_KEYWORDS },
31888 { (char *)"TreeCtrl_IsSelected", (PyCFunction) _wrap_TreeCtrl_IsSelected, METH_VARARGS | METH_KEYWORDS },
31889 { (char *)"TreeCtrl_IsBold", (PyCFunction) _wrap_TreeCtrl_IsBold, METH_VARARGS | METH_KEYWORDS },
31890 { (char *)"TreeCtrl_GetChildrenCount", (PyCFunction) _wrap_TreeCtrl_GetChildrenCount, METH_VARARGS | METH_KEYWORDS },
31891 { (char *)"TreeCtrl_GetRootItem", (PyCFunction) _wrap_TreeCtrl_GetRootItem, METH_VARARGS | METH_KEYWORDS },
31892 { (char *)"TreeCtrl_GetSelection", (PyCFunction) _wrap_TreeCtrl_GetSelection, METH_VARARGS | METH_KEYWORDS },
31893 { (char *)"TreeCtrl_GetSelections", (PyCFunction) _wrap_TreeCtrl_GetSelections, METH_VARARGS | METH_KEYWORDS },
31894 { (char *)"TreeCtrl_GetItemParent", (PyCFunction) _wrap_TreeCtrl_GetItemParent, METH_VARARGS | METH_KEYWORDS },
31895 { (char *)"TreeCtrl_GetFirstChild", (PyCFunction) _wrap_TreeCtrl_GetFirstChild, METH_VARARGS | METH_KEYWORDS },
31896 { (char *)"TreeCtrl_GetNextChild", (PyCFunction) _wrap_TreeCtrl_GetNextChild, METH_VARARGS | METH_KEYWORDS },
31897 { (char *)"TreeCtrl_GetLastChild", (PyCFunction) _wrap_TreeCtrl_GetLastChild, METH_VARARGS | METH_KEYWORDS },
31898 { (char *)"TreeCtrl_GetNextSibling", (PyCFunction) _wrap_TreeCtrl_GetNextSibling, METH_VARARGS | METH_KEYWORDS },
31899 { (char *)"TreeCtrl_GetPrevSibling", (PyCFunction) _wrap_TreeCtrl_GetPrevSibling, METH_VARARGS | METH_KEYWORDS },
31900 { (char *)"TreeCtrl_GetFirstVisibleItem", (PyCFunction) _wrap_TreeCtrl_GetFirstVisibleItem, METH_VARARGS | METH_KEYWORDS },
31901 { (char *)"TreeCtrl_GetNextVisible", (PyCFunction) _wrap_TreeCtrl_GetNextVisible, METH_VARARGS | METH_KEYWORDS },
31902 { (char *)"TreeCtrl_GetPrevVisible", (PyCFunction) _wrap_TreeCtrl_GetPrevVisible, METH_VARARGS | METH_KEYWORDS },
31903 { (char *)"TreeCtrl_AddRoot", (PyCFunction) _wrap_TreeCtrl_AddRoot, METH_VARARGS | METH_KEYWORDS },
31904 { (char *)"TreeCtrl_PrependItem", (PyCFunction) _wrap_TreeCtrl_PrependItem, METH_VARARGS | METH_KEYWORDS },
31905 { (char *)"TreeCtrl_InsertItem", (PyCFunction) _wrap_TreeCtrl_InsertItem, METH_VARARGS | METH_KEYWORDS },
31906 { (char *)"TreeCtrl_InsertItemBefore", (PyCFunction) _wrap_TreeCtrl_InsertItemBefore, METH_VARARGS | METH_KEYWORDS },
31907 { (char *)"TreeCtrl_AppendItem", (PyCFunction) _wrap_TreeCtrl_AppendItem, METH_VARARGS | METH_KEYWORDS },
31908 { (char *)"TreeCtrl_Delete", (PyCFunction) _wrap_TreeCtrl_Delete, METH_VARARGS | METH_KEYWORDS },
31909 { (char *)"TreeCtrl_DeleteChildren", (PyCFunction) _wrap_TreeCtrl_DeleteChildren, METH_VARARGS | METH_KEYWORDS },
31910 { (char *)"TreeCtrl_DeleteAllItems", (PyCFunction) _wrap_TreeCtrl_DeleteAllItems, METH_VARARGS | METH_KEYWORDS },
31911 { (char *)"TreeCtrl_Expand", (PyCFunction) _wrap_TreeCtrl_Expand, METH_VARARGS | METH_KEYWORDS },
31912 { (char *)"TreeCtrl_Collapse", (PyCFunction) _wrap_TreeCtrl_Collapse, METH_VARARGS | METH_KEYWORDS },
31913 { (char *)"TreeCtrl_CollapseAndReset", (PyCFunction) _wrap_TreeCtrl_CollapseAndReset, METH_VARARGS | METH_KEYWORDS },
31914 { (char *)"TreeCtrl_Toggle", (PyCFunction) _wrap_TreeCtrl_Toggle, METH_VARARGS | METH_KEYWORDS },
31915 { (char *)"TreeCtrl_Unselect", (PyCFunction) _wrap_TreeCtrl_Unselect, METH_VARARGS | METH_KEYWORDS },
31916 { (char *)"TreeCtrl_UnselectItem", (PyCFunction) _wrap_TreeCtrl_UnselectItem, METH_VARARGS | METH_KEYWORDS },
31917 { (char *)"TreeCtrl_UnselectAll", (PyCFunction) _wrap_TreeCtrl_UnselectAll, METH_VARARGS | METH_KEYWORDS },
31918 { (char *)"TreeCtrl_SelectItem", (PyCFunction) _wrap_TreeCtrl_SelectItem, METH_VARARGS | METH_KEYWORDS },
31919 { (char *)"TreeCtrl_ToggleItemSelection", (PyCFunction) _wrap_TreeCtrl_ToggleItemSelection, METH_VARARGS | METH_KEYWORDS },
31920 { (char *)"TreeCtrl_EnsureVisible", (PyCFunction) _wrap_TreeCtrl_EnsureVisible, METH_VARARGS | METH_KEYWORDS },
31921 { (char *)"TreeCtrl_ScrollTo", (PyCFunction) _wrap_TreeCtrl_ScrollTo, METH_VARARGS | METH_KEYWORDS },
31922 { (char *)"TreeCtrl_EditLabel", (PyCFunction) _wrap_TreeCtrl_EditLabel, METH_VARARGS | METH_KEYWORDS },
31923 { (char *)"TreeCtrl_GetEditControl", (PyCFunction) _wrap_TreeCtrl_GetEditControl, METH_VARARGS | METH_KEYWORDS },
31924 { (char *)"TreeCtrl_SortChildren", (PyCFunction) _wrap_TreeCtrl_SortChildren, METH_VARARGS | METH_KEYWORDS },
31925 { (char *)"TreeCtrl_HitTest", (PyCFunction) _wrap_TreeCtrl_HitTest, METH_VARARGS | METH_KEYWORDS },
31926 { (char *)"TreeCtrl_GetBoundingRect", (PyCFunction) _wrap_TreeCtrl_GetBoundingRect, METH_VARARGS | METH_KEYWORDS },
31927 { (char *)"TreeCtrl_GetClassDefaultAttributes", (PyCFunction) _wrap_TreeCtrl_GetClassDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31928 { (char *)"TreeCtrl_swigregister", TreeCtrl_swigregister, METH_VARARGS },
31929 { (char *)"new_GenericDirCtrl", (PyCFunction) _wrap_new_GenericDirCtrl, METH_VARARGS | METH_KEYWORDS },
31930 { (char *)"new_PreGenericDirCtrl", (PyCFunction) _wrap_new_PreGenericDirCtrl, METH_VARARGS | METH_KEYWORDS },
31931 { (char *)"GenericDirCtrl_Create", (PyCFunction) _wrap_GenericDirCtrl_Create, METH_VARARGS | METH_KEYWORDS },
31932 { (char *)"GenericDirCtrl_ExpandPath", (PyCFunction) _wrap_GenericDirCtrl_ExpandPath, METH_VARARGS | METH_KEYWORDS },
31933 { (char *)"GenericDirCtrl_GetDefaultPath", (PyCFunction) _wrap_GenericDirCtrl_GetDefaultPath, METH_VARARGS | METH_KEYWORDS },
31934 { (char *)"GenericDirCtrl_SetDefaultPath", (PyCFunction) _wrap_GenericDirCtrl_SetDefaultPath, METH_VARARGS | METH_KEYWORDS },
31935 { (char *)"GenericDirCtrl_GetPath", (PyCFunction) _wrap_GenericDirCtrl_GetPath, METH_VARARGS | METH_KEYWORDS },
31936 { (char *)"GenericDirCtrl_GetFilePath", (PyCFunction) _wrap_GenericDirCtrl_GetFilePath, METH_VARARGS | METH_KEYWORDS },
31937 { (char *)"GenericDirCtrl_SetPath", (PyCFunction) _wrap_GenericDirCtrl_SetPath, METH_VARARGS | METH_KEYWORDS },
31938 { (char *)"GenericDirCtrl_ShowHidden", (PyCFunction) _wrap_GenericDirCtrl_ShowHidden, METH_VARARGS | METH_KEYWORDS },
31939 { (char *)"GenericDirCtrl_GetShowHidden", (PyCFunction) _wrap_GenericDirCtrl_GetShowHidden, METH_VARARGS | METH_KEYWORDS },
31940 { (char *)"GenericDirCtrl_GetFilter", (PyCFunction) _wrap_GenericDirCtrl_GetFilter, METH_VARARGS | METH_KEYWORDS },
31941 { (char *)"GenericDirCtrl_SetFilter", (PyCFunction) _wrap_GenericDirCtrl_SetFilter, METH_VARARGS | METH_KEYWORDS },
31942 { (char *)"GenericDirCtrl_GetFilterIndex", (PyCFunction) _wrap_GenericDirCtrl_GetFilterIndex, METH_VARARGS | METH_KEYWORDS },
31943 { (char *)"GenericDirCtrl_SetFilterIndex", (PyCFunction) _wrap_GenericDirCtrl_SetFilterIndex, METH_VARARGS | METH_KEYWORDS },
31944 { (char *)"GenericDirCtrl_GetRootId", (PyCFunction) _wrap_GenericDirCtrl_GetRootId, METH_VARARGS | METH_KEYWORDS },
31945 { (char *)"GenericDirCtrl_GetTreeCtrl", (PyCFunction) _wrap_GenericDirCtrl_GetTreeCtrl, METH_VARARGS | METH_KEYWORDS },
31946 { (char *)"GenericDirCtrl_GetFilterListCtrl", (PyCFunction) _wrap_GenericDirCtrl_GetFilterListCtrl, METH_VARARGS | METH_KEYWORDS },
31947 { (char *)"GenericDirCtrl_FindChild", (PyCFunction) _wrap_GenericDirCtrl_FindChild, METH_VARARGS | METH_KEYWORDS },
31948 { (char *)"GenericDirCtrl_DoResize", (PyCFunction) _wrap_GenericDirCtrl_DoResize, METH_VARARGS | METH_KEYWORDS },
31949 { (char *)"GenericDirCtrl_ReCreateTree", (PyCFunction) _wrap_GenericDirCtrl_ReCreateTree, METH_VARARGS | METH_KEYWORDS },
31950 { (char *)"GenericDirCtrl_swigregister", GenericDirCtrl_swigregister, METH_VARARGS },
31951 { (char *)"new_DirFilterListCtrl", (PyCFunction) _wrap_new_DirFilterListCtrl, METH_VARARGS | METH_KEYWORDS },
31952 { (char *)"new_PreDirFilterListCtrl", (PyCFunction) _wrap_new_PreDirFilterListCtrl, METH_VARARGS | METH_KEYWORDS },
31953 { (char *)"DirFilterListCtrl_Create", (PyCFunction) _wrap_DirFilterListCtrl_Create, METH_VARARGS | METH_KEYWORDS },
31954 { (char *)"DirFilterListCtrl_FillFilterList", (PyCFunction) _wrap_DirFilterListCtrl_FillFilterList, METH_VARARGS | METH_KEYWORDS },
31955 { (char *)"DirFilterListCtrl_swigregister", DirFilterListCtrl_swigregister, METH_VARARGS },
31956 { (char *)"new_PyControl", (PyCFunction) _wrap_new_PyControl, METH_VARARGS | METH_KEYWORDS },
31957 { (char *)"new_PrePyControl", (PyCFunction) _wrap_new_PrePyControl, METH_VARARGS | METH_KEYWORDS },
31958 { (char *)"PyControl__setCallbackInfo", (PyCFunction) _wrap_PyControl__setCallbackInfo, METH_VARARGS | METH_KEYWORDS },
31959 { (char *)"PyControl_SetBestSize", (PyCFunction) _wrap_PyControl_SetBestSize, METH_VARARGS | METH_KEYWORDS },
31960 { (char *)"PyControl_base_DoMoveWindow", (PyCFunction) _wrap_PyControl_base_DoMoveWindow, METH_VARARGS | METH_KEYWORDS },
31961 { (char *)"PyControl_base_DoSetSize", (PyCFunction) _wrap_PyControl_base_DoSetSize, METH_VARARGS | METH_KEYWORDS },
31962 { (char *)"PyControl_base_DoSetClientSize", (PyCFunction) _wrap_PyControl_base_DoSetClientSize, METH_VARARGS | METH_KEYWORDS },
31963 { (char *)"PyControl_base_DoSetVirtualSize", (PyCFunction) _wrap_PyControl_base_DoSetVirtualSize, METH_VARARGS | METH_KEYWORDS },
31964 { (char *)"PyControl_base_DoGetSize", (PyCFunction) _wrap_PyControl_base_DoGetSize, METH_VARARGS | METH_KEYWORDS },
31965 { (char *)"PyControl_base_DoGetClientSize", (PyCFunction) _wrap_PyControl_base_DoGetClientSize, METH_VARARGS | METH_KEYWORDS },
31966 { (char *)"PyControl_base_DoGetPosition", (PyCFunction) _wrap_PyControl_base_DoGetPosition, METH_VARARGS | METH_KEYWORDS },
31967 { (char *)"PyControl_base_DoGetVirtualSize", (PyCFunction) _wrap_PyControl_base_DoGetVirtualSize, METH_VARARGS | METH_KEYWORDS },
31968 { (char *)"PyControl_base_DoGetBestSize", (PyCFunction) _wrap_PyControl_base_DoGetBestSize, METH_VARARGS | METH_KEYWORDS },
31969 { (char *)"PyControl_base_InitDialog", (PyCFunction) _wrap_PyControl_base_InitDialog, METH_VARARGS | METH_KEYWORDS },
31970 { (char *)"PyControl_base_TransferDataToWindow", (PyCFunction) _wrap_PyControl_base_TransferDataToWindow, METH_VARARGS | METH_KEYWORDS },
31971 { (char *)"PyControl_base_TransferDataFromWindow", (PyCFunction) _wrap_PyControl_base_TransferDataFromWindow, METH_VARARGS | METH_KEYWORDS },
31972 { (char *)"PyControl_base_Validate", (PyCFunction) _wrap_PyControl_base_Validate, METH_VARARGS | METH_KEYWORDS },
31973 { (char *)"PyControl_base_AcceptsFocus", (PyCFunction) _wrap_PyControl_base_AcceptsFocus, METH_VARARGS | METH_KEYWORDS },
31974 { (char *)"PyControl_base_AcceptsFocusFromKeyboard", (PyCFunction) _wrap_PyControl_base_AcceptsFocusFromKeyboard, METH_VARARGS | METH_KEYWORDS },
31975 { (char *)"PyControl_base_GetMaxSize", (PyCFunction) _wrap_PyControl_base_GetMaxSize, METH_VARARGS | METH_KEYWORDS },
31976 { (char *)"PyControl_base_AddChild", (PyCFunction) _wrap_PyControl_base_AddChild, METH_VARARGS | METH_KEYWORDS },
31977 { (char *)"PyControl_base_RemoveChild", (PyCFunction) _wrap_PyControl_base_RemoveChild, METH_VARARGS | METH_KEYWORDS },
31978 { (char *)"PyControl_base_ShouldInheritColours", (PyCFunction) _wrap_PyControl_base_ShouldInheritColours, METH_VARARGS | METH_KEYWORDS },
31979 { (char *)"PyControl_base_ApplyParentThemeBackground", (PyCFunction) _wrap_PyControl_base_ApplyParentThemeBackground, METH_VARARGS | METH_KEYWORDS },
31980 { (char *)"PyControl_base_GetDefaultAttributes", (PyCFunction) _wrap_PyControl_base_GetDefaultAttributes, METH_VARARGS | METH_KEYWORDS },
31981 { (char *)"PyControl_swigregister", PyControl_swigregister, METH_VARARGS },
31982 { (char *)"new_HelpEvent", (PyCFunction) _wrap_new_HelpEvent, METH_VARARGS | METH_KEYWORDS },
31983 { (char *)"HelpEvent_GetPosition", (PyCFunction) _wrap_HelpEvent_GetPosition, METH_VARARGS | METH_KEYWORDS },
31984 { (char *)"HelpEvent_SetPosition", (PyCFunction) _wrap_HelpEvent_SetPosition, METH_VARARGS | METH_KEYWORDS },
31985 { (char *)"HelpEvent_GetLink", (PyCFunction) _wrap_HelpEvent_GetLink, METH_VARARGS | METH_KEYWORDS },
31986 { (char *)"HelpEvent_SetLink", (PyCFunction) _wrap_HelpEvent_SetLink, METH_VARARGS | METH_KEYWORDS },
31987 { (char *)"HelpEvent_GetTarget", (PyCFunction) _wrap_HelpEvent_GetTarget, METH_VARARGS | METH_KEYWORDS },
31988 { (char *)"HelpEvent_SetTarget", (PyCFunction) _wrap_HelpEvent_SetTarget, METH_VARARGS | METH_KEYWORDS },
31989 { (char *)"HelpEvent_swigregister", HelpEvent_swigregister, METH_VARARGS },
31990 { (char *)"new_ContextHelp", (PyCFunction) _wrap_new_ContextHelp, METH_VARARGS | METH_KEYWORDS },
31991 { (char *)"delete_ContextHelp", (PyCFunction) _wrap_delete_ContextHelp, METH_VARARGS | METH_KEYWORDS },
31992 { (char *)"ContextHelp_BeginContextHelp", (PyCFunction) _wrap_ContextHelp_BeginContextHelp, METH_VARARGS | METH_KEYWORDS },
31993 { (char *)"ContextHelp_EndContextHelp", (PyCFunction) _wrap_ContextHelp_EndContextHelp, METH_VARARGS | METH_KEYWORDS },
31994 { (char *)"ContextHelp_swigregister", ContextHelp_swigregister, METH_VARARGS },
31995 { (char *)"new_ContextHelpButton", (PyCFunction) _wrap_new_ContextHelpButton, METH_VARARGS | METH_KEYWORDS },
31996 { (char *)"ContextHelpButton_swigregister", ContextHelpButton_swigregister, METH_VARARGS },
31997 { (char *)"HelpProvider_Set", (PyCFunction) _wrap_HelpProvider_Set, METH_VARARGS | METH_KEYWORDS },
31998 { (char *)"HelpProvider_Get", (PyCFunction) _wrap_HelpProvider_Get, METH_VARARGS | METH_KEYWORDS },
31999 { (char *)"HelpProvider_GetHelp", (PyCFunction) _wrap_HelpProvider_GetHelp, METH_VARARGS | METH_KEYWORDS },
32000 { (char *)"HelpProvider_ShowHelp", (PyCFunction) _wrap_HelpProvider_ShowHelp, METH_VARARGS | METH_KEYWORDS },
32001 { (char *)"HelpProvider_AddHelp", (PyCFunction) _wrap_HelpProvider_AddHelp, METH_VARARGS | METH_KEYWORDS },
32002 { (char *)"HelpProvider_AddHelpById", (PyCFunction) _wrap_HelpProvider_AddHelpById, METH_VARARGS | METH_KEYWORDS },
32003 { (char *)"HelpProvider_RemoveHelp", (PyCFunction) _wrap_HelpProvider_RemoveHelp, METH_VARARGS | METH_KEYWORDS },
32004 { (char *)"HelpProvider_Destroy", (PyCFunction) _wrap_HelpProvider_Destroy, METH_VARARGS | METH_KEYWORDS },
32005 { (char *)"HelpProvider_swigregister", HelpProvider_swigregister, METH_VARARGS },
32006 { (char *)"new_SimpleHelpProvider", (PyCFunction) _wrap_new_SimpleHelpProvider, METH_VARARGS | METH_KEYWORDS },
32007 { (char *)"SimpleHelpProvider_swigregister", SimpleHelpProvider_swigregister, METH_VARARGS },
32008 { (char *)"new_DragImage", (PyCFunction) _wrap_new_DragImage, METH_VARARGS | METH_KEYWORDS },
32009 { (char *)"new_DragIcon", (PyCFunction) _wrap_new_DragIcon, METH_VARARGS | METH_KEYWORDS },
32010 { (char *)"new_DragString", (PyCFunction) _wrap_new_DragString, METH_VARARGS | METH_KEYWORDS },
32011 { (char *)"new_DragTreeItem", (PyCFunction) _wrap_new_DragTreeItem, METH_VARARGS | METH_KEYWORDS },
32012 { (char *)"new_DragListItem", (PyCFunction) _wrap_new_DragListItem, METH_VARARGS | METH_KEYWORDS },
32013 { (char *)"delete_DragImage", (PyCFunction) _wrap_delete_DragImage, METH_VARARGS | METH_KEYWORDS },
32014 { (char *)"DragImage_SetBackingBitmap", (PyCFunction) _wrap_DragImage_SetBackingBitmap, METH_VARARGS | METH_KEYWORDS },
32015 { (char *)"DragImage_BeginDrag", (PyCFunction) _wrap_DragImage_BeginDrag, METH_VARARGS | METH_KEYWORDS },
32016 { (char *)"DragImage_BeginDragBounded", (PyCFunction) _wrap_DragImage_BeginDragBounded, METH_VARARGS | METH_KEYWORDS },
32017 { (char *)"DragImage_EndDrag", (PyCFunction) _wrap_DragImage_EndDrag, METH_VARARGS | METH_KEYWORDS },
32018 { (char *)"DragImage_Move", (PyCFunction) _wrap_DragImage_Move, METH_VARARGS | METH_KEYWORDS },
32019 { (char *)"DragImage_Show", (PyCFunction) _wrap_DragImage_Show, METH_VARARGS | METH_KEYWORDS },
32020 { (char *)"DragImage_Hide", (PyCFunction) _wrap_DragImage_Hide, METH_VARARGS | METH_KEYWORDS },
32021 { (char *)"DragImage_GetImageRect", (PyCFunction) _wrap_DragImage_GetImageRect, METH_VARARGS | METH_KEYWORDS },
32022 { (char *)"DragImage_DoDrawImage", (PyCFunction) _wrap_DragImage_DoDrawImage, METH_VARARGS | METH_KEYWORDS },
32023 { (char *)"DragImage_UpdateBackingFromWindow", (PyCFunction) _wrap_DragImage_UpdateBackingFromWindow, METH_VARARGS | METH_KEYWORDS },
32024 { (char *)"DragImage_RedrawImage", (PyCFunction) _wrap_DragImage_RedrawImage, METH_VARARGS | METH_KEYWORDS },
32025 { (char *)"DragImage_swigregister", DragImage_swigregister, METH_VARARGS },
32026 { NULL, NULL }
32027 };
32028
32029
32030 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
32031
32032 static void *_p_wxNotebookEventTo_p_wxBookCtrlEvent(void *x) {
32033 return (void *)((wxBookCtrlEvent *) ((wxNotebookEvent *) x));
32034 }
32035 static void *_p_wxListbookEventTo_p_wxBookCtrlEvent(void *x) {
32036 return (void *)((wxBookCtrlEvent *) ((wxListbookEvent *) x));
32037 }
32038 static void *_p_wxBoxSizerTo_p_wxSizer(void *x) {
32039 return (void *)((wxSizer *) ((wxBoxSizer *) x));
32040 }
32041 static void *_p_wxStaticBoxSizerTo_p_wxSizer(void *x) {
32042 return (void *)((wxSizer *) (wxBoxSizer *) ((wxStaticBoxSizer *) x));
32043 }
32044 static void *_p_wxGridBagSizerTo_p_wxSizer(void *x) {
32045 return (void *)((wxSizer *) (wxGridSizer *)(wxFlexGridSizer *) ((wxGridBagSizer *) x));
32046 }
32047 static void *_p_wxGridSizerTo_p_wxSizer(void *x) {
32048 return (void *)((wxSizer *) ((wxGridSizer *) x));
32049 }
32050 static void *_p_wxFlexGridSizerTo_p_wxSizer(void *x) {
32051 return (void *)((wxSizer *) (wxGridSizer *) ((wxFlexGridSizer *) x));
32052 }
32053 static void *_p_wxNotebookSizerTo_p_wxSizer(void *x) {
32054 return (void *)((wxSizer *) ((wxNotebookSizer *) x));
32055 }
32056 static void *_p_wxPySizerTo_p_wxSizer(void *x) {
32057 return (void *)((wxSizer *) ((wxPySizer *) x));
32058 }
32059 static void *_p_wxBookCtrlSizerTo_p_wxSizer(void *x) {
32060 return (void *)((wxSizer *) ((wxBookCtrlSizer *) x));
32061 }
32062 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x) {
32063 return (void *)((wxEvent *) (wxCommandEvent *) ((wxContextMenuEvent *) x));
32064 }
32065 static void *_p_wxMenuEventTo_p_wxEvent(void *x) {
32066 return (void *)((wxEvent *) ((wxMenuEvent *) x));
32067 }
32068 static void *_p_wxCloseEventTo_p_wxEvent(void *x) {
32069 return (void *)((wxEvent *) ((wxCloseEvent *) x));
32070 }
32071 static void *_p_wxMouseEventTo_p_wxEvent(void *x) {
32072 return (void *)((wxEvent *) ((wxMouseEvent *) x));
32073 }
32074 static void *_p_wxEraseEventTo_p_wxEvent(void *x) {
32075 return (void *)((wxEvent *) ((wxEraseEvent *) x));
32076 }
32077 static void *_p_wxTreeEventTo_p_wxEvent(void *x) {
32078 return (void *)((wxEvent *) (wxCommandEvent *)(wxNotifyEvent *) ((wxTreeEvent *) x));
32079 }
32080 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x) {
32081 return (void *)((wxEvent *) ((wxSetCursorEvent *) x));
32082 }
32083 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x) {
32084 return (void *)((wxEvent *) ((wxInitDialogEvent *) x));
32085 }
32086 static void *_p_wxScrollEventTo_p_wxEvent(void *x) {
32087 return (void *)((wxEvent *) (wxCommandEvent *) ((wxScrollEvent *) x));
32088 }
32089 static void *_p_wxTextUrlEventTo_p_wxEvent(void *x) {
32090 return (void *)((wxEvent *) (wxCommandEvent *) ((wxTextUrlEvent *) x));
32091 }
32092 static void *_p_wxBookCtrlEventTo_p_wxEvent(void *x) {
32093 return (void *)((wxEvent *) (wxCommandEvent *)(wxNotifyEvent *) ((wxBookCtrlEvent *) x));
32094 }
32095 static void *_p_wxPyEventTo_p_wxEvent(void *x) {
32096 return (void *)((wxEvent *) ((wxPyEvent *) x));
32097 }
32098 static void *_p_wxNotifyEventTo_p_wxEvent(void *x) {
32099 return (void *)((wxEvent *) (wxCommandEvent *) ((wxNotifyEvent *) x));
32100 }
32101 static void *_p_wxListEventTo_p_wxEvent(void *x) {
32102 return (void *)((wxEvent *) (wxCommandEvent *)(wxNotifyEvent *) ((wxListEvent *) x));
32103 }
32104 static void *_p_wxNotebookEventTo_p_wxEvent(void *x) {
32105 return (void *)((wxEvent *) (wxCommandEvent *)(wxNotifyEvent *)(wxBookCtrlEvent *) ((wxNotebookEvent *) x));
32106 }
32107 static void *_p_wxListbookEventTo_p_wxEvent(void *x) {
32108 return (void *)((wxEvent *) (wxCommandEvent *)(wxNotifyEvent *)(wxBookCtrlEvent *) ((wxListbookEvent *) x));
32109 }
32110 static void *_p_wxHelpEventTo_p_wxEvent(void *x) {
32111 return (void *)((wxEvent *) (wxCommandEvent *) ((wxHelpEvent *) x));
32112 }
32113 static void *_p_wxIdleEventTo_p_wxEvent(void *x) {
32114 return (void *)((wxEvent *) ((wxIdleEvent *) x));
32115 }
32116 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x) {
32117 return (void *)((wxEvent *) (wxCommandEvent *) ((wxWindowCreateEvent *) x));
32118 }
32119 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x) {
32120 return (void *)((wxEvent *) ((wxQueryNewPaletteEvent *) x));
32121 }
32122 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x) {
32123 return (void *)((wxEvent *) ((wxMaximizeEvent *) x));
32124 }
32125 static void *_p_wxIconizeEventTo_p_wxEvent(void *x) {
32126 return (void *)((wxEvent *) ((wxIconizeEvent *) x));
32127 }
32128 static void *_p_wxActivateEventTo_p_wxEvent(void *x) {
32129 return (void *)((wxEvent *) ((wxActivateEvent *) x));
32130 }
32131 static void *_p_wxSizeEventTo_p_wxEvent(void *x) {
32132 return (void *)((wxEvent *) ((wxSizeEvent *) x));
32133 }
32134 static void *_p_wxMoveEventTo_p_wxEvent(void *x) {
32135 return (void *)((wxEvent *) ((wxMoveEvent *) x));
32136 }
32137 static void *_p_wxPaintEventTo_p_wxEvent(void *x) {
32138 return (void *)((wxEvent *) ((wxPaintEvent *) x));
32139 }
32140 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x) {
32141 return (void *)((wxEvent *) ((wxNcPaintEvent *) x));
32142 }
32143 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x) {
32144 return (void *)((wxEvent *) (wxCommandEvent *) ((wxUpdateUIEvent *) x));
32145 }
32146 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x) {
32147 return (void *)((wxEvent *) ((wxPaletteChangedEvent *) x));
32148 }
32149 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x) {
32150 return (void *)((wxEvent *) ((wxDisplayChangedEvent *) x));
32151 }
32152 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x) {
32153 return (void *)((wxEvent *) ((wxMouseCaptureChangedEvent *) x));
32154 }
32155 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x) {
32156 return (void *)((wxEvent *) ((wxSysColourChangedEvent *) x));
32157 }
32158 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x) {
32159 return (void *)((wxEvent *) ((wxDropFilesEvent *) x));
32160 }
32161 static void *_p_wxFocusEventTo_p_wxEvent(void *x) {
32162 return (void *)((wxEvent *) ((wxFocusEvent *) x));
32163 }
32164 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x) {
32165 return (void *)((wxEvent *) (wxCommandEvent *) ((wxChildFocusEvent *) x));
32166 }
32167 static void *_p_wxShowEventTo_p_wxEvent(void *x) {
32168 return (void *)((wxEvent *) ((wxShowEvent *) x));
32169 }
32170 static void *_p_wxCommandEventTo_p_wxEvent(void *x) {
32171 return (void *)((wxEvent *) ((wxCommandEvent *) x));
32172 }
32173 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x) {
32174 return (void *)((wxEvent *) (wxCommandEvent *) ((wxPyCommandEvent *) x));
32175 }
32176 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x) {
32177 return (void *)((wxEvent *) (wxCommandEvent *) ((wxWindowDestroyEvent *) x));
32178 }
32179 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x) {
32180 return (void *)((wxEvent *) ((wxNavigationKeyEvent *) x));
32181 }
32182 static void *_p_wxKeyEventTo_p_wxEvent(void *x) {
32183 return (void *)((wxEvent *) ((wxKeyEvent *) x));
32184 }
32185 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x) {
32186 return (void *)((wxEvent *) ((wxScrollWinEvent *) x));
32187 }
32188 static void *_p_wxSpinEventTo_p_wxEvent(void *x) {
32189 return (void *)((wxEvent *) (wxCommandEvent *)(wxNotifyEvent *) ((wxSpinEvent *) x));
32190 }
32191 static void *_p_wxComboBoxTo_p_wxItemContainer(void *x) {
32192 return (void *)((wxItemContainer *) ((wxComboBox *) x));
32193 }
32194 static void *_p_wxDirFilterListCtrlTo_p_wxItemContainer(void *x) {
32195 return (void *)((wxItemContainer *) (wxControlWithItems *)(wxChoice *) ((wxDirFilterListCtrl *) x));
32196 }
32197 static void *_p_wxChoiceTo_p_wxItemContainer(void *x) {
32198 return (void *)((wxItemContainer *) (wxControlWithItems *) ((wxChoice *) x));
32199 }
32200 static void *_p_wxControlWithItemsTo_p_wxItemContainer(void *x) {
32201 return (void *)((wxItemContainer *) ((wxControlWithItems *) x));
32202 }
32203 static void *_p_wxListBoxTo_p_wxItemContainer(void *x) {
32204 return (void *)((wxItemContainer *) (wxControlWithItems *) ((wxListBox *) x));
32205 }
32206 static void *_p_wxCheckListBoxTo_p_wxItemContainer(void *x) {
32207 return (void *)((wxItemContainer *) (wxControlWithItems *)(wxListBox *) ((wxCheckListBox *) x));
32208 }
32209 static void *_p_wxListViewTo_p_wxPyListCtrl(void *x) {
32210 return (void *)((wxPyListCtrl *) ((wxListView *) x));
32211 }
32212 static void *_p_wxCheckListBoxTo_p_wxControl(void *x) {
32213 return (void *)((wxControl *) (wxControlWithItems *)(wxListBox *) ((wxCheckListBox *) x));
32214 }
32215 static void *_p_wxListBoxTo_p_wxControl(void *x) {
32216 return (void *)((wxControl *) (wxControlWithItems *) ((wxListBox *) x));
32217 }
32218 static void *_p_wxChoiceTo_p_wxControl(void *x) {
32219 return (void *)((wxControl *) (wxControlWithItems *) ((wxChoice *) x));
32220 }
32221 static void *_p_wxToolBarTo_p_wxControl(void *x) {
32222 return (void *)((wxControl *) (wxToolBarBase *) ((wxToolBar *) x));
32223 }
32224 static void *_p_wxStaticBitmapTo_p_wxControl(void *x) {
32225 return (void *)((wxControl *) ((wxStaticBitmap *) x));
32226 }
32227 static void *_p_wxComboBoxTo_p_wxControl(void *x) {
32228 return (void *)((wxControl *) ((wxComboBox *) x));
32229 }
32230 static void *_p_wxSpinCtrlTo_p_wxControl(void *x) {
32231 return (void *)((wxControl *) ((wxSpinCtrl *) x));
32232 }
32233 static void *_p_wxStaticBoxTo_p_wxControl(void *x) {
32234 return (void *)((wxControl *) ((wxStaticBox *) x));
32235 }
32236 static void *_p_wxPyListCtrlTo_p_wxControl(void *x) {
32237 return (void *)((wxControl *) ((wxPyListCtrl *) x));
32238 }
32239 static void *_p_wxPyTreeCtrlTo_p_wxControl(void *x) {
32240 return (void *)((wxControl *) ((wxPyTreeCtrl *) x));
32241 }
32242 static void *_p_wxDirFilterListCtrlTo_p_wxControl(void *x) {
32243 return (void *)((wxControl *) (wxControlWithItems *)(wxChoice *) ((wxDirFilterListCtrl *) x));
32244 }
32245 static void *_p_wxScrollBarTo_p_wxControl(void *x) {
32246 return (void *)((wxControl *) ((wxScrollBar *) x));
32247 }
32248 static void *_p_wxBookCtrlTo_p_wxControl(void *x) {
32249 return (void *)((wxControl *) ((wxBookCtrl *) x));
32250 }
32251 static void *_p_wxRadioButtonTo_p_wxControl(void *x) {
32252 return (void *)((wxControl *) ((wxRadioButton *) x));
32253 }
32254 static void *_p_wxToggleButtonTo_p_wxControl(void *x) {
32255 return (void *)((wxControl *) ((wxToggleButton *) x));
32256 }
32257 static void *_p_wxGaugeTo_p_wxControl(void *x) {
32258 return (void *)((wxControl *) ((wxGauge *) x));
32259 }
32260 static void *_p_wxToolBarBaseTo_p_wxControl(void *x) {
32261 return (void *)((wxControl *) ((wxToolBarBase *) x));
32262 }
32263 static void *_p_wxBitmapButtonTo_p_wxControl(void *x) {
32264 return (void *)((wxControl *) (wxButton *) ((wxBitmapButton *) x));
32265 }
32266 static void *_p_wxButtonTo_p_wxControl(void *x) {
32267 return (void *)((wxControl *) ((wxButton *) x));
32268 }
32269 static void *_p_wxSpinButtonTo_p_wxControl(void *x) {
32270 return (void *)((wxControl *) ((wxSpinButton *) x));
32271 }
32272 static void *_p_wxContextHelpButtonTo_p_wxControl(void *x) {
32273 return (void *)((wxControl *) (wxButton *)(wxBitmapButton *) ((wxContextHelpButton *) x));
32274 }
32275 static void *_p_wxControlWithItemsTo_p_wxControl(void *x) {
32276 return (void *)((wxControl *) ((wxControlWithItems *) x));
32277 }
32278 static void *_p_wxRadioBoxTo_p_wxControl(void *x) {
32279 return (void *)((wxControl *) ((wxRadioBox *) x));
32280 }
32281 static void *_p_wxNotebookTo_p_wxControl(void *x) {
32282 return (void *)((wxControl *) (wxBookCtrl *) ((wxNotebook *) x));
32283 }
32284 static void *_p_wxListbookTo_p_wxControl(void *x) {
32285 return (void *)((wxControl *) (wxBookCtrl *) ((wxListbook *) x));
32286 }
32287 static void *_p_wxCheckBoxTo_p_wxControl(void *x) {
32288 return (void *)((wxControl *) ((wxCheckBox *) x));
32289 }
32290 static void *_p_wxTextCtrlTo_p_wxControl(void *x) {
32291 return (void *)((wxControl *) ((wxTextCtrl *) x));
32292 }
32293 static void *_p_wxListViewTo_p_wxControl(void *x) {
32294 return (void *)((wxControl *) (wxPyListCtrl *) ((wxListView *) x));
32295 }
32296 static void *_p_wxSliderTo_p_wxControl(void *x) {
32297 return (void *)((wxControl *) ((wxSlider *) x));
32298 }
32299 static void *_p_wxGenericDirCtrlTo_p_wxControl(void *x) {
32300 return (void *)((wxControl *) ((wxGenericDirCtrl *) x));
32301 }
32302 static void *_p_wxPyControlTo_p_wxControl(void *x) {
32303 return (void *)((wxControl *) ((wxPyControl *) x));
32304 }
32305 static void *_p_wxStaticLineTo_p_wxControl(void *x) {
32306 return (void *)((wxControl *) ((wxStaticLine *) x));
32307 }
32308 static void *_p_wxStaticTextTo_p_wxControl(void *x) {
32309 return (void *)((wxControl *) ((wxStaticText *) x));
32310 }
32311 static void *_p_wxToolBarTo_p_wxToolBarBase(void *x) {
32312 return (void *)((wxToolBarBase *) ((wxToolBar *) x));
32313 }
32314 static void *_p_wxDirFilterListCtrlTo_p_wxChoice(void *x) {
32315 return (void *)((wxChoice *) ((wxDirFilterListCtrl *) x));
32316 }
32317 static void *_p_wxTreeEventTo_p_wxNotifyEvent(void *x) {
32318 return (void *)((wxNotifyEvent *) ((wxTreeEvent *) x));
32319 }
32320 static void *_p_wxBookCtrlEventTo_p_wxNotifyEvent(void *x) {
32321 return (void *)((wxNotifyEvent *) ((wxBookCtrlEvent *) x));
32322 }
32323 static void *_p_wxListEventTo_p_wxNotifyEvent(void *x) {
32324 return (void *)((wxNotifyEvent *) ((wxListEvent *) x));
32325 }
32326 static void *_p_wxSpinEventTo_p_wxNotifyEvent(void *x) {
32327 return (void *)((wxNotifyEvent *) ((wxSpinEvent *) x));
32328 }
32329 static void *_p_wxNotebookEventTo_p_wxNotifyEvent(void *x) {
32330 return (void *)((wxNotifyEvent *) (wxBookCtrlEvent *) ((wxNotebookEvent *) x));
32331 }
32332 static void *_p_wxListbookEventTo_p_wxNotifyEvent(void *x) {
32333 return (void *)((wxNotifyEvent *) (wxBookCtrlEvent *) ((wxListbookEvent *) x));
32334 }
32335 static void *_p_wxBookCtrlTo_p_wxEvtHandler(void *x) {
32336 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxBookCtrl *) x));
32337 }
32338 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x) {
32339 return (void *)((wxEvtHandler *) (wxWindow *) ((wxMenuBar *) x));
32340 }
32341 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x) {
32342 return (void *)((wxEvtHandler *) ((wxValidator *) x));
32343 }
32344 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x) {
32345 return (void *)((wxEvtHandler *) (wxValidator *) ((wxPyValidator *) x));
32346 }
32347 static void *_p_wxToolBarTo_p_wxEvtHandler(void *x) {
32348 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *)(wxToolBarBase *) ((wxToolBar *) x));
32349 }
32350 static void *_p_wxMenuTo_p_wxEvtHandler(void *x) {
32351 return (void *)((wxEvtHandler *) ((wxMenu *) x));
32352 }
32353 static void *_p_wxToggleButtonTo_p_wxEvtHandler(void *x) {
32354 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxToggleButton *) x));
32355 }
32356 static void *_p_wxRadioButtonTo_p_wxEvtHandler(void *x) {
32357 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxRadioButton *) x));
32358 }
32359 static void *_p_wxWindowTo_p_wxEvtHandler(void *x) {
32360 return (void *)((wxEvtHandler *) ((wxWindow *) x));
32361 }
32362 static void *_p_wxControlTo_p_wxEvtHandler(void *x) {
32363 return (void *)((wxEvtHandler *) (wxWindow *) ((wxControl *) x));
32364 }
32365 static void *_p_wxToolBarBaseTo_p_wxEvtHandler(void *x) {
32366 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxToolBarBase *) x));
32367 }
32368 static void *_p_wxPyListCtrlTo_p_wxEvtHandler(void *x) {
32369 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxPyListCtrl *) x));
32370 }
32371 static void *_p_wxComboBoxTo_p_wxEvtHandler(void *x) {
32372 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxComboBox *) x));
32373 }
32374 static void *_p_wxDirFilterListCtrlTo_p_wxEvtHandler(void *x) {
32375 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *)(wxControlWithItems *)(wxChoice *) ((wxDirFilterListCtrl *) x));
32376 }
32377 static void *_p_wxPyControlTo_p_wxEvtHandler(void *x) {
32378 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxPyControl *) x));
32379 }
32380 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x) {
32381 return (void *)((wxEvtHandler *) ((wxPyApp *) x));
32382 }
32383 static void *_p_wxGenericDirCtrlTo_p_wxEvtHandler(void *x) {
32384 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxGenericDirCtrl *) x));
32385 }
32386 static void *_p_wxScrollBarTo_p_wxEvtHandler(void *x) {
32387 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxScrollBar *) x));
32388 }
32389 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x) {
32390 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxControlWithItems *) x));
32391 }
32392 static void *_p_wxGaugeTo_p_wxEvtHandler(void *x) {
32393 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxGauge *) x));
32394 }
32395 static void *_p_wxStaticLineTo_p_wxEvtHandler(void *x) {
32396 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxStaticLine *) x));
32397 }
32398 static void *_p_wxListbookTo_p_wxEvtHandler(void *x) {
32399 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *)(wxBookCtrl *) ((wxListbook *) x));
32400 }
32401 static void *_p_wxPyTreeCtrlTo_p_wxEvtHandler(void *x) {
32402 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxPyTreeCtrl *) x));
32403 }
32404 static void *_p_wxCheckBoxTo_p_wxEvtHandler(void *x) {
32405 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxCheckBox *) x));
32406 }
32407 static void *_p_wxRadioBoxTo_p_wxEvtHandler(void *x) {
32408 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxRadioBox *) x));
32409 }
32410 static void *_p_wxCheckListBoxTo_p_wxEvtHandler(void *x) {
32411 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *)(wxControlWithItems *)(wxListBox *) ((wxCheckListBox *) x));
32412 }
32413 static void *_p_wxListBoxTo_p_wxEvtHandler(void *x) {
32414 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *)(wxControlWithItems *) ((wxListBox *) x));
32415 }
32416 static void *_p_wxChoiceTo_p_wxEvtHandler(void *x) {
32417 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *)(wxControlWithItems *) ((wxChoice *) x));
32418 }
32419 static void *_p_wxNotebookTo_p_wxEvtHandler(void *x) {
32420 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *)(wxBookCtrl *) ((wxNotebook *) x));
32421 }
32422 static void *_p_wxStaticBitmapTo_p_wxEvtHandler(void *x) {
32423 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxStaticBitmap *) x));
32424 }
32425 static void *_p_wxListViewTo_p_wxEvtHandler(void *x) {
32426 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *)(wxPyListCtrl *) ((wxListView *) x));
32427 }
32428 static void *_p_wxSpinCtrlTo_p_wxEvtHandler(void *x) {
32429 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxSpinCtrl *) x));
32430 }
32431 static void *_p_wxStaticTextTo_p_wxEvtHandler(void *x) {
32432 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxStaticText *) x));
32433 }
32434 static void *_p_wxStaticBoxTo_p_wxEvtHandler(void *x) {
32435 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxStaticBox *) x));
32436 }
32437 static void *_p_wxSliderTo_p_wxEvtHandler(void *x) {
32438 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxSlider *) x));
32439 }
32440 static void *_p_wxSpinButtonTo_p_wxEvtHandler(void *x) {
32441 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxSpinButton *) x));
32442 }
32443 static void *_p_wxButtonTo_p_wxEvtHandler(void *x) {
32444 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxButton *) x));
32445 }
32446 static void *_p_wxBitmapButtonTo_p_wxEvtHandler(void *x) {
32447 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *)(wxButton *) ((wxBitmapButton *) x));
32448 }
32449 static void *_p_wxContextHelpButtonTo_p_wxEvtHandler(void *x) {
32450 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *)(wxButton *)(wxBitmapButton *) ((wxContextHelpButton *) x));
32451 }
32452 static void *_p_wxTextCtrlTo_p_wxEvtHandler(void *x) {
32453 return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxTextCtrl *) x));
32454 }
32455 static void *_p_wxCheckListBoxTo_p_wxListBox(void *x) {
32456 return (void *)((wxListBox *) ((wxCheckListBox *) x));
32457 }
32458 static void *_p_wxListbookTo_p_wxBookCtrl(void *x) {
32459 return (void *)((wxBookCtrl *) ((wxListbook *) x));
32460 }
32461 static void *_p_wxNotebookTo_p_wxBookCtrl(void *x) {
32462 return (void *)((wxBookCtrl *) ((wxNotebook *) x));
32463 }
32464 static void *_p_wxBitmapButtonTo_p_wxButton(void *x) {
32465 return (void *)((wxButton *) ((wxBitmapButton *) x));
32466 }
32467 static void *_p_wxContextHelpButtonTo_p_wxButton(void *x) {
32468 return (void *)((wxButton *) (wxBitmapButton *) ((wxContextHelpButton *) x));
32469 }
32470 static void *_p_wxContextHelpButtonTo_p_wxBitmapButton(void *x) {
32471 return (void *)((wxBitmapButton *) ((wxContextHelpButton *) x));
32472 }
32473 static void *_p_wxSimpleHelpProviderTo_p_wxHelpProvider(void *x) {
32474 return (void *)((wxHelpProvider *) ((wxSimpleHelpProvider *) x));
32475 }
32476 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x) {
32477 return (void *)((wxObject *) ((wxLayoutConstraints *) x));
32478 }
32479 static void *_p_wxGBSizerItemTo_p_wxObject(void *x) {
32480 return (void *)((wxObject *) (wxSizerItem *) ((wxGBSizerItem *) x));
32481 }
32482 static void *_p_wxSizerItemTo_p_wxObject(void *x) {
32483 return (void *)((wxObject *) ((wxSizerItem *) x));
32484 }
32485 static void *_p_wxScrollEventTo_p_wxObject(void *x) {
32486 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxScrollEvent *) x));
32487 }
32488 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x) {
32489 return (void *)((wxObject *) ((wxIndividualLayoutConstraint *) x));
32490 }
32491 static void *_p_wxTextUrlEventTo_p_wxObject(void *x) {
32492 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxTextUrlEvent *) x));
32493 }
32494 static void *_p_wxBookCtrlEventTo_p_wxObject(void *x) {
32495 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *)(wxNotifyEvent *) ((wxBookCtrlEvent *) x));
32496 }
32497 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x) {
32498 return (void *)((wxObject *) (wxSizer *)(wxBoxSizer *) ((wxStaticBoxSizer *) x));
32499 }
32500 static void *_p_wxBoxSizerTo_p_wxObject(void *x) {
32501 return (void *)((wxObject *) (wxSizer *) ((wxBoxSizer *) x));
32502 }
32503 static void *_p_wxSizerTo_p_wxObject(void *x) {
32504 return (void *)((wxObject *) ((wxSizer *) x));
32505 }
32506 static void *_p_wxGridBagSizerTo_p_wxObject(void *x) {
32507 return (void *)((wxObject *) (wxSizer *)(wxGridSizer *)(wxFlexGridSizer *) ((wxGridBagSizer *) x));
32508 }
32509 static void *_p_wxCheckBoxTo_p_wxObject(void *x) {
32510 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxCheckBox *) x));
32511 }
32512 static void *_p_wxPyTreeCtrlTo_p_wxObject(void *x) {
32513 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxPyTreeCtrl *) x));
32514 }
32515 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x) {
32516 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxUpdateUIEvent *) x));
32517 }
32518 static void *_p_wxEventTo_p_wxObject(void *x) {
32519 return (void *)((wxObject *) ((wxEvent *) x));
32520 }
32521 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x) {
32522 return (void *)((wxObject *) (wxSizer *)(wxGridSizer *) ((wxFlexGridSizer *) x));
32523 }
32524 static void *_p_wxGridSizerTo_p_wxObject(void *x) {
32525 return (void *)((wxObject *) (wxSizer *) ((wxGridSizer *) x));
32526 }
32527 static void *_p_wxInitDialogEventTo_p_wxObject(void *x) {
32528 return (void *)((wxObject *) (wxEvent *) ((wxInitDialogEvent *) x));
32529 }
32530 static void *_p_wxGenericDirCtrlTo_p_wxObject(void *x) {
32531 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxGenericDirCtrl *) x));
32532 }
32533 static void *_p_wxPyListCtrlTo_p_wxObject(void *x) {
32534 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxPyListCtrl *) x));
32535 }
32536 static void *_p_wxDirFilterListCtrlTo_p_wxObject(void *x) {
32537 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *)(wxControlWithItems *)(wxChoice *) ((wxDirFilterListCtrl *) x));
32538 }
32539 static void *_p_wxPaintEventTo_p_wxObject(void *x) {
32540 return (void *)((wxObject *) (wxEvent *) ((wxPaintEvent *) x));
32541 }
32542 static void *_p_wxNcPaintEventTo_p_wxObject(void *x) {
32543 return (void *)((wxObject *) (wxEvent *) ((wxNcPaintEvent *) x));
32544 }
32545 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x) {
32546 return (void *)((wxObject *) (wxEvent *) ((wxPaletteChangedEvent *) x));
32547 }
32548 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x) {
32549 return (void *)((wxObject *) (wxEvent *) ((wxDisplayChangedEvent *) x));
32550 }
32551 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x) {
32552 return (void *)((wxObject *) (wxEvent *) ((wxMouseCaptureChangedEvent *) x));
32553 }
32554 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x) {
32555 return (void *)((wxObject *) (wxEvent *) ((wxSysColourChangedEvent *) x));
32556 }
32557 static void *_p_wxStaticLineTo_p_wxObject(void *x) {
32558 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxStaticLine *) x));
32559 }
32560 static void *_p_wxControlTo_p_wxObject(void *x) {
32561 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *) ((wxControl *) x));
32562 }
32563 static void *_p_wxPyControlTo_p_wxObject(void *x) {
32564 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxPyControl *) x));
32565 }
32566 static void *_p_wxGaugeTo_p_wxObject(void *x) {
32567 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxGauge *) x));
32568 }
32569 static void *_p_wxRadioButtonTo_p_wxObject(void *x) {
32570 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxRadioButton *) x));
32571 }
32572 static void *_p_wxToggleButtonTo_p_wxObject(void *x) {
32573 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxToggleButton *) x));
32574 }
32575 static void *_p_wxToolBarBaseTo_p_wxObject(void *x) {
32576 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxToolBarBase *) x));
32577 }
32578 static void *_p_wxSetCursorEventTo_p_wxObject(void *x) {
32579 return (void *)((wxObject *) (wxEvent *) ((wxSetCursorEvent *) x));
32580 }
32581 static void *_p_wxChoiceTo_p_wxObject(void *x) {
32582 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *)(wxControlWithItems *) ((wxChoice *) x));
32583 }
32584 static void *_p_wxFSFileTo_p_wxObject(void *x) {
32585 return (void *)((wxObject *) ((wxFSFile *) x));
32586 }
32587 static void *_p_wxPySizerTo_p_wxObject(void *x) {
32588 return (void *)((wxObject *) (wxSizer *) ((wxPySizer *) x));
32589 }
32590 static void *_p_wxListViewTo_p_wxObject(void *x) {
32591 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *)(wxPyListCtrl *) ((wxListView *) x));
32592 }
32593 static void *_p_wxTextCtrlTo_p_wxObject(void *x) {
32594 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxTextCtrl *) x));
32595 }
32596 static void *_p_wxNotebookTo_p_wxObject(void *x) {
32597 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *)(wxBookCtrl *) ((wxNotebook *) x));
32598 }
32599 static void *_p_wxPyEventTo_p_wxObject(void *x) {
32600 return (void *)((wxObject *) (wxEvent *) ((wxPyEvent *) x));
32601 }
32602 static void *_p_wxNotifyEventTo_p_wxObject(void *x) {
32603 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxNotifyEvent *) x));
32604 }
32605 static void *_p_wxListbookTo_p_wxObject(void *x) {
32606 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *)(wxBookCtrl *) ((wxListbook *) x));
32607 }
32608 static void *_p_wxShowEventTo_p_wxObject(void *x) {
32609 return (void *)((wxObject *) (wxEvent *) ((wxShowEvent *) x));
32610 }
32611 static void *_p_wxStaticBitmapTo_p_wxObject(void *x) {
32612 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxStaticBitmap *) x));
32613 }
32614 static void *_p_wxSliderTo_p_wxObject(void *x) {
32615 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxSlider *) x));
32616 }
32617 static void *_p_wxMenuItemTo_p_wxObject(void *x) {
32618 return (void *)((wxObject *) ((wxMenuItem *) x));
32619 }
32620 static void *_p_wxIdleEventTo_p_wxObject(void *x) {
32621 return (void *)((wxObject *) (wxEvent *) ((wxIdleEvent *) x));
32622 }
32623 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x) {
32624 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxWindowCreateEvent *) x));
32625 }
32626 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x) {
32627 return (void *)((wxObject *) (wxEvent *) ((wxQueryNewPaletteEvent *) x));
32628 }
32629 static void *_p_wxMaximizeEventTo_p_wxObject(void *x) {
32630 return (void *)((wxObject *) (wxEvent *) ((wxMaximizeEvent *) x));
32631 }
32632 static void *_p_wxIconizeEventTo_p_wxObject(void *x) {
32633 return (void *)((wxObject *) (wxEvent *) ((wxIconizeEvent *) x));
32634 }
32635 static void *_p_wxSizeEventTo_p_wxObject(void *x) {
32636 return (void *)((wxObject *) (wxEvent *) ((wxSizeEvent *) x));
32637 }
32638 static void *_p_wxMoveEventTo_p_wxObject(void *x) {
32639 return (void *)((wxObject *) (wxEvent *) ((wxMoveEvent *) x));
32640 }
32641 static void *_p_wxActivateEventTo_p_wxObject(void *x) {
32642 return (void *)((wxObject *) (wxEvent *) ((wxActivateEvent *) x));
32643 }
32644 static void *_p_wxStaticBoxTo_p_wxObject(void *x) {
32645 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxStaticBox *) x));
32646 }
32647 static void *_p_wxContextHelpTo_p_wxObject(void *x) {
32648 return (void *)((wxObject *) ((wxContextHelp *) x));
32649 }
32650 static void *_p_wxXPMHandlerTo_p_wxObject(void *x) {
32651 return (void *)((wxObject *) (wxImageHandler *) ((wxXPMHandler *) x));
32652 }
32653 static void *_p_wxPNMHandlerTo_p_wxObject(void *x) {
32654 return (void *)((wxObject *) (wxImageHandler *) ((wxPNMHandler *) x));
32655 }
32656 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x) {
32657 return (void *)((wxObject *) (wxImageHandler *) ((wxJPEGHandler *) x));
32658 }
32659 static void *_p_wxPCXHandlerTo_p_wxObject(void *x) {
32660 return (void *)((wxObject *) (wxImageHandler *) ((wxPCXHandler *) x));
32661 }
32662 static void *_p_wxGIFHandlerTo_p_wxObject(void *x) {
32663 return (void *)((wxObject *) (wxImageHandler *) ((wxGIFHandler *) x));
32664 }
32665 static void *_p_wxPNGHandlerTo_p_wxObject(void *x) {
32666 return (void *)((wxObject *) (wxImageHandler *) ((wxPNGHandler *) x));
32667 }
32668 static void *_p_wxANIHandlerTo_p_wxObject(void *x) {
32669 return (void *)((wxObject *) (wxImageHandler *)(wxBMPHandler *)(wxICOHandler *)(wxCURHandler *) ((wxANIHandler *) x));
32670 }
32671 static void *_p_wxCURHandlerTo_p_wxObject(void *x) {
32672 return (void *)((wxObject *) (wxImageHandler *)(wxBMPHandler *)(wxICOHandler *) ((wxCURHandler *) x));
32673 }
32674 static void *_p_wxICOHandlerTo_p_wxObject(void *x) {
32675 return (void *)((wxObject *) (wxImageHandler *)(wxBMPHandler *) ((wxICOHandler *) x));
32676 }
32677 static void *_p_wxBMPHandlerTo_p_wxObject(void *x) {
32678 return (void *)((wxObject *) (wxImageHandler *) ((wxBMPHandler *) x));
32679 }
32680 static void *_p_wxImageHandlerTo_p_wxObject(void *x) {
32681 return (void *)((wxObject *) ((wxImageHandler *) x));
32682 }
32683 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x) {
32684 return (void *)((wxObject *) (wxImageHandler *) ((wxTIFFHandler *) x));
32685 }
32686 static void *_p_wxEvtHandlerTo_p_wxObject(void *x) {
32687 return (void *)((wxObject *) ((wxEvtHandler *) x));
32688 }
32689 static void *_p_wxListEventTo_p_wxObject(void *x) {
32690 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *)(wxNotifyEvent *) ((wxListEvent *) x));
32691 }
32692 static void *_p_wxListBoxTo_p_wxObject(void *x) {
32693 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *)(wxControlWithItems *) ((wxListBox *) x));
32694 }
32695 static void *_p_wxCheckListBoxTo_p_wxObject(void *x) {
32696 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *)(wxControlWithItems *)(wxListBox *) ((wxCheckListBox *) x));
32697 }
32698 static void *_p_wxBookCtrlTo_p_wxObject(void *x) {
32699 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxBookCtrl *) x));
32700 }
32701 static void *_p_wxButtonTo_p_wxObject(void *x) {
32702 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxButton *) x));
32703 }
32704 static void *_p_wxBitmapButtonTo_p_wxObject(void *x) {
32705 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *)(wxButton *) ((wxBitmapButton *) x));
32706 }
32707 static void *_p_wxSpinButtonTo_p_wxObject(void *x) {
32708 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxSpinButton *) x));
32709 }
32710 static void *_p_wxContextHelpButtonTo_p_wxObject(void *x) {
32711 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *)(wxButton *)(wxBitmapButton *) ((wxContextHelpButton *) x));
32712 }
32713 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x) {
32714 return (void *)((wxObject *) ((wxAcceleratorTable *) x));
32715 }
32716 static void *_p_wxScrollBarTo_p_wxObject(void *x) {
32717 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxScrollBar *) x));
32718 }
32719 static void *_p_wxRadioBoxTo_p_wxObject(void *x) {
32720 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxRadioBox *) x));
32721 }
32722 static void *_p_wxComboBoxTo_p_wxObject(void *x) {
32723 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxComboBox *) x));
32724 }
32725 static void *_p_wxHelpEventTo_p_wxObject(void *x) {
32726 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxHelpEvent *) x));
32727 }
32728 static void *_p_wxListItemTo_p_wxObject(void *x) {
32729 return (void *)((wxObject *) ((wxListItem *) x));
32730 }
32731 static void *_p_wxImageTo_p_wxObject(void *x) {
32732 return (void *)((wxObject *) ((wxImage *) x));
32733 }
32734 static void *_p_wxNotebookSizerTo_p_wxObject(void *x) {
32735 return (void *)((wxObject *) (wxSizer *) ((wxNotebookSizer *) x));
32736 }
32737 static void *_p_wxScrollWinEventTo_p_wxObject(void *x) {
32738 return (void *)((wxObject *) (wxEvent *) ((wxScrollWinEvent *) x));
32739 }
32740 static void *_p_wxSpinEventTo_p_wxObject(void *x) {
32741 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *)(wxNotifyEvent *) ((wxSpinEvent *) x));
32742 }
32743 static void *_p_wxGenericDragImageTo_p_wxObject(void *x) {
32744 return (void *)((wxObject *) ((wxGenericDragImage *) x));
32745 }
32746 static void *_p_wxSpinCtrlTo_p_wxObject(void *x) {
32747 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxSpinCtrl *) x));
32748 }
32749 static void *_p_wxNotebookEventTo_p_wxObject(void *x) {
32750 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *)(wxNotifyEvent *)(wxBookCtrlEvent *) ((wxNotebookEvent *) x));
32751 }
32752 static void *_p_wxListbookEventTo_p_wxObject(void *x) {
32753 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *)(wxNotifyEvent *)(wxBookCtrlEvent *) ((wxListbookEvent *) x));
32754 }
32755 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x) {
32756 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxWindowDestroyEvent *) x));
32757 }
32758 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x) {
32759 return (void *)((wxObject *) (wxEvent *) ((wxNavigationKeyEvent *) x));
32760 }
32761 static void *_p_wxKeyEventTo_p_wxObject(void *x) {
32762 return (void *)((wxObject *) (wxEvent *) ((wxKeyEvent *) x));
32763 }
32764 static void *_p_wxWindowTo_p_wxObject(void *x) {
32765 return (void *)((wxObject *) (wxEvtHandler *) ((wxWindow *) x));
32766 }
32767 static void *_p_wxMenuTo_p_wxObject(void *x) {
32768 return (void *)((wxObject *) (wxEvtHandler *) ((wxMenu *) x));
32769 }
32770 static void *_p_wxMenuBarTo_p_wxObject(void *x) {
32771 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *) ((wxMenuBar *) x));
32772 }
32773 static void *_p_wxFileSystemTo_p_wxObject(void *x) {
32774 return (void *)((wxObject *) ((wxFileSystem *) x));
32775 }
32776 static void *_p_wxContextMenuEventTo_p_wxObject(void *x) {
32777 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxContextMenuEvent *) x));
32778 }
32779 static void *_p_wxMenuEventTo_p_wxObject(void *x) {
32780 return (void *)((wxObject *) (wxEvent *) ((wxMenuEvent *) x));
32781 }
32782 static void *_p_wxPyAppTo_p_wxObject(void *x) {
32783 return (void *)((wxObject *) (wxEvtHandler *) ((wxPyApp *) x));
32784 }
32785 static void *_p_wxCloseEventTo_p_wxObject(void *x) {
32786 return (void *)((wxObject *) (wxEvent *) ((wxCloseEvent *) x));
32787 }
32788 static void *_p_wxMouseEventTo_p_wxObject(void *x) {
32789 return (void *)((wxObject *) (wxEvent *) ((wxMouseEvent *) x));
32790 }
32791 static void *_p_wxEraseEventTo_p_wxObject(void *x) {
32792 return (void *)((wxObject *) (wxEvent *) ((wxEraseEvent *) x));
32793 }
32794 static void *_p_wxTreeEventTo_p_wxObject(void *x) {
32795 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *)(wxNotifyEvent *) ((wxTreeEvent *) x));
32796 }
32797 static void *_p_wxPyCommandEventTo_p_wxObject(void *x) {
32798 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxPyCommandEvent *) x));
32799 }
32800 static void *_p_wxCommandEventTo_p_wxObject(void *x) {
32801 return (void *)((wxObject *) (wxEvent *) ((wxCommandEvent *) x));
32802 }
32803 static void *_p_wxStaticTextTo_p_wxObject(void *x) {
32804 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxStaticText *) x));
32805 }
32806 static void *_p_wxDropFilesEventTo_p_wxObject(void *x) {
32807 return (void *)((wxObject *) (wxEvent *) ((wxDropFilesEvent *) x));
32808 }
32809 static void *_p_wxFocusEventTo_p_wxObject(void *x) {
32810 return (void *)((wxObject *) (wxEvent *) ((wxFocusEvent *) x));
32811 }
32812 static void *_p_wxChildFocusEventTo_p_wxObject(void *x) {
32813 return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxChildFocusEvent *) x));
32814 }
32815 static void *_p_wxControlWithItemsTo_p_wxObject(void *x) {
32816 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxControlWithItems *) x));
32817 }
32818 static void *_p_wxToolBarToolBaseTo_p_wxObject(void *x) {
32819 return (void *)((wxObject *) ((wxToolBarToolBase *) x));
32820 }
32821 static void *_p_wxToolBarTo_p_wxObject(void *x) {
32822 return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *)(wxToolBarBase *) ((wxToolBar *) x));
32823 }
32824 static void *_p_wxPyValidatorTo_p_wxObject(void *x) {
32825 return (void *)((wxObject *) (wxEvtHandler *)(wxValidator *) ((wxPyValidator *) x));
32826 }
32827 static void *_p_wxValidatorTo_p_wxObject(void *x) {
32828 return (void *)((wxObject *) (wxEvtHandler *) ((wxValidator *) x));
32829 }
32830 static void *_p_wxBookCtrlSizerTo_p_wxObject(void *x) {
32831 return (void *)((wxObject *) (wxSizer *) ((wxBookCtrlSizer *) x));
32832 }
32833 static void *_p_wxBookCtrlTo_p_wxWindow(void *x) {
32834 return (void *)((wxWindow *) (wxControl *) ((wxBookCtrl *) x));
32835 }
32836 static void *_p_wxMenuBarTo_p_wxWindow(void *x) {
32837 return (void *)((wxWindow *) ((wxMenuBar *) x));
32838 }
32839 static void *_p_wxToolBarTo_p_wxWindow(void *x) {
32840 return (void *)((wxWindow *) (wxControl *)(wxToolBarBase *) ((wxToolBar *) x));
32841 }
32842 static void *_p_wxToggleButtonTo_p_wxWindow(void *x) {
32843 return (void *)((wxWindow *) (wxControl *) ((wxToggleButton *) x));
32844 }
32845 static void *_p_wxRadioButtonTo_p_wxWindow(void *x) {
32846 return (void *)((wxWindow *) (wxControl *) ((wxRadioButton *) x));
32847 }
32848 static void *_p_wxPyControlTo_p_wxWindow(void *x) {
32849 return (void *)((wxWindow *) (wxControl *) ((wxPyControl *) x));
32850 }
32851 static void *_p_wxControlTo_p_wxWindow(void *x) {
32852 return (void *)((wxWindow *) ((wxControl *) x));
32853 }
32854 static void *_p_wxToolBarBaseTo_p_wxWindow(void *x) {
32855 return (void *)((wxWindow *) (wxControl *) ((wxToolBarBase *) x));
32856 }
32857 static void *_p_wxDirFilterListCtrlTo_p_wxWindow(void *x) {
32858 return (void *)((wxWindow *) (wxControl *)(wxControlWithItems *)(wxChoice *) ((wxDirFilterListCtrl *) x));
32859 }
32860 static void *_p_wxPyListCtrlTo_p_wxWindow(void *x) {
32861 return (void *)((wxWindow *) (wxControl *) ((wxPyListCtrl *) x));
32862 }
32863 static void *_p_wxComboBoxTo_p_wxWindow(void *x) {
32864 return (void *)((wxWindow *) (wxControl *) ((wxComboBox *) x));
32865 }
32866 static void *_p_wxGenericDirCtrlTo_p_wxWindow(void *x) {
32867 return (void *)((wxWindow *) (wxControl *) ((wxGenericDirCtrl *) x));
32868 }
32869 static void *_p_wxScrollBarTo_p_wxWindow(void *x) {
32870 return (void *)((wxWindow *) (wxControl *) ((wxScrollBar *) x));
32871 }
32872 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x) {
32873 return (void *)((wxWindow *) (wxControl *) ((wxControlWithItems *) x));
32874 }
32875 static void *_p_wxGaugeTo_p_wxWindow(void *x) {
32876 return (void *)((wxWindow *) (wxControl *) ((wxGauge *) x));
32877 }
32878 static void *_p_wxStaticLineTo_p_wxWindow(void *x) {
32879 return (void *)((wxWindow *) (wxControl *) ((wxStaticLine *) x));
32880 }
32881 static void *_p_wxListbookTo_p_wxWindow(void *x) {
32882 return (void *)((wxWindow *) (wxControl *)(wxBookCtrl *) ((wxListbook *) x));
32883 }
32884 static void *_p_wxPyTreeCtrlTo_p_wxWindow(void *x) {
32885 return (void *)((wxWindow *) (wxControl *) ((wxPyTreeCtrl *) x));
32886 }
32887 static void *_p_wxCheckBoxTo_p_wxWindow(void *x) {
32888 return (void *)((wxWindow *) (wxControl *) ((wxCheckBox *) x));
32889 }
32890 static void *_p_wxRadioBoxTo_p_wxWindow(void *x) {
32891 return (void *)((wxWindow *) (wxControl *) ((wxRadioBox *) x));
32892 }
32893 static void *_p_wxCheckListBoxTo_p_wxWindow(void *x) {
32894 return (void *)((wxWindow *) (wxControl *)(wxControlWithItems *)(wxListBox *) ((wxCheckListBox *) x));
32895 }
32896 static void *_p_wxChoiceTo_p_wxWindow(void *x) {
32897 return (void *)((wxWindow *) (wxControl *)(wxControlWithItems *) ((wxChoice *) x));
32898 }
32899 static void *_p_wxListBoxTo_p_wxWindow(void *x) {
32900 return (void *)((wxWindow *) (wxControl *)(wxControlWithItems *) ((wxListBox *) x));
32901 }
32902 static void *_p_wxListViewTo_p_wxWindow(void *x) {
32903 return (void *)((wxWindow *) (wxControl *)(wxPyListCtrl *) ((wxListView *) x));
32904 }
32905 static void *_p_wxNotebookTo_p_wxWindow(void *x) {
32906 return (void *)((wxWindow *) (wxControl *)(wxBookCtrl *) ((wxNotebook *) x));
32907 }
32908 static void *_p_wxStaticBitmapTo_p_wxWindow(void *x) {
32909 return (void *)((wxWindow *) (wxControl *) ((wxStaticBitmap *) x));
32910 }
32911 static void *_p_wxSpinCtrlTo_p_wxWindow(void *x) {
32912 return (void *)((wxWindow *) (wxControl *) ((wxSpinCtrl *) x));
32913 }
32914 static void *_p_wxStaticTextTo_p_wxWindow(void *x) {
32915 return (void *)((wxWindow *) (wxControl *) ((wxStaticText *) x));
32916 }
32917 static void *_p_wxStaticBoxTo_p_wxWindow(void *x) {
32918 return (void *)((wxWindow *) (wxControl *) ((wxStaticBox *) x));
32919 }
32920 static void *_p_wxSliderTo_p_wxWindow(void *x) {
32921 return (void *)((wxWindow *) (wxControl *) ((wxSlider *) x));
32922 }
32923 static void *_p_wxSpinButtonTo_p_wxWindow(void *x) {
32924 return (void *)((wxWindow *) (wxControl *) ((wxSpinButton *) x));
32925 }
32926 static void *_p_wxButtonTo_p_wxWindow(void *x) {
32927 return (void *)((wxWindow *) (wxControl *) ((wxButton *) x));
32928 }
32929 static void *_p_wxBitmapButtonTo_p_wxWindow(void *x) {
32930 return (void *)((wxWindow *) (wxControl *)(wxButton *) ((wxBitmapButton *) x));
32931 }
32932 static void *_p_wxContextHelpButtonTo_p_wxWindow(void *x) {
32933 return (void *)((wxWindow *) (wxControl *)(wxButton *)(wxBitmapButton *) ((wxContextHelpButton *) x));
32934 }
32935 static void *_p_wxTextCtrlTo_p_wxWindow(void *x) {
32936 return (void *)((wxWindow *) (wxControl *) ((wxTextCtrl *) x));
32937 }
32938 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x) {
32939 return (void *)((wxCommandEvent *) ((wxWindowDestroyEvent *) x));
32940 }
32941 static void *_p_wxBookCtrlEventTo_p_wxCommandEvent(void *x) {
32942 return (void *)((wxCommandEvent *) (wxNotifyEvent *) ((wxBookCtrlEvent *) x));
32943 }
32944 static void *_p_wxTextUrlEventTo_p_wxCommandEvent(void *x) {
32945 return (void *)((wxCommandEvent *) ((wxTextUrlEvent *) x));
32946 }
32947 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x) {
32948 return (void *)((wxCommandEvent *) ((wxScrollEvent *) x));
32949 }
32950 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x) {
32951 return (void *)((wxCommandEvent *) ((wxPyCommandEvent *) x));
32952 }
32953 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x) {
32954 return (void *)((wxCommandEvent *) ((wxContextMenuEvent *) x));
32955 }
32956 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x) {
32957 return (void *)((wxCommandEvent *) ((wxChildFocusEvent *) x));
32958 }
32959 static void *_p_wxListbookEventTo_p_wxCommandEvent(void *x) {
32960 return (void *)((wxCommandEvent *) (wxNotifyEvent *)(wxBookCtrlEvent *) ((wxListbookEvent *) x));
32961 }
32962 static void *_p_wxNotebookEventTo_p_wxCommandEvent(void *x) {
32963 return (void *)((wxCommandEvent *) (wxNotifyEvent *)(wxBookCtrlEvent *) ((wxNotebookEvent *) x));
32964 }
32965 static void *_p_wxListEventTo_p_wxCommandEvent(void *x) {
32966 return (void *)((wxCommandEvent *) (wxNotifyEvent *) ((wxListEvent *) x));
32967 }
32968 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x) {
32969 return (void *)((wxCommandEvent *) ((wxWindowCreateEvent *) x));
32970 }
32971 static void *_p_wxTreeEventTo_p_wxCommandEvent(void *x) {
32972 return (void *)((wxCommandEvent *) (wxNotifyEvent *) ((wxTreeEvent *) x));
32973 }
32974 static void *_p_wxSpinEventTo_p_wxCommandEvent(void *x) {
32975 return (void *)((wxCommandEvent *) (wxNotifyEvent *) ((wxSpinEvent *) x));
32976 }
32977 static void *_p_wxHelpEventTo_p_wxCommandEvent(void *x) {
32978 return (void *)((wxCommandEvent *) ((wxHelpEvent *) x));
32979 }
32980 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x) {
32981 return (void *)((wxCommandEvent *) ((wxNotifyEvent *) x));
32982 }
32983 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x) {
32984 return (void *)((wxCommandEvent *) ((wxUpdateUIEvent *) x));
32985 }
32986 static void *_p_wxDirFilterListCtrlTo_p_wxControlWithItems(void *x) {
32987 return (void *)((wxControlWithItems *) (wxChoice *) ((wxDirFilterListCtrl *) x));
32988 }
32989 static void *_p_wxChoiceTo_p_wxControlWithItems(void *x) {
32990 return (void *)((wxControlWithItems *) ((wxChoice *) x));
32991 }
32992 static void *_p_wxListBoxTo_p_wxControlWithItems(void *x) {
32993 return (void *)((wxControlWithItems *) ((wxListBox *) x));
32994 }
32995 static void *_p_wxCheckListBoxTo_p_wxControlWithItems(void *x) {
32996 return (void *)((wxControlWithItems *) (wxListBox *) ((wxCheckListBox *) x));
32997 }
32998 static void *_p_wxPyValidatorTo_p_wxValidator(void *x) {
32999 return (void *)((wxValidator *) ((wxPyValidator *) x));
33000 }
33001 static swig_type_info _swigt__p_wxTextUrlEvent[] = {{"_p_wxTextUrlEvent", 0, "wxTextUrlEvent *", 0, 0, 0, 0},{"_p_wxTextUrlEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33002 static swig_type_info _swigt__p_wxBookCtrlEvent[] = {{"_p_wxBookCtrlEvent", 0, "wxBookCtrlEvent *", 0, 0, 0, 0},{"_p_wxBookCtrlEvent", 0, 0, 0, 0, 0, 0},{"_p_wxNotebookEvent", _p_wxNotebookEventTo_p_wxBookCtrlEvent, 0, 0, 0, 0, 0},{"_p_wxListbookEvent", _p_wxListbookEventTo_p_wxBookCtrlEvent, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33003 static swig_type_info _swigt__p_wxSizer[] = {{"_p_wxSizer", 0, "wxSizer *", 0, 0, 0, 0},{"_p_wxSizer", 0, 0, 0, 0, 0, 0},{"_p_wxBoxSizer", _p_wxBoxSizerTo_p_wxSizer, 0, 0, 0, 0, 0},{"_p_wxStaticBoxSizer", _p_wxStaticBoxSizerTo_p_wxSizer, 0, 0, 0, 0, 0},{"_p_wxGridBagSizer", _p_wxGridBagSizerTo_p_wxSizer, 0, 0, 0, 0, 0},{"_p_wxGridSizer", _p_wxGridSizerTo_p_wxSizer, 0, 0, 0, 0, 0},{"_p_wxFlexGridSizer", _p_wxFlexGridSizerTo_p_wxSizer, 0, 0, 0, 0, 0},{"_p_wxNotebookSizer", _p_wxNotebookSizerTo_p_wxSizer, 0, 0, 0, 0, 0},{"_p_wxPySizer", _p_wxPySizerTo_p_wxSizer, 0, 0, 0, 0, 0},{"_p_wxBookCtrlSizer", _p_wxBookCtrlSizerTo_p_wxSizer, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33004 static swig_type_info _swigt__p_wxCheckBox[] = {{"_p_wxCheckBox", 0, "wxCheckBox *", 0, 0, 0, 0},{"_p_wxCheckBox", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33005 static swig_type_info _swigt__p_wxPyTreeCtrl[] = {{"_p_wxPyTreeCtrl", 0, "wxPyTreeCtrl *", 0, 0, 0, 0},{"_p_wxPyTreeCtrl", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33006 static swig_type_info _swigt__p_wxEvent[] = {{"_p_wxEvent", 0, "wxEvent *", 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMenuEvent", _p_wxMenuEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxCloseEvent", _p_wxCloseEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMouseEvent", _p_wxMouseEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxEraseEvent", _p_wxEraseEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxTreeEvent", _p_wxTreeEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxSetCursorEvent", _p_wxSetCursorEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxInitDialogEvent", _p_wxInitDialogEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxTextUrlEvent", _p_wxTextUrlEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxBookCtrlEvent", _p_wxBookCtrlEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxPyEvent", _p_wxPyEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxListEvent", _p_wxListEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxHelpEvent", _p_wxHelpEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxNotebookEvent", _p_wxNotebookEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxListbookEvent", _p_wxListbookEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxEvent", 0, 0, 0, 0, 0, 0},{"_p_wxIdleEvent", _p_wxIdleEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxWindowCreateEvent", _p_wxWindowCreateEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxQueryNewPaletteEvent", _p_wxQueryNewPaletteEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMaximizeEvent", _p_wxMaximizeEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxIconizeEvent", _p_wxIconizeEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxActivateEvent", _p_wxActivateEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxSizeEvent", _p_wxSizeEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMoveEvent", _p_wxMoveEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxPaintEvent", _p_wxPaintEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxNcPaintEvent", _p_wxNcPaintEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxPaletteChangedEvent", _p_wxPaletteChangedEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxDisplayChangedEvent", _p_wxDisplayChangedEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMouseCaptureChangedEvent", _p_wxMouseCaptureChangedEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxSysColourChangedEvent", _p_wxSysColourChangedEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxDropFilesEvent", _p_wxDropFilesEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxFocusEvent", _p_wxFocusEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxShowEvent", _p_wxShowEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", _p_wxCommandEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxNavigationKeyEvent", _p_wxNavigationKeyEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxKeyEvent", _p_wxKeyEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxSpinEvent", _p_wxSpinEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxScrollWinEvent", _p_wxScrollWinEventTo_p_wxEvent, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33007 static swig_type_info _swigt__p_wxGenericDirCtrl[] = {{"_p_wxGenericDirCtrl", 0, "wxGenericDirCtrl *", 0, 0, 0, 0},{"_p_wxGenericDirCtrl", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33008 static swig_type_info _swigt__p_bool[] = {{"_p_bool", 0, "bool *", 0, 0, 0, 0},{"_p_bool", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33009 static swig_type_info _swigt__p_wxPyTreeItemData[] = {{"_p_wxPyTreeItemData", 0, "wxPyTreeItemData *", 0, 0, 0, 0},{"_p_wxPyTreeItemData", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33010 static swig_type_info _swigt__p_wxItemContainer[] = {{"_p_wxItemContainer", 0, "wxItemContainer *", 0, 0, 0, 0},{"_p_wxComboBox", _p_wxComboBoxTo_p_wxItemContainer, 0, 0, 0, 0, 0},{"_p_wxDirFilterListCtrl", _p_wxDirFilterListCtrlTo_p_wxItemContainer, 0, 0, 0, 0, 0},{"_p_wxChoice", _p_wxChoiceTo_p_wxItemContainer, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxItemContainer, 0, 0, 0, 0, 0},{"_p_wxListBox", _p_wxListBoxTo_p_wxItemContainer, 0, 0, 0, 0, 0},{"_p_wxCheckListBox", _p_wxCheckListBoxTo_p_wxItemContainer, 0, 0, 0, 0, 0},{"_p_wxItemContainer", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33011 static swig_type_info _swigt__p_wxPyListCtrl[] = {{"_p_wxPyListCtrl", 0, "wxPyListCtrl *", 0, 0, 0, 0},{"_p_wxPyListCtrl", 0, 0, 0, 0, 0, 0},{"_p_wxListView", _p_wxListViewTo_p_wxPyListCtrl, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33012 static swig_type_info _swigt__p_wxDirFilterListCtrl[] = {{"_p_wxDirFilterListCtrl", 0, "wxDirFilterListCtrl *", 0, 0, 0, 0},{"_p_wxDirFilterListCtrl", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33013 static swig_type_info _swigt__p_wxStaticLine[] = {{"_p_wxStaticLine", 0, "wxStaticLine *", 0, 0, 0, 0},{"_p_wxStaticLine", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33014 static swig_type_info _swigt__p_wxControl[] = {{"_p_wxControl", 0, "wxControl *", 0, 0, 0, 0},{"_p_wxBookCtrl", _p_wxBookCtrlTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxToolBar", _p_wxToolBarTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxToggleButton", _p_wxToggleButtonTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxRadioButton", _p_wxRadioButtonTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxControl", 0, 0, 0, 0, 0, 0},{"_p_wxPyControl", _p_wxPyControlTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxToolBarBase", _p_wxToolBarBaseTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxPyListCtrl", _p_wxPyListCtrlTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxDirFilterListCtrl", _p_wxDirFilterListCtrlTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxComboBox", _p_wxComboBoxTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxGenericDirCtrl", _p_wxGenericDirCtrlTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxScrollBar", _p_wxScrollBarTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxGauge", _p_wxGaugeTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxStaticLine", _p_wxStaticLineTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxListbook", _p_wxListbookTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxPyTreeCtrl", _p_wxPyTreeCtrlTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxCheckBox", _p_wxCheckBoxTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxRadioBox", _p_wxRadioBoxTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxCheckListBox", _p_wxCheckListBoxTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxListBox", _p_wxListBoxTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxChoice", _p_wxChoiceTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxListView", _p_wxListViewTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxNotebook", _p_wxNotebookTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxStaticBitmap", _p_wxStaticBitmapTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxSpinCtrl", _p_wxSpinCtrlTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxStaticText", _p_wxStaticTextTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxStaticBox", _p_wxStaticBoxTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxSlider", _p_wxSliderTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxBitmapButton", _p_wxBitmapButtonTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxButton", _p_wxButtonTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxSpinButton", _p_wxSpinButtonTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxContextHelpButton", _p_wxContextHelpButtonTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxTextCtrl", _p_wxTextCtrlTo_p_wxControl, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33015 static swig_type_info _swigt__p_wxPyControl[] = {{"_p_wxPyControl", 0, "wxPyControl *", 0, 0, 0, 0},{"_p_wxPyControl", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33016 static swig_type_info _swigt__p_wxGauge[] = {{"_p_wxGauge", 0, "wxGauge *", 0, 0, 0, 0},{"_p_wxGauge", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33017 static swig_type_info _swigt__p_wxToolBarBase[] = {{"_p_wxToolBarBase", 0, "wxToolBarBase *", 0, 0, 0, 0},{"_p_wxToolBarBase", 0, 0, 0, 0, 0, 0},{"_p_wxToolBar", _p_wxToolBarTo_p_wxToolBarBase, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33018 static swig_type_info _swigt__p_wxFont[] = {{"_p_wxFont", 0, "wxFont *", 0, 0, 0, 0},{"_p_wxFont", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33019 static swig_type_info _swigt__p_wxToggleButton[] = {{"_p_wxToggleButton", 0, "wxToggleButton *", 0, 0, 0, 0},{"_p_wxToggleButton", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33020 static swig_type_info _swigt__p_wxRadioButton[] = {{"_p_wxRadioButton", 0, "wxRadioButton *", 0, 0, 0, 0},{"_p_wxRadioButton", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33021 static swig_type_info _swigt__p_wxChoice[] = {{"_p_wxChoice", 0, "wxChoice *", 0, 0, 0, 0},{"_p_wxDirFilterListCtrl", _p_wxDirFilterListCtrlTo_p_wxChoice, 0, 0, 0, 0, 0},{"_p_wxChoice", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33022 static swig_type_info _swigt__p_wxMemoryDC[] = {{"_p_wxMemoryDC", 0, "wxMemoryDC *", 0, 0, 0, 0},{"_p_wxMemoryDC", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33023 static swig_type_info _swigt__p_wxListItemAttr[] = {{"_p_wxListItemAttr", 0, "wxListItemAttr *", 0, 0, 0, 0},{"_p_wxListItemAttr", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33024 static swig_type_info _swigt__p_void[] = {{"_p_void", 0, "void *", 0, 0, 0, 0},{"_p_void", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33025 static swig_type_info _swigt__p_int[] = {{"_p_int", 0, "int *", 0, 0, 0, 0},{"_p_int", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33026 static swig_type_info _swigt__p_wxSize[] = {{"_p_wxSize", 0, "wxSize *", 0, 0, 0, 0},{"_p_wxSize", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33027 static swig_type_info _swigt__p_wxDC[] = {{"_p_wxDC", 0, "wxDC *", 0, 0, 0, 0},{"_p_wxDC", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33028 static swig_type_info _swigt__p_wxListView[] = {{"_p_wxListView", 0, "wxListView *", 0, 0, 0, 0},{"_p_wxListView", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33029 static swig_type_info _swigt__p_wxIcon[] = {{"_p_wxIcon", 0, "wxIcon *", 0, 0, 0, 0},{"_p_wxIcon", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33030 static swig_type_info _swigt__p_wxVisualAttributes[] = {{"_p_wxVisualAttributes", 0, "wxVisualAttributes *", 0, 0, 0, 0},{"_p_wxVisualAttributes", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33031 static swig_type_info _swigt__p_wxTextCtrl[] = {{"_p_wxTextCtrl", 0, "wxTextCtrl *", 0, 0, 0, 0},{"_p_wxTextCtrl", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33032 static swig_type_info _swigt__p_wxNotebook[] = {{"_p_wxNotebook", 0, "wxNotebook *", 0, 0, 0, 0},{"_p_wxNotebook", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33033 static swig_type_info _swigt__p_wxNotifyEvent[] = {{"_p_wxNotifyEvent", 0, "wxNotifyEvent *", 0, 0, 0, 0},{"_p_wxTreeEvent", _p_wxTreeEventTo_p_wxNotifyEvent, 0, 0, 0, 0, 0},{"_p_wxBookCtrlEvent", _p_wxBookCtrlEventTo_p_wxNotifyEvent, 0, 0, 0, 0, 0},{"_p_wxListEvent", _p_wxListEventTo_p_wxNotifyEvent, 0, 0, 0, 0, 0},{"_p_wxSpinEvent", _p_wxSpinEventTo_p_wxNotifyEvent, 0, 0, 0, 0, 0},{"_p_wxNotebookEvent", _p_wxNotebookEventTo_p_wxNotifyEvent, 0, 0, 0, 0, 0},{"_p_wxListbookEvent", _p_wxListbookEventTo_p_wxNotifyEvent, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33034 static swig_type_info _swigt__p_wxArrayString[] = {{"_p_wxArrayString", 0, "wxArrayString *", 0, 0, 0, 0},{"_p_wxArrayString", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33035 static swig_type_info _swigt__p_wxListbook[] = {{"_p_wxListbook", 0, "wxListbook *", 0, 0, 0, 0},{"_p_wxListbook", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33036 static swig_type_info _swigt__p_wxStaticBitmap[] = {{"_p_wxStaticBitmap", 0, "wxStaticBitmap *", 0, 0, 0, 0},{"_p_wxStaticBitmap", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33037 static swig_type_info _swigt__p_wxSlider[] = {{"_p_wxSlider", 0, "wxSlider *", 0, 0, 0, 0},{"_p_wxSlider", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33038 static swig_type_info _swigt__p_wxStaticBox[] = {{"_p_wxStaticBox", 0, "wxStaticBox *", 0, 0, 0, 0},{"_p_wxStaticBox", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33039 static swig_type_info _swigt__p_wxArrayInt[] = {{"_p_wxArrayInt", 0, "wxArrayInt *", 0, 0, 0, 0},{"_p_wxArrayInt", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33040 static swig_type_info _swigt__p_wxContextHelp[] = {{"_p_wxContextHelp", 0, "wxContextHelp *", 0, 0, 0, 0},{"_p_wxContextHelp", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33041 static swig_type_info _swigt__p_long[] = {{"_p_long", 0, "long *", 0, 0, 0, 0},{"_p_long", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33042 static swig_type_info _swigt__p_wxEvtHandler[] = {{"_p_wxEvtHandler", 0, "wxEvtHandler *", 0, 0, 0, 0},{"_p_wxBookCtrl", _p_wxBookCtrlTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxValidator", _p_wxValidatorTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyValidator", _p_wxPyValidatorTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxToolBar", _p_wxToolBarTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxToggleButton", _p_wxToggleButtonTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxRadioButton", _p_wxRadioButtonTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxWindow", _p_wxWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyControl", _p_wxPyControlTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxToolBarBase", _p_wxToolBarBaseTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxDirFilterListCtrl", _p_wxDirFilterListCtrlTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyListCtrl", _p_wxPyListCtrlTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxComboBox", _p_wxComboBoxTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyApp", _p_wxPyAppTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxGenericDirCtrl", _p_wxGenericDirCtrlTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxScrollBar", _p_wxScrollBarTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxGauge", _p_wxGaugeTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxStaticLine", _p_wxStaticLineTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxEvtHandler", 0, 0, 0, 0, 0, 0},{"_p_wxListbook", _p_wxListbookTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyTreeCtrl", _p_wxPyTreeCtrlTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxCheckBox", _p_wxCheckBoxTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxRadioBox", _p_wxRadioBoxTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxCheckListBox", _p_wxCheckListBoxTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxListBox", _p_wxListBoxTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxChoice", _p_wxChoiceTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxListView", _p_wxListViewTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxNotebook", _p_wxNotebookTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxStaticBitmap", _p_wxStaticBitmapTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxSpinCtrl", _p_wxSpinCtrlTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxStaticText", _p_wxStaticTextTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxStaticBox", _p_wxStaticBoxTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxSlider", _p_wxSliderTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxMenu", _p_wxMenuTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxContextHelpButton", _p_wxContextHelpButtonTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxSpinButton", _p_wxSpinButtonTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxButton", _p_wxButtonTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxBitmapButton", _p_wxBitmapButtonTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxTextCtrl", _p_wxTextCtrlTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33043 static swig_type_info _swigt__p_wxListEvent[] = {{"_p_wxListEvent", 0, "wxListEvent *", 0, 0, 0, 0},{"_p_wxListEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33044 static swig_type_info _swigt__p_wxCheckListBox[] = {{"_p_wxCheckListBox", 0, "wxCheckListBox *", 0, 0, 0, 0},{"_p_wxCheckListBox", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33045 static swig_type_info _swigt__p_wxListBox[] = {{"_p_wxListBox", 0, "wxListBox *", 0, 0, 0, 0},{"_p_wxListBox", 0, 0, 0, 0, 0, 0},{"_p_wxCheckListBox", _p_wxCheckListBoxTo_p_wxListBox, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33046 static swig_type_info _swigt__p_wxBookCtrl[] = {{"_p_wxBookCtrl", 0, "wxBookCtrl *", 0, 0, 0, 0},{"_p_wxListbook", _p_wxListbookTo_p_wxBookCtrl, 0, 0, 0, 0, 0},{"_p_wxBookCtrl", 0, 0, 0, 0, 0, 0},{"_p_wxNotebook", _p_wxNotebookTo_p_wxBookCtrl, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33047 static swig_type_info _swigt__p_wxSpinButton[] = {{"_p_wxSpinButton", 0, "wxSpinButton *", 0, 0, 0, 0},{"_p_wxSpinButton", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33048 static swig_type_info _swigt__p_wxButton[] = {{"_p_wxButton", 0, "wxButton *", 0, 0, 0, 0},{"_p_wxButton", 0, 0, 0, 0, 0, 0},{"_p_wxBitmapButton", _p_wxBitmapButtonTo_p_wxButton, 0, 0, 0, 0, 0},{"_p_wxContextHelpButton", _p_wxContextHelpButtonTo_p_wxButton, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33049 static swig_type_info _swigt__p_wxBitmapButton[] = {{"_p_wxBitmapButton", 0, "wxBitmapButton *", 0, 0, 0, 0},{"_p_wxBitmapButton", 0, 0, 0, 0, 0, 0},{"_p_wxContextHelpButton", _p_wxContextHelpButtonTo_p_wxBitmapButton, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33050 static swig_type_info _swigt__p_wxRect[] = {{"_p_wxRect", 0, "wxRect *", 0, 0, 0, 0},{"_p_wxRect", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33051 static swig_type_info _swigt__p_wxContextHelpButton[] = {{"_p_wxContextHelpButton", 0, "wxContextHelpButton *", 0, 0, 0, 0},{"_p_wxContextHelpButton", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33052 static swig_type_info _swigt__p_wxRadioBox[] = {{"_p_wxRadioBox", 0, "wxRadioBox *", 0, 0, 0, 0},{"_p_wxRadioBox", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33053 static swig_type_info _swigt__p_wxScrollBar[] = {{"_p_wxScrollBar", 0, "wxScrollBar *", 0, 0, 0, 0},{"_p_wxScrollBar", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33054 static swig_type_info _swigt__p_char[] = {{"_p_char", 0, "char *", 0, 0, 0, 0},{"_p_char", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33055 static swig_type_info _swigt__p_wxTreeItemId[] = {{"_p_wxTreeItemId", 0, "wxTreeItemId *", 0, 0, 0, 0},{"_p_wxTreeItemId", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33056 static swig_type_info _swigt__p_wxComboBox[] = {{"_p_wxComboBox", 0, "wxComboBox *", 0, 0, 0, 0},{"_p_wxComboBox", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33057 static swig_type_info _swigt__p_wxHelpEvent[] = {{"_p_wxHelpEvent", 0, "wxHelpEvent *", 0, 0, 0, 0},{"_p_wxHelpEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33058 static swig_type_info _swigt__p_wxListItem[] = {{"_p_wxListItem", 0, "wxListItem *", 0, 0, 0, 0},{"_p_wxListItem", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33059 static swig_type_info _swigt__p_wxNotebookSizer[] = {{"_p_wxNotebookSizer", 0, "wxNotebookSizer *", 0, 0, 0, 0},{"_p_wxNotebookSizer", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33060 static swig_type_info _swigt__p_wxSpinEvent[] = {{"_p_wxSpinEvent", 0, "wxSpinEvent *", 0, 0, 0, 0},{"_p_wxSpinEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33061 static swig_type_info _swigt__p_wxGenericDragImage[] = {{"_p_wxGenericDragImage", 0, "wxGenericDragImage *", 0, 0, 0, 0},{"_p_wxGenericDragImage", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33062 static swig_type_info _swigt__p_wxSpinCtrl[] = {{"_p_wxSpinCtrl", 0, "wxSpinCtrl *", 0, 0, 0, 0},{"_p_wxSpinCtrl", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33063 static swig_type_info _swigt__p_wxImageList[] = {{"_p_wxImageList", 0, "wxImageList *", 0, 0, 0, 0},{"_p_wxImageList", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33064 static swig_type_info _swigt__p_wxHelpProvider[] = {{"_p_wxHelpProvider", 0, "wxHelpProvider *", 0, 0, 0, 0},{"_p_wxHelpProvider", 0, 0, 0, 0, 0, 0},{"_p_wxSimpleHelpProvider", _p_wxSimpleHelpProviderTo_p_wxHelpProvider, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33065 static swig_type_info _swigt__p_wxTextAttr[] = {{"_p_wxTextAttr", 0, "wxTextAttr *", 0, 0, 0, 0},{"_p_wxTextAttr", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33066 static swig_type_info _swigt__p_wxSimpleHelpProvider[] = {{"_p_wxSimpleHelpProvider", 0, "wxSimpleHelpProvider *", 0, 0, 0, 0},{"_p_wxSimpleHelpProvider", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33067 static swig_type_info _swigt__p_wxPoint[] = {{"_p_wxPoint", 0, "wxPoint *", 0, 0, 0, 0},{"_p_wxPoint", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33068 static swig_type_info _swigt__p_wxListbookEvent[] = {{"_p_wxListbookEvent", 0, "wxListbookEvent *", 0, 0, 0, 0},{"_p_wxListbookEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33069 static swig_type_info _swigt__p_wxNotebookEvent[] = {{"_p_wxNotebookEvent", 0, "wxNotebookEvent *", 0, 0, 0, 0},{"_p_wxNotebookEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33070 static swig_type_info _swigt__p_wxObject[] = {{"_p_wxObject", 0, "wxObject *", 0, 0, 0, 0},{"_p_wxLayoutConstraints", _p_wxLayoutConstraintsTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxGBSizerItem", _p_wxGBSizerItemTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSizerItem", _p_wxSizerItemTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxTextUrlEvent", _p_wxTextUrlEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxBookCtrlEvent", _p_wxBookCtrlEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxIndividualLayoutConstraint", _p_wxIndividualLayoutConstraintTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxStaticBoxSizer", _p_wxStaticBoxSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxBoxSizer", _p_wxBoxSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSizer", _p_wxSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxGridBagSizer", _p_wxGridBagSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxCheckBox", _p_wxCheckBoxTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyTreeCtrl", _p_wxPyTreeCtrlTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMenu", _p_wxMenuTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxEvent", _p_wxEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxGridSizer", _p_wxGridSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFlexGridSizer", _p_wxFlexGridSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxGenericDirCtrl", _p_wxGenericDirCtrlTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxInitDialogEvent", _p_wxInitDialogEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxDirFilterListCtrl", _p_wxDirFilterListCtrlTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyListCtrl", _p_wxPyListCtrlTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPaintEvent", _p_wxPaintEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxNcPaintEvent", _p_wxNcPaintEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPaletteChangedEvent", _p_wxPaletteChangedEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxDisplayChangedEvent", _p_wxDisplayChangedEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMouseCaptureChangedEvent", _p_wxMouseCaptureChangedEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSysColourChangedEvent", _p_wxSysColourChangedEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxStaticLine", _p_wxStaticLineTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyControl", _p_wxPyControlTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxRadioButton", _p_wxRadioButtonTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxToggleButton", _p_wxToggleButtonTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxToolBarBase", _p_wxToolBarBaseTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxGauge", _p_wxGaugeTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSetCursorEvent", _p_wxSetCursorEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxChoice", _p_wxChoiceTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFSFile", _p_wxFSFileTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPySizer", _p_wxPySizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxListView", _p_wxListViewTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxNotebook", _p_wxNotebookTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxTextCtrl", _p_wxTextCtrlTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyEvent", _p_wxPyEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxListbook", _p_wxListbookTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxShowEvent", _p_wxShowEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxStaticBitmap", _p_wxStaticBitmapTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSlider", _p_wxSliderTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxIdleEvent", _p_wxIdleEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxWindowCreateEvent", _p_wxWindowCreateEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxQueryNewPaletteEvent", _p_wxQueryNewPaletteEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMaximizeEvent", _p_wxMaximizeEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxIconizeEvent", _p_wxIconizeEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxActivateEvent", _p_wxActivateEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSizeEvent", _p_wxSizeEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMoveEvent", _p_wxMoveEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxStaticBox", _p_wxStaticBoxTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMenuItem", _p_wxMenuItemTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxContextHelp", _p_wxContextHelpTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxListEvent", _p_wxListEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxEvtHandler", _p_wxEvtHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxTIFFHandler", _p_wxTIFFHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxImageHandler", _p_wxImageHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxBMPHandler", _p_wxBMPHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxICOHandler", _p_wxICOHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxCURHandler", _p_wxCURHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxANIHandler", _p_wxANIHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPNGHandler", _p_wxPNGHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxGIFHandler", _p_wxGIFHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPCXHandler", _p_wxPCXHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxJPEGHandler", _p_wxJPEGHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPNMHandler", _p_wxPNMHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxXPMHandler", _p_wxXPMHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxListBox", _p_wxListBoxTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxCheckListBox", _p_wxCheckListBoxTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxBookCtrl", _p_wxBookCtrlTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxContextHelpButton", _p_wxContextHelpButtonTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSpinButton", _p_wxSpinButtonTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxButton", _p_wxButtonTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxBitmapButton", _p_wxBitmapButtonTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxAcceleratorTable", _p_wxAcceleratorTableTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxScrollBar", _p_wxScrollBarTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxRadioBox", _p_wxRadioBoxTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxHelpEvent", _p_wxHelpEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxComboBox", _p_wxComboBoxTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxListItem", _p_wxListItemTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxImage", _p_wxImageTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxNotebookSizer", _p_wxNotebookSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxScrollWinEvent", _p_wxScrollWinEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSpinEvent", _p_wxSpinEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxGenericDragImage", _p_wxGenericDragImageTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSpinCtrl", _p_wxSpinCtrlTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxListbookEvent", _p_wxListbookEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxNotebookEvent", _p_wxNotebookEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxObject", 0, 0, 0, 0, 0, 0},{"_p_wxKeyEvent", _p_wxKeyEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxNavigationKeyEvent", _p_wxNavigationKeyEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxWindow", _p_wxWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFileSystem", _p_wxFileSystemTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMenuEvent", _p_wxMenuEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxCloseEvent", _p_wxCloseEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMouseEvent", _p_wxMouseEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxEraseEvent", _p_wxEraseEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxTreeEvent", _p_wxTreeEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyApp", _p_wxPyAppTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", _p_wxCommandEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxStaticText", _p_wxStaticTextTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFocusEvent", _p_wxFocusEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxDropFilesEvent", _p_wxDropFilesEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxToolBarToolBase", _p_wxToolBarToolBaseTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxToolBar", _p_wxToolBarTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxBookCtrlSizer", _p_wxBookCtrlSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxValidator", _p_wxValidatorTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyValidator", _p_wxPyValidatorTo_p_wxObject, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33071 static swig_type_info _swigt__p_wxCursor[] = {{"_p_wxCursor", 0, "wxCursor *", 0, 0, 0, 0},{"_p_wxCursor", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33072 static swig_type_info _swigt__p_wxKeyEvent[] = {{"_p_wxKeyEvent", 0, "wxKeyEvent *", 0, 0, 0, 0},{"_p_wxKeyEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33073 static swig_type_info _swigt__p_wxWindow[] = {{"_p_wxWindow", 0, "wxWindow *", 0, 0, 0, 0},{"_p_wxBookCtrl", _p_wxBookCtrlTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxToolBar", _p_wxToolBarTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxToggleButton", _p_wxToggleButtonTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxRadioButton", _p_wxRadioButtonTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxWindow", 0, 0, 0, 0, 0, 0},{"_p_wxPyControl", _p_wxPyControlTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxToolBarBase", _p_wxToolBarBaseTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPyListCtrl", _p_wxPyListCtrlTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxDirFilterListCtrl", _p_wxDirFilterListCtrlTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxComboBox", _p_wxComboBoxTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxGenericDirCtrl", _p_wxGenericDirCtrlTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxScrollBar", _p_wxScrollBarTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxGauge", _p_wxGaugeTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxStaticLine", _p_wxStaticLineTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxListbook", _p_wxListbookTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxPyTreeCtrl", _p_wxPyTreeCtrlTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxCheckBox", _p_wxCheckBoxTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxRadioBox", _p_wxRadioBoxTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxCheckListBox", _p_wxCheckListBoxTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxListBox", _p_wxListBoxTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxChoice", _p_wxChoiceTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxListView", _p_wxListViewTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxNotebook", _p_wxNotebookTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxStaticBitmap", _p_wxStaticBitmapTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxSpinCtrl", _p_wxSpinCtrlTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxStaticText", _p_wxStaticTextTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxStaticBox", _p_wxStaticBoxTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxSlider", _p_wxSliderTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxButton", _p_wxButtonTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxSpinButton", _p_wxSpinButtonTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxContextHelpButton", _p_wxContextHelpButtonTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxBitmapButton", _p_wxBitmapButtonTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxTextCtrl", _p_wxTextCtrlTo_p_wxWindow, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33074 static swig_type_info _swigt__p_wxString[] = {{"_p_wxString", 0, "wxString *", 0, 0, 0, 0},{"_p_wxString", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33075 static swig_type_info _swigt__p_wxBitmap[] = {{"_p_wxBitmap", 0, "wxBitmap *", 0, 0, 0, 0},{"_p_wxBitmap", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33076 static swig_type_info _swigt__p_wxTreeEvent[] = {{"_p_wxTreeEvent", 0, "wxTreeEvent *", 0, 0, 0, 0},{"_p_wxTreeEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33077 static swig_type_info _swigt__p_wxMouseEvent[] = {{"_p_wxMouseEvent", 0, "wxMouseEvent *", 0, 0, 0, 0},{"_p_wxMouseEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33078 static swig_type_info _swigt__p_wxCommandEvent[] = {{"_p_wxCommandEvent", 0, "wxCommandEvent *", 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxBookCtrlEvent", _p_wxBookCtrlEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxTextUrlEvent", _p_wxTextUrlEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", 0, 0, 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxListbookEvent", _p_wxListbookEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxNotebookEvent", _p_wxNotebookEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxListEvent", _p_wxListEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxWindowCreateEvent", _p_wxWindowCreateEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxTreeEvent", _p_wxTreeEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxSpinEvent", _p_wxSpinEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxHelpEvent", _p_wxHelpEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33079 static swig_type_info _swigt__p_wxStaticText[] = {{"_p_wxStaticText", 0, "wxStaticText *", 0, 0, 0, 0},{"_p_wxStaticText", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33080 static swig_type_info _swigt__p_wxControlWithItems[] = {{"_p_wxControlWithItems", 0, "wxControlWithItems *", 0, 0, 0, 0},{"_p_wxDirFilterListCtrl", _p_wxDirFilterListCtrlTo_p_wxControlWithItems, 0, 0, 0, 0, 0},{"_p_wxChoice", _p_wxChoiceTo_p_wxControlWithItems, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", 0, 0, 0, 0, 0, 0},{"_p_wxListBox", _p_wxListBoxTo_p_wxControlWithItems, 0, 0, 0, 0, 0},{"_p_wxCheckListBox", _p_wxCheckListBoxTo_p_wxControlWithItems, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33081 static swig_type_info _swigt__p_wxToolBarToolBase[] = {{"_p_wxToolBarToolBase", 0, "wxToolBarToolBase *", 0, 0, 0, 0},{"_p_wxToolBarToolBase", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33082 static swig_type_info _swigt__p_wxColour[] = {{"_p_wxColour", 0, "wxColour *", 0, 0, 0, 0},{"_p_wxColour", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33083 static swig_type_info _swigt__p_wxToolBar[] = {{"_p_wxToolBar", 0, "wxToolBar *", 0, 0, 0, 0},{"_p_wxToolBar", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33084 static swig_type_info _swigt__p_wxBookCtrlSizer[] = {{"_p_wxBookCtrlSizer", 0, "wxBookCtrlSizer *", 0, 0, 0, 0},{"_p_wxBookCtrlSizer", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33085 static swig_type_info _swigt__p_wxValidator[] = {{"_p_wxValidator", 0, "wxValidator *", 0, 0, 0, 0},{"_p_wxValidator", 0, 0, 0, 0, 0, 0},{"_p_wxPyValidator", _p_wxPyValidatorTo_p_wxValidator, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
33086
33087 static swig_type_info *swig_types_initial[] = {
33088 _swigt__p_wxTextUrlEvent,
33089 _swigt__p_wxBookCtrlEvent,
33090 _swigt__p_wxSizer,
33091 _swigt__p_wxCheckBox,
33092 _swigt__p_wxPyTreeCtrl,
33093 _swigt__p_wxEvent,
33094 _swigt__p_wxGenericDirCtrl,
33095 _swigt__p_bool,
33096 _swigt__p_wxPyTreeItemData,
33097 _swigt__p_wxItemContainer,
33098 _swigt__p_wxPyListCtrl,
33099 _swigt__p_wxDirFilterListCtrl,
33100 _swigt__p_wxStaticLine,
33101 _swigt__p_wxControl,
33102 _swigt__p_wxPyControl,
33103 _swigt__p_wxGauge,
33104 _swigt__p_wxToolBarBase,
33105 _swigt__p_wxFont,
33106 _swigt__p_wxToggleButton,
33107 _swigt__p_wxRadioButton,
33108 _swigt__p_wxChoice,
33109 _swigt__p_wxMemoryDC,
33110 _swigt__p_wxListItemAttr,
33111 _swigt__p_void,
33112 _swigt__p_int,
33113 _swigt__p_wxSize,
33114 _swigt__p_wxDC,
33115 _swigt__p_wxListView,
33116 _swigt__p_wxIcon,
33117 _swigt__p_wxVisualAttributes,
33118 _swigt__p_wxTextCtrl,
33119 _swigt__p_wxNotebook,
33120 _swigt__p_wxNotifyEvent,
33121 _swigt__p_wxArrayString,
33122 _swigt__p_wxListbook,
33123 _swigt__p_wxStaticBitmap,
33124 _swigt__p_wxSlider,
33125 _swigt__p_wxStaticBox,
33126 _swigt__p_wxArrayInt,
33127 _swigt__p_wxContextHelp,
33128 _swigt__p_long,
33129 _swigt__p_wxEvtHandler,
33130 _swigt__p_wxListEvent,
33131 _swigt__p_wxCheckListBox,
33132 _swigt__p_wxListBox,
33133 _swigt__p_wxBookCtrl,
33134 _swigt__p_wxSpinButton,
33135 _swigt__p_wxButton,
33136 _swigt__p_wxBitmapButton,
33137 _swigt__p_wxRect,
33138 _swigt__p_wxContextHelpButton,
33139 _swigt__p_wxRadioBox,
33140 _swigt__p_wxScrollBar,
33141 _swigt__p_char,
33142 _swigt__p_wxTreeItemId,
33143 _swigt__p_wxComboBox,
33144 _swigt__p_wxHelpEvent,
33145 _swigt__p_wxListItem,
33146 _swigt__p_wxNotebookSizer,
33147 _swigt__p_wxSpinEvent,
33148 _swigt__p_wxGenericDragImage,
33149 _swigt__p_wxSpinCtrl,
33150 _swigt__p_wxImageList,
33151 _swigt__p_wxHelpProvider,
33152 _swigt__p_wxTextAttr,
33153 _swigt__p_wxSimpleHelpProvider,
33154 _swigt__p_wxPoint,
33155 _swigt__p_wxListbookEvent,
33156 _swigt__p_wxNotebookEvent,
33157 _swigt__p_wxObject,
33158 _swigt__p_wxCursor,
33159 _swigt__p_wxKeyEvent,
33160 _swigt__p_wxWindow,
33161 _swigt__p_wxString,
33162 _swigt__p_wxBitmap,
33163 _swigt__p_wxTreeEvent,
33164 _swigt__p_wxMouseEvent,
33165 _swigt__p_wxCommandEvent,
33166 _swigt__p_wxStaticText,
33167 _swigt__p_wxControlWithItems,
33168 _swigt__p_wxToolBarToolBase,
33169 _swigt__p_wxColour,
33170 _swigt__p_wxToolBar,
33171 _swigt__p_wxBookCtrlSizer,
33172 _swigt__p_wxValidator,
33173 0
33174 };
33175
33176
33177 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
33178
33179 static swig_const_info swig_const_table[] = {
33180 {0}};
33181
33182 #ifdef __cplusplus
33183 }
33184 #endif
33185
33186 #ifdef __cplusplus
33187 extern "C"
33188 #endif
33189 SWIGEXPORT(void) SWIG_init(void) {
33190 static PyObject *SWIG_globals = 0;
33191 static int typeinit = 0;
33192 PyObject *m, *d;
33193 int i;
33194 if (!SWIG_globals) SWIG_globals = SWIG_newvarlink();
33195 m = Py_InitModule((char *) SWIG_name, SwigMethods);
33196 d = PyModule_GetDict(m);
33197
33198 if (!typeinit) {
33199 for (i = 0; swig_types_initial[i]; i++) {
33200 swig_types[i] = SWIG_TypeRegister(swig_types_initial[i]);
33201 }
33202 typeinit = 1;
33203 }
33204 SWIG_InstallConstants(d,swig_const_table);
33205
33206 PyDict_SetItemString(d,(char*)"cvar", SWIG_globals);
33207 SWIG_addvarlink(SWIG_globals,(char*)"ButtonNameStr",_wrap_ButtonNameStr_get, _wrap_ButtonNameStr_set);
33208 PyDict_SetItemString(d,"BU_LEFT", SWIG_FromInt((int)wxBU_LEFT));
33209 PyDict_SetItemString(d,"BU_TOP", SWIG_FromInt((int)wxBU_TOP));
33210 PyDict_SetItemString(d,"BU_RIGHT", SWIG_FromInt((int)wxBU_RIGHT));
33211 PyDict_SetItemString(d,"BU_BOTTOM", SWIG_FromInt((int)wxBU_BOTTOM));
33212 PyDict_SetItemString(d,"BU_EXACTFIT", SWIG_FromInt((int)wxBU_EXACTFIT));
33213 PyDict_SetItemString(d,"BU_AUTODRAW", SWIG_FromInt((int)wxBU_AUTODRAW));
33214 SWIG_addvarlink(SWIG_globals,(char*)"CheckBoxNameStr",_wrap_CheckBoxNameStr_get, _wrap_CheckBoxNameStr_set);
33215 PyDict_SetItemString(d,"CHK_2STATE", SWIG_FromInt((int)wxCHK_2STATE));
33216 PyDict_SetItemString(d,"CHK_3STATE", SWIG_FromInt((int)wxCHK_3STATE));
33217 PyDict_SetItemString(d,"CHK_ALLOW_3RD_STATE_FOR_USER", SWIG_FromInt((int)wxCHK_ALLOW_3RD_STATE_FOR_USER));
33218 PyDict_SetItemString(d,"CHK_UNCHECKED", SWIG_FromInt((int)wxCHK_UNCHECKED));
33219 PyDict_SetItemString(d,"CHK_CHECKED", SWIG_FromInt((int)wxCHK_CHECKED));
33220 PyDict_SetItemString(d,"CHK_UNDETERMINED", SWIG_FromInt((int)wxCHK_UNDETERMINED));
33221 SWIG_addvarlink(SWIG_globals,(char*)"ChoiceNameStr",_wrap_ChoiceNameStr_get, _wrap_ChoiceNameStr_set);
33222 SWIG_addvarlink(SWIG_globals,(char*)"ComboBoxNameStr",_wrap_ComboBoxNameStr_get, _wrap_ComboBoxNameStr_set);
33223 SWIG_addvarlink(SWIG_globals,(char*)"GaugeNameStr",_wrap_GaugeNameStr_get, _wrap_GaugeNameStr_set);
33224 PyDict_SetItemString(d,"GA_HORIZONTAL", SWIG_FromInt((int)wxGA_HORIZONTAL));
33225 PyDict_SetItemString(d,"GA_VERTICAL", SWIG_FromInt((int)wxGA_VERTICAL));
33226 PyDict_SetItemString(d,"GA_SMOOTH", SWIG_FromInt((int)wxGA_SMOOTH));
33227 PyDict_SetItemString(d,"GA_PROGRESSBAR", SWIG_FromInt((int)wxGA_PROGRESSBAR));
33228 SWIG_addvarlink(SWIG_globals,(char*)"StaticBitmapNameStr",_wrap_StaticBitmapNameStr_get, _wrap_StaticBitmapNameStr_set);
33229 SWIG_addvarlink(SWIG_globals,(char*)"StaticBoxNameStr",_wrap_StaticBoxNameStr_get, _wrap_StaticBoxNameStr_set);
33230 SWIG_addvarlink(SWIG_globals,(char*)"StaticTextNameStr",_wrap_StaticTextNameStr_get, _wrap_StaticTextNameStr_set);
33231 SWIG_addvarlink(SWIG_globals,(char*)"ListBoxNameStr",_wrap_ListBoxNameStr_get, _wrap_ListBoxNameStr_set);
33232 SWIG_addvarlink(SWIG_globals,(char*)"TextCtrlNameStr",_wrap_TextCtrlNameStr_get, _wrap_TextCtrlNameStr_set);
33233 PyDict_SetItemString(d,"TE_NO_VSCROLL", SWIG_FromInt((int)wxTE_NO_VSCROLL));
33234 PyDict_SetItemString(d,"TE_AUTO_SCROLL", SWIG_FromInt((int)wxTE_AUTO_SCROLL));
33235 PyDict_SetItemString(d,"TE_READONLY", SWIG_FromInt((int)wxTE_READONLY));
33236 PyDict_SetItemString(d,"TE_MULTILINE", SWIG_FromInt((int)wxTE_MULTILINE));
33237 PyDict_SetItemString(d,"TE_PROCESS_TAB", SWIG_FromInt((int)wxTE_PROCESS_TAB));
33238 PyDict_SetItemString(d,"TE_LEFT", SWIG_FromInt((int)wxTE_LEFT));
33239 PyDict_SetItemString(d,"TE_CENTER", SWIG_FromInt((int)wxTE_CENTER));
33240 PyDict_SetItemString(d,"TE_RIGHT", SWIG_FromInt((int)wxTE_RIGHT));
33241 PyDict_SetItemString(d,"TE_CENTRE", SWIG_FromInt((int)wxTE_CENTRE));
33242 PyDict_SetItemString(d,"TE_RICH", SWIG_FromInt((int)wxTE_RICH));
33243 PyDict_SetItemString(d,"TE_PROCESS_ENTER", SWIG_FromInt((int)wxTE_PROCESS_ENTER));
33244 PyDict_SetItemString(d,"TE_PASSWORD", SWIG_FromInt((int)wxTE_PASSWORD));
33245 PyDict_SetItemString(d,"TE_AUTO_URL", SWIG_FromInt((int)wxTE_AUTO_URL));
33246 PyDict_SetItemString(d,"TE_NOHIDESEL", SWIG_FromInt((int)wxTE_NOHIDESEL));
33247 PyDict_SetItemString(d,"TE_DONTWRAP", SWIG_FromInt((int)wxTE_DONTWRAP));
33248 PyDict_SetItemString(d,"TE_LINEWRAP", SWIG_FromInt((int)wxTE_LINEWRAP));
33249 PyDict_SetItemString(d,"TE_WORDWRAP", SWIG_FromInt((int)wxTE_WORDWRAP));
33250 PyDict_SetItemString(d,"TE_RICH2", SWIG_FromInt((int)wxTE_RICH2));
33251 PyDict_SetItemString(d,"TEXT_ALIGNMENT_DEFAULT", SWIG_FromInt((int)wxTEXT_ALIGNMENT_DEFAULT));
33252 PyDict_SetItemString(d,"TEXT_ALIGNMENT_LEFT", SWIG_FromInt((int)wxTEXT_ALIGNMENT_LEFT));
33253 PyDict_SetItemString(d,"TEXT_ALIGNMENT_CENTRE", SWIG_FromInt((int)wxTEXT_ALIGNMENT_CENTRE));
33254 PyDict_SetItemString(d,"TEXT_ALIGNMENT_CENTER", SWIG_FromInt((int)wxTEXT_ALIGNMENT_CENTER));
33255 PyDict_SetItemString(d,"TEXT_ALIGNMENT_RIGHT", SWIG_FromInt((int)wxTEXT_ALIGNMENT_RIGHT));
33256 PyDict_SetItemString(d,"TEXT_ALIGNMENT_JUSTIFIED", SWIG_FromInt((int)wxTEXT_ALIGNMENT_JUSTIFIED));
33257 PyDict_SetItemString(d,"TEXT_ATTR_TEXT_COLOUR", SWIG_FromInt((int)wxTEXT_ATTR_TEXT_COLOUR));
33258 PyDict_SetItemString(d,"TEXT_ATTR_BACKGROUND_COLOUR", SWIG_FromInt((int)wxTEXT_ATTR_BACKGROUND_COLOUR));
33259 PyDict_SetItemString(d,"TEXT_ATTR_FONT_FACE", SWIG_FromInt((int)wxTEXT_ATTR_FONT_FACE));
33260 PyDict_SetItemString(d,"TEXT_ATTR_FONT_SIZE", SWIG_FromInt((int)wxTEXT_ATTR_FONT_SIZE));
33261 PyDict_SetItemString(d,"TEXT_ATTR_FONT_WEIGHT", SWIG_FromInt((int)wxTEXT_ATTR_FONT_WEIGHT));
33262 PyDict_SetItemString(d,"TEXT_ATTR_FONT_ITALIC", SWIG_FromInt((int)wxTEXT_ATTR_FONT_ITALIC));
33263 PyDict_SetItemString(d,"TEXT_ATTR_FONT_UNDERLINE", SWIG_FromInt((int)wxTEXT_ATTR_FONT_UNDERLINE));
33264 PyDict_SetItemString(d,"TEXT_ATTR_FONT", SWIG_FromInt((int)wxTEXT_ATTR_FONT));
33265 PyDict_SetItemString(d,"TEXT_ATTR_ALIGNMENT", SWIG_FromInt((int)wxTEXT_ATTR_ALIGNMENT));
33266 PyDict_SetItemString(d,"TEXT_ATTR_LEFT_INDENT", SWIG_FromInt((int)wxTEXT_ATTR_LEFT_INDENT));
33267 PyDict_SetItemString(d,"TEXT_ATTR_RIGHT_INDENT", SWIG_FromInt((int)wxTEXT_ATTR_RIGHT_INDENT));
33268 PyDict_SetItemString(d,"TEXT_ATTR_TABS", SWIG_FromInt((int)wxTEXT_ATTR_TABS));
33269 PyDict_SetItemString(d,"TE_HT_UNKNOWN", SWIG_FromInt((int)wxTE_HT_UNKNOWN));
33270 PyDict_SetItemString(d,"TE_HT_BEFORE", SWIG_FromInt((int)wxTE_HT_BEFORE));
33271 PyDict_SetItemString(d,"TE_HT_ON_TEXT", SWIG_FromInt((int)wxTE_HT_ON_TEXT));
33272 PyDict_SetItemString(d,"TE_HT_BELOW", SWIG_FromInt((int)wxTE_HT_BELOW));
33273 PyDict_SetItemString(d,"TE_HT_BEYOND", SWIG_FromInt((int)wxTE_HT_BEYOND));
33274 PyDict_SetItemString(d, "wxEVT_COMMAND_TEXT_UPDATED", PyInt_FromLong(wxEVT_COMMAND_TEXT_UPDATED));
33275 PyDict_SetItemString(d, "wxEVT_COMMAND_TEXT_ENTER", PyInt_FromLong(wxEVT_COMMAND_TEXT_ENTER));
33276 PyDict_SetItemString(d, "wxEVT_COMMAND_TEXT_URL", PyInt_FromLong(wxEVT_COMMAND_TEXT_URL));
33277 PyDict_SetItemString(d, "wxEVT_COMMAND_TEXT_MAXLEN", PyInt_FromLong(wxEVT_COMMAND_TEXT_MAXLEN));
33278 SWIG_addvarlink(SWIG_globals,(char*)"ScrollBarNameStr",_wrap_ScrollBarNameStr_get, _wrap_ScrollBarNameStr_set);
33279 SWIG_addvarlink(SWIG_globals,(char*)"SPIN_BUTTON_NAME",_wrap_SPIN_BUTTON_NAME_get, _wrap_SPIN_BUTTON_NAME_set);
33280 SWIG_addvarlink(SWIG_globals,(char*)"SpinCtrlNameStr",_wrap_SpinCtrlNameStr_get, _wrap_SpinCtrlNameStr_set);
33281 PyDict_SetItemString(d,"SP_HORIZONTAL", SWIG_FromInt((int)wxSP_HORIZONTAL));
33282 PyDict_SetItemString(d,"SP_VERTICAL", SWIG_FromInt((int)wxSP_VERTICAL));
33283 PyDict_SetItemString(d,"SP_ARROW_KEYS", SWIG_FromInt((int)wxSP_ARROW_KEYS));
33284 PyDict_SetItemString(d,"SP_WRAP", SWIG_FromInt((int)wxSP_WRAP));
33285 PyDict_SetItemString(d, "wxEVT_COMMAND_SPINCTRL_UPDATED", PyInt_FromLong(wxEVT_COMMAND_SPINCTRL_UPDATED));
33286 SWIG_addvarlink(SWIG_globals,(char*)"RadioBoxNameStr",_wrap_RadioBoxNameStr_get, _wrap_RadioBoxNameStr_set);
33287 SWIG_addvarlink(SWIG_globals,(char*)"RadioButtonNameStr",_wrap_RadioButtonNameStr_get, _wrap_RadioButtonNameStr_set);
33288 SWIG_addvarlink(SWIG_globals,(char*)"SliderNameStr",_wrap_SliderNameStr_get, _wrap_SliderNameStr_set);
33289 SWIG_addvarlink(SWIG_globals,(char*)"ToggleButtonNameStr",_wrap_ToggleButtonNameStr_get, _wrap_ToggleButtonNameStr_set);
33290 PyDict_SetItemString(d, "wxEVT_COMMAND_TOGGLEBUTTON_CLICKED", PyInt_FromLong(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED));
33291 SWIG_addvarlink(SWIG_globals,(char*)"NOTEBOOK_NAME",_wrap_NOTEBOOK_NAME_get, _wrap_NOTEBOOK_NAME_set);
33292 PyDict_SetItemString(d,"NB_FIXEDWIDTH", SWIG_FromInt((int)wxNB_FIXEDWIDTH));
33293 PyDict_SetItemString(d,"NB_TOP", SWIG_FromInt((int)wxNB_TOP));
33294 PyDict_SetItemString(d,"NB_LEFT", SWIG_FromInt((int)wxNB_LEFT));
33295 PyDict_SetItemString(d,"NB_RIGHT", SWIG_FromInt((int)wxNB_RIGHT));
33296 PyDict_SetItemString(d,"NB_BOTTOM", SWIG_FromInt((int)wxNB_BOTTOM));
33297 PyDict_SetItemString(d,"NB_MULTILINE", SWIG_FromInt((int)wxNB_MULTILINE));
33298 PyDict_SetItemString(d,"NB_HITTEST_NOWHERE", SWIG_FromInt((int)wxNB_HITTEST_NOWHERE));
33299 PyDict_SetItemString(d,"NB_HITTEST_ONICON", SWIG_FromInt((int)wxNB_HITTEST_ONICON));
33300 PyDict_SetItemString(d,"NB_HITTEST_ONLABEL", SWIG_FromInt((int)wxNB_HITTEST_ONLABEL));
33301 PyDict_SetItemString(d,"NB_HITTEST_ONITEM", SWIG_FromInt((int)wxNB_HITTEST_ONITEM));
33302 PyDict_SetItemString(d, "wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED));
33303 PyDict_SetItemString(d, "wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING));
33304 PyDict_SetItemString(d,"LB_DEFAULT", SWIG_FromInt((int)wxLB_DEFAULT));
33305 PyDict_SetItemString(d,"LB_TOP", SWIG_FromInt((int)wxLB_TOP));
33306 PyDict_SetItemString(d,"LB_BOTTOM", SWIG_FromInt((int)wxLB_BOTTOM));
33307 PyDict_SetItemString(d,"LB_LEFT", SWIG_FromInt((int)wxLB_LEFT));
33308 PyDict_SetItemString(d,"LB_RIGHT", SWIG_FromInt((int)wxLB_RIGHT));
33309 PyDict_SetItemString(d,"LB_ALIGN_MASK", SWIG_FromInt((int)wxLB_ALIGN_MASK));
33310 PyDict_SetItemString(d, "wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED));
33311 PyDict_SetItemString(d, "wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING));
33312 PyDict_SetItemString(d,"TOOL_STYLE_BUTTON", SWIG_FromInt((int)wxTOOL_STYLE_BUTTON));
33313 PyDict_SetItemString(d,"TOOL_STYLE_SEPARATOR", SWIG_FromInt((int)wxTOOL_STYLE_SEPARATOR));
33314 PyDict_SetItemString(d,"TOOL_STYLE_CONTROL", SWIG_FromInt((int)wxTOOL_STYLE_CONTROL));
33315 PyDict_SetItemString(d,"TB_HORIZONTAL", SWIG_FromInt((int)wxTB_HORIZONTAL));
33316 PyDict_SetItemString(d,"TB_VERTICAL", SWIG_FromInt((int)wxTB_VERTICAL));
33317 PyDict_SetItemString(d,"TB_3DBUTTONS", SWIG_FromInt((int)wxTB_3DBUTTONS));
33318 PyDict_SetItemString(d,"TB_FLAT", SWIG_FromInt((int)wxTB_FLAT));
33319 PyDict_SetItemString(d,"TB_DOCKABLE", SWIG_FromInt((int)wxTB_DOCKABLE));
33320 PyDict_SetItemString(d,"TB_NOICONS", SWIG_FromInt((int)wxTB_NOICONS));
33321 PyDict_SetItemString(d,"TB_TEXT", SWIG_FromInt((int)wxTB_TEXT));
33322 PyDict_SetItemString(d,"TB_NODIVIDER", SWIG_FromInt((int)wxTB_NODIVIDER));
33323 PyDict_SetItemString(d,"TB_NOALIGN", SWIG_FromInt((int)wxTB_NOALIGN));
33324 PyDict_SetItemString(d,"TB_HORZ_LAYOUT", SWIG_FromInt((int)wxTB_HORZ_LAYOUT));
33325 PyDict_SetItemString(d,"TB_HORZ_TEXT", SWIG_FromInt((int)wxTB_HORZ_TEXT));
33326 SWIG_addvarlink(SWIG_globals,(char*)"ListCtrlNameStr",_wrap_ListCtrlNameStr_get, _wrap_ListCtrlNameStr_set);
33327 PyDict_SetItemString(d,"LC_VRULES", SWIG_FromInt((int)wxLC_VRULES));
33328 PyDict_SetItemString(d,"LC_HRULES", SWIG_FromInt((int)wxLC_HRULES));
33329 PyDict_SetItemString(d,"LC_ICON", SWIG_FromInt((int)wxLC_ICON));
33330 PyDict_SetItemString(d,"LC_SMALL_ICON", SWIG_FromInt((int)wxLC_SMALL_ICON));
33331 PyDict_SetItemString(d,"LC_LIST", SWIG_FromInt((int)wxLC_LIST));
33332 PyDict_SetItemString(d,"LC_REPORT", SWIG_FromInt((int)wxLC_REPORT));
33333 PyDict_SetItemString(d,"LC_ALIGN_TOP", SWIG_FromInt((int)wxLC_ALIGN_TOP));
33334 PyDict_SetItemString(d,"LC_ALIGN_LEFT", SWIG_FromInt((int)wxLC_ALIGN_LEFT));
33335 PyDict_SetItemString(d,"LC_AUTOARRANGE", SWIG_FromInt((int)wxLC_AUTOARRANGE));
33336 PyDict_SetItemString(d,"LC_VIRTUAL", SWIG_FromInt((int)wxLC_VIRTUAL));
33337 PyDict_SetItemString(d,"LC_EDIT_LABELS", SWIG_FromInt((int)wxLC_EDIT_LABELS));
33338 PyDict_SetItemString(d,"LC_NO_HEADER", SWIG_FromInt((int)wxLC_NO_HEADER));
33339 PyDict_SetItemString(d,"LC_NO_SORT_HEADER", SWIG_FromInt((int)wxLC_NO_SORT_HEADER));
33340 PyDict_SetItemString(d,"LC_SINGLE_SEL", SWIG_FromInt((int)wxLC_SINGLE_SEL));
33341 PyDict_SetItemString(d,"LC_SORT_ASCENDING", SWIG_FromInt((int)wxLC_SORT_ASCENDING));
33342 PyDict_SetItemString(d,"LC_SORT_DESCENDING", SWIG_FromInt((int)wxLC_SORT_DESCENDING));
33343 PyDict_SetItemString(d,"LC_MASK_TYPE", SWIG_FromInt((int)wxLC_MASK_TYPE));
33344 PyDict_SetItemString(d,"LC_MASK_ALIGN", SWIG_FromInt((int)wxLC_MASK_ALIGN));
33345 PyDict_SetItemString(d,"LC_MASK_SORT", SWIG_FromInt((int)wxLC_MASK_SORT));
33346 PyDict_SetItemString(d,"LIST_MASK_STATE", SWIG_FromInt((int)wxLIST_MASK_STATE));
33347 PyDict_SetItemString(d,"LIST_MASK_TEXT", SWIG_FromInt((int)wxLIST_MASK_TEXT));
33348 PyDict_SetItemString(d,"LIST_MASK_IMAGE", SWIG_FromInt((int)wxLIST_MASK_IMAGE));
33349 PyDict_SetItemString(d,"LIST_MASK_DATA", SWIG_FromInt((int)wxLIST_MASK_DATA));
33350 PyDict_SetItemString(d,"LIST_SET_ITEM", SWIG_FromInt((int)wxLIST_SET_ITEM));
33351 PyDict_SetItemString(d,"LIST_MASK_WIDTH", SWIG_FromInt((int)wxLIST_MASK_WIDTH));
33352 PyDict_SetItemString(d,"LIST_MASK_FORMAT", SWIG_FromInt((int)wxLIST_MASK_FORMAT));
33353 PyDict_SetItemString(d,"LIST_STATE_DONTCARE", SWIG_FromInt((int)wxLIST_STATE_DONTCARE));
33354 PyDict_SetItemString(d,"LIST_STATE_DROPHILITED", SWIG_FromInt((int)wxLIST_STATE_DROPHILITED));
33355 PyDict_SetItemString(d,"LIST_STATE_FOCUSED", SWIG_FromInt((int)wxLIST_STATE_FOCUSED));
33356 PyDict_SetItemString(d,"LIST_STATE_SELECTED", SWIG_FromInt((int)wxLIST_STATE_SELECTED));
33357 PyDict_SetItemString(d,"LIST_STATE_CUT", SWIG_FromInt((int)wxLIST_STATE_CUT));
33358 PyDict_SetItemString(d,"LIST_STATE_DISABLED", SWIG_FromInt((int)wxLIST_STATE_DISABLED));
33359 PyDict_SetItemString(d,"LIST_STATE_FILTERED", SWIG_FromInt((int)wxLIST_STATE_FILTERED));
33360 PyDict_SetItemString(d,"LIST_STATE_INUSE", SWIG_FromInt((int)wxLIST_STATE_INUSE));
33361 PyDict_SetItemString(d,"LIST_STATE_PICKED", SWIG_FromInt((int)wxLIST_STATE_PICKED));
33362 PyDict_SetItemString(d,"LIST_STATE_SOURCE", SWIG_FromInt((int)wxLIST_STATE_SOURCE));
33363 PyDict_SetItemString(d,"LIST_HITTEST_ABOVE", SWIG_FromInt((int)wxLIST_HITTEST_ABOVE));
33364 PyDict_SetItemString(d,"LIST_HITTEST_BELOW", SWIG_FromInt((int)wxLIST_HITTEST_BELOW));
33365 PyDict_SetItemString(d,"LIST_HITTEST_NOWHERE", SWIG_FromInt((int)wxLIST_HITTEST_NOWHERE));
33366 PyDict_SetItemString(d,"LIST_HITTEST_ONITEMICON", SWIG_FromInt((int)wxLIST_HITTEST_ONITEMICON));
33367 PyDict_SetItemString(d,"LIST_HITTEST_ONITEMLABEL", SWIG_FromInt((int)wxLIST_HITTEST_ONITEMLABEL));
33368 PyDict_SetItemString(d,"LIST_HITTEST_ONITEMRIGHT", SWIG_FromInt((int)wxLIST_HITTEST_ONITEMRIGHT));
33369 PyDict_SetItemString(d,"LIST_HITTEST_ONITEMSTATEICON", SWIG_FromInt((int)wxLIST_HITTEST_ONITEMSTATEICON));
33370 PyDict_SetItemString(d,"LIST_HITTEST_TOLEFT", SWIG_FromInt((int)wxLIST_HITTEST_TOLEFT));
33371 PyDict_SetItemString(d,"LIST_HITTEST_TORIGHT", SWIG_FromInt((int)wxLIST_HITTEST_TORIGHT));
33372 PyDict_SetItemString(d,"LIST_HITTEST_ONITEM", SWIG_FromInt((int)wxLIST_HITTEST_ONITEM));
33373 PyDict_SetItemString(d,"LIST_NEXT_ABOVE", SWIG_FromInt((int)wxLIST_NEXT_ABOVE));
33374 PyDict_SetItemString(d,"LIST_NEXT_ALL", SWIG_FromInt((int)wxLIST_NEXT_ALL));
33375 PyDict_SetItemString(d,"LIST_NEXT_BELOW", SWIG_FromInt((int)wxLIST_NEXT_BELOW));
33376 PyDict_SetItemString(d,"LIST_NEXT_LEFT", SWIG_FromInt((int)wxLIST_NEXT_LEFT));
33377 PyDict_SetItemString(d,"LIST_NEXT_RIGHT", SWIG_FromInt((int)wxLIST_NEXT_RIGHT));
33378 PyDict_SetItemString(d,"LIST_ALIGN_DEFAULT", SWIG_FromInt((int)wxLIST_ALIGN_DEFAULT));
33379 PyDict_SetItemString(d,"LIST_ALIGN_LEFT", SWIG_FromInt((int)wxLIST_ALIGN_LEFT));
33380 PyDict_SetItemString(d,"LIST_ALIGN_TOP", SWIG_FromInt((int)wxLIST_ALIGN_TOP));
33381 PyDict_SetItemString(d,"LIST_ALIGN_SNAP_TO_GRID", SWIG_FromInt((int)wxLIST_ALIGN_SNAP_TO_GRID));
33382 PyDict_SetItemString(d,"LIST_FORMAT_LEFT", SWIG_FromInt((int)wxLIST_FORMAT_LEFT));
33383 PyDict_SetItemString(d,"LIST_FORMAT_RIGHT", SWIG_FromInt((int)wxLIST_FORMAT_RIGHT));
33384 PyDict_SetItemString(d,"LIST_FORMAT_CENTRE", SWIG_FromInt((int)wxLIST_FORMAT_CENTRE));
33385 PyDict_SetItemString(d,"LIST_FORMAT_CENTER", SWIG_FromInt((int)wxLIST_FORMAT_CENTER));
33386 PyDict_SetItemString(d,"LIST_AUTOSIZE", SWIG_FromInt((int)wxLIST_AUTOSIZE));
33387 PyDict_SetItemString(d,"LIST_AUTOSIZE_USEHEADER", SWIG_FromInt((int)wxLIST_AUTOSIZE_USEHEADER));
33388 PyDict_SetItemString(d,"LIST_RECT_BOUNDS", SWIG_FromInt((int)wxLIST_RECT_BOUNDS));
33389 PyDict_SetItemString(d,"LIST_RECT_ICON", SWIG_FromInt((int)wxLIST_RECT_ICON));
33390 PyDict_SetItemString(d,"LIST_RECT_LABEL", SWIG_FromInt((int)wxLIST_RECT_LABEL));
33391 PyDict_SetItemString(d,"LIST_FIND_UP", SWIG_FromInt((int)wxLIST_FIND_UP));
33392 PyDict_SetItemString(d,"LIST_FIND_DOWN", SWIG_FromInt((int)wxLIST_FIND_DOWN));
33393 PyDict_SetItemString(d,"LIST_FIND_LEFT", SWIG_FromInt((int)wxLIST_FIND_LEFT));
33394 PyDict_SetItemString(d,"LIST_FIND_RIGHT", SWIG_FromInt((int)wxLIST_FIND_RIGHT));
33395 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_LIST_BEGIN_DRAG));
33396 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_BEGIN_RDRAG", PyInt_FromLong(wxEVT_COMMAND_LIST_BEGIN_RDRAG));
33397 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT", PyInt_FromLong(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT));
33398 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_END_LABEL_EDIT", PyInt_FromLong(wxEVT_COMMAND_LIST_END_LABEL_EDIT));
33399 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_DELETE_ITEM", PyInt_FromLong(wxEVT_COMMAND_LIST_DELETE_ITEM));
33400 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS", PyInt_FromLong(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS));
33401 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_GET_INFO", PyInt_FromLong(wxEVT_COMMAND_LIST_GET_INFO));
33402 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_SET_INFO", PyInt_FromLong(wxEVT_COMMAND_LIST_SET_INFO));
33403 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_ITEM_SELECTED", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_SELECTED));
33404 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_ITEM_DESELECTED", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_DESELECTED));
33405 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_KEY_DOWN", PyInt_FromLong(wxEVT_COMMAND_LIST_KEY_DOWN));
33406 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_INSERT_ITEM", PyInt_FromLong(wxEVT_COMMAND_LIST_INSERT_ITEM));
33407 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_COL_CLICK", PyInt_FromLong(wxEVT_COMMAND_LIST_COL_CLICK));
33408 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK));
33409 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK));
33410 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_ITEM_ACTIVATED", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_ACTIVATED));
33411 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_CACHE_HINT", PyInt_FromLong(wxEVT_COMMAND_LIST_CACHE_HINT));
33412 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_COL_RIGHT_CLICK", PyInt_FromLong(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK));
33413 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_COL_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG));
33414 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_COL_DRAGGING", PyInt_FromLong(wxEVT_COMMAND_LIST_COL_DRAGGING));
33415 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_COL_END_DRAG", PyInt_FromLong(wxEVT_COMMAND_LIST_COL_END_DRAG));
33416 PyDict_SetItemString(d, "wxEVT_COMMAND_LIST_ITEM_FOCUSED", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_FOCUSED));
33417
33418 // Map renamed classes back to their common name for OOR
33419 wxPyPtrTypeMap_Add("wxListCtrl", "wxPyListCtrl");
33420
33421 SWIG_addvarlink(SWIG_globals,(char*)"TreeCtrlNameStr",_wrap_TreeCtrlNameStr_get, _wrap_TreeCtrlNameStr_set);
33422 PyDict_SetItemString(d,"TR_NO_BUTTONS", SWIG_FromInt((int)wxTR_NO_BUTTONS));
33423 PyDict_SetItemString(d,"TR_HAS_BUTTONS", SWIG_FromInt((int)wxTR_HAS_BUTTONS));
33424 PyDict_SetItemString(d,"TR_NO_LINES", SWIG_FromInt((int)wxTR_NO_LINES));
33425 PyDict_SetItemString(d,"TR_LINES_AT_ROOT", SWIG_FromInt((int)wxTR_LINES_AT_ROOT));
33426 PyDict_SetItemString(d,"TR_SINGLE", SWIG_FromInt((int)wxTR_SINGLE));
33427 PyDict_SetItemString(d,"TR_MULTIPLE", SWIG_FromInt((int)wxTR_MULTIPLE));
33428 PyDict_SetItemString(d,"TR_EXTENDED", SWIG_FromInt((int)wxTR_EXTENDED));
33429 PyDict_SetItemString(d,"TR_HAS_VARIABLE_ROW_HEIGHT", SWIG_FromInt((int)wxTR_HAS_VARIABLE_ROW_HEIGHT));
33430 PyDict_SetItemString(d,"TR_EDIT_LABELS", SWIG_FromInt((int)wxTR_EDIT_LABELS));
33431 PyDict_SetItemString(d,"TR_HIDE_ROOT", SWIG_FromInt((int)wxTR_HIDE_ROOT));
33432 PyDict_SetItemString(d,"TR_ROW_LINES", SWIG_FromInt((int)wxTR_ROW_LINES));
33433 PyDict_SetItemString(d,"TR_FULL_ROW_HIGHLIGHT", SWIG_FromInt((int)wxTR_FULL_ROW_HIGHLIGHT));
33434 PyDict_SetItemString(d,"TR_DEFAULT_STYLE", SWIG_FromInt((int)wxTR_DEFAULT_STYLE));
33435 PyDict_SetItemString(d,"TR_TWIST_BUTTONS", SWIG_FromInt((int)wxTR_TWIST_BUTTONS));
33436 PyDict_SetItemString(d,"TR_MAC_BUTTONS", SWIG_FromInt((int)wxTR_MAC_BUTTONS));
33437 PyDict_SetItemString(d,"TR_AQUA_BUTTONS", SWIG_FromInt((int)wxTR_AQUA_BUTTONS));
33438 PyDict_SetItemString(d,"TreeItemIcon_Normal", SWIG_FromInt((int)wxTreeItemIcon_Normal));
33439 PyDict_SetItemString(d,"TreeItemIcon_Selected", SWIG_FromInt((int)wxTreeItemIcon_Selected));
33440 PyDict_SetItemString(d,"TreeItemIcon_Expanded", SWIG_FromInt((int)wxTreeItemIcon_Expanded));
33441 PyDict_SetItemString(d,"TreeItemIcon_SelectedExpanded", SWIG_FromInt((int)wxTreeItemIcon_SelectedExpanded));
33442 PyDict_SetItemString(d,"TreeItemIcon_Max", SWIG_FromInt((int)wxTreeItemIcon_Max));
33443 PyDict_SetItemString(d,"TREE_HITTEST_ABOVE", SWIG_FromInt((int)wxTREE_HITTEST_ABOVE));
33444 PyDict_SetItemString(d,"TREE_HITTEST_BELOW", SWIG_FromInt((int)wxTREE_HITTEST_BELOW));
33445 PyDict_SetItemString(d,"TREE_HITTEST_NOWHERE", SWIG_FromInt((int)wxTREE_HITTEST_NOWHERE));
33446 PyDict_SetItemString(d,"TREE_HITTEST_ONITEMBUTTON", SWIG_FromInt((int)wxTREE_HITTEST_ONITEMBUTTON));
33447 PyDict_SetItemString(d,"TREE_HITTEST_ONITEMICON", SWIG_FromInt((int)wxTREE_HITTEST_ONITEMICON));
33448 PyDict_SetItemString(d,"TREE_HITTEST_ONITEMINDENT", SWIG_FromInt((int)wxTREE_HITTEST_ONITEMINDENT));
33449 PyDict_SetItemString(d,"TREE_HITTEST_ONITEMLABEL", SWIG_FromInt((int)wxTREE_HITTEST_ONITEMLABEL));
33450 PyDict_SetItemString(d,"TREE_HITTEST_ONITEMRIGHT", SWIG_FromInt((int)wxTREE_HITTEST_ONITEMRIGHT));
33451 PyDict_SetItemString(d,"TREE_HITTEST_ONITEMSTATEICON", SWIG_FromInt((int)wxTREE_HITTEST_ONITEMSTATEICON));
33452 PyDict_SetItemString(d,"TREE_HITTEST_TOLEFT", SWIG_FromInt((int)wxTREE_HITTEST_TOLEFT));
33453 PyDict_SetItemString(d,"TREE_HITTEST_TORIGHT", SWIG_FromInt((int)wxTREE_HITTEST_TORIGHT));
33454 PyDict_SetItemString(d,"TREE_HITTEST_ONITEMUPPERPART", SWIG_FromInt((int)wxTREE_HITTEST_ONITEMUPPERPART));
33455 PyDict_SetItemString(d,"TREE_HITTEST_ONITEMLOWERPART", SWIG_FromInt((int)wxTREE_HITTEST_ONITEMLOWERPART));
33456 PyDict_SetItemString(d,"TREE_HITTEST_ONITEM", SWIG_FromInt((int)wxTREE_HITTEST_ONITEM));
33457 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_TREE_BEGIN_DRAG));
33458 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_BEGIN_RDRAG", PyInt_FromLong(wxEVT_COMMAND_TREE_BEGIN_RDRAG));
33459 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT", PyInt_FromLong(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT));
33460 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_END_LABEL_EDIT", PyInt_FromLong(wxEVT_COMMAND_TREE_END_LABEL_EDIT));
33461 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_DELETE_ITEM", PyInt_FromLong(wxEVT_COMMAND_TREE_DELETE_ITEM));
33462 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_GET_INFO", PyInt_FromLong(wxEVT_COMMAND_TREE_GET_INFO));
33463 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_SET_INFO", PyInt_FromLong(wxEVT_COMMAND_TREE_SET_INFO));
33464 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_ITEM_EXPANDED", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_EXPANDED));
33465 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_ITEM_EXPANDING", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_EXPANDING));
33466 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_ITEM_COLLAPSED", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_COLLAPSED));
33467 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_ITEM_COLLAPSING", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_COLLAPSING));
33468 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_SEL_CHANGED", PyInt_FromLong(wxEVT_COMMAND_TREE_SEL_CHANGED));
33469 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_SEL_CHANGING", PyInt_FromLong(wxEVT_COMMAND_TREE_SEL_CHANGING));
33470 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_KEY_DOWN", PyInt_FromLong(wxEVT_COMMAND_TREE_KEY_DOWN));
33471 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_ITEM_ACTIVATED", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_ACTIVATED));
33472 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK));
33473 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK));
33474 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_END_DRAG", PyInt_FromLong(wxEVT_COMMAND_TREE_END_DRAG));
33475 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK", PyInt_FromLong(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK));
33476 PyDict_SetItemString(d, "wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP));
33477
33478 // Map renamed classes back to their common name for OOR
33479 wxPyPtrTypeMap_Add("wxTreeItemData", "wxPyTreeItemData");
33480 wxPyPtrTypeMap_Add("wxTreeCtrl", "wxPyTreeCtrl");
33481
33482 SWIG_addvarlink(SWIG_globals,(char*)"DirDialogDefaultFolderStr",_wrap_DirDialogDefaultFolderStr_get, _wrap_DirDialogDefaultFolderStr_set);
33483 PyDict_SetItemString(d,"DIRCTRL_DIR_ONLY", SWIG_FromInt((int)wxDIRCTRL_DIR_ONLY));
33484 PyDict_SetItemString(d,"DIRCTRL_SELECT_FIRST", SWIG_FromInt((int)wxDIRCTRL_SELECT_FIRST));
33485 PyDict_SetItemString(d,"DIRCTRL_SHOW_FILTERS", SWIG_FromInt((int)wxDIRCTRL_SHOW_FILTERS));
33486 PyDict_SetItemString(d,"DIRCTRL_3D_INTERNAL", SWIG_FromInt((int)wxDIRCTRL_3D_INTERNAL));
33487 PyDict_SetItemString(d,"DIRCTRL_EDIT_LABELS", SWIG_FromInt((int)wxDIRCTRL_EDIT_LABELS));
33488 PyDict_SetItemString(d,"FRAME_EX_CONTEXTHELP", SWIG_FromInt((int)wxFRAME_EX_CONTEXTHELP));
33489 PyDict_SetItemString(d,"DIALOG_EX_CONTEXTHELP", SWIG_FromInt((int)wxDIALOG_EX_CONTEXTHELP));
33490 PyDict_SetItemString(d, "wxEVT_HELP", PyInt_FromLong(wxEVT_HELP));
33491 PyDict_SetItemString(d, "wxEVT_DETAILED_HELP", PyInt_FromLong(wxEVT_DETAILED_HELP));
33492
33493 wxPyPtrTypeMap_Add("wxDragImage", "wxGenericDragImage");
33494
33495 }
33496