1 /* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
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 * ----------------------------------------------------------------------------- */
12 #define SWIG_VERSION 0x010327
15 template<class T
> class SwigValueWrapper
{
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
; }
26 SwigValueWrapper
& operator=(const SwigValueWrapper
<T
>& rhs
);
30 /***********************************************************************
32 * This section contains generic SWIG labels for method/variable
33 * declarations/attributes, and other compiler dependent labels.
35 ************************************************************************/
37 /* template workaround for compilers that cannot correctly implement the C++ standard */
38 #ifndef SWIGTEMPLATEDISAMBIGUATOR
39 # if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560)
40 # define SWIGTEMPLATEDISAMBIGUATOR template
42 # define SWIGTEMPLATEDISAMBIGUATOR
46 /* inline attribute */
48 # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
49 # define SWIGINLINE inline
55 /* attribute recognised by some compilers to avoid 'unused' warnings */
57 # if defined(__GNUC__) || defined(__ICC)
58 # define SWIGUNUSED __attribute__ ((unused))
64 /* internal SWIG method */
66 # define SWIGINTERN static SWIGUNUSED
69 /* internal inline SWIG method */
70 #ifndef SWIGINTERNINLINE
71 # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
74 /* exporting methods for Windows DLLs */
76 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
77 # if defined(STATIC_LINKED)
80 # define SWIGEXPORT __declspec(dllexport)
87 /* calling conventions for Windows */
89 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
90 # define SWIGSTDCALL __stdcall
100 /***********************************************************************
103 * This file contains generic CAPI SWIG runtime support for pointer
106 ************************************************************************/
108 /* This should only be incremented when either the layout of swig_type_info changes,
109 or for whatever reason, the runtime changes incompatibly */
110 #define SWIG_RUNTIME_VERSION "2"
112 /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
113 #ifdef SWIG_TYPE_TABLE
114 # define SWIG_QUOTE_STRING(x) #x
115 # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
116 # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
118 # define SWIG_TYPE_TABLE_NAME
122 You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
123 creating a static or dynamic library from the swig runtime code.
124 In 99.9% of the cases, swig just needs to declare them as 'static'.
126 But only do this if is strictly necessary, ie, if you have problems
127 with your compiler or so.
131 # define SWIGRUNTIME SWIGINTERN
134 #ifndef SWIGRUNTIMEINLINE
135 # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
144 typedef void *(*swig_converter_func
)(void *);
145 typedef struct swig_type_info
*(*swig_dycast_func
)(void **);
147 /* Structure to store inforomation on one type */
148 typedef struct swig_type_info
{
149 const char *name
; /* mangled name of this type */
150 const char *str
; /* human readable name of this type */
151 swig_dycast_func dcast
; /* dynamic cast function down a hierarchy */
152 struct swig_cast_info
*cast
; /* linked list of types that can cast into this type */
153 void *clientdata
; /* language specific type data */
156 /* Structure to store a type and conversion function used for casting */
157 typedef struct swig_cast_info
{
158 swig_type_info
*type
; /* pointer to type that is equivalent to this type */
159 swig_converter_func converter
; /* function to cast the void pointers */
160 struct swig_cast_info
*next
; /* pointer to next cast in linked list */
161 struct swig_cast_info
*prev
; /* pointer to the previous cast */
164 /* Structure used to store module information
165 * Each module generates one structure like this, and the runtime collects
166 * all of these structures and stores them in a circularly linked list.*/
167 typedef struct swig_module_info
{
168 swig_type_info
**types
; /* Array of pointers to swig_type_info structures that are in this module */
169 size_t size
; /* Number of types in this module */
170 struct swig_module_info
*next
; /* Pointer to next element in circularly linked list */
171 swig_type_info
**type_initial
; /* Array of initially generated type structures */
172 swig_cast_info
**cast_initial
; /* Array of initially generated casting structures */
173 void *clientdata
; /* Language specific module data */
178 Compare two type names skipping the space characters, therefore
179 "char*" == "char *" and "Class<int>" == "Class<int >", etc.
181 Return 0 when the two name types are equivalent, as in
182 strncmp, but skipping ' '.
185 SWIG_TypeNameComp(const char *f1
, const char *l1
,
186 const char *f2
, const char *l2
) {
187 for (;(f1
!= l1
) && (f2
!= l2
); ++f1
, ++f2
) {
188 while ((*f1
== ' ') && (f1
!= l1
)) ++f1
;
189 while ((*f2
== ' ') && (f2
!= l2
)) ++f2
;
190 if (*f1
!= *f2
) return (int)(*f1
- *f2
);
192 return (l1
- f1
) - (l2
- f2
);
196 Check type equivalence in a name list like <name1>|<name2>|...
197 Return 0 if not equal, 1 if equal
200 SWIG_TypeEquiv(const char *nb
, const char *tb
) {
202 const char* te
= tb
+ strlen(tb
);
204 while (!equiv
&& *ne
) {
205 for (nb
= ne
; *ne
; ++ne
) {
206 if (*ne
== '|') break;
208 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
215 Check type equivalence in a name list like <name1>|<name2>|...
216 Return 0 if equal, -1 if nb < tb, 1 if nb > tb
219 SWIG_TypeCompare(const char *nb
, const char *tb
) {
221 const char* te
= tb
+ strlen(tb
);
223 while (!equiv
&& *ne
) {
224 for (nb
= ne
; *ne
; ++ne
) {
225 if (*ne
== '|') break;
227 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
234 /* think of this as a c++ template<> or a scheme macro */
235 #define SWIG_TypeCheck_Template(comparison, ty) \
237 swig_cast_info *iter = ty->cast; \
240 if (iter == ty->cast) return iter; \
241 /* Move iter to the top of the linked list */ \
242 iter->prev->next = iter->next; \
244 iter->next->prev = iter->prev; \
245 iter->next = ty->cast; \
247 if (ty->cast) ty->cast->prev = iter; \
259 SWIGRUNTIME swig_cast_info
*
260 SWIG_TypeCheck(const char *c
, swig_type_info
*ty
) {
261 SWIG_TypeCheck_Template(strcmp(iter
->type
->name
, c
) == 0, ty
);
264 /* Same as previous function, except strcmp is replaced with a pointer comparison */
265 SWIGRUNTIME swig_cast_info
*
266 SWIG_TypeCheckStruct(swig_type_info
*from
, swig_type_info
*into
) {
267 SWIG_TypeCheck_Template(iter
->type
== from
, into
);
271 Cast a pointer up an inheritance hierarchy
273 SWIGRUNTIMEINLINE
void *
274 SWIG_TypeCast(swig_cast_info
*ty
, void *ptr
) {
275 return ((!ty
) || (!ty
->converter
)) ? ptr
: (*ty
->converter
)(ptr
);
279 Dynamic pointer casting. Down an inheritance hierarchy
281 SWIGRUNTIME swig_type_info
*
282 SWIG_TypeDynamicCast(swig_type_info
*ty
, void **ptr
) {
283 swig_type_info
*lastty
= ty
;
284 if (!ty
|| !ty
->dcast
) return ty
;
285 while (ty
&& (ty
->dcast
)) {
286 ty
= (*ty
->dcast
)(ptr
);
293 Return the name associated with this type
295 SWIGRUNTIMEINLINE
const char *
296 SWIG_TypeName(const swig_type_info
*ty
) {
301 Return the pretty name associated with this type,
302 that is an unmangled type name in a form presentable to the user.
304 SWIGRUNTIME
const char *
305 SWIG_TypePrettyName(const swig_type_info
*type
) {
306 /* The "str" field contains the equivalent pretty names of the
307 type, separated by vertical-bar characters. We choose
308 to print the last name, as it is often (?) the most
310 if (type
->str
!= NULL
) {
311 const char *last_name
= type
->str
;
313 for (s
= type
->str
; *s
; s
++)
314 if (*s
== '|') last_name
= s
+1;
322 Set the clientdata field for a type
325 SWIG_TypeClientData(swig_type_info
*ti
, void *clientdata
) {
326 swig_cast_info
*cast
= ti
->cast
;
327 /* if (ti->clientdata == clientdata) return; */
328 ti
->clientdata
= clientdata
;
331 if (!cast
->converter
) {
332 swig_type_info
*tc
= cast
->type
;
333 if (!tc
->clientdata
) {
334 SWIG_TypeClientData(tc
, clientdata
);
342 Search for a swig_type_info structure only by mangled name
343 Search is a O(log #types)
345 We start searching at module start, and finish searching when start == end.
346 Note: if start == end at the beginning of the function, we go all the way around
349 SWIGRUNTIME swig_type_info
*
350 SWIG_MangledTypeQueryModule(swig_module_info
*start
,
351 swig_module_info
*end
,
353 swig_module_info
*iter
= start
;
356 register size_t l
= 0;
357 register size_t r
= iter
->size
- 1;
359 /* since l+r >= 0, we can (>> 1) instead (/ 2) */
360 register size_t i
= (l
+ r
) >> 1;
361 const char *iname
= iter
->types
[i
]->name
;
363 register int compare
= strcmp(name
, iname
);
365 return iter
->types
[i
];
366 } else if (compare
< 0) {
372 } else if (compare
> 0) {
376 break; /* should never happen */
381 } while (iter
!= end
);
386 Search for a swig_type_info structure for either a mangled name or a human readable name.
387 It first searches the mangled names of the types, which is a O(log #types)
388 If a type is not found it then searches the human readable names, which is O(#types).
390 We start searching at module start, and finish searching when start == end.
391 Note: if start == end at the beginning of the function, we go all the way around
394 SWIGRUNTIME swig_type_info
*
395 SWIG_TypeQueryModule(swig_module_info
*start
,
396 swig_module_info
*end
,
398 /* STEP 1: Search the name field using binary search */
399 swig_type_info
*ret
= SWIG_MangledTypeQueryModule(start
, end
, name
);
403 /* STEP 2: If the type hasn't been found, do a complete search
404 of the str field (the human readable name) */
405 swig_module_info
*iter
= start
;
407 register size_t i
= 0;
408 for (; i
< iter
->size
; ++i
) {
409 if (iter
->types
[i
]->str
&& (SWIG_TypeEquiv(iter
->types
[i
]->str
, name
)))
410 return iter
->types
[i
];
413 } while (iter
!= end
);
416 /* neither found a match */
422 Pack binary data into a string
425 SWIG_PackData(char *c
, void *ptr
, size_t sz
) {
426 static const char hex
[17] = "0123456789abcdef";
427 register const unsigned char *u
= (unsigned char *) ptr
;
428 register const unsigned char *eu
= u
+ sz
;
429 for (; u
!= eu
; ++u
) {
430 register unsigned char uu
= *u
;
431 *(c
++) = hex
[(uu
& 0xf0) >> 4];
432 *(c
++) = hex
[uu
& 0xf];
438 Unpack binary data from a string
440 SWIGRUNTIME
const char *
441 SWIG_UnpackData(const char *c
, void *ptr
, size_t sz
) {
442 register unsigned char *u
= (unsigned char *) ptr
;
443 register const unsigned char *eu
= u
+ sz
;
444 for (; u
!= eu
; ++u
) {
445 register char d
= *(c
++);
446 register unsigned char uu
= 0;
447 if ((d
>= '0') && (d
<= '9'))
448 uu
= ((d
- '0') << 4);
449 else if ((d
>= 'a') && (d
<= 'f'))
450 uu
= ((d
- ('a'-10)) << 4);
454 if ((d
>= '0') && (d
<= '9'))
456 else if ((d
>= 'a') && (d
<= 'f'))
457 uu
|= (d
- ('a'-10));
466 Pack 'void *' into a string buffer.
469 SWIG_PackVoidPtr(char *buff
, void *ptr
, const char *name
, size_t bsz
) {
471 if ((2*sizeof(void *) + 2) > bsz
) return 0;
473 r
= SWIG_PackData(r
,&ptr
,sizeof(void *));
474 if (strlen(name
) + 1 > (bsz
- (r
- buff
))) return 0;
479 SWIGRUNTIME
const char *
480 SWIG_UnpackVoidPtr(const char *c
, void **ptr
, const char *name
) {
482 if (strcmp(c
,"NULL") == 0) {
489 return SWIG_UnpackData(++c
,ptr
,sizeof(void *));
493 SWIG_PackDataName(char *buff
, void *ptr
, size_t sz
, const char *name
, size_t bsz
) {
495 size_t lname
= (name
? strlen(name
) : 0);
496 if ((2*sz
+ 2 + lname
) > bsz
) return 0;
498 r
= SWIG_PackData(r
,ptr
,sz
);
500 strncpy(r
,name
,lname
+1);
507 SWIGRUNTIME
const char *
508 SWIG_UnpackDataName(const char *c
, void *ptr
, size_t sz
, const char *name
) {
510 if (strcmp(c
,"NULL") == 0) {
517 return SWIG_UnpackData(++c
,ptr
,sz
);
524 /* -----------------------------------------------------------------------------
525 * SWIG API. Portion that goes into the runtime
526 * ----------------------------------------------------------------------------- */
532 /* -----------------------------------------------------------------------------
533 * for internal method declarations
534 * ----------------------------------------------------------------------------- */
537 # define SWIGINTERN static SWIGUNUSED
540 #ifndef SWIGINTERNINLINE
541 # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
545 Exception handling in wrappers
547 #define SWIG_fail goto fail
548 #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
549 #define SWIG_append_errmsg(msg) SWIG_Python_AddErrMesg(msg,0)
550 #define SWIG_preppend_errmsg(msg) SWIG_Python_AddErrMesg(msg,1)
551 #define SWIG_type_error(type,obj) SWIG_Python_TypeError(type,obj)
552 #define SWIG_null_ref(type) SWIG_Python_NullRef(type)
557 #define SWIG_contract_assert(expr, msg) \
558 if (!(expr)) { PyErr_SetString(PyExc_RuntimeError, (char *) msg ); goto fail; } else
560 /* -----------------------------------------------------------------------------
561 * Constant declarations
562 * ----------------------------------------------------------------------------- */
565 #define SWIG_PY_INT 1
566 #define SWIG_PY_FLOAT 2
567 #define SWIG_PY_STRING 3
568 #define SWIG_PY_POINTER 4
569 #define SWIG_PY_BINARY 5
571 /* Constant information structure */
572 typedef struct swig_const_info
{
578 swig_type_info
**ptype
;
582 /* -----------------------------------------------------------------------------
583 * Alloc. memory flags
584 * ----------------------------------------------------------------------------- */
585 #define SWIG_OLDOBJ 1
586 #define SWIG_NEWOBJ SWIG_OLDOBJ + 1
587 #define SWIG_PYSTR SWIG_NEWOBJ + 1
594 /***********************************************************************
597 * This file contains the runtime support for Python modules
598 * and includes code for managing global variables and pointer
601 * Author : David Beazley (beazley@cs.uchicago.edu)
602 ************************************************************************/
604 /* Common SWIG API */
605 #define SWIG_ConvertPtr(obj, pp, type, flags) SWIG_Python_ConvertPtr(obj, pp, type, flags)
606 #define SWIG_NewPointerObj(p, type, flags) SWIG_Python_NewPointerObj(p, type, flags)
607 #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
610 /* Python-specific SWIG API */
611 #define SWIG_ConvertPacked(obj, ptr, sz, ty, flags) SWIG_Python_ConvertPacked(obj, ptr, sz, ty, flags)
612 #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
615 #define SWIG_GetModule(clientdata) SWIG_Python_GetModule()
616 #define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
618 /* -----------------------------------------------------------------------------
619 * Pointer declarations
620 * ----------------------------------------------------------------------------- */
622 Use SWIG_NO_COBJECT_TYPES to force the use of strings to represent
623 C/C++ pointers in the python side. Very useful for debugging, but
626 #if !defined(SWIG_NO_COBJECT_TYPES) && !defined(SWIG_COBJECT_TYPES)
627 # define SWIG_COBJECT_TYPES
630 /* Flags for pointer conversion */
631 #define SWIG_POINTER_EXCEPTION 0x1
632 #define SWIG_POINTER_DISOWN 0x2
635 /* Add PyOS_snprintf for old Pythons */
636 #if PY_VERSION_HEX < 0x02020000
637 #define PyOS_snprintf snprintf
644 /* -----------------------------------------------------------------------------
645 * Create a new pointer string
646 * ----------------------------------------------------------------------------- */
647 #ifndef SWIG_BUFFER_SIZE
648 #define SWIG_BUFFER_SIZE 1024
651 /* A crude PyString_FromFormat implementation for old Pythons */
652 #if PY_VERSION_HEX < 0x02020000
654 PyString_FromFormat(const char *fmt
, ...) {
656 char buf
[SWIG_BUFFER_SIZE
* 2];
659 res
= vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
661 return (res
< 0 || res
>= sizeof(buf
)) ? 0 : PyString_FromString(buf
);
665 #if PY_VERSION_HEX < 0x01060000
666 #define PyObject_Del(op) PyMem_DEL((op))
669 #if defined(SWIG_COBJECT_TYPES)
670 #if !defined(SWIG_COBJECT_PYTHON)
671 /* -----------------------------------------------------------------------------
672 * Implements a simple Swig Object type, and use it instead of PyCObject
673 * ----------------------------------------------------------------------------- */
681 /* Declarations for objects of type PySwigObject */
684 PySwigObject_print(PySwigObject
*v
, FILE *fp
, int flags
)
686 char result
[SWIG_BUFFER_SIZE
];
688 if (SWIG_PackVoidPtr(result
, v
->ptr
, v
->desc
, sizeof(result
))) {
689 fputs("<Swig Object at ", fp
); fputs(result
, fp
); fputs(">", fp
);
696 SWIGRUNTIME PyObject
*
697 PySwigObject_repr(PySwigObject
*v
)
699 char result
[SWIG_BUFFER_SIZE
];
700 return SWIG_PackVoidPtr(result
, v
->ptr
, v
->desc
, sizeof(result
)) ?
701 PyString_FromFormat("<Swig Object at %s>", result
) : 0;
704 SWIGRUNTIME PyObject
*
705 PySwigObject_str(PySwigObject
*v
)
707 char result
[SWIG_BUFFER_SIZE
];
708 return SWIG_PackVoidPtr(result
, v
->ptr
, v
->desc
, sizeof(result
)) ?
709 PyString_FromString(result
) : 0;
712 SWIGRUNTIME PyObject
*
713 PySwigObject_long(PySwigObject
*v
)
715 return PyLong_FromVoidPtr(v
->ptr
);
718 SWIGRUNTIME PyObject
*
719 PySwigObject_format(const char* fmt
, PySwigObject
*v
)
721 PyObject
*res
= NULL
;
722 PyObject
*args
= PyTuple_New(1);
723 if (args
&& (PyTuple_SetItem(args
, 0, PySwigObject_long(v
)) == 0)) {
724 PyObject
*ofmt
= PyString_FromString(fmt
);
726 res
= PyString_Format(ofmt
,args
);
734 SWIGRUNTIME PyObject
*
735 PySwigObject_oct(PySwigObject
*v
)
737 return PySwigObject_format("%o",v
);
740 SWIGRUNTIME PyObject
*
741 PySwigObject_hex(PySwigObject
*v
)
743 return PySwigObject_format("%x",v
);
747 PySwigObject_compare(PySwigObject
*v
, PySwigObject
*w
)
749 int c
= strcmp(v
->desc
, w
->desc
);
751 return (c
> 0) ? 1 : -1;
755 return (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
760 PySwigObject_dealloc(PySwigObject
*self
)
765 SWIGRUNTIME PyTypeObject
*
766 PySwigObject_type(void) {
767 static char pyswigobject_type__doc__
[] =
768 "Swig object carries a C/C++ instance pointer";
770 static PyNumberMethods PySwigObject_as_number
= {
771 (binaryfunc
)0, /*nb_add*/
772 (binaryfunc
)0, /*nb_subtract*/
773 (binaryfunc
)0, /*nb_multiply*/
774 (binaryfunc
)0, /*nb_divide*/
775 (binaryfunc
)0, /*nb_remainder*/
776 (binaryfunc
)0, /*nb_divmod*/
777 (ternaryfunc
)0,/*nb_power*/
778 (unaryfunc
)0, /*nb_negative*/
779 (unaryfunc
)0, /*nb_positive*/
780 (unaryfunc
)0, /*nb_absolute*/
781 (inquiry
)0, /*nb_nonzero*/
788 (coercion
)0, /*nb_coerce*/
789 (unaryfunc
)PySwigObject_long
, /*nb_int*/
790 (unaryfunc
)PySwigObject_long
, /*nb_long*/
791 (unaryfunc
)0, /*nb_float*/
792 (unaryfunc
)PySwigObject_oct
, /*nb_oct*/
793 (unaryfunc
)PySwigObject_hex
, /*nb_hex*/
794 #if PY_VERSION_HEX >= 0x02020000
795 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
796 #elif PY_VERSION_HEX >= 0x02000000
797 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
801 static PyTypeObject pyswigobject_type
802 #if !defined(__cplusplus)
804 static int type_init
= 0;
809 PyObject_HEAD_INIT(&PyType_Type
)
811 (char *)"PySwigObject", /*tp_name*/
812 sizeof(PySwigObject
), /*tp_basicsize*/
815 (destructor
)PySwigObject_dealloc
, /*tp_dealloc*/
816 (printfunc
)PySwigObject_print
, /*tp_print*/
817 (getattrfunc
)0, /*tp_getattr*/
818 (setattrfunc
)0, /*tp_setattr*/
819 (cmpfunc
)PySwigObject_compare
, /*tp_compare*/
820 (reprfunc
)PySwigObject_repr
, /*tp_repr*/
821 &PySwigObject_as_number
, /*tp_as_number*/
822 0, /*tp_as_sequence*/
824 (hashfunc
)0, /*tp_hash*/
825 (ternaryfunc
)0, /*tp_call*/
826 (reprfunc
)PySwigObject_str
, /*tp_str*/
827 /* Space for future expansion */
829 pyswigobject_type__doc__
, /* Documentation string */
830 #if PY_VERSION_HEX >= 0x02000000
834 #if PY_VERSION_HEX >= 0x02010000
835 0, /* tp_richcompare */
836 0, /* tp_weaklistoffset */
838 #if PY_VERSION_HEX >= 0x02020000
839 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
841 #if PY_VERSION_HEX >= 0x02030000
845 0,0,0,0 /* tp_alloc -> tp_next */
848 #if !defined(__cplusplus)
849 pyswigobject_type
= tmp
;
853 return &pyswigobject_type
;
856 SWIGRUNTIME PyObject
*
857 PySwigObject_FromVoidPtrAndDesc(void *ptr
, const char *desc
)
859 PySwigObject
*self
= PyObject_NEW(PySwigObject
, PySwigObject_type());
864 return (PyObject
*)self
;
867 SWIGRUNTIMEINLINE
void *
868 PySwigObject_AsVoidPtr(PyObject
*self
)
870 return ((PySwigObject
*)self
)->ptr
;
873 SWIGRUNTIMEINLINE
const char *
874 PySwigObject_GetDesc(PyObject
*self
)
876 return ((PySwigObject
*)self
)->desc
;
879 SWIGRUNTIMEINLINE
int
880 PySwigObject_Check(PyObject
*op
) {
881 return ((op
)->ob_type
== PySwigObject_type())
882 || (strcmp((op
)->ob_type
->tp_name
,"PySwigObject") == 0);
885 /* -----------------------------------------------------------------------------
886 * Implements a simple Swig Packed type, and use it instead of string
887 * ----------------------------------------------------------------------------- */
897 PySwigPacked_print(PySwigPacked
*v
, FILE *fp
, int flags
)
899 char result
[SWIG_BUFFER_SIZE
];
901 fputs("<Swig Packed ", fp
);
902 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
911 SWIGRUNTIME PyObject
*
912 PySwigPacked_repr(PySwigPacked
*v
)
914 char result
[SWIG_BUFFER_SIZE
];
915 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
916 return PyString_FromFormat("<Swig Packed at %s%s>", result
, v
->desc
);
918 return PyString_FromFormat("<Swig Packed %s>", v
->desc
);
922 SWIGRUNTIME PyObject
*
923 PySwigPacked_str(PySwigPacked
*v
)
925 char result
[SWIG_BUFFER_SIZE
];
926 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))){
927 return PyString_FromFormat("%s%s", result
, v
->desc
);
929 return PyString_FromString(v
->desc
);
934 PySwigPacked_compare(PySwigPacked
*v
, PySwigPacked
*w
)
936 int c
= strcmp(v
->desc
, w
->desc
);
938 return (c
> 0) ? 1 : -1;
942 int s
= (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
943 return s
? s
: strncmp((char *)v
->pack
, (char *)w
->pack
, 2*v
->size
);
948 PySwigPacked_dealloc(PySwigPacked
*self
)
954 SWIGRUNTIME PyTypeObject
*
955 PySwigPacked_type(void) {
956 static char pyswigpacked_type__doc__
[] =
957 "Swig object carries a C/C++ instance pointer";
958 static PyTypeObject pyswigpacked_type
959 #if !defined(__cplusplus)
961 static int type_init
= 0;
966 PyObject_HEAD_INIT(&PyType_Type
)
968 (char *)"PySwigPacked", /*tp_name*/
969 sizeof(PySwigPacked
), /*tp_basicsize*/
972 (destructor
)PySwigPacked_dealloc
, /*tp_dealloc*/
973 (printfunc
)PySwigPacked_print
, /*tp_print*/
974 (getattrfunc
)0, /*tp_getattr*/
975 (setattrfunc
)0, /*tp_setattr*/
976 (cmpfunc
)PySwigPacked_compare
, /*tp_compare*/
977 (reprfunc
)PySwigPacked_repr
, /*tp_repr*/
979 0, /*tp_as_sequence*/
981 (hashfunc
)0, /*tp_hash*/
982 (ternaryfunc
)0, /*tp_call*/
983 (reprfunc
)PySwigPacked_str
, /*tp_str*/
984 /* Space for future expansion */
986 pyswigpacked_type__doc__
, /* Documentation string */
987 #if PY_VERSION_HEX >= 0x02000000
991 #if PY_VERSION_HEX >= 0x02010000
992 0, /* tp_richcompare */
993 0, /* tp_weaklistoffset */
995 #if PY_VERSION_HEX >= 0x02020000
996 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
998 #if PY_VERSION_HEX >= 0x02030000
1002 0,0,0,0 /* tp_alloc -> tp_next */
1005 #if !defined(__cplusplus)
1006 pyswigpacked_type
= tmp
;
1010 return &pyswigpacked_type
;
1013 SWIGRUNTIME PyObject
*
1014 PySwigPacked_FromDataAndDesc(void *ptr
, size_t size
, const char *desc
)
1016 PySwigPacked
*self
= PyObject_NEW(PySwigPacked
, PySwigPacked_type());
1020 void *pack
= malloc(size
);
1022 memcpy(pack
, ptr
, size
);
1026 return (PyObject
*) self
;
1032 SWIGRUNTIMEINLINE
const char *
1033 PySwigPacked_UnpackData(PyObject
*obj
, void *ptr
, size_t size
)
1035 PySwigPacked
*self
= (PySwigPacked
*)obj
;
1036 if (self
->size
!= size
) return 0;
1037 memcpy(ptr
, self
->pack
, size
);
1041 SWIGRUNTIMEINLINE
const char *
1042 PySwigPacked_GetDesc(PyObject
*self
)
1044 return ((PySwigPacked
*)self
)->desc
;
1047 SWIGRUNTIMEINLINE
int
1048 PySwigPacked_Check(PyObject
*op
) {
1049 return ((op
)->ob_type
== PySwigPacked_type())
1050 || (strcmp((op
)->ob_type
->tp_name
,"PySwigPacked") == 0);
1054 /* -----------------------------------------------------------------------------
1055 * Use the old Python PyCObject instead of PySwigObject
1056 * ----------------------------------------------------------------------------- */
1058 #define PySwigObject_GetDesc(obj) PyCObject_GetDesc(obj)
1059 #define PySwigObject_Check(obj) PyCObject_Check(obj)
1060 #define PySwigObject_AsVoidPtr(obj) PyCObject_AsVoidPtr(obj)
1061 #define PySwigObject_FromVoidPtrAndDesc(p, d) PyCObject_FromVoidPtrAndDesc(p, d, NULL)
1067 /* -----------------------------------------------------------------------------
1068 * errors manipulation
1069 * ----------------------------------------------------------------------------- */
1072 SWIG_Python_TypeError(const char *type
, PyObject
*obj
)
1075 #if defined(SWIG_COBJECT_TYPES)
1076 if (obj
&& PySwigObject_Check(obj
)) {
1077 const char *otype
= (const char *) PySwigObject_GetDesc(obj
);
1079 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, 'PySwigObject(%s)' is received",
1086 const char *otype
= (obj
? obj
->ob_type
->tp_name
: 0);
1088 PyObject
*str
= PyObject_Str(obj
);
1089 const char *cstr
= str
? PyString_AsString(str
) : 0;
1091 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s(%s)' is received",
1094 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s' is received",
1101 PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
);
1103 PyErr_Format(PyExc_TypeError
, "unexpected type is received");
1107 SWIGRUNTIMEINLINE
void
1108 SWIG_Python_NullRef(const char *type
)
1111 PyErr_Format(PyExc_TypeError
, "null reference of type '%s' was received",type
);
1113 PyErr_Format(PyExc_TypeError
, "null reference was received");
1118 SWIG_Python_AddErrMesg(const char* mesg
, int infront
)
1120 if (PyErr_Occurred()) {
1122 PyObject
*value
= 0;
1123 PyObject
*traceback
= 0;
1124 PyErr_Fetch(&type
, &value
, &traceback
);
1126 PyObject
*old_str
= PyObject_Str(value
);
1130 PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
));
1132 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
1143 SWIG_Python_ArgFail(int argnum
)
1145 if (PyErr_Occurred()) {
1146 /* add information about failing argument */
1148 PyOS_snprintf(mesg
, sizeof(mesg
), "argument number %d:", argnum
);
1149 return SWIG_Python_AddErrMesg(mesg
, 1);
1156 /* -----------------------------------------------------------------------------
1157 * pointers/data manipulation
1158 * ----------------------------------------------------------------------------- */
1160 /* Convert a pointer value */
1162 SWIG_Python_ConvertPtr(PyObject
*obj
, void **ptr
, swig_type_info
*ty
, int flags
) {
1165 static PyObject
*SWIG_this
= 0;
1167 PyObject
*pyobj
= 0;
1171 if (obj
== Py_None
) {
1176 #ifdef SWIG_COBJECT_TYPES
1177 if (!(PySwigObject_Check(obj
))) {
1179 SWIG_this
= PyString_FromString("this");
1181 obj
= PyObject_GetAttr(obj
,SWIG_this
);
1183 if (!obj
) goto type_error
;
1184 if (!PySwigObject_Check(obj
)) {
1189 vptr
= PySwigObject_AsVoidPtr(obj
);
1190 c
= (const char *) PySwigObject_GetDesc(obj
);
1191 if (newref
) { Py_DECREF(obj
); }
1194 if (!(PyString_Check(obj
))) {
1196 SWIG_this
= PyString_FromString("this");
1198 obj
= PyObject_GetAttr(obj
,SWIG_this
);
1200 if (!obj
) goto type_error
;
1201 if (!PyString_Check(obj
)) {
1206 c
= PyString_AsString(obj
);
1207 /* Pointer values must start with leading underscore */
1208 c
= SWIG_UnpackVoidPtr(c
, &vptr
, ty
->name
);
1209 if (newref
) { Py_DECREF(obj
); }
1210 if (!c
) goto type_error
;
1215 tc
= SWIG_TypeCheck(c
,ty
);
1216 if (!tc
) goto type_error
;
1217 *ptr
= SWIG_TypeCast(tc
,vptr
);
1221 if ((pyobj
) && (flags
& SWIG_POINTER_DISOWN
)) {
1222 PyObject_SetAttrString(pyobj
,(char*)"thisown",Py_False
);
1228 if (pyobj
&& !obj
) {
1230 if (PyCFunction_Check(obj
)) {
1231 /* here we get the method pointer for callbacks */
1232 char *doc
= (((PyCFunctionObject
*)obj
) -> m_ml
-> ml_doc
);
1233 c
= doc
? strstr(doc
, "swig_ptr: ") : 0;
1235 c
= ty
? SWIG_UnpackVoidPtr(c
+ 10, &vptr
, ty
->name
) : 0;
1236 if (!c
) goto type_error
;
1241 if (flags
& SWIG_POINTER_EXCEPTION
) {
1243 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
1245 SWIG_Python_TypeError("C/C++ pointer", obj
);
1251 /* Convert a pointer value, signal an exception on a type mismatch */
1253 SWIG_Python_MustGetPtr(PyObject
*obj
, swig_type_info
*ty
, int argnum
, int flags
) {
1255 if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) {
1257 if (flags
& SWIG_POINTER_EXCEPTION
) {
1258 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
1259 SWIG_Python_ArgFail(argnum
);
1265 /* Convert a packed value value */
1267 SWIG_Python_ConvertPacked(PyObject
*obj
, void *ptr
, size_t sz
, swig_type_info
*ty
, int flags
) {
1271 #if defined(SWIG_COBJECT_TYPES) && !defined(SWIG_COBJECT_PYTHON)
1272 c
= PySwigPacked_UnpackData(obj
, ptr
, sz
);
1274 if ((!obj
) || (!PyString_Check(obj
))) goto type_error
;
1275 c
= PyString_AsString(obj
);
1276 /* Pointer values must start with leading underscore */
1277 c
= SWIG_UnpackDataName(c
, ptr
, sz
, ty
->name
);
1279 if (!c
) goto type_error
;
1281 tc
= SWIG_TypeCheck(c
,ty
);
1282 if (!tc
) goto type_error
;
1288 if (flags
& SWIG_POINTER_EXCEPTION
) {
1290 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
1292 SWIG_Python_TypeError("C/C++ packed data", obj
);
1298 /* Create a new array object */
1299 SWIGRUNTIME PyObject
*
1300 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info
*type
, int own
) {
1303 if (!PyErr_Occurred()) {
1304 PyErr_Format(PyExc_TypeError
, "Swig: null type passed to NewPointerObj");
1312 #ifdef SWIG_COBJECT_TYPES
1313 robj
= PySwigObject_FromVoidPtrAndDesc((void *) ptr
, (char *)type
->name
);
1316 char result
[SWIG_BUFFER_SIZE
];
1317 robj
= SWIG_PackVoidPtr(result
, ptr
, type
->name
, sizeof(result
)) ?
1318 PyString_FromString(result
) : 0;
1321 if (!robj
|| (robj
== Py_None
)) return robj
;
1322 if (type
->clientdata
) {
1324 PyObject
*args
= Py_BuildValue((char*)"(O)", robj
);
1326 inst
= PyObject_CallObject((PyObject
*) type
->clientdata
, args
);
1330 PyObject_SetAttrString(inst
,(char*)"thisown",Py_True
);
1338 SWIGRUNTIME PyObject
*
1339 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info
*type
) {
1345 #if defined(SWIG_COBJECT_TYPES) && !defined(SWIG_COBJECT_PYTHON)
1346 robj
= PySwigPacked_FromDataAndDesc((void *) ptr
, sz
, (char *)type
->name
);
1349 char result
[SWIG_BUFFER_SIZE
];
1350 robj
= SWIG_PackDataName(result
, ptr
, sz
, type
->name
, sizeof(result
)) ?
1351 PyString_FromString(result
) : 0;
1357 /* -----------------------------------------------------------------------------*
1359 * -----------------------------------------------------------------------------*/
1361 #ifdef SWIG_LINK_RUNTIME
1362 void *SWIG_ReturnGlobalTypeList(void *);
1365 SWIGRUNTIME swig_module_info
*
1366 SWIG_Python_GetModule(void) {
1367 static void *type_pointer
= (void *)0;
1368 /* first check if module already created */
1369 if (!type_pointer
) {
1370 #ifdef SWIG_LINK_RUNTIME
1371 type_pointer
= SWIG_ReturnGlobalTypeList((void *)0);
1373 type_pointer
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
1374 (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
);
1375 if (PyErr_Occurred()) {
1377 type_pointer
= (void *)0;
1381 return (swig_module_info
*) type_pointer
;
1384 #if PY_MAJOR_VERSION < 2
1385 /* PyModule_AddObject function was introduced in Python 2.0. The following function
1386 is copied out of Python/modsupport.c in python version 2.3.4 */
1388 PyModule_AddObject(PyObject
*m
, char *name
, PyObject
*o
)
1391 if (!PyModule_Check(m
)) {
1392 PyErr_SetString(PyExc_TypeError
,
1393 "PyModule_AddObject() needs module as first arg");
1397 PyErr_SetString(PyExc_TypeError
,
1398 "PyModule_AddObject() needs non-NULL value");
1402 dict
= PyModule_GetDict(m
);
1404 /* Internal error -- modules must have a dict! */
1405 PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__",
1406 PyModule_GetName(m
));
1409 if (PyDict_SetItemString(dict
, name
, o
))
1417 SWIG_Python_SetModule(swig_module_info
*swig_module
) {
1418 static PyMethodDef swig_empty_runtime_method_table
[] = { {NULL
, NULL
, 0, NULL
} };/* Sentinel */
1420 PyObject
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
1421 swig_empty_runtime_method_table
);
1422 PyObject
*pointer
= PyCObject_FromVoidPtr((void *) swig_module
, NULL
);
1423 if (pointer
&& module) {
1424 PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
);
1433 /* -------- TYPES TABLE (BEGIN) -------- */
1435 #define SWIGTYPE_p_bool swig_types[0]
1436 #define SWIGTYPE_p_char swig_types[1]
1437 #define SWIGTYPE_p_form_ops_t swig_types[2]
1438 #define SWIGTYPE_p_int swig_types[3]
1439 #define SWIGTYPE_p_long swig_types[4]
1440 #define SWIGTYPE_p_unsigned_char swig_types[5]
1441 #define SWIGTYPE_p_unsigned_int swig_types[6]
1442 #define SWIGTYPE_p_unsigned_long swig_types[7]
1443 #define SWIGTYPE_p_void swig_types[8]
1444 #define SWIGTYPE_p_wxANIHandler swig_types[9]
1445 #define SWIGTYPE_p_wxAcceleratorTable swig_types[10]
1446 #define SWIGTYPE_p_wxActivateEvent swig_types[11]
1447 #define SWIGTYPE_p_wxArrayInt swig_types[12]
1448 #define SWIGTYPE_p_wxArrayString swig_types[13]
1449 #define SWIGTYPE_p_wxBMPHandler swig_types[14]
1450 #define SWIGTYPE_p_wxBitmap swig_types[15]
1451 #define SWIGTYPE_p_wxBitmapButton swig_types[16]
1452 #define SWIGTYPE_p_wxBookCtrlBase swig_types[17]
1453 #define SWIGTYPE_p_wxBookCtrlBaseEvent swig_types[18]
1454 #define SWIGTYPE_p_wxBoxSizer swig_types[19]
1455 #define SWIGTYPE_p_wxButton swig_types[20]
1456 #define SWIGTYPE_p_wxCURHandler swig_types[21]
1457 #define SWIGTYPE_p_wxCheckBox swig_types[22]
1458 #define SWIGTYPE_p_wxCheckListBox swig_types[23]
1459 #define SWIGTYPE_p_wxChildFocusEvent swig_types[24]
1460 #define SWIGTYPE_p_wxChoice swig_types[25]
1461 #define SWIGTYPE_p_wxChoicebook swig_types[26]
1462 #define SWIGTYPE_p_wxChoicebookEvent swig_types[27]
1463 #define SWIGTYPE_p_wxCloseEvent swig_types[28]
1464 #define SWIGTYPE_p_wxColour swig_types[29]
1465 #define SWIGTYPE_p_wxComboBox swig_types[30]
1466 #define SWIGTYPE_p_wxCommandEvent swig_types[31]
1467 #define SWIGTYPE_p_wxContextHelp swig_types[32]
1468 #define SWIGTYPE_p_wxContextHelpButton swig_types[33]
1469 #define SWIGTYPE_p_wxContextMenuEvent swig_types[34]
1470 #define SWIGTYPE_p_wxControl swig_types[35]
1471 #define SWIGTYPE_p_wxControlWithItems swig_types[36]
1472 #define SWIGTYPE_p_wxCursor swig_types[37]
1473 #define SWIGTYPE_p_wxDC swig_types[38]
1474 #define SWIGTYPE_p_wxDateEvent swig_types[39]
1475 #define SWIGTYPE_p_wxDatePickerCtrl swig_types[40]
1476 #define SWIGTYPE_p_wxDateTime swig_types[41]
1477 #define SWIGTYPE_p_wxDirFilterListCtrl swig_types[42]
1478 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[43]
1479 #define SWIGTYPE_p_wxDropFilesEvent swig_types[44]
1480 #define SWIGTYPE_p_wxDuplexMode swig_types[45]
1481 #define SWIGTYPE_p_wxEraseEvent swig_types[46]
1482 #define SWIGTYPE_p_wxEvent swig_types[47]
1483 #define SWIGTYPE_p_wxEvtHandler swig_types[48]
1484 #define SWIGTYPE_p_wxFSFile swig_types[49]
1485 #define SWIGTYPE_p_wxFileSystem swig_types[50]
1486 #define SWIGTYPE_p_wxFlexGridSizer swig_types[51]
1487 #define SWIGTYPE_p_wxFocusEvent swig_types[52]
1488 #define SWIGTYPE_p_wxFont swig_types[53]
1489 #define SWIGTYPE_p_wxGBSizerItem swig_types[54]
1490 #define SWIGTYPE_p_wxGIFHandler swig_types[55]
1491 #define SWIGTYPE_p_wxGauge swig_types[56]
1492 #define SWIGTYPE_p_wxGenericDirCtrl swig_types[57]
1493 #define SWIGTYPE_p_wxGenericDragImage swig_types[58]
1494 #define SWIGTYPE_p_wxGridBagSizer swig_types[59]
1495 #define SWIGTYPE_p_wxGridSizer swig_types[60]
1496 #define SWIGTYPE_p_wxHelpEvent swig_types[61]
1497 #define SWIGTYPE_p_wxHelpProvider swig_types[62]
1498 #define SWIGTYPE_p_wxICOHandler swig_types[63]
1499 #define SWIGTYPE_p_wxIcon swig_types[64]
1500 #define SWIGTYPE_p_wxIconizeEvent swig_types[65]
1501 #define SWIGTYPE_p_wxIdleEvent swig_types[66]
1502 #define SWIGTYPE_p_wxImage swig_types[67]
1503 #define SWIGTYPE_p_wxImageHandler swig_types[68]
1504 #define SWIGTYPE_p_wxImageList swig_types[69]
1505 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[70]
1506 #define SWIGTYPE_p_wxInitDialogEvent swig_types[71]
1507 #define SWIGTYPE_p_wxItemContainer swig_types[72]
1508 #define SWIGTYPE_p_wxJPEGHandler swig_types[73]
1509 #define SWIGTYPE_p_wxKeyEvent swig_types[74]
1510 #define SWIGTYPE_p_wxLayoutConstraints swig_types[75]
1511 #define SWIGTYPE_p_wxListBox swig_types[76]
1512 #define SWIGTYPE_p_wxListEvent swig_types[77]
1513 #define SWIGTYPE_p_wxListItem swig_types[78]
1514 #define SWIGTYPE_p_wxListItemAttr swig_types[79]
1515 #define SWIGTYPE_p_wxListView swig_types[80]
1516 #define SWIGTYPE_p_wxListbook swig_types[81]
1517 #define SWIGTYPE_p_wxListbookEvent swig_types[82]
1518 #define SWIGTYPE_p_wxMaximizeEvent swig_types[83]
1519 #define SWIGTYPE_p_wxMemoryDC swig_types[84]
1520 #define SWIGTYPE_p_wxMenu swig_types[85]
1521 #define SWIGTYPE_p_wxMenuBar swig_types[86]
1522 #define SWIGTYPE_p_wxMenuEvent swig_types[87]
1523 #define SWIGTYPE_p_wxMenuItem swig_types[88]
1524 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[89]
1525 #define SWIGTYPE_p_wxMouseEvent swig_types[90]
1526 #define SWIGTYPE_p_wxMoveEvent swig_types[91]
1527 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[92]
1528 #define SWIGTYPE_p_wxNcPaintEvent swig_types[93]
1529 #define SWIGTYPE_p_wxNotebook swig_types[94]
1530 #define SWIGTYPE_p_wxNotebookEvent swig_types[95]
1531 #define SWIGTYPE_p_wxNotifyEvent swig_types[96]
1532 #define SWIGTYPE_p_wxObject swig_types[97]
1533 #define SWIGTYPE_p_wxPCXHandler swig_types[98]
1534 #define SWIGTYPE_p_wxPNGHandler swig_types[99]
1535 #define SWIGTYPE_p_wxPNMHandler swig_types[100]
1536 #define SWIGTYPE_p_wxPaintEvent swig_types[101]
1537 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[102]
1538 #define SWIGTYPE_p_wxPaperSize swig_types[103]
1539 #define SWIGTYPE_p_wxPoint swig_types[104]
1540 #define SWIGTYPE_p_wxPyApp swig_types[105]
1541 #define SWIGTYPE_p_wxPyCommandEvent swig_types[106]
1542 #define SWIGTYPE_p_wxPyControl swig_types[107]
1543 #define SWIGTYPE_p_wxPyEvent swig_types[108]
1544 #define SWIGTYPE_p_wxPyImageHandler swig_types[109]
1545 #define SWIGTYPE_p_wxPyListCtrl swig_types[110]
1546 #define SWIGTYPE_p_wxPySizer swig_types[111]
1547 #define SWIGTYPE_p_wxPyTreeCtrl swig_types[112]
1548 #define SWIGTYPE_p_wxPyTreeItemData swig_types[113]
1549 #define SWIGTYPE_p_wxPyValidator swig_types[114]
1550 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[115]
1551 #define SWIGTYPE_p_wxRadioBox swig_types[116]
1552 #define SWIGTYPE_p_wxRadioButton swig_types[117]
1553 #define SWIGTYPE_p_wxRect swig_types[118]
1554 #define SWIGTYPE_p_wxScrollBar swig_types[119]
1555 #define SWIGTYPE_p_wxScrollEvent swig_types[120]
1556 #define SWIGTYPE_p_wxScrollWinEvent swig_types[121]
1557 #define SWIGTYPE_p_wxSetCursorEvent swig_types[122]
1558 #define SWIGTYPE_p_wxShowEvent swig_types[123]
1559 #define SWIGTYPE_p_wxSimpleHelpProvider swig_types[124]
1560 #define SWIGTYPE_p_wxSize swig_types[125]
1561 #define SWIGTYPE_p_wxSizeEvent swig_types[126]
1562 #define SWIGTYPE_p_wxSizer swig_types[127]
1563 #define SWIGTYPE_p_wxSizerItem swig_types[128]
1564 #define SWIGTYPE_p_wxSlider swig_types[129]
1565 #define SWIGTYPE_p_wxSpinButton swig_types[130]
1566 #define SWIGTYPE_p_wxSpinCtrl swig_types[131]
1567 #define SWIGTYPE_p_wxSpinEvent swig_types[132]
1568 #define SWIGTYPE_p_wxStaticBitmap swig_types[133]
1569 #define SWIGTYPE_p_wxStaticBox swig_types[134]
1570 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[135]
1571 #define SWIGTYPE_p_wxStaticLine swig_types[136]
1572 #define SWIGTYPE_p_wxStaticText swig_types[137]
1573 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[138]
1574 #define SWIGTYPE_p_wxString swig_types[139]
1575 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[140]
1576 #define SWIGTYPE_p_wxTIFFHandler swig_types[141]
1577 #define SWIGTYPE_p_wxTextAttr swig_types[142]
1578 #define SWIGTYPE_p_wxTextCtrl swig_types[143]
1579 #define SWIGTYPE_p_wxTextUrlEvent swig_types[144]
1580 #define SWIGTYPE_p_wxToggleButton swig_types[145]
1581 #define SWIGTYPE_p_wxToolBar swig_types[146]
1582 #define SWIGTYPE_p_wxToolBarBase swig_types[147]
1583 #define SWIGTYPE_p_wxToolBarToolBase swig_types[148]
1584 #define SWIGTYPE_p_wxToolbook swig_types[149]
1585 #define SWIGTYPE_p_wxToolbookEvent swig_types[150]
1586 #define SWIGTYPE_p_wxTreeCtrl swig_types[151]
1587 #define SWIGTYPE_p_wxTreeEvent swig_types[152]
1588 #define SWIGTYPE_p_wxTreeItemId swig_types[153]
1589 #define SWIGTYPE_p_wxTreebook swig_types[154]
1590 #define SWIGTYPE_p_wxTreebookEvent swig_types[155]
1591 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[156]
1592 #define SWIGTYPE_p_wxValidator swig_types[157]
1593 #define SWIGTYPE_p_wxVisualAttributes swig_types[158]
1594 #define SWIGTYPE_p_wxWindow swig_types[159]
1595 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[160]
1596 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[161]
1597 #define SWIGTYPE_p_wxXPMHandler swig_types[162]
1598 #define SWIGTYPE_ptrdiff_t swig_types[163]
1599 #define SWIGTYPE_std__ptrdiff_t swig_types[164]
1600 #define SWIGTYPE_unsigned_int swig_types[165]
1601 static swig_type_info
*swig_types
[167];
1602 static swig_module_info swig_module
= {swig_types
, 166, 0, 0, 0, 0};
1603 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
1604 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
1606 /* -------- TYPES TABLE (END) -------- */
1609 /*-----------------------------------------------
1610 @(target):= _controls_.so
1611 ------------------------------------------------*/
1612 #define SWIG_init init_controls_
1614 #define SWIG_name "_controls_"
1616 #include "wx/wxPython/wxPython.h"
1617 #include "wx/wxPython/pyclasses.h"
1619 static const wxString
wxPyPanelNameStr(wxPanelNameStr
);
1620 static const wxString
wxPyEmptyString(wxEmptyString
);
1621 static const wxString
wxPyControlNameStr(wxControlNameStr
);
1623 const wxArrayString wxPyEmptyStringArray
;
1625 static const wxString
wxPyButtonNameStr(wxButtonNameStr
);
1627 /*@/opt/swig/share/swig/1.3.27/python/pymacros.swg,72,SWIG_define@*/
1628 #define SWIG_From_int PyInt_FromLong
1636 SWIG_CheckLongInRange(long value
, long min_value
, long max_value
,
1639 if (value
< min_value
) {
1641 PyErr_Format(PyExc_OverflowError
,
1642 "value %ld is less than '%s' minimum %ld",
1643 value
, errmsg
, min_value
);
1646 } else if (value
> max_value
) {
1648 PyErr_Format(PyExc_OverflowError
,
1649 "value %ld is greater than '%s' maximum %ld",
1650 value
, errmsg
, max_value
);
1659 SWIG_AsVal_long(PyObject
* obj
, long* val
)
1661 if (PyNumber_Check(obj
)) {
1662 if (val
) *val
= PyInt_AsLong(obj
);
1666 SWIG_Python_TypeError("number", obj
);
1672 #if INT_MAX != LONG_MAX
1674 SWIG_AsVal_int(PyObject
*obj
, int *val
)
1676 const char* errmsg
= val
? "int" : (char*)0;
1678 if (SWIG_AsVal_long(obj
, &v
)) {
1679 if (SWIG_CheckLongInRange(v
, INT_MIN
,INT_MAX
, errmsg
)) {
1680 if (val
) *val
= static_cast<int >(v
);
1689 SWIG_type_error(errmsg
, obj
);
1694 SWIGINTERNINLINE
int
1695 SWIG_AsVal_int(PyObject
*obj
, int *val
)
1697 return SWIG_AsVal_long(obj
,(long*)val
);
1702 SWIGINTERNINLINE
int
1703 SWIG_As_int(PyObject
* obj
)
1706 if (!SWIG_AsVal_int(obj
, &v
)) {
1708 this is needed to make valgrind/purify happier.
1710 memset((void*)&v
, 0, sizeof(int));
1716 SWIGINTERNINLINE
long
1717 SWIG_As_long(PyObject
* obj
)
1720 if (!SWIG_AsVal_long(obj
, &v
)) {
1722 this is needed to make valgrind/purify happier.
1724 memset((void*)&v
, 0, sizeof(long));
1730 SWIGINTERNINLINE
int
1731 SWIG_Check_int(PyObject
* obj
)
1733 return SWIG_AsVal_int(obj
, (int*)0);
1737 SWIGINTERNINLINE
int
1738 SWIG_Check_long(PyObject
* obj
)
1740 return SWIG_AsVal_long(obj
, (long*)0);
1743 static const wxString
wxPyCheckBoxNameStr(wxCheckBoxNameStr
);
1746 SWIG_AsVal_bool(PyObject
*obj
, bool *val
)
1748 if (obj
== Py_True
) {
1749 if (val
) *val
= true;
1752 if (obj
== Py_False
) {
1753 if (val
) *val
= false;
1757 if (SWIG_AsVal_int(obj
, &res
)) {
1758 if (val
) *val
= res
? true : false;
1764 SWIG_type_error("bool", obj
);
1770 SWIGINTERNINLINE
bool
1771 SWIG_As_bool(PyObject
* obj
)
1774 if (!SWIG_AsVal_bool(obj
, &v
)) {
1776 this is needed to make valgrind/purify happier.
1778 memset((void*)&v
, 0, sizeof(bool));
1784 SWIGINTERNINLINE
int
1785 SWIG_Check_bool(PyObject
* obj
)
1787 return SWIG_AsVal_bool(obj
, (bool*)0);
1790 static const wxString
wxPyChoiceNameStr(wxChoiceNameStr
);
1791 static const wxString
wxPyComboBoxNameStr(wxComboBoxNameStr
);
1793 /*@/opt/swig/share/swig/1.3.27/python/pymacros.swg,72,SWIG_define@*/
1794 #define SWIG_From_long PyInt_FromLong
1798 static PyObject
* t_output_helper(PyObject
* result
, PyObject
* obj
)
1804 } else if (result
== Py_None
) {
1808 if (!PyTuple_Check(result
)) {
1810 result
= PyTuple_New(1);
1811 PyTuple_SET_ITEM(result
, 0, o2
);
1813 o3
= PyTuple_New(1);
1814 PyTuple_SetItem(o3
, 0, obj
);
1816 result
= PySequence_Concat(o2
, o3
);
1824 static const wxString
wxPyGaugeNameStr(wxGaugeNameStr
);
1825 static const wxString
wxPyStaticBitmapNameStr(wxStaticBitmapNameStr
);
1826 static const wxString
wxPyStaticBoxNameStr(wxStaticBoxNameStr
);
1827 static const wxString
wxPyStaticTextNameStr(wxStaticTextNameStr
);
1829 #include <wx/checklst.h>
1832 static const wxString
wxPyListBoxNameStr(wxListBoxNameStr
);
1833 static void wxListBox_Insert(wxListBox
*self
,wxString
const &item
,int pos
,PyObject
*clientData
=NULL
){
1835 wxPyClientData
* data
= new wxPyClientData(clientData
);
1836 self
->Insert(item
, pos
, data
);
1838 self
->Insert(item
, pos
);
1840 static PyObject
*wxListBox_GetSelections(wxListBox
*self
){
1842 self
->GetSelections(lst
);
1843 PyObject
*tup
= PyTuple_New(lst
.GetCount());
1844 for(size_t i
=0; i
<lst
.GetCount(); i
++) {
1845 PyTuple_SetItem(tup
, i
, PyInt_FromLong(lst
[i
]));
1849 static void wxListBox_SetItemForegroundColour(wxListBox
*self
,int item
,wxColour
const &c
){
1851 if (self
->GetWindowStyle() & wxLB_OWNERDRAW
)
1852 self
->GetItem(item
)->SetTextColour(c
);
1855 static void wxListBox_SetItemBackgroundColour(wxListBox
*self
,int item
,wxColour
const &c
){
1857 if (self
->GetWindowStyle() & wxLB_OWNERDRAW
)
1858 self
->GetItem(item
)->SetBackgroundColour(c
);
1861 static void wxListBox_SetItemFont(wxListBox
*self
,int item
,wxFont
const &f
){
1863 if (self
->GetWindowStyle() & wxLB_OWNERDRAW
)
1864 self
->GetItem(item
)->SetFont(f
);
1867 static const wxString
wxPyTextCtrlNameStr(wxTextCtrlNameStr
);
1870 SWIG_AsVal_unsigned_SS_long(PyObject
* obj
, unsigned long* val
)
1873 if (SWIG_AsVal_long(obj
, &v
) && v
< 0) {
1874 SWIG_Python_TypeError("unsigned number", obj
);
1877 *val
= (unsigned long)v
;
1882 SWIGINTERNINLINE
unsigned long
1883 SWIG_As_unsigned_SS_long(PyObject
* obj
)
1886 if (!SWIG_AsVal_unsigned_SS_long(obj
, &v
)) {
1888 this is needed to make valgrind/purify happier.
1890 memset((void*)&v
, 0, sizeof(unsigned long));
1896 SWIGINTERNINLINE
int
1897 SWIG_Check_unsigned_SS_long(PyObject
* obj
)
1899 return SWIG_AsVal_unsigned_SS_long(obj
, (unsigned long*)0);
1902 static void wxTextCtrl_write(wxTextCtrl
*self
,wxString
const &text
){
1903 self
->AppendText(text
);
1905 static wxString
wxTextCtrl_GetString(wxTextCtrl
*self
,long from
,long to
){
1906 return self
->GetValue().Mid(from
, to
- from
);
1908 static const wxString
wxPyScrollBarNameStr(wxScrollBarNameStr
);
1909 static const wxString
wxPySPIN_BUTTON_NAME(wxSPIN_BUTTON_NAME
);
1910 static const wxString
wxPySpinCtrlNameStr(_T("wxSpinCtrl"));
1911 static const wxString
wxPyRadioBoxNameStr(wxRadioBoxNameStr
);
1912 static const wxString
wxPyRadioButtonNameStr(wxRadioButtonNameStr
);
1913 static int wxRadioBox_GetColumnCount(wxRadioBox
const *self
){ return -1; }
1914 static int wxRadioBox_GetRowCount(wxRadioBox
const *self
){ return -1; }
1915 static int wxRadioBox_GetNextItem(wxRadioBox
const *self
,int item
,wxDirection dir
,long style
){ return -1; }
1917 #include <wx/slider.h>
1920 static const wxString
wxPySliderNameStr(wxSliderNameStr
);
1921 static const wxString
wxPyToggleButtonNameStr(_T("wxToggleButton"));
1923 #if !wxUSE_TOGGLEBTN
1924 // implement dummy items for platforms that don't have this class
1926 #define wxEVT_COMMAND_TOGGLEBUTTON_CLICKED 0
1928 class wxToggleButton
: public wxControl
1931 wxToggleButton(wxWindow
*, wxWindowID
, const wxString
&,
1932 const wxPoint
&, const wxSize
&, long,
1933 const wxValidator
&, const wxString
&)
1934 { wxPyRaiseNotImplemented(); }
1937 { wxPyRaiseNotImplemented(); }
1941 static const wxString
wxPyNotebookNameStr(wxNotebookNameStr
);
1943 SWIGINTERNINLINE PyObject
*
1944 SWIG_From_unsigned_SS_long(unsigned long value
)
1946 return (value
> LONG_MAX
) ?
1947 PyLong_FromUnsignedLong(value
)
1948 : PyInt_FromLong(static_cast<long >(value
));
1952 #if UINT_MAX < LONG_MAX
1953 /*@/opt/swig/share/swig/1.3.27/python/pymacros.swg,72,SWIG_define@*/
1954 #define SWIG_From_unsigned_SS_int SWIG_From_long
1957 /*@/opt/swig/share/swig/1.3.27/python/pymacros.swg,72,SWIG_define@*/
1958 #define SWIG_From_unsigned_SS_int SWIG_From_unsigned_SS_long
1963 SWIGINTERNINLINE
int
1964 SWIG_CheckUnsignedLongInRange(unsigned long value
,
1965 unsigned long max_value
,
1968 if (value
> max_value
) {
1970 PyErr_Format(PyExc_OverflowError
,
1971 "value %lu is greater than '%s' minimum %lu",
1972 value
, errmsg
, max_value
);
1980 #if UINT_MAX != ULONG_MAX
1982 SWIG_AsVal_unsigned_SS_int(PyObject
*obj
, unsigned int *val
)
1984 const char* errmsg
= val
? "unsigned int" : (char*)0;
1986 if (SWIG_AsVal_unsigned_SS_long(obj
, &v
)) {
1987 if (SWIG_CheckUnsignedLongInRange(v
, INT_MAX
, errmsg
)) {
1988 if (val
) *val
= static_cast<unsigned int >(v
);
1995 SWIG_type_error(errmsg
, obj
);
2000 SWIGINTERNINLINE
unsigned int
2001 SWIG_AsVal_unsigned_SS_int(PyObject
*obj
, unsigned int *val
)
2003 return SWIG_AsVal_unsigned_SS_long(obj
,(unsigned long *)val
);
2008 SWIGINTERNINLINE
unsigned int
2009 SWIG_As_unsigned_SS_int(PyObject
* obj
)
2012 if (!SWIG_AsVal_unsigned_SS_int(obj
, &v
)) {
2014 this is needed to make valgrind/purify happier.
2016 memset((void*)&v
, 0, sizeof(unsigned int));
2022 SWIGINTERNINLINE
int
2023 SWIG_Check_unsigned_SS_int(PyObject
* obj
)
2025 return SWIG_AsVal_unsigned_SS_int(obj
, (unsigned int*)0);
2028 static const wxString
wxPyToolBarNameStr(wxToolBarNameStr
);
2029 static PyObject
*wxToolBarToolBase_GetClientData(wxToolBarToolBase
*self
){
2030 wxPyUserData
* udata
= (wxPyUserData
*)self
->GetClientData();
2032 Py_INCREF(udata
->m_obj
);
2033 return udata
->m_obj
;
2039 static void wxToolBarToolBase_SetClientData(wxToolBarToolBase
*self
,PyObject
*clientData
){
2040 self
->SetClientData(new wxPyUserData(clientData
));
2042 static wxToolBarToolBase
*wxToolBarBase_DoAddTool(wxToolBarBase
*self
,int id
,wxString
const &label
,wxBitmap
const &bitmap
,wxBitmap
const &bmpDisabled
=wxNullBitmap
,wxItemKind kind
=wxITEM_NORMAL
,wxString
const &shortHelp
=wxPyEmptyString
,wxString
const &longHelp
=wxPyEmptyString
,PyObject
*clientData
=NULL
){
2043 wxPyUserData
* udata
= NULL
;
2044 if (clientData
&& clientData
!= Py_None
)
2045 udata
= new wxPyUserData(clientData
);
2046 return self
->AddTool(id
, label
, bitmap
, bmpDisabled
, kind
,
2047 shortHelp
, longHelp
, udata
);
2049 static wxToolBarToolBase
*wxToolBarBase_DoInsertTool(wxToolBarBase
*self
,size_t pos
,int id
,wxString
const &label
,wxBitmap
const &bitmap
,wxBitmap
const &bmpDisabled
=wxNullBitmap
,wxItemKind kind
=wxITEM_NORMAL
,wxString
const &shortHelp
=wxPyEmptyString
,wxString
const &longHelp
=wxPyEmptyString
,PyObject
*clientData
=NULL
){
2050 wxPyUserData
* udata
= NULL
;
2051 if (clientData
&& clientData
!= Py_None
)
2052 udata
= new wxPyUserData(clientData
);
2053 return self
->InsertTool(pos
, id
, label
, bitmap
, bmpDisabled
, kind
,
2054 shortHelp
, longHelp
, udata
);
2056 static PyObject
*wxToolBarBase_GetToolClientData(wxToolBarBase
*self
,int id
){
2057 wxPyUserData
* udata
= (wxPyUserData
*)self
->GetToolClientData(id
);
2059 Py_INCREF(udata
->m_obj
);
2060 return udata
->m_obj
;
2066 static void wxToolBarBase_SetToolClientData(wxToolBarBase
*self
,int id
,PyObject
*clientData
){
2067 self
->SetToolClientData(id
, new wxPyUserData(clientData
));
2070 #include <wx/listctrl.h>
2072 static const wxString
wxPyListCtrlNameStr(wxListCtrlNameStr
);
2073 static void wxListItemAttr_Destroy(wxListItemAttr
*self
){ delete self
; }
2074 // Python aware sorting function for wxPyListCtrl
2075 static int wxCALLBACK
wxPyListCtrl_SortItems(long item1
, long item2
, long funcPtr
) {
2077 PyObject
* func
= (PyObject
*)funcPtr
;
2078 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2080 PyObject
* args
= Py_BuildValue("(ii)", item1
, item2
);
2081 PyObject
* result
= PyEval_CallObject(func
, args
);
2084 retval
= PyInt_AsLong(result
);
2088 wxPyEndBlockThreads(blocked
);
2092 // C++ Version of a Python aware class
2093 class wxPyListCtrl
: public wxListCtrl
{
2094 DECLARE_ABSTRACT_CLASS(wxPyListCtrl
)
2096 wxPyListCtrl() : wxListCtrl() {}
2097 wxPyListCtrl(wxWindow
* parent
, wxWindowID id
,
2101 const wxValidator
& validator
,
2102 const wxString
& name
) :
2103 wxListCtrl(parent
, id
, pos
, size
, style
, validator
, name
) {}
2105 bool Create(wxWindow
* parent
, wxWindowID id
,
2109 const wxValidator
& validator
,
2110 const wxString
& name
) {
2111 return wxListCtrl::Create(parent
, id
, pos
, size
, style
, validator
, name
);
2114 DEC_PYCALLBACK_STRING_LONGLONG(OnGetItemText
);
2115 DEC_PYCALLBACK_LISTATTR_LONG(OnGetItemAttr
);
2117 // use the virtual version to avoid a confusing assert in the base class
2118 DEC_PYCALLBACK_INT_LONG_virtual(OnGetItemImage
);
2119 DEC_PYCALLBACK_INT_LONGLONG(OnGetItemColumnImage
);
2124 IMPLEMENT_ABSTRACT_CLASS(wxPyListCtrl
, wxListCtrl
);
2126 IMP_PYCALLBACK_STRING_LONGLONG(wxPyListCtrl
, wxListCtrl
, OnGetItemText
);
2127 IMP_PYCALLBACK_LISTATTR_LONG(wxPyListCtrl
, wxListCtrl
, OnGetItemAttr
);
2128 IMP_PYCALLBACK_INT_LONG_virtual(wxPyListCtrl
, wxListCtrl
, OnGetItemImage
);
2129 IMP_PYCALLBACK_INT_LONGLONG(wxPyListCtrl
, wxListCtrl
, OnGetItemColumnImage
);
2132 static wxListItem
*wxPyListCtrl_GetColumn(wxPyListCtrl
*self
,int col
){
2134 item
.SetMask( wxLIST_MASK_STATE
|
2142 if (self
->GetColumn(col
, item
))
2143 return new wxListItem(item
);
2147 static wxListItem
*wxPyListCtrl_GetItem(wxPyListCtrl
*self
,long itemId
,int col
=0){
2148 wxListItem
* info
= new wxListItem
;
2149 info
->m_itemId
= itemId
;
2151 info
->m_mask
= 0xFFFF;
2152 self
->GetItem(*info
);
2155 static wxPoint
wxPyListCtrl_GetItemPosition(wxPyListCtrl
*self
,long item
){
2157 self
->GetItemPosition(item
, pos
);
2160 static wxRect
wxPyListCtrl_GetItemRect(wxPyListCtrl
*self
,long item
,int code
=wxLIST_RECT_BOUNDS
){
2162 self
->GetItemRect(item
, rect
, code
);
2166 static bool wxPyListCtrl_SortItems(wxPyListCtrl
*self
,PyObject
*func
){
2167 if (!PyCallable_Check(func
))
2169 return self
->SortItems((wxListCtrlCompare
)wxPyListCtrl_SortItems
, (long)func
);
2171 static wxWindow
*wxPyListCtrl_GetMainWindow(wxPyListCtrl
*self
){
2175 return (wxWindow
*)self
->m_mainWin
;
2179 #include <wx/treectrl.h>
2180 #include "wx/wxPython/pytree.h"
2182 static const wxString
wxPyTreeCtrlNameStr(_T("wxTreeCtrl"));
2183 static bool wxTreeItemId___eq__(wxTreeItemId
*self
,wxTreeItemId
const *other
){ return other
? (*self
== *other
) : false; }
2184 static bool wxTreeItemId___ne__(wxTreeItemId
*self
,wxTreeItemId
const *other
){ return other
? (*self
!= *other
) : true; }
2185 static void wxPyTreeItemData_Destroy(wxPyTreeItemData
*self
){ delete self
; }
2186 // C++ version of Python aware wxTreeCtrl
2187 class wxPyTreeCtrl
: public wxTreeCtrl
{
2188 DECLARE_ABSTRACT_CLASS(wxPyTreeCtrl
)
2190 wxPyTreeCtrl() : wxTreeCtrl() {}
2191 wxPyTreeCtrl(wxWindow
*parent
, wxWindowID id
,
2195 const wxValidator
& validator
,
2196 const wxString
& name
) :
2197 wxTreeCtrl(parent
, id
, pos
, size
, style
, validator
, name
) {}
2199 bool Create(wxWindow
*parent
, wxWindowID id
,
2203 const wxValidator
& validator
,
2204 const wxString
& name
) {
2205 return wxTreeCtrl::Create(parent
, id
, pos
, size
, style
, validator
, name
);
2209 int OnCompareItems(const wxTreeItemId
& item1
,
2210 const wxTreeItemId
& item2
) {
2213 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2214 if ((found
= wxPyCBH_findCallback(m_myInst
, "OnCompareItems"))) {
2215 PyObject
*o1
= wxPyConstructObject((void*)&item1
, wxT("wxTreeItemId"), false);
2216 PyObject
*o2
= wxPyConstructObject((void*)&item2
, wxT("wxTreeItemId"), false);
2217 rval
= wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OO)",o1
,o2
));
2221 wxPyEndBlockThreads(blocked
);
2223 rval
= wxTreeCtrl::OnCompareItems(item1
, item2
);
2229 IMPLEMENT_ABSTRACT_CLASS(wxPyTreeCtrl
, wxTreeCtrl
);
2232 static wxPyTreeItemData
*wxPyTreeCtrl_GetItemData(wxPyTreeCtrl
*self
,wxTreeItemId
const &item
){
2233 wxPyTreeItemData
* data
= (wxPyTreeItemData
*)self
->GetItemData(item
);
2235 data
= new wxPyTreeItemData();
2236 data
->SetId(item
); // set the id
2237 self
->SetItemData(item
, data
);
2241 static PyObject
*wxPyTreeCtrl_GetItemPyData(wxPyTreeCtrl
*self
,wxTreeItemId
const &item
){
2242 wxPyTreeItemData
* data
= (wxPyTreeItemData
*)self
->GetItemData(item
);
2244 data
= new wxPyTreeItemData();
2245 data
->SetId(item
); // set the id
2246 self
->SetItemData(item
, data
);
2248 return data
->GetData();
2250 static void wxPyTreeCtrl_SetItemData(wxPyTreeCtrl
*self
,wxTreeItemId
const &item
,wxPyTreeItemData
*data
){
2251 data
->SetId(item
); // set the id
2252 self
->SetItemData(item
, data
);
2254 static void wxPyTreeCtrl_SetItemPyData(wxPyTreeCtrl
*self
,wxTreeItemId
const &item
,PyObject
*obj
){
2255 wxPyTreeItemData
* data
= (wxPyTreeItemData
*)self
->GetItemData(item
);
2257 data
= new wxPyTreeItemData(obj
);
2258 data
->SetId(item
); // set the id
2259 self
->SetItemData(item
, data
);
2263 static PyObject
*wxPyTreeCtrl_GetSelections(wxPyTreeCtrl
*self
){
2264 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2265 PyObject
* rval
= PyList_New(0);
2266 wxArrayTreeItemIds array
;
2268 num
= self
->GetSelections(array
);
2269 for (x
=0; x
< num
; x
++) {
2270 wxTreeItemId
*tii
= new wxTreeItemId(array
.Item(x
));
2271 PyObject
* item
= wxPyConstructObject((void*)tii
, wxT("wxTreeItemId"), true);
2272 PyList_Append(rval
, item
);
2275 wxPyEndBlockThreads(blocked
);
2278 static PyObject
*wxPyTreeCtrl_GetFirstChild(wxPyTreeCtrl
*self
,wxTreeItemId
const &item
){
2280 wxTreeItemId
* ritem
= new wxTreeItemId(self
->GetFirstChild(item
, cookie
));
2281 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2282 PyObject
* tup
= PyTuple_New(2);
2283 PyTuple_SET_ITEM(tup
, 0, wxPyConstructObject(ritem
, wxT("wxTreeItemId"), true));
2284 PyTuple_SET_ITEM(tup
, 1, wxPyMakeSwigPtr(cookie
, wxT("void")));
2285 wxPyEndBlockThreads(blocked
);
2288 static PyObject
*wxPyTreeCtrl_GetNextChild(wxPyTreeCtrl
*self
,wxTreeItemId
const &item
,void *cookie
){
2289 wxTreeItemId
* ritem
= new wxTreeItemId(self
->GetNextChild(item
, cookie
));
2290 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2291 PyObject
* tup
= PyTuple_New(2);
2292 PyTuple_SET_ITEM(tup
, 0, wxPyConstructObject(ritem
, wxT("wxTreeItemId"), true));
2293 PyTuple_SET_ITEM(tup
, 1, wxPyMakeSwigPtr(cookie
, wxT("void")));
2294 wxPyEndBlockThreads(blocked
);
2297 static PyObject
*wxPyTreeCtrl_GetBoundingRect(wxPyTreeCtrl
*self
,wxTreeItemId
const &item
,bool textOnly
=false){
2299 if (self
->GetBoundingRect(item
, rect
, textOnly
)) {
2300 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2301 wxRect
* r
= new wxRect(rect
);
2302 PyObject
* val
= wxPyConstructObject((void*)r
, wxT("wxRect"), true);
2303 wxPyEndBlockThreads(blocked
);
2309 static const wxString
wxPyDirDialogDefaultFolderStr(wxDirDialogDefaultFolderStr
);
2311 SWIGINTERNINLINE PyObject
*
2312 SWIG_From_bool(bool value
)
2314 PyObject
*obj
= value
? Py_True
: Py_False
;
2320 // C++ version of Python aware wxControl
2321 class wxPyControl
: public wxControl
2323 DECLARE_DYNAMIC_CLASS(wxPyControl
)
2325 wxPyControl() : wxControl() {}
2326 wxPyControl(wxWindow
* parent
, const wxWindowID id
,
2327 const wxPoint
& pos
= wxDefaultPosition
,
2328 const wxSize
& size
= wxDefaultSize
,
2330 const wxValidator
& validator
=wxDefaultValidator
,
2331 const wxString
& name
= wxPyControlNameStr
)
2332 : wxControl(parent
, id
, pos
, size
, style
, validator
, name
) {}
2334 void SetBestSize(const wxSize
& size
) { wxControl::SetBestSize(size
); }
2336 bool DoEraseBackground(wxDC
* dc
) {
2338 return wxWindow::DoEraseBackground(dc
->GetHDC());
2340 dc
->SetBackground(wxBrush(GetBackgroundColour()));
2346 DEC_PYCALLBACK_VOID_INT4(DoMoveWindow
);
2347 DEC_PYCALLBACK_VOID_INT5(DoSetSize
);
2348 DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize
);
2349 DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize
);
2351 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize
);
2352 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize
);
2353 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition
);
2355 DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize
);
2356 DEC_PYCALLBACK_SIZE_const(DoGetBestSize
);
2358 DEC_PYCALLBACK__(InitDialog
);
2359 DEC_PYCALLBACK_BOOL_(TransferDataFromWindow
);
2360 DEC_PYCALLBACK_BOOL_(TransferDataToWindow
);
2361 DEC_PYCALLBACK_BOOL_(Validate
);
2363 DEC_PYCALLBACK_BOOL_const(AcceptsFocus
);
2364 DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard
);
2365 DEC_PYCALLBACK_SIZE_const(GetMaxSize
);
2367 DEC_PYCALLBACK_VOID_WXWINBASE(AddChild
);
2368 DEC_PYCALLBACK_VOID_WXWINBASE(RemoveChild
);
2370 DEC_PYCALLBACK_BOOL_const(ShouldInheritColours
);
2371 DEC_PYCALLBACK_VIZATTR_(GetDefaultAttributes
);
2373 DEC_PYCALLBACK_BOOL_(HasTransparentBackground
);
2375 DEC_PYCALLBACK_VOID_(OnInternalIdle
);
2380 IMPLEMENT_DYNAMIC_CLASS(wxPyControl
, wxControl
);
2382 IMP_PYCALLBACK_VOID_INT4(wxPyControl
, wxControl
, DoMoveWindow
);
2383 IMP_PYCALLBACK_VOID_INT5(wxPyControl
, wxControl
, DoSetSize
);
2384 IMP_PYCALLBACK_VOID_INTINT(wxPyControl
, wxControl
, DoSetClientSize
);
2385 IMP_PYCALLBACK_VOID_INTINT(wxPyControl
, wxControl
, DoSetVirtualSize
);
2387 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyControl
, wxControl
, DoGetSize
);
2388 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyControl
, wxControl
, DoGetClientSize
);
2389 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyControl
, wxControl
, DoGetPosition
);
2391 IMP_PYCALLBACK_SIZE_const(wxPyControl
, wxControl
, DoGetVirtualSize
);
2392 IMP_PYCALLBACK_SIZE_const(wxPyControl
, wxControl
, DoGetBestSize
);
2394 IMP_PYCALLBACK__(wxPyControl
, wxControl
, InitDialog
);
2395 IMP_PYCALLBACK_BOOL_(wxPyControl
, wxControl
, TransferDataFromWindow
);
2396 IMP_PYCALLBACK_BOOL_(wxPyControl
, wxControl
, TransferDataToWindow
);
2397 IMP_PYCALLBACK_BOOL_(wxPyControl
, wxControl
, Validate
);
2399 IMP_PYCALLBACK_BOOL_const(wxPyControl
, wxControl
, AcceptsFocus
);
2400 IMP_PYCALLBACK_BOOL_const(wxPyControl
, wxControl
, AcceptsFocusFromKeyboard
);
2401 IMP_PYCALLBACK_SIZE_const(wxPyControl
, wxControl
, GetMaxSize
);
2403 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyControl
, wxControl
, AddChild
);
2404 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyControl
, wxControl
, RemoveChild
);
2406 IMP_PYCALLBACK_BOOL_const(wxPyControl
, wxControl
, ShouldInheritColours
);
2407 IMP_PYCALLBACK_VIZATTR_(wxPyControl
, wxControl
, GetDefaultAttributes
);
2409 IMP_PYCALLBACK_BOOL_(wxPyControl
, wxControl
, HasTransparentBackground
);
2411 IMP_PYCALLBACK_VOID_(wxPyControl
, wxControl
, OnInternalIdle
);
2415 static void wxHelpProvider_Destroy(wxHelpProvider
*self
){ delete self
; }
2417 #include <wx/generic/dragimgg.h>
2419 static const wxString
wxPyDatePickerCtrlNameStr(wxDatePickerCtrlNameStr
);
2420 static wxDateTime
wxDatePickerCtrl_GetLowerLimit(wxDatePickerCtrl
*self
){
2422 self
->GetRange(&rv
, NULL
);
2425 static wxDateTime
wxDatePickerCtrl_GetUpperLimit(wxDatePickerCtrl
*self
){
2427 self
->GetRange(NULL
, &rv
);
2433 static int _wrap_ButtonNameStr_set(PyObject
*) {
2434 PyErr_SetString(PyExc_TypeError
,"Variable ButtonNameStr is read-only.");
2439 static PyObject
*_wrap_ButtonNameStr_get(void) {
2440 PyObject
*pyobj
= NULL
;
2444 pyobj
= PyUnicode_FromWideChar((&wxPyButtonNameStr
)->c_str(), (&wxPyButtonNameStr
)->Len());
2446 pyobj
= PyString_FromStringAndSize((&wxPyButtonNameStr
)->c_str(), (&wxPyButtonNameStr
)->Len());
2453 static PyObject
*_wrap_new_Button(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2454 PyObject
*resultobj
= NULL
;
2455 wxWindow
*arg1
= (wxWindow
*) 0 ;
2456 int arg2
= (int) -1 ;
2457 wxString
const &arg3_defvalue
= wxPyEmptyString
;
2458 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
2459 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
2460 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
2461 wxSize
const &arg5_defvalue
= wxDefaultSize
;
2462 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
2463 long arg6
= (long) 0 ;
2464 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
2465 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
2466 wxString
const &arg8_defvalue
= wxPyButtonNameStr
;
2467 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
2469 bool temp3
= false ;
2472 bool temp8
= false ;
2473 PyObject
* obj0
= 0 ;
2474 PyObject
* obj1
= 0 ;
2475 PyObject
* obj2
= 0 ;
2476 PyObject
* obj3
= 0 ;
2477 PyObject
* obj4
= 0 ;
2478 PyObject
* obj5
= 0 ;
2479 PyObject
* obj6
= 0 ;
2480 PyObject
* obj7
= 0 ;
2482 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
2485 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_Button",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
2486 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
2487 if (SWIG_arg_fail(1)) SWIG_fail
;
2490 arg2
= static_cast<int >(SWIG_As_int(obj1
));
2491 if (SWIG_arg_fail(2)) SWIG_fail
;
2496 arg3
= wxString_in_helper(obj2
);
2497 if (arg3
== NULL
) SWIG_fail
;
2504 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
2510 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
2515 arg6
= static_cast<long >(SWIG_As_long(obj5
));
2516 if (SWIG_arg_fail(6)) SWIG_fail
;
2521 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
2522 if (SWIG_arg_fail(7)) SWIG_fail
;
2524 SWIG_null_ref("wxValidator");
2526 if (SWIG_arg_fail(7)) SWIG_fail
;
2531 arg8
= wxString_in_helper(obj7
);
2532 if (arg8
== NULL
) SWIG_fail
;
2537 if (!wxPyCheckForApp()) SWIG_fail
;
2538 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2539 result
= (wxButton
*)new wxButton(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
2541 wxPyEndAllowThreads(__tstate
);
2542 if (PyErr_Occurred()) SWIG_fail
;
2544 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxButton
, 1);
2567 static PyObject
*_wrap_new_PreButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2568 PyObject
*resultobj
= NULL
;
2574 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreButton",kwnames
)) goto fail
;
2576 if (!wxPyCheckForApp()) SWIG_fail
;
2577 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2578 result
= (wxButton
*)new wxButton();
2580 wxPyEndAllowThreads(__tstate
);
2581 if (PyErr_Occurred()) SWIG_fail
;
2583 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxButton
, 1);
2590 static PyObject
*_wrap_Button_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2591 PyObject
*resultobj
= NULL
;
2592 wxButton
*arg1
= (wxButton
*) 0 ;
2593 wxWindow
*arg2
= (wxWindow
*) 0 ;
2594 int arg3
= (int) -1 ;
2595 wxString
const &arg4_defvalue
= wxPyEmptyString
;
2596 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
2597 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
2598 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
2599 wxSize
const &arg6_defvalue
= wxDefaultSize
;
2600 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
2601 long arg7
= (long) 0 ;
2602 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
2603 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
2604 wxString
const &arg9_defvalue
= wxPyButtonNameStr
;
2605 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
2607 bool temp4
= false ;
2610 bool temp9
= false ;
2611 PyObject
* obj0
= 0 ;
2612 PyObject
* obj1
= 0 ;
2613 PyObject
* obj2
= 0 ;
2614 PyObject
* obj3
= 0 ;
2615 PyObject
* obj4
= 0 ;
2616 PyObject
* obj5
= 0 ;
2617 PyObject
* obj6
= 0 ;
2618 PyObject
* obj7
= 0 ;
2619 PyObject
* obj8
= 0 ;
2621 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
2624 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:Button_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
2625 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxButton
, SWIG_POINTER_EXCEPTION
| 0);
2626 if (SWIG_arg_fail(1)) SWIG_fail
;
2627 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
2628 if (SWIG_arg_fail(2)) SWIG_fail
;
2631 arg3
= static_cast<int >(SWIG_As_int(obj2
));
2632 if (SWIG_arg_fail(3)) SWIG_fail
;
2637 arg4
= wxString_in_helper(obj3
);
2638 if (arg4
== NULL
) SWIG_fail
;
2645 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
2651 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
2656 arg7
= static_cast<long >(SWIG_As_long(obj6
));
2657 if (SWIG_arg_fail(7)) SWIG_fail
;
2662 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
2663 if (SWIG_arg_fail(8)) SWIG_fail
;
2665 SWIG_null_ref("wxValidator");
2667 if (SWIG_arg_fail(8)) SWIG_fail
;
2672 arg9
= wxString_in_helper(obj8
);
2673 if (arg9
== NULL
) SWIG_fail
;
2678 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2679 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
2681 wxPyEndAllowThreads(__tstate
);
2682 if (PyErr_Occurred()) SWIG_fail
;
2685 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
2709 static PyObject
*_wrap_Button_SetDefault(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2710 PyObject
*resultobj
= NULL
;
2711 wxButton
*arg1
= (wxButton
*) 0 ;
2712 PyObject
* obj0
= 0 ;
2714 (char *) "self", NULL
2717 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Button_SetDefault",kwnames
,&obj0
)) goto fail
;
2718 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxButton
, SWIG_POINTER_EXCEPTION
| 0);
2719 if (SWIG_arg_fail(1)) SWIG_fail
;
2721 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2722 (arg1
)->SetDefault();
2724 wxPyEndAllowThreads(__tstate
);
2725 if (PyErr_Occurred()) SWIG_fail
;
2727 Py_INCREF(Py_None
); resultobj
= Py_None
;
2734 static PyObject
*_wrap_Button_GetDefaultSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2735 PyObject
*resultobj
= NULL
;
2741 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":Button_GetDefaultSize",kwnames
)) goto fail
;
2743 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2744 result
= wxButton::GetDefaultSize();
2746 wxPyEndAllowThreads(__tstate
);
2747 if (PyErr_Occurred()) SWIG_fail
;
2751 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
2752 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
2760 static PyObject
*_wrap_Button_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2761 PyObject
*resultobj
= NULL
;
2762 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
2763 wxVisualAttributes result
;
2764 PyObject
* obj0
= 0 ;
2766 (char *) "variant", NULL
2769 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Button_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
2772 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
2773 if (SWIG_arg_fail(1)) SWIG_fail
;
2777 if (!wxPyCheckForApp()) SWIG_fail
;
2778 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2779 result
= wxButton::GetClassDefaultAttributes(arg1
);
2781 wxPyEndAllowThreads(__tstate
);
2782 if (PyErr_Occurred()) SWIG_fail
;
2785 wxVisualAttributes
* resultptr
;
2786 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
2787 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
2795 static PyObject
* Button_swigregister(PyObject
*, PyObject
*args
) {
2797 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
2798 SWIG_TypeClientData(SWIGTYPE_p_wxButton
, obj
);
2800 return Py_BuildValue((char *)"");
2802 static PyObject
*_wrap_new_BitmapButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2803 PyObject
*resultobj
= NULL
;
2804 wxWindow
*arg1
= (wxWindow
*) 0 ;
2805 int arg2
= (int) -1 ;
2806 wxBitmap
const &arg3_defvalue
= wxNullBitmap
;
2807 wxBitmap
*arg3
= (wxBitmap
*) &arg3_defvalue
;
2808 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
2809 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
2810 wxSize
const &arg5_defvalue
= wxDefaultSize
;
2811 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
2812 long arg6
= (long) wxBU_AUTODRAW
;
2813 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
2814 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
2815 wxString
const &arg8_defvalue
= wxPyButtonNameStr
;
2816 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
2817 wxBitmapButton
*result
;
2820 bool temp8
= false ;
2821 PyObject
* obj0
= 0 ;
2822 PyObject
* obj1
= 0 ;
2823 PyObject
* obj2
= 0 ;
2824 PyObject
* obj3
= 0 ;
2825 PyObject
* obj4
= 0 ;
2826 PyObject
* obj5
= 0 ;
2827 PyObject
* obj6
= 0 ;
2828 PyObject
* obj7
= 0 ;
2830 (char *) "parent",(char *) "id",(char *) "bitmap",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
2833 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_BitmapButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
2834 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
2835 if (SWIG_arg_fail(1)) SWIG_fail
;
2838 arg2
= static_cast<int >(SWIG_As_int(obj1
));
2839 if (SWIG_arg_fail(2)) SWIG_fail
;
2844 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
2845 if (SWIG_arg_fail(3)) SWIG_fail
;
2847 SWIG_null_ref("wxBitmap");
2849 if (SWIG_arg_fail(3)) SWIG_fail
;
2855 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
2861 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
2866 arg6
= static_cast<long >(SWIG_As_long(obj5
));
2867 if (SWIG_arg_fail(6)) SWIG_fail
;
2872 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
2873 if (SWIG_arg_fail(7)) SWIG_fail
;
2875 SWIG_null_ref("wxValidator");
2877 if (SWIG_arg_fail(7)) SWIG_fail
;
2882 arg8
= wxString_in_helper(obj7
);
2883 if (arg8
== NULL
) SWIG_fail
;
2888 if (!wxPyCheckForApp()) SWIG_fail
;
2889 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2890 result
= (wxBitmapButton
*)new wxBitmapButton(arg1
,arg2
,(wxBitmap
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
2892 wxPyEndAllowThreads(__tstate
);
2893 if (PyErr_Occurred()) SWIG_fail
;
2895 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxBitmapButton
, 1);
2910 static PyObject
*_wrap_new_PreBitmapButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2911 PyObject
*resultobj
= NULL
;
2912 wxBitmapButton
*result
;
2917 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreBitmapButton",kwnames
)) goto fail
;
2919 if (!wxPyCheckForApp()) SWIG_fail
;
2920 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2921 result
= (wxBitmapButton
*)new wxBitmapButton();
2923 wxPyEndAllowThreads(__tstate
);
2924 if (PyErr_Occurred()) SWIG_fail
;
2926 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxBitmapButton
, 1);
2933 static PyObject
*_wrap_BitmapButton_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2934 PyObject
*resultobj
= NULL
;
2935 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
2936 wxWindow
*arg2
= (wxWindow
*) 0 ;
2937 int arg3
= (int) -1 ;
2938 wxBitmap
const &arg4_defvalue
= wxNullBitmap
;
2939 wxBitmap
*arg4
= (wxBitmap
*) &arg4_defvalue
;
2940 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
2941 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
2942 wxSize
const &arg6_defvalue
= wxDefaultSize
;
2943 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
2944 long arg7
= (long) wxBU_AUTODRAW
;
2945 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
2946 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
2947 wxString
const &arg9_defvalue
= wxPyButtonNameStr
;
2948 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
2952 bool temp9
= false ;
2953 PyObject
* obj0
= 0 ;
2954 PyObject
* obj1
= 0 ;
2955 PyObject
* obj2
= 0 ;
2956 PyObject
* obj3
= 0 ;
2957 PyObject
* obj4
= 0 ;
2958 PyObject
* obj5
= 0 ;
2959 PyObject
* obj6
= 0 ;
2960 PyObject
* obj7
= 0 ;
2961 PyObject
* obj8
= 0 ;
2963 (char *) "self",(char *) "parent",(char *) "id",(char *) "bitmap",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
2966 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:BitmapButton_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
2967 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
2968 if (SWIG_arg_fail(1)) SWIG_fail
;
2969 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
2970 if (SWIG_arg_fail(2)) SWIG_fail
;
2973 arg3
= static_cast<int >(SWIG_As_int(obj2
));
2974 if (SWIG_arg_fail(3)) SWIG_fail
;
2979 SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
2980 if (SWIG_arg_fail(4)) SWIG_fail
;
2982 SWIG_null_ref("wxBitmap");
2984 if (SWIG_arg_fail(4)) SWIG_fail
;
2990 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
2996 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
3001 arg7
= static_cast<long >(SWIG_As_long(obj6
));
3002 if (SWIG_arg_fail(7)) SWIG_fail
;
3007 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
3008 if (SWIG_arg_fail(8)) SWIG_fail
;
3010 SWIG_null_ref("wxValidator");
3012 if (SWIG_arg_fail(8)) SWIG_fail
;
3017 arg9
= wxString_in_helper(obj8
);
3018 if (arg9
== NULL
) SWIG_fail
;
3023 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3024 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxBitmap
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
3026 wxPyEndAllowThreads(__tstate
);
3027 if (PyErr_Occurred()) SWIG_fail
;
3030 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3046 static PyObject
*_wrap_BitmapButton_GetBitmapLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3047 PyObject
*resultobj
= NULL
;
3048 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3050 PyObject
* obj0
= 0 ;
3052 (char *) "self", NULL
3055 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BitmapButton_GetBitmapLabel",kwnames
,&obj0
)) goto fail
;
3056 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3057 if (SWIG_arg_fail(1)) SWIG_fail
;
3059 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3060 result
= (arg1
)->GetBitmapLabel();
3062 wxPyEndAllowThreads(__tstate
);
3063 if (PyErr_Occurred()) SWIG_fail
;
3066 wxBitmap
* resultptr
;
3067 resultptr
= new wxBitmap(static_cast<wxBitmap
& >(result
));
3068 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
3076 static PyObject
*_wrap_BitmapButton_GetBitmapDisabled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3077 PyObject
*resultobj
= NULL
;
3078 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3080 PyObject
* obj0
= 0 ;
3082 (char *) "self", NULL
3085 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BitmapButton_GetBitmapDisabled",kwnames
,&obj0
)) goto fail
;
3086 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3087 if (SWIG_arg_fail(1)) SWIG_fail
;
3089 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3090 result
= (arg1
)->GetBitmapDisabled();
3092 wxPyEndAllowThreads(__tstate
);
3093 if (PyErr_Occurred()) SWIG_fail
;
3096 wxBitmap
* resultptr
;
3097 resultptr
= new wxBitmap(static_cast<wxBitmap
& >(result
));
3098 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
3106 static PyObject
*_wrap_BitmapButton_GetBitmapFocus(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3107 PyObject
*resultobj
= NULL
;
3108 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3110 PyObject
* obj0
= 0 ;
3112 (char *) "self", NULL
3115 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BitmapButton_GetBitmapFocus",kwnames
,&obj0
)) goto fail
;
3116 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3117 if (SWIG_arg_fail(1)) SWIG_fail
;
3119 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3120 result
= (arg1
)->GetBitmapFocus();
3122 wxPyEndAllowThreads(__tstate
);
3123 if (PyErr_Occurred()) SWIG_fail
;
3126 wxBitmap
* resultptr
;
3127 resultptr
= new wxBitmap(static_cast<wxBitmap
& >(result
));
3128 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
3136 static PyObject
*_wrap_BitmapButton_GetBitmapSelected(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3137 PyObject
*resultobj
= NULL
;
3138 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3140 PyObject
* obj0
= 0 ;
3142 (char *) "self", NULL
3145 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BitmapButton_GetBitmapSelected",kwnames
,&obj0
)) goto fail
;
3146 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3147 if (SWIG_arg_fail(1)) SWIG_fail
;
3149 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3150 result
= (arg1
)->GetBitmapSelected();
3152 wxPyEndAllowThreads(__tstate
);
3153 if (PyErr_Occurred()) SWIG_fail
;
3156 wxBitmap
* resultptr
;
3157 resultptr
= new wxBitmap(static_cast<wxBitmap
& >(result
));
3158 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
3166 static PyObject
*_wrap_BitmapButton_SetBitmapDisabled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3167 PyObject
*resultobj
= NULL
;
3168 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3169 wxBitmap
*arg2
= 0 ;
3170 PyObject
* obj0
= 0 ;
3171 PyObject
* obj1
= 0 ;
3173 (char *) "self",(char *) "bitmap", NULL
3176 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BitmapButton_SetBitmapDisabled",kwnames
,&obj0
,&obj1
)) goto fail
;
3177 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3178 if (SWIG_arg_fail(1)) SWIG_fail
;
3180 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
3181 if (SWIG_arg_fail(2)) SWIG_fail
;
3183 SWIG_null_ref("wxBitmap");
3185 if (SWIG_arg_fail(2)) SWIG_fail
;
3188 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3189 (arg1
)->SetBitmapDisabled((wxBitmap
const &)*arg2
);
3191 wxPyEndAllowThreads(__tstate
);
3192 if (PyErr_Occurred()) SWIG_fail
;
3194 Py_INCREF(Py_None
); resultobj
= Py_None
;
3201 static PyObject
*_wrap_BitmapButton_SetBitmapFocus(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3202 PyObject
*resultobj
= NULL
;
3203 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3204 wxBitmap
*arg2
= 0 ;
3205 PyObject
* obj0
= 0 ;
3206 PyObject
* obj1
= 0 ;
3208 (char *) "self",(char *) "bitmap", NULL
3211 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BitmapButton_SetBitmapFocus",kwnames
,&obj0
,&obj1
)) goto fail
;
3212 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3213 if (SWIG_arg_fail(1)) SWIG_fail
;
3215 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
3216 if (SWIG_arg_fail(2)) SWIG_fail
;
3218 SWIG_null_ref("wxBitmap");
3220 if (SWIG_arg_fail(2)) SWIG_fail
;
3223 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3224 (arg1
)->SetBitmapFocus((wxBitmap
const &)*arg2
);
3226 wxPyEndAllowThreads(__tstate
);
3227 if (PyErr_Occurred()) SWIG_fail
;
3229 Py_INCREF(Py_None
); resultobj
= Py_None
;
3236 static PyObject
*_wrap_BitmapButton_SetBitmapSelected(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3237 PyObject
*resultobj
= NULL
;
3238 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3239 wxBitmap
*arg2
= 0 ;
3240 PyObject
* obj0
= 0 ;
3241 PyObject
* obj1
= 0 ;
3243 (char *) "self",(char *) "bitmap", NULL
3246 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BitmapButton_SetBitmapSelected",kwnames
,&obj0
,&obj1
)) goto fail
;
3247 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3248 if (SWIG_arg_fail(1)) SWIG_fail
;
3250 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
3251 if (SWIG_arg_fail(2)) SWIG_fail
;
3253 SWIG_null_ref("wxBitmap");
3255 if (SWIG_arg_fail(2)) SWIG_fail
;
3258 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3259 (arg1
)->SetBitmapSelected((wxBitmap
const &)*arg2
);
3261 wxPyEndAllowThreads(__tstate
);
3262 if (PyErr_Occurred()) SWIG_fail
;
3264 Py_INCREF(Py_None
); resultobj
= Py_None
;
3271 static PyObject
*_wrap_BitmapButton_SetBitmapLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3272 PyObject
*resultobj
= NULL
;
3273 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3274 wxBitmap
*arg2
= 0 ;
3275 PyObject
* obj0
= 0 ;
3276 PyObject
* obj1
= 0 ;
3278 (char *) "self",(char *) "bitmap", NULL
3281 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BitmapButton_SetBitmapLabel",kwnames
,&obj0
,&obj1
)) goto fail
;
3282 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3283 if (SWIG_arg_fail(1)) SWIG_fail
;
3285 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
3286 if (SWIG_arg_fail(2)) SWIG_fail
;
3288 SWIG_null_ref("wxBitmap");
3290 if (SWIG_arg_fail(2)) SWIG_fail
;
3293 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3294 (arg1
)->SetBitmapLabel((wxBitmap
const &)*arg2
);
3296 wxPyEndAllowThreads(__tstate
);
3297 if (PyErr_Occurred()) SWIG_fail
;
3299 Py_INCREF(Py_None
); resultobj
= Py_None
;
3306 static PyObject
*_wrap_BitmapButton_SetMargins(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3307 PyObject
*resultobj
= NULL
;
3308 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3311 PyObject
* obj0
= 0 ;
3312 PyObject
* obj1
= 0 ;
3313 PyObject
* obj2
= 0 ;
3315 (char *) "self",(char *) "x",(char *) "y", NULL
3318 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:BitmapButton_SetMargins",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
3319 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3320 if (SWIG_arg_fail(1)) SWIG_fail
;
3322 arg2
= static_cast<int >(SWIG_As_int(obj1
));
3323 if (SWIG_arg_fail(2)) SWIG_fail
;
3326 arg3
= static_cast<int >(SWIG_As_int(obj2
));
3327 if (SWIG_arg_fail(3)) SWIG_fail
;
3330 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3331 (arg1
)->SetMargins(arg2
,arg3
);
3333 wxPyEndAllowThreads(__tstate
);
3334 if (PyErr_Occurred()) SWIG_fail
;
3336 Py_INCREF(Py_None
); resultobj
= Py_None
;
3343 static PyObject
*_wrap_BitmapButton_GetMarginX(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3344 PyObject
*resultobj
= NULL
;
3345 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3347 PyObject
* obj0
= 0 ;
3349 (char *) "self", NULL
3352 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BitmapButton_GetMarginX",kwnames
,&obj0
)) goto fail
;
3353 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3354 if (SWIG_arg_fail(1)) SWIG_fail
;
3356 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3357 result
= (int)((wxBitmapButton
const *)arg1
)->GetMarginX();
3359 wxPyEndAllowThreads(__tstate
);
3360 if (PyErr_Occurred()) SWIG_fail
;
3363 resultobj
= SWIG_From_int(static_cast<int >(result
));
3371 static PyObject
*_wrap_BitmapButton_GetMarginY(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3372 PyObject
*resultobj
= NULL
;
3373 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3375 PyObject
* obj0
= 0 ;
3377 (char *) "self", NULL
3380 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BitmapButton_GetMarginY",kwnames
,&obj0
)) goto fail
;
3381 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3382 if (SWIG_arg_fail(1)) SWIG_fail
;
3384 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3385 result
= (int)((wxBitmapButton
const *)arg1
)->GetMarginY();
3387 wxPyEndAllowThreads(__tstate
);
3388 if (PyErr_Occurred()) SWIG_fail
;
3391 resultobj
= SWIG_From_int(static_cast<int >(result
));
3399 static PyObject
* BitmapButton_swigregister(PyObject
*, PyObject
*args
) {
3401 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3402 SWIG_TypeClientData(SWIGTYPE_p_wxBitmapButton
, obj
);
3404 return Py_BuildValue((char *)"");
3406 static int _wrap_CheckBoxNameStr_set(PyObject
*) {
3407 PyErr_SetString(PyExc_TypeError
,"Variable CheckBoxNameStr is read-only.");
3412 static PyObject
*_wrap_CheckBoxNameStr_get(void) {
3413 PyObject
*pyobj
= NULL
;
3417 pyobj
= PyUnicode_FromWideChar((&wxPyCheckBoxNameStr
)->c_str(), (&wxPyCheckBoxNameStr
)->Len());
3419 pyobj
= PyString_FromStringAndSize((&wxPyCheckBoxNameStr
)->c_str(), (&wxPyCheckBoxNameStr
)->Len());
3426 static PyObject
*_wrap_new_CheckBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3427 PyObject
*resultobj
= NULL
;
3428 wxWindow
*arg1
= (wxWindow
*) 0 ;
3429 int arg2
= (int) -1 ;
3430 wxString
const &arg3_defvalue
= wxPyEmptyString
;
3431 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
3432 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
3433 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
3434 wxSize
const &arg5_defvalue
= wxDefaultSize
;
3435 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
3436 long arg6
= (long) 0 ;
3437 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
3438 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
3439 wxString
const &arg8_defvalue
= wxPyCheckBoxNameStr
;
3440 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
3442 bool temp3
= false ;
3445 bool temp8
= false ;
3446 PyObject
* obj0
= 0 ;
3447 PyObject
* obj1
= 0 ;
3448 PyObject
* obj2
= 0 ;
3449 PyObject
* obj3
= 0 ;
3450 PyObject
* obj4
= 0 ;
3451 PyObject
* obj5
= 0 ;
3452 PyObject
* obj6
= 0 ;
3453 PyObject
* obj7
= 0 ;
3455 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
3458 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_CheckBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
3459 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
3460 if (SWIG_arg_fail(1)) SWIG_fail
;
3463 arg2
= static_cast<int >(SWIG_As_int(obj1
));
3464 if (SWIG_arg_fail(2)) SWIG_fail
;
3469 arg3
= wxString_in_helper(obj2
);
3470 if (arg3
== NULL
) SWIG_fail
;
3477 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
3483 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
3488 arg6
= static_cast<long >(SWIG_As_long(obj5
));
3489 if (SWIG_arg_fail(6)) SWIG_fail
;
3494 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
3495 if (SWIG_arg_fail(7)) SWIG_fail
;
3497 SWIG_null_ref("wxValidator");
3499 if (SWIG_arg_fail(7)) SWIG_fail
;
3504 arg8
= wxString_in_helper(obj7
);
3505 if (arg8
== NULL
) SWIG_fail
;
3510 if (!wxPyCheckForApp()) SWIG_fail
;
3511 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3512 result
= (wxCheckBox
*)new wxCheckBox(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
3514 wxPyEndAllowThreads(__tstate
);
3515 if (PyErr_Occurred()) SWIG_fail
;
3517 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxCheckBox
, 1);
3540 static PyObject
*_wrap_new_PreCheckBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3541 PyObject
*resultobj
= NULL
;
3547 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreCheckBox",kwnames
)) goto fail
;
3549 if (!wxPyCheckForApp()) SWIG_fail
;
3550 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3551 result
= (wxCheckBox
*)new wxCheckBox();
3553 wxPyEndAllowThreads(__tstate
);
3554 if (PyErr_Occurred()) SWIG_fail
;
3556 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxCheckBox
, 1);
3563 static PyObject
*_wrap_CheckBox_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3564 PyObject
*resultobj
= NULL
;
3565 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3566 wxWindow
*arg2
= (wxWindow
*) 0 ;
3567 int arg3
= (int) -1 ;
3568 wxString
const &arg4_defvalue
= wxPyEmptyString
;
3569 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
3570 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
3571 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
3572 wxSize
const &arg6_defvalue
= wxDefaultSize
;
3573 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
3574 long arg7
= (long) 0 ;
3575 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
3576 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
3577 wxString
const &arg9_defvalue
= wxPyCheckBoxNameStr
;
3578 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
3580 bool temp4
= false ;
3583 bool temp9
= false ;
3584 PyObject
* obj0
= 0 ;
3585 PyObject
* obj1
= 0 ;
3586 PyObject
* obj2
= 0 ;
3587 PyObject
* obj3
= 0 ;
3588 PyObject
* obj4
= 0 ;
3589 PyObject
* obj5
= 0 ;
3590 PyObject
* obj6
= 0 ;
3591 PyObject
* obj7
= 0 ;
3592 PyObject
* obj8
= 0 ;
3594 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
3597 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:CheckBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
3598 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3599 if (SWIG_arg_fail(1)) SWIG_fail
;
3600 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
3601 if (SWIG_arg_fail(2)) SWIG_fail
;
3604 arg3
= static_cast<int >(SWIG_As_int(obj2
));
3605 if (SWIG_arg_fail(3)) SWIG_fail
;
3610 arg4
= wxString_in_helper(obj3
);
3611 if (arg4
== NULL
) SWIG_fail
;
3618 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
3624 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
3629 arg7
= static_cast<long >(SWIG_As_long(obj6
));
3630 if (SWIG_arg_fail(7)) SWIG_fail
;
3635 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
3636 if (SWIG_arg_fail(8)) SWIG_fail
;
3638 SWIG_null_ref("wxValidator");
3640 if (SWIG_arg_fail(8)) SWIG_fail
;
3645 arg9
= wxString_in_helper(obj8
);
3646 if (arg9
== NULL
) SWIG_fail
;
3651 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3652 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
3654 wxPyEndAllowThreads(__tstate
);
3655 if (PyErr_Occurred()) SWIG_fail
;
3658 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3682 static PyObject
*_wrap_CheckBox_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3683 PyObject
*resultobj
= NULL
;
3684 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3686 PyObject
* obj0
= 0 ;
3688 (char *) "self", NULL
3691 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CheckBox_GetValue",kwnames
,&obj0
)) goto fail
;
3692 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3693 if (SWIG_arg_fail(1)) SWIG_fail
;
3695 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3696 result
= (bool)(arg1
)->GetValue();
3698 wxPyEndAllowThreads(__tstate
);
3699 if (PyErr_Occurred()) SWIG_fail
;
3702 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3710 static PyObject
*_wrap_CheckBox_IsChecked(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3711 PyObject
*resultobj
= NULL
;
3712 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3714 PyObject
* obj0
= 0 ;
3716 (char *) "self", NULL
3719 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CheckBox_IsChecked",kwnames
,&obj0
)) goto fail
;
3720 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3721 if (SWIG_arg_fail(1)) SWIG_fail
;
3723 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3724 result
= (bool)(arg1
)->IsChecked();
3726 wxPyEndAllowThreads(__tstate
);
3727 if (PyErr_Occurred()) SWIG_fail
;
3730 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3738 static PyObject
*_wrap_CheckBox_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3739 PyObject
*resultobj
= NULL
;
3740 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3742 PyObject
* obj0
= 0 ;
3743 PyObject
* obj1
= 0 ;
3745 (char *) "self",(char *) "state", NULL
3748 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CheckBox_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
3749 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3750 if (SWIG_arg_fail(1)) SWIG_fail
;
3752 arg2
= static_cast<bool const >(SWIG_As_bool(obj1
));
3753 if (SWIG_arg_fail(2)) SWIG_fail
;
3756 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3757 (arg1
)->SetValue(arg2
);
3759 wxPyEndAllowThreads(__tstate
);
3760 if (PyErr_Occurred()) SWIG_fail
;
3762 Py_INCREF(Py_None
); resultobj
= Py_None
;
3769 static PyObject
*_wrap_CheckBox_Get3StateValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3770 PyObject
*resultobj
= NULL
;
3771 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3772 wxCheckBoxState result
;
3773 PyObject
* obj0
= 0 ;
3775 (char *) "self", NULL
3778 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CheckBox_Get3StateValue",kwnames
,&obj0
)) goto fail
;
3779 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3780 if (SWIG_arg_fail(1)) SWIG_fail
;
3782 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3783 result
= (wxCheckBoxState
)((wxCheckBox
const *)arg1
)->Get3StateValue();
3785 wxPyEndAllowThreads(__tstate
);
3786 if (PyErr_Occurred()) SWIG_fail
;
3788 resultobj
= SWIG_From_int((result
));
3795 static PyObject
*_wrap_CheckBox_Set3StateValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3796 PyObject
*resultobj
= NULL
;
3797 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3798 wxCheckBoxState arg2
;
3799 PyObject
* obj0
= 0 ;
3800 PyObject
* obj1
= 0 ;
3802 (char *) "self",(char *) "state", NULL
3805 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CheckBox_Set3StateValue",kwnames
,&obj0
,&obj1
)) goto fail
;
3806 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3807 if (SWIG_arg_fail(1)) SWIG_fail
;
3809 arg2
= static_cast<wxCheckBoxState
>(SWIG_As_int(obj1
));
3810 if (SWIG_arg_fail(2)) SWIG_fail
;
3813 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3814 (arg1
)->Set3StateValue(arg2
);
3816 wxPyEndAllowThreads(__tstate
);
3817 if (PyErr_Occurred()) SWIG_fail
;
3819 Py_INCREF(Py_None
); resultobj
= Py_None
;
3826 static PyObject
*_wrap_CheckBox_Is3State(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3827 PyObject
*resultobj
= NULL
;
3828 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3830 PyObject
* obj0
= 0 ;
3832 (char *) "self", NULL
3835 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CheckBox_Is3State",kwnames
,&obj0
)) goto fail
;
3836 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3837 if (SWIG_arg_fail(1)) SWIG_fail
;
3839 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3840 result
= (bool)((wxCheckBox
const *)arg1
)->Is3State();
3842 wxPyEndAllowThreads(__tstate
);
3843 if (PyErr_Occurred()) SWIG_fail
;
3846 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3854 static PyObject
*_wrap_CheckBox_Is3rdStateAllowedForUser(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3855 PyObject
*resultobj
= NULL
;
3856 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3858 PyObject
* obj0
= 0 ;
3860 (char *) "self", NULL
3863 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CheckBox_Is3rdStateAllowedForUser",kwnames
,&obj0
)) goto fail
;
3864 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3865 if (SWIG_arg_fail(1)) SWIG_fail
;
3867 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3868 result
= (bool)((wxCheckBox
const *)arg1
)->Is3rdStateAllowedForUser();
3870 wxPyEndAllowThreads(__tstate
);
3871 if (PyErr_Occurred()) SWIG_fail
;
3874 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3882 static PyObject
*_wrap_CheckBox_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3883 PyObject
*resultobj
= NULL
;
3884 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
3885 wxVisualAttributes result
;
3886 PyObject
* obj0
= 0 ;
3888 (char *) "variant", NULL
3891 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:CheckBox_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
3894 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
3895 if (SWIG_arg_fail(1)) SWIG_fail
;
3899 if (!wxPyCheckForApp()) SWIG_fail
;
3900 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3901 result
= wxCheckBox::GetClassDefaultAttributes(arg1
);
3903 wxPyEndAllowThreads(__tstate
);
3904 if (PyErr_Occurred()) SWIG_fail
;
3907 wxVisualAttributes
* resultptr
;
3908 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
3909 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
3917 static PyObject
* CheckBox_swigregister(PyObject
*, PyObject
*args
) {
3919 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3920 SWIG_TypeClientData(SWIGTYPE_p_wxCheckBox
, obj
);
3922 return Py_BuildValue((char *)"");
3924 static int _wrap_ChoiceNameStr_set(PyObject
*) {
3925 PyErr_SetString(PyExc_TypeError
,"Variable ChoiceNameStr is read-only.");
3930 static PyObject
*_wrap_ChoiceNameStr_get(void) {
3931 PyObject
*pyobj
= NULL
;
3935 pyobj
= PyUnicode_FromWideChar((&wxPyChoiceNameStr
)->c_str(), (&wxPyChoiceNameStr
)->Len());
3937 pyobj
= PyString_FromStringAndSize((&wxPyChoiceNameStr
)->c_str(), (&wxPyChoiceNameStr
)->Len());
3944 static PyObject
*_wrap_new_Choice(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3945 PyObject
*resultobj
= NULL
;
3946 wxWindow
*arg1
= (wxWindow
*) 0 ;
3947 int arg2
= (int) -1 ;
3948 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
3949 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
3950 wxSize
const &arg4_defvalue
= wxDefaultSize
;
3951 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
3952 wxArrayString
const &arg5_defvalue
= wxPyEmptyStringArray
;
3953 wxArrayString
*arg5
= (wxArrayString
*) &arg5_defvalue
;
3954 long arg6
= (long) 0 ;
3955 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
3956 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
3957 wxString
const &arg8_defvalue
= wxPyChoiceNameStr
;
3958 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
3962 bool temp5
= false ;
3963 bool temp8
= false ;
3964 PyObject
* obj0
= 0 ;
3965 PyObject
* obj1
= 0 ;
3966 PyObject
* obj2
= 0 ;
3967 PyObject
* obj3
= 0 ;
3968 PyObject
* obj4
= 0 ;
3969 PyObject
* obj5
= 0 ;
3970 PyObject
* obj6
= 0 ;
3971 PyObject
* obj7
= 0 ;
3973 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
3976 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_Choice",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
3977 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
3978 if (SWIG_arg_fail(1)) SWIG_fail
;
3981 arg2
= static_cast<int >(SWIG_As_int(obj1
));
3982 if (SWIG_arg_fail(2)) SWIG_fail
;
3988 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
3994 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
3999 if (! PySequence_Check(obj4
)) {
4000 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
4003 arg5
= new wxArrayString
;
4005 int i
, len
=PySequence_Length(obj4
);
4006 for (i
=0; i
<len
; i
++) {
4007 PyObject
* item
= PySequence_GetItem(obj4
, i
);
4008 wxString
* s
= wxString_in_helper(item
);
4009 if (PyErr_Occurred()) SWIG_fail
;
4018 arg6
= static_cast<long >(SWIG_As_long(obj5
));
4019 if (SWIG_arg_fail(6)) SWIG_fail
;
4024 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
4025 if (SWIG_arg_fail(7)) SWIG_fail
;
4027 SWIG_null_ref("wxValidator");
4029 if (SWIG_arg_fail(7)) SWIG_fail
;
4034 arg8
= wxString_in_helper(obj7
);
4035 if (arg8
== NULL
) SWIG_fail
;
4040 if (!wxPyCheckForApp()) SWIG_fail
;
4041 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4042 result
= (wxChoice
*)new wxChoice(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,(wxArrayString
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
4044 wxPyEndAllowThreads(__tstate
);
4045 if (PyErr_Occurred()) SWIG_fail
;
4047 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxChoice
, 1);
4049 if (temp5
) delete arg5
;
4058 if (temp5
) delete arg5
;
4068 static PyObject
*_wrap_new_PreChoice(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4069 PyObject
*resultobj
= NULL
;
4075 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreChoice",kwnames
)) goto fail
;
4077 if (!wxPyCheckForApp()) SWIG_fail
;
4078 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4079 result
= (wxChoice
*)new wxChoice();
4081 wxPyEndAllowThreads(__tstate
);
4082 if (PyErr_Occurred()) SWIG_fail
;
4084 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxChoice
, 1);
4091 static PyObject
*_wrap_Choice_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4092 PyObject
*resultobj
= NULL
;
4093 wxChoice
*arg1
= (wxChoice
*) 0 ;
4094 wxWindow
*arg2
= (wxWindow
*) 0 ;
4095 int arg3
= (int) -1 ;
4096 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
4097 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
4098 wxSize
const &arg5_defvalue
= wxDefaultSize
;
4099 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
4100 wxArrayString
const &arg6_defvalue
= wxPyEmptyStringArray
;
4101 wxArrayString
*arg6
= (wxArrayString
*) &arg6_defvalue
;
4102 long arg7
= (long) 0 ;
4103 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
4104 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
4105 wxString
const &arg9_defvalue
= wxPyChoiceNameStr
;
4106 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
4110 bool temp6
= false ;
4111 bool temp9
= false ;
4112 PyObject
* obj0
= 0 ;
4113 PyObject
* obj1
= 0 ;
4114 PyObject
* obj2
= 0 ;
4115 PyObject
* obj3
= 0 ;
4116 PyObject
* obj4
= 0 ;
4117 PyObject
* obj5
= 0 ;
4118 PyObject
* obj6
= 0 ;
4119 PyObject
* obj7
= 0 ;
4120 PyObject
* obj8
= 0 ;
4122 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
4125 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:Choice_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
4126 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxChoice
, SWIG_POINTER_EXCEPTION
| 0);
4127 if (SWIG_arg_fail(1)) SWIG_fail
;
4128 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
4129 if (SWIG_arg_fail(2)) SWIG_fail
;
4132 arg3
= static_cast<int >(SWIG_As_int(obj2
));
4133 if (SWIG_arg_fail(3)) SWIG_fail
;
4139 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
4145 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
4150 if (! PySequence_Check(obj5
)) {
4151 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
4154 arg6
= new wxArrayString
;
4156 int i
, len
=PySequence_Length(obj5
);
4157 for (i
=0; i
<len
; i
++) {
4158 PyObject
* item
= PySequence_GetItem(obj5
, i
);
4159 wxString
* s
= wxString_in_helper(item
);
4160 if (PyErr_Occurred()) SWIG_fail
;
4169 arg7
= static_cast<long >(SWIG_As_long(obj6
));
4170 if (SWIG_arg_fail(7)) SWIG_fail
;
4175 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
4176 if (SWIG_arg_fail(8)) SWIG_fail
;
4178 SWIG_null_ref("wxValidator");
4180 if (SWIG_arg_fail(8)) SWIG_fail
;
4185 arg9
= wxString_in_helper(obj8
);
4186 if (arg9
== NULL
) SWIG_fail
;
4191 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4192 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,(wxArrayString
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
4194 wxPyEndAllowThreads(__tstate
);
4195 if (PyErr_Occurred()) SWIG_fail
;
4198 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4201 if (temp6
) delete arg6
;
4210 if (temp6
) delete arg6
;
4220 static PyObject
*_wrap_Choice_GetCurrentSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4221 PyObject
*resultobj
= NULL
;
4222 wxChoice
*arg1
= (wxChoice
*) 0 ;
4224 PyObject
* obj0
= 0 ;
4226 (char *) "self", NULL
4229 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Choice_GetCurrentSelection",kwnames
,&obj0
)) goto fail
;
4230 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxChoice
, SWIG_POINTER_EXCEPTION
| 0);
4231 if (SWIG_arg_fail(1)) SWIG_fail
;
4233 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4234 result
= (int)((wxChoice
const *)arg1
)->GetCurrentSelection();
4236 wxPyEndAllowThreads(__tstate
);
4237 if (PyErr_Occurred()) SWIG_fail
;
4240 resultobj
= SWIG_From_int(static_cast<int >(result
));
4248 static PyObject
*_wrap_Choice_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4249 PyObject
*resultobj
= NULL
;
4250 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
4251 wxVisualAttributes result
;
4252 PyObject
* obj0
= 0 ;
4254 (char *) "variant", NULL
4257 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Choice_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
4260 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
4261 if (SWIG_arg_fail(1)) SWIG_fail
;
4265 if (!wxPyCheckForApp()) SWIG_fail
;
4266 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4267 result
= wxChoice::GetClassDefaultAttributes(arg1
);
4269 wxPyEndAllowThreads(__tstate
);
4270 if (PyErr_Occurred()) SWIG_fail
;
4273 wxVisualAttributes
* resultptr
;
4274 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
4275 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
4283 static PyObject
* Choice_swigregister(PyObject
*, PyObject
*args
) {
4285 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
4286 SWIG_TypeClientData(SWIGTYPE_p_wxChoice
, obj
);
4288 return Py_BuildValue((char *)"");
4290 static int _wrap_ComboBoxNameStr_set(PyObject
*) {
4291 PyErr_SetString(PyExc_TypeError
,"Variable ComboBoxNameStr is read-only.");
4296 static PyObject
*_wrap_ComboBoxNameStr_get(void) {
4297 PyObject
*pyobj
= NULL
;
4301 pyobj
= PyUnicode_FromWideChar((&wxPyComboBoxNameStr
)->c_str(), (&wxPyComboBoxNameStr
)->Len());
4303 pyobj
= PyString_FromStringAndSize((&wxPyComboBoxNameStr
)->c_str(), (&wxPyComboBoxNameStr
)->Len());
4310 static PyObject
*_wrap_new_ComboBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4311 PyObject
*resultobj
= NULL
;
4312 wxWindow
*arg1
= (wxWindow
*) 0 ;
4313 int arg2
= (int) -1 ;
4314 wxString
const &arg3_defvalue
= wxPyEmptyString
;
4315 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
4316 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
4317 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
4318 wxSize
const &arg5_defvalue
= wxDefaultSize
;
4319 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
4320 wxArrayString
const &arg6_defvalue
= wxPyEmptyStringArray
;
4321 wxArrayString
*arg6
= (wxArrayString
*) &arg6_defvalue
;
4322 long arg7
= (long) 0 ;
4323 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
4324 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
4325 wxString
const &arg9_defvalue
= wxPyComboBoxNameStr
;
4326 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
4328 bool temp3
= false ;
4331 bool temp6
= false ;
4332 bool temp9
= false ;
4333 PyObject
* obj0
= 0 ;
4334 PyObject
* obj1
= 0 ;
4335 PyObject
* obj2
= 0 ;
4336 PyObject
* obj3
= 0 ;
4337 PyObject
* obj4
= 0 ;
4338 PyObject
* obj5
= 0 ;
4339 PyObject
* obj6
= 0 ;
4340 PyObject
* obj7
= 0 ;
4341 PyObject
* obj8
= 0 ;
4343 (char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
4346 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOOO:new_ComboBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
4347 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
4348 if (SWIG_arg_fail(1)) SWIG_fail
;
4351 arg2
= static_cast<int >(SWIG_As_int(obj1
));
4352 if (SWIG_arg_fail(2)) SWIG_fail
;
4357 arg3
= wxString_in_helper(obj2
);
4358 if (arg3
== NULL
) SWIG_fail
;
4365 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
4371 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
4376 if (! PySequence_Check(obj5
)) {
4377 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
4380 arg6
= new wxArrayString
;
4382 int i
, len
=PySequence_Length(obj5
);
4383 for (i
=0; i
<len
; i
++) {
4384 PyObject
* item
= PySequence_GetItem(obj5
, i
);
4385 wxString
* s
= wxString_in_helper(item
);
4386 if (PyErr_Occurred()) SWIG_fail
;
4395 arg7
= static_cast<long >(SWIG_As_long(obj6
));
4396 if (SWIG_arg_fail(7)) SWIG_fail
;
4401 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
4402 if (SWIG_arg_fail(8)) SWIG_fail
;
4404 SWIG_null_ref("wxValidator");
4406 if (SWIG_arg_fail(8)) SWIG_fail
;
4411 arg9
= wxString_in_helper(obj8
);
4412 if (arg9
== NULL
) SWIG_fail
;
4417 if (!wxPyCheckForApp()) SWIG_fail
;
4418 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4419 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
);
4421 wxPyEndAllowThreads(__tstate
);
4422 if (PyErr_Occurred()) SWIG_fail
;
4424 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxComboBox
, 1);
4430 if (temp6
) delete arg6
;
4443 if (temp6
) delete arg6
;
4453 static PyObject
*_wrap_new_PreComboBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4454 PyObject
*resultobj
= NULL
;
4460 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreComboBox",kwnames
)) goto fail
;
4462 if (!wxPyCheckForApp()) SWIG_fail
;
4463 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4464 result
= (wxComboBox
*)new wxComboBox();
4466 wxPyEndAllowThreads(__tstate
);
4467 if (PyErr_Occurred()) SWIG_fail
;
4469 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxComboBox
, 1);
4476 static PyObject
*_wrap_ComboBox_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4477 PyObject
*resultobj
= NULL
;
4478 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4479 wxWindow
*arg2
= (wxWindow
*) 0 ;
4480 int arg3
= (int) -1 ;
4481 wxString
const &arg4_defvalue
= wxPyEmptyString
;
4482 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
4483 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
4484 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
4485 wxSize
const &arg6_defvalue
= wxDefaultSize
;
4486 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
4487 wxArrayString
const &arg7_defvalue
= wxPyEmptyStringArray
;
4488 wxArrayString
*arg7
= (wxArrayString
*) &arg7_defvalue
;
4489 long arg8
= (long) 0 ;
4490 wxValidator
const &arg9_defvalue
= wxDefaultValidator
;
4491 wxValidator
*arg9
= (wxValidator
*) &arg9_defvalue
;
4492 wxString
const &arg10_defvalue
= wxPyChoiceNameStr
;
4493 wxString
*arg10
= (wxString
*) &arg10_defvalue
;
4495 bool temp4
= false ;
4498 bool temp7
= false ;
4499 bool temp10
= false ;
4500 PyObject
* obj0
= 0 ;
4501 PyObject
* obj1
= 0 ;
4502 PyObject
* obj2
= 0 ;
4503 PyObject
* obj3
= 0 ;
4504 PyObject
* obj4
= 0 ;
4505 PyObject
* obj5
= 0 ;
4506 PyObject
* obj6
= 0 ;
4507 PyObject
* obj7
= 0 ;
4508 PyObject
* obj8
= 0 ;
4509 PyObject
* obj9
= 0 ;
4511 (char *) "self",(char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
4514 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOOO:ComboBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) goto fail
;
4515 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4516 if (SWIG_arg_fail(1)) SWIG_fail
;
4517 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
4518 if (SWIG_arg_fail(2)) SWIG_fail
;
4521 arg3
= static_cast<int >(SWIG_As_int(obj2
));
4522 if (SWIG_arg_fail(3)) SWIG_fail
;
4527 arg4
= wxString_in_helper(obj3
);
4528 if (arg4
== NULL
) SWIG_fail
;
4535 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
4541 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
4546 if (! PySequence_Check(obj6
)) {
4547 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
4550 arg7
= new wxArrayString
;
4552 int i
, len
=PySequence_Length(obj6
);
4553 for (i
=0; i
<len
; i
++) {
4554 PyObject
* item
= PySequence_GetItem(obj6
, i
);
4555 wxString
* s
= wxString_in_helper(item
);
4556 if (PyErr_Occurred()) SWIG_fail
;
4565 arg8
= static_cast<long >(SWIG_As_long(obj7
));
4566 if (SWIG_arg_fail(8)) SWIG_fail
;
4571 SWIG_Python_ConvertPtr(obj8
, (void **)&arg9
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
4572 if (SWIG_arg_fail(9)) SWIG_fail
;
4574 SWIG_null_ref("wxValidator");
4576 if (SWIG_arg_fail(9)) SWIG_fail
;
4581 arg10
= wxString_in_helper(obj9
);
4582 if (arg10
== NULL
) SWIG_fail
;
4587 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4588 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
);
4590 wxPyEndAllowThreads(__tstate
);
4591 if (PyErr_Occurred()) SWIG_fail
;
4594 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4601 if (temp7
) delete arg7
;
4614 if (temp7
) delete arg7
;
4624 static PyObject
*_wrap_ComboBox_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4625 PyObject
*resultobj
= NULL
;
4626 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4628 PyObject
* obj0
= 0 ;
4630 (char *) "self", NULL
4633 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_GetValue",kwnames
,&obj0
)) goto fail
;
4634 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4635 if (SWIG_arg_fail(1)) SWIG_fail
;
4637 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4638 result
= ((wxComboBox
const *)arg1
)->GetValue();
4640 wxPyEndAllowThreads(__tstate
);
4641 if (PyErr_Occurred()) SWIG_fail
;
4645 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
4647 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
4656 static PyObject
*_wrap_ComboBox_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4657 PyObject
*resultobj
= NULL
;
4658 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4659 wxString
*arg2
= 0 ;
4660 bool temp2
= false ;
4661 PyObject
* obj0
= 0 ;
4662 PyObject
* obj1
= 0 ;
4664 (char *) "self",(char *) "value", NULL
4667 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ComboBox_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
4668 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4669 if (SWIG_arg_fail(1)) SWIG_fail
;
4671 arg2
= wxString_in_helper(obj1
);
4672 if (arg2
== NULL
) SWIG_fail
;
4676 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4677 (arg1
)->SetValue((wxString
const &)*arg2
);
4679 wxPyEndAllowThreads(__tstate
);
4680 if (PyErr_Occurred()) SWIG_fail
;
4682 Py_INCREF(Py_None
); resultobj
= Py_None
;
4697 static PyObject
*_wrap_ComboBox_Copy(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4698 PyObject
*resultobj
= NULL
;
4699 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4700 PyObject
* obj0
= 0 ;
4702 (char *) "self", NULL
4705 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_Copy",kwnames
,&obj0
)) goto fail
;
4706 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4707 if (SWIG_arg_fail(1)) SWIG_fail
;
4709 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4712 wxPyEndAllowThreads(__tstate
);
4713 if (PyErr_Occurred()) SWIG_fail
;
4715 Py_INCREF(Py_None
); resultobj
= Py_None
;
4722 static PyObject
*_wrap_ComboBox_Cut(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4723 PyObject
*resultobj
= NULL
;
4724 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4725 PyObject
* obj0
= 0 ;
4727 (char *) "self", NULL
4730 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_Cut",kwnames
,&obj0
)) goto fail
;
4731 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4732 if (SWIG_arg_fail(1)) SWIG_fail
;
4734 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4737 wxPyEndAllowThreads(__tstate
);
4738 if (PyErr_Occurred()) SWIG_fail
;
4740 Py_INCREF(Py_None
); resultobj
= Py_None
;
4747 static PyObject
*_wrap_ComboBox_Paste(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4748 PyObject
*resultobj
= NULL
;
4749 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4750 PyObject
* obj0
= 0 ;
4752 (char *) "self", NULL
4755 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_Paste",kwnames
,&obj0
)) goto fail
;
4756 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4757 if (SWIG_arg_fail(1)) SWIG_fail
;
4759 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4762 wxPyEndAllowThreads(__tstate
);
4763 if (PyErr_Occurred()) SWIG_fail
;
4765 Py_INCREF(Py_None
); resultobj
= Py_None
;
4772 static PyObject
*_wrap_ComboBox_SetInsertionPoint(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4773 PyObject
*resultobj
= NULL
;
4774 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4776 PyObject
* obj0
= 0 ;
4777 PyObject
* obj1
= 0 ;
4779 (char *) "self",(char *) "pos", NULL
4782 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ComboBox_SetInsertionPoint",kwnames
,&obj0
,&obj1
)) goto fail
;
4783 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4784 if (SWIG_arg_fail(1)) SWIG_fail
;
4786 arg2
= static_cast<long >(SWIG_As_long(obj1
));
4787 if (SWIG_arg_fail(2)) SWIG_fail
;
4790 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4791 (arg1
)->SetInsertionPoint(arg2
);
4793 wxPyEndAllowThreads(__tstate
);
4794 if (PyErr_Occurred()) SWIG_fail
;
4796 Py_INCREF(Py_None
); resultobj
= Py_None
;
4803 static PyObject
*_wrap_ComboBox_GetInsertionPoint(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4804 PyObject
*resultobj
= NULL
;
4805 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4807 PyObject
* obj0
= 0 ;
4809 (char *) "self", NULL
4812 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_GetInsertionPoint",kwnames
,&obj0
)) goto fail
;
4813 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4814 if (SWIG_arg_fail(1)) SWIG_fail
;
4816 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4817 result
= (long)((wxComboBox
const *)arg1
)->GetInsertionPoint();
4819 wxPyEndAllowThreads(__tstate
);
4820 if (PyErr_Occurred()) SWIG_fail
;
4823 resultobj
= SWIG_From_long(static_cast<long >(result
));
4831 static PyObject
*_wrap_ComboBox_GetLastPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4832 PyObject
*resultobj
= NULL
;
4833 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4835 PyObject
* obj0
= 0 ;
4837 (char *) "self", NULL
4840 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_GetLastPosition",kwnames
,&obj0
)) goto fail
;
4841 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4842 if (SWIG_arg_fail(1)) SWIG_fail
;
4844 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4845 result
= (long)((wxComboBox
const *)arg1
)->GetLastPosition();
4847 wxPyEndAllowThreads(__tstate
);
4848 if (PyErr_Occurred()) SWIG_fail
;
4851 resultobj
= SWIG_From_long(static_cast<long >(result
));
4859 static PyObject
*_wrap_ComboBox_Replace(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4860 PyObject
*resultobj
= NULL
;
4861 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4864 wxString
*arg4
= 0 ;
4865 bool temp4
= false ;
4866 PyObject
* obj0
= 0 ;
4867 PyObject
* obj1
= 0 ;
4868 PyObject
* obj2
= 0 ;
4869 PyObject
* obj3
= 0 ;
4871 (char *) "self",(char *) "from",(char *) "to",(char *) "value", NULL
4874 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:ComboBox_Replace",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
4875 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4876 if (SWIG_arg_fail(1)) SWIG_fail
;
4878 arg2
= static_cast<long >(SWIG_As_long(obj1
));
4879 if (SWIG_arg_fail(2)) SWIG_fail
;
4882 arg3
= static_cast<long >(SWIG_As_long(obj2
));
4883 if (SWIG_arg_fail(3)) SWIG_fail
;
4886 arg4
= wxString_in_helper(obj3
);
4887 if (arg4
== NULL
) SWIG_fail
;
4891 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4892 (arg1
)->Replace(arg2
,arg3
,(wxString
const &)*arg4
);
4894 wxPyEndAllowThreads(__tstate
);
4895 if (PyErr_Occurred()) SWIG_fail
;
4897 Py_INCREF(Py_None
); resultobj
= Py_None
;
4912 static PyObject
*_wrap_ComboBox_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4913 PyObject
*resultobj
= NULL
;
4914 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4916 PyObject
* obj0
= 0 ;
4917 PyObject
* obj1
= 0 ;
4919 (char *) "self",(char *) "n", NULL
4922 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ComboBox_SetSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
4923 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4924 if (SWIG_arg_fail(1)) SWIG_fail
;
4926 arg2
= static_cast<int >(SWIG_As_int(obj1
));
4927 if (SWIG_arg_fail(2)) SWIG_fail
;
4930 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4931 (arg1
)->SetSelection(arg2
);
4933 wxPyEndAllowThreads(__tstate
);
4934 if (PyErr_Occurred()) SWIG_fail
;
4936 Py_INCREF(Py_None
); resultobj
= Py_None
;
4943 static PyObject
*_wrap_ComboBox_SetMark(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4944 PyObject
*resultobj
= NULL
;
4945 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4948 PyObject
* obj0
= 0 ;
4949 PyObject
* obj1
= 0 ;
4950 PyObject
* obj2
= 0 ;
4952 (char *) "self",(char *) "from",(char *) "to", NULL
4955 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ComboBox_SetMark",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
4956 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4957 if (SWIG_arg_fail(1)) SWIG_fail
;
4959 arg2
= static_cast<long >(SWIG_As_long(obj1
));
4960 if (SWIG_arg_fail(2)) SWIG_fail
;
4963 arg3
= static_cast<long >(SWIG_As_long(obj2
));
4964 if (SWIG_arg_fail(3)) SWIG_fail
;
4967 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4968 (arg1
)->SetSelection(arg2
,arg3
);
4970 wxPyEndAllowThreads(__tstate
);
4971 if (PyErr_Occurred()) SWIG_fail
;
4973 Py_INCREF(Py_None
); resultobj
= Py_None
;
4980 static PyObject
*_wrap_ComboBox_GetMark(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4981 PyObject
*resultobj
= NULL
;
4982 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4983 long *arg2
= (long *) 0 ;
4984 long *arg3
= (long *) 0 ;
4989 PyObject
* obj0
= 0 ;
4991 (char *) "self", NULL
4994 arg2
= &temp2
; res2
= SWIG_NEWOBJ
;
4995 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
4996 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_GetMark",kwnames
,&obj0
)) goto fail
;
4997 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4998 if (SWIG_arg_fail(1)) SWIG_fail
;
5000 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5001 (arg1
)->GetSelection(arg2
,arg3
);
5003 wxPyEndAllowThreads(__tstate
);
5004 if (PyErr_Occurred()) SWIG_fail
;
5006 Py_INCREF(Py_None
); resultobj
= Py_None
;
5007 resultobj
= t_output_helper(resultobj
, ((res2
== SWIG_NEWOBJ
) ?
5008 SWIG_From_long((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_long
, 0)));
5009 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
5010 SWIG_From_long((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_long
, 0)));
5017 static PyObject
*_wrap_ComboBox_GetCurrentSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5018 PyObject
*resultobj
= NULL
;
5019 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5021 PyObject
* obj0
= 0 ;
5023 (char *) "self", NULL
5026 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_GetCurrentSelection",kwnames
,&obj0
)) goto fail
;
5027 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5028 if (SWIG_arg_fail(1)) SWIG_fail
;
5030 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5031 result
= (int)((wxComboBox
const *)arg1
)->GetCurrentSelection();
5033 wxPyEndAllowThreads(__tstate
);
5034 if (PyErr_Occurred()) SWIG_fail
;
5037 resultobj
= SWIG_From_int(static_cast<int >(result
));
5045 static PyObject
*_wrap_ComboBox_SetStringSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5046 PyObject
*resultobj
= NULL
;
5047 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5048 wxString
*arg2
= 0 ;
5050 bool temp2
= false ;
5051 PyObject
* obj0
= 0 ;
5052 PyObject
* obj1
= 0 ;
5054 (char *) "self",(char *) "string", NULL
5057 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ComboBox_SetStringSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
5058 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5059 if (SWIG_arg_fail(1)) SWIG_fail
;
5061 arg2
= wxString_in_helper(obj1
);
5062 if (arg2
== NULL
) SWIG_fail
;
5066 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5067 result
= (bool)(arg1
)->SetStringSelection((wxString
const &)*arg2
);
5069 wxPyEndAllowThreads(__tstate
);
5070 if (PyErr_Occurred()) SWIG_fail
;
5073 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5089 static PyObject
*_wrap_ComboBox_SetString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5090 PyObject
*resultobj
= NULL
;
5091 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5093 wxString
*arg3
= 0 ;
5094 bool temp3
= false ;
5095 PyObject
* obj0
= 0 ;
5096 PyObject
* obj1
= 0 ;
5097 PyObject
* obj2
= 0 ;
5099 (char *) "self",(char *) "n",(char *) "string", NULL
5102 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ComboBox_SetString",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
5103 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5104 if (SWIG_arg_fail(1)) SWIG_fail
;
5106 arg2
= static_cast<int >(SWIG_As_int(obj1
));
5107 if (SWIG_arg_fail(2)) SWIG_fail
;
5110 arg3
= wxString_in_helper(obj2
);
5111 if (arg3
== NULL
) SWIG_fail
;
5115 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5116 (arg1
)->SetString(arg2
,(wxString
const &)*arg3
);
5118 wxPyEndAllowThreads(__tstate
);
5119 if (PyErr_Occurred()) SWIG_fail
;
5121 Py_INCREF(Py_None
); resultobj
= Py_None
;
5136 static PyObject
*_wrap_ComboBox_SetEditable(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5137 PyObject
*resultobj
= NULL
;
5138 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5140 PyObject
* obj0
= 0 ;
5141 PyObject
* obj1
= 0 ;
5143 (char *) "self",(char *) "editable", NULL
5146 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ComboBox_SetEditable",kwnames
,&obj0
,&obj1
)) goto fail
;
5147 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5148 if (SWIG_arg_fail(1)) SWIG_fail
;
5150 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
5151 if (SWIG_arg_fail(2)) SWIG_fail
;
5154 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5155 (arg1
)->SetEditable(arg2
);
5157 wxPyEndAllowThreads(__tstate
);
5158 if (PyErr_Occurred()) SWIG_fail
;
5160 Py_INCREF(Py_None
); resultobj
= Py_None
;
5167 static PyObject
*_wrap_ComboBox_SetInsertionPointEnd(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5168 PyObject
*resultobj
= NULL
;
5169 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5170 PyObject
* obj0
= 0 ;
5172 (char *) "self", NULL
5175 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_SetInsertionPointEnd",kwnames
,&obj0
)) goto fail
;
5176 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5177 if (SWIG_arg_fail(1)) SWIG_fail
;
5179 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5180 (arg1
)->SetInsertionPointEnd();
5182 wxPyEndAllowThreads(__tstate
);
5183 if (PyErr_Occurred()) SWIG_fail
;
5185 Py_INCREF(Py_None
); resultobj
= Py_None
;
5192 static PyObject
*_wrap_ComboBox_Remove(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5193 PyObject
*resultobj
= NULL
;
5194 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5197 PyObject
* obj0
= 0 ;
5198 PyObject
* obj1
= 0 ;
5199 PyObject
* obj2
= 0 ;
5201 (char *) "self",(char *) "from",(char *) "to", NULL
5204 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ComboBox_Remove",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
5205 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5206 if (SWIG_arg_fail(1)) SWIG_fail
;
5208 arg2
= static_cast<long >(SWIG_As_long(obj1
));
5209 if (SWIG_arg_fail(2)) SWIG_fail
;
5212 arg3
= static_cast<long >(SWIG_As_long(obj2
));
5213 if (SWIG_arg_fail(3)) SWIG_fail
;
5216 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5217 (arg1
)->Remove(arg2
,arg3
);
5219 wxPyEndAllowThreads(__tstate
);
5220 if (PyErr_Occurred()) SWIG_fail
;
5222 Py_INCREF(Py_None
); resultobj
= Py_None
;
5229 static PyObject
*_wrap_ComboBox_IsEditable(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5230 PyObject
*resultobj
= NULL
;
5231 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5233 PyObject
* obj0
= 0 ;
5235 (char *) "self", NULL
5238 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_IsEditable",kwnames
,&obj0
)) goto fail
;
5239 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5240 if (SWIG_arg_fail(1)) SWIG_fail
;
5242 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5243 result
= (bool)((wxComboBox
const *)arg1
)->IsEditable();
5245 wxPyEndAllowThreads(__tstate
);
5246 if (PyErr_Occurred()) SWIG_fail
;
5249 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5257 static PyObject
*_wrap_ComboBox_Undo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5258 PyObject
*resultobj
= NULL
;
5259 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5260 PyObject
* obj0
= 0 ;
5262 (char *) "self", NULL
5265 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_Undo",kwnames
,&obj0
)) goto fail
;
5266 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5267 if (SWIG_arg_fail(1)) SWIG_fail
;
5269 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5272 wxPyEndAllowThreads(__tstate
);
5273 if (PyErr_Occurred()) SWIG_fail
;
5275 Py_INCREF(Py_None
); resultobj
= Py_None
;
5282 static PyObject
*_wrap_ComboBox_Redo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5283 PyObject
*resultobj
= NULL
;
5284 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5285 PyObject
* obj0
= 0 ;
5287 (char *) "self", NULL
5290 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_Redo",kwnames
,&obj0
)) goto fail
;
5291 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5292 if (SWIG_arg_fail(1)) SWIG_fail
;
5294 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5297 wxPyEndAllowThreads(__tstate
);
5298 if (PyErr_Occurred()) SWIG_fail
;
5300 Py_INCREF(Py_None
); resultobj
= Py_None
;
5307 static PyObject
*_wrap_ComboBox_SelectAll(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5308 PyObject
*resultobj
= NULL
;
5309 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5310 PyObject
* obj0
= 0 ;
5312 (char *) "self", NULL
5315 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_SelectAll",kwnames
,&obj0
)) goto fail
;
5316 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5317 if (SWIG_arg_fail(1)) SWIG_fail
;
5319 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5320 (arg1
)->SelectAll();
5322 wxPyEndAllowThreads(__tstate
);
5323 if (PyErr_Occurred()) SWIG_fail
;
5325 Py_INCREF(Py_None
); resultobj
= Py_None
;
5332 static PyObject
*_wrap_ComboBox_CanCopy(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5333 PyObject
*resultobj
= NULL
;
5334 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5336 PyObject
* obj0
= 0 ;
5338 (char *) "self", NULL
5341 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_CanCopy",kwnames
,&obj0
)) goto fail
;
5342 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5343 if (SWIG_arg_fail(1)) SWIG_fail
;
5345 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5346 result
= (bool)((wxComboBox
const *)arg1
)->CanCopy();
5348 wxPyEndAllowThreads(__tstate
);
5349 if (PyErr_Occurred()) SWIG_fail
;
5352 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5360 static PyObject
*_wrap_ComboBox_CanCut(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5361 PyObject
*resultobj
= NULL
;
5362 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5364 PyObject
* obj0
= 0 ;
5366 (char *) "self", NULL
5369 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_CanCut",kwnames
,&obj0
)) goto fail
;
5370 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5371 if (SWIG_arg_fail(1)) SWIG_fail
;
5373 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5374 result
= (bool)((wxComboBox
const *)arg1
)->CanCut();
5376 wxPyEndAllowThreads(__tstate
);
5377 if (PyErr_Occurred()) SWIG_fail
;
5380 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5388 static PyObject
*_wrap_ComboBox_CanPaste(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5389 PyObject
*resultobj
= NULL
;
5390 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5392 PyObject
* obj0
= 0 ;
5394 (char *) "self", NULL
5397 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_CanPaste",kwnames
,&obj0
)) goto fail
;
5398 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5399 if (SWIG_arg_fail(1)) SWIG_fail
;
5401 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5402 result
= (bool)((wxComboBox
const *)arg1
)->CanPaste();
5404 wxPyEndAllowThreads(__tstate
);
5405 if (PyErr_Occurred()) SWIG_fail
;
5408 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5416 static PyObject
*_wrap_ComboBox_CanUndo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5417 PyObject
*resultobj
= NULL
;
5418 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5420 PyObject
* obj0
= 0 ;
5422 (char *) "self", NULL
5425 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_CanUndo",kwnames
,&obj0
)) goto fail
;
5426 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5427 if (SWIG_arg_fail(1)) SWIG_fail
;
5429 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5430 result
= (bool)((wxComboBox
const *)arg1
)->CanUndo();
5432 wxPyEndAllowThreads(__tstate
);
5433 if (PyErr_Occurred()) SWIG_fail
;
5436 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5444 static PyObject
*_wrap_ComboBox_CanRedo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5445 PyObject
*resultobj
= NULL
;
5446 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5448 PyObject
* obj0
= 0 ;
5450 (char *) "self", NULL
5453 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_CanRedo",kwnames
,&obj0
)) goto fail
;
5454 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5455 if (SWIG_arg_fail(1)) SWIG_fail
;
5457 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5458 result
= (bool)((wxComboBox
const *)arg1
)->CanRedo();
5460 wxPyEndAllowThreads(__tstate
);
5461 if (PyErr_Occurred()) SWIG_fail
;
5464 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5472 static PyObject
*_wrap_ComboBox_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5473 PyObject
*resultobj
= NULL
;
5474 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
5475 wxVisualAttributes result
;
5476 PyObject
* obj0
= 0 ;
5478 (char *) "variant", NULL
5481 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ComboBox_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
5484 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
5485 if (SWIG_arg_fail(1)) SWIG_fail
;
5489 if (!wxPyCheckForApp()) SWIG_fail
;
5490 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5491 result
= wxComboBox::GetClassDefaultAttributes(arg1
);
5493 wxPyEndAllowThreads(__tstate
);
5494 if (PyErr_Occurred()) SWIG_fail
;
5497 wxVisualAttributes
* resultptr
;
5498 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
5499 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
5507 static PyObject
* ComboBox_swigregister(PyObject
*, PyObject
*args
) {
5509 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
5510 SWIG_TypeClientData(SWIGTYPE_p_wxComboBox
, obj
);
5512 return Py_BuildValue((char *)"");
5514 static int _wrap_GaugeNameStr_set(PyObject
*) {
5515 PyErr_SetString(PyExc_TypeError
,"Variable GaugeNameStr is read-only.");
5520 static PyObject
*_wrap_GaugeNameStr_get(void) {
5521 PyObject
*pyobj
= NULL
;
5525 pyobj
= PyUnicode_FromWideChar((&wxPyGaugeNameStr
)->c_str(), (&wxPyGaugeNameStr
)->Len());
5527 pyobj
= PyString_FromStringAndSize((&wxPyGaugeNameStr
)->c_str(), (&wxPyGaugeNameStr
)->Len());
5534 static PyObject
*_wrap_new_Gauge(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5535 PyObject
*resultobj
= NULL
;
5536 wxWindow
*arg1
= (wxWindow
*) 0 ;
5537 int arg2
= (int) -1 ;
5538 int arg3
= (int) 100 ;
5539 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
5540 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
5541 wxSize
const &arg5_defvalue
= wxDefaultSize
;
5542 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
5543 long arg6
= (long) wxGA_HORIZONTAL
;
5544 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
5545 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
5546 wxString
const &arg8_defvalue
= wxPyGaugeNameStr
;
5547 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
5551 bool temp8
= false ;
5552 PyObject
* obj0
= 0 ;
5553 PyObject
* obj1
= 0 ;
5554 PyObject
* obj2
= 0 ;
5555 PyObject
* obj3
= 0 ;
5556 PyObject
* obj4
= 0 ;
5557 PyObject
* obj5
= 0 ;
5558 PyObject
* obj6
= 0 ;
5559 PyObject
* obj7
= 0 ;
5561 (char *) "parent",(char *) "id",(char *) "range",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
5564 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_Gauge",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
5565 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
5566 if (SWIG_arg_fail(1)) SWIG_fail
;
5569 arg2
= static_cast<int >(SWIG_As_int(obj1
));
5570 if (SWIG_arg_fail(2)) SWIG_fail
;
5575 arg3
= static_cast<int >(SWIG_As_int(obj2
));
5576 if (SWIG_arg_fail(3)) SWIG_fail
;
5582 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
5588 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
5593 arg6
= static_cast<long >(SWIG_As_long(obj5
));
5594 if (SWIG_arg_fail(6)) SWIG_fail
;
5599 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
5600 if (SWIG_arg_fail(7)) SWIG_fail
;
5602 SWIG_null_ref("wxValidator");
5604 if (SWIG_arg_fail(7)) SWIG_fail
;
5609 arg8
= wxString_in_helper(obj7
);
5610 if (arg8
== NULL
) SWIG_fail
;
5615 if (!wxPyCheckForApp()) SWIG_fail
;
5616 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5617 result
= (wxGauge
*)new wxGauge(arg1
,arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
5619 wxPyEndAllowThreads(__tstate
);
5620 if (PyErr_Occurred()) SWIG_fail
;
5622 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGauge
, 1);
5637 static PyObject
*_wrap_new_PreGauge(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5638 PyObject
*resultobj
= NULL
;
5644 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreGauge",kwnames
)) goto fail
;
5646 if (!wxPyCheckForApp()) SWIG_fail
;
5647 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5648 result
= (wxGauge
*)new wxGauge();
5650 wxPyEndAllowThreads(__tstate
);
5651 if (PyErr_Occurred()) SWIG_fail
;
5653 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGauge
, 1);
5660 static PyObject
*_wrap_Gauge_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5661 PyObject
*resultobj
= NULL
;
5662 wxGauge
*arg1
= (wxGauge
*) 0 ;
5663 wxWindow
*arg2
= (wxWindow
*) 0 ;
5664 int arg3
= (int) -1 ;
5665 int arg4
= (int) 100 ;
5666 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
5667 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
5668 wxSize
const &arg6_defvalue
= wxDefaultSize
;
5669 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
5670 long arg7
= (long) wxGA_HORIZONTAL
;
5671 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
5672 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
5673 wxString
const &arg9_defvalue
= wxPyGaugeNameStr
;
5674 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
5678 bool temp9
= false ;
5679 PyObject
* obj0
= 0 ;
5680 PyObject
* obj1
= 0 ;
5681 PyObject
* obj2
= 0 ;
5682 PyObject
* obj3
= 0 ;
5683 PyObject
* obj4
= 0 ;
5684 PyObject
* obj5
= 0 ;
5685 PyObject
* obj6
= 0 ;
5686 PyObject
* obj7
= 0 ;
5687 PyObject
* obj8
= 0 ;
5689 (char *) "self",(char *) "parent",(char *) "id",(char *) "range",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
5692 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:Gauge_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
5693 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5694 if (SWIG_arg_fail(1)) SWIG_fail
;
5695 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
5696 if (SWIG_arg_fail(2)) SWIG_fail
;
5699 arg3
= static_cast<int >(SWIG_As_int(obj2
));
5700 if (SWIG_arg_fail(3)) SWIG_fail
;
5705 arg4
= static_cast<int >(SWIG_As_int(obj3
));
5706 if (SWIG_arg_fail(4)) SWIG_fail
;
5712 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
5718 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
5723 arg7
= static_cast<long >(SWIG_As_long(obj6
));
5724 if (SWIG_arg_fail(7)) SWIG_fail
;
5729 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
5730 if (SWIG_arg_fail(8)) SWIG_fail
;
5732 SWIG_null_ref("wxValidator");
5734 if (SWIG_arg_fail(8)) SWIG_fail
;
5739 arg9
= wxString_in_helper(obj8
);
5740 if (arg9
== NULL
) SWIG_fail
;
5745 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5746 result
= (bool)(arg1
)->Create(arg2
,arg3
,arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
5748 wxPyEndAllowThreads(__tstate
);
5749 if (PyErr_Occurred()) SWIG_fail
;
5752 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5768 static PyObject
*_wrap_Gauge_SetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5769 PyObject
*resultobj
= NULL
;
5770 wxGauge
*arg1
= (wxGauge
*) 0 ;
5772 PyObject
* obj0
= 0 ;
5773 PyObject
* obj1
= 0 ;
5775 (char *) "self",(char *) "range", NULL
5778 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Gauge_SetRange",kwnames
,&obj0
,&obj1
)) goto fail
;
5779 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5780 if (SWIG_arg_fail(1)) SWIG_fail
;
5782 arg2
= static_cast<int >(SWIG_As_int(obj1
));
5783 if (SWIG_arg_fail(2)) SWIG_fail
;
5786 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5787 (arg1
)->SetRange(arg2
);
5789 wxPyEndAllowThreads(__tstate
);
5790 if (PyErr_Occurred()) SWIG_fail
;
5792 Py_INCREF(Py_None
); resultobj
= Py_None
;
5799 static PyObject
*_wrap_Gauge_GetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5800 PyObject
*resultobj
= NULL
;
5801 wxGauge
*arg1
= (wxGauge
*) 0 ;
5803 PyObject
* obj0
= 0 ;
5805 (char *) "self", NULL
5808 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Gauge_GetRange",kwnames
,&obj0
)) goto fail
;
5809 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5810 if (SWIG_arg_fail(1)) SWIG_fail
;
5812 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5813 result
= (int)((wxGauge
const *)arg1
)->GetRange();
5815 wxPyEndAllowThreads(__tstate
);
5816 if (PyErr_Occurred()) SWIG_fail
;
5819 resultobj
= SWIG_From_int(static_cast<int >(result
));
5827 static PyObject
*_wrap_Gauge_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5828 PyObject
*resultobj
= NULL
;
5829 wxGauge
*arg1
= (wxGauge
*) 0 ;
5831 PyObject
* obj0
= 0 ;
5832 PyObject
* obj1
= 0 ;
5834 (char *) "self",(char *) "pos", NULL
5837 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Gauge_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
5838 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5839 if (SWIG_arg_fail(1)) SWIG_fail
;
5841 arg2
= static_cast<int >(SWIG_As_int(obj1
));
5842 if (SWIG_arg_fail(2)) SWIG_fail
;
5845 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5846 (arg1
)->SetValue(arg2
);
5848 wxPyEndAllowThreads(__tstate
);
5849 if (PyErr_Occurred()) SWIG_fail
;
5851 Py_INCREF(Py_None
); resultobj
= Py_None
;
5858 static PyObject
*_wrap_Gauge_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5859 PyObject
*resultobj
= NULL
;
5860 wxGauge
*arg1
= (wxGauge
*) 0 ;
5862 PyObject
* obj0
= 0 ;
5864 (char *) "self", NULL
5867 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Gauge_GetValue",kwnames
,&obj0
)) goto fail
;
5868 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5869 if (SWIG_arg_fail(1)) SWIG_fail
;
5871 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5872 result
= (int)((wxGauge
const *)arg1
)->GetValue();
5874 wxPyEndAllowThreads(__tstate
);
5875 if (PyErr_Occurred()) SWIG_fail
;
5878 resultobj
= SWIG_From_int(static_cast<int >(result
));
5886 static PyObject
*_wrap_Gauge_IsVertical(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5887 PyObject
*resultobj
= NULL
;
5888 wxGauge
*arg1
= (wxGauge
*) 0 ;
5890 PyObject
* obj0
= 0 ;
5892 (char *) "self", NULL
5895 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Gauge_IsVertical",kwnames
,&obj0
)) goto fail
;
5896 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5897 if (SWIG_arg_fail(1)) SWIG_fail
;
5899 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5900 result
= (bool)((wxGauge
const *)arg1
)->IsVertical();
5902 wxPyEndAllowThreads(__tstate
);
5903 if (PyErr_Occurred()) SWIG_fail
;
5906 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5914 static PyObject
*_wrap_Gauge_SetShadowWidth(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5915 PyObject
*resultobj
= NULL
;
5916 wxGauge
*arg1
= (wxGauge
*) 0 ;
5918 PyObject
* obj0
= 0 ;
5919 PyObject
* obj1
= 0 ;
5921 (char *) "self",(char *) "w", NULL
5924 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Gauge_SetShadowWidth",kwnames
,&obj0
,&obj1
)) goto fail
;
5925 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5926 if (SWIG_arg_fail(1)) SWIG_fail
;
5928 arg2
= static_cast<int >(SWIG_As_int(obj1
));
5929 if (SWIG_arg_fail(2)) SWIG_fail
;
5932 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5933 (arg1
)->SetShadowWidth(arg2
);
5935 wxPyEndAllowThreads(__tstate
);
5936 if (PyErr_Occurred()) SWIG_fail
;
5938 Py_INCREF(Py_None
); resultobj
= Py_None
;
5945 static PyObject
*_wrap_Gauge_GetShadowWidth(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5946 PyObject
*resultobj
= NULL
;
5947 wxGauge
*arg1
= (wxGauge
*) 0 ;
5949 PyObject
* obj0
= 0 ;
5951 (char *) "self", NULL
5954 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Gauge_GetShadowWidth",kwnames
,&obj0
)) goto fail
;
5955 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5956 if (SWIG_arg_fail(1)) SWIG_fail
;
5958 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5959 result
= (int)((wxGauge
const *)arg1
)->GetShadowWidth();
5961 wxPyEndAllowThreads(__tstate
);
5962 if (PyErr_Occurred()) SWIG_fail
;
5965 resultobj
= SWIG_From_int(static_cast<int >(result
));
5973 static PyObject
*_wrap_Gauge_SetBezelFace(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5974 PyObject
*resultobj
= NULL
;
5975 wxGauge
*arg1
= (wxGauge
*) 0 ;
5977 PyObject
* obj0
= 0 ;
5978 PyObject
* obj1
= 0 ;
5980 (char *) "self",(char *) "w", NULL
5983 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Gauge_SetBezelFace",kwnames
,&obj0
,&obj1
)) goto fail
;
5984 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5985 if (SWIG_arg_fail(1)) SWIG_fail
;
5987 arg2
= static_cast<int >(SWIG_As_int(obj1
));
5988 if (SWIG_arg_fail(2)) SWIG_fail
;
5991 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5992 (arg1
)->SetBezelFace(arg2
);
5994 wxPyEndAllowThreads(__tstate
);
5995 if (PyErr_Occurred()) SWIG_fail
;
5997 Py_INCREF(Py_None
); resultobj
= Py_None
;
6004 static PyObject
*_wrap_Gauge_GetBezelFace(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6005 PyObject
*resultobj
= NULL
;
6006 wxGauge
*arg1
= (wxGauge
*) 0 ;
6008 PyObject
* obj0
= 0 ;
6010 (char *) "self", NULL
6013 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Gauge_GetBezelFace",kwnames
,&obj0
)) goto fail
;
6014 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
6015 if (SWIG_arg_fail(1)) SWIG_fail
;
6017 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6018 result
= (int)((wxGauge
const *)arg1
)->GetBezelFace();
6020 wxPyEndAllowThreads(__tstate
);
6021 if (PyErr_Occurred()) SWIG_fail
;
6024 resultobj
= SWIG_From_int(static_cast<int >(result
));
6032 static PyObject
*_wrap_Gauge_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6033 PyObject
*resultobj
= NULL
;
6034 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
6035 wxVisualAttributes result
;
6036 PyObject
* obj0
= 0 ;
6038 (char *) "variant", NULL
6041 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Gauge_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
6044 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
6045 if (SWIG_arg_fail(1)) SWIG_fail
;
6049 if (!wxPyCheckForApp()) SWIG_fail
;
6050 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6051 result
= wxGauge::GetClassDefaultAttributes(arg1
);
6053 wxPyEndAllowThreads(__tstate
);
6054 if (PyErr_Occurred()) SWIG_fail
;
6057 wxVisualAttributes
* resultptr
;
6058 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
6059 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
6067 static PyObject
* Gauge_swigregister(PyObject
*, PyObject
*args
) {
6069 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6070 SWIG_TypeClientData(SWIGTYPE_p_wxGauge
, obj
);
6072 return Py_BuildValue((char *)"");
6074 static int _wrap_StaticBitmapNameStr_set(PyObject
*) {
6075 PyErr_SetString(PyExc_TypeError
,"Variable StaticBitmapNameStr is read-only.");
6080 static PyObject
*_wrap_StaticBitmapNameStr_get(void) {
6081 PyObject
*pyobj
= NULL
;
6085 pyobj
= PyUnicode_FromWideChar((&wxPyStaticBitmapNameStr
)->c_str(), (&wxPyStaticBitmapNameStr
)->Len());
6087 pyobj
= PyString_FromStringAndSize((&wxPyStaticBitmapNameStr
)->c_str(), (&wxPyStaticBitmapNameStr
)->Len());
6094 static int _wrap_StaticBoxNameStr_set(PyObject
*) {
6095 PyErr_SetString(PyExc_TypeError
,"Variable StaticBoxNameStr is read-only.");
6100 static PyObject
*_wrap_StaticBoxNameStr_get(void) {
6101 PyObject
*pyobj
= NULL
;
6105 pyobj
= PyUnicode_FromWideChar((&wxPyStaticBoxNameStr
)->c_str(), (&wxPyStaticBoxNameStr
)->Len());
6107 pyobj
= PyString_FromStringAndSize((&wxPyStaticBoxNameStr
)->c_str(), (&wxPyStaticBoxNameStr
)->Len());
6114 static int _wrap_StaticTextNameStr_set(PyObject
*) {
6115 PyErr_SetString(PyExc_TypeError
,"Variable StaticTextNameStr is read-only.");
6120 static PyObject
*_wrap_StaticTextNameStr_get(void) {
6121 PyObject
*pyobj
= NULL
;
6125 pyobj
= PyUnicode_FromWideChar((&wxPyStaticTextNameStr
)->c_str(), (&wxPyStaticTextNameStr
)->Len());
6127 pyobj
= PyString_FromStringAndSize((&wxPyStaticTextNameStr
)->c_str(), (&wxPyStaticTextNameStr
)->Len());
6134 static PyObject
*_wrap_new_StaticBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6135 PyObject
*resultobj
= NULL
;
6136 wxWindow
*arg1
= (wxWindow
*) 0 ;
6137 int arg2
= (int) -1 ;
6138 wxString
const &arg3_defvalue
= wxPyEmptyString
;
6139 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
6140 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
6141 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
6142 wxSize
const &arg5_defvalue
= wxDefaultSize
;
6143 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
6144 long arg6
= (long) 0 ;
6145 wxString
const &arg7_defvalue
= wxPyStaticBoxNameStr
;
6146 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
6147 wxStaticBox
*result
;
6148 bool temp3
= false ;
6151 bool temp7
= false ;
6152 PyObject
* obj0
= 0 ;
6153 PyObject
* obj1
= 0 ;
6154 PyObject
* obj2
= 0 ;
6155 PyObject
* obj3
= 0 ;
6156 PyObject
* obj4
= 0 ;
6157 PyObject
* obj5
= 0 ;
6158 PyObject
* obj6
= 0 ;
6160 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6163 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_StaticBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
6164 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
6165 if (SWIG_arg_fail(1)) SWIG_fail
;
6168 arg2
= static_cast<int >(SWIG_As_int(obj1
));
6169 if (SWIG_arg_fail(2)) SWIG_fail
;
6174 arg3
= wxString_in_helper(obj2
);
6175 if (arg3
== NULL
) SWIG_fail
;
6182 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
6188 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
6193 arg6
= static_cast<long >(SWIG_As_long(obj5
));
6194 if (SWIG_arg_fail(6)) SWIG_fail
;
6199 arg7
= wxString_in_helper(obj6
);
6200 if (arg7
== NULL
) SWIG_fail
;
6205 if (!wxPyCheckForApp()) SWIG_fail
;
6206 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6207 result
= (wxStaticBox
*)new wxStaticBox(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
6209 wxPyEndAllowThreads(__tstate
);
6210 if (PyErr_Occurred()) SWIG_fail
;
6212 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticBox
, 1);
6235 static PyObject
*_wrap_new_PreStaticBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6236 PyObject
*resultobj
= NULL
;
6237 wxStaticBox
*result
;
6242 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreStaticBox",kwnames
)) goto fail
;
6244 if (!wxPyCheckForApp()) SWIG_fail
;
6245 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6246 result
= (wxStaticBox
*)new wxStaticBox();
6248 wxPyEndAllowThreads(__tstate
);
6249 if (PyErr_Occurred()) SWIG_fail
;
6251 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticBox
, 1);
6258 static PyObject
*_wrap_StaticBox_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6259 PyObject
*resultobj
= NULL
;
6260 wxStaticBox
*arg1
= (wxStaticBox
*) 0 ;
6261 wxWindow
*arg2
= (wxWindow
*) 0 ;
6262 int arg3
= (int) -1 ;
6263 wxString
const &arg4_defvalue
= wxPyEmptyString
;
6264 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
6265 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
6266 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
6267 wxSize
const &arg6_defvalue
= wxDefaultSize
;
6268 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
6269 long arg7
= (long) 0 ;
6270 wxString
const &arg8_defvalue
= wxPyStaticBoxNameStr
;
6271 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
6273 bool temp4
= false ;
6276 bool temp8
= false ;
6277 PyObject
* obj0
= 0 ;
6278 PyObject
* obj1
= 0 ;
6279 PyObject
* obj2
= 0 ;
6280 PyObject
* obj3
= 0 ;
6281 PyObject
* obj4
= 0 ;
6282 PyObject
* obj5
= 0 ;
6283 PyObject
* obj6
= 0 ;
6284 PyObject
* obj7
= 0 ;
6286 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6289 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:StaticBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
6290 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticBox
, SWIG_POINTER_EXCEPTION
| 0);
6291 if (SWIG_arg_fail(1)) SWIG_fail
;
6292 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
6293 if (SWIG_arg_fail(2)) SWIG_fail
;
6296 arg3
= static_cast<int >(SWIG_As_int(obj2
));
6297 if (SWIG_arg_fail(3)) SWIG_fail
;
6302 arg4
= wxString_in_helper(obj3
);
6303 if (arg4
== NULL
) SWIG_fail
;
6310 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
6316 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
6321 arg7
= static_cast<long >(SWIG_As_long(obj6
));
6322 if (SWIG_arg_fail(7)) SWIG_fail
;
6327 arg8
= wxString_in_helper(obj7
);
6328 if (arg8
== NULL
) SWIG_fail
;
6333 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6334 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
6336 wxPyEndAllowThreads(__tstate
);
6337 if (PyErr_Occurred()) SWIG_fail
;
6340 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6364 static PyObject
*_wrap_StaticBox_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6365 PyObject
*resultobj
= NULL
;
6366 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
6367 wxVisualAttributes result
;
6368 PyObject
* obj0
= 0 ;
6370 (char *) "variant", NULL
6373 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:StaticBox_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
6376 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
6377 if (SWIG_arg_fail(1)) SWIG_fail
;
6381 if (!wxPyCheckForApp()) SWIG_fail
;
6382 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6383 result
= wxStaticBox::GetClassDefaultAttributes(arg1
);
6385 wxPyEndAllowThreads(__tstate
);
6386 if (PyErr_Occurred()) SWIG_fail
;
6389 wxVisualAttributes
* resultptr
;
6390 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
6391 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
6399 static PyObject
* StaticBox_swigregister(PyObject
*, PyObject
*args
) {
6401 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6402 SWIG_TypeClientData(SWIGTYPE_p_wxStaticBox
, obj
);
6404 return Py_BuildValue((char *)"");
6406 static PyObject
*_wrap_new_StaticLine(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6407 PyObject
*resultobj
= NULL
;
6408 wxWindow
*arg1
= (wxWindow
*) 0 ;
6409 int arg2
= (int) -1 ;
6410 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
6411 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
6412 wxSize
const &arg4_defvalue
= wxDefaultSize
;
6413 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
6414 long arg5
= (long) wxLI_HORIZONTAL
;
6415 wxString
const &arg6_defvalue
= wxPyStaticTextNameStr
;
6416 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
6417 wxStaticLine
*result
;
6420 bool temp6
= false ;
6421 PyObject
* obj0
= 0 ;
6422 PyObject
* obj1
= 0 ;
6423 PyObject
* obj2
= 0 ;
6424 PyObject
* obj3
= 0 ;
6425 PyObject
* obj4
= 0 ;
6426 PyObject
* obj5
= 0 ;
6428 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6431 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_StaticLine",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
6432 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
6433 if (SWIG_arg_fail(1)) SWIG_fail
;
6436 arg2
= static_cast<int >(SWIG_As_int(obj1
));
6437 if (SWIG_arg_fail(2)) SWIG_fail
;
6443 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
6449 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
6454 arg5
= static_cast<long >(SWIG_As_long(obj4
));
6455 if (SWIG_arg_fail(5)) SWIG_fail
;
6460 arg6
= wxString_in_helper(obj5
);
6461 if (arg6
== NULL
) SWIG_fail
;
6466 if (!wxPyCheckForApp()) SWIG_fail
;
6467 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6468 result
= (wxStaticLine
*)new wxStaticLine(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
6470 wxPyEndAllowThreads(__tstate
);
6471 if (PyErr_Occurred()) SWIG_fail
;
6473 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticLine
, 1);
6488 static PyObject
*_wrap_new_PreStaticLine(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6489 PyObject
*resultobj
= NULL
;
6490 wxStaticLine
*result
;
6495 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreStaticLine",kwnames
)) goto fail
;
6497 if (!wxPyCheckForApp()) SWIG_fail
;
6498 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6499 result
= (wxStaticLine
*)new wxStaticLine();
6501 wxPyEndAllowThreads(__tstate
);
6502 if (PyErr_Occurred()) SWIG_fail
;
6504 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticLine
, 1);
6511 static PyObject
*_wrap_StaticLine_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6512 PyObject
*resultobj
= NULL
;
6513 wxStaticLine
*arg1
= (wxStaticLine
*) 0 ;
6514 wxWindow
*arg2
= (wxWindow
*) 0 ;
6515 int arg3
= (int) -1 ;
6516 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
6517 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
6518 wxSize
const &arg5_defvalue
= wxDefaultSize
;
6519 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
6520 long arg6
= (long) wxLI_HORIZONTAL
;
6521 wxString
const &arg7_defvalue
= wxPyStaticTextNameStr
;
6522 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
6526 bool temp7
= false ;
6527 PyObject
* obj0
= 0 ;
6528 PyObject
* obj1
= 0 ;
6529 PyObject
* obj2
= 0 ;
6530 PyObject
* obj3
= 0 ;
6531 PyObject
* obj4
= 0 ;
6532 PyObject
* obj5
= 0 ;
6533 PyObject
* obj6
= 0 ;
6535 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6538 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:StaticLine_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
6539 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticLine
, SWIG_POINTER_EXCEPTION
| 0);
6540 if (SWIG_arg_fail(1)) SWIG_fail
;
6541 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
6542 if (SWIG_arg_fail(2)) SWIG_fail
;
6545 arg3
= static_cast<int >(SWIG_As_int(obj2
));
6546 if (SWIG_arg_fail(3)) SWIG_fail
;
6552 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
6558 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
6563 arg6
= static_cast<long >(SWIG_As_long(obj5
));
6564 if (SWIG_arg_fail(6)) SWIG_fail
;
6569 arg7
= wxString_in_helper(obj6
);
6570 if (arg7
== NULL
) SWIG_fail
;
6575 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6576 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
6578 wxPyEndAllowThreads(__tstate
);
6579 if (PyErr_Occurred()) SWIG_fail
;
6582 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6598 static PyObject
*_wrap_StaticLine_IsVertical(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6599 PyObject
*resultobj
= NULL
;
6600 wxStaticLine
*arg1
= (wxStaticLine
*) 0 ;
6602 PyObject
* obj0
= 0 ;
6604 (char *) "self", NULL
6607 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:StaticLine_IsVertical",kwnames
,&obj0
)) goto fail
;
6608 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticLine
, SWIG_POINTER_EXCEPTION
| 0);
6609 if (SWIG_arg_fail(1)) SWIG_fail
;
6611 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6612 result
= (bool)((wxStaticLine
const *)arg1
)->IsVertical();
6614 wxPyEndAllowThreads(__tstate
);
6615 if (PyErr_Occurred()) SWIG_fail
;
6618 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6626 static PyObject
*_wrap_StaticLine_GetDefaultSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6627 PyObject
*resultobj
= NULL
;
6633 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":StaticLine_GetDefaultSize",kwnames
)) goto fail
;
6635 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6636 result
= (int)wxStaticLine::GetDefaultSize();
6638 wxPyEndAllowThreads(__tstate
);
6639 if (PyErr_Occurred()) SWIG_fail
;
6642 resultobj
= SWIG_From_int(static_cast<int >(result
));
6650 static PyObject
*_wrap_StaticLine_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6651 PyObject
*resultobj
= NULL
;
6652 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
6653 wxVisualAttributes result
;
6654 PyObject
* obj0
= 0 ;
6656 (char *) "variant", NULL
6659 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:StaticLine_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
6662 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
6663 if (SWIG_arg_fail(1)) SWIG_fail
;
6667 if (!wxPyCheckForApp()) SWIG_fail
;
6668 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6669 result
= wxStaticLine::GetClassDefaultAttributes(arg1
);
6671 wxPyEndAllowThreads(__tstate
);
6672 if (PyErr_Occurred()) SWIG_fail
;
6675 wxVisualAttributes
* resultptr
;
6676 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
6677 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
6685 static PyObject
* StaticLine_swigregister(PyObject
*, PyObject
*args
) {
6687 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6688 SWIG_TypeClientData(SWIGTYPE_p_wxStaticLine
, obj
);
6690 return Py_BuildValue((char *)"");
6692 static PyObject
*_wrap_new_StaticText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6693 PyObject
*resultobj
= NULL
;
6694 wxWindow
*arg1
= (wxWindow
*) 0 ;
6695 int arg2
= (int) -1 ;
6696 wxString
const &arg3_defvalue
= wxPyEmptyString
;
6697 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
6698 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
6699 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
6700 wxSize
const &arg5_defvalue
= wxDefaultSize
;
6701 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
6702 long arg6
= (long) 0 ;
6703 wxString
const &arg7_defvalue
= wxPyStaticTextNameStr
;
6704 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
6705 wxStaticText
*result
;
6706 bool temp3
= false ;
6709 bool temp7
= false ;
6710 PyObject
* obj0
= 0 ;
6711 PyObject
* obj1
= 0 ;
6712 PyObject
* obj2
= 0 ;
6713 PyObject
* obj3
= 0 ;
6714 PyObject
* obj4
= 0 ;
6715 PyObject
* obj5
= 0 ;
6716 PyObject
* obj6
= 0 ;
6718 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6721 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_StaticText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
6722 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
6723 if (SWIG_arg_fail(1)) SWIG_fail
;
6726 arg2
= static_cast<int >(SWIG_As_int(obj1
));
6727 if (SWIG_arg_fail(2)) SWIG_fail
;
6732 arg3
= wxString_in_helper(obj2
);
6733 if (arg3
== NULL
) SWIG_fail
;
6740 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
6746 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
6751 arg6
= static_cast<long >(SWIG_As_long(obj5
));
6752 if (SWIG_arg_fail(6)) SWIG_fail
;
6757 arg7
= wxString_in_helper(obj6
);
6758 if (arg7
== NULL
) SWIG_fail
;
6763 if (!wxPyCheckForApp()) SWIG_fail
;
6764 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6765 result
= (wxStaticText
*)new wxStaticText(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
6767 wxPyEndAllowThreads(__tstate
);
6768 if (PyErr_Occurred()) SWIG_fail
;
6770 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticText
, 1);
6793 static PyObject
*_wrap_new_PreStaticText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6794 PyObject
*resultobj
= NULL
;
6795 wxStaticText
*result
;
6800 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreStaticText",kwnames
)) goto fail
;
6802 if (!wxPyCheckForApp()) SWIG_fail
;
6803 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6804 result
= (wxStaticText
*)new wxStaticText();
6806 wxPyEndAllowThreads(__tstate
);
6807 if (PyErr_Occurred()) SWIG_fail
;
6809 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticText
, 1);
6816 static PyObject
*_wrap_StaticText_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6817 PyObject
*resultobj
= NULL
;
6818 wxStaticText
*arg1
= (wxStaticText
*) 0 ;
6819 wxWindow
*arg2
= (wxWindow
*) 0 ;
6820 int arg3
= (int) -1 ;
6821 wxString
const &arg4_defvalue
= wxPyEmptyString
;
6822 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
6823 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
6824 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
6825 wxSize
const &arg6_defvalue
= wxDefaultSize
;
6826 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
6827 long arg7
= (long) 0 ;
6828 wxString
const &arg8_defvalue
= wxPyStaticTextNameStr
;
6829 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
6831 bool temp4
= false ;
6834 bool temp8
= false ;
6835 PyObject
* obj0
= 0 ;
6836 PyObject
* obj1
= 0 ;
6837 PyObject
* obj2
= 0 ;
6838 PyObject
* obj3
= 0 ;
6839 PyObject
* obj4
= 0 ;
6840 PyObject
* obj5
= 0 ;
6841 PyObject
* obj6
= 0 ;
6842 PyObject
* obj7
= 0 ;
6844 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6847 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:StaticText_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
6848 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticText
, SWIG_POINTER_EXCEPTION
| 0);
6849 if (SWIG_arg_fail(1)) SWIG_fail
;
6850 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
6851 if (SWIG_arg_fail(2)) SWIG_fail
;
6854 arg3
= static_cast<int >(SWIG_As_int(obj2
));
6855 if (SWIG_arg_fail(3)) SWIG_fail
;
6860 arg4
= wxString_in_helper(obj3
);
6861 if (arg4
== NULL
) SWIG_fail
;
6868 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
6874 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
6879 arg7
= static_cast<long >(SWIG_As_long(obj6
));
6880 if (SWIG_arg_fail(7)) SWIG_fail
;
6885 arg8
= wxString_in_helper(obj7
);
6886 if (arg8
== NULL
) SWIG_fail
;
6891 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6892 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
6894 wxPyEndAllowThreads(__tstate
);
6895 if (PyErr_Occurred()) SWIG_fail
;
6898 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6922 static PyObject
*_wrap_StaticText_Wrap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6923 PyObject
*resultobj
= NULL
;
6924 wxStaticText
*arg1
= (wxStaticText
*) 0 ;
6926 PyObject
* obj0
= 0 ;
6927 PyObject
* obj1
= 0 ;
6929 (char *) "self",(char *) "width", NULL
6932 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StaticText_Wrap",kwnames
,&obj0
,&obj1
)) goto fail
;
6933 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticText
, SWIG_POINTER_EXCEPTION
| 0);
6934 if (SWIG_arg_fail(1)) SWIG_fail
;
6936 arg2
= static_cast<int >(SWIG_As_int(obj1
));
6937 if (SWIG_arg_fail(2)) SWIG_fail
;
6940 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6943 wxPyEndAllowThreads(__tstate
);
6944 if (PyErr_Occurred()) SWIG_fail
;
6946 Py_INCREF(Py_None
); resultobj
= Py_None
;
6953 static PyObject
*_wrap_StaticText_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6954 PyObject
*resultobj
= NULL
;
6955 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
6956 wxVisualAttributes result
;
6957 PyObject
* obj0
= 0 ;
6959 (char *) "variant", NULL
6962 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:StaticText_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
6965 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
6966 if (SWIG_arg_fail(1)) SWIG_fail
;
6970 if (!wxPyCheckForApp()) SWIG_fail
;
6971 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6972 result
= wxStaticText::GetClassDefaultAttributes(arg1
);
6974 wxPyEndAllowThreads(__tstate
);
6975 if (PyErr_Occurred()) SWIG_fail
;
6978 wxVisualAttributes
* resultptr
;
6979 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
6980 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
6988 static PyObject
* StaticText_swigregister(PyObject
*, PyObject
*args
) {
6990 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6991 SWIG_TypeClientData(SWIGTYPE_p_wxStaticText
, obj
);
6993 return Py_BuildValue((char *)"");
6995 static PyObject
*_wrap_new_StaticBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6996 PyObject
*resultobj
= NULL
;
6997 wxWindow
*arg1
= (wxWindow
*) 0 ;
6998 int arg2
= (int) -1 ;
6999 wxBitmap
const &arg3_defvalue
= wxNullBitmap
;
7000 wxBitmap
*arg3
= (wxBitmap
*) &arg3_defvalue
;
7001 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
7002 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
7003 wxSize
const &arg5_defvalue
= wxDefaultSize
;
7004 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
7005 long arg6
= (long) 0 ;
7006 wxString
const &arg7_defvalue
= wxPyStaticBitmapNameStr
;
7007 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
7008 wxStaticBitmap
*result
;
7011 bool temp7
= false ;
7012 PyObject
* obj0
= 0 ;
7013 PyObject
* obj1
= 0 ;
7014 PyObject
* obj2
= 0 ;
7015 PyObject
* obj3
= 0 ;
7016 PyObject
* obj4
= 0 ;
7017 PyObject
* obj5
= 0 ;
7018 PyObject
* obj6
= 0 ;
7020 (char *) "parent",(char *) "id",(char *) "bitmap",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
7023 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_StaticBitmap",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
7024 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
7025 if (SWIG_arg_fail(1)) SWIG_fail
;
7028 arg2
= static_cast<int >(SWIG_As_int(obj1
));
7029 if (SWIG_arg_fail(2)) SWIG_fail
;
7034 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
7035 if (SWIG_arg_fail(3)) SWIG_fail
;
7037 SWIG_null_ref("wxBitmap");
7039 if (SWIG_arg_fail(3)) SWIG_fail
;
7045 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7051 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
7056 arg6
= static_cast<long >(SWIG_As_long(obj5
));
7057 if (SWIG_arg_fail(6)) SWIG_fail
;
7062 arg7
= wxString_in_helper(obj6
);
7063 if (arg7
== NULL
) SWIG_fail
;
7068 if (!wxPyCheckForApp()) SWIG_fail
;
7069 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7070 result
= (wxStaticBitmap
*)new wxStaticBitmap(arg1
,arg2
,(wxBitmap
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
7072 wxPyEndAllowThreads(__tstate
);
7073 if (PyErr_Occurred()) SWIG_fail
;
7075 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticBitmap
, 1);
7090 static PyObject
*_wrap_new_PreStaticBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7091 PyObject
*resultobj
= NULL
;
7092 wxStaticBitmap
*result
;
7097 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreStaticBitmap",kwnames
)) goto fail
;
7099 if (!wxPyCheckForApp()) SWIG_fail
;
7100 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7101 result
= (wxStaticBitmap
*)new wxStaticBitmap();
7103 wxPyEndAllowThreads(__tstate
);
7104 if (PyErr_Occurred()) SWIG_fail
;
7106 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticBitmap
, 1);
7113 static PyObject
*_wrap_StaticBitmap_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7114 PyObject
*resultobj
= NULL
;
7115 wxStaticBitmap
*arg1
= (wxStaticBitmap
*) 0 ;
7116 wxWindow
*arg2
= (wxWindow
*) 0 ;
7117 int arg3
= (int) -1 ;
7118 wxBitmap
const &arg4_defvalue
= wxNullBitmap
;
7119 wxBitmap
*arg4
= (wxBitmap
*) &arg4_defvalue
;
7120 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
7121 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
7122 wxSize
const &arg6_defvalue
= wxDefaultSize
;
7123 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
7124 long arg7
= (long) 0 ;
7125 wxString
const &arg8_defvalue
= wxPyStaticBitmapNameStr
;
7126 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
7130 bool temp8
= false ;
7131 PyObject
* obj0
= 0 ;
7132 PyObject
* obj1
= 0 ;
7133 PyObject
* obj2
= 0 ;
7134 PyObject
* obj3
= 0 ;
7135 PyObject
* obj4
= 0 ;
7136 PyObject
* obj5
= 0 ;
7137 PyObject
* obj6
= 0 ;
7138 PyObject
* obj7
= 0 ;
7140 (char *) "self",(char *) "parent",(char *) "id",(char *) "bitmap",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
7143 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:StaticBitmap_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
7144 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticBitmap
, SWIG_POINTER_EXCEPTION
| 0);
7145 if (SWIG_arg_fail(1)) SWIG_fail
;
7146 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
7147 if (SWIG_arg_fail(2)) SWIG_fail
;
7150 arg3
= static_cast<int >(SWIG_As_int(obj2
));
7151 if (SWIG_arg_fail(3)) SWIG_fail
;
7156 SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
7157 if (SWIG_arg_fail(4)) SWIG_fail
;
7159 SWIG_null_ref("wxBitmap");
7161 if (SWIG_arg_fail(4)) SWIG_fail
;
7167 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
7173 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
7178 arg7
= static_cast<long >(SWIG_As_long(obj6
));
7179 if (SWIG_arg_fail(7)) SWIG_fail
;
7184 arg8
= wxString_in_helper(obj7
);
7185 if (arg8
== NULL
) SWIG_fail
;
7190 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7191 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxBitmap
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
7193 wxPyEndAllowThreads(__tstate
);
7194 if (PyErr_Occurred()) SWIG_fail
;
7197 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7213 static PyObject
*_wrap_StaticBitmap_GetBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7214 PyObject
*resultobj
= NULL
;
7215 wxStaticBitmap
*arg1
= (wxStaticBitmap
*) 0 ;
7217 PyObject
* obj0
= 0 ;
7219 (char *) "self", NULL
7222 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:StaticBitmap_GetBitmap",kwnames
,&obj0
)) goto fail
;
7223 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticBitmap
, SWIG_POINTER_EXCEPTION
| 0);
7224 if (SWIG_arg_fail(1)) SWIG_fail
;
7226 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7227 result
= (arg1
)->GetBitmap();
7229 wxPyEndAllowThreads(__tstate
);
7230 if (PyErr_Occurred()) SWIG_fail
;
7233 wxBitmap
* resultptr
;
7234 resultptr
= new wxBitmap(static_cast<wxBitmap
& >(result
));
7235 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
7243 static PyObject
*_wrap_StaticBitmap_SetBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7244 PyObject
*resultobj
= NULL
;
7245 wxStaticBitmap
*arg1
= (wxStaticBitmap
*) 0 ;
7246 wxBitmap
*arg2
= 0 ;
7247 PyObject
* obj0
= 0 ;
7248 PyObject
* obj1
= 0 ;
7250 (char *) "self",(char *) "bitmap", NULL
7253 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StaticBitmap_SetBitmap",kwnames
,&obj0
,&obj1
)) goto fail
;
7254 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticBitmap
, SWIG_POINTER_EXCEPTION
| 0);
7255 if (SWIG_arg_fail(1)) SWIG_fail
;
7257 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
7258 if (SWIG_arg_fail(2)) SWIG_fail
;
7260 SWIG_null_ref("wxBitmap");
7262 if (SWIG_arg_fail(2)) SWIG_fail
;
7265 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7266 (arg1
)->SetBitmap((wxBitmap
const &)*arg2
);
7268 wxPyEndAllowThreads(__tstate
);
7269 if (PyErr_Occurred()) SWIG_fail
;
7271 Py_INCREF(Py_None
); resultobj
= Py_None
;
7278 static PyObject
*_wrap_StaticBitmap_SetIcon(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7279 PyObject
*resultobj
= NULL
;
7280 wxStaticBitmap
*arg1
= (wxStaticBitmap
*) 0 ;
7282 PyObject
* obj0
= 0 ;
7283 PyObject
* obj1
= 0 ;
7285 (char *) "self",(char *) "icon", NULL
7288 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StaticBitmap_SetIcon",kwnames
,&obj0
,&obj1
)) goto fail
;
7289 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticBitmap
, SWIG_POINTER_EXCEPTION
| 0);
7290 if (SWIG_arg_fail(1)) SWIG_fail
;
7292 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxIcon
, SWIG_POINTER_EXCEPTION
| 0);
7293 if (SWIG_arg_fail(2)) SWIG_fail
;
7295 SWIG_null_ref("wxIcon");
7297 if (SWIG_arg_fail(2)) SWIG_fail
;
7300 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7301 (arg1
)->SetIcon((wxIcon
const &)*arg2
);
7303 wxPyEndAllowThreads(__tstate
);
7304 if (PyErr_Occurred()) SWIG_fail
;
7306 Py_INCREF(Py_None
); resultobj
= Py_None
;
7313 static PyObject
*_wrap_StaticBitmap_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7314 PyObject
*resultobj
= NULL
;
7315 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
7316 wxVisualAttributes result
;
7317 PyObject
* obj0
= 0 ;
7319 (char *) "variant", NULL
7322 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:StaticBitmap_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
7325 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
7326 if (SWIG_arg_fail(1)) SWIG_fail
;
7330 if (!wxPyCheckForApp()) SWIG_fail
;
7331 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7332 result
= wxStaticBitmap::GetClassDefaultAttributes(arg1
);
7334 wxPyEndAllowThreads(__tstate
);
7335 if (PyErr_Occurred()) SWIG_fail
;
7338 wxVisualAttributes
* resultptr
;
7339 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
7340 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
7348 static PyObject
* StaticBitmap_swigregister(PyObject
*, PyObject
*args
) {
7350 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
7351 SWIG_TypeClientData(SWIGTYPE_p_wxStaticBitmap
, obj
);
7353 return Py_BuildValue((char *)"");
7355 static int _wrap_ListBoxNameStr_set(PyObject
*) {
7356 PyErr_SetString(PyExc_TypeError
,"Variable ListBoxNameStr is read-only.");
7361 static PyObject
*_wrap_ListBoxNameStr_get(void) {
7362 PyObject
*pyobj
= NULL
;
7366 pyobj
= PyUnicode_FromWideChar((&wxPyListBoxNameStr
)->c_str(), (&wxPyListBoxNameStr
)->Len());
7368 pyobj
= PyString_FromStringAndSize((&wxPyListBoxNameStr
)->c_str(), (&wxPyListBoxNameStr
)->Len());
7375 static PyObject
*_wrap_new_ListBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7376 PyObject
*resultobj
= NULL
;
7377 wxWindow
*arg1
= (wxWindow
*) 0 ;
7378 int arg2
= (int) -1 ;
7379 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
7380 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
7381 wxSize
const &arg4_defvalue
= wxDefaultSize
;
7382 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
7383 wxArrayString
const &arg5_defvalue
= wxPyEmptyStringArray
;
7384 wxArrayString
*arg5
= (wxArrayString
*) &arg5_defvalue
;
7385 long arg6
= (long) 0 ;
7386 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
7387 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
7388 wxString
const &arg8_defvalue
= wxPyListBoxNameStr
;
7389 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
7393 bool temp5
= false ;
7394 bool temp8
= false ;
7395 PyObject
* obj0
= 0 ;
7396 PyObject
* obj1
= 0 ;
7397 PyObject
* obj2
= 0 ;
7398 PyObject
* obj3
= 0 ;
7399 PyObject
* obj4
= 0 ;
7400 PyObject
* obj5
= 0 ;
7401 PyObject
* obj6
= 0 ;
7402 PyObject
* obj7
= 0 ;
7404 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
7407 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_ListBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
7408 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
7409 if (SWIG_arg_fail(1)) SWIG_fail
;
7412 arg2
= static_cast<int >(SWIG_As_int(obj1
));
7413 if (SWIG_arg_fail(2)) SWIG_fail
;
7419 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
7425 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
7430 if (! PySequence_Check(obj4
)) {
7431 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
7434 arg5
= new wxArrayString
;
7436 int i
, len
=PySequence_Length(obj4
);
7437 for (i
=0; i
<len
; i
++) {
7438 PyObject
* item
= PySequence_GetItem(obj4
, i
);
7439 wxString
* s
= wxString_in_helper(item
);
7440 if (PyErr_Occurred()) SWIG_fail
;
7449 arg6
= static_cast<long >(SWIG_As_long(obj5
));
7450 if (SWIG_arg_fail(6)) SWIG_fail
;
7455 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
7456 if (SWIG_arg_fail(7)) SWIG_fail
;
7458 SWIG_null_ref("wxValidator");
7460 if (SWIG_arg_fail(7)) SWIG_fail
;
7465 arg8
= wxString_in_helper(obj7
);
7466 if (arg8
== NULL
) SWIG_fail
;
7471 if (!wxPyCheckForApp()) SWIG_fail
;
7472 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7473 result
= (wxListBox
*)new wxListBox(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,(wxArrayString
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
7475 wxPyEndAllowThreads(__tstate
);
7476 if (PyErr_Occurred()) SWIG_fail
;
7478 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListBox
, 1);
7480 if (temp5
) delete arg5
;
7489 if (temp5
) delete arg5
;
7499 static PyObject
*_wrap_new_PreListBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7500 PyObject
*resultobj
= NULL
;
7506 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreListBox",kwnames
)) goto fail
;
7508 if (!wxPyCheckForApp()) SWIG_fail
;
7509 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7510 result
= (wxListBox
*)new wxListBox();
7512 wxPyEndAllowThreads(__tstate
);
7513 if (PyErr_Occurred()) SWIG_fail
;
7515 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListBox
, 1);
7522 static PyObject
*_wrap_ListBox_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7523 PyObject
*resultobj
= NULL
;
7524 wxListBox
*arg1
= (wxListBox
*) 0 ;
7525 wxWindow
*arg2
= (wxWindow
*) 0 ;
7526 int arg3
= (int) -1 ;
7527 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
7528 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
7529 wxSize
const &arg5_defvalue
= wxDefaultSize
;
7530 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
7531 wxArrayString
const &arg6_defvalue
= wxPyEmptyStringArray
;
7532 wxArrayString
*arg6
= (wxArrayString
*) &arg6_defvalue
;
7533 long arg7
= (long) 0 ;
7534 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
7535 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
7536 wxString
const &arg9_defvalue
= wxPyListBoxNameStr
;
7537 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
7541 bool temp6
= false ;
7542 bool temp9
= false ;
7543 PyObject
* obj0
= 0 ;
7544 PyObject
* obj1
= 0 ;
7545 PyObject
* obj2
= 0 ;
7546 PyObject
* obj3
= 0 ;
7547 PyObject
* obj4
= 0 ;
7548 PyObject
* obj5
= 0 ;
7549 PyObject
* obj6
= 0 ;
7550 PyObject
* obj7
= 0 ;
7551 PyObject
* obj8
= 0 ;
7553 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
7556 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:ListBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
7557 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7558 if (SWIG_arg_fail(1)) SWIG_fail
;
7559 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
7560 if (SWIG_arg_fail(2)) SWIG_fail
;
7563 arg3
= static_cast<int >(SWIG_As_int(obj2
));
7564 if (SWIG_arg_fail(3)) SWIG_fail
;
7570 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7576 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
7581 if (! PySequence_Check(obj5
)) {
7582 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
7585 arg6
= new wxArrayString
;
7587 int i
, len
=PySequence_Length(obj5
);
7588 for (i
=0; i
<len
; i
++) {
7589 PyObject
* item
= PySequence_GetItem(obj5
, i
);
7590 wxString
* s
= wxString_in_helper(item
);
7591 if (PyErr_Occurred()) SWIG_fail
;
7600 arg7
= static_cast<long >(SWIG_As_long(obj6
));
7601 if (SWIG_arg_fail(7)) SWIG_fail
;
7606 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
7607 if (SWIG_arg_fail(8)) SWIG_fail
;
7609 SWIG_null_ref("wxValidator");
7611 if (SWIG_arg_fail(8)) SWIG_fail
;
7616 arg9
= wxString_in_helper(obj8
);
7617 if (arg9
== NULL
) SWIG_fail
;
7622 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7623 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,(wxArrayString
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
7625 wxPyEndAllowThreads(__tstate
);
7626 if (PyErr_Occurred()) SWIG_fail
;
7629 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7632 if (temp6
) delete arg6
;
7641 if (temp6
) delete arg6
;
7651 static PyObject
*_wrap_ListBox_Insert(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7652 PyObject
*resultobj
= NULL
;
7653 wxListBox
*arg1
= (wxListBox
*) 0 ;
7654 wxString
*arg2
= 0 ;
7656 PyObject
*arg4
= (PyObject
*) NULL
;
7657 bool temp2
= false ;
7658 PyObject
* obj0
= 0 ;
7659 PyObject
* obj1
= 0 ;
7660 PyObject
* obj2
= 0 ;
7661 PyObject
* obj3
= 0 ;
7663 (char *) "self",(char *) "item",(char *) "pos",(char *) "clientData", NULL
7666 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:ListBox_Insert",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
7667 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7668 if (SWIG_arg_fail(1)) SWIG_fail
;
7670 arg2
= wxString_in_helper(obj1
);
7671 if (arg2
== NULL
) SWIG_fail
;
7675 arg3
= static_cast<int >(SWIG_As_int(obj2
));
7676 if (SWIG_arg_fail(3)) SWIG_fail
;
7682 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7683 wxListBox_Insert(arg1
,(wxString
const &)*arg2
,arg3
,arg4
);
7685 wxPyEndAllowThreads(__tstate
);
7686 if (PyErr_Occurred()) SWIG_fail
;
7688 Py_INCREF(Py_None
); resultobj
= Py_None
;
7703 static PyObject
*_wrap_ListBox_InsertItems(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7704 PyObject
*resultobj
= NULL
;
7705 wxListBox
*arg1
= (wxListBox
*) 0 ;
7706 wxArrayString
*arg2
= 0 ;
7708 bool temp2
= false ;
7709 PyObject
* obj0
= 0 ;
7710 PyObject
* obj1
= 0 ;
7711 PyObject
* obj2
= 0 ;
7713 (char *) "self",(char *) "items",(char *) "pos", NULL
7716 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListBox_InsertItems",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
7717 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7718 if (SWIG_arg_fail(1)) SWIG_fail
;
7720 if (! PySequence_Check(obj1
)) {
7721 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
7724 arg2
= new wxArrayString
;
7726 int i
, len
=PySequence_Length(obj1
);
7727 for (i
=0; i
<len
; i
++) {
7728 PyObject
* item
= PySequence_GetItem(obj1
, i
);
7729 wxString
* s
= wxString_in_helper(item
);
7730 if (PyErr_Occurred()) SWIG_fail
;
7737 arg3
= static_cast<int >(SWIG_As_int(obj2
));
7738 if (SWIG_arg_fail(3)) SWIG_fail
;
7741 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7742 (arg1
)->InsertItems((wxArrayString
const &)*arg2
,arg3
);
7744 wxPyEndAllowThreads(__tstate
);
7745 if (PyErr_Occurred()) SWIG_fail
;
7747 Py_INCREF(Py_None
); resultobj
= Py_None
;
7749 if (temp2
) delete arg2
;
7754 if (temp2
) delete arg2
;
7760 static PyObject
*_wrap_ListBox_Set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7761 PyObject
*resultobj
= NULL
;
7762 wxListBox
*arg1
= (wxListBox
*) 0 ;
7763 wxArrayString
*arg2
= 0 ;
7764 bool temp2
= false ;
7765 PyObject
* obj0
= 0 ;
7766 PyObject
* obj1
= 0 ;
7768 (char *) "self",(char *) "items", NULL
7771 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_Set",kwnames
,&obj0
,&obj1
)) goto fail
;
7772 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7773 if (SWIG_arg_fail(1)) SWIG_fail
;
7775 if (! PySequence_Check(obj1
)) {
7776 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
7779 arg2
= new wxArrayString
;
7781 int i
, len
=PySequence_Length(obj1
);
7782 for (i
=0; i
<len
; i
++) {
7783 PyObject
* item
= PySequence_GetItem(obj1
, i
);
7784 wxString
* s
= wxString_in_helper(item
);
7785 if (PyErr_Occurred()) SWIG_fail
;
7792 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7793 (arg1
)->Set((wxArrayString
const &)*arg2
);
7795 wxPyEndAllowThreads(__tstate
);
7796 if (PyErr_Occurred()) SWIG_fail
;
7798 Py_INCREF(Py_None
); resultobj
= Py_None
;
7800 if (temp2
) delete arg2
;
7805 if (temp2
) delete arg2
;
7811 static PyObject
*_wrap_ListBox_IsSelected(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7812 PyObject
*resultobj
= NULL
;
7813 wxListBox
*arg1
= (wxListBox
*) 0 ;
7816 PyObject
* obj0
= 0 ;
7817 PyObject
* obj1
= 0 ;
7819 (char *) "self",(char *) "n", NULL
7822 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_IsSelected",kwnames
,&obj0
,&obj1
)) goto fail
;
7823 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7824 if (SWIG_arg_fail(1)) SWIG_fail
;
7826 arg2
= static_cast<int >(SWIG_As_int(obj1
));
7827 if (SWIG_arg_fail(2)) SWIG_fail
;
7830 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7831 result
= (bool)((wxListBox
const *)arg1
)->IsSelected(arg2
);
7833 wxPyEndAllowThreads(__tstate
);
7834 if (PyErr_Occurred()) SWIG_fail
;
7837 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7845 static PyObject
*_wrap_ListBox_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7846 PyObject
*resultobj
= NULL
;
7847 wxListBox
*arg1
= (wxListBox
*) 0 ;
7849 bool arg3
= (bool) true ;
7850 PyObject
* obj0
= 0 ;
7851 PyObject
* obj1
= 0 ;
7852 PyObject
* obj2
= 0 ;
7854 (char *) "self",(char *) "n",(char *) "select", NULL
7857 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ListBox_SetSelection",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
7858 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7859 if (SWIG_arg_fail(1)) SWIG_fail
;
7861 arg2
= static_cast<int >(SWIG_As_int(obj1
));
7862 if (SWIG_arg_fail(2)) SWIG_fail
;
7866 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
7867 if (SWIG_arg_fail(3)) SWIG_fail
;
7871 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7872 (arg1
)->SetSelection(arg2
,arg3
);
7874 wxPyEndAllowThreads(__tstate
);
7875 if (PyErr_Occurred()) SWIG_fail
;
7877 Py_INCREF(Py_None
); resultobj
= Py_None
;
7884 static PyObject
*_wrap_ListBox_Select(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7885 PyObject
*resultobj
= NULL
;
7886 wxListBox
*arg1
= (wxListBox
*) 0 ;
7888 PyObject
* obj0
= 0 ;
7889 PyObject
* obj1
= 0 ;
7891 (char *) "self",(char *) "n", NULL
7894 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_Select",kwnames
,&obj0
,&obj1
)) goto fail
;
7895 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7896 if (SWIG_arg_fail(1)) SWIG_fail
;
7898 arg2
= static_cast<int >(SWIG_As_int(obj1
));
7899 if (SWIG_arg_fail(2)) SWIG_fail
;
7902 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7903 (arg1
)->Select(arg2
);
7905 wxPyEndAllowThreads(__tstate
);
7906 if (PyErr_Occurred()) SWIG_fail
;
7908 Py_INCREF(Py_None
); resultobj
= Py_None
;
7915 static PyObject
*_wrap_ListBox_Deselect(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7916 PyObject
*resultobj
= NULL
;
7917 wxListBox
*arg1
= (wxListBox
*) 0 ;
7919 PyObject
* obj0
= 0 ;
7920 PyObject
* obj1
= 0 ;
7922 (char *) "self",(char *) "n", NULL
7925 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_Deselect",kwnames
,&obj0
,&obj1
)) goto fail
;
7926 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7927 if (SWIG_arg_fail(1)) SWIG_fail
;
7929 arg2
= static_cast<int >(SWIG_As_int(obj1
));
7930 if (SWIG_arg_fail(2)) SWIG_fail
;
7933 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7934 (arg1
)->Deselect(arg2
);
7936 wxPyEndAllowThreads(__tstate
);
7937 if (PyErr_Occurred()) SWIG_fail
;
7939 Py_INCREF(Py_None
); resultobj
= Py_None
;
7946 static PyObject
*_wrap_ListBox_DeselectAll(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7947 PyObject
*resultobj
= NULL
;
7948 wxListBox
*arg1
= (wxListBox
*) 0 ;
7949 int arg2
= (int) -1 ;
7950 PyObject
* obj0
= 0 ;
7951 PyObject
* obj1
= 0 ;
7953 (char *) "self",(char *) "itemToLeaveSelected", NULL
7956 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:ListBox_DeselectAll",kwnames
,&obj0
,&obj1
)) goto fail
;
7957 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7958 if (SWIG_arg_fail(1)) SWIG_fail
;
7961 arg2
= static_cast<int >(SWIG_As_int(obj1
));
7962 if (SWIG_arg_fail(2)) SWIG_fail
;
7966 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7967 (arg1
)->DeselectAll(arg2
);
7969 wxPyEndAllowThreads(__tstate
);
7970 if (PyErr_Occurred()) SWIG_fail
;
7972 Py_INCREF(Py_None
); resultobj
= Py_None
;
7979 static PyObject
*_wrap_ListBox_SetStringSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7980 PyObject
*resultobj
= NULL
;
7981 wxListBox
*arg1
= (wxListBox
*) 0 ;
7982 wxString
*arg2
= 0 ;
7983 bool arg3
= (bool) true ;
7985 bool temp2
= false ;
7986 PyObject
* obj0
= 0 ;
7987 PyObject
* obj1
= 0 ;
7988 PyObject
* obj2
= 0 ;
7990 (char *) "self",(char *) "s",(char *) "select", NULL
7993 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ListBox_SetStringSelection",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
7994 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7995 if (SWIG_arg_fail(1)) SWIG_fail
;
7997 arg2
= wxString_in_helper(obj1
);
7998 if (arg2
== NULL
) SWIG_fail
;
8003 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
8004 if (SWIG_arg_fail(3)) SWIG_fail
;
8008 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8009 result
= (bool)(arg1
)->SetStringSelection((wxString
const &)*arg2
,arg3
);
8011 wxPyEndAllowThreads(__tstate
);
8012 if (PyErr_Occurred()) SWIG_fail
;
8015 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8031 static PyObject
*_wrap_ListBox_GetSelections(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8032 PyObject
*resultobj
= NULL
;
8033 wxListBox
*arg1
= (wxListBox
*) 0 ;
8035 PyObject
* obj0
= 0 ;
8037 (char *) "self", NULL
8040 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListBox_GetSelections",kwnames
,&obj0
)) goto fail
;
8041 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8042 if (SWIG_arg_fail(1)) SWIG_fail
;
8044 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8045 result
= (PyObject
*)wxListBox_GetSelections(arg1
);
8047 wxPyEndAllowThreads(__tstate
);
8048 if (PyErr_Occurred()) SWIG_fail
;
8057 static PyObject
*_wrap_ListBox_SetFirstItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8058 PyObject
*resultobj
= NULL
;
8059 wxListBox
*arg1
= (wxListBox
*) 0 ;
8061 PyObject
* obj0
= 0 ;
8062 PyObject
* obj1
= 0 ;
8064 (char *) "self",(char *) "n", NULL
8067 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_SetFirstItem",kwnames
,&obj0
,&obj1
)) goto fail
;
8068 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8069 if (SWIG_arg_fail(1)) SWIG_fail
;
8071 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8072 if (SWIG_arg_fail(2)) SWIG_fail
;
8075 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8076 (arg1
)->SetFirstItem(arg2
);
8078 wxPyEndAllowThreads(__tstate
);
8079 if (PyErr_Occurred()) SWIG_fail
;
8081 Py_INCREF(Py_None
); resultobj
= Py_None
;
8088 static PyObject
*_wrap_ListBox_SetFirstItemStr(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8089 PyObject
*resultobj
= NULL
;
8090 wxListBox
*arg1
= (wxListBox
*) 0 ;
8091 wxString
*arg2
= 0 ;
8092 bool temp2
= false ;
8093 PyObject
* obj0
= 0 ;
8094 PyObject
* obj1
= 0 ;
8096 (char *) "self",(char *) "s", NULL
8099 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_SetFirstItemStr",kwnames
,&obj0
,&obj1
)) goto fail
;
8100 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8101 if (SWIG_arg_fail(1)) SWIG_fail
;
8103 arg2
= wxString_in_helper(obj1
);
8104 if (arg2
== NULL
) SWIG_fail
;
8108 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8109 (arg1
)->SetFirstItem((wxString
const &)*arg2
);
8111 wxPyEndAllowThreads(__tstate
);
8112 if (PyErr_Occurred()) SWIG_fail
;
8114 Py_INCREF(Py_None
); resultobj
= Py_None
;
8129 static PyObject
*_wrap_ListBox_EnsureVisible(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8130 PyObject
*resultobj
= NULL
;
8131 wxListBox
*arg1
= (wxListBox
*) 0 ;
8133 PyObject
* obj0
= 0 ;
8134 PyObject
* obj1
= 0 ;
8136 (char *) "self",(char *) "n", NULL
8139 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_EnsureVisible",kwnames
,&obj0
,&obj1
)) goto fail
;
8140 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8141 if (SWIG_arg_fail(1)) SWIG_fail
;
8143 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8144 if (SWIG_arg_fail(2)) SWIG_fail
;
8147 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8148 (arg1
)->EnsureVisible(arg2
);
8150 wxPyEndAllowThreads(__tstate
);
8151 if (PyErr_Occurred()) SWIG_fail
;
8153 Py_INCREF(Py_None
); resultobj
= Py_None
;
8160 static PyObject
*_wrap_ListBox_AppendAndEnsureVisible(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8161 PyObject
*resultobj
= NULL
;
8162 wxListBox
*arg1
= (wxListBox
*) 0 ;
8163 wxString
*arg2
= 0 ;
8164 bool temp2
= false ;
8165 PyObject
* obj0
= 0 ;
8166 PyObject
* obj1
= 0 ;
8168 (char *) "self",(char *) "s", NULL
8171 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_AppendAndEnsureVisible",kwnames
,&obj0
,&obj1
)) goto fail
;
8172 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8173 if (SWIG_arg_fail(1)) SWIG_fail
;
8175 arg2
= wxString_in_helper(obj1
);
8176 if (arg2
== NULL
) SWIG_fail
;
8180 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8181 (arg1
)->AppendAndEnsureVisible((wxString
const &)*arg2
);
8183 wxPyEndAllowThreads(__tstate
);
8184 if (PyErr_Occurred()) SWIG_fail
;
8186 Py_INCREF(Py_None
); resultobj
= Py_None
;
8201 static PyObject
*_wrap_ListBox_IsSorted(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8202 PyObject
*resultobj
= NULL
;
8203 wxListBox
*arg1
= (wxListBox
*) 0 ;
8205 PyObject
* obj0
= 0 ;
8207 (char *) "self", NULL
8210 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListBox_IsSorted",kwnames
,&obj0
)) goto fail
;
8211 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8212 if (SWIG_arg_fail(1)) SWIG_fail
;
8214 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8215 result
= (bool)((wxListBox
const *)arg1
)->IsSorted();
8217 wxPyEndAllowThreads(__tstate
);
8218 if (PyErr_Occurred()) SWIG_fail
;
8221 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8229 static PyObject
*_wrap_ListBox_SetItemForegroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8230 PyObject
*resultobj
= NULL
;
8231 wxListBox
*arg1
= (wxListBox
*) 0 ;
8233 wxColour
*arg3
= 0 ;
8235 PyObject
* obj0
= 0 ;
8236 PyObject
* obj1
= 0 ;
8237 PyObject
* obj2
= 0 ;
8239 (char *) "self",(char *) "item",(char *) "c", NULL
8242 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListBox_SetItemForegroundColour",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
8243 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8244 if (SWIG_arg_fail(1)) SWIG_fail
;
8246 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8247 if (SWIG_arg_fail(2)) SWIG_fail
;
8251 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
8254 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8255 wxListBox_SetItemForegroundColour(arg1
,arg2
,(wxColour
const &)*arg3
);
8257 wxPyEndAllowThreads(__tstate
);
8258 if (PyErr_Occurred()) SWIG_fail
;
8260 Py_INCREF(Py_None
); resultobj
= Py_None
;
8267 static PyObject
*_wrap_ListBox_SetItemBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8268 PyObject
*resultobj
= NULL
;
8269 wxListBox
*arg1
= (wxListBox
*) 0 ;
8271 wxColour
*arg3
= 0 ;
8273 PyObject
* obj0
= 0 ;
8274 PyObject
* obj1
= 0 ;
8275 PyObject
* obj2
= 0 ;
8277 (char *) "self",(char *) "item",(char *) "c", NULL
8280 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListBox_SetItemBackgroundColour",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
8281 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8282 if (SWIG_arg_fail(1)) SWIG_fail
;
8284 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8285 if (SWIG_arg_fail(2)) SWIG_fail
;
8289 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
8292 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8293 wxListBox_SetItemBackgroundColour(arg1
,arg2
,(wxColour
const &)*arg3
);
8295 wxPyEndAllowThreads(__tstate
);
8296 if (PyErr_Occurred()) SWIG_fail
;
8298 Py_INCREF(Py_None
); resultobj
= Py_None
;
8305 static PyObject
*_wrap_ListBox_SetItemFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8306 PyObject
*resultobj
= NULL
;
8307 wxListBox
*arg1
= (wxListBox
*) 0 ;
8310 PyObject
* obj0
= 0 ;
8311 PyObject
* obj1
= 0 ;
8312 PyObject
* obj2
= 0 ;
8314 (char *) "self",(char *) "item",(char *) "f", NULL
8317 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListBox_SetItemFont",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
8318 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8319 if (SWIG_arg_fail(1)) SWIG_fail
;
8321 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8322 if (SWIG_arg_fail(2)) SWIG_fail
;
8325 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
8326 if (SWIG_arg_fail(3)) SWIG_fail
;
8328 SWIG_null_ref("wxFont");
8330 if (SWIG_arg_fail(3)) SWIG_fail
;
8333 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8334 wxListBox_SetItemFont(arg1
,arg2
,(wxFont
const &)*arg3
);
8336 wxPyEndAllowThreads(__tstate
);
8337 if (PyErr_Occurred()) SWIG_fail
;
8339 Py_INCREF(Py_None
); resultobj
= Py_None
;
8346 static PyObject
*_wrap_ListBox_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8347 PyObject
*resultobj
= NULL
;
8348 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
8349 wxVisualAttributes result
;
8350 PyObject
* obj0
= 0 ;
8352 (char *) "variant", NULL
8355 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ListBox_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
8358 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
8359 if (SWIG_arg_fail(1)) SWIG_fail
;
8363 if (!wxPyCheckForApp()) SWIG_fail
;
8364 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8365 result
= wxListBox::GetClassDefaultAttributes(arg1
);
8367 wxPyEndAllowThreads(__tstate
);
8368 if (PyErr_Occurred()) SWIG_fail
;
8371 wxVisualAttributes
* resultptr
;
8372 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
8373 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
8381 static PyObject
* ListBox_swigregister(PyObject
*, PyObject
*args
) {
8383 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
8384 SWIG_TypeClientData(SWIGTYPE_p_wxListBox
, obj
);
8386 return Py_BuildValue((char *)"");
8388 static PyObject
*_wrap_new_CheckListBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8389 PyObject
*resultobj
= NULL
;
8390 wxWindow
*arg1
= (wxWindow
*) 0 ;
8391 int arg2
= (int) -1 ;
8392 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
8393 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
8394 wxSize
const &arg4_defvalue
= wxDefaultSize
;
8395 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
8396 wxArrayString
const &arg5_defvalue
= wxPyEmptyStringArray
;
8397 wxArrayString
*arg5
= (wxArrayString
*) &arg5_defvalue
;
8398 long arg6
= (long) 0 ;
8399 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
8400 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
8401 wxString
const &arg8_defvalue
= wxPyListBoxNameStr
;
8402 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
8403 wxCheckListBox
*result
;
8406 bool temp5
= false ;
8407 bool temp8
= false ;
8408 PyObject
* obj0
= 0 ;
8409 PyObject
* obj1
= 0 ;
8410 PyObject
* obj2
= 0 ;
8411 PyObject
* obj3
= 0 ;
8412 PyObject
* obj4
= 0 ;
8413 PyObject
* obj5
= 0 ;
8414 PyObject
* obj6
= 0 ;
8415 PyObject
* obj7
= 0 ;
8417 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
8420 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_CheckListBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
8421 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
8422 if (SWIG_arg_fail(1)) SWIG_fail
;
8425 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8426 if (SWIG_arg_fail(2)) SWIG_fail
;
8432 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
8438 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
8443 if (! PySequence_Check(obj4
)) {
8444 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
8447 arg5
= new wxArrayString
;
8449 int i
, len
=PySequence_Length(obj4
);
8450 for (i
=0; i
<len
; i
++) {
8451 PyObject
* item
= PySequence_GetItem(obj4
, i
);
8452 wxString
* s
= wxString_in_helper(item
);
8453 if (PyErr_Occurred()) SWIG_fail
;
8462 arg6
= static_cast<long >(SWIG_As_long(obj5
));
8463 if (SWIG_arg_fail(6)) SWIG_fail
;
8468 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
8469 if (SWIG_arg_fail(7)) SWIG_fail
;
8471 SWIG_null_ref("wxValidator");
8473 if (SWIG_arg_fail(7)) SWIG_fail
;
8478 arg8
= wxString_in_helper(obj7
);
8479 if (arg8
== NULL
) SWIG_fail
;
8484 if (!wxPyCheckForApp()) SWIG_fail
;
8485 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8486 result
= (wxCheckListBox
*)new wxCheckListBox(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,(wxArrayString
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
8488 wxPyEndAllowThreads(__tstate
);
8489 if (PyErr_Occurred()) SWIG_fail
;
8491 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxCheckListBox
, 1);
8493 if (temp5
) delete arg5
;
8502 if (temp5
) delete arg5
;
8512 static PyObject
*_wrap_new_PreCheckListBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8513 PyObject
*resultobj
= NULL
;
8514 wxCheckListBox
*result
;
8519 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreCheckListBox",kwnames
)) goto fail
;
8521 if (!wxPyCheckForApp()) SWIG_fail
;
8522 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8523 result
= (wxCheckListBox
*)new wxCheckListBox();
8525 wxPyEndAllowThreads(__tstate
);
8526 if (PyErr_Occurred()) SWIG_fail
;
8528 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxCheckListBox
, 1);
8535 static PyObject
*_wrap_CheckListBox_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8536 PyObject
*resultobj
= NULL
;
8537 wxCheckListBox
*arg1
= (wxCheckListBox
*) 0 ;
8538 wxWindow
*arg2
= (wxWindow
*) 0 ;
8539 int arg3
= (int) -1 ;
8540 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
8541 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
8542 wxSize
const &arg5_defvalue
= wxDefaultSize
;
8543 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
8544 wxArrayString
const &arg6_defvalue
= wxPyEmptyStringArray
;
8545 wxArrayString
*arg6
= (wxArrayString
*) &arg6_defvalue
;
8546 long arg7
= (long) 0 ;
8547 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
8548 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
8549 wxString
const &arg9_defvalue
= wxPyListBoxNameStr
;
8550 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
8554 bool temp6
= false ;
8555 bool temp9
= false ;
8556 PyObject
* obj0
= 0 ;
8557 PyObject
* obj1
= 0 ;
8558 PyObject
* obj2
= 0 ;
8559 PyObject
* obj3
= 0 ;
8560 PyObject
* obj4
= 0 ;
8561 PyObject
* obj5
= 0 ;
8562 PyObject
* obj6
= 0 ;
8563 PyObject
* obj7
= 0 ;
8564 PyObject
* obj8
= 0 ;
8566 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
8569 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:CheckListBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
8570 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckListBox
, SWIG_POINTER_EXCEPTION
| 0);
8571 if (SWIG_arg_fail(1)) SWIG_fail
;
8572 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
8573 if (SWIG_arg_fail(2)) SWIG_fail
;
8576 arg3
= static_cast<int >(SWIG_As_int(obj2
));
8577 if (SWIG_arg_fail(3)) SWIG_fail
;
8583 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
8589 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
8594 if (! PySequence_Check(obj5
)) {
8595 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
8598 arg6
= new wxArrayString
;
8600 int i
, len
=PySequence_Length(obj5
);
8601 for (i
=0; i
<len
; i
++) {
8602 PyObject
* item
= PySequence_GetItem(obj5
, i
);
8603 wxString
* s
= wxString_in_helper(item
);
8604 if (PyErr_Occurred()) SWIG_fail
;
8613 arg7
= static_cast<long >(SWIG_As_long(obj6
));
8614 if (SWIG_arg_fail(7)) SWIG_fail
;
8619 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
8620 if (SWIG_arg_fail(8)) SWIG_fail
;
8622 SWIG_null_ref("wxValidator");
8624 if (SWIG_arg_fail(8)) SWIG_fail
;
8629 arg9
= wxString_in_helper(obj8
);
8630 if (arg9
== NULL
) SWIG_fail
;
8635 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8636 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,(wxArrayString
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
8638 wxPyEndAllowThreads(__tstate
);
8639 if (PyErr_Occurred()) SWIG_fail
;
8642 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8645 if (temp6
) delete arg6
;
8654 if (temp6
) delete arg6
;
8664 static PyObject
*_wrap_CheckListBox_IsChecked(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8665 PyObject
*resultobj
= NULL
;
8666 wxCheckListBox
*arg1
= (wxCheckListBox
*) 0 ;
8669 PyObject
* obj0
= 0 ;
8670 PyObject
* obj1
= 0 ;
8672 (char *) "self",(char *) "index", NULL
8675 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CheckListBox_IsChecked",kwnames
,&obj0
,&obj1
)) goto fail
;
8676 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckListBox
, SWIG_POINTER_EXCEPTION
| 0);
8677 if (SWIG_arg_fail(1)) SWIG_fail
;
8679 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8680 if (SWIG_arg_fail(2)) SWIG_fail
;
8683 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8684 result
= (bool)(arg1
)->IsChecked(arg2
);
8686 wxPyEndAllowThreads(__tstate
);
8687 if (PyErr_Occurred()) SWIG_fail
;
8690 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8698 static PyObject
*_wrap_CheckListBox_Check(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8699 PyObject
*resultobj
= NULL
;
8700 wxCheckListBox
*arg1
= (wxCheckListBox
*) 0 ;
8702 int arg3
= (int) true ;
8703 PyObject
* obj0
= 0 ;
8704 PyObject
* obj1
= 0 ;
8705 PyObject
* obj2
= 0 ;
8707 (char *) "self",(char *) "index",(char *) "check", NULL
8710 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:CheckListBox_Check",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
8711 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckListBox
, SWIG_POINTER_EXCEPTION
| 0);
8712 if (SWIG_arg_fail(1)) SWIG_fail
;
8714 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8715 if (SWIG_arg_fail(2)) SWIG_fail
;
8719 arg3
= static_cast<int >(SWIG_As_int(obj2
));
8720 if (SWIG_arg_fail(3)) SWIG_fail
;
8724 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8725 (arg1
)->Check(arg2
,arg3
);
8727 wxPyEndAllowThreads(__tstate
);
8728 if (PyErr_Occurred()) SWIG_fail
;
8730 Py_INCREF(Py_None
); resultobj
= Py_None
;
8737 static PyObject
*_wrap_CheckListBox_GetItemHeight(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8738 PyObject
*resultobj
= NULL
;
8739 wxCheckListBox
*arg1
= (wxCheckListBox
*) 0 ;
8741 PyObject
* obj0
= 0 ;
8743 (char *) "self", NULL
8746 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CheckListBox_GetItemHeight",kwnames
,&obj0
)) goto fail
;
8747 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckListBox
, SWIG_POINTER_EXCEPTION
| 0);
8748 if (SWIG_arg_fail(1)) SWIG_fail
;
8750 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8751 result
= (int)(arg1
)->GetItemHeight();
8753 wxPyEndAllowThreads(__tstate
);
8754 if (PyErr_Occurred()) SWIG_fail
;
8757 resultobj
= SWIG_From_int(static_cast<int >(result
));
8765 static PyObject
*_wrap_CheckListBox_HitTest(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8766 PyObject
*resultobj
= NULL
;
8767 wxCheckListBox
*arg1
= (wxCheckListBox
*) 0 ;
8771 PyObject
* obj0
= 0 ;
8772 PyObject
* obj1
= 0 ;
8774 (char *) "self",(char *) "pt", NULL
8777 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CheckListBox_HitTest",kwnames
,&obj0
,&obj1
)) goto fail
;
8778 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckListBox
, SWIG_POINTER_EXCEPTION
| 0);
8779 if (SWIG_arg_fail(1)) SWIG_fail
;
8782 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
8785 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8786 result
= (int)((wxCheckListBox
const *)arg1
)->HitTest((wxPoint
const &)*arg2
);
8788 wxPyEndAllowThreads(__tstate
);
8789 if (PyErr_Occurred()) SWIG_fail
;
8792 resultobj
= SWIG_From_int(static_cast<int >(result
));
8800 static PyObject
*_wrap_CheckListBox_HitTestXY(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8801 PyObject
*resultobj
= NULL
;
8802 wxCheckListBox
*arg1
= (wxCheckListBox
*) 0 ;
8806 PyObject
* obj0
= 0 ;
8807 PyObject
* obj1
= 0 ;
8808 PyObject
* obj2
= 0 ;
8810 (char *) "self",(char *) "x",(char *) "y", NULL
8813 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:CheckListBox_HitTestXY",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
8814 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckListBox
, SWIG_POINTER_EXCEPTION
| 0);
8815 if (SWIG_arg_fail(1)) SWIG_fail
;
8817 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8818 if (SWIG_arg_fail(2)) SWIG_fail
;
8821 arg3
= static_cast<int >(SWIG_As_int(obj2
));
8822 if (SWIG_arg_fail(3)) SWIG_fail
;
8825 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8826 result
= (int)((wxCheckListBox
const *)arg1
)->HitTest(arg2
,arg3
);
8828 wxPyEndAllowThreads(__tstate
);
8829 if (PyErr_Occurred()) SWIG_fail
;
8832 resultobj
= SWIG_From_int(static_cast<int >(result
));
8840 static PyObject
* CheckListBox_swigregister(PyObject
*, PyObject
*args
) {
8842 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
8843 SWIG_TypeClientData(SWIGTYPE_p_wxCheckListBox
, obj
);
8845 return Py_BuildValue((char *)"");
8847 static int _wrap_TextCtrlNameStr_set(PyObject
*) {
8848 PyErr_SetString(PyExc_TypeError
,"Variable TextCtrlNameStr is read-only.");
8853 static PyObject
*_wrap_TextCtrlNameStr_get(void) {
8854 PyObject
*pyobj
= NULL
;
8858 pyobj
= PyUnicode_FromWideChar((&wxPyTextCtrlNameStr
)->c_str(), (&wxPyTextCtrlNameStr
)->Len());
8860 pyobj
= PyString_FromStringAndSize((&wxPyTextCtrlNameStr
)->c_str(), (&wxPyTextCtrlNameStr
)->Len());
8867 static PyObject
*_wrap_new_TextAttr(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8868 PyObject
*resultobj
= NULL
;
8869 wxColour
const &arg1_defvalue
= wxNullColour
;
8870 wxColour
*arg1
= (wxColour
*) &arg1_defvalue
;
8871 wxColour
const &arg2_defvalue
= wxNullColour
;
8872 wxColour
*arg2
= (wxColour
*) &arg2_defvalue
;
8873 wxFont
const &arg3_defvalue
= wxNullFont
;
8874 wxFont
*arg3
= (wxFont
*) &arg3_defvalue
;
8875 wxTextAttrAlignment arg4
= (wxTextAttrAlignment
) wxTEXT_ALIGNMENT_DEFAULT
;
8879 PyObject
* obj0
= 0 ;
8880 PyObject
* obj1
= 0 ;
8881 PyObject
* obj2
= 0 ;
8882 PyObject
* obj3
= 0 ;
8884 (char *) "colText",(char *) "colBack",(char *) "font",(char *) "alignment", NULL
8887 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_TextAttr",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
8891 if ( ! wxColour_helper(obj0
, &arg1
)) SWIG_fail
;
8897 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
8902 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
8903 if (SWIG_arg_fail(3)) SWIG_fail
;
8905 SWIG_null_ref("wxFont");
8907 if (SWIG_arg_fail(3)) SWIG_fail
;
8912 arg4
= static_cast<wxTextAttrAlignment
>(SWIG_As_int(obj3
));
8913 if (SWIG_arg_fail(4)) SWIG_fail
;
8917 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8918 result
= (wxTextAttr
*)new wxTextAttr((wxColour
const &)*arg1
,(wxColour
const &)*arg2
,(wxFont
const &)*arg3
,arg4
);
8920 wxPyEndAllowThreads(__tstate
);
8921 if (PyErr_Occurred()) SWIG_fail
;
8923 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTextAttr
, 1);
8930 static PyObject
*_wrap_delete_TextAttr(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8931 PyObject
*resultobj
= NULL
;
8932 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
8933 PyObject
* obj0
= 0 ;
8935 (char *) "self", NULL
8938 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_TextAttr",kwnames
,&obj0
)) goto fail
;
8939 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
8940 if (SWIG_arg_fail(1)) SWIG_fail
;
8942 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8945 wxPyEndAllowThreads(__tstate
);
8946 if (PyErr_Occurred()) SWIG_fail
;
8948 Py_INCREF(Py_None
); resultobj
= Py_None
;
8955 static PyObject
*_wrap_TextAttr_Init(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8956 PyObject
*resultobj
= NULL
;
8957 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
8958 PyObject
* obj0
= 0 ;
8960 (char *) "self", NULL
8963 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_Init",kwnames
,&obj0
)) goto fail
;
8964 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
8965 if (SWIG_arg_fail(1)) SWIG_fail
;
8967 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8970 wxPyEndAllowThreads(__tstate
);
8971 if (PyErr_Occurred()) SWIG_fail
;
8973 Py_INCREF(Py_None
); resultobj
= Py_None
;
8980 static PyObject
*_wrap_TextAttr_SetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8981 PyObject
*resultobj
= NULL
;
8982 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
8983 wxColour
*arg2
= 0 ;
8985 PyObject
* obj0
= 0 ;
8986 PyObject
* obj1
= 0 ;
8988 (char *) "self",(char *) "colText", NULL
8991 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextAttr_SetTextColour",kwnames
,&obj0
,&obj1
)) goto fail
;
8992 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
8993 if (SWIG_arg_fail(1)) SWIG_fail
;
8996 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
8999 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9000 (arg1
)->SetTextColour((wxColour
const &)*arg2
);
9002 wxPyEndAllowThreads(__tstate
);
9003 if (PyErr_Occurred()) SWIG_fail
;
9005 Py_INCREF(Py_None
); resultobj
= Py_None
;
9012 static PyObject
*_wrap_TextAttr_SetBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9013 PyObject
*resultobj
= NULL
;
9014 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9015 wxColour
*arg2
= 0 ;
9017 PyObject
* obj0
= 0 ;
9018 PyObject
* obj1
= 0 ;
9020 (char *) "self",(char *) "colBack", NULL
9023 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextAttr_SetBackgroundColour",kwnames
,&obj0
,&obj1
)) goto fail
;
9024 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9025 if (SWIG_arg_fail(1)) SWIG_fail
;
9028 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
9031 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9032 (arg1
)->SetBackgroundColour((wxColour
const &)*arg2
);
9034 wxPyEndAllowThreads(__tstate
);
9035 if (PyErr_Occurred()) SWIG_fail
;
9037 Py_INCREF(Py_None
); resultobj
= Py_None
;
9044 static PyObject
*_wrap_TextAttr_SetFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9045 PyObject
*resultobj
= NULL
;
9046 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9048 long arg3
= (long) wxTEXT_ATTR_FONT
;
9049 PyObject
* obj0
= 0 ;
9050 PyObject
* obj1
= 0 ;
9051 PyObject
* obj2
= 0 ;
9053 (char *) "self",(char *) "font",(char *) "flags", NULL
9056 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TextAttr_SetFont",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
9057 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9058 if (SWIG_arg_fail(1)) SWIG_fail
;
9060 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
9061 if (SWIG_arg_fail(2)) SWIG_fail
;
9063 SWIG_null_ref("wxFont");
9065 if (SWIG_arg_fail(2)) SWIG_fail
;
9069 arg3
= static_cast<long >(SWIG_As_long(obj2
));
9070 if (SWIG_arg_fail(3)) SWIG_fail
;
9074 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9075 (arg1
)->SetFont((wxFont
const &)*arg2
,arg3
);
9077 wxPyEndAllowThreads(__tstate
);
9078 if (PyErr_Occurred()) SWIG_fail
;
9080 Py_INCREF(Py_None
); resultobj
= Py_None
;
9087 static PyObject
*_wrap_TextAttr_SetAlignment(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9088 PyObject
*resultobj
= NULL
;
9089 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9090 wxTextAttrAlignment arg2
;
9091 PyObject
* obj0
= 0 ;
9092 PyObject
* obj1
= 0 ;
9094 (char *) "self",(char *) "alignment", NULL
9097 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextAttr_SetAlignment",kwnames
,&obj0
,&obj1
)) goto fail
;
9098 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9099 if (SWIG_arg_fail(1)) SWIG_fail
;
9101 arg2
= static_cast<wxTextAttrAlignment
>(SWIG_As_int(obj1
));
9102 if (SWIG_arg_fail(2)) SWIG_fail
;
9105 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9106 (arg1
)->SetAlignment(arg2
);
9108 wxPyEndAllowThreads(__tstate
);
9109 if (PyErr_Occurred()) SWIG_fail
;
9111 Py_INCREF(Py_None
); resultobj
= Py_None
;
9118 static PyObject
*_wrap_TextAttr_SetTabs(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9119 PyObject
*resultobj
= NULL
;
9120 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9121 wxArrayInt
*arg2
= 0 ;
9122 bool temp2
= false ;
9123 PyObject
* obj0
= 0 ;
9124 PyObject
* obj1
= 0 ;
9126 (char *) "self",(char *) "tabs", NULL
9129 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextAttr_SetTabs",kwnames
,&obj0
,&obj1
)) goto fail
;
9130 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9131 if (SWIG_arg_fail(1)) SWIG_fail
;
9133 if (! PySequence_Check(obj1
)) {
9134 PyErr_SetString(PyExc_TypeError
, "Sequence of integers expected.");
9137 arg2
= new wxArrayInt
;
9139 int i
, len
=PySequence_Length(obj1
);
9140 for (i
=0; i
<len
; i
++) {
9141 PyObject
* item
= PySequence_GetItem(obj1
, i
);
9142 PyObject
* number
= PyNumber_Int(item
);
9143 arg2
->Add(PyInt_AS_LONG(number
));
9149 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9150 (arg1
)->SetTabs((wxArrayInt
const &)*arg2
);
9152 wxPyEndAllowThreads(__tstate
);
9153 if (PyErr_Occurred()) SWIG_fail
;
9155 Py_INCREF(Py_None
); resultobj
= Py_None
;
9157 if (temp2
) delete arg2
;
9162 if (temp2
) delete arg2
;
9168 static PyObject
*_wrap_TextAttr_SetLeftIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9169 PyObject
*resultobj
= NULL
;
9170 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9172 int arg3
= (int) 0 ;
9173 PyObject
* obj0
= 0 ;
9174 PyObject
* obj1
= 0 ;
9175 PyObject
* obj2
= 0 ;
9177 (char *) "self",(char *) "indent",(char *) "subIndent", NULL
9180 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TextAttr_SetLeftIndent",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
9181 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9182 if (SWIG_arg_fail(1)) SWIG_fail
;
9184 arg2
= static_cast<int >(SWIG_As_int(obj1
));
9185 if (SWIG_arg_fail(2)) SWIG_fail
;
9189 arg3
= static_cast<int >(SWIG_As_int(obj2
));
9190 if (SWIG_arg_fail(3)) SWIG_fail
;
9194 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9195 (arg1
)->SetLeftIndent(arg2
,arg3
);
9197 wxPyEndAllowThreads(__tstate
);
9198 if (PyErr_Occurred()) SWIG_fail
;
9200 Py_INCREF(Py_None
); resultobj
= Py_None
;
9207 static PyObject
*_wrap_TextAttr_SetRightIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9208 PyObject
*resultobj
= NULL
;
9209 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9211 PyObject
* obj0
= 0 ;
9212 PyObject
* obj1
= 0 ;
9214 (char *) "self",(char *) "indent", NULL
9217 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextAttr_SetRightIndent",kwnames
,&obj0
,&obj1
)) goto fail
;
9218 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9219 if (SWIG_arg_fail(1)) SWIG_fail
;
9221 arg2
= static_cast<int >(SWIG_As_int(obj1
));
9222 if (SWIG_arg_fail(2)) SWIG_fail
;
9225 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9226 (arg1
)->SetRightIndent(arg2
);
9228 wxPyEndAllowThreads(__tstate
);
9229 if (PyErr_Occurred()) SWIG_fail
;
9231 Py_INCREF(Py_None
); resultobj
= Py_None
;
9238 static PyObject
*_wrap_TextAttr_SetFlags(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9239 PyObject
*resultobj
= NULL
;
9240 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9242 PyObject
* obj0
= 0 ;
9243 PyObject
* obj1
= 0 ;
9245 (char *) "self",(char *) "flags", NULL
9248 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextAttr_SetFlags",kwnames
,&obj0
,&obj1
)) goto fail
;
9249 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9250 if (SWIG_arg_fail(1)) SWIG_fail
;
9252 arg2
= static_cast<long >(SWIG_As_long(obj1
));
9253 if (SWIG_arg_fail(2)) SWIG_fail
;
9256 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9257 (arg1
)->SetFlags(arg2
);
9259 wxPyEndAllowThreads(__tstate
);
9260 if (PyErr_Occurred()) SWIG_fail
;
9262 Py_INCREF(Py_None
); resultobj
= Py_None
;
9269 static PyObject
*_wrap_TextAttr_HasTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9270 PyObject
*resultobj
= NULL
;
9271 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9273 PyObject
* obj0
= 0 ;
9275 (char *) "self", NULL
9278 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_HasTextColour",kwnames
,&obj0
)) goto fail
;
9279 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9280 if (SWIG_arg_fail(1)) SWIG_fail
;
9282 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9283 result
= (bool)((wxTextAttr
const *)arg1
)->HasTextColour();
9285 wxPyEndAllowThreads(__tstate
);
9286 if (PyErr_Occurred()) SWIG_fail
;
9289 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9297 static PyObject
*_wrap_TextAttr_HasBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9298 PyObject
*resultobj
= NULL
;
9299 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9301 PyObject
* obj0
= 0 ;
9303 (char *) "self", NULL
9306 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_HasBackgroundColour",kwnames
,&obj0
)) goto fail
;
9307 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9308 if (SWIG_arg_fail(1)) SWIG_fail
;
9310 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9311 result
= (bool)((wxTextAttr
const *)arg1
)->HasBackgroundColour();
9313 wxPyEndAllowThreads(__tstate
);
9314 if (PyErr_Occurred()) SWIG_fail
;
9317 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9325 static PyObject
*_wrap_TextAttr_HasFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9326 PyObject
*resultobj
= NULL
;
9327 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9329 PyObject
* obj0
= 0 ;
9331 (char *) "self", NULL
9334 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_HasFont",kwnames
,&obj0
)) goto fail
;
9335 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9336 if (SWIG_arg_fail(1)) SWIG_fail
;
9338 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9339 result
= (bool)((wxTextAttr
const *)arg1
)->HasFont();
9341 wxPyEndAllowThreads(__tstate
);
9342 if (PyErr_Occurred()) SWIG_fail
;
9345 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9353 static PyObject
*_wrap_TextAttr_HasAlignment(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9354 PyObject
*resultobj
= NULL
;
9355 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9357 PyObject
* obj0
= 0 ;
9359 (char *) "self", NULL
9362 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_HasAlignment",kwnames
,&obj0
)) goto fail
;
9363 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9364 if (SWIG_arg_fail(1)) SWIG_fail
;
9366 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9367 result
= (bool)((wxTextAttr
const *)arg1
)->HasAlignment();
9369 wxPyEndAllowThreads(__tstate
);
9370 if (PyErr_Occurred()) SWIG_fail
;
9373 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9381 static PyObject
*_wrap_TextAttr_HasTabs(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9382 PyObject
*resultobj
= NULL
;
9383 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9385 PyObject
* obj0
= 0 ;
9387 (char *) "self", NULL
9390 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_HasTabs",kwnames
,&obj0
)) goto fail
;
9391 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9392 if (SWIG_arg_fail(1)) SWIG_fail
;
9394 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9395 result
= (bool)((wxTextAttr
const *)arg1
)->HasTabs();
9397 wxPyEndAllowThreads(__tstate
);
9398 if (PyErr_Occurred()) SWIG_fail
;
9401 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9409 static PyObject
*_wrap_TextAttr_HasLeftIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9410 PyObject
*resultobj
= NULL
;
9411 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9413 PyObject
* obj0
= 0 ;
9415 (char *) "self", NULL
9418 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_HasLeftIndent",kwnames
,&obj0
)) goto fail
;
9419 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9420 if (SWIG_arg_fail(1)) SWIG_fail
;
9422 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9423 result
= (bool)((wxTextAttr
const *)arg1
)->HasLeftIndent();
9425 wxPyEndAllowThreads(__tstate
);
9426 if (PyErr_Occurred()) SWIG_fail
;
9429 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9437 static PyObject
*_wrap_TextAttr_HasRightIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9438 PyObject
*resultobj
= NULL
;
9439 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9441 PyObject
* obj0
= 0 ;
9443 (char *) "self", NULL
9446 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_HasRightIndent",kwnames
,&obj0
)) goto fail
;
9447 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9448 if (SWIG_arg_fail(1)) SWIG_fail
;
9450 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9451 result
= (bool)((wxTextAttr
const *)arg1
)->HasRightIndent();
9453 wxPyEndAllowThreads(__tstate
);
9454 if (PyErr_Occurred()) SWIG_fail
;
9457 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9465 static PyObject
*_wrap_TextAttr_HasFlag(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9466 PyObject
*resultobj
= NULL
;
9467 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9470 PyObject
* obj0
= 0 ;
9471 PyObject
* obj1
= 0 ;
9473 (char *) "self",(char *) "flag", NULL
9476 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextAttr_HasFlag",kwnames
,&obj0
,&obj1
)) goto fail
;
9477 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9478 if (SWIG_arg_fail(1)) SWIG_fail
;
9480 arg2
= static_cast<long >(SWIG_As_long(obj1
));
9481 if (SWIG_arg_fail(2)) SWIG_fail
;
9484 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9485 result
= (bool)((wxTextAttr
const *)arg1
)->HasFlag(arg2
);
9487 wxPyEndAllowThreads(__tstate
);
9488 if (PyErr_Occurred()) SWIG_fail
;
9491 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9499 static PyObject
*_wrap_TextAttr_GetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9500 PyObject
*resultobj
= NULL
;
9501 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9503 PyObject
* obj0
= 0 ;
9505 (char *) "self", NULL
9508 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetTextColour",kwnames
,&obj0
)) goto fail
;
9509 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9510 if (SWIG_arg_fail(1)) SWIG_fail
;
9512 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9514 wxColour
const &_result_ref
= ((wxTextAttr
const *)arg1
)->GetTextColour();
9515 result
= (wxColour
*) &_result_ref
;
9518 wxPyEndAllowThreads(__tstate
);
9519 if (PyErr_Occurred()) SWIG_fail
;
9521 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxColour
, 0);
9528 static PyObject
*_wrap_TextAttr_GetBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9529 PyObject
*resultobj
= NULL
;
9530 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9532 PyObject
* obj0
= 0 ;
9534 (char *) "self", NULL
9537 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetBackgroundColour",kwnames
,&obj0
)) goto fail
;
9538 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9539 if (SWIG_arg_fail(1)) SWIG_fail
;
9541 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9543 wxColour
const &_result_ref
= ((wxTextAttr
const *)arg1
)->GetBackgroundColour();
9544 result
= (wxColour
*) &_result_ref
;
9547 wxPyEndAllowThreads(__tstate
);
9548 if (PyErr_Occurred()) SWIG_fail
;
9550 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxColour
, 0);
9557 static PyObject
*_wrap_TextAttr_GetFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9558 PyObject
*resultobj
= NULL
;
9559 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9561 PyObject
* obj0
= 0 ;
9563 (char *) "self", NULL
9566 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetFont",kwnames
,&obj0
)) goto fail
;
9567 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9568 if (SWIG_arg_fail(1)) SWIG_fail
;
9570 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9572 wxFont
const &_result_ref
= ((wxTextAttr
const *)arg1
)->GetFont();
9573 result
= (wxFont
*) &_result_ref
;
9576 wxPyEndAllowThreads(__tstate
);
9577 if (PyErr_Occurred()) SWIG_fail
;
9580 wxFont
* resultptr
= new wxFont(*result
);
9581 resultobj
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxFont
, 1);
9589 static PyObject
*_wrap_TextAttr_GetAlignment(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9590 PyObject
*resultobj
= NULL
;
9591 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9592 wxTextAttrAlignment result
;
9593 PyObject
* obj0
= 0 ;
9595 (char *) "self", NULL
9598 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetAlignment",kwnames
,&obj0
)) goto fail
;
9599 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9600 if (SWIG_arg_fail(1)) SWIG_fail
;
9602 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9603 result
= (wxTextAttrAlignment
)((wxTextAttr
const *)arg1
)->GetAlignment();
9605 wxPyEndAllowThreads(__tstate
);
9606 if (PyErr_Occurred()) SWIG_fail
;
9608 resultobj
= SWIG_From_int((result
));
9615 static PyObject
*_wrap_TextAttr_GetTabs(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9616 PyObject
*resultobj
= NULL
;
9617 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9619 PyObject
* obj0
= 0 ;
9621 (char *) "self", NULL
9624 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetTabs",kwnames
,&obj0
)) goto fail
;
9625 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9626 if (SWIG_arg_fail(1)) SWIG_fail
;
9628 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9630 wxArrayInt
const &_result_ref
= ((wxTextAttr
const *)arg1
)->GetTabs();
9631 result
= (wxArrayInt
*) &_result_ref
;
9634 wxPyEndAllowThreads(__tstate
);
9635 if (PyErr_Occurred()) SWIG_fail
;
9638 resultobj
= PyList_New(0);
9640 for (idx
= 0; idx
< result
->GetCount(); idx
+= 1) {
9641 PyObject
* val
= PyInt_FromLong( result
->Item(idx
) );
9642 PyList_Append(resultobj
, val
);
9652 static PyObject
*_wrap_TextAttr_GetLeftIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9653 PyObject
*resultobj
= NULL
;
9654 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9656 PyObject
* obj0
= 0 ;
9658 (char *) "self", NULL
9661 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetLeftIndent",kwnames
,&obj0
)) goto fail
;
9662 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9663 if (SWIG_arg_fail(1)) SWIG_fail
;
9665 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9666 result
= (long)((wxTextAttr
const *)arg1
)->GetLeftIndent();
9668 wxPyEndAllowThreads(__tstate
);
9669 if (PyErr_Occurred()) SWIG_fail
;
9672 resultobj
= SWIG_From_long(static_cast<long >(result
));
9680 static PyObject
*_wrap_TextAttr_GetLeftSubIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9681 PyObject
*resultobj
= NULL
;
9682 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9684 PyObject
* obj0
= 0 ;
9686 (char *) "self", NULL
9689 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetLeftSubIndent",kwnames
,&obj0
)) goto fail
;
9690 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9691 if (SWIG_arg_fail(1)) SWIG_fail
;
9693 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9694 result
= (long)((wxTextAttr
const *)arg1
)->GetLeftSubIndent();
9696 wxPyEndAllowThreads(__tstate
);
9697 if (PyErr_Occurred()) SWIG_fail
;
9700 resultobj
= SWIG_From_long(static_cast<long >(result
));
9708 static PyObject
*_wrap_TextAttr_GetRightIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9709 PyObject
*resultobj
= NULL
;
9710 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9712 PyObject
* obj0
= 0 ;
9714 (char *) "self", NULL
9717 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetRightIndent",kwnames
,&obj0
)) goto fail
;
9718 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9719 if (SWIG_arg_fail(1)) SWIG_fail
;
9721 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9722 result
= (long)((wxTextAttr
const *)arg1
)->GetRightIndent();
9724 wxPyEndAllowThreads(__tstate
);
9725 if (PyErr_Occurred()) SWIG_fail
;
9728 resultobj
= SWIG_From_long(static_cast<long >(result
));
9736 static PyObject
*_wrap_TextAttr_GetFlags(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9737 PyObject
*resultobj
= NULL
;
9738 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9740 PyObject
* obj0
= 0 ;
9742 (char *) "self", NULL
9745 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetFlags",kwnames
,&obj0
)) goto fail
;
9746 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9747 if (SWIG_arg_fail(1)) SWIG_fail
;
9749 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9750 result
= (long)((wxTextAttr
const *)arg1
)->GetFlags();
9752 wxPyEndAllowThreads(__tstate
);
9753 if (PyErr_Occurred()) SWIG_fail
;
9756 resultobj
= SWIG_From_long(static_cast<long >(result
));
9764 static PyObject
*_wrap_TextAttr_IsDefault(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9765 PyObject
*resultobj
= NULL
;
9766 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9768 PyObject
* obj0
= 0 ;
9770 (char *) "self", NULL
9773 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_IsDefault",kwnames
,&obj0
)) goto fail
;
9774 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9775 if (SWIG_arg_fail(1)) SWIG_fail
;
9777 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9778 result
= (bool)((wxTextAttr
const *)arg1
)->IsDefault();
9780 wxPyEndAllowThreads(__tstate
);
9781 if (PyErr_Occurred()) SWIG_fail
;
9784 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9792 static PyObject
*_wrap_TextAttr_Combine(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9793 PyObject
*resultobj
= NULL
;
9794 wxTextAttr
*arg1
= 0 ;
9795 wxTextAttr
*arg2
= 0 ;
9796 wxTextCtrl
*arg3
= (wxTextCtrl
*) 0 ;
9798 PyObject
* obj0
= 0 ;
9799 PyObject
* obj1
= 0 ;
9800 PyObject
* obj2
= 0 ;
9802 (char *) "attr",(char *) "attrDef",(char *) "text", NULL
9805 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextAttr_Combine",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
9807 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9808 if (SWIG_arg_fail(1)) SWIG_fail
;
9810 SWIG_null_ref("wxTextAttr");
9812 if (SWIG_arg_fail(1)) SWIG_fail
;
9815 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9816 if (SWIG_arg_fail(2)) SWIG_fail
;
9818 SWIG_null_ref("wxTextAttr");
9820 if (SWIG_arg_fail(2)) SWIG_fail
;
9822 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
9823 if (SWIG_arg_fail(3)) SWIG_fail
;
9825 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9826 result
= wxTextAttr::Combine((wxTextAttr
const &)*arg1
,(wxTextAttr
const &)*arg2
,(wxTextCtrl
const *)arg3
);
9828 wxPyEndAllowThreads(__tstate
);
9829 if (PyErr_Occurred()) SWIG_fail
;
9832 wxTextAttr
* resultptr
;
9833 resultptr
= new wxTextAttr(static_cast<wxTextAttr
& >(result
));
9834 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTextAttr
, 1);
9842 static PyObject
* TextAttr_swigregister(PyObject
*, PyObject
*args
) {
9844 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
9845 SWIG_TypeClientData(SWIGTYPE_p_wxTextAttr
, obj
);
9847 return Py_BuildValue((char *)"");
9849 static PyObject
*_wrap_new_TextCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9850 PyObject
*resultobj
= NULL
;
9851 wxWindow
*arg1
= (wxWindow
*) 0 ;
9852 int arg2
= (int) -1 ;
9853 wxString
const &arg3_defvalue
= wxPyEmptyString
;
9854 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
9855 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
9856 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
9857 wxSize
const &arg5_defvalue
= wxDefaultSize
;
9858 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
9859 long arg6
= (long) 0 ;
9860 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
9861 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
9862 wxString
const &arg8_defvalue
= wxPyTextCtrlNameStr
;
9863 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
9865 bool temp3
= false ;
9868 bool temp8
= false ;
9869 PyObject
* obj0
= 0 ;
9870 PyObject
* obj1
= 0 ;
9871 PyObject
* obj2
= 0 ;
9872 PyObject
* obj3
= 0 ;
9873 PyObject
* obj4
= 0 ;
9874 PyObject
* obj5
= 0 ;
9875 PyObject
* obj6
= 0 ;
9876 PyObject
* obj7
= 0 ;
9878 (char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
9881 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_TextCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
9882 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
9883 if (SWIG_arg_fail(1)) SWIG_fail
;
9886 arg2
= static_cast<int >(SWIG_As_int(obj1
));
9887 if (SWIG_arg_fail(2)) SWIG_fail
;
9892 arg3
= wxString_in_helper(obj2
);
9893 if (arg3
== NULL
) SWIG_fail
;
9900 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
9906 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
9911 arg6
= static_cast<long >(SWIG_As_long(obj5
));
9912 if (SWIG_arg_fail(6)) SWIG_fail
;
9917 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
9918 if (SWIG_arg_fail(7)) SWIG_fail
;
9920 SWIG_null_ref("wxValidator");
9922 if (SWIG_arg_fail(7)) SWIG_fail
;
9927 arg8
= wxString_in_helper(obj7
);
9928 if (arg8
== NULL
) SWIG_fail
;
9933 if (!wxPyCheckForApp()) SWIG_fail
;
9934 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9935 result
= (wxTextCtrl
*)new wxTextCtrl(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
9937 wxPyEndAllowThreads(__tstate
);
9938 if (PyErr_Occurred()) SWIG_fail
;
9940 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTextCtrl
, 1);
9963 static PyObject
*_wrap_new_PreTextCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9964 PyObject
*resultobj
= NULL
;
9970 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreTextCtrl",kwnames
)) goto fail
;
9972 if (!wxPyCheckForApp()) SWIG_fail
;
9973 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9974 result
= (wxTextCtrl
*)new wxTextCtrl();
9976 wxPyEndAllowThreads(__tstate
);
9977 if (PyErr_Occurred()) SWIG_fail
;
9979 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTextCtrl
, 1);
9986 static PyObject
*_wrap_TextCtrl_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9987 PyObject
*resultobj
= NULL
;
9988 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
9989 wxWindow
*arg2
= (wxWindow
*) 0 ;
9990 int arg3
= (int) -1 ;
9991 wxString
const &arg4_defvalue
= wxPyEmptyString
;
9992 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
9993 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
9994 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
9995 wxSize
const &arg6_defvalue
= wxDefaultSize
;
9996 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
9997 long arg7
= (long) 0 ;
9998 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
9999 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
10000 wxString
const &arg9_defvalue
= wxPyTextCtrlNameStr
;
10001 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
10003 bool temp4
= false ;
10006 bool temp9
= false ;
10007 PyObject
* obj0
= 0 ;
10008 PyObject
* obj1
= 0 ;
10009 PyObject
* obj2
= 0 ;
10010 PyObject
* obj3
= 0 ;
10011 PyObject
* obj4
= 0 ;
10012 PyObject
* obj5
= 0 ;
10013 PyObject
* obj6
= 0 ;
10014 PyObject
* obj7
= 0 ;
10015 PyObject
* obj8
= 0 ;
10016 char *kwnames
[] = {
10017 (char *) "self",(char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
10020 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:TextCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
10021 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10022 if (SWIG_arg_fail(1)) SWIG_fail
;
10023 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
10024 if (SWIG_arg_fail(2)) SWIG_fail
;
10027 arg3
= static_cast<int >(SWIG_As_int(obj2
));
10028 if (SWIG_arg_fail(3)) SWIG_fail
;
10033 arg4
= wxString_in_helper(obj3
);
10034 if (arg4
== NULL
) SWIG_fail
;
10041 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
10047 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
10052 arg7
= static_cast<long >(SWIG_As_long(obj6
));
10053 if (SWIG_arg_fail(7)) SWIG_fail
;
10058 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
10059 if (SWIG_arg_fail(8)) SWIG_fail
;
10060 if (arg8
== NULL
) {
10061 SWIG_null_ref("wxValidator");
10063 if (SWIG_arg_fail(8)) SWIG_fail
;
10068 arg9
= wxString_in_helper(obj8
);
10069 if (arg9
== NULL
) SWIG_fail
;
10074 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10075 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
10077 wxPyEndAllowThreads(__tstate
);
10078 if (PyErr_Occurred()) SWIG_fail
;
10081 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10105 static PyObject
*_wrap_TextCtrl_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10106 PyObject
*resultobj
= NULL
;
10107 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10109 PyObject
* obj0
= 0 ;
10110 char *kwnames
[] = {
10111 (char *) "self", NULL
10114 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_GetValue",kwnames
,&obj0
)) goto fail
;
10115 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10116 if (SWIG_arg_fail(1)) SWIG_fail
;
10118 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10119 result
= ((wxTextCtrl
const *)arg1
)->GetValue();
10121 wxPyEndAllowThreads(__tstate
);
10122 if (PyErr_Occurred()) SWIG_fail
;
10126 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
10128 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
10137 static PyObject
*_wrap_TextCtrl_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10138 PyObject
*resultobj
= NULL
;
10139 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10140 wxString
*arg2
= 0 ;
10141 bool temp2
= false ;
10142 PyObject
* obj0
= 0 ;
10143 PyObject
* obj1
= 0 ;
10144 char *kwnames
[] = {
10145 (char *) "self",(char *) "value", NULL
10148 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
10149 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10150 if (SWIG_arg_fail(1)) SWIG_fail
;
10152 arg2
= wxString_in_helper(obj1
);
10153 if (arg2
== NULL
) SWIG_fail
;
10157 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10158 (arg1
)->SetValue((wxString
const &)*arg2
);
10160 wxPyEndAllowThreads(__tstate
);
10161 if (PyErr_Occurred()) SWIG_fail
;
10163 Py_INCREF(Py_None
); resultobj
= Py_None
;
10178 static PyObject
*_wrap_TextCtrl_GetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10179 PyObject
*resultobj
= NULL
;
10180 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10184 PyObject
* obj0
= 0 ;
10185 PyObject
* obj1
= 0 ;
10186 PyObject
* obj2
= 0 ;
10187 char *kwnames
[] = {
10188 (char *) "self",(char *) "from",(char *) "to", NULL
10191 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextCtrl_GetRange",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
10192 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10193 if (SWIG_arg_fail(1)) SWIG_fail
;
10195 arg2
= static_cast<long >(SWIG_As_long(obj1
));
10196 if (SWIG_arg_fail(2)) SWIG_fail
;
10199 arg3
= static_cast<long >(SWIG_As_long(obj2
));
10200 if (SWIG_arg_fail(3)) SWIG_fail
;
10203 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10204 result
= ((wxTextCtrl
const *)arg1
)->GetRange(arg2
,arg3
);
10206 wxPyEndAllowThreads(__tstate
);
10207 if (PyErr_Occurred()) SWIG_fail
;
10211 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
10213 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
10222 static PyObject
*_wrap_TextCtrl_GetLineLength(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10223 PyObject
*resultobj
= NULL
;
10224 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10227 PyObject
* obj0
= 0 ;
10228 PyObject
* obj1
= 0 ;
10229 char *kwnames
[] = {
10230 (char *) "self",(char *) "lineNo", NULL
10233 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_GetLineLength",kwnames
,&obj0
,&obj1
)) goto fail
;
10234 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10235 if (SWIG_arg_fail(1)) SWIG_fail
;
10237 arg2
= static_cast<long >(SWIG_As_long(obj1
));
10238 if (SWIG_arg_fail(2)) SWIG_fail
;
10241 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10242 result
= (int)((wxTextCtrl
const *)arg1
)->GetLineLength(arg2
);
10244 wxPyEndAllowThreads(__tstate
);
10245 if (PyErr_Occurred()) SWIG_fail
;
10248 resultobj
= SWIG_From_int(static_cast<int >(result
));
10256 static PyObject
*_wrap_TextCtrl_GetLineText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10257 PyObject
*resultobj
= NULL
;
10258 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10261 PyObject
* obj0
= 0 ;
10262 PyObject
* obj1
= 0 ;
10263 char *kwnames
[] = {
10264 (char *) "self",(char *) "lineNo", NULL
10267 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_GetLineText",kwnames
,&obj0
,&obj1
)) goto fail
;
10268 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10269 if (SWIG_arg_fail(1)) SWIG_fail
;
10271 arg2
= static_cast<long >(SWIG_As_long(obj1
));
10272 if (SWIG_arg_fail(2)) SWIG_fail
;
10275 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10276 result
= ((wxTextCtrl
const *)arg1
)->GetLineText(arg2
);
10278 wxPyEndAllowThreads(__tstate
);
10279 if (PyErr_Occurred()) SWIG_fail
;
10283 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
10285 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
10294 static PyObject
*_wrap_TextCtrl_GetNumberOfLines(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10295 PyObject
*resultobj
= NULL
;
10296 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10298 PyObject
* obj0
= 0 ;
10299 char *kwnames
[] = {
10300 (char *) "self", NULL
10303 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_GetNumberOfLines",kwnames
,&obj0
)) goto fail
;
10304 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10305 if (SWIG_arg_fail(1)) SWIG_fail
;
10307 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10308 result
= (int)((wxTextCtrl
const *)arg1
)->GetNumberOfLines();
10310 wxPyEndAllowThreads(__tstate
);
10311 if (PyErr_Occurred()) SWIG_fail
;
10314 resultobj
= SWIG_From_int(static_cast<int >(result
));
10322 static PyObject
*_wrap_TextCtrl_IsModified(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10323 PyObject
*resultobj
= NULL
;
10324 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10326 PyObject
* obj0
= 0 ;
10327 char *kwnames
[] = {
10328 (char *) "self", NULL
10331 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_IsModified",kwnames
,&obj0
)) goto fail
;
10332 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10333 if (SWIG_arg_fail(1)) SWIG_fail
;
10335 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10336 result
= (bool)((wxTextCtrl
const *)arg1
)->IsModified();
10338 wxPyEndAllowThreads(__tstate
);
10339 if (PyErr_Occurred()) SWIG_fail
;
10342 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10350 static PyObject
*_wrap_TextCtrl_IsEditable(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10351 PyObject
*resultobj
= NULL
;
10352 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10354 PyObject
* obj0
= 0 ;
10355 char *kwnames
[] = {
10356 (char *) "self", NULL
10359 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_IsEditable",kwnames
,&obj0
)) goto fail
;
10360 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10361 if (SWIG_arg_fail(1)) SWIG_fail
;
10363 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10364 result
= (bool)((wxTextCtrl
const *)arg1
)->IsEditable();
10366 wxPyEndAllowThreads(__tstate
);
10367 if (PyErr_Occurred()) SWIG_fail
;
10370 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10378 static PyObject
*_wrap_TextCtrl_IsSingleLine(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10379 PyObject
*resultobj
= NULL
;
10380 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10382 PyObject
* obj0
= 0 ;
10383 char *kwnames
[] = {
10384 (char *) "self", NULL
10387 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_IsSingleLine",kwnames
,&obj0
)) goto fail
;
10388 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10389 if (SWIG_arg_fail(1)) SWIG_fail
;
10391 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10392 result
= (bool)((wxTextCtrl
const *)arg1
)->IsSingleLine();
10394 wxPyEndAllowThreads(__tstate
);
10395 if (PyErr_Occurred()) SWIG_fail
;
10398 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10406 static PyObject
*_wrap_TextCtrl_IsMultiLine(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10407 PyObject
*resultobj
= NULL
;
10408 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10410 PyObject
* obj0
= 0 ;
10411 char *kwnames
[] = {
10412 (char *) "self", NULL
10415 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_IsMultiLine",kwnames
,&obj0
)) goto fail
;
10416 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10417 if (SWIG_arg_fail(1)) SWIG_fail
;
10419 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10420 result
= (bool)((wxTextCtrl
const *)arg1
)->IsMultiLine();
10422 wxPyEndAllowThreads(__tstate
);
10423 if (PyErr_Occurred()) SWIG_fail
;
10426 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10434 static PyObject
*_wrap_TextCtrl_GetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10435 PyObject
*resultobj
= NULL
;
10436 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10437 long *arg2
= (long *) 0 ;
10438 long *arg3
= (long *) 0 ;
10443 PyObject
* obj0
= 0 ;
10444 char *kwnames
[] = {
10445 (char *) "self", NULL
10448 arg2
= &temp2
; res2
= SWIG_NEWOBJ
;
10449 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
10450 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_GetSelection",kwnames
,&obj0
)) goto fail
;
10451 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10452 if (SWIG_arg_fail(1)) SWIG_fail
;
10454 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10455 ((wxTextCtrl
const *)arg1
)->GetSelection(arg2
,arg3
);
10457 wxPyEndAllowThreads(__tstate
);
10458 if (PyErr_Occurred()) SWIG_fail
;
10460 Py_INCREF(Py_None
); resultobj
= Py_None
;
10461 resultobj
= t_output_helper(resultobj
, ((res2
== SWIG_NEWOBJ
) ?
10462 SWIG_From_long((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_long
, 0)));
10463 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
10464 SWIG_From_long((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_long
, 0)));
10471 static PyObject
*_wrap_TextCtrl_GetStringSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10472 PyObject
*resultobj
= NULL
;
10473 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10475 PyObject
* obj0
= 0 ;
10476 char *kwnames
[] = {
10477 (char *) "self", NULL
10480 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_GetStringSelection",kwnames
,&obj0
)) goto fail
;
10481 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10482 if (SWIG_arg_fail(1)) SWIG_fail
;
10484 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10485 result
= ((wxTextCtrl
const *)arg1
)->GetStringSelection();
10487 wxPyEndAllowThreads(__tstate
);
10488 if (PyErr_Occurred()) SWIG_fail
;
10492 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
10494 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
10503 static PyObject
*_wrap_TextCtrl_Clear(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10504 PyObject
*resultobj
= NULL
;
10505 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10506 PyObject
* obj0
= 0 ;
10507 char *kwnames
[] = {
10508 (char *) "self", NULL
10511 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_Clear",kwnames
,&obj0
)) goto fail
;
10512 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10513 if (SWIG_arg_fail(1)) SWIG_fail
;
10515 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10518 wxPyEndAllowThreads(__tstate
);
10519 if (PyErr_Occurred()) SWIG_fail
;
10521 Py_INCREF(Py_None
); resultobj
= Py_None
;
10528 static PyObject
*_wrap_TextCtrl_Replace(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10529 PyObject
*resultobj
= NULL
;
10530 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10533 wxString
*arg4
= 0 ;
10534 bool temp4
= false ;
10535 PyObject
* obj0
= 0 ;
10536 PyObject
* obj1
= 0 ;
10537 PyObject
* obj2
= 0 ;
10538 PyObject
* obj3
= 0 ;
10539 char *kwnames
[] = {
10540 (char *) "self",(char *) "from",(char *) "to",(char *) "value", NULL
10543 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:TextCtrl_Replace",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
10544 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10545 if (SWIG_arg_fail(1)) SWIG_fail
;
10547 arg2
= static_cast<long >(SWIG_As_long(obj1
));
10548 if (SWIG_arg_fail(2)) SWIG_fail
;
10551 arg3
= static_cast<long >(SWIG_As_long(obj2
));
10552 if (SWIG_arg_fail(3)) SWIG_fail
;
10555 arg4
= wxString_in_helper(obj3
);
10556 if (arg4
== NULL
) SWIG_fail
;
10560 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10561 (arg1
)->Replace(arg2
,arg3
,(wxString
const &)*arg4
);
10563 wxPyEndAllowThreads(__tstate
);
10564 if (PyErr_Occurred()) SWIG_fail
;
10566 Py_INCREF(Py_None
); resultobj
= Py_None
;
10581 static PyObject
*_wrap_TextCtrl_Remove(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10582 PyObject
*resultobj
= NULL
;
10583 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10586 PyObject
* obj0
= 0 ;
10587 PyObject
* obj1
= 0 ;
10588 PyObject
* obj2
= 0 ;
10589 char *kwnames
[] = {
10590 (char *) "self",(char *) "from",(char *) "to", NULL
10593 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextCtrl_Remove",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
10594 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10595 if (SWIG_arg_fail(1)) SWIG_fail
;
10597 arg2
= static_cast<long >(SWIG_As_long(obj1
));
10598 if (SWIG_arg_fail(2)) SWIG_fail
;
10601 arg3
= static_cast<long >(SWIG_As_long(obj2
));
10602 if (SWIG_arg_fail(3)) SWIG_fail
;
10605 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10606 (arg1
)->Remove(arg2
,arg3
);
10608 wxPyEndAllowThreads(__tstate
);
10609 if (PyErr_Occurred()) SWIG_fail
;
10611 Py_INCREF(Py_None
); resultobj
= Py_None
;
10618 static PyObject
*_wrap_TextCtrl_LoadFile(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10619 PyObject
*resultobj
= NULL
;
10620 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10621 wxString
*arg2
= 0 ;
10623 bool temp2
= false ;
10624 PyObject
* obj0
= 0 ;
10625 PyObject
* obj1
= 0 ;
10626 char *kwnames
[] = {
10627 (char *) "self",(char *) "file", NULL
10630 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_LoadFile",kwnames
,&obj0
,&obj1
)) goto fail
;
10631 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10632 if (SWIG_arg_fail(1)) SWIG_fail
;
10634 arg2
= wxString_in_helper(obj1
);
10635 if (arg2
== NULL
) SWIG_fail
;
10639 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10640 result
= (bool)(arg1
)->LoadFile((wxString
const &)*arg2
);
10642 wxPyEndAllowThreads(__tstate
);
10643 if (PyErr_Occurred()) SWIG_fail
;
10646 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10662 static PyObject
*_wrap_TextCtrl_SaveFile(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10663 PyObject
*resultobj
= NULL
;
10664 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10665 wxString
const &arg2_defvalue
= wxPyEmptyString
;
10666 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
10668 bool temp2
= false ;
10669 PyObject
* obj0
= 0 ;
10670 PyObject
* obj1
= 0 ;
10671 char *kwnames
[] = {
10672 (char *) "self",(char *) "file", NULL
10675 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:TextCtrl_SaveFile",kwnames
,&obj0
,&obj1
)) goto fail
;
10676 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10677 if (SWIG_arg_fail(1)) SWIG_fail
;
10680 arg2
= wxString_in_helper(obj1
);
10681 if (arg2
== NULL
) SWIG_fail
;
10686 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10687 result
= (bool)(arg1
)->SaveFile((wxString
const &)*arg2
);
10689 wxPyEndAllowThreads(__tstate
);
10690 if (PyErr_Occurred()) SWIG_fail
;
10693 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10709 static PyObject
*_wrap_TextCtrl_MarkDirty(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10710 PyObject
*resultobj
= NULL
;
10711 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10712 PyObject
* obj0
= 0 ;
10713 char *kwnames
[] = {
10714 (char *) "self", NULL
10717 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_MarkDirty",kwnames
,&obj0
)) goto fail
;
10718 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10719 if (SWIG_arg_fail(1)) SWIG_fail
;
10721 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10722 (arg1
)->MarkDirty();
10724 wxPyEndAllowThreads(__tstate
);
10725 if (PyErr_Occurred()) SWIG_fail
;
10727 Py_INCREF(Py_None
); resultobj
= Py_None
;
10734 static PyObject
*_wrap_TextCtrl_DiscardEdits(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10735 PyObject
*resultobj
= NULL
;
10736 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10737 PyObject
* obj0
= 0 ;
10738 char *kwnames
[] = {
10739 (char *) "self", NULL
10742 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_DiscardEdits",kwnames
,&obj0
)) goto fail
;
10743 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10744 if (SWIG_arg_fail(1)) SWIG_fail
;
10746 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10747 (arg1
)->DiscardEdits();
10749 wxPyEndAllowThreads(__tstate
);
10750 if (PyErr_Occurred()) SWIG_fail
;
10752 Py_INCREF(Py_None
); resultobj
= Py_None
;
10759 static PyObject
*_wrap_TextCtrl_SetMaxLength(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10760 PyObject
*resultobj
= NULL
;
10761 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10762 unsigned long arg2
;
10763 PyObject
* obj0
= 0 ;
10764 PyObject
* obj1
= 0 ;
10765 char *kwnames
[] = {
10766 (char *) "self",(char *) "len", NULL
10769 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_SetMaxLength",kwnames
,&obj0
,&obj1
)) goto fail
;
10770 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10771 if (SWIG_arg_fail(1)) SWIG_fail
;
10773 arg2
= static_cast<unsigned long >(SWIG_As_unsigned_SS_long(obj1
));
10774 if (SWIG_arg_fail(2)) SWIG_fail
;
10777 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10778 (arg1
)->SetMaxLength(arg2
);
10780 wxPyEndAllowThreads(__tstate
);
10781 if (PyErr_Occurred()) SWIG_fail
;
10783 Py_INCREF(Py_None
); resultobj
= Py_None
;
10790 static PyObject
*_wrap_TextCtrl_WriteText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10791 PyObject
*resultobj
= NULL
;
10792 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10793 wxString
*arg2
= 0 ;
10794 bool temp2
= false ;
10795 PyObject
* obj0
= 0 ;
10796 PyObject
* obj1
= 0 ;
10797 char *kwnames
[] = {
10798 (char *) "self",(char *) "text", NULL
10801 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_WriteText",kwnames
,&obj0
,&obj1
)) goto fail
;
10802 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10803 if (SWIG_arg_fail(1)) SWIG_fail
;
10805 arg2
= wxString_in_helper(obj1
);
10806 if (arg2
== NULL
) SWIG_fail
;
10810 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10811 (arg1
)->WriteText((wxString
const &)*arg2
);
10813 wxPyEndAllowThreads(__tstate
);
10814 if (PyErr_Occurred()) SWIG_fail
;
10816 Py_INCREF(Py_None
); resultobj
= Py_None
;
10831 static PyObject
*_wrap_TextCtrl_AppendText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10832 PyObject
*resultobj
= NULL
;
10833 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10834 wxString
*arg2
= 0 ;
10835 bool temp2
= false ;
10836 PyObject
* obj0
= 0 ;
10837 PyObject
* obj1
= 0 ;
10838 char *kwnames
[] = {
10839 (char *) "self",(char *) "text", NULL
10842 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_AppendText",kwnames
,&obj0
,&obj1
)) goto fail
;
10843 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10844 if (SWIG_arg_fail(1)) SWIG_fail
;
10846 arg2
= wxString_in_helper(obj1
);
10847 if (arg2
== NULL
) SWIG_fail
;
10851 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10852 (arg1
)->AppendText((wxString
const &)*arg2
);
10854 wxPyEndAllowThreads(__tstate
);
10855 if (PyErr_Occurred()) SWIG_fail
;
10857 Py_INCREF(Py_None
); resultobj
= Py_None
;
10872 static PyObject
*_wrap_TextCtrl_EmulateKeyPress(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10873 PyObject
*resultobj
= NULL
;
10874 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10875 wxKeyEvent
*arg2
= 0 ;
10877 PyObject
* obj0
= 0 ;
10878 PyObject
* obj1
= 0 ;
10879 char *kwnames
[] = {
10880 (char *) "self",(char *) "event", NULL
10883 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_EmulateKeyPress",kwnames
,&obj0
,&obj1
)) goto fail
;
10884 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10885 if (SWIG_arg_fail(1)) SWIG_fail
;
10887 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxKeyEvent
, SWIG_POINTER_EXCEPTION
| 0);
10888 if (SWIG_arg_fail(2)) SWIG_fail
;
10889 if (arg2
== NULL
) {
10890 SWIG_null_ref("wxKeyEvent");
10892 if (SWIG_arg_fail(2)) SWIG_fail
;
10895 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10896 result
= (bool)(arg1
)->EmulateKeyPress((wxKeyEvent
const &)*arg2
);
10898 wxPyEndAllowThreads(__tstate
);
10899 if (PyErr_Occurred()) SWIG_fail
;
10902 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10910 static PyObject
*_wrap_TextCtrl_SetStyle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10911 PyObject
*resultobj
= NULL
;
10912 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10915 wxTextAttr
*arg4
= 0 ;
10917 PyObject
* obj0
= 0 ;
10918 PyObject
* obj1
= 0 ;
10919 PyObject
* obj2
= 0 ;
10920 PyObject
* obj3
= 0 ;
10921 char *kwnames
[] = {
10922 (char *) "self",(char *) "start",(char *) "end",(char *) "style", NULL
10925 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:TextCtrl_SetStyle",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
10926 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10927 if (SWIG_arg_fail(1)) SWIG_fail
;
10929 arg2
= static_cast<long >(SWIG_As_long(obj1
));
10930 if (SWIG_arg_fail(2)) SWIG_fail
;
10933 arg3
= static_cast<long >(SWIG_As_long(obj2
));
10934 if (SWIG_arg_fail(3)) SWIG_fail
;
10937 SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
10938 if (SWIG_arg_fail(4)) SWIG_fail
;
10939 if (arg4
== NULL
) {
10940 SWIG_null_ref("wxTextAttr");
10942 if (SWIG_arg_fail(4)) SWIG_fail
;
10945 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10946 result
= (bool)(arg1
)->SetStyle(arg2
,arg3
,(wxTextAttr
const &)*arg4
);
10948 wxPyEndAllowThreads(__tstate
);
10949 if (PyErr_Occurred()) SWIG_fail
;
10952 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10960 static PyObject
*_wrap_TextCtrl_GetStyle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10961 PyObject
*resultobj
= NULL
;
10962 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10964 wxTextAttr
*arg3
= 0 ;
10966 PyObject
* obj0
= 0 ;
10967 PyObject
* obj1
= 0 ;
10968 PyObject
* obj2
= 0 ;
10969 char *kwnames
[] = {
10970 (char *) "self",(char *) "position",(char *) "style", NULL
10973 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextCtrl_GetStyle",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
10974 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10975 if (SWIG_arg_fail(1)) SWIG_fail
;
10977 arg2
= static_cast<long >(SWIG_As_long(obj1
));
10978 if (SWIG_arg_fail(2)) SWIG_fail
;
10981 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
10982 if (SWIG_arg_fail(3)) SWIG_fail
;
10983 if (arg3
== NULL
) {
10984 SWIG_null_ref("wxTextAttr");
10986 if (SWIG_arg_fail(3)) SWIG_fail
;
10989 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10990 result
= (bool)(arg1
)->GetStyle(arg2
,*arg3
);
10992 wxPyEndAllowThreads(__tstate
);
10993 if (PyErr_Occurred()) SWIG_fail
;
10996 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11004 static PyObject
*_wrap_TextCtrl_SetDefaultStyle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11005 PyObject
*resultobj
= NULL
;
11006 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11007 wxTextAttr
*arg2
= 0 ;
11009 PyObject
* obj0
= 0 ;
11010 PyObject
* obj1
= 0 ;
11011 char *kwnames
[] = {
11012 (char *) "self",(char *) "style", NULL
11015 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_SetDefaultStyle",kwnames
,&obj0
,&obj1
)) goto fail
;
11016 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11017 if (SWIG_arg_fail(1)) SWIG_fail
;
11019 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
11020 if (SWIG_arg_fail(2)) SWIG_fail
;
11021 if (arg2
== NULL
) {
11022 SWIG_null_ref("wxTextAttr");
11024 if (SWIG_arg_fail(2)) SWIG_fail
;
11027 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11028 result
= (bool)(arg1
)->SetDefaultStyle((wxTextAttr
const &)*arg2
);
11030 wxPyEndAllowThreads(__tstate
);
11031 if (PyErr_Occurred()) SWIG_fail
;
11034 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11042 static PyObject
*_wrap_TextCtrl_GetDefaultStyle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11043 PyObject
*resultobj
= NULL
;
11044 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11045 wxTextAttr
*result
;
11046 PyObject
* obj0
= 0 ;
11047 char *kwnames
[] = {
11048 (char *) "self", NULL
11051 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_GetDefaultStyle",kwnames
,&obj0
)) goto fail
;
11052 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11053 if (SWIG_arg_fail(1)) SWIG_fail
;
11055 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11057 wxTextAttr
const &_result_ref
= ((wxTextCtrl
const *)arg1
)->GetDefaultStyle();
11058 result
= (wxTextAttr
*) &_result_ref
;
11061 wxPyEndAllowThreads(__tstate
);
11062 if (PyErr_Occurred()) SWIG_fail
;
11064 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTextAttr
, 0);
11071 static PyObject
*_wrap_TextCtrl_XYToPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11072 PyObject
*resultobj
= NULL
;
11073 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11077 PyObject
* obj0
= 0 ;
11078 PyObject
* obj1
= 0 ;
11079 PyObject
* obj2
= 0 ;
11080 char *kwnames
[] = {
11081 (char *) "self",(char *) "x",(char *) "y", NULL
11084 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextCtrl_XYToPosition",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
11085 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11086 if (SWIG_arg_fail(1)) SWIG_fail
;
11088 arg2
= static_cast<long >(SWIG_As_long(obj1
));
11089 if (SWIG_arg_fail(2)) SWIG_fail
;
11092 arg3
= static_cast<long >(SWIG_As_long(obj2
));
11093 if (SWIG_arg_fail(3)) SWIG_fail
;
11096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11097 result
= (long)((wxTextCtrl
const *)arg1
)->XYToPosition(arg2
,arg3
);
11099 wxPyEndAllowThreads(__tstate
);
11100 if (PyErr_Occurred()) SWIG_fail
;
11103 resultobj
= SWIG_From_long(static_cast<long >(result
));
11111 static PyObject
*_wrap_TextCtrl_PositionToXY(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11112 PyObject
*resultobj
= NULL
;
11113 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11115 long *arg3
= (long *) 0 ;
11116 long *arg4
= (long *) 0 ;
11121 PyObject
* obj0
= 0 ;
11122 PyObject
* obj1
= 0 ;
11123 char *kwnames
[] = {
11124 (char *) "self",(char *) "pos", NULL
11127 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
11128 arg4
= &temp4
; res4
= SWIG_NEWOBJ
;
11129 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_PositionToXY",kwnames
,&obj0
,&obj1
)) goto fail
;
11130 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11131 if (SWIG_arg_fail(1)) SWIG_fail
;
11133 arg2
= static_cast<long >(SWIG_As_long(obj1
));
11134 if (SWIG_arg_fail(2)) SWIG_fail
;
11137 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11138 ((wxTextCtrl
const *)arg1
)->PositionToXY(arg2
,arg3
,arg4
);
11140 wxPyEndAllowThreads(__tstate
);
11141 if (PyErr_Occurred()) SWIG_fail
;
11143 Py_INCREF(Py_None
); resultobj
= Py_None
;
11144 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
11145 SWIG_From_long((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_long
, 0)));
11146 resultobj
= t_output_helper(resultobj
, ((res4
== SWIG_NEWOBJ
) ?
11147 SWIG_From_long((*arg4
)) : SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_long
, 0)));
11154 static PyObject
*_wrap_TextCtrl_ShowPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11155 PyObject
*resultobj
= NULL
;
11156 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11158 PyObject
* obj0
= 0 ;
11159 PyObject
* obj1
= 0 ;
11160 char *kwnames
[] = {
11161 (char *) "self",(char *) "pos", NULL
11164 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_ShowPosition",kwnames
,&obj0
,&obj1
)) goto fail
;
11165 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11166 if (SWIG_arg_fail(1)) SWIG_fail
;
11168 arg2
= static_cast<long >(SWIG_As_long(obj1
));
11169 if (SWIG_arg_fail(2)) SWIG_fail
;
11172 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11173 (arg1
)->ShowPosition(arg2
);
11175 wxPyEndAllowThreads(__tstate
);
11176 if (PyErr_Occurred()) SWIG_fail
;
11178 Py_INCREF(Py_None
); resultobj
= Py_None
;
11185 static PyObject
*_wrap_TextCtrl_HitTest(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11186 PyObject
*resultobj
= NULL
;
11187 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11188 wxPoint
*arg2
= 0 ;
11189 long *arg3
= (long *) 0 ;
11190 long *arg4
= (long *) 0 ;
11191 wxTextCtrlHitTestResult result
;
11197 PyObject
* obj0
= 0 ;
11198 PyObject
* obj1
= 0 ;
11199 char *kwnames
[] = {
11200 (char *) "self",(char *) "pt", NULL
11203 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
11204 arg4
= &temp4
; res4
= SWIG_NEWOBJ
;
11205 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_HitTest",kwnames
,&obj0
,&obj1
)) goto fail
;
11206 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11207 if (SWIG_arg_fail(1)) SWIG_fail
;
11210 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
11213 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11214 result
= (wxTextCtrlHitTestResult
)((wxTextCtrl
const *)arg1
)->HitTest((wxPoint
const &)*arg2
,arg3
,arg4
);
11216 wxPyEndAllowThreads(__tstate
);
11217 if (PyErr_Occurred()) SWIG_fail
;
11219 resultobj
= SWIG_From_int((result
));
11220 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
11221 SWIG_From_long((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_long
, 0)));
11222 resultobj
= t_output_helper(resultobj
, ((res4
== SWIG_NEWOBJ
) ?
11223 SWIG_From_long((*arg4
)) : SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_long
, 0)));
11230 static PyObject
*_wrap_TextCtrl_HitTestPos(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11231 PyObject
*resultobj
= NULL
;
11232 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11233 wxPoint
*arg2
= 0 ;
11234 long *arg3
= (long *) 0 ;
11235 wxTextCtrlHitTestResult result
;
11239 PyObject
* obj0
= 0 ;
11240 PyObject
* obj1
= 0 ;
11241 char *kwnames
[] = {
11242 (char *) "self",(char *) "pt", NULL
11245 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
11246 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_HitTestPos",kwnames
,&obj0
,&obj1
)) goto fail
;
11247 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11248 if (SWIG_arg_fail(1)) SWIG_fail
;
11251 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
11254 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11255 result
= (wxTextCtrlHitTestResult
)((wxTextCtrl
const *)arg1
)->HitTest((wxPoint
const &)*arg2
,arg3
);
11257 wxPyEndAllowThreads(__tstate
);
11258 if (PyErr_Occurred()) SWIG_fail
;
11260 resultobj
= SWIG_From_int((result
));
11261 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
11262 SWIG_From_long((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_long
, 0)));
11269 static PyObject
*_wrap_TextCtrl_Copy(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11270 PyObject
*resultobj
= NULL
;
11271 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11272 PyObject
* obj0
= 0 ;
11273 char *kwnames
[] = {
11274 (char *) "self", NULL
11277 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_Copy",kwnames
,&obj0
)) goto fail
;
11278 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11279 if (SWIG_arg_fail(1)) SWIG_fail
;
11281 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11284 wxPyEndAllowThreads(__tstate
);
11285 if (PyErr_Occurred()) SWIG_fail
;
11287 Py_INCREF(Py_None
); resultobj
= Py_None
;
11294 static PyObject
*_wrap_TextCtrl_Cut(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11295 PyObject
*resultobj
= NULL
;
11296 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11297 PyObject
* obj0
= 0 ;
11298 char *kwnames
[] = {
11299 (char *) "self", NULL
11302 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_Cut",kwnames
,&obj0
)) goto fail
;
11303 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11304 if (SWIG_arg_fail(1)) SWIG_fail
;
11306 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11309 wxPyEndAllowThreads(__tstate
);
11310 if (PyErr_Occurred()) SWIG_fail
;
11312 Py_INCREF(Py_None
); resultobj
= Py_None
;
11319 static PyObject
*_wrap_TextCtrl_Paste(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11320 PyObject
*resultobj
= NULL
;
11321 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11322 PyObject
* obj0
= 0 ;
11323 char *kwnames
[] = {
11324 (char *) "self", NULL
11327 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_Paste",kwnames
,&obj0
)) goto fail
;
11328 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11329 if (SWIG_arg_fail(1)) SWIG_fail
;
11331 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11334 wxPyEndAllowThreads(__tstate
);
11335 if (PyErr_Occurred()) SWIG_fail
;
11337 Py_INCREF(Py_None
); resultobj
= Py_None
;
11344 static PyObject
*_wrap_TextCtrl_CanCopy(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11345 PyObject
*resultobj
= NULL
;
11346 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11348 PyObject
* obj0
= 0 ;
11349 char *kwnames
[] = {
11350 (char *) "self", NULL
11353 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_CanCopy",kwnames
,&obj0
)) goto fail
;
11354 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11355 if (SWIG_arg_fail(1)) SWIG_fail
;
11357 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11358 result
= (bool)((wxTextCtrl
const *)arg1
)->CanCopy();
11360 wxPyEndAllowThreads(__tstate
);
11361 if (PyErr_Occurred()) SWIG_fail
;
11364 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11372 static PyObject
*_wrap_TextCtrl_CanCut(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11373 PyObject
*resultobj
= NULL
;
11374 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11376 PyObject
* obj0
= 0 ;
11377 char *kwnames
[] = {
11378 (char *) "self", NULL
11381 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_CanCut",kwnames
,&obj0
)) goto fail
;
11382 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11383 if (SWIG_arg_fail(1)) SWIG_fail
;
11385 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11386 result
= (bool)((wxTextCtrl
const *)arg1
)->CanCut();
11388 wxPyEndAllowThreads(__tstate
);
11389 if (PyErr_Occurred()) SWIG_fail
;
11392 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11400 static PyObject
*_wrap_TextCtrl_CanPaste(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11401 PyObject
*resultobj
= NULL
;
11402 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11404 PyObject
* obj0
= 0 ;
11405 char *kwnames
[] = {
11406 (char *) "self", NULL
11409 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_CanPaste",kwnames
,&obj0
)) goto fail
;
11410 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11411 if (SWIG_arg_fail(1)) SWIG_fail
;
11413 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11414 result
= (bool)((wxTextCtrl
const *)arg1
)->CanPaste();
11416 wxPyEndAllowThreads(__tstate
);
11417 if (PyErr_Occurred()) SWIG_fail
;
11420 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11428 static PyObject
*_wrap_TextCtrl_Undo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11429 PyObject
*resultobj
= NULL
;
11430 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11431 PyObject
* obj0
= 0 ;
11432 char *kwnames
[] = {
11433 (char *) "self", NULL
11436 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_Undo",kwnames
,&obj0
)) goto fail
;
11437 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11438 if (SWIG_arg_fail(1)) SWIG_fail
;
11440 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11443 wxPyEndAllowThreads(__tstate
);
11444 if (PyErr_Occurred()) SWIG_fail
;
11446 Py_INCREF(Py_None
); resultobj
= Py_None
;
11453 static PyObject
*_wrap_TextCtrl_Redo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11454 PyObject
*resultobj
= NULL
;
11455 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11456 PyObject
* obj0
= 0 ;
11457 char *kwnames
[] = {
11458 (char *) "self", NULL
11461 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_Redo",kwnames
,&obj0
)) goto fail
;
11462 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11463 if (SWIG_arg_fail(1)) SWIG_fail
;
11465 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11468 wxPyEndAllowThreads(__tstate
);
11469 if (PyErr_Occurred()) SWIG_fail
;
11471 Py_INCREF(Py_None
); resultobj
= Py_None
;
11478 static PyObject
*_wrap_TextCtrl_CanUndo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11479 PyObject
*resultobj
= NULL
;
11480 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11482 PyObject
* obj0
= 0 ;
11483 char *kwnames
[] = {
11484 (char *) "self", NULL
11487 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_CanUndo",kwnames
,&obj0
)) goto fail
;
11488 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11489 if (SWIG_arg_fail(1)) SWIG_fail
;
11491 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11492 result
= (bool)((wxTextCtrl
const *)arg1
)->CanUndo();
11494 wxPyEndAllowThreads(__tstate
);
11495 if (PyErr_Occurred()) SWIG_fail
;
11498 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11506 static PyObject
*_wrap_TextCtrl_CanRedo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11507 PyObject
*resultobj
= NULL
;
11508 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11510 PyObject
* obj0
= 0 ;
11511 char *kwnames
[] = {
11512 (char *) "self", NULL
11515 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_CanRedo",kwnames
,&obj0
)) goto fail
;
11516 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11517 if (SWIG_arg_fail(1)) SWIG_fail
;
11519 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11520 result
= (bool)((wxTextCtrl
const *)arg1
)->CanRedo();
11522 wxPyEndAllowThreads(__tstate
);
11523 if (PyErr_Occurred()) SWIG_fail
;
11526 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11534 static PyObject
*_wrap_TextCtrl_SetInsertionPoint(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11535 PyObject
*resultobj
= NULL
;
11536 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11538 PyObject
* obj0
= 0 ;
11539 PyObject
* obj1
= 0 ;
11540 char *kwnames
[] = {
11541 (char *) "self",(char *) "pos", NULL
11544 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_SetInsertionPoint",kwnames
,&obj0
,&obj1
)) goto fail
;
11545 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11546 if (SWIG_arg_fail(1)) SWIG_fail
;
11548 arg2
= static_cast<long >(SWIG_As_long(obj1
));
11549 if (SWIG_arg_fail(2)) SWIG_fail
;
11552 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11553 (arg1
)->SetInsertionPoint(arg2
);
11555 wxPyEndAllowThreads(__tstate
);
11556 if (PyErr_Occurred()) SWIG_fail
;
11558 Py_INCREF(Py_None
); resultobj
= Py_None
;
11565 static PyObject
*_wrap_TextCtrl_SetInsertionPointEnd(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11566 PyObject
*resultobj
= NULL
;
11567 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11568 PyObject
* obj0
= 0 ;
11569 char *kwnames
[] = {
11570 (char *) "self", NULL
11573 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_SetInsertionPointEnd",kwnames
,&obj0
)) goto fail
;
11574 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11575 if (SWIG_arg_fail(1)) SWIG_fail
;
11577 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11578 (arg1
)->SetInsertionPointEnd();
11580 wxPyEndAllowThreads(__tstate
);
11581 if (PyErr_Occurred()) SWIG_fail
;
11583 Py_INCREF(Py_None
); resultobj
= Py_None
;
11590 static PyObject
*_wrap_TextCtrl_GetInsertionPoint(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11591 PyObject
*resultobj
= NULL
;
11592 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11594 PyObject
* obj0
= 0 ;
11595 char *kwnames
[] = {
11596 (char *) "self", NULL
11599 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_GetInsertionPoint",kwnames
,&obj0
)) goto fail
;
11600 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11601 if (SWIG_arg_fail(1)) SWIG_fail
;
11603 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11604 result
= (long)((wxTextCtrl
const *)arg1
)->GetInsertionPoint();
11606 wxPyEndAllowThreads(__tstate
);
11607 if (PyErr_Occurred()) SWIG_fail
;
11610 resultobj
= SWIG_From_long(static_cast<long >(result
));
11618 static PyObject
*_wrap_TextCtrl_GetLastPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11619 PyObject
*resultobj
= NULL
;
11620 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11622 PyObject
* obj0
= 0 ;
11623 char *kwnames
[] = {
11624 (char *) "self", NULL
11627 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_GetLastPosition",kwnames
,&obj0
)) goto fail
;
11628 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11629 if (SWIG_arg_fail(1)) SWIG_fail
;
11631 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11632 result
= (long)((wxTextCtrl
const *)arg1
)->GetLastPosition();
11634 wxPyEndAllowThreads(__tstate
);
11635 if (PyErr_Occurred()) SWIG_fail
;
11638 resultobj
= SWIG_From_long(static_cast<long >(result
));
11646 static PyObject
*_wrap_TextCtrl_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11647 PyObject
*resultobj
= NULL
;
11648 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11651 PyObject
* obj0
= 0 ;
11652 PyObject
* obj1
= 0 ;
11653 PyObject
* obj2
= 0 ;
11654 char *kwnames
[] = {
11655 (char *) "self",(char *) "from",(char *) "to", NULL
11658 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextCtrl_SetSelection",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
11659 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11660 if (SWIG_arg_fail(1)) SWIG_fail
;
11662 arg2
= static_cast<long >(SWIG_As_long(obj1
));
11663 if (SWIG_arg_fail(2)) SWIG_fail
;
11666 arg3
= static_cast<long >(SWIG_As_long(obj2
));
11667 if (SWIG_arg_fail(3)) SWIG_fail
;
11670 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11671 (arg1
)->SetSelection(arg2
,arg3
);
11673 wxPyEndAllowThreads(__tstate
);
11674 if (PyErr_Occurred()) SWIG_fail
;
11676 Py_INCREF(Py_None
); resultobj
= Py_None
;
11683 static PyObject
*_wrap_TextCtrl_SelectAll(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11684 PyObject
*resultobj
= NULL
;
11685 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11686 PyObject
* obj0
= 0 ;
11687 char *kwnames
[] = {
11688 (char *) "self", NULL
11691 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_SelectAll",kwnames
,&obj0
)) goto fail
;
11692 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11693 if (SWIG_arg_fail(1)) SWIG_fail
;
11695 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11696 (arg1
)->SelectAll();
11698 wxPyEndAllowThreads(__tstate
);
11699 if (PyErr_Occurred()) SWIG_fail
;
11701 Py_INCREF(Py_None
); resultobj
= Py_None
;
11708 static PyObject
*_wrap_TextCtrl_SetEditable(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11709 PyObject
*resultobj
= NULL
;
11710 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11712 PyObject
* obj0
= 0 ;
11713 PyObject
* obj1
= 0 ;
11714 char *kwnames
[] = {
11715 (char *) "self",(char *) "editable", NULL
11718 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_SetEditable",kwnames
,&obj0
,&obj1
)) goto fail
;
11719 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11720 if (SWIG_arg_fail(1)) SWIG_fail
;
11722 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
11723 if (SWIG_arg_fail(2)) SWIG_fail
;
11726 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11727 (arg1
)->SetEditable(arg2
);
11729 wxPyEndAllowThreads(__tstate
);
11730 if (PyErr_Occurred()) SWIG_fail
;
11732 Py_INCREF(Py_None
); resultobj
= Py_None
;
11739 static PyObject
*_wrap_TextCtrl_write(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11740 PyObject
*resultobj
= NULL
;
11741 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11742 wxString
*arg2
= 0 ;
11743 bool temp2
= false ;
11744 PyObject
* obj0
= 0 ;
11745 PyObject
* obj1
= 0 ;
11746 char *kwnames
[] = {
11747 (char *) "self",(char *) "text", NULL
11750 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_write",kwnames
,&obj0
,&obj1
)) goto fail
;
11751 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11752 if (SWIG_arg_fail(1)) SWIG_fail
;
11754 arg2
= wxString_in_helper(obj1
);
11755 if (arg2
== NULL
) SWIG_fail
;
11759 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11760 wxTextCtrl_write(arg1
,(wxString
const &)*arg2
);
11762 wxPyEndAllowThreads(__tstate
);
11763 if (PyErr_Occurred()) SWIG_fail
;
11765 Py_INCREF(Py_None
); resultobj
= Py_None
;
11780 static PyObject
*_wrap_TextCtrl_GetString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11781 PyObject
*resultobj
= NULL
;
11782 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11786 PyObject
* obj0
= 0 ;
11787 PyObject
* obj1
= 0 ;
11788 PyObject
* obj2
= 0 ;
11789 char *kwnames
[] = {
11790 (char *) "self",(char *) "from",(char *) "to", NULL
11793 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextCtrl_GetString",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
11794 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11795 if (SWIG_arg_fail(1)) SWIG_fail
;
11797 arg2
= static_cast<long >(SWIG_As_long(obj1
));
11798 if (SWIG_arg_fail(2)) SWIG_fail
;
11801 arg3
= static_cast<long >(SWIG_As_long(obj2
));
11802 if (SWIG_arg_fail(3)) SWIG_fail
;
11805 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11806 result
= wxTextCtrl_GetString(arg1
,arg2
,arg3
);
11808 wxPyEndAllowThreads(__tstate
);
11809 if (PyErr_Occurred()) SWIG_fail
;
11813 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
11815 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
11824 static PyObject
*_wrap_TextCtrl_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11825 PyObject
*resultobj
= NULL
;
11826 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
11827 wxVisualAttributes result
;
11828 PyObject
* obj0
= 0 ;
11829 char *kwnames
[] = {
11830 (char *) "variant", NULL
11833 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:TextCtrl_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
11836 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
11837 if (SWIG_arg_fail(1)) SWIG_fail
;
11841 if (!wxPyCheckForApp()) SWIG_fail
;
11842 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11843 result
= wxTextCtrl::GetClassDefaultAttributes(arg1
);
11845 wxPyEndAllowThreads(__tstate
);
11846 if (PyErr_Occurred()) SWIG_fail
;
11849 wxVisualAttributes
* resultptr
;
11850 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
11851 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
11859 static PyObject
* TextCtrl_swigregister(PyObject
*, PyObject
*args
) {
11861 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
11862 SWIG_TypeClientData(SWIGTYPE_p_wxTextCtrl
, obj
);
11864 return Py_BuildValue((char *)"");
11866 static PyObject
*_wrap_new_TextUrlEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11867 PyObject
*resultobj
= NULL
;
11869 wxMouseEvent
*arg2
= 0 ;
11872 wxTextUrlEvent
*result
;
11873 PyObject
* obj0
= 0 ;
11874 PyObject
* obj1
= 0 ;
11875 PyObject
* obj2
= 0 ;
11876 PyObject
* obj3
= 0 ;
11877 char *kwnames
[] = {
11878 (char *) "winid",(char *) "evtMouse",(char *) "start",(char *) "end", NULL
11881 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:new_TextUrlEvent",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
11883 arg1
= static_cast<int >(SWIG_As_int(obj0
));
11884 if (SWIG_arg_fail(1)) SWIG_fail
;
11887 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxMouseEvent
, SWIG_POINTER_EXCEPTION
| 0);
11888 if (SWIG_arg_fail(2)) SWIG_fail
;
11889 if (arg2
== NULL
) {
11890 SWIG_null_ref("wxMouseEvent");
11892 if (SWIG_arg_fail(2)) SWIG_fail
;
11895 arg3
= static_cast<long >(SWIG_As_long(obj2
));
11896 if (SWIG_arg_fail(3)) SWIG_fail
;
11899 arg4
= static_cast<long >(SWIG_As_long(obj3
));
11900 if (SWIG_arg_fail(4)) SWIG_fail
;
11903 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11904 result
= (wxTextUrlEvent
*)new wxTextUrlEvent(arg1
,(wxMouseEvent
const &)*arg2
,arg3
,arg4
);
11906 wxPyEndAllowThreads(__tstate
);
11907 if (PyErr_Occurred()) SWIG_fail
;
11909 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTextUrlEvent
, 1);
11916 static PyObject
*_wrap_TextUrlEvent_GetMouseEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11917 PyObject
*resultobj
= NULL
;
11918 wxTextUrlEvent
*arg1
= (wxTextUrlEvent
*) 0 ;
11919 wxMouseEvent
*result
;
11920 PyObject
* obj0
= 0 ;
11921 char *kwnames
[] = {
11922 (char *) "self", NULL
11925 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextUrlEvent_GetMouseEvent",kwnames
,&obj0
)) goto fail
;
11926 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextUrlEvent
, SWIG_POINTER_EXCEPTION
| 0);
11927 if (SWIG_arg_fail(1)) SWIG_fail
;
11929 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11931 wxMouseEvent
const &_result_ref
= (arg1
)->GetMouseEvent();
11932 result
= (wxMouseEvent
*) &_result_ref
;
11935 wxPyEndAllowThreads(__tstate
);
11936 if (PyErr_Occurred()) SWIG_fail
;
11938 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxMouseEvent
, 0);
11945 static PyObject
*_wrap_TextUrlEvent_GetURLStart(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11946 PyObject
*resultobj
= NULL
;
11947 wxTextUrlEvent
*arg1
= (wxTextUrlEvent
*) 0 ;
11949 PyObject
* obj0
= 0 ;
11950 char *kwnames
[] = {
11951 (char *) "self", NULL
11954 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextUrlEvent_GetURLStart",kwnames
,&obj0
)) goto fail
;
11955 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextUrlEvent
, SWIG_POINTER_EXCEPTION
| 0);
11956 if (SWIG_arg_fail(1)) SWIG_fail
;
11958 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11959 result
= (long)((wxTextUrlEvent
const *)arg1
)->GetURLStart();
11961 wxPyEndAllowThreads(__tstate
);
11962 if (PyErr_Occurred()) SWIG_fail
;
11965 resultobj
= SWIG_From_long(static_cast<long >(result
));
11973 static PyObject
*_wrap_TextUrlEvent_GetURLEnd(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11974 PyObject
*resultobj
= NULL
;
11975 wxTextUrlEvent
*arg1
= (wxTextUrlEvent
*) 0 ;
11977 PyObject
* obj0
= 0 ;
11978 char *kwnames
[] = {
11979 (char *) "self", NULL
11982 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextUrlEvent_GetURLEnd",kwnames
,&obj0
)) goto fail
;
11983 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextUrlEvent
, SWIG_POINTER_EXCEPTION
| 0);
11984 if (SWIG_arg_fail(1)) SWIG_fail
;
11986 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11987 result
= (long)((wxTextUrlEvent
const *)arg1
)->GetURLEnd();
11989 wxPyEndAllowThreads(__tstate
);
11990 if (PyErr_Occurred()) SWIG_fail
;
11993 resultobj
= SWIG_From_long(static_cast<long >(result
));
12001 static PyObject
* TextUrlEvent_swigregister(PyObject
*, PyObject
*args
) {
12003 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
12004 SWIG_TypeClientData(SWIGTYPE_p_wxTextUrlEvent
, obj
);
12006 return Py_BuildValue((char *)"");
12008 static int _wrap_ScrollBarNameStr_set(PyObject
*) {
12009 PyErr_SetString(PyExc_TypeError
,"Variable ScrollBarNameStr is read-only.");
12014 static PyObject
*_wrap_ScrollBarNameStr_get(void) {
12015 PyObject
*pyobj
= NULL
;
12019 pyobj
= PyUnicode_FromWideChar((&wxPyScrollBarNameStr
)->c_str(), (&wxPyScrollBarNameStr
)->Len());
12021 pyobj
= PyString_FromStringAndSize((&wxPyScrollBarNameStr
)->c_str(), (&wxPyScrollBarNameStr
)->Len());
12028 static PyObject
*_wrap_new_ScrollBar(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12029 PyObject
*resultobj
= NULL
;
12030 wxWindow
*arg1
= (wxWindow
*) 0 ;
12031 int arg2
= (int) -1 ;
12032 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
12033 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
12034 wxSize
const &arg4_defvalue
= wxDefaultSize
;
12035 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
12036 long arg5
= (long) wxSB_HORIZONTAL
;
12037 wxValidator
const &arg6_defvalue
= wxDefaultValidator
;
12038 wxValidator
*arg6
= (wxValidator
*) &arg6_defvalue
;
12039 wxString
const &arg7_defvalue
= wxPyScrollBarNameStr
;
12040 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
12041 wxScrollBar
*result
;
12044 bool temp7
= false ;
12045 PyObject
* obj0
= 0 ;
12046 PyObject
* obj1
= 0 ;
12047 PyObject
* obj2
= 0 ;
12048 PyObject
* obj3
= 0 ;
12049 PyObject
* obj4
= 0 ;
12050 PyObject
* obj5
= 0 ;
12051 PyObject
* obj6
= 0 ;
12052 char *kwnames
[] = {
12053 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
12056 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_ScrollBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
12057 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
12058 if (SWIG_arg_fail(1)) SWIG_fail
;
12061 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12062 if (SWIG_arg_fail(2)) SWIG_fail
;
12068 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
12074 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
12079 arg5
= static_cast<long >(SWIG_As_long(obj4
));
12080 if (SWIG_arg_fail(5)) SWIG_fail
;
12085 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
12086 if (SWIG_arg_fail(6)) SWIG_fail
;
12087 if (arg6
== NULL
) {
12088 SWIG_null_ref("wxValidator");
12090 if (SWIG_arg_fail(6)) SWIG_fail
;
12095 arg7
= wxString_in_helper(obj6
);
12096 if (arg7
== NULL
) SWIG_fail
;
12101 if (!wxPyCheckForApp()) SWIG_fail
;
12102 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12103 result
= (wxScrollBar
*)new wxScrollBar(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxValidator
const &)*arg6
,(wxString
const &)*arg7
);
12105 wxPyEndAllowThreads(__tstate
);
12106 if (PyErr_Occurred()) SWIG_fail
;
12108 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxScrollBar
, 1);
12123 static PyObject
*_wrap_new_PreScrollBar(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12124 PyObject
*resultobj
= NULL
;
12125 wxScrollBar
*result
;
12126 char *kwnames
[] = {
12130 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreScrollBar",kwnames
)) goto fail
;
12132 if (!wxPyCheckForApp()) SWIG_fail
;
12133 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12134 result
= (wxScrollBar
*)new wxScrollBar();
12136 wxPyEndAllowThreads(__tstate
);
12137 if (PyErr_Occurred()) SWIG_fail
;
12139 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxScrollBar
, 1);
12146 static PyObject
*_wrap_ScrollBar_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12147 PyObject
*resultobj
= NULL
;
12148 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12149 wxWindow
*arg2
= (wxWindow
*) 0 ;
12150 int arg3
= (int) -1 ;
12151 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
12152 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
12153 wxSize
const &arg5_defvalue
= wxDefaultSize
;
12154 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
12155 long arg6
= (long) wxSB_HORIZONTAL
;
12156 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
12157 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
12158 wxString
const &arg8_defvalue
= wxPyScrollBarNameStr
;
12159 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
12163 bool temp8
= false ;
12164 PyObject
* obj0
= 0 ;
12165 PyObject
* obj1
= 0 ;
12166 PyObject
* obj2
= 0 ;
12167 PyObject
* obj3
= 0 ;
12168 PyObject
* obj4
= 0 ;
12169 PyObject
* obj5
= 0 ;
12170 PyObject
* obj6
= 0 ;
12171 PyObject
* obj7
= 0 ;
12172 char *kwnames
[] = {
12173 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
12176 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:ScrollBar_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
12177 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12178 if (SWIG_arg_fail(1)) SWIG_fail
;
12179 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
12180 if (SWIG_arg_fail(2)) SWIG_fail
;
12183 arg3
= static_cast<int >(SWIG_As_int(obj2
));
12184 if (SWIG_arg_fail(3)) SWIG_fail
;
12190 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
12196 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
12201 arg6
= static_cast<long >(SWIG_As_long(obj5
));
12202 if (SWIG_arg_fail(6)) SWIG_fail
;
12207 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
12208 if (SWIG_arg_fail(7)) SWIG_fail
;
12209 if (arg7
== NULL
) {
12210 SWIG_null_ref("wxValidator");
12212 if (SWIG_arg_fail(7)) SWIG_fail
;
12217 arg8
= wxString_in_helper(obj7
);
12218 if (arg8
== NULL
) SWIG_fail
;
12223 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12224 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
12226 wxPyEndAllowThreads(__tstate
);
12227 if (PyErr_Occurred()) SWIG_fail
;
12230 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12246 static PyObject
*_wrap_ScrollBar_GetThumbPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12247 PyObject
*resultobj
= NULL
;
12248 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12250 PyObject
* obj0
= 0 ;
12251 char *kwnames
[] = {
12252 (char *) "self", NULL
12255 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrollBar_GetThumbPosition",kwnames
,&obj0
)) goto fail
;
12256 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12257 if (SWIG_arg_fail(1)) SWIG_fail
;
12259 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12260 result
= (int)((wxScrollBar
const *)arg1
)->GetThumbPosition();
12262 wxPyEndAllowThreads(__tstate
);
12263 if (PyErr_Occurred()) SWIG_fail
;
12266 resultobj
= SWIG_From_int(static_cast<int >(result
));
12274 static PyObject
*_wrap_ScrollBar_GetThumbSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12275 PyObject
*resultobj
= NULL
;
12276 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12278 PyObject
* obj0
= 0 ;
12279 char *kwnames
[] = {
12280 (char *) "self", NULL
12283 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrollBar_GetThumbSize",kwnames
,&obj0
)) goto fail
;
12284 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12285 if (SWIG_arg_fail(1)) SWIG_fail
;
12287 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12288 result
= (int)((wxScrollBar
const *)arg1
)->GetThumbSize();
12290 wxPyEndAllowThreads(__tstate
);
12291 if (PyErr_Occurred()) SWIG_fail
;
12294 resultobj
= SWIG_From_int(static_cast<int >(result
));
12302 static PyObject
*_wrap_ScrollBar_GetPageSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12303 PyObject
*resultobj
= NULL
;
12304 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12306 PyObject
* obj0
= 0 ;
12307 char *kwnames
[] = {
12308 (char *) "self", NULL
12311 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrollBar_GetPageSize",kwnames
,&obj0
)) goto fail
;
12312 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12313 if (SWIG_arg_fail(1)) SWIG_fail
;
12315 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12316 result
= (int)((wxScrollBar
const *)arg1
)->GetPageSize();
12318 wxPyEndAllowThreads(__tstate
);
12319 if (PyErr_Occurred()) SWIG_fail
;
12322 resultobj
= SWIG_From_int(static_cast<int >(result
));
12330 static PyObject
*_wrap_ScrollBar_GetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12331 PyObject
*resultobj
= NULL
;
12332 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12334 PyObject
* obj0
= 0 ;
12335 char *kwnames
[] = {
12336 (char *) "self", NULL
12339 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrollBar_GetRange",kwnames
,&obj0
)) goto fail
;
12340 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12341 if (SWIG_arg_fail(1)) SWIG_fail
;
12343 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12344 result
= (int)((wxScrollBar
const *)arg1
)->GetRange();
12346 wxPyEndAllowThreads(__tstate
);
12347 if (PyErr_Occurred()) SWIG_fail
;
12350 resultobj
= SWIG_From_int(static_cast<int >(result
));
12358 static PyObject
*_wrap_ScrollBar_IsVertical(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12359 PyObject
*resultobj
= NULL
;
12360 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12362 PyObject
* obj0
= 0 ;
12363 char *kwnames
[] = {
12364 (char *) "self", NULL
12367 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrollBar_IsVertical",kwnames
,&obj0
)) goto fail
;
12368 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12369 if (SWIG_arg_fail(1)) SWIG_fail
;
12371 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12372 result
= (bool)((wxScrollBar
const *)arg1
)->IsVertical();
12374 wxPyEndAllowThreads(__tstate
);
12375 if (PyErr_Occurred()) SWIG_fail
;
12378 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12386 static PyObject
*_wrap_ScrollBar_SetThumbPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12387 PyObject
*resultobj
= NULL
;
12388 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12390 PyObject
* obj0
= 0 ;
12391 PyObject
* obj1
= 0 ;
12392 char *kwnames
[] = {
12393 (char *) "self",(char *) "viewStart", NULL
12396 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScrollBar_SetThumbPosition",kwnames
,&obj0
,&obj1
)) goto fail
;
12397 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12398 if (SWIG_arg_fail(1)) SWIG_fail
;
12400 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12401 if (SWIG_arg_fail(2)) SWIG_fail
;
12404 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12405 (arg1
)->SetThumbPosition(arg2
);
12407 wxPyEndAllowThreads(__tstate
);
12408 if (PyErr_Occurred()) SWIG_fail
;
12410 Py_INCREF(Py_None
); resultobj
= Py_None
;
12417 static PyObject
*_wrap_ScrollBar_SetScrollbar(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12418 PyObject
*resultobj
= NULL
;
12419 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12424 bool arg6
= (bool) true ;
12425 PyObject
* obj0
= 0 ;
12426 PyObject
* obj1
= 0 ;
12427 PyObject
* obj2
= 0 ;
12428 PyObject
* obj3
= 0 ;
12429 PyObject
* obj4
= 0 ;
12430 PyObject
* obj5
= 0 ;
12431 char *kwnames
[] = {
12432 (char *) "self",(char *) "position",(char *) "thumbSize",(char *) "range",(char *) "pageSize",(char *) "refresh", NULL
12435 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|O:ScrollBar_SetScrollbar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
12436 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12437 if (SWIG_arg_fail(1)) SWIG_fail
;
12439 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12440 if (SWIG_arg_fail(2)) SWIG_fail
;
12443 arg3
= static_cast<int >(SWIG_As_int(obj2
));
12444 if (SWIG_arg_fail(3)) SWIG_fail
;
12447 arg4
= static_cast<int >(SWIG_As_int(obj3
));
12448 if (SWIG_arg_fail(4)) SWIG_fail
;
12451 arg5
= static_cast<int >(SWIG_As_int(obj4
));
12452 if (SWIG_arg_fail(5)) SWIG_fail
;
12456 arg6
= static_cast<bool >(SWIG_As_bool(obj5
));
12457 if (SWIG_arg_fail(6)) SWIG_fail
;
12461 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12462 (arg1
)->SetScrollbar(arg2
,arg3
,arg4
,arg5
,arg6
);
12464 wxPyEndAllowThreads(__tstate
);
12465 if (PyErr_Occurred()) SWIG_fail
;
12467 Py_INCREF(Py_None
); resultobj
= Py_None
;
12474 static PyObject
*_wrap_ScrollBar_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12475 PyObject
*resultobj
= NULL
;
12476 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
12477 wxVisualAttributes result
;
12478 PyObject
* obj0
= 0 ;
12479 char *kwnames
[] = {
12480 (char *) "variant", NULL
12483 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ScrollBar_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
12486 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
12487 if (SWIG_arg_fail(1)) SWIG_fail
;
12491 if (!wxPyCheckForApp()) SWIG_fail
;
12492 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12493 result
= wxScrollBar::GetClassDefaultAttributes(arg1
);
12495 wxPyEndAllowThreads(__tstate
);
12496 if (PyErr_Occurred()) SWIG_fail
;
12499 wxVisualAttributes
* resultptr
;
12500 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
12501 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
12509 static PyObject
* ScrollBar_swigregister(PyObject
*, PyObject
*args
) {
12511 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
12512 SWIG_TypeClientData(SWIGTYPE_p_wxScrollBar
, obj
);
12514 return Py_BuildValue((char *)"");
12516 static int _wrap_SPIN_BUTTON_NAME_set(PyObject
*) {
12517 PyErr_SetString(PyExc_TypeError
,"Variable SPIN_BUTTON_NAME is read-only.");
12522 static PyObject
*_wrap_SPIN_BUTTON_NAME_get(void) {
12523 PyObject
*pyobj
= NULL
;
12527 pyobj
= PyUnicode_FromWideChar((&wxPySPIN_BUTTON_NAME
)->c_str(), (&wxPySPIN_BUTTON_NAME
)->Len());
12529 pyobj
= PyString_FromStringAndSize((&wxPySPIN_BUTTON_NAME
)->c_str(), (&wxPySPIN_BUTTON_NAME
)->Len());
12536 static int _wrap_SpinCtrlNameStr_set(PyObject
*) {
12537 PyErr_SetString(PyExc_TypeError
,"Variable SpinCtrlNameStr is read-only.");
12542 static PyObject
*_wrap_SpinCtrlNameStr_get(void) {
12543 PyObject
*pyobj
= NULL
;
12547 pyobj
= PyUnicode_FromWideChar((&wxPySpinCtrlNameStr
)->c_str(), (&wxPySpinCtrlNameStr
)->Len());
12549 pyobj
= PyString_FromStringAndSize((&wxPySpinCtrlNameStr
)->c_str(), (&wxPySpinCtrlNameStr
)->Len());
12556 static PyObject
*_wrap_new_SpinButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12557 PyObject
*resultobj
= NULL
;
12558 wxWindow
*arg1
= (wxWindow
*) 0 ;
12559 int arg2
= (int) -1 ;
12560 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
12561 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
12562 wxSize
const &arg4_defvalue
= wxDefaultSize
;
12563 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
12564 long arg5
= (long) wxSP_HORIZONTAL
;
12565 wxString
const &arg6_defvalue
= wxPySPIN_BUTTON_NAME
;
12566 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
12567 wxSpinButton
*result
;
12570 bool temp6
= false ;
12571 PyObject
* obj0
= 0 ;
12572 PyObject
* obj1
= 0 ;
12573 PyObject
* obj2
= 0 ;
12574 PyObject
* obj3
= 0 ;
12575 PyObject
* obj4
= 0 ;
12576 PyObject
* obj5
= 0 ;
12577 char *kwnames
[] = {
12578 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
12581 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_SpinButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
12582 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
12583 if (SWIG_arg_fail(1)) SWIG_fail
;
12586 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12587 if (SWIG_arg_fail(2)) SWIG_fail
;
12593 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
12599 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
12604 arg5
= static_cast<long >(SWIG_As_long(obj4
));
12605 if (SWIG_arg_fail(5)) SWIG_fail
;
12610 arg6
= wxString_in_helper(obj5
);
12611 if (arg6
== NULL
) SWIG_fail
;
12616 if (!wxPyCheckForApp()) SWIG_fail
;
12617 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12618 result
= (wxSpinButton
*)new wxSpinButton(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
12620 wxPyEndAllowThreads(__tstate
);
12621 if (PyErr_Occurred()) SWIG_fail
;
12623 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSpinButton
, 1);
12638 static PyObject
*_wrap_new_PreSpinButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12639 PyObject
*resultobj
= NULL
;
12640 wxSpinButton
*result
;
12641 char *kwnames
[] = {
12645 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreSpinButton",kwnames
)) goto fail
;
12647 if (!wxPyCheckForApp()) SWIG_fail
;
12648 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12649 result
= (wxSpinButton
*)new wxSpinButton();
12651 wxPyEndAllowThreads(__tstate
);
12652 if (PyErr_Occurred()) SWIG_fail
;
12654 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSpinButton
, 1);
12661 static PyObject
*_wrap_SpinButton_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12662 PyObject
*resultobj
= NULL
;
12663 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12664 wxWindow
*arg2
= (wxWindow
*) 0 ;
12665 int arg3
= (int) -1 ;
12666 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
12667 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
12668 wxSize
const &arg5_defvalue
= wxDefaultSize
;
12669 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
12670 long arg6
= (long) wxSP_HORIZONTAL
;
12671 wxString
const &arg7_defvalue
= wxPySPIN_BUTTON_NAME
;
12672 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
12676 bool temp7
= false ;
12677 PyObject
* obj0
= 0 ;
12678 PyObject
* obj1
= 0 ;
12679 PyObject
* obj2
= 0 ;
12680 PyObject
* obj3
= 0 ;
12681 PyObject
* obj4
= 0 ;
12682 PyObject
* obj5
= 0 ;
12683 PyObject
* obj6
= 0 ;
12684 char *kwnames
[] = {
12685 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
12688 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:SpinButton_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
12689 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12690 if (SWIG_arg_fail(1)) SWIG_fail
;
12691 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
12692 if (SWIG_arg_fail(2)) SWIG_fail
;
12695 arg3
= static_cast<int >(SWIG_As_int(obj2
));
12696 if (SWIG_arg_fail(3)) SWIG_fail
;
12702 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
12708 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
12713 arg6
= static_cast<long >(SWIG_As_long(obj5
));
12714 if (SWIG_arg_fail(6)) SWIG_fail
;
12719 arg7
= wxString_in_helper(obj6
);
12720 if (arg7
== NULL
) SWIG_fail
;
12725 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12726 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
12728 wxPyEndAllowThreads(__tstate
);
12729 if (PyErr_Occurred()) SWIG_fail
;
12732 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12748 static PyObject
*_wrap_SpinButton_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12749 PyObject
*resultobj
= NULL
;
12750 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12752 PyObject
* obj0
= 0 ;
12753 char *kwnames
[] = {
12754 (char *) "self", NULL
12757 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinButton_GetValue",kwnames
,&obj0
)) goto fail
;
12758 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12759 if (SWIG_arg_fail(1)) SWIG_fail
;
12761 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12762 result
= (int)((wxSpinButton
const *)arg1
)->GetValue();
12764 wxPyEndAllowThreads(__tstate
);
12765 if (PyErr_Occurred()) SWIG_fail
;
12768 resultobj
= SWIG_From_int(static_cast<int >(result
));
12776 static PyObject
*_wrap_SpinButton_GetMin(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12777 PyObject
*resultobj
= NULL
;
12778 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12780 PyObject
* obj0
= 0 ;
12781 char *kwnames
[] = {
12782 (char *) "self", NULL
12785 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinButton_GetMin",kwnames
,&obj0
)) goto fail
;
12786 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12787 if (SWIG_arg_fail(1)) SWIG_fail
;
12789 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12790 result
= (int)((wxSpinButton
const *)arg1
)->GetMin();
12792 wxPyEndAllowThreads(__tstate
);
12793 if (PyErr_Occurred()) SWIG_fail
;
12796 resultobj
= SWIG_From_int(static_cast<int >(result
));
12804 static PyObject
*_wrap_SpinButton_GetMax(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12805 PyObject
*resultobj
= NULL
;
12806 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12808 PyObject
* obj0
= 0 ;
12809 char *kwnames
[] = {
12810 (char *) "self", NULL
12813 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinButton_GetMax",kwnames
,&obj0
)) goto fail
;
12814 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12815 if (SWIG_arg_fail(1)) SWIG_fail
;
12817 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12818 result
= (int)((wxSpinButton
const *)arg1
)->GetMax();
12820 wxPyEndAllowThreads(__tstate
);
12821 if (PyErr_Occurred()) SWIG_fail
;
12824 resultobj
= SWIG_From_int(static_cast<int >(result
));
12832 static PyObject
*_wrap_SpinButton_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12833 PyObject
*resultobj
= NULL
;
12834 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12836 PyObject
* obj0
= 0 ;
12837 PyObject
* obj1
= 0 ;
12838 char *kwnames
[] = {
12839 (char *) "self",(char *) "val", NULL
12842 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SpinButton_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
12843 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12844 if (SWIG_arg_fail(1)) SWIG_fail
;
12846 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12847 if (SWIG_arg_fail(2)) SWIG_fail
;
12850 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12851 (arg1
)->SetValue(arg2
);
12853 wxPyEndAllowThreads(__tstate
);
12854 if (PyErr_Occurred()) SWIG_fail
;
12856 Py_INCREF(Py_None
); resultobj
= Py_None
;
12863 static PyObject
*_wrap_SpinButton_SetMin(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12864 PyObject
*resultobj
= NULL
;
12865 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12867 PyObject
* obj0
= 0 ;
12868 PyObject
* obj1
= 0 ;
12869 char *kwnames
[] = {
12870 (char *) "self",(char *) "minVal", NULL
12873 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SpinButton_SetMin",kwnames
,&obj0
,&obj1
)) goto fail
;
12874 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12875 if (SWIG_arg_fail(1)) SWIG_fail
;
12877 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12878 if (SWIG_arg_fail(2)) SWIG_fail
;
12881 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12882 (arg1
)->SetMin(arg2
);
12884 wxPyEndAllowThreads(__tstate
);
12885 if (PyErr_Occurred()) SWIG_fail
;
12887 Py_INCREF(Py_None
); resultobj
= Py_None
;
12894 static PyObject
*_wrap_SpinButton_SetMax(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12895 PyObject
*resultobj
= NULL
;
12896 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12898 PyObject
* obj0
= 0 ;
12899 PyObject
* obj1
= 0 ;
12900 char *kwnames
[] = {
12901 (char *) "self",(char *) "maxVal", NULL
12904 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SpinButton_SetMax",kwnames
,&obj0
,&obj1
)) goto fail
;
12905 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12906 if (SWIG_arg_fail(1)) SWIG_fail
;
12908 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12909 if (SWIG_arg_fail(2)) SWIG_fail
;
12912 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12913 (arg1
)->SetMax(arg2
);
12915 wxPyEndAllowThreads(__tstate
);
12916 if (PyErr_Occurred()) SWIG_fail
;
12918 Py_INCREF(Py_None
); resultobj
= Py_None
;
12925 static PyObject
*_wrap_SpinButton_SetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12926 PyObject
*resultobj
= NULL
;
12927 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12930 PyObject
* obj0
= 0 ;
12931 PyObject
* obj1
= 0 ;
12932 PyObject
* obj2
= 0 ;
12933 char *kwnames
[] = {
12934 (char *) "self",(char *) "minVal",(char *) "maxVal", NULL
12937 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:SpinButton_SetRange",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
12938 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12939 if (SWIG_arg_fail(1)) SWIG_fail
;
12941 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12942 if (SWIG_arg_fail(2)) SWIG_fail
;
12945 arg3
= static_cast<int >(SWIG_As_int(obj2
));
12946 if (SWIG_arg_fail(3)) SWIG_fail
;
12949 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12950 (arg1
)->SetRange(arg2
,arg3
);
12952 wxPyEndAllowThreads(__tstate
);
12953 if (PyErr_Occurred()) SWIG_fail
;
12955 Py_INCREF(Py_None
); resultobj
= Py_None
;
12962 static PyObject
*_wrap_SpinButton_IsVertical(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12963 PyObject
*resultobj
= NULL
;
12964 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12966 PyObject
* obj0
= 0 ;
12967 char *kwnames
[] = {
12968 (char *) "self", NULL
12971 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinButton_IsVertical",kwnames
,&obj0
)) goto fail
;
12972 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12973 if (SWIG_arg_fail(1)) SWIG_fail
;
12975 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12976 result
= (bool)((wxSpinButton
const *)arg1
)->IsVertical();
12978 wxPyEndAllowThreads(__tstate
);
12979 if (PyErr_Occurred()) SWIG_fail
;
12982 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12990 static PyObject
*_wrap_SpinButton_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12991 PyObject
*resultobj
= NULL
;
12992 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
12993 wxVisualAttributes result
;
12994 PyObject
* obj0
= 0 ;
12995 char *kwnames
[] = {
12996 (char *) "variant", NULL
12999 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:SpinButton_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
13002 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
13003 if (SWIG_arg_fail(1)) SWIG_fail
;
13007 if (!wxPyCheckForApp()) SWIG_fail
;
13008 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13009 result
= wxSpinButton::GetClassDefaultAttributes(arg1
);
13011 wxPyEndAllowThreads(__tstate
);
13012 if (PyErr_Occurred()) SWIG_fail
;
13015 wxVisualAttributes
* resultptr
;
13016 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
13017 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
13025 static PyObject
* SpinButton_swigregister(PyObject
*, PyObject
*args
) {
13027 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
13028 SWIG_TypeClientData(SWIGTYPE_p_wxSpinButton
, obj
);
13030 return Py_BuildValue((char *)"");
13032 static PyObject
*_wrap_new_SpinCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13033 PyObject
*resultobj
= NULL
;
13034 wxWindow
*arg1
= (wxWindow
*) 0 ;
13035 int arg2
= (int) -1 ;
13036 wxString
const &arg3_defvalue
= wxPyEmptyString
;
13037 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
13038 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
13039 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
13040 wxSize
const &arg5_defvalue
= wxDefaultSize
;
13041 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
13042 long arg6
= (long) wxSP_ARROW_KEYS
;
13043 int arg7
= (int) 0 ;
13044 int arg8
= (int) 100 ;
13045 int arg9
= (int) 0 ;
13046 wxString
const &arg10_defvalue
= wxPySpinCtrlNameStr
;
13047 wxString
*arg10
= (wxString
*) &arg10_defvalue
;
13048 wxSpinCtrl
*result
;
13049 bool temp3
= false ;
13052 bool temp10
= false ;
13053 PyObject
* obj0
= 0 ;
13054 PyObject
* obj1
= 0 ;
13055 PyObject
* obj2
= 0 ;
13056 PyObject
* obj3
= 0 ;
13057 PyObject
* obj4
= 0 ;
13058 PyObject
* obj5
= 0 ;
13059 PyObject
* obj6
= 0 ;
13060 PyObject
* obj7
= 0 ;
13061 PyObject
* obj8
= 0 ;
13062 PyObject
* obj9
= 0 ;
13063 char *kwnames
[] = {
13064 (char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "style",(char *) "min",(char *) "max",(char *) "initial",(char *) "name", NULL
13067 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOOOO:new_SpinCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) goto fail
;
13068 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
13069 if (SWIG_arg_fail(1)) SWIG_fail
;
13072 arg2
= static_cast<int >(SWIG_As_int(obj1
));
13073 if (SWIG_arg_fail(2)) SWIG_fail
;
13078 arg3
= wxString_in_helper(obj2
);
13079 if (arg3
== NULL
) SWIG_fail
;
13086 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
13092 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
13097 arg6
= static_cast<long >(SWIG_As_long(obj5
));
13098 if (SWIG_arg_fail(6)) SWIG_fail
;
13103 arg7
= static_cast<int >(SWIG_As_int(obj6
));
13104 if (SWIG_arg_fail(7)) SWIG_fail
;
13109 arg8
= static_cast<int >(SWIG_As_int(obj7
));
13110 if (SWIG_arg_fail(8)) SWIG_fail
;
13115 arg9
= static_cast<int >(SWIG_As_int(obj8
));
13116 if (SWIG_arg_fail(9)) SWIG_fail
;
13121 arg10
= wxString_in_helper(obj9
);
13122 if (arg10
== NULL
) SWIG_fail
;
13127 if (!wxPyCheckForApp()) SWIG_fail
;
13128 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13129 result
= (wxSpinCtrl
*)new wxSpinCtrl(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,arg7
,arg8
,arg9
,(wxString
const &)*arg10
);
13131 wxPyEndAllowThreads(__tstate
);
13132 if (PyErr_Occurred()) SWIG_fail
;
13134 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSpinCtrl
, 1);
13157 static PyObject
*_wrap_new_PreSpinCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13158 PyObject
*resultobj
= NULL
;
13159 wxSpinCtrl
*result
;
13160 char *kwnames
[] = {
13164 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreSpinCtrl",kwnames
)) goto fail
;
13166 if (!wxPyCheckForApp()) SWIG_fail
;
13167 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13168 result
= (wxSpinCtrl
*)new wxSpinCtrl();
13170 wxPyEndAllowThreads(__tstate
);
13171 if (PyErr_Occurred()) SWIG_fail
;
13173 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSpinCtrl
, 1);
13180 static PyObject
*_wrap_SpinCtrl_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13181 PyObject
*resultobj
= NULL
;
13182 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13183 wxWindow
*arg2
= (wxWindow
*) 0 ;
13184 int arg3
= (int) -1 ;
13185 wxString
const &arg4_defvalue
= wxPyEmptyString
;
13186 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
13187 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
13188 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
13189 wxSize
const &arg6_defvalue
= wxDefaultSize
;
13190 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
13191 long arg7
= (long) wxSP_ARROW_KEYS
;
13192 int arg8
= (int) 0 ;
13193 int arg9
= (int) 100 ;
13194 int arg10
= (int) 0 ;
13195 wxString
const &arg11_defvalue
= wxPySpinCtrlNameStr
;
13196 wxString
*arg11
= (wxString
*) &arg11_defvalue
;
13198 bool temp4
= false ;
13201 bool temp11
= false ;
13202 PyObject
* obj0
= 0 ;
13203 PyObject
* obj1
= 0 ;
13204 PyObject
* obj2
= 0 ;
13205 PyObject
* obj3
= 0 ;
13206 PyObject
* obj4
= 0 ;
13207 PyObject
* obj5
= 0 ;
13208 PyObject
* obj6
= 0 ;
13209 PyObject
* obj7
= 0 ;
13210 PyObject
* obj8
= 0 ;
13211 PyObject
* obj9
= 0 ;
13212 PyObject
* obj10
= 0 ;
13213 char *kwnames
[] = {
13214 (char *) "self",(char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "style",(char *) "min",(char *) "max",(char *) "initial",(char *) "name", NULL
13217 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOOOO:SpinCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
,&obj10
)) goto fail
;
13218 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13219 if (SWIG_arg_fail(1)) SWIG_fail
;
13220 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
13221 if (SWIG_arg_fail(2)) SWIG_fail
;
13224 arg3
= static_cast<int >(SWIG_As_int(obj2
));
13225 if (SWIG_arg_fail(3)) SWIG_fail
;
13230 arg4
= wxString_in_helper(obj3
);
13231 if (arg4
== NULL
) SWIG_fail
;
13238 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
13244 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
13249 arg7
= static_cast<long >(SWIG_As_long(obj6
));
13250 if (SWIG_arg_fail(7)) SWIG_fail
;
13255 arg8
= static_cast<int >(SWIG_As_int(obj7
));
13256 if (SWIG_arg_fail(8)) SWIG_fail
;
13261 arg9
= static_cast<int >(SWIG_As_int(obj8
));
13262 if (SWIG_arg_fail(9)) SWIG_fail
;
13267 arg10
= static_cast<int >(SWIG_As_int(obj9
));
13268 if (SWIG_arg_fail(10)) SWIG_fail
;
13273 arg11
= wxString_in_helper(obj10
);
13274 if (arg11
== NULL
) SWIG_fail
;
13279 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13280 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,arg8
,arg9
,arg10
,(wxString
const &)*arg11
);
13282 wxPyEndAllowThreads(__tstate
);
13283 if (PyErr_Occurred()) SWIG_fail
;
13286 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13310 static PyObject
*_wrap_SpinCtrl_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13311 PyObject
*resultobj
= NULL
;
13312 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13314 PyObject
* obj0
= 0 ;
13315 char *kwnames
[] = {
13316 (char *) "self", NULL
13319 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinCtrl_GetValue",kwnames
,&obj0
)) goto fail
;
13320 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13321 if (SWIG_arg_fail(1)) SWIG_fail
;
13323 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13324 result
= (int)((wxSpinCtrl
const *)arg1
)->GetValue();
13326 wxPyEndAllowThreads(__tstate
);
13327 if (PyErr_Occurred()) SWIG_fail
;
13330 resultobj
= SWIG_From_int(static_cast<int >(result
));
13338 static PyObject
*_wrap_SpinCtrl_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13339 PyObject
*resultobj
= NULL
;
13340 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13342 PyObject
* obj0
= 0 ;
13343 PyObject
* obj1
= 0 ;
13344 char *kwnames
[] = {
13345 (char *) "self",(char *) "value", NULL
13348 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SpinCtrl_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
13349 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13350 if (SWIG_arg_fail(1)) SWIG_fail
;
13352 arg2
= static_cast<int >(SWIG_As_int(obj1
));
13353 if (SWIG_arg_fail(2)) SWIG_fail
;
13356 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13357 (arg1
)->SetValue(arg2
);
13359 wxPyEndAllowThreads(__tstate
);
13360 if (PyErr_Occurred()) SWIG_fail
;
13362 Py_INCREF(Py_None
); resultobj
= Py_None
;
13369 static PyObject
*_wrap_SpinCtrl_SetValueString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13370 PyObject
*resultobj
= NULL
;
13371 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13372 wxString
*arg2
= 0 ;
13373 bool temp2
= false ;
13374 PyObject
* obj0
= 0 ;
13375 PyObject
* obj1
= 0 ;
13376 char *kwnames
[] = {
13377 (char *) "self",(char *) "text", NULL
13380 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SpinCtrl_SetValueString",kwnames
,&obj0
,&obj1
)) goto fail
;
13381 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13382 if (SWIG_arg_fail(1)) SWIG_fail
;
13384 arg2
= wxString_in_helper(obj1
);
13385 if (arg2
== NULL
) SWIG_fail
;
13389 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13390 (arg1
)->SetValue((wxString
const &)*arg2
);
13392 wxPyEndAllowThreads(__tstate
);
13393 if (PyErr_Occurred()) SWIG_fail
;
13395 Py_INCREF(Py_None
); resultobj
= Py_None
;
13410 static PyObject
*_wrap_SpinCtrl_SetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13411 PyObject
*resultobj
= NULL
;
13412 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13415 PyObject
* obj0
= 0 ;
13416 PyObject
* obj1
= 0 ;
13417 PyObject
* obj2
= 0 ;
13418 char *kwnames
[] = {
13419 (char *) "self",(char *) "minVal",(char *) "maxVal", NULL
13422 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:SpinCtrl_SetRange",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
13423 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13424 if (SWIG_arg_fail(1)) SWIG_fail
;
13426 arg2
= static_cast<int >(SWIG_As_int(obj1
));
13427 if (SWIG_arg_fail(2)) SWIG_fail
;
13430 arg3
= static_cast<int >(SWIG_As_int(obj2
));
13431 if (SWIG_arg_fail(3)) SWIG_fail
;
13434 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13435 (arg1
)->SetRange(arg2
,arg3
);
13437 wxPyEndAllowThreads(__tstate
);
13438 if (PyErr_Occurred()) SWIG_fail
;
13440 Py_INCREF(Py_None
); resultobj
= Py_None
;
13447 static PyObject
*_wrap_SpinCtrl_GetMin(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13448 PyObject
*resultobj
= NULL
;
13449 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13451 PyObject
* obj0
= 0 ;
13452 char *kwnames
[] = {
13453 (char *) "self", NULL
13456 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinCtrl_GetMin",kwnames
,&obj0
)) goto fail
;
13457 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13458 if (SWIG_arg_fail(1)) SWIG_fail
;
13460 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13461 result
= (int)((wxSpinCtrl
const *)arg1
)->GetMin();
13463 wxPyEndAllowThreads(__tstate
);
13464 if (PyErr_Occurred()) SWIG_fail
;
13467 resultobj
= SWIG_From_int(static_cast<int >(result
));
13475 static PyObject
*_wrap_SpinCtrl_GetMax(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13476 PyObject
*resultobj
= NULL
;
13477 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13479 PyObject
* obj0
= 0 ;
13480 char *kwnames
[] = {
13481 (char *) "self", NULL
13484 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinCtrl_GetMax",kwnames
,&obj0
)) goto fail
;
13485 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13486 if (SWIG_arg_fail(1)) SWIG_fail
;
13488 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13489 result
= (int)((wxSpinCtrl
const *)arg1
)->GetMax();
13491 wxPyEndAllowThreads(__tstate
);
13492 if (PyErr_Occurred()) SWIG_fail
;
13495 resultobj
= SWIG_From_int(static_cast<int >(result
));
13503 static PyObject
*_wrap_SpinCtrl_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13504 PyObject
*resultobj
= NULL
;
13505 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13508 PyObject
* obj0
= 0 ;
13509 PyObject
* obj1
= 0 ;
13510 PyObject
* obj2
= 0 ;
13511 char *kwnames
[] = {
13512 (char *) "self",(char *) "from",(char *) "to", NULL
13515 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:SpinCtrl_SetSelection",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
13516 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13517 if (SWIG_arg_fail(1)) SWIG_fail
;
13519 arg2
= static_cast<long >(SWIG_As_long(obj1
));
13520 if (SWIG_arg_fail(2)) SWIG_fail
;
13523 arg3
= static_cast<long >(SWIG_As_long(obj2
));
13524 if (SWIG_arg_fail(3)) SWIG_fail
;
13527 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13528 (arg1
)->SetSelection(arg2
,arg3
);
13530 wxPyEndAllowThreads(__tstate
);
13531 if (PyErr_Occurred()) SWIG_fail
;
13533 Py_INCREF(Py_None
); resultobj
= Py_None
;
13540 static PyObject
*_wrap_SpinCtrl_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13541 PyObject
*resultobj
= NULL
;
13542 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
13543 wxVisualAttributes result
;
13544 PyObject
* obj0
= 0 ;
13545 char *kwnames
[] = {
13546 (char *) "variant", NULL
13549 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:SpinCtrl_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
13552 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
13553 if (SWIG_arg_fail(1)) SWIG_fail
;
13557 if (!wxPyCheckForApp()) SWIG_fail
;
13558 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13559 result
= wxSpinCtrl::GetClassDefaultAttributes(arg1
);
13561 wxPyEndAllowThreads(__tstate
);
13562 if (PyErr_Occurred()) SWIG_fail
;
13565 wxVisualAttributes
* resultptr
;
13566 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
13567 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
13575 static PyObject
* SpinCtrl_swigregister(PyObject
*, PyObject
*args
) {
13577 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
13578 SWIG_TypeClientData(SWIGTYPE_p_wxSpinCtrl
, obj
);
13580 return Py_BuildValue((char *)"");
13582 static PyObject
*_wrap_new_SpinEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13583 PyObject
*resultobj
= NULL
;
13584 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
13585 int arg2
= (int) 0 ;
13586 wxSpinEvent
*result
;
13587 PyObject
* obj0
= 0 ;
13588 PyObject
* obj1
= 0 ;
13589 char *kwnames
[] = {
13590 (char *) "commandType",(char *) "winid", NULL
13593 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_SpinEvent",kwnames
,&obj0
,&obj1
)) goto fail
;
13596 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
13597 if (SWIG_arg_fail(1)) SWIG_fail
;
13602 arg2
= static_cast<int >(SWIG_As_int(obj1
));
13603 if (SWIG_arg_fail(2)) SWIG_fail
;
13607 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13608 result
= (wxSpinEvent
*)new wxSpinEvent(arg1
,arg2
);
13610 wxPyEndAllowThreads(__tstate
);
13611 if (PyErr_Occurred()) SWIG_fail
;
13613 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSpinEvent
, 1);
13620 static PyObject
*_wrap_SpinEvent_GetPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13621 PyObject
*resultobj
= NULL
;
13622 wxSpinEvent
*arg1
= (wxSpinEvent
*) 0 ;
13624 PyObject
* obj0
= 0 ;
13625 char *kwnames
[] = {
13626 (char *) "self", NULL
13629 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinEvent_GetPosition",kwnames
,&obj0
)) goto fail
;
13630 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinEvent
, SWIG_POINTER_EXCEPTION
| 0);
13631 if (SWIG_arg_fail(1)) SWIG_fail
;
13633 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13634 result
= (int)((wxSpinEvent
const *)arg1
)->GetPosition();
13636 wxPyEndAllowThreads(__tstate
);
13637 if (PyErr_Occurred()) SWIG_fail
;
13640 resultobj
= SWIG_From_int(static_cast<int >(result
));
13648 static PyObject
*_wrap_SpinEvent_SetPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13649 PyObject
*resultobj
= NULL
;
13650 wxSpinEvent
*arg1
= (wxSpinEvent
*) 0 ;
13652 PyObject
* obj0
= 0 ;
13653 PyObject
* obj1
= 0 ;
13654 char *kwnames
[] = {
13655 (char *) "self",(char *) "pos", NULL
13658 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SpinEvent_SetPosition",kwnames
,&obj0
,&obj1
)) goto fail
;
13659 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinEvent
, SWIG_POINTER_EXCEPTION
| 0);
13660 if (SWIG_arg_fail(1)) SWIG_fail
;
13662 arg2
= static_cast<int >(SWIG_As_int(obj1
));
13663 if (SWIG_arg_fail(2)) SWIG_fail
;
13666 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13667 (arg1
)->SetPosition(arg2
);
13669 wxPyEndAllowThreads(__tstate
);
13670 if (PyErr_Occurred()) SWIG_fail
;
13672 Py_INCREF(Py_None
); resultobj
= Py_None
;
13679 static PyObject
* SpinEvent_swigregister(PyObject
*, PyObject
*args
) {
13681 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
13682 SWIG_TypeClientData(SWIGTYPE_p_wxSpinEvent
, obj
);
13684 return Py_BuildValue((char *)"");
13686 static int _wrap_RadioBoxNameStr_set(PyObject
*) {
13687 PyErr_SetString(PyExc_TypeError
,"Variable RadioBoxNameStr is read-only.");
13692 static PyObject
*_wrap_RadioBoxNameStr_get(void) {
13693 PyObject
*pyobj
= NULL
;
13697 pyobj
= PyUnicode_FromWideChar((&wxPyRadioBoxNameStr
)->c_str(), (&wxPyRadioBoxNameStr
)->Len());
13699 pyobj
= PyString_FromStringAndSize((&wxPyRadioBoxNameStr
)->c_str(), (&wxPyRadioBoxNameStr
)->Len());
13706 static int _wrap_RadioButtonNameStr_set(PyObject
*) {
13707 PyErr_SetString(PyExc_TypeError
,"Variable RadioButtonNameStr is read-only.");
13712 static PyObject
*_wrap_RadioButtonNameStr_get(void) {
13713 PyObject
*pyobj
= NULL
;
13717 pyobj
= PyUnicode_FromWideChar((&wxPyRadioButtonNameStr
)->c_str(), (&wxPyRadioButtonNameStr
)->Len());
13719 pyobj
= PyString_FromStringAndSize((&wxPyRadioButtonNameStr
)->c_str(), (&wxPyRadioButtonNameStr
)->Len());
13726 static PyObject
*_wrap_new_RadioBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13727 PyObject
*resultobj
= NULL
;
13728 wxWindow
*arg1
= (wxWindow
*) 0 ;
13729 int arg2
= (int) -1 ;
13730 wxString
const &arg3_defvalue
= wxPyEmptyString
;
13731 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
13732 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
13733 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
13734 wxSize
const &arg5_defvalue
= wxDefaultSize
;
13735 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
13736 wxArrayString
const &arg6_defvalue
= wxPyEmptyStringArray
;
13737 wxArrayString
*arg6
= (wxArrayString
*) &arg6_defvalue
;
13738 int arg7
= (int) 0 ;
13739 long arg8
= (long) wxRA_HORIZONTAL
;
13740 wxValidator
const &arg9_defvalue
= wxDefaultValidator
;
13741 wxValidator
*arg9
= (wxValidator
*) &arg9_defvalue
;
13742 wxString
const &arg10_defvalue
= wxPyRadioBoxNameStr
;
13743 wxString
*arg10
= (wxString
*) &arg10_defvalue
;
13744 wxRadioBox
*result
;
13745 bool temp3
= false ;
13748 bool temp6
= false ;
13749 bool temp10
= false ;
13750 PyObject
* obj0
= 0 ;
13751 PyObject
* obj1
= 0 ;
13752 PyObject
* obj2
= 0 ;
13753 PyObject
* obj3
= 0 ;
13754 PyObject
* obj4
= 0 ;
13755 PyObject
* obj5
= 0 ;
13756 PyObject
* obj6
= 0 ;
13757 PyObject
* obj7
= 0 ;
13758 PyObject
* obj8
= 0 ;
13759 PyObject
* obj9
= 0 ;
13760 char *kwnames
[] = {
13761 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "choices",(char *) "majorDimension",(char *) "style",(char *) "validator",(char *) "name", NULL
13764 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOOOO:new_RadioBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) goto fail
;
13765 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
13766 if (SWIG_arg_fail(1)) SWIG_fail
;
13769 arg2
= static_cast<int >(SWIG_As_int(obj1
));
13770 if (SWIG_arg_fail(2)) SWIG_fail
;
13775 arg3
= wxString_in_helper(obj2
);
13776 if (arg3
== NULL
) SWIG_fail
;
13783 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
13789 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
13794 if (! PySequence_Check(obj5
)) {
13795 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
13798 arg6
= new wxArrayString
;
13800 int i
, len
=PySequence_Length(obj5
);
13801 for (i
=0; i
<len
; i
++) {
13802 PyObject
* item
= PySequence_GetItem(obj5
, i
);
13803 wxString
* s
= wxString_in_helper(item
);
13804 if (PyErr_Occurred()) SWIG_fail
;
13813 arg7
= static_cast<int >(SWIG_As_int(obj6
));
13814 if (SWIG_arg_fail(7)) SWIG_fail
;
13819 arg8
= static_cast<long >(SWIG_As_long(obj7
));
13820 if (SWIG_arg_fail(8)) SWIG_fail
;
13825 SWIG_Python_ConvertPtr(obj8
, (void **)&arg9
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
13826 if (SWIG_arg_fail(9)) SWIG_fail
;
13827 if (arg9
== NULL
) {
13828 SWIG_null_ref("wxValidator");
13830 if (SWIG_arg_fail(9)) SWIG_fail
;
13835 arg10
= wxString_in_helper(obj9
);
13836 if (arg10
== NULL
) SWIG_fail
;
13841 if (!wxPyCheckForApp()) SWIG_fail
;
13842 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13843 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
);
13845 wxPyEndAllowThreads(__tstate
);
13846 if (PyErr_Occurred()) SWIG_fail
;
13848 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxRadioBox
, 1);
13854 if (temp6
) delete arg6
;
13867 if (temp6
) delete arg6
;
13877 static PyObject
*_wrap_new_PreRadioBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13878 PyObject
*resultobj
= NULL
;
13879 wxRadioBox
*result
;
13880 char *kwnames
[] = {
13884 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreRadioBox",kwnames
)) goto fail
;
13886 if (!wxPyCheckForApp()) SWIG_fail
;
13887 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13888 result
= (wxRadioBox
*)new wxRadioBox();
13890 wxPyEndAllowThreads(__tstate
);
13891 if (PyErr_Occurred()) SWIG_fail
;
13893 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxRadioBox
, 1);
13900 static PyObject
*_wrap_RadioBox_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13901 PyObject
*resultobj
= NULL
;
13902 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
13903 wxWindow
*arg2
= (wxWindow
*) 0 ;
13904 int arg3
= (int) -1 ;
13905 wxString
const &arg4_defvalue
= wxPyEmptyString
;
13906 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
13907 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
13908 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
13909 wxSize
const &arg6_defvalue
= wxDefaultSize
;
13910 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
13911 wxArrayString
const &arg7_defvalue
= wxPyEmptyStringArray
;
13912 wxArrayString
*arg7
= (wxArrayString
*) &arg7_defvalue
;
13913 int arg8
= (int) 0 ;
13914 long arg9
= (long) wxRA_HORIZONTAL
;
13915 wxValidator
const &arg10_defvalue
= wxDefaultValidator
;
13916 wxValidator
*arg10
= (wxValidator
*) &arg10_defvalue
;
13917 wxString
const &arg11_defvalue
= wxPyRadioBoxNameStr
;
13918 wxString
*arg11
= (wxString
*) &arg11_defvalue
;
13920 bool temp4
= false ;
13923 bool temp7
= false ;
13924 bool temp11
= false ;
13925 PyObject
* obj0
= 0 ;
13926 PyObject
* obj1
= 0 ;
13927 PyObject
* obj2
= 0 ;
13928 PyObject
* obj3
= 0 ;
13929 PyObject
* obj4
= 0 ;
13930 PyObject
* obj5
= 0 ;
13931 PyObject
* obj6
= 0 ;
13932 PyObject
* obj7
= 0 ;
13933 PyObject
* obj8
= 0 ;
13934 PyObject
* obj9
= 0 ;
13935 PyObject
* obj10
= 0 ;
13936 char *kwnames
[] = {
13937 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "choices",(char *) "majorDimension",(char *) "style",(char *) "validator",(char *) "name", NULL
13940 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOOOO:RadioBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
,&obj10
)) goto fail
;
13941 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
13942 if (SWIG_arg_fail(1)) SWIG_fail
;
13943 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
13944 if (SWIG_arg_fail(2)) SWIG_fail
;
13947 arg3
= static_cast<int >(SWIG_As_int(obj2
));
13948 if (SWIG_arg_fail(3)) SWIG_fail
;
13953 arg4
= wxString_in_helper(obj3
);
13954 if (arg4
== NULL
) SWIG_fail
;
13961 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
13967 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
13972 if (! PySequence_Check(obj6
)) {
13973 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
13976 arg7
= new wxArrayString
;
13978 int i
, len
=PySequence_Length(obj6
);
13979 for (i
=0; i
<len
; i
++) {
13980 PyObject
* item
= PySequence_GetItem(obj6
, i
);
13981 wxString
* s
= wxString_in_helper(item
);
13982 if (PyErr_Occurred()) SWIG_fail
;
13991 arg8
= static_cast<int >(SWIG_As_int(obj7
));
13992 if (SWIG_arg_fail(8)) SWIG_fail
;
13997 arg9
= static_cast<long >(SWIG_As_long(obj8
));
13998 if (SWIG_arg_fail(9)) SWIG_fail
;
14003 SWIG_Python_ConvertPtr(obj9
, (void **)&arg10
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
14004 if (SWIG_arg_fail(10)) SWIG_fail
;
14005 if (arg10
== NULL
) {
14006 SWIG_null_ref("wxValidator");
14008 if (SWIG_arg_fail(10)) SWIG_fail
;
14013 arg11
= wxString_in_helper(obj10
);
14014 if (arg11
== NULL
) SWIG_fail
;
14019 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14020 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
);
14022 wxPyEndAllowThreads(__tstate
);
14023 if (PyErr_Occurred()) SWIG_fail
;
14026 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14033 if (temp7
) delete arg7
;
14046 if (temp7
) delete arg7
;
14056 static PyObject
*_wrap_RadioBox_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14057 PyObject
*resultobj
= NULL
;
14058 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14060 PyObject
* obj0
= 0 ;
14061 PyObject
* obj1
= 0 ;
14062 char *kwnames
[] = {
14063 (char *) "self",(char *) "n", NULL
14066 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:RadioBox_SetSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
14067 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14068 if (SWIG_arg_fail(1)) SWIG_fail
;
14070 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14071 if (SWIG_arg_fail(2)) SWIG_fail
;
14074 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14075 (arg1
)->SetSelection(arg2
);
14077 wxPyEndAllowThreads(__tstate
);
14078 if (PyErr_Occurred()) SWIG_fail
;
14080 Py_INCREF(Py_None
); resultobj
= Py_None
;
14087 static PyObject
*_wrap_RadioBox_GetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14088 PyObject
*resultobj
= NULL
;
14089 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14091 PyObject
* obj0
= 0 ;
14092 char *kwnames
[] = {
14093 (char *) "self", NULL
14096 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RadioBox_GetSelection",kwnames
,&obj0
)) goto fail
;
14097 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14098 if (SWIG_arg_fail(1)) SWIG_fail
;
14100 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14101 result
= (int)((wxRadioBox
const *)arg1
)->GetSelection();
14103 wxPyEndAllowThreads(__tstate
);
14104 if (PyErr_Occurred()) SWIG_fail
;
14107 resultobj
= SWIG_From_int(static_cast<int >(result
));
14115 static PyObject
*_wrap_RadioBox_GetStringSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14116 PyObject
*resultobj
= NULL
;
14117 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14119 PyObject
* obj0
= 0 ;
14120 char *kwnames
[] = {
14121 (char *) "self", NULL
14124 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RadioBox_GetStringSelection",kwnames
,&obj0
)) goto fail
;
14125 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14126 if (SWIG_arg_fail(1)) SWIG_fail
;
14128 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14129 result
= ((wxRadioBox
const *)arg1
)->GetStringSelection();
14131 wxPyEndAllowThreads(__tstate
);
14132 if (PyErr_Occurred()) SWIG_fail
;
14136 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
14138 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
14147 static PyObject
*_wrap_RadioBox_SetStringSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14148 PyObject
*resultobj
= NULL
;
14149 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14150 wxString
*arg2
= 0 ;
14152 bool temp2
= false ;
14153 PyObject
* obj0
= 0 ;
14154 PyObject
* obj1
= 0 ;
14155 char *kwnames
[] = {
14156 (char *) "self",(char *) "s", NULL
14159 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:RadioBox_SetStringSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
14160 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14161 if (SWIG_arg_fail(1)) SWIG_fail
;
14163 arg2
= wxString_in_helper(obj1
);
14164 if (arg2
== NULL
) SWIG_fail
;
14168 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14169 result
= (bool)(arg1
)->SetStringSelection((wxString
const &)*arg2
);
14171 wxPyEndAllowThreads(__tstate
);
14172 if (PyErr_Occurred()) SWIG_fail
;
14175 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14191 static PyObject
*_wrap_RadioBox_GetCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14192 PyObject
*resultobj
= NULL
;
14193 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14195 PyObject
* obj0
= 0 ;
14196 char *kwnames
[] = {
14197 (char *) "self", NULL
14200 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RadioBox_GetCount",kwnames
,&obj0
)) goto fail
;
14201 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14202 if (SWIG_arg_fail(1)) SWIG_fail
;
14204 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14205 result
= (int)((wxRadioBox
const *)arg1
)->GetCount();
14207 wxPyEndAllowThreads(__tstate
);
14208 if (PyErr_Occurred()) SWIG_fail
;
14211 resultobj
= SWIG_From_int(static_cast<int >(result
));
14219 static PyObject
*_wrap_RadioBox_FindString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14220 PyObject
*resultobj
= NULL
;
14221 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14222 wxString
*arg2
= 0 ;
14224 bool temp2
= false ;
14225 PyObject
* obj0
= 0 ;
14226 PyObject
* obj1
= 0 ;
14227 char *kwnames
[] = {
14228 (char *) "self",(char *) "s", NULL
14231 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:RadioBox_FindString",kwnames
,&obj0
,&obj1
)) goto fail
;
14232 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14233 if (SWIG_arg_fail(1)) SWIG_fail
;
14235 arg2
= wxString_in_helper(obj1
);
14236 if (arg2
== NULL
) SWIG_fail
;
14240 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14241 result
= (int)((wxRadioBox
const *)arg1
)->FindString((wxString
const &)*arg2
);
14243 wxPyEndAllowThreads(__tstate
);
14244 if (PyErr_Occurred()) SWIG_fail
;
14247 resultobj
= SWIG_From_int(static_cast<int >(result
));
14263 static PyObject
*_wrap_RadioBox_GetString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14264 PyObject
*resultobj
= NULL
;
14265 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14268 PyObject
* obj0
= 0 ;
14269 PyObject
* obj1
= 0 ;
14270 char *kwnames
[] = {
14271 (char *) "self",(char *) "n", NULL
14274 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:RadioBox_GetString",kwnames
,&obj0
,&obj1
)) goto fail
;
14275 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14276 if (SWIG_arg_fail(1)) SWIG_fail
;
14278 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14279 if (SWIG_arg_fail(2)) SWIG_fail
;
14282 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14283 result
= ((wxRadioBox
const *)arg1
)->GetString(arg2
);
14285 wxPyEndAllowThreads(__tstate
);
14286 if (PyErr_Occurred()) SWIG_fail
;
14290 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
14292 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
14301 static PyObject
*_wrap_RadioBox_SetString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14302 PyObject
*resultobj
= NULL
;
14303 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14305 wxString
*arg3
= 0 ;
14306 bool temp3
= false ;
14307 PyObject
* obj0
= 0 ;
14308 PyObject
* obj1
= 0 ;
14309 PyObject
* obj2
= 0 ;
14310 char *kwnames
[] = {
14311 (char *) "self",(char *) "n",(char *) "label", NULL
14314 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:RadioBox_SetString",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
14315 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14316 if (SWIG_arg_fail(1)) SWIG_fail
;
14318 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14319 if (SWIG_arg_fail(2)) SWIG_fail
;
14322 arg3
= wxString_in_helper(obj2
);
14323 if (arg3
== NULL
) SWIG_fail
;
14327 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14328 (arg1
)->SetString(arg2
,(wxString
const &)*arg3
);
14330 wxPyEndAllowThreads(__tstate
);
14331 if (PyErr_Occurred()) SWIG_fail
;
14333 Py_INCREF(Py_None
); resultobj
= Py_None
;
14348 static PyObject
*_wrap_RadioBox_EnableItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14349 PyObject
*resultobj
= NULL
;
14350 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14352 bool arg3
= (bool) true ;
14353 PyObject
* obj0
= 0 ;
14354 PyObject
* obj1
= 0 ;
14355 PyObject
* obj2
= 0 ;
14356 char *kwnames
[] = {
14357 (char *) "self",(char *) "n",(char *) "enable", NULL
14360 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:RadioBox_EnableItem",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
14361 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14362 if (SWIG_arg_fail(1)) SWIG_fail
;
14364 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14365 if (SWIG_arg_fail(2)) SWIG_fail
;
14369 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
14370 if (SWIG_arg_fail(3)) SWIG_fail
;
14374 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14375 (arg1
)->Enable(arg2
,arg3
);
14377 wxPyEndAllowThreads(__tstate
);
14378 if (PyErr_Occurred()) SWIG_fail
;
14380 Py_INCREF(Py_None
); resultobj
= Py_None
;
14387 static PyObject
*_wrap_RadioBox_ShowItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14388 PyObject
*resultobj
= NULL
;
14389 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14391 bool arg3
= (bool) true ;
14392 PyObject
* obj0
= 0 ;
14393 PyObject
* obj1
= 0 ;
14394 PyObject
* obj2
= 0 ;
14395 char *kwnames
[] = {
14396 (char *) "self",(char *) "n",(char *) "show", NULL
14399 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:RadioBox_ShowItem",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
14400 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14401 if (SWIG_arg_fail(1)) SWIG_fail
;
14403 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14404 if (SWIG_arg_fail(2)) SWIG_fail
;
14408 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
14409 if (SWIG_arg_fail(3)) SWIG_fail
;
14413 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14414 (arg1
)->Show(arg2
,arg3
);
14416 wxPyEndAllowThreads(__tstate
);
14417 if (PyErr_Occurred()) SWIG_fail
;
14419 Py_INCREF(Py_None
); resultobj
= Py_None
;
14426 static PyObject
*_wrap_RadioBox_GetColumnCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14427 PyObject
*resultobj
= NULL
;
14428 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14430 PyObject
* obj0
= 0 ;
14431 char *kwnames
[] = {
14432 (char *) "self", NULL
14435 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RadioBox_GetColumnCount",kwnames
,&obj0
)) goto fail
;
14436 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14437 if (SWIG_arg_fail(1)) SWIG_fail
;
14439 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14440 result
= (int)wxRadioBox_GetColumnCount((wxRadioBox
const *)arg1
);
14442 wxPyEndAllowThreads(__tstate
);
14443 if (PyErr_Occurred()) SWIG_fail
;
14446 resultobj
= SWIG_From_int(static_cast<int >(result
));
14454 static PyObject
*_wrap_RadioBox_GetRowCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14455 PyObject
*resultobj
= NULL
;
14456 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14458 PyObject
* obj0
= 0 ;
14459 char *kwnames
[] = {
14460 (char *) "self", NULL
14463 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RadioBox_GetRowCount",kwnames
,&obj0
)) goto fail
;
14464 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14465 if (SWIG_arg_fail(1)) SWIG_fail
;
14467 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14468 result
= (int)wxRadioBox_GetRowCount((wxRadioBox
const *)arg1
);
14470 wxPyEndAllowThreads(__tstate
);
14471 if (PyErr_Occurred()) SWIG_fail
;
14474 resultobj
= SWIG_From_int(static_cast<int >(result
));
14482 static PyObject
*_wrap_RadioBox_GetNextItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14483 PyObject
*resultobj
= NULL
;
14484 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14489 PyObject
* obj0
= 0 ;
14490 PyObject
* obj1
= 0 ;
14491 PyObject
* obj2
= 0 ;
14492 PyObject
* obj3
= 0 ;
14493 char *kwnames
[] = {
14494 (char *) "self",(char *) "item",(char *) "dir",(char *) "style", NULL
14497 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:RadioBox_GetNextItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
14498 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14499 if (SWIG_arg_fail(1)) SWIG_fail
;
14501 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14502 if (SWIG_arg_fail(2)) SWIG_fail
;
14505 arg3
= static_cast<wxDirection
>(SWIG_As_int(obj2
));
14506 if (SWIG_arg_fail(3)) SWIG_fail
;
14509 arg4
= static_cast<long >(SWIG_As_long(obj3
));
14510 if (SWIG_arg_fail(4)) SWIG_fail
;
14513 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14514 result
= (int)wxRadioBox_GetNextItem((wxRadioBox
const *)arg1
,arg2
,arg3
,arg4
);
14516 wxPyEndAllowThreads(__tstate
);
14517 if (PyErr_Occurred()) SWIG_fail
;
14520 resultobj
= SWIG_From_int(static_cast<int >(result
));
14528 static PyObject
*_wrap_RadioBox_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14529 PyObject
*resultobj
= NULL
;
14530 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
14531 wxVisualAttributes result
;
14532 PyObject
* obj0
= 0 ;
14533 char *kwnames
[] = {
14534 (char *) "variant", NULL
14537 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:RadioBox_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
14540 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
14541 if (SWIG_arg_fail(1)) SWIG_fail
;
14545 if (!wxPyCheckForApp()) SWIG_fail
;
14546 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14547 result
= wxRadioBox::GetClassDefaultAttributes(arg1
);
14549 wxPyEndAllowThreads(__tstate
);
14550 if (PyErr_Occurred()) SWIG_fail
;
14553 wxVisualAttributes
* resultptr
;
14554 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
14555 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
14563 static PyObject
* RadioBox_swigregister(PyObject
*, PyObject
*args
) {
14565 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
14566 SWIG_TypeClientData(SWIGTYPE_p_wxRadioBox
, obj
);
14568 return Py_BuildValue((char *)"");
14570 static PyObject
*_wrap_new_RadioButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14571 PyObject
*resultobj
= NULL
;
14572 wxWindow
*arg1
= (wxWindow
*) 0 ;
14573 int arg2
= (int) -1 ;
14574 wxString
const &arg3_defvalue
= wxPyEmptyString
;
14575 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
14576 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
14577 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
14578 wxSize
const &arg5_defvalue
= wxDefaultSize
;
14579 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
14580 long arg6
= (long) 0 ;
14581 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
14582 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
14583 wxString
const &arg8_defvalue
= wxPyRadioButtonNameStr
;
14584 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
14585 wxRadioButton
*result
;
14586 bool temp3
= false ;
14589 bool temp8
= false ;
14590 PyObject
* obj0
= 0 ;
14591 PyObject
* obj1
= 0 ;
14592 PyObject
* obj2
= 0 ;
14593 PyObject
* obj3
= 0 ;
14594 PyObject
* obj4
= 0 ;
14595 PyObject
* obj5
= 0 ;
14596 PyObject
* obj6
= 0 ;
14597 PyObject
* obj7
= 0 ;
14598 char *kwnames
[] = {
14599 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
14602 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_RadioButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
14603 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
14604 if (SWIG_arg_fail(1)) SWIG_fail
;
14607 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14608 if (SWIG_arg_fail(2)) SWIG_fail
;
14613 arg3
= wxString_in_helper(obj2
);
14614 if (arg3
== NULL
) SWIG_fail
;
14621 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
14627 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
14632 arg6
= static_cast<long >(SWIG_As_long(obj5
));
14633 if (SWIG_arg_fail(6)) SWIG_fail
;
14638 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
14639 if (SWIG_arg_fail(7)) SWIG_fail
;
14640 if (arg7
== NULL
) {
14641 SWIG_null_ref("wxValidator");
14643 if (SWIG_arg_fail(7)) SWIG_fail
;
14648 arg8
= wxString_in_helper(obj7
);
14649 if (arg8
== NULL
) SWIG_fail
;
14654 if (!wxPyCheckForApp()) SWIG_fail
;
14655 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14656 result
= (wxRadioButton
*)new wxRadioButton(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
14658 wxPyEndAllowThreads(__tstate
);
14659 if (PyErr_Occurred()) SWIG_fail
;
14661 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxRadioButton
, 1);
14684 static PyObject
*_wrap_new_PreRadioButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14685 PyObject
*resultobj
= NULL
;
14686 wxRadioButton
*result
;
14687 char *kwnames
[] = {
14691 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreRadioButton",kwnames
)) goto fail
;
14693 if (!wxPyCheckForApp()) SWIG_fail
;
14694 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14695 result
= (wxRadioButton
*)new wxRadioButton();
14697 wxPyEndAllowThreads(__tstate
);
14698 if (PyErr_Occurred()) SWIG_fail
;
14700 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxRadioButton
, 1);
14707 static PyObject
*_wrap_RadioButton_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14708 PyObject
*resultobj
= NULL
;
14709 wxRadioButton
*arg1
= (wxRadioButton
*) 0 ;
14710 wxWindow
*arg2
= (wxWindow
*) 0 ;
14711 int arg3
= (int) -1 ;
14712 wxString
const &arg4_defvalue
= wxPyEmptyString
;
14713 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
14714 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
14715 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
14716 wxSize
const &arg6_defvalue
= wxDefaultSize
;
14717 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
14718 long arg7
= (long) 0 ;
14719 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
14720 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
14721 wxString
const &arg9_defvalue
= wxPyRadioButtonNameStr
;
14722 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
14724 bool temp4
= false ;
14727 bool temp9
= false ;
14728 PyObject
* obj0
= 0 ;
14729 PyObject
* obj1
= 0 ;
14730 PyObject
* obj2
= 0 ;
14731 PyObject
* obj3
= 0 ;
14732 PyObject
* obj4
= 0 ;
14733 PyObject
* obj5
= 0 ;
14734 PyObject
* obj6
= 0 ;
14735 PyObject
* obj7
= 0 ;
14736 PyObject
* obj8
= 0 ;
14737 char *kwnames
[] = {
14738 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
14741 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:RadioButton_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
14742 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioButton
, SWIG_POINTER_EXCEPTION
| 0);
14743 if (SWIG_arg_fail(1)) SWIG_fail
;
14744 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
14745 if (SWIG_arg_fail(2)) SWIG_fail
;
14748 arg3
= static_cast<int >(SWIG_As_int(obj2
));
14749 if (SWIG_arg_fail(3)) SWIG_fail
;
14754 arg4
= wxString_in_helper(obj3
);
14755 if (arg4
== NULL
) SWIG_fail
;
14762 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
14768 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
14773 arg7
= static_cast<long >(SWIG_As_long(obj6
));
14774 if (SWIG_arg_fail(7)) SWIG_fail
;
14779 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
14780 if (SWIG_arg_fail(8)) SWIG_fail
;
14781 if (arg8
== NULL
) {
14782 SWIG_null_ref("wxValidator");
14784 if (SWIG_arg_fail(8)) SWIG_fail
;
14789 arg9
= wxString_in_helper(obj8
);
14790 if (arg9
== NULL
) SWIG_fail
;
14795 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14796 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
14798 wxPyEndAllowThreads(__tstate
);
14799 if (PyErr_Occurred()) SWIG_fail
;
14802 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14826 static PyObject
*_wrap_RadioButton_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14827 PyObject
*resultobj
= NULL
;
14828 wxRadioButton
*arg1
= (wxRadioButton
*) 0 ;
14830 PyObject
* obj0
= 0 ;
14831 char *kwnames
[] = {
14832 (char *) "self", NULL
14835 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RadioButton_GetValue",kwnames
,&obj0
)) goto fail
;
14836 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioButton
, SWIG_POINTER_EXCEPTION
| 0);
14837 if (SWIG_arg_fail(1)) SWIG_fail
;
14839 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14840 result
= (bool)(arg1
)->GetValue();
14842 wxPyEndAllowThreads(__tstate
);
14843 if (PyErr_Occurred()) SWIG_fail
;
14846 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14854 static PyObject
*_wrap_RadioButton_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14855 PyObject
*resultobj
= NULL
;
14856 wxRadioButton
*arg1
= (wxRadioButton
*) 0 ;
14858 PyObject
* obj0
= 0 ;
14859 PyObject
* obj1
= 0 ;
14860 char *kwnames
[] = {
14861 (char *) "self",(char *) "value", NULL
14864 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:RadioButton_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
14865 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioButton
, SWIG_POINTER_EXCEPTION
| 0);
14866 if (SWIG_arg_fail(1)) SWIG_fail
;
14868 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
14869 if (SWIG_arg_fail(2)) SWIG_fail
;
14872 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14873 (arg1
)->SetValue(arg2
);
14875 wxPyEndAllowThreads(__tstate
);
14876 if (PyErr_Occurred()) SWIG_fail
;
14878 Py_INCREF(Py_None
); resultobj
= Py_None
;
14885 static PyObject
*_wrap_RadioButton_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14886 PyObject
*resultobj
= NULL
;
14887 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
14888 wxVisualAttributes result
;
14889 PyObject
* obj0
= 0 ;
14890 char *kwnames
[] = {
14891 (char *) "variant", NULL
14894 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:RadioButton_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
14897 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
14898 if (SWIG_arg_fail(1)) SWIG_fail
;
14902 if (!wxPyCheckForApp()) SWIG_fail
;
14903 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14904 result
= wxRadioButton::GetClassDefaultAttributes(arg1
);
14906 wxPyEndAllowThreads(__tstate
);
14907 if (PyErr_Occurred()) SWIG_fail
;
14910 wxVisualAttributes
* resultptr
;
14911 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
14912 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
14920 static PyObject
* RadioButton_swigregister(PyObject
*, PyObject
*args
) {
14922 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
14923 SWIG_TypeClientData(SWIGTYPE_p_wxRadioButton
, obj
);
14925 return Py_BuildValue((char *)"");
14927 static int _wrap_SliderNameStr_set(PyObject
*) {
14928 PyErr_SetString(PyExc_TypeError
,"Variable SliderNameStr is read-only.");
14933 static PyObject
*_wrap_SliderNameStr_get(void) {
14934 PyObject
*pyobj
= NULL
;
14938 pyobj
= PyUnicode_FromWideChar((&wxPySliderNameStr
)->c_str(), (&wxPySliderNameStr
)->Len());
14940 pyobj
= PyString_FromStringAndSize((&wxPySliderNameStr
)->c_str(), (&wxPySliderNameStr
)->Len());
14947 static PyObject
*_wrap_new_Slider(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14948 PyObject
*resultobj
= NULL
;
14949 wxWindow
*arg1
= (wxWindow
*) 0 ;
14950 int arg2
= (int) -1 ;
14951 int arg3
= (int) 0 ;
14952 int arg4
= (int) 0 ;
14953 int arg5
= (int) 100 ;
14954 wxPoint
const &arg6_defvalue
= wxDefaultPosition
;
14955 wxPoint
*arg6
= (wxPoint
*) &arg6_defvalue
;
14956 wxSize
const &arg7_defvalue
= wxDefaultSize
;
14957 wxSize
*arg7
= (wxSize
*) &arg7_defvalue
;
14958 long arg8
= (long) wxSL_HORIZONTAL
;
14959 wxValidator
const &arg9_defvalue
= wxDefaultValidator
;
14960 wxValidator
*arg9
= (wxValidator
*) &arg9_defvalue
;
14961 wxString
const &arg10_defvalue
= wxPySliderNameStr
;
14962 wxString
*arg10
= (wxString
*) &arg10_defvalue
;
14966 bool temp10
= false ;
14967 PyObject
* obj0
= 0 ;
14968 PyObject
* obj1
= 0 ;
14969 PyObject
* obj2
= 0 ;
14970 PyObject
* obj3
= 0 ;
14971 PyObject
* obj4
= 0 ;
14972 PyObject
* obj5
= 0 ;
14973 PyObject
* obj6
= 0 ;
14974 PyObject
* obj7
= 0 ;
14975 PyObject
* obj8
= 0 ;
14976 PyObject
* obj9
= 0 ;
14977 char *kwnames
[] = {
14978 (char *) "parent",(char *) "id",(char *) "value",(char *) "minValue",(char *) "maxValue",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
14981 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOOOO:new_Slider",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) goto fail
;
14982 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
14983 if (SWIG_arg_fail(1)) SWIG_fail
;
14986 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14987 if (SWIG_arg_fail(2)) SWIG_fail
;
14992 arg3
= static_cast<int >(SWIG_As_int(obj2
));
14993 if (SWIG_arg_fail(3)) SWIG_fail
;
14998 arg4
= static_cast<int >(SWIG_As_int(obj3
));
14999 if (SWIG_arg_fail(4)) SWIG_fail
;
15004 arg5
= static_cast<int >(SWIG_As_int(obj4
));
15005 if (SWIG_arg_fail(5)) SWIG_fail
;
15011 if ( ! wxPoint_helper(obj5
, &arg6
)) SWIG_fail
;
15017 if ( ! wxSize_helper(obj6
, &arg7
)) SWIG_fail
;
15022 arg8
= static_cast<long >(SWIG_As_long(obj7
));
15023 if (SWIG_arg_fail(8)) SWIG_fail
;
15028 SWIG_Python_ConvertPtr(obj8
, (void **)&arg9
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
15029 if (SWIG_arg_fail(9)) SWIG_fail
;
15030 if (arg9
== NULL
) {
15031 SWIG_null_ref("wxValidator");
15033 if (SWIG_arg_fail(9)) SWIG_fail
;
15038 arg10
= wxString_in_helper(obj9
);
15039 if (arg10
== NULL
) SWIG_fail
;
15044 if (!wxPyCheckForApp()) SWIG_fail
;
15045 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15046 result
= (wxSlider
*)new wxSlider(arg1
,arg2
,arg3
,arg4
,arg5
,(wxPoint
const &)*arg6
,(wxSize
const &)*arg7
,arg8
,(wxValidator
const &)*arg9
,(wxString
const &)*arg10
);
15048 wxPyEndAllowThreads(__tstate
);
15049 if (PyErr_Occurred()) SWIG_fail
;
15051 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSlider
, 1);
15066 static PyObject
*_wrap_new_PreSlider(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15067 PyObject
*resultobj
= NULL
;
15069 char *kwnames
[] = {
15073 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreSlider",kwnames
)) goto fail
;
15075 if (!wxPyCheckForApp()) SWIG_fail
;
15076 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15077 result
= (wxSlider
*)new wxSlider();
15079 wxPyEndAllowThreads(__tstate
);
15080 if (PyErr_Occurred()) SWIG_fail
;
15082 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSlider
, 1);
15089 static PyObject
*_wrap_Slider_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15090 PyObject
*resultobj
= NULL
;
15091 wxSlider
*arg1
= (wxSlider
*) 0 ;
15092 wxWindow
*arg2
= (wxWindow
*) 0 ;
15093 int arg3
= (int) -1 ;
15094 int arg4
= (int) 0 ;
15095 int arg5
= (int) 0 ;
15096 int arg6
= (int) 100 ;
15097 wxPoint
const &arg7_defvalue
= wxDefaultPosition
;
15098 wxPoint
*arg7
= (wxPoint
*) &arg7_defvalue
;
15099 wxSize
const &arg8_defvalue
= wxDefaultSize
;
15100 wxSize
*arg8
= (wxSize
*) &arg8_defvalue
;
15101 long arg9
= (long) wxSL_HORIZONTAL
;
15102 wxValidator
const &arg10_defvalue
= wxDefaultValidator
;
15103 wxValidator
*arg10
= (wxValidator
*) &arg10_defvalue
;
15104 wxString
const &arg11_defvalue
= wxPySliderNameStr
;
15105 wxString
*arg11
= (wxString
*) &arg11_defvalue
;
15109 bool temp11
= false ;
15110 PyObject
* obj0
= 0 ;
15111 PyObject
* obj1
= 0 ;
15112 PyObject
* obj2
= 0 ;
15113 PyObject
* obj3
= 0 ;
15114 PyObject
* obj4
= 0 ;
15115 PyObject
* obj5
= 0 ;
15116 PyObject
* obj6
= 0 ;
15117 PyObject
* obj7
= 0 ;
15118 PyObject
* obj8
= 0 ;
15119 PyObject
* obj9
= 0 ;
15120 PyObject
* obj10
= 0 ;
15121 char *kwnames
[] = {
15122 (char *) "self",(char *) "parent",(char *) "id",(char *) "value",(char *) "minValue",(char *) "maxValue",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
15125 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOOOO:Slider_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
,&obj10
)) goto fail
;
15126 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15127 if (SWIG_arg_fail(1)) SWIG_fail
;
15128 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
15129 if (SWIG_arg_fail(2)) SWIG_fail
;
15132 arg3
= static_cast<int >(SWIG_As_int(obj2
));
15133 if (SWIG_arg_fail(3)) SWIG_fail
;
15138 arg4
= static_cast<int >(SWIG_As_int(obj3
));
15139 if (SWIG_arg_fail(4)) SWIG_fail
;
15144 arg5
= static_cast<int >(SWIG_As_int(obj4
));
15145 if (SWIG_arg_fail(5)) SWIG_fail
;
15150 arg6
= static_cast<int >(SWIG_As_int(obj5
));
15151 if (SWIG_arg_fail(6)) SWIG_fail
;
15157 if ( ! wxPoint_helper(obj6
, &arg7
)) SWIG_fail
;
15163 if ( ! wxSize_helper(obj7
, &arg8
)) SWIG_fail
;
15168 arg9
= static_cast<long >(SWIG_As_long(obj8
));
15169 if (SWIG_arg_fail(9)) SWIG_fail
;
15174 SWIG_Python_ConvertPtr(obj9
, (void **)&arg10
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
15175 if (SWIG_arg_fail(10)) SWIG_fail
;
15176 if (arg10
== NULL
) {
15177 SWIG_null_ref("wxValidator");
15179 if (SWIG_arg_fail(10)) SWIG_fail
;
15184 arg11
= wxString_in_helper(obj10
);
15185 if (arg11
== NULL
) SWIG_fail
;
15190 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15191 result
= (bool)(arg1
)->Create(arg2
,arg3
,arg4
,arg5
,arg6
,(wxPoint
const &)*arg7
,(wxSize
const &)*arg8
,arg9
,(wxValidator
const &)*arg10
,(wxString
const &)*arg11
);
15193 wxPyEndAllowThreads(__tstate
);
15194 if (PyErr_Occurred()) SWIG_fail
;
15197 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15213 static PyObject
*_wrap_Slider_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15214 PyObject
*resultobj
= NULL
;
15215 wxSlider
*arg1
= (wxSlider
*) 0 ;
15217 PyObject
* obj0
= 0 ;
15218 char *kwnames
[] = {
15219 (char *) "self", NULL
15222 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetValue",kwnames
,&obj0
)) goto fail
;
15223 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15224 if (SWIG_arg_fail(1)) SWIG_fail
;
15226 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15227 result
= (int)((wxSlider
const *)arg1
)->GetValue();
15229 wxPyEndAllowThreads(__tstate
);
15230 if (PyErr_Occurred()) SWIG_fail
;
15233 resultobj
= SWIG_From_int(static_cast<int >(result
));
15241 static PyObject
*_wrap_Slider_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15242 PyObject
*resultobj
= NULL
;
15243 wxSlider
*arg1
= (wxSlider
*) 0 ;
15245 PyObject
* obj0
= 0 ;
15246 PyObject
* obj1
= 0 ;
15247 char *kwnames
[] = {
15248 (char *) "self",(char *) "value", NULL
15251 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Slider_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
15252 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15253 if (SWIG_arg_fail(1)) SWIG_fail
;
15255 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15256 if (SWIG_arg_fail(2)) SWIG_fail
;
15259 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15260 (arg1
)->SetValue(arg2
);
15262 wxPyEndAllowThreads(__tstate
);
15263 if (PyErr_Occurred()) SWIG_fail
;
15265 Py_INCREF(Py_None
); resultobj
= Py_None
;
15272 static PyObject
*_wrap_Slider_SetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15273 PyObject
*resultobj
= NULL
;
15274 wxSlider
*arg1
= (wxSlider
*) 0 ;
15277 PyObject
* obj0
= 0 ;
15278 PyObject
* obj1
= 0 ;
15279 PyObject
* obj2
= 0 ;
15280 char *kwnames
[] = {
15281 (char *) "self",(char *) "minValue",(char *) "maxValue", NULL
15284 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Slider_SetRange",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
15285 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15286 if (SWIG_arg_fail(1)) SWIG_fail
;
15288 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15289 if (SWIG_arg_fail(2)) SWIG_fail
;
15292 arg3
= static_cast<int >(SWIG_As_int(obj2
));
15293 if (SWIG_arg_fail(3)) SWIG_fail
;
15296 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15297 (arg1
)->SetRange(arg2
,arg3
);
15299 wxPyEndAllowThreads(__tstate
);
15300 if (PyErr_Occurred()) SWIG_fail
;
15302 Py_INCREF(Py_None
); resultobj
= Py_None
;
15309 static PyObject
*_wrap_Slider_GetMin(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15310 PyObject
*resultobj
= NULL
;
15311 wxSlider
*arg1
= (wxSlider
*) 0 ;
15313 PyObject
* obj0
= 0 ;
15314 char *kwnames
[] = {
15315 (char *) "self", NULL
15318 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetMin",kwnames
,&obj0
)) goto fail
;
15319 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15320 if (SWIG_arg_fail(1)) SWIG_fail
;
15322 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15323 result
= (int)((wxSlider
const *)arg1
)->GetMin();
15325 wxPyEndAllowThreads(__tstate
);
15326 if (PyErr_Occurred()) SWIG_fail
;
15329 resultobj
= SWIG_From_int(static_cast<int >(result
));
15337 static PyObject
*_wrap_Slider_GetMax(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15338 PyObject
*resultobj
= NULL
;
15339 wxSlider
*arg1
= (wxSlider
*) 0 ;
15341 PyObject
* obj0
= 0 ;
15342 char *kwnames
[] = {
15343 (char *) "self", NULL
15346 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetMax",kwnames
,&obj0
)) goto fail
;
15347 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15348 if (SWIG_arg_fail(1)) SWIG_fail
;
15350 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15351 result
= (int)((wxSlider
const *)arg1
)->GetMax();
15353 wxPyEndAllowThreads(__tstate
);
15354 if (PyErr_Occurred()) SWIG_fail
;
15357 resultobj
= SWIG_From_int(static_cast<int >(result
));
15365 static PyObject
*_wrap_Slider_SetMin(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15366 PyObject
*resultobj
= NULL
;
15367 wxSlider
*arg1
= (wxSlider
*) 0 ;
15369 PyObject
* obj0
= 0 ;
15370 PyObject
* obj1
= 0 ;
15371 char *kwnames
[] = {
15372 (char *) "self",(char *) "minValue", NULL
15375 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Slider_SetMin",kwnames
,&obj0
,&obj1
)) goto fail
;
15376 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15377 if (SWIG_arg_fail(1)) SWIG_fail
;
15379 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15380 if (SWIG_arg_fail(2)) SWIG_fail
;
15383 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15384 (arg1
)->SetMin(arg2
);
15386 wxPyEndAllowThreads(__tstate
);
15387 if (PyErr_Occurred()) SWIG_fail
;
15389 Py_INCREF(Py_None
); resultobj
= Py_None
;
15396 static PyObject
*_wrap_Slider_SetMax(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15397 PyObject
*resultobj
= NULL
;
15398 wxSlider
*arg1
= (wxSlider
*) 0 ;
15400 PyObject
* obj0
= 0 ;
15401 PyObject
* obj1
= 0 ;
15402 char *kwnames
[] = {
15403 (char *) "self",(char *) "maxValue", NULL
15406 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Slider_SetMax",kwnames
,&obj0
,&obj1
)) goto fail
;
15407 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15408 if (SWIG_arg_fail(1)) SWIG_fail
;
15410 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15411 if (SWIG_arg_fail(2)) SWIG_fail
;
15414 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15415 (arg1
)->SetMax(arg2
);
15417 wxPyEndAllowThreads(__tstate
);
15418 if (PyErr_Occurred()) SWIG_fail
;
15420 Py_INCREF(Py_None
); resultobj
= Py_None
;
15427 static PyObject
*_wrap_Slider_SetLineSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15428 PyObject
*resultobj
= NULL
;
15429 wxSlider
*arg1
= (wxSlider
*) 0 ;
15431 PyObject
* obj0
= 0 ;
15432 PyObject
* obj1
= 0 ;
15433 char *kwnames
[] = {
15434 (char *) "self",(char *) "lineSize", NULL
15437 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Slider_SetLineSize",kwnames
,&obj0
,&obj1
)) goto fail
;
15438 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15439 if (SWIG_arg_fail(1)) SWIG_fail
;
15441 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15442 if (SWIG_arg_fail(2)) SWIG_fail
;
15445 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15446 (arg1
)->SetLineSize(arg2
);
15448 wxPyEndAllowThreads(__tstate
);
15449 if (PyErr_Occurred()) SWIG_fail
;
15451 Py_INCREF(Py_None
); resultobj
= Py_None
;
15458 static PyObject
*_wrap_Slider_SetPageSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15459 PyObject
*resultobj
= NULL
;
15460 wxSlider
*arg1
= (wxSlider
*) 0 ;
15462 PyObject
* obj0
= 0 ;
15463 PyObject
* obj1
= 0 ;
15464 char *kwnames
[] = {
15465 (char *) "self",(char *) "pageSize", NULL
15468 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Slider_SetPageSize",kwnames
,&obj0
,&obj1
)) goto fail
;
15469 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15470 if (SWIG_arg_fail(1)) SWIG_fail
;
15472 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15473 if (SWIG_arg_fail(2)) SWIG_fail
;
15476 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15477 (arg1
)->SetPageSize(arg2
);
15479 wxPyEndAllowThreads(__tstate
);
15480 if (PyErr_Occurred()) SWIG_fail
;
15482 Py_INCREF(Py_None
); resultobj
= Py_None
;
15489 static PyObject
*_wrap_Slider_GetLineSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15490 PyObject
*resultobj
= NULL
;
15491 wxSlider
*arg1
= (wxSlider
*) 0 ;
15493 PyObject
* obj0
= 0 ;
15494 char *kwnames
[] = {
15495 (char *) "self", NULL
15498 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetLineSize",kwnames
,&obj0
)) goto fail
;
15499 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15500 if (SWIG_arg_fail(1)) SWIG_fail
;
15502 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15503 result
= (int)((wxSlider
const *)arg1
)->GetLineSize();
15505 wxPyEndAllowThreads(__tstate
);
15506 if (PyErr_Occurred()) SWIG_fail
;
15509 resultobj
= SWIG_From_int(static_cast<int >(result
));
15517 static PyObject
*_wrap_Slider_GetPageSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15518 PyObject
*resultobj
= NULL
;
15519 wxSlider
*arg1
= (wxSlider
*) 0 ;
15521 PyObject
* obj0
= 0 ;
15522 char *kwnames
[] = {
15523 (char *) "self", NULL
15526 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetPageSize",kwnames
,&obj0
)) goto fail
;
15527 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15528 if (SWIG_arg_fail(1)) SWIG_fail
;
15530 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15531 result
= (int)((wxSlider
const *)arg1
)->GetPageSize();
15533 wxPyEndAllowThreads(__tstate
);
15534 if (PyErr_Occurred()) SWIG_fail
;
15537 resultobj
= SWIG_From_int(static_cast<int >(result
));
15545 static PyObject
*_wrap_Slider_SetThumbLength(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15546 PyObject
*resultobj
= NULL
;
15547 wxSlider
*arg1
= (wxSlider
*) 0 ;
15549 PyObject
* obj0
= 0 ;
15550 PyObject
* obj1
= 0 ;
15551 char *kwnames
[] = {
15552 (char *) "self",(char *) "lenPixels", NULL
15555 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Slider_SetThumbLength",kwnames
,&obj0
,&obj1
)) goto fail
;
15556 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15557 if (SWIG_arg_fail(1)) SWIG_fail
;
15559 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15560 if (SWIG_arg_fail(2)) SWIG_fail
;
15563 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15564 (arg1
)->SetThumbLength(arg2
);
15566 wxPyEndAllowThreads(__tstate
);
15567 if (PyErr_Occurred()) SWIG_fail
;
15569 Py_INCREF(Py_None
); resultobj
= Py_None
;
15576 static PyObject
*_wrap_Slider_GetThumbLength(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15577 PyObject
*resultobj
= NULL
;
15578 wxSlider
*arg1
= (wxSlider
*) 0 ;
15580 PyObject
* obj0
= 0 ;
15581 char *kwnames
[] = {
15582 (char *) "self", NULL
15585 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetThumbLength",kwnames
,&obj0
)) goto fail
;
15586 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15587 if (SWIG_arg_fail(1)) SWIG_fail
;
15589 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15590 result
= (int)((wxSlider
const *)arg1
)->GetThumbLength();
15592 wxPyEndAllowThreads(__tstate
);
15593 if (PyErr_Occurred()) SWIG_fail
;
15596 resultobj
= SWIG_From_int(static_cast<int >(result
));
15604 static PyObject
*_wrap_Slider_SetTickFreq(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15605 PyObject
*resultobj
= NULL
;
15606 wxSlider
*arg1
= (wxSlider
*) 0 ;
15608 int arg3
= (int) 1 ;
15609 PyObject
* obj0
= 0 ;
15610 PyObject
* obj1
= 0 ;
15611 PyObject
* obj2
= 0 ;
15612 char *kwnames
[] = {
15613 (char *) "self",(char *) "n",(char *) "pos", NULL
15616 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:Slider_SetTickFreq",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
15617 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15618 if (SWIG_arg_fail(1)) SWIG_fail
;
15620 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15621 if (SWIG_arg_fail(2)) SWIG_fail
;
15625 arg3
= static_cast<int >(SWIG_As_int(obj2
));
15626 if (SWIG_arg_fail(3)) SWIG_fail
;
15630 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15631 (arg1
)->SetTickFreq(arg2
,arg3
);
15633 wxPyEndAllowThreads(__tstate
);
15634 if (PyErr_Occurred()) SWIG_fail
;
15636 Py_INCREF(Py_None
); resultobj
= Py_None
;
15643 static PyObject
*_wrap_Slider_GetTickFreq(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15644 PyObject
*resultobj
= NULL
;
15645 wxSlider
*arg1
= (wxSlider
*) 0 ;
15647 PyObject
* obj0
= 0 ;
15648 char *kwnames
[] = {
15649 (char *) "self", NULL
15652 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetTickFreq",kwnames
,&obj0
)) goto fail
;
15653 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15654 if (SWIG_arg_fail(1)) SWIG_fail
;
15656 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15657 result
= (int)((wxSlider
const *)arg1
)->GetTickFreq();
15659 wxPyEndAllowThreads(__tstate
);
15660 if (PyErr_Occurred()) SWIG_fail
;
15663 resultobj
= SWIG_From_int(static_cast<int >(result
));
15671 static PyObject
*_wrap_Slider_ClearTicks(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15672 PyObject
*resultobj
= NULL
;
15673 wxSlider
*arg1
= (wxSlider
*) 0 ;
15674 PyObject
* obj0
= 0 ;
15675 char *kwnames
[] = {
15676 (char *) "self", NULL
15679 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_ClearTicks",kwnames
,&obj0
)) goto fail
;
15680 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15681 if (SWIG_arg_fail(1)) SWIG_fail
;
15683 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15684 (arg1
)->ClearTicks();
15686 wxPyEndAllowThreads(__tstate
);
15687 if (PyErr_Occurred()) SWIG_fail
;
15689 Py_INCREF(Py_None
); resultobj
= Py_None
;
15696 static PyObject
*_wrap_Slider_SetTick(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15697 PyObject
*resultobj
= NULL
;
15698 wxSlider
*arg1
= (wxSlider
*) 0 ;
15700 PyObject
* obj0
= 0 ;
15701 PyObject
* obj1
= 0 ;
15702 char *kwnames
[] = {
15703 (char *) "self",(char *) "tickPos", NULL
15706 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Slider_SetTick",kwnames
,&obj0
,&obj1
)) goto fail
;
15707 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15708 if (SWIG_arg_fail(1)) SWIG_fail
;
15710 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15711 if (SWIG_arg_fail(2)) SWIG_fail
;
15714 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15715 (arg1
)->SetTick(arg2
);
15717 wxPyEndAllowThreads(__tstate
);
15718 if (PyErr_Occurred()) SWIG_fail
;
15720 Py_INCREF(Py_None
); resultobj
= Py_None
;
15727 static PyObject
*_wrap_Slider_ClearSel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15728 PyObject
*resultobj
= NULL
;
15729 wxSlider
*arg1
= (wxSlider
*) 0 ;
15730 PyObject
* obj0
= 0 ;
15731 char *kwnames
[] = {
15732 (char *) "self", NULL
15735 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_ClearSel",kwnames
,&obj0
)) goto fail
;
15736 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15737 if (SWIG_arg_fail(1)) SWIG_fail
;
15739 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15740 (arg1
)->ClearSel();
15742 wxPyEndAllowThreads(__tstate
);
15743 if (PyErr_Occurred()) SWIG_fail
;
15745 Py_INCREF(Py_None
); resultobj
= Py_None
;
15752 static PyObject
*_wrap_Slider_GetSelEnd(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15753 PyObject
*resultobj
= NULL
;
15754 wxSlider
*arg1
= (wxSlider
*) 0 ;
15756 PyObject
* obj0
= 0 ;
15757 char *kwnames
[] = {
15758 (char *) "self", NULL
15761 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetSelEnd",kwnames
,&obj0
)) goto fail
;
15762 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15763 if (SWIG_arg_fail(1)) SWIG_fail
;
15765 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15766 result
= (int)((wxSlider
const *)arg1
)->GetSelEnd();
15768 wxPyEndAllowThreads(__tstate
);
15769 if (PyErr_Occurred()) SWIG_fail
;
15772 resultobj
= SWIG_From_int(static_cast<int >(result
));
15780 static PyObject
*_wrap_Slider_GetSelStart(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15781 PyObject
*resultobj
= NULL
;
15782 wxSlider
*arg1
= (wxSlider
*) 0 ;
15784 PyObject
* obj0
= 0 ;
15785 char *kwnames
[] = {
15786 (char *) "self", NULL
15789 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetSelStart",kwnames
,&obj0
)) goto fail
;
15790 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15791 if (SWIG_arg_fail(1)) SWIG_fail
;
15793 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15794 result
= (int)((wxSlider
const *)arg1
)->GetSelStart();
15796 wxPyEndAllowThreads(__tstate
);
15797 if (PyErr_Occurred()) SWIG_fail
;
15800 resultobj
= SWIG_From_int(static_cast<int >(result
));
15808 static PyObject
*_wrap_Slider_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15809 PyObject
*resultobj
= NULL
;
15810 wxSlider
*arg1
= (wxSlider
*) 0 ;
15813 PyObject
* obj0
= 0 ;
15814 PyObject
* obj1
= 0 ;
15815 PyObject
* obj2
= 0 ;
15816 char *kwnames
[] = {
15817 (char *) "self",(char *) "min",(char *) "max", NULL
15820 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Slider_SetSelection",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
15821 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15822 if (SWIG_arg_fail(1)) SWIG_fail
;
15824 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15825 if (SWIG_arg_fail(2)) SWIG_fail
;
15828 arg3
= static_cast<int >(SWIG_As_int(obj2
));
15829 if (SWIG_arg_fail(3)) SWIG_fail
;
15832 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15833 (arg1
)->SetSelection(arg2
,arg3
);
15835 wxPyEndAllowThreads(__tstate
);
15836 if (PyErr_Occurred()) SWIG_fail
;
15838 Py_INCREF(Py_None
); resultobj
= Py_None
;
15845 static PyObject
*_wrap_Slider_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15846 PyObject
*resultobj
= NULL
;
15847 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
15848 wxVisualAttributes result
;
15849 PyObject
* obj0
= 0 ;
15850 char *kwnames
[] = {
15851 (char *) "variant", NULL
15854 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Slider_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
15857 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
15858 if (SWIG_arg_fail(1)) SWIG_fail
;
15862 if (!wxPyCheckForApp()) SWIG_fail
;
15863 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15864 result
= wxSlider::GetClassDefaultAttributes(arg1
);
15866 wxPyEndAllowThreads(__tstate
);
15867 if (PyErr_Occurred()) SWIG_fail
;
15870 wxVisualAttributes
* resultptr
;
15871 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
15872 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
15880 static PyObject
* Slider_swigregister(PyObject
*, PyObject
*args
) {
15882 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
15883 SWIG_TypeClientData(SWIGTYPE_p_wxSlider
, obj
);
15885 return Py_BuildValue((char *)"");
15887 static int _wrap_ToggleButtonNameStr_set(PyObject
*) {
15888 PyErr_SetString(PyExc_TypeError
,"Variable ToggleButtonNameStr is read-only.");
15893 static PyObject
*_wrap_ToggleButtonNameStr_get(void) {
15894 PyObject
*pyobj
= NULL
;
15898 pyobj
= PyUnicode_FromWideChar((&wxPyToggleButtonNameStr
)->c_str(), (&wxPyToggleButtonNameStr
)->Len());
15900 pyobj
= PyString_FromStringAndSize((&wxPyToggleButtonNameStr
)->c_str(), (&wxPyToggleButtonNameStr
)->Len());
15907 static PyObject
*_wrap_new_ToggleButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15908 PyObject
*resultobj
= NULL
;
15909 wxWindow
*arg1
= (wxWindow
*) 0 ;
15910 int arg2
= (int) -1 ;
15911 wxString
const &arg3_defvalue
= wxPyEmptyString
;
15912 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
15913 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
15914 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
15915 wxSize
const &arg5_defvalue
= wxDefaultSize
;
15916 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
15917 long arg6
= (long) 0 ;
15918 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
15919 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
15920 wxString
const &arg8_defvalue
= wxPyToggleButtonNameStr
;
15921 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
15922 wxToggleButton
*result
;
15923 bool temp3
= false ;
15926 bool temp8
= false ;
15927 PyObject
* obj0
= 0 ;
15928 PyObject
* obj1
= 0 ;
15929 PyObject
* obj2
= 0 ;
15930 PyObject
* obj3
= 0 ;
15931 PyObject
* obj4
= 0 ;
15932 PyObject
* obj5
= 0 ;
15933 PyObject
* obj6
= 0 ;
15934 PyObject
* obj7
= 0 ;
15935 char *kwnames
[] = {
15936 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
15939 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_ToggleButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
15940 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
15941 if (SWIG_arg_fail(1)) SWIG_fail
;
15944 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15945 if (SWIG_arg_fail(2)) SWIG_fail
;
15950 arg3
= wxString_in_helper(obj2
);
15951 if (arg3
== NULL
) SWIG_fail
;
15958 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
15964 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
15969 arg6
= static_cast<long >(SWIG_As_long(obj5
));
15970 if (SWIG_arg_fail(6)) SWIG_fail
;
15975 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
15976 if (SWIG_arg_fail(7)) SWIG_fail
;
15977 if (arg7
== NULL
) {
15978 SWIG_null_ref("wxValidator");
15980 if (SWIG_arg_fail(7)) SWIG_fail
;
15985 arg8
= wxString_in_helper(obj7
);
15986 if (arg8
== NULL
) SWIG_fail
;
15991 if (!wxPyCheckForApp()) SWIG_fail
;
15992 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15993 result
= (wxToggleButton
*)new wxToggleButton(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
15995 wxPyEndAllowThreads(__tstate
);
15996 if (PyErr_Occurred()) SWIG_fail
;
15998 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxToggleButton
, 1);
16021 static PyObject
*_wrap_new_PreToggleButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16022 PyObject
*resultobj
= NULL
;
16023 wxToggleButton
*result
;
16024 char *kwnames
[] = {
16028 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreToggleButton",kwnames
)) goto fail
;
16030 if (!wxPyCheckForApp()) SWIG_fail
;
16031 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16032 result
= (wxToggleButton
*)new wxToggleButton();
16034 wxPyEndAllowThreads(__tstate
);
16035 if (PyErr_Occurred()) SWIG_fail
;
16037 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxToggleButton
, 1);
16044 static PyObject
*_wrap_ToggleButton_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16045 PyObject
*resultobj
= NULL
;
16046 wxToggleButton
*arg1
= (wxToggleButton
*) 0 ;
16047 wxWindow
*arg2
= (wxWindow
*) 0 ;
16048 int arg3
= (int) -1 ;
16049 wxString
const &arg4_defvalue
= wxPyEmptyString
;
16050 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
16051 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
16052 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
16053 wxSize
const &arg6_defvalue
= wxDefaultSize
;
16054 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
16055 long arg7
= (long) 0 ;
16056 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
16057 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
16058 wxString
const &arg9_defvalue
= wxPyToggleButtonNameStr
;
16059 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
16061 bool temp4
= false ;
16064 bool temp9
= false ;
16065 PyObject
* obj0
= 0 ;
16066 PyObject
* obj1
= 0 ;
16067 PyObject
* obj2
= 0 ;
16068 PyObject
* obj3
= 0 ;
16069 PyObject
* obj4
= 0 ;
16070 PyObject
* obj5
= 0 ;
16071 PyObject
* obj6
= 0 ;
16072 PyObject
* obj7
= 0 ;
16073 PyObject
* obj8
= 0 ;
16074 char *kwnames
[] = {
16075 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
16078 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:ToggleButton_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
16079 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToggleButton
, SWIG_POINTER_EXCEPTION
| 0);
16080 if (SWIG_arg_fail(1)) SWIG_fail
;
16081 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
16082 if (SWIG_arg_fail(2)) SWIG_fail
;
16085 arg3
= static_cast<int >(SWIG_As_int(obj2
));
16086 if (SWIG_arg_fail(3)) SWIG_fail
;
16091 arg4
= wxString_in_helper(obj3
);
16092 if (arg4
== NULL
) SWIG_fail
;
16099 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
16105 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
16110 arg7
= static_cast<long >(SWIG_As_long(obj6
));
16111 if (SWIG_arg_fail(7)) SWIG_fail
;
16116 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
16117 if (SWIG_arg_fail(8)) SWIG_fail
;
16118 if (arg8
== NULL
) {
16119 SWIG_null_ref("wxValidator");
16121 if (SWIG_arg_fail(8)) SWIG_fail
;
16126 arg9
= wxString_in_helper(obj8
);
16127 if (arg9
== NULL
) SWIG_fail
;
16132 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16133 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
16135 wxPyEndAllowThreads(__tstate
);
16136 if (PyErr_Occurred()) SWIG_fail
;
16139 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16163 static PyObject
*_wrap_ToggleButton_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16164 PyObject
*resultobj
= NULL
;
16165 wxToggleButton
*arg1
= (wxToggleButton
*) 0 ;
16167 PyObject
* obj0
= 0 ;
16168 PyObject
* obj1
= 0 ;
16169 char *kwnames
[] = {
16170 (char *) "self",(char *) "value", NULL
16173 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToggleButton_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
16174 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToggleButton
, SWIG_POINTER_EXCEPTION
| 0);
16175 if (SWIG_arg_fail(1)) SWIG_fail
;
16177 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
16178 if (SWIG_arg_fail(2)) SWIG_fail
;
16181 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16182 (arg1
)->SetValue(arg2
);
16184 wxPyEndAllowThreads(__tstate
);
16185 if (PyErr_Occurred()) SWIG_fail
;
16187 Py_INCREF(Py_None
); resultobj
= Py_None
;
16194 static PyObject
*_wrap_ToggleButton_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16195 PyObject
*resultobj
= NULL
;
16196 wxToggleButton
*arg1
= (wxToggleButton
*) 0 ;
16198 PyObject
* obj0
= 0 ;
16199 char *kwnames
[] = {
16200 (char *) "self", NULL
16203 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToggleButton_GetValue",kwnames
,&obj0
)) goto fail
;
16204 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToggleButton
, SWIG_POINTER_EXCEPTION
| 0);
16205 if (SWIG_arg_fail(1)) SWIG_fail
;
16207 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16208 result
= (bool)((wxToggleButton
const *)arg1
)->GetValue();
16210 wxPyEndAllowThreads(__tstate
);
16211 if (PyErr_Occurred()) SWIG_fail
;
16214 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16222 static PyObject
*_wrap_ToggleButton_SetLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16223 PyObject
*resultobj
= NULL
;
16224 wxToggleButton
*arg1
= (wxToggleButton
*) 0 ;
16225 wxString
*arg2
= 0 ;
16226 bool temp2
= false ;
16227 PyObject
* obj0
= 0 ;
16228 PyObject
* obj1
= 0 ;
16229 char *kwnames
[] = {
16230 (char *) "self",(char *) "label", NULL
16233 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToggleButton_SetLabel",kwnames
,&obj0
,&obj1
)) goto fail
;
16234 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToggleButton
, SWIG_POINTER_EXCEPTION
| 0);
16235 if (SWIG_arg_fail(1)) SWIG_fail
;
16237 arg2
= wxString_in_helper(obj1
);
16238 if (arg2
== NULL
) SWIG_fail
;
16242 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16243 (arg1
)->SetLabel((wxString
const &)*arg2
);
16245 wxPyEndAllowThreads(__tstate
);
16246 if (PyErr_Occurred()) SWIG_fail
;
16248 Py_INCREF(Py_None
); resultobj
= Py_None
;
16263 static PyObject
*_wrap_ToggleButton_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16264 PyObject
*resultobj
= NULL
;
16265 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
16266 wxVisualAttributes result
;
16267 PyObject
* obj0
= 0 ;
16268 char *kwnames
[] = {
16269 (char *) "variant", NULL
16272 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ToggleButton_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
16275 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
16276 if (SWIG_arg_fail(1)) SWIG_fail
;
16280 if (!wxPyCheckForApp()) SWIG_fail
;
16281 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16282 result
= wxToggleButton::GetClassDefaultAttributes(arg1
);
16284 wxPyEndAllowThreads(__tstate
);
16285 if (PyErr_Occurred()) SWIG_fail
;
16288 wxVisualAttributes
* resultptr
;
16289 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
16290 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
16298 static PyObject
* ToggleButton_swigregister(PyObject
*, PyObject
*args
) {
16300 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
16301 SWIG_TypeClientData(SWIGTYPE_p_wxToggleButton
, obj
);
16303 return Py_BuildValue((char *)"");
16305 static int _wrap_NotebookNameStr_set(PyObject
*) {
16306 PyErr_SetString(PyExc_TypeError
,"Variable NotebookNameStr is read-only.");
16311 static PyObject
*_wrap_NotebookNameStr_get(void) {
16312 PyObject
*pyobj
= NULL
;
16316 pyobj
= PyUnicode_FromWideChar((&wxPyNotebookNameStr
)->c_str(), (&wxPyNotebookNameStr
)->Len());
16318 pyobj
= PyString_FromStringAndSize((&wxPyNotebookNameStr
)->c_str(), (&wxPyNotebookNameStr
)->Len());
16325 static PyObject
*_wrap_BookCtrlBase_GetPageCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16326 PyObject
*resultobj
= NULL
;
16327 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16329 PyObject
* obj0
= 0 ;
16330 char *kwnames
[] = {
16331 (char *) "self", NULL
16334 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBase_GetPageCount",kwnames
,&obj0
)) goto fail
;
16335 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16336 if (SWIG_arg_fail(1)) SWIG_fail
;
16338 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16339 result
= (size_t)((wxBookCtrlBase
const *)arg1
)->GetPageCount();
16341 wxPyEndAllowThreads(__tstate
);
16342 if (PyErr_Occurred()) SWIG_fail
;
16345 resultobj
= SWIG_From_unsigned_SS_long(static_cast<unsigned long >(result
));
16353 static PyObject
*_wrap_BookCtrlBase_GetPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16354 PyObject
*resultobj
= NULL
;
16355 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16358 PyObject
* obj0
= 0 ;
16359 PyObject
* obj1
= 0 ;
16360 char *kwnames
[] = {
16361 (char *) "self",(char *) "n", NULL
16364 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_GetPage",kwnames
,&obj0
,&obj1
)) goto fail
;
16365 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16366 if (SWIG_arg_fail(1)) SWIG_fail
;
16368 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16369 if (SWIG_arg_fail(2)) SWIG_fail
;
16372 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16373 result
= (wxWindow
*)(arg1
)->GetPage(arg2
);
16375 wxPyEndAllowThreads(__tstate
);
16376 if (PyErr_Occurred()) SWIG_fail
;
16379 resultobj
= wxPyMake_wxObject(result
, 0);
16387 static PyObject
*_wrap_BookCtrlBase_GetCurrentPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16388 PyObject
*resultobj
= NULL
;
16389 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16391 PyObject
* obj0
= 0 ;
16392 char *kwnames
[] = {
16393 (char *) "self", NULL
16396 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBase_GetCurrentPage",kwnames
,&obj0
)) goto fail
;
16397 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16398 if (SWIG_arg_fail(1)) SWIG_fail
;
16400 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16401 result
= (wxWindow
*)((wxBookCtrlBase
const *)arg1
)->GetCurrentPage();
16403 wxPyEndAllowThreads(__tstate
);
16404 if (PyErr_Occurred()) SWIG_fail
;
16407 resultobj
= wxPyMake_wxObject(result
, 0);
16415 static PyObject
*_wrap_BookCtrlBase_GetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16416 PyObject
*resultobj
= NULL
;
16417 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16419 PyObject
* obj0
= 0 ;
16420 char *kwnames
[] = {
16421 (char *) "self", NULL
16424 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBase_GetSelection",kwnames
,&obj0
)) goto fail
;
16425 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16426 if (SWIG_arg_fail(1)) SWIG_fail
;
16428 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16429 result
= (int)((wxBookCtrlBase
const *)arg1
)->GetSelection();
16431 wxPyEndAllowThreads(__tstate
);
16432 if (PyErr_Occurred()) SWIG_fail
;
16435 resultobj
= SWIG_From_int(static_cast<int >(result
));
16443 static PyObject
*_wrap_BookCtrlBase_SetPageText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16444 PyObject
*resultobj
= NULL
;
16445 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16447 wxString
*arg3
= 0 ;
16449 bool temp3
= false ;
16450 PyObject
* obj0
= 0 ;
16451 PyObject
* obj1
= 0 ;
16452 PyObject
* obj2
= 0 ;
16453 char *kwnames
[] = {
16454 (char *) "self",(char *) "n",(char *) "strText", NULL
16457 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:BookCtrlBase_SetPageText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
16458 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16459 if (SWIG_arg_fail(1)) SWIG_fail
;
16461 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16462 if (SWIG_arg_fail(2)) SWIG_fail
;
16465 arg3
= wxString_in_helper(obj2
);
16466 if (arg3
== NULL
) SWIG_fail
;
16470 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16471 result
= (bool)(arg1
)->SetPageText(arg2
,(wxString
const &)*arg3
);
16473 wxPyEndAllowThreads(__tstate
);
16474 if (PyErr_Occurred()) SWIG_fail
;
16477 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16493 static PyObject
*_wrap_BookCtrlBase_GetPageText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16494 PyObject
*resultobj
= NULL
;
16495 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16498 PyObject
* obj0
= 0 ;
16499 PyObject
* obj1
= 0 ;
16500 char *kwnames
[] = {
16501 (char *) "self",(char *) "n", NULL
16504 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_GetPageText",kwnames
,&obj0
,&obj1
)) goto fail
;
16505 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16506 if (SWIG_arg_fail(1)) SWIG_fail
;
16508 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16509 if (SWIG_arg_fail(2)) SWIG_fail
;
16512 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16513 result
= ((wxBookCtrlBase
const *)arg1
)->GetPageText(arg2
);
16515 wxPyEndAllowThreads(__tstate
);
16516 if (PyErr_Occurred()) SWIG_fail
;
16520 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
16522 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
16531 static PyObject
*_wrap_BookCtrlBase_SetImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16532 PyObject
*resultobj
= NULL
;
16533 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16534 wxImageList
*arg2
= (wxImageList
*) 0 ;
16535 PyObject
* obj0
= 0 ;
16536 PyObject
* obj1
= 0 ;
16537 char *kwnames
[] = {
16538 (char *) "self",(char *) "imageList", NULL
16541 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_SetImageList",kwnames
,&obj0
,&obj1
)) goto fail
;
16542 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16543 if (SWIG_arg_fail(1)) SWIG_fail
;
16544 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| 0);
16545 if (SWIG_arg_fail(2)) SWIG_fail
;
16547 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16548 (arg1
)->SetImageList(arg2
);
16550 wxPyEndAllowThreads(__tstate
);
16551 if (PyErr_Occurred()) SWIG_fail
;
16553 Py_INCREF(Py_None
); resultobj
= Py_None
;
16560 static PyObject
*_wrap_BookCtrlBase_AssignImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16561 PyObject
*resultobj
= NULL
;
16562 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16563 wxImageList
*arg2
= (wxImageList
*) 0 ;
16564 PyObject
* obj0
= 0 ;
16565 PyObject
* obj1
= 0 ;
16566 char *kwnames
[] = {
16567 (char *) "self",(char *) "imageList", NULL
16570 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_AssignImageList",kwnames
,&obj0
,&obj1
)) goto fail
;
16571 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16572 if (SWIG_arg_fail(1)) SWIG_fail
;
16573 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
);
16574 if (SWIG_arg_fail(2)) SWIG_fail
;
16576 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16577 (arg1
)->AssignImageList(arg2
);
16579 wxPyEndAllowThreads(__tstate
);
16580 if (PyErr_Occurred()) SWIG_fail
;
16582 Py_INCREF(Py_None
); resultobj
= Py_None
;
16589 static PyObject
*_wrap_BookCtrlBase_GetImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16590 PyObject
*resultobj
= NULL
;
16591 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16592 wxImageList
*result
;
16593 PyObject
* obj0
= 0 ;
16594 char *kwnames
[] = {
16595 (char *) "self", NULL
16598 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBase_GetImageList",kwnames
,&obj0
)) goto fail
;
16599 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16600 if (SWIG_arg_fail(1)) SWIG_fail
;
16602 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16603 result
= (wxImageList
*)((wxBookCtrlBase
const *)arg1
)->GetImageList();
16605 wxPyEndAllowThreads(__tstate
);
16606 if (PyErr_Occurred()) SWIG_fail
;
16609 resultobj
= wxPyMake_wxObject(result
, (bool)0);
16617 static PyObject
*_wrap_BookCtrlBase_GetPageImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16618 PyObject
*resultobj
= NULL
;
16619 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16622 PyObject
* obj0
= 0 ;
16623 PyObject
* obj1
= 0 ;
16624 char *kwnames
[] = {
16625 (char *) "self",(char *) "n", NULL
16628 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_GetPageImage",kwnames
,&obj0
,&obj1
)) goto fail
;
16629 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16630 if (SWIG_arg_fail(1)) SWIG_fail
;
16632 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16633 if (SWIG_arg_fail(2)) SWIG_fail
;
16636 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16637 result
= (int)((wxBookCtrlBase
const *)arg1
)->GetPageImage(arg2
);
16639 wxPyEndAllowThreads(__tstate
);
16640 if (PyErr_Occurred()) SWIG_fail
;
16643 resultobj
= SWIG_From_int(static_cast<int >(result
));
16651 static PyObject
*_wrap_BookCtrlBase_SetPageImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16652 PyObject
*resultobj
= NULL
;
16653 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16657 PyObject
* obj0
= 0 ;
16658 PyObject
* obj1
= 0 ;
16659 PyObject
* obj2
= 0 ;
16660 char *kwnames
[] = {
16661 (char *) "self",(char *) "n",(char *) "imageId", NULL
16664 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:BookCtrlBase_SetPageImage",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
16665 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16666 if (SWIG_arg_fail(1)) SWIG_fail
;
16668 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16669 if (SWIG_arg_fail(2)) SWIG_fail
;
16672 arg3
= static_cast<int >(SWIG_As_int(obj2
));
16673 if (SWIG_arg_fail(3)) SWIG_fail
;
16676 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16677 result
= (bool)(arg1
)->SetPageImage(arg2
,arg3
);
16679 wxPyEndAllowThreads(__tstate
);
16680 if (PyErr_Occurred()) SWIG_fail
;
16683 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16691 static PyObject
*_wrap_BookCtrlBase_SetPageSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16692 PyObject
*resultobj
= NULL
;
16693 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16696 PyObject
* obj0
= 0 ;
16697 PyObject
* obj1
= 0 ;
16698 char *kwnames
[] = {
16699 (char *) "self",(char *) "size", NULL
16702 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_SetPageSize",kwnames
,&obj0
,&obj1
)) goto fail
;
16703 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16704 if (SWIG_arg_fail(1)) SWIG_fail
;
16707 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
16710 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16711 (arg1
)->SetPageSize((wxSize
const &)*arg2
);
16713 wxPyEndAllowThreads(__tstate
);
16714 if (PyErr_Occurred()) SWIG_fail
;
16716 Py_INCREF(Py_None
); resultobj
= Py_None
;
16723 static PyObject
*_wrap_BookCtrlBase_CalcSizeFromPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16724 PyObject
*resultobj
= NULL
;
16725 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16729 PyObject
* obj0
= 0 ;
16730 PyObject
* obj1
= 0 ;
16731 char *kwnames
[] = {
16732 (char *) "self",(char *) "sizePage", NULL
16735 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_CalcSizeFromPage",kwnames
,&obj0
,&obj1
)) goto fail
;
16736 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16737 if (SWIG_arg_fail(1)) SWIG_fail
;
16740 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
16743 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16744 result
= ((wxBookCtrlBase
const *)arg1
)->CalcSizeFromPage((wxSize
const &)*arg2
);
16746 wxPyEndAllowThreads(__tstate
);
16747 if (PyErr_Occurred()) SWIG_fail
;
16750 wxSize
* resultptr
;
16751 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
16752 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
16760 static PyObject
*_wrap_BookCtrlBase_GetInternalBorder(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16761 PyObject
*resultobj
= NULL
;
16762 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16763 unsigned int result
;
16764 PyObject
* obj0
= 0 ;
16765 char *kwnames
[] = {
16766 (char *) "self", NULL
16769 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBase_GetInternalBorder",kwnames
,&obj0
)) goto fail
;
16770 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16771 if (SWIG_arg_fail(1)) SWIG_fail
;
16773 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16774 result
= (unsigned int)((wxBookCtrlBase
const *)arg1
)->GetInternalBorder();
16776 wxPyEndAllowThreads(__tstate
);
16777 if (PyErr_Occurred()) SWIG_fail
;
16780 resultobj
= SWIG_From_unsigned_SS_int(static_cast<unsigned int >(result
));
16788 static PyObject
*_wrap_BookCtrlBase_SetInternalBorder(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16789 PyObject
*resultobj
= NULL
;
16790 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16791 unsigned int arg2
;
16792 PyObject
* obj0
= 0 ;
16793 PyObject
* obj1
= 0 ;
16794 char *kwnames
[] = {
16795 (char *) "self",(char *) "internalBorder", NULL
16798 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_SetInternalBorder",kwnames
,&obj0
,&obj1
)) goto fail
;
16799 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16800 if (SWIG_arg_fail(1)) SWIG_fail
;
16802 arg2
= static_cast<unsigned int >(SWIG_As_unsigned_SS_int(obj1
));
16803 if (SWIG_arg_fail(2)) SWIG_fail
;
16806 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16807 (arg1
)->SetInternalBorder(arg2
);
16809 wxPyEndAllowThreads(__tstate
);
16810 if (PyErr_Occurred()) SWIG_fail
;
16812 Py_INCREF(Py_None
); resultobj
= Py_None
;
16819 static PyObject
*_wrap_BookCtrlBase_IsVertical(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16820 PyObject
*resultobj
= NULL
;
16821 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16823 PyObject
* obj0
= 0 ;
16824 char *kwnames
[] = {
16825 (char *) "self", NULL
16828 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBase_IsVertical",kwnames
,&obj0
)) goto fail
;
16829 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16830 if (SWIG_arg_fail(1)) SWIG_fail
;
16832 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16833 result
= (bool)((wxBookCtrlBase
const *)arg1
)->IsVertical();
16835 wxPyEndAllowThreads(__tstate
);
16836 if (PyErr_Occurred()) SWIG_fail
;
16839 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16847 static PyObject
*_wrap_BookCtrlBase_SetFitToCurrentPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16848 PyObject
*resultobj
= NULL
;
16849 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16851 PyObject
* obj0
= 0 ;
16852 PyObject
* obj1
= 0 ;
16853 char *kwnames
[] = {
16854 (char *) "self",(char *) "fit", NULL
16857 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_SetFitToCurrentPage",kwnames
,&obj0
,&obj1
)) goto fail
;
16858 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16859 if (SWIG_arg_fail(1)) SWIG_fail
;
16861 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
16862 if (SWIG_arg_fail(2)) SWIG_fail
;
16865 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16866 (arg1
)->SetFitToCurrentPage(arg2
);
16868 wxPyEndAllowThreads(__tstate
);
16869 if (PyErr_Occurred()) SWIG_fail
;
16871 Py_INCREF(Py_None
); resultobj
= Py_None
;
16878 static PyObject
*_wrap_BookCtrlBase_GetFitToCurrentPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16879 PyObject
*resultobj
= NULL
;
16880 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16882 PyObject
* obj0
= 0 ;
16883 char *kwnames
[] = {
16884 (char *) "self", NULL
16887 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBase_GetFitToCurrentPage",kwnames
,&obj0
)) goto fail
;
16888 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16889 if (SWIG_arg_fail(1)) SWIG_fail
;
16891 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16892 result
= (bool)((wxBookCtrlBase
const *)arg1
)->GetFitToCurrentPage();
16894 wxPyEndAllowThreads(__tstate
);
16895 if (PyErr_Occurred()) SWIG_fail
;
16898 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16906 static PyObject
*_wrap_BookCtrlBase_DeletePage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16907 PyObject
*resultobj
= NULL
;
16908 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16911 PyObject
* obj0
= 0 ;
16912 PyObject
* obj1
= 0 ;
16913 char *kwnames
[] = {
16914 (char *) "self",(char *) "n", NULL
16917 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_DeletePage",kwnames
,&obj0
,&obj1
)) goto fail
;
16918 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16919 if (SWIG_arg_fail(1)) SWIG_fail
;
16921 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16922 if (SWIG_arg_fail(2)) SWIG_fail
;
16925 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16926 result
= (bool)(arg1
)->DeletePage(arg2
);
16928 wxPyEndAllowThreads(__tstate
);
16929 if (PyErr_Occurred()) SWIG_fail
;
16932 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16940 static PyObject
*_wrap_BookCtrlBase_RemovePage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16941 PyObject
*resultobj
= NULL
;
16942 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16945 PyObject
* obj0
= 0 ;
16946 PyObject
* obj1
= 0 ;
16947 char *kwnames
[] = {
16948 (char *) "self",(char *) "n", NULL
16951 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_RemovePage",kwnames
,&obj0
,&obj1
)) goto fail
;
16952 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16953 if (SWIG_arg_fail(1)) SWIG_fail
;
16955 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16956 if (SWIG_arg_fail(2)) SWIG_fail
;
16959 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16960 result
= (bool)(arg1
)->RemovePage(arg2
);
16962 wxPyEndAllowThreads(__tstate
);
16963 if (PyErr_Occurred()) SWIG_fail
;
16966 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16974 static PyObject
*_wrap_BookCtrlBase_DeleteAllPages(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16975 PyObject
*resultobj
= NULL
;
16976 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16978 PyObject
* obj0
= 0 ;
16979 char *kwnames
[] = {
16980 (char *) "self", NULL
16983 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBase_DeleteAllPages",kwnames
,&obj0
)) goto fail
;
16984 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16985 if (SWIG_arg_fail(1)) SWIG_fail
;
16987 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16988 result
= (bool)(arg1
)->DeleteAllPages();
16990 wxPyEndAllowThreads(__tstate
);
16991 if (PyErr_Occurred()) SWIG_fail
;
16994 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17002 static PyObject
*_wrap_BookCtrlBase_AddPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17003 PyObject
*resultobj
= NULL
;
17004 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
17005 wxWindow
*arg2
= (wxWindow
*) 0 ;
17006 wxString
*arg3
= 0 ;
17007 bool arg4
= (bool) false ;
17008 int arg5
= (int) -1 ;
17010 bool temp3
= false ;
17011 PyObject
* obj0
= 0 ;
17012 PyObject
* obj1
= 0 ;
17013 PyObject
* obj2
= 0 ;
17014 PyObject
* obj3
= 0 ;
17015 PyObject
* obj4
= 0 ;
17016 char *kwnames
[] = {
17017 (char *) "self",(char *) "page",(char *) "text",(char *) "select",(char *) "imageId", NULL
17020 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:BookCtrlBase_AddPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
17021 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
17022 if (SWIG_arg_fail(1)) SWIG_fail
;
17023 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
17024 if (SWIG_arg_fail(2)) SWIG_fail
;
17026 arg3
= wxString_in_helper(obj2
);
17027 if (arg3
== NULL
) SWIG_fail
;
17032 arg4
= static_cast<bool >(SWIG_As_bool(obj3
));
17033 if (SWIG_arg_fail(4)) SWIG_fail
;
17038 arg5
= static_cast<int >(SWIG_As_int(obj4
));
17039 if (SWIG_arg_fail(5)) SWIG_fail
;
17043 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17044 result
= (bool)(arg1
)->AddPage(arg2
,(wxString
const &)*arg3
,arg4
,arg5
);
17046 wxPyEndAllowThreads(__tstate
);
17047 if (PyErr_Occurred()) SWIG_fail
;
17050 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17066 static PyObject
*_wrap_BookCtrlBase_InsertPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17067 PyObject
*resultobj
= NULL
;
17068 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
17070 wxWindow
*arg3
= (wxWindow
*) 0 ;
17071 wxString
*arg4
= 0 ;
17072 bool arg5
= (bool) false ;
17073 int arg6
= (int) -1 ;
17075 bool temp4
= false ;
17076 PyObject
* obj0
= 0 ;
17077 PyObject
* obj1
= 0 ;
17078 PyObject
* obj2
= 0 ;
17079 PyObject
* obj3
= 0 ;
17080 PyObject
* obj4
= 0 ;
17081 PyObject
* obj5
= 0 ;
17082 char *kwnames
[] = {
17083 (char *) "self",(char *) "n",(char *) "page",(char *) "text",(char *) "select",(char *) "imageId", NULL
17086 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:BookCtrlBase_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
17087 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
17088 if (SWIG_arg_fail(1)) SWIG_fail
;
17090 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
17091 if (SWIG_arg_fail(2)) SWIG_fail
;
17093 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
17094 if (SWIG_arg_fail(3)) SWIG_fail
;
17096 arg4
= wxString_in_helper(obj3
);
17097 if (arg4
== NULL
) SWIG_fail
;
17102 arg5
= static_cast<bool >(SWIG_As_bool(obj4
));
17103 if (SWIG_arg_fail(5)) SWIG_fail
;
17108 arg6
= static_cast<int >(SWIG_As_int(obj5
));
17109 if (SWIG_arg_fail(6)) SWIG_fail
;
17113 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17114 result
= (bool)(arg1
)->InsertPage(arg2
,arg3
,(wxString
const &)*arg4
,arg5
,arg6
);
17116 wxPyEndAllowThreads(__tstate
);
17117 if (PyErr_Occurred()) SWIG_fail
;
17120 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17136 static PyObject
*_wrap_BookCtrlBase_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17137 PyObject
*resultobj
= NULL
;
17138 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
17141 PyObject
* obj0
= 0 ;
17142 PyObject
* obj1
= 0 ;
17143 char *kwnames
[] = {
17144 (char *) "self",(char *) "n", NULL
17147 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_SetSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
17148 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
17149 if (SWIG_arg_fail(1)) SWIG_fail
;
17151 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
17152 if (SWIG_arg_fail(2)) SWIG_fail
;
17155 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17156 result
= (int)(arg1
)->SetSelection(arg2
);
17158 wxPyEndAllowThreads(__tstate
);
17159 if (PyErr_Occurred()) SWIG_fail
;
17162 resultobj
= SWIG_From_int(static_cast<int >(result
));
17170 static PyObject
*_wrap_BookCtrlBase_AdvanceSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17171 PyObject
*resultobj
= NULL
;
17172 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
17173 bool arg2
= (bool) true ;
17174 PyObject
* obj0
= 0 ;
17175 PyObject
* obj1
= 0 ;
17176 char *kwnames
[] = {
17177 (char *) "self",(char *) "forward", NULL
17180 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:BookCtrlBase_AdvanceSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
17181 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
17182 if (SWIG_arg_fail(1)) SWIG_fail
;
17185 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
17186 if (SWIG_arg_fail(2)) SWIG_fail
;
17190 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17191 (arg1
)->AdvanceSelection(arg2
);
17193 wxPyEndAllowThreads(__tstate
);
17194 if (PyErr_Occurred()) SWIG_fail
;
17196 Py_INCREF(Py_None
); resultobj
= Py_None
;
17203 static PyObject
*_wrap_BookCtrlBase_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17204 PyObject
*resultobj
= NULL
;
17205 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
17206 wxVisualAttributes result
;
17207 PyObject
* obj0
= 0 ;
17208 char *kwnames
[] = {
17209 (char *) "variant", NULL
17212 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:BookCtrlBase_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
17215 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
17216 if (SWIG_arg_fail(1)) SWIG_fail
;
17220 if (!wxPyCheckForApp()) SWIG_fail
;
17221 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17222 result
= wxBookCtrlBase::GetClassDefaultAttributes(arg1
);
17224 wxPyEndAllowThreads(__tstate
);
17225 if (PyErr_Occurred()) SWIG_fail
;
17228 wxVisualAttributes
* resultptr
;
17229 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
17230 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
17238 static PyObject
* BookCtrlBase_swigregister(PyObject
*, PyObject
*args
) {
17240 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
17241 SWIG_TypeClientData(SWIGTYPE_p_wxBookCtrlBase
, obj
);
17243 return Py_BuildValue((char *)"");
17245 static PyObject
*_wrap_new_BookCtrlBaseEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17246 PyObject
*resultobj
= NULL
;
17247 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
17248 int arg2
= (int) 0 ;
17249 int arg3
= (int) -1 ;
17250 int arg4
= (int) -1 ;
17251 wxBookCtrlBaseEvent
*result
;
17252 PyObject
* obj0
= 0 ;
17253 PyObject
* obj1
= 0 ;
17254 PyObject
* obj2
= 0 ;
17255 PyObject
* obj3
= 0 ;
17256 char *kwnames
[] = {
17257 (char *) "commandType",(char *) "id",(char *) "nSel",(char *) "nOldSel", NULL
17260 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_BookCtrlBaseEvent",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
17263 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
17264 if (SWIG_arg_fail(1)) SWIG_fail
;
17269 arg2
= static_cast<int >(SWIG_As_int(obj1
));
17270 if (SWIG_arg_fail(2)) SWIG_fail
;
17275 arg3
= static_cast<int >(SWIG_As_int(obj2
));
17276 if (SWIG_arg_fail(3)) SWIG_fail
;
17281 arg4
= static_cast<int >(SWIG_As_int(obj3
));
17282 if (SWIG_arg_fail(4)) SWIG_fail
;
17286 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17287 result
= (wxBookCtrlBaseEvent
*)new wxBookCtrlBaseEvent(arg1
,arg2
,arg3
,arg4
);
17289 wxPyEndAllowThreads(__tstate
);
17290 if (PyErr_Occurred()) SWIG_fail
;
17292 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxBookCtrlBaseEvent
, 1);
17299 static PyObject
*_wrap_BookCtrlBaseEvent_GetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17300 PyObject
*resultobj
= NULL
;
17301 wxBookCtrlBaseEvent
*arg1
= (wxBookCtrlBaseEvent
*) 0 ;
17303 PyObject
* obj0
= 0 ;
17304 char *kwnames
[] = {
17305 (char *) "self", NULL
17308 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBaseEvent_GetSelection",kwnames
,&obj0
)) goto fail
;
17309 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBaseEvent
, SWIG_POINTER_EXCEPTION
| 0);
17310 if (SWIG_arg_fail(1)) SWIG_fail
;
17312 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17313 result
= (int)((wxBookCtrlBaseEvent
const *)arg1
)->GetSelection();
17315 wxPyEndAllowThreads(__tstate
);
17316 if (PyErr_Occurred()) SWIG_fail
;
17319 resultobj
= SWIG_From_int(static_cast<int >(result
));
17327 static PyObject
*_wrap_BookCtrlBaseEvent_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17328 PyObject
*resultobj
= NULL
;
17329 wxBookCtrlBaseEvent
*arg1
= (wxBookCtrlBaseEvent
*) 0 ;
17331 PyObject
* obj0
= 0 ;
17332 PyObject
* obj1
= 0 ;
17333 char *kwnames
[] = {
17334 (char *) "self",(char *) "nSel", NULL
17337 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBaseEvent_SetSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
17338 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBaseEvent
, SWIG_POINTER_EXCEPTION
| 0);
17339 if (SWIG_arg_fail(1)) SWIG_fail
;
17341 arg2
= static_cast<int >(SWIG_As_int(obj1
));
17342 if (SWIG_arg_fail(2)) SWIG_fail
;
17345 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17346 (arg1
)->SetSelection(arg2
);
17348 wxPyEndAllowThreads(__tstate
);
17349 if (PyErr_Occurred()) SWIG_fail
;
17351 Py_INCREF(Py_None
); resultobj
= Py_None
;
17358 static PyObject
*_wrap_BookCtrlBaseEvent_GetOldSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17359 PyObject
*resultobj
= NULL
;
17360 wxBookCtrlBaseEvent
*arg1
= (wxBookCtrlBaseEvent
*) 0 ;
17362 PyObject
* obj0
= 0 ;
17363 char *kwnames
[] = {
17364 (char *) "self", NULL
17367 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBaseEvent_GetOldSelection",kwnames
,&obj0
)) goto fail
;
17368 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBaseEvent
, SWIG_POINTER_EXCEPTION
| 0);
17369 if (SWIG_arg_fail(1)) SWIG_fail
;
17371 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17372 result
= (int)((wxBookCtrlBaseEvent
const *)arg1
)->GetOldSelection();
17374 wxPyEndAllowThreads(__tstate
);
17375 if (PyErr_Occurred()) SWIG_fail
;
17378 resultobj
= SWIG_From_int(static_cast<int >(result
));
17386 static PyObject
*_wrap_BookCtrlBaseEvent_SetOldSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17387 PyObject
*resultobj
= NULL
;
17388 wxBookCtrlBaseEvent
*arg1
= (wxBookCtrlBaseEvent
*) 0 ;
17390 PyObject
* obj0
= 0 ;
17391 PyObject
* obj1
= 0 ;
17392 char *kwnames
[] = {
17393 (char *) "self",(char *) "nOldSel", NULL
17396 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBaseEvent_SetOldSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
17397 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBaseEvent
, SWIG_POINTER_EXCEPTION
| 0);
17398 if (SWIG_arg_fail(1)) SWIG_fail
;
17400 arg2
= static_cast<int >(SWIG_As_int(obj1
));
17401 if (SWIG_arg_fail(2)) SWIG_fail
;
17404 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17405 (arg1
)->SetOldSelection(arg2
);
17407 wxPyEndAllowThreads(__tstate
);
17408 if (PyErr_Occurred()) SWIG_fail
;
17410 Py_INCREF(Py_None
); resultobj
= Py_None
;
17417 static PyObject
* BookCtrlBaseEvent_swigregister(PyObject
*, PyObject
*args
) {
17419 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
17420 SWIG_TypeClientData(SWIGTYPE_p_wxBookCtrlBaseEvent
, obj
);
17422 return Py_BuildValue((char *)"");
17424 static PyObject
*_wrap_new_Notebook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17425 PyObject
*resultobj
= NULL
;
17426 wxWindow
*arg1
= (wxWindow
*) 0 ;
17427 int arg2
= (int) -1 ;
17428 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
17429 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
17430 wxSize
const &arg4_defvalue
= wxDefaultSize
;
17431 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
17432 long arg5
= (long) 0 ;
17433 wxString
const &arg6_defvalue
= wxPyNotebookNameStr
;
17434 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
17435 wxNotebook
*result
;
17438 bool temp6
= false ;
17439 PyObject
* obj0
= 0 ;
17440 PyObject
* obj1
= 0 ;
17441 PyObject
* obj2
= 0 ;
17442 PyObject
* obj3
= 0 ;
17443 PyObject
* obj4
= 0 ;
17444 PyObject
* obj5
= 0 ;
17445 char *kwnames
[] = {
17446 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
17449 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_Notebook",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
17450 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
17451 if (SWIG_arg_fail(1)) SWIG_fail
;
17454 arg2
= static_cast<int >(SWIG_As_int(obj1
));
17455 if (SWIG_arg_fail(2)) SWIG_fail
;
17461 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
17467 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
17472 arg5
= static_cast<long >(SWIG_As_long(obj4
));
17473 if (SWIG_arg_fail(5)) SWIG_fail
;
17478 arg6
= wxString_in_helper(obj5
);
17479 if (arg6
== NULL
) SWIG_fail
;
17484 if (!wxPyCheckForApp()) SWIG_fail
;
17485 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17486 result
= (wxNotebook
*)new wxNotebook(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
17488 wxPyEndAllowThreads(__tstate
);
17489 if (PyErr_Occurred()) SWIG_fail
;
17491 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxNotebook
, 1);
17506 static PyObject
*_wrap_new_PreNotebook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17507 PyObject
*resultobj
= NULL
;
17508 wxNotebook
*result
;
17509 char *kwnames
[] = {
17513 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreNotebook",kwnames
)) goto fail
;
17515 if (!wxPyCheckForApp()) SWIG_fail
;
17516 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17517 result
= (wxNotebook
*)new wxNotebook();
17519 wxPyEndAllowThreads(__tstate
);
17520 if (PyErr_Occurred()) SWIG_fail
;
17522 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxNotebook
, 1);
17529 static PyObject
*_wrap_Notebook_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17530 PyObject
*resultobj
= NULL
;
17531 wxNotebook
*arg1
= (wxNotebook
*) 0 ;
17532 wxWindow
*arg2
= (wxWindow
*) 0 ;
17533 int arg3
= (int) -1 ;
17534 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
17535 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
17536 wxSize
const &arg5_defvalue
= wxDefaultSize
;
17537 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
17538 long arg6
= (long) 0 ;
17539 wxString
const &arg7_defvalue
= wxPyNotebookNameStr
;
17540 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
17544 bool temp7
= false ;
17545 PyObject
* obj0
= 0 ;
17546 PyObject
* obj1
= 0 ;
17547 PyObject
* obj2
= 0 ;
17548 PyObject
* obj3
= 0 ;
17549 PyObject
* obj4
= 0 ;
17550 PyObject
* obj5
= 0 ;
17551 PyObject
* obj6
= 0 ;
17552 char *kwnames
[] = {
17553 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
17556 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:Notebook_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
17557 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxNotebook
, SWIG_POINTER_EXCEPTION
| 0);
17558 if (SWIG_arg_fail(1)) SWIG_fail
;
17559 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
17560 if (SWIG_arg_fail(2)) SWIG_fail
;
17563 arg3
= static_cast<int >(SWIG_As_int(obj2
));
17564 if (SWIG_arg_fail(3)) SWIG_fail
;
17570 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
17576 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
17581 arg6
= static_cast<long >(SWIG_As_long(obj5
));
17582 if (SWIG_arg_fail(6)) SWIG_fail
;
17587 arg7
= wxString_in_helper(obj6
);
17588 if (arg7
== NULL
) SWIG_fail
;
17593 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17594 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
17596 wxPyEndAllowThreads(__tstate
);
17597 if (PyErr_Occurred()) SWIG_fail
;
17600 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17616 static PyObject
*_wrap_Notebook_GetRowCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17617 PyObject
*resultobj
= NULL
;
17618 wxNotebook
*arg1
= (wxNotebook
*) 0 ;
17620 PyObject
* obj0
= 0 ;
17621 char *kwnames
[] = {
17622 (char *) "self", NULL
17625 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Notebook_GetRowCount",kwnames
,&obj0
)) goto fail
;
17626 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxNotebook
, SWIG_POINTER_EXCEPTION
| 0);
17627 if (SWIG_arg_fail(1)) SWIG_fail
;
17629 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17630 result
= (int)((wxNotebook
const *)arg1
)->GetRowCount();
17632 wxPyEndAllowThreads(__tstate
);
17633 if (PyErr_Occurred()) SWIG_fail
;
17636 resultobj
= SWIG_From_int(static_cast<int >(result
));
17644 static PyObject
*_wrap_Notebook_SetPadding(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17645 PyObject
*resultobj
= NULL
;
17646 wxNotebook
*arg1
= (wxNotebook
*) 0 ;
17649 PyObject
* obj0
= 0 ;
17650 PyObject
* obj1
= 0 ;
17651 char *kwnames
[] = {
17652 (char *) "self",(char *) "padding", NULL
17655 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Notebook_SetPadding",kwnames
,&obj0
,&obj1
)) goto fail
;
17656 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxNotebook
, SWIG_POINTER_EXCEPTION
| 0);
17657 if (SWIG_arg_fail(1)) SWIG_fail
;
17660 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
17663 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17664 (arg1
)->SetPadding((wxSize
const &)*arg2
);
17666 wxPyEndAllowThreads(__tstate
);
17667 if (PyErr_Occurred()) SWIG_fail
;
17669 Py_INCREF(Py_None
); resultobj
= Py_None
;
17676 static PyObject
*_wrap_Notebook_SetTabSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17677 PyObject
*resultobj
= NULL
;
17678 wxNotebook
*arg1
= (wxNotebook
*) 0 ;
17681 PyObject
* obj0
= 0 ;
17682 PyObject
* obj1
= 0 ;
17683 char *kwnames
[] = {
17684 (char *) "self",(char *) "sz", NULL
17687 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Notebook_SetTabSize",kwnames
,&obj0
,&obj1
)) goto fail
;
17688 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxNotebook
, SWIG_POINTER_EXCEPTION
| 0);
17689 if (SWIG_arg_fail(1)) SWIG_fail
;
17692 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
17695 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17696 (arg1
)->SetTabSize((wxSize
const &)*arg2
);
17698 wxPyEndAllowThreads(__tstate
);
17699 if (PyErr_Occurred()) SWIG_fail
;
17701 Py_INCREF(Py_None
); resultobj
= Py_None
;
17708 static PyObject
*_wrap_Notebook_HitTest(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17709 PyObject
*resultobj
= NULL
;
17710 wxNotebook
*arg1
= (wxNotebook
*) 0 ;
17711 wxPoint
*arg2
= 0 ;
17712 long *arg3
= (long *) 0 ;
17717 PyObject
* obj0
= 0 ;
17718 PyObject
* obj1
= 0 ;
17719 char *kwnames
[] = {
17720 (char *) "self",(char *) "pt", NULL
17723 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
17724 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Notebook_HitTest",kwnames
,&obj0
,&obj1
)) goto fail
;
17725 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxNotebook
, SWIG_POINTER_EXCEPTION
| 0);
17726 if (SWIG_arg_fail(1)) SWIG_fail
;
17729 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
17732 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17733 result
= (int)((wxNotebook
const *)arg1
)->HitTest((wxPoint
const &)*arg2
,arg3
);
17735 wxPyEndAllowThreads(__tstate
);
17736 if (PyErr_Occurred()) SWIG_fail
;
17739 resultobj
= SWIG_From_int(static_cast<int >(result
));
17741 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
17742 SWIG_From_long((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_long
, 0)));
17749 static PyObject
*_wrap_Notebook_CalcSizeFromPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17750 PyObject
*resultobj
= NULL
;
17751 wxNotebook
*arg1
= (wxNotebook
*) 0 ;
17755 PyObject
* obj0
= 0 ;
17756 PyObject
* obj1
= 0 ;
17757 char *kwnames
[] = {
17758 (char *) "self",(char *) "sizePage", NULL
17761 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Notebook_CalcSizeFromPage",kwnames
,&obj0
,&obj1
)) goto fail
;
17762 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxNotebook
, SWIG_POINTER_EXCEPTION
| 0);
17763 if (SWIG_arg_fail(1)) SWIG_fail
;
17766 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
17769 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17770 result
= ((wxNotebook
const *)arg1
)->CalcSizeFromPage((wxSize
const &)*arg2
);
17772 wxPyEndAllowThreads(__tstate
);
17773 if (PyErr_Occurred()) SWIG_fail
;
17776 wxSize
* resultptr
;
17777 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
17778 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
17786 static PyObject
*_wrap_Notebook_GetThemeBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17787 PyObject
*resultobj
= NULL
;
17788 wxNotebook
*arg1
= (wxNotebook
*) 0 ;
17790 PyObject
* obj0
= 0 ;
17791 char *kwnames
[] = {
17792 (char *) "self", NULL
17795 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Notebook_GetThemeBackgroundColour",kwnames
,&obj0
)) goto fail
;
17796 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxNotebook
, SWIG_POINTER_EXCEPTION
| 0);
17797 if (SWIG_arg_fail(1)) SWIG_fail
;
17799 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17800 result
= ((wxNotebook
const *)arg1
)->GetThemeBackgroundColour();
17802 wxPyEndAllowThreads(__tstate
);
17803 if (PyErr_Occurred()) SWIG_fail
;
17806 wxColour
* resultptr
;
17807 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
17808 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
17816 static PyObject
*_wrap_Notebook_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17817 PyObject
*resultobj
= NULL
;
17818 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
17819 wxVisualAttributes result
;
17820 PyObject
* obj0
= 0 ;
17821 char *kwnames
[] = {
17822 (char *) "variant", NULL
17825 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Notebook_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
17828 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
17829 if (SWIG_arg_fail(1)) SWIG_fail
;
17833 if (!wxPyCheckForApp()) SWIG_fail
;
17834 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17835 result
= wxNotebook::GetClassDefaultAttributes(arg1
);
17837 wxPyEndAllowThreads(__tstate
);
17838 if (PyErr_Occurred()) SWIG_fail
;
17841 wxVisualAttributes
* resultptr
;
17842 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
17843 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
17851 static PyObject
* Notebook_swigregister(PyObject
*, PyObject
*args
) {
17853 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
17854 SWIG_TypeClientData(SWIGTYPE_p_wxNotebook
, obj
);
17856 return Py_BuildValue((char *)"");
17858 static PyObject
*_wrap_new_NotebookEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17859 PyObject
*resultobj
= NULL
;
17860 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
17861 int arg2
= (int) 0 ;
17862 int arg3
= (int) -1 ;
17863 int arg4
= (int) -1 ;
17864 wxNotebookEvent
*result
;
17865 PyObject
* obj0
= 0 ;
17866 PyObject
* obj1
= 0 ;
17867 PyObject
* obj2
= 0 ;
17868 PyObject
* obj3
= 0 ;
17869 char *kwnames
[] = {
17870 (char *) "commandType",(char *) "id",(char *) "nSel",(char *) "nOldSel", NULL
17873 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_NotebookEvent",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
17876 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
17877 if (SWIG_arg_fail(1)) SWIG_fail
;
17882 arg2
= static_cast<int >(SWIG_As_int(obj1
));
17883 if (SWIG_arg_fail(2)) SWIG_fail
;
17888 arg3
= static_cast<int >(SWIG_As_int(obj2
));
17889 if (SWIG_arg_fail(3)) SWIG_fail
;
17894 arg4
= static_cast<int >(SWIG_As_int(obj3
));
17895 if (SWIG_arg_fail(4)) SWIG_fail
;
17899 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17900 result
= (wxNotebookEvent
*)new wxNotebookEvent(arg1
,arg2
,arg3
,arg4
);
17902 wxPyEndAllowThreads(__tstate
);
17903 if (PyErr_Occurred()) SWIG_fail
;
17905 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxNotebookEvent
, 1);
17912 static PyObject
* NotebookEvent_swigregister(PyObject
*, PyObject
*args
) {
17914 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
17915 SWIG_TypeClientData(SWIGTYPE_p_wxNotebookEvent
, obj
);
17917 return Py_BuildValue((char *)"");
17919 static PyObject
*_wrap_new_Listbook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17920 PyObject
*resultobj
= NULL
;
17921 wxWindow
*arg1
= (wxWindow
*) 0 ;
17922 int arg2
= (int) -1 ;
17923 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
17924 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
17925 wxSize
const &arg4_defvalue
= wxDefaultSize
;
17926 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
17927 long arg5
= (long) 0 ;
17928 wxString
const &arg6_defvalue
= wxPyEmptyString
;
17929 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
17930 wxListbook
*result
;
17933 bool temp6
= false ;
17934 PyObject
* obj0
= 0 ;
17935 PyObject
* obj1
= 0 ;
17936 PyObject
* obj2
= 0 ;
17937 PyObject
* obj3
= 0 ;
17938 PyObject
* obj4
= 0 ;
17939 PyObject
* obj5
= 0 ;
17940 char *kwnames
[] = {
17941 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
17944 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_Listbook",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
17945 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
17946 if (SWIG_arg_fail(1)) SWIG_fail
;
17949 arg2
= static_cast<int >(SWIG_As_int(obj1
));
17950 if (SWIG_arg_fail(2)) SWIG_fail
;
17956 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
17962 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
17967 arg5
= static_cast<long >(SWIG_As_long(obj4
));
17968 if (SWIG_arg_fail(5)) SWIG_fail
;
17973 arg6
= wxString_in_helper(obj5
);
17974 if (arg6
== NULL
) SWIG_fail
;
17979 if (!wxPyCheckForApp()) SWIG_fail
;
17980 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17981 result
= (wxListbook
*)new wxListbook(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
17983 wxPyEndAllowThreads(__tstate
);
17984 if (PyErr_Occurred()) SWIG_fail
;
17986 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListbook
, 1);
18001 static PyObject
*_wrap_new_PreListbook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18002 PyObject
*resultobj
= NULL
;
18003 wxListbook
*result
;
18004 char *kwnames
[] = {
18008 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreListbook",kwnames
)) goto fail
;
18010 if (!wxPyCheckForApp()) SWIG_fail
;
18011 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18012 result
= (wxListbook
*)new wxListbook();
18014 wxPyEndAllowThreads(__tstate
);
18015 if (PyErr_Occurred()) SWIG_fail
;
18017 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListbook
, 1);
18024 static PyObject
*_wrap_Listbook_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18025 PyObject
*resultobj
= NULL
;
18026 wxListbook
*arg1
= (wxListbook
*) 0 ;
18027 wxWindow
*arg2
= (wxWindow
*) 0 ;
18028 int arg3
= (int) -1 ;
18029 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
18030 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
18031 wxSize
const &arg5_defvalue
= wxDefaultSize
;
18032 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
18033 long arg6
= (long) 0 ;
18034 wxString
const &arg7_defvalue
= wxPyEmptyString
;
18035 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
18039 bool temp7
= false ;
18040 PyObject
* obj0
= 0 ;
18041 PyObject
* obj1
= 0 ;
18042 PyObject
* obj2
= 0 ;
18043 PyObject
* obj3
= 0 ;
18044 PyObject
* obj4
= 0 ;
18045 PyObject
* obj5
= 0 ;
18046 PyObject
* obj6
= 0 ;
18047 char *kwnames
[] = {
18048 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
18051 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:Listbook_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
18052 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListbook
, SWIG_POINTER_EXCEPTION
| 0);
18053 if (SWIG_arg_fail(1)) SWIG_fail
;
18054 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
18055 if (SWIG_arg_fail(2)) SWIG_fail
;
18058 arg3
= static_cast<int >(SWIG_As_int(obj2
));
18059 if (SWIG_arg_fail(3)) SWIG_fail
;
18065 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
18071 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
18076 arg6
= static_cast<long >(SWIG_As_long(obj5
));
18077 if (SWIG_arg_fail(6)) SWIG_fail
;
18082 arg7
= wxString_in_helper(obj6
);
18083 if (arg7
== NULL
) SWIG_fail
;
18088 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18089 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
18091 wxPyEndAllowThreads(__tstate
);
18092 if (PyErr_Occurred()) SWIG_fail
;
18095 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18111 static PyObject
*_wrap_Listbook_GetListView(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18112 PyObject
*resultobj
= NULL
;
18113 wxListbook
*arg1
= (wxListbook
*) 0 ;
18114 wxListView
*result
;
18115 PyObject
* obj0
= 0 ;
18116 char *kwnames
[] = {
18117 (char *) "self", NULL
18120 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Listbook_GetListView",kwnames
,&obj0
)) goto fail
;
18121 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListbook
, SWIG_POINTER_EXCEPTION
| 0);
18122 if (SWIG_arg_fail(1)) SWIG_fail
;
18124 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18125 result
= (wxListView
*)(arg1
)->GetListView();
18127 wxPyEndAllowThreads(__tstate
);
18128 if (PyErr_Occurred()) SWIG_fail
;
18130 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListView
, 0);
18137 static PyObject
* Listbook_swigregister(PyObject
*, PyObject
*args
) {
18139 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
18140 SWIG_TypeClientData(SWIGTYPE_p_wxListbook
, obj
);
18142 return Py_BuildValue((char *)"");
18144 static PyObject
*_wrap_new_ListbookEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18145 PyObject
*resultobj
= NULL
;
18146 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
18147 int arg2
= (int) 0 ;
18148 int arg3
= (int) -1 ;
18149 int arg4
= (int) -1 ;
18150 wxListbookEvent
*result
;
18151 PyObject
* obj0
= 0 ;
18152 PyObject
* obj1
= 0 ;
18153 PyObject
* obj2
= 0 ;
18154 PyObject
* obj3
= 0 ;
18155 char *kwnames
[] = {
18156 (char *) "commandType",(char *) "id",(char *) "nSel",(char *) "nOldSel", NULL
18159 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_ListbookEvent",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
18162 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
18163 if (SWIG_arg_fail(1)) SWIG_fail
;
18168 arg2
= static_cast<int >(SWIG_As_int(obj1
));
18169 if (SWIG_arg_fail(2)) SWIG_fail
;
18174 arg3
= static_cast<int >(SWIG_As_int(obj2
));
18175 if (SWIG_arg_fail(3)) SWIG_fail
;
18180 arg4
= static_cast<int >(SWIG_As_int(obj3
));
18181 if (SWIG_arg_fail(4)) SWIG_fail
;
18185 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18186 result
= (wxListbookEvent
*)new wxListbookEvent(arg1
,arg2
,arg3
,arg4
);
18188 wxPyEndAllowThreads(__tstate
);
18189 if (PyErr_Occurred()) SWIG_fail
;
18191 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListbookEvent
, 1);
18198 static PyObject
* ListbookEvent_swigregister(PyObject
*, PyObject
*args
) {
18200 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
18201 SWIG_TypeClientData(SWIGTYPE_p_wxListbookEvent
, obj
);
18203 return Py_BuildValue((char *)"");
18205 static PyObject
*_wrap_new_Choicebook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18206 PyObject
*resultobj
= NULL
;
18207 wxWindow
*arg1
= (wxWindow
*) 0 ;
18209 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
18210 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
18211 wxSize
const &arg4_defvalue
= wxDefaultSize
;
18212 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
18213 long arg5
= (long) 0 ;
18214 wxString
const &arg6_defvalue
= wxPyEmptyString
;
18215 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
18216 wxChoicebook
*result
;
18219 bool temp6
= false ;
18220 PyObject
* obj0
= 0 ;
18221 PyObject
* obj1
= 0 ;
18222 PyObject
* obj2
= 0 ;
18223 PyObject
* obj3
= 0 ;
18224 PyObject
* obj4
= 0 ;
18225 PyObject
* obj5
= 0 ;
18226 char *kwnames
[] = {
18227 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
18230 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:new_Choicebook",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
18231 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
18232 if (SWIG_arg_fail(1)) SWIG_fail
;
18234 arg2
= static_cast<int >(SWIG_As_int(obj1
));
18235 if (SWIG_arg_fail(2)) SWIG_fail
;
18240 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
18246 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
18251 arg5
= static_cast<long >(SWIG_As_long(obj4
));
18252 if (SWIG_arg_fail(5)) SWIG_fail
;
18257 arg6
= wxString_in_helper(obj5
);
18258 if (arg6
== NULL
) SWIG_fail
;
18263 if (!wxPyCheckForApp()) SWIG_fail
;
18264 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18265 result
= (wxChoicebook
*)new wxChoicebook(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
18267 wxPyEndAllowThreads(__tstate
);
18268 if (PyErr_Occurred()) SWIG_fail
;
18270 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxChoicebook
, 1);
18285 static PyObject
*_wrap_new_PreChoicebook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18286 PyObject
*resultobj
= NULL
;
18287 wxChoicebook
*result
;
18288 char *kwnames
[] = {
18292 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreChoicebook",kwnames
)) goto fail
;
18294 if (!wxPyCheckForApp()) SWIG_fail
;
18295 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18296 result
= (wxChoicebook
*)new wxChoicebook();
18298 wxPyEndAllowThreads(__tstate
);
18299 if (PyErr_Occurred()) SWIG_fail
;
18301 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxChoicebook
, 1);
18308 static PyObject
*_wrap_Choicebook_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18309 PyObject
*resultobj
= NULL
;
18310 wxChoicebook
*arg1
= (wxChoicebook
*) 0 ;
18311 wxWindow
*arg2
= (wxWindow
*) 0 ;
18313 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
18314 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
18315 wxSize
const &arg5_defvalue
= wxDefaultSize
;
18316 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
18317 long arg6
= (long) 0 ;
18318 wxString
const &arg7_defvalue
= wxPyEmptyString
;
18319 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
18323 bool temp7
= false ;
18324 PyObject
* obj0
= 0 ;
18325 PyObject
* obj1
= 0 ;
18326 PyObject
* obj2
= 0 ;
18327 PyObject
* obj3
= 0 ;
18328 PyObject
* obj4
= 0 ;
18329 PyObject
* obj5
= 0 ;
18330 PyObject
* obj6
= 0 ;
18331 char *kwnames
[] = {
18332 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
18335 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:Choicebook_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
18336 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxChoicebook
, SWIG_POINTER_EXCEPTION
| 0);
18337 if (SWIG_arg_fail(1)) SWIG_fail
;
18338 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
18339 if (SWIG_arg_fail(2)) SWIG_fail
;
18341 arg3
= static_cast<int >(SWIG_As_int(obj2
));
18342 if (SWIG_arg_fail(3)) SWIG_fail
;
18347 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
18353 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
18358 arg6
= static_cast<long >(SWIG_As_long(obj5
));
18359 if (SWIG_arg_fail(6)) SWIG_fail
;
18364 arg7
= wxString_in_helper(obj6
);
18365 if (arg7
== NULL
) SWIG_fail
;
18370 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18371 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
18373 wxPyEndAllowThreads(__tstate
);
18374 if (PyErr_Occurred()) SWIG_fail
;
18377 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18393 static PyObject
*_wrap_Choicebook_GetChoiceCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18394 PyObject
*resultobj
= NULL
;
18395 wxChoicebook
*arg1
= (wxChoicebook
*) 0 ;
18397 PyObject
* obj0
= 0 ;
18398 char *kwnames
[] = {
18399 (char *) "self", NULL
18402 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Choicebook_GetChoiceCtrl",kwnames
,&obj0
)) goto fail
;
18403 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxChoicebook
, SWIG_POINTER_EXCEPTION
| 0);
18404 if (SWIG_arg_fail(1)) SWIG_fail
;
18406 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18407 result
= (wxChoice
*)((wxChoicebook
const *)arg1
)->GetChoiceCtrl();
18409 wxPyEndAllowThreads(__tstate
);
18410 if (PyErr_Occurred()) SWIG_fail
;
18412 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxChoice
, 0);
18419 static PyObject
*_wrap_Choicebook_DeleteAllPages(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18420 PyObject
*resultobj
= NULL
;
18421 wxChoicebook
*arg1
= (wxChoicebook
*) 0 ;
18423 PyObject
* obj0
= 0 ;
18424 char *kwnames
[] = {
18425 (char *) "self", NULL
18428 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Choicebook_DeleteAllPages",kwnames
,&obj0
)) goto fail
;
18429 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxChoicebook
, SWIG_POINTER_EXCEPTION
| 0);
18430 if (SWIG_arg_fail(1)) SWIG_fail
;
18432 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18433 result
= (bool)(arg1
)->DeleteAllPages();
18435 wxPyEndAllowThreads(__tstate
);
18436 if (PyErr_Occurred()) SWIG_fail
;
18439 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18447 static PyObject
* Choicebook_swigregister(PyObject
*, PyObject
*args
) {
18449 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
18450 SWIG_TypeClientData(SWIGTYPE_p_wxChoicebook
, obj
);
18452 return Py_BuildValue((char *)"");
18454 static PyObject
*_wrap_new_ChoicebookEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18455 PyObject
*resultobj
= NULL
;
18456 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
18457 int arg2
= (int) 0 ;
18458 int arg3
= (int) -1 ;
18459 int arg4
= (int) -1 ;
18460 wxChoicebookEvent
*result
;
18461 PyObject
* obj0
= 0 ;
18462 PyObject
* obj1
= 0 ;
18463 PyObject
* obj2
= 0 ;
18464 PyObject
* obj3
= 0 ;
18465 char *kwnames
[] = {
18466 (char *) "commandType",(char *) "id",(char *) "nSel",(char *) "nOldSel", NULL
18469 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_ChoicebookEvent",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
18472 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
18473 if (SWIG_arg_fail(1)) SWIG_fail
;
18478 arg2
= static_cast<int >(SWIG_As_int(obj1
));
18479 if (SWIG_arg_fail(2)) SWIG_fail
;
18484 arg3
= static_cast<int >(SWIG_As_int(obj2
));
18485 if (SWIG_arg_fail(3)) SWIG_fail
;
18490 arg4
= static_cast<int >(SWIG_As_int(obj3
));
18491 if (SWIG_arg_fail(4)) SWIG_fail
;
18495 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18496 result
= (wxChoicebookEvent
*)new wxChoicebookEvent(arg1
,arg2
,arg3
,arg4
);
18498 wxPyEndAllowThreads(__tstate
);
18499 if (PyErr_Occurred()) SWIG_fail
;
18501 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxChoicebookEvent
, 1);
18508 static PyObject
* ChoicebookEvent_swigregister(PyObject
*, PyObject
*args
) {
18510 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
18511 SWIG_TypeClientData(SWIGTYPE_p_wxChoicebookEvent
, obj
);
18513 return Py_BuildValue((char *)"");
18515 static PyObject
*_wrap_new_Treebook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18516 PyObject
*resultobj
= NULL
;
18517 wxWindow
*arg1
= (wxWindow
*) 0 ;
18519 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
18520 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
18521 wxSize
const &arg4_defvalue
= wxDefaultSize
;
18522 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
18523 long arg5
= (long) wxBK_DEFAULT
;
18524 wxString
const &arg6_defvalue
= wxPyEmptyString
;
18525 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
18526 wxTreebook
*result
;
18529 bool temp6
= false ;
18530 PyObject
* obj0
= 0 ;
18531 PyObject
* obj1
= 0 ;
18532 PyObject
* obj2
= 0 ;
18533 PyObject
* obj3
= 0 ;
18534 PyObject
* obj4
= 0 ;
18535 PyObject
* obj5
= 0 ;
18536 char *kwnames
[] = {
18537 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
18540 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:new_Treebook",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
18541 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
18542 if (SWIG_arg_fail(1)) SWIG_fail
;
18544 arg2
= static_cast<int >(SWIG_As_int(obj1
));
18545 if (SWIG_arg_fail(2)) SWIG_fail
;
18550 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
18556 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
18561 arg5
= static_cast<long >(SWIG_As_long(obj4
));
18562 if (SWIG_arg_fail(5)) SWIG_fail
;
18567 arg6
= wxString_in_helper(obj5
);
18568 if (arg6
== NULL
) SWIG_fail
;
18573 if (!wxPyCheckForApp()) SWIG_fail
;
18574 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18575 result
= (wxTreebook
*)new wxTreebook(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
18577 wxPyEndAllowThreads(__tstate
);
18578 if (PyErr_Occurred()) SWIG_fail
;
18580 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTreebook
, 1);
18595 static PyObject
*_wrap_new_PreTreebook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18596 PyObject
*resultobj
= NULL
;
18597 wxTreebook
*result
;
18598 char *kwnames
[] = {
18602 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreTreebook",kwnames
)) goto fail
;
18604 if (!wxPyCheckForApp()) SWIG_fail
;
18605 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18606 result
= (wxTreebook
*)new wxTreebook();
18608 wxPyEndAllowThreads(__tstate
);
18609 if (PyErr_Occurred()) SWIG_fail
;
18611 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTreebook
, 1);
18618 static PyObject
*_wrap_Treebook_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18619 PyObject
*resultobj
= NULL
;
18620 wxTreebook
*arg1
= (wxTreebook
*) 0 ;
18621 wxWindow
*arg2
= (wxWindow
*) 0 ;
18623 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
18624 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
18625 wxSize
const &arg5_defvalue
= wxDefaultSize
;
18626 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
18627 long arg6
= (long) wxBK_DEFAULT
;
18628 wxString
const &arg7_defvalue
= wxPyEmptyString
;
18629 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
18633 bool temp7
= false ;
18634 PyObject
* obj0
= 0 ;
18635 PyObject
* obj1
= 0 ;
18636 PyObject
* obj2
= 0 ;
18637 PyObject
* obj3
= 0 ;
18638 PyObject
* obj4
= 0 ;
18639 PyObject
* obj5
= 0 ;
18640 PyObject
* obj6
= 0 ;
18641 char *kwnames
[] = {
18642 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
18645 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:Treebook_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
18646 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreebook
, SWIG_POINTER_EXCEPTION
| 0);
18647 if (SWIG_arg_fail(1)) SWIG_fail
;
18648 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
18649 if (SWIG_arg_fail(2)) SWIG_fail
;
18651 arg3
= static_cast<int >(SWIG_As_int(obj2
));
18652 if (SWIG_arg_fail(3)) SWIG_fail
;
18657 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
18663 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
18668 arg6
= static_cast<long >(SWIG_As_long(obj5
));
18669 if (SWIG_arg_fail(6)) SWIG_fail
;
18674 arg7
= wxString_in_helper(obj6
);
18675 if (arg7
== NULL
) SWIG_fail
;
18680 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18681 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
18683 wxPyEndAllowThreads(__tstate
);
18684 if (PyErr_Occurred()) SWIG_fail
;
18687 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18703 static PyObject
*_wrap_Treebook_InsertPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18704 PyObject
*resultobj
= NULL
;
18705 wxTreebook
*arg1
= (wxTreebook
*) 0 ;
18707 wxWindow
*arg3
= (wxWindow
*) 0 ;
18708 wxString
*arg4
= 0 ;
18709 bool arg5
= (bool) false ;
18710 int arg6
= (int) wxNOT_FOUND
;
18712 bool temp4
= false ;
18713 PyObject
* obj0
= 0 ;
18714 PyObject
* obj1
= 0 ;
18715 PyObject
* obj2
= 0 ;
18716 PyObject
* obj3
= 0 ;
18717 PyObject
* obj4
= 0 ;
18718 PyObject
* obj5
= 0 ;
18719 char *kwnames
[] = {
18720 (char *) "self",(char *) "pos",(char *) "page",(char *) "text",(char *) "select",(char *) "imageId", NULL
18723 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:Treebook_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
18724 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreebook
, SWIG_POINTER_EXCEPTION
| 0);
18725 if (SWIG_arg_fail(1)) SWIG_fail
;
18727 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
18728 if (SWIG_arg_fail(2)) SWIG_fail
;
18730 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
18731 if (SWIG_arg_fail(3)) SWIG_fail
;
18733 arg4
= wxString_in_helper(obj3
);
18734 if (arg4
== NULL
) SWIG_fail
;
18739 arg5
= static_cast<bool >(SWIG_As_bool(obj4
));
18740 if (SWIG_arg_fail(5)) SWIG_fail
;
18745 arg6
= static_cast<int >(SWIG_As_int(obj5
));
18746 if (SWIG_arg_fail(6)) SWIG_fail
;
18750 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18751 result
= (bool)(arg1
)->InsertPage(arg2
,arg3
,(wxString
const &)*arg4
,arg5
,arg6
);
18753 wxPyEndAllowThreads(__tstate
);
18754 if (PyErr_Occurred()) SWIG_fail
;
18757 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18773 static PyObject
*_wrap_Treebook_InsertSubPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18774 PyObject
*resultobj
= NULL
;
18775 wxTreebook
*arg1
= (wxTreebook
*) 0 ;
18777 wxWindow
*arg3
= (wxWindow
*) 0 ;
18778 wxString
*arg4
= 0 ;
18779 bool arg5
= (bool) false ;
18780 int arg6
= (int) wxNOT_FOUND
;
18782 bool temp4
= false ;
18783 PyObject
* obj0
= 0 ;
18784 PyObject
* obj1
= 0 ;
18785 PyObject
* obj2
= 0 ;
18786 PyObject
* obj3
= 0 ;
18787 PyObject
* obj4
= 0 ;
18788 PyObject
* obj5
= 0 ;
18789 char *kwnames
[] = {
18790 (char *) "self",(char *) "pos",(char *) "page",(char *) "text",(char *) "select",(char *) "imageId", NULL
18793 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:Treebook_InsertSubPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
18794 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreebook
, SWIG_POINTER_EXCEPTION
| 0);
18795 if (SWIG_arg_fail(1)) SWIG_fail
;
18797 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
18798 if (SWIG_arg_fail(2)) SWIG_fail
;
18800 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
18801 if (SWIG_arg_fail(3)) SWIG_fail
;
18803 arg4
= wxString_in_helper(obj3
);
18804 if (arg4
== NULL
) SWIG_fail
;
18809 arg5
= static_cast<bool >(SWIG_As_bool(obj4
));
18810 if (SWIG_arg_fail(5)) SWIG_fail
;
18815 arg6
= static_cast<int >(SWIG_As_int(obj5
));
18816 if (SWIG_arg_fail(6)) SWIG_fail
;
18820 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18821 result
= (bool)(arg1
)->InsertSubPage(arg2
,arg3
,(wxString
const &)*arg4
,arg5
,arg6
);
18823 wxPyEndAllowThreads(__tstate
);
18824 if (PyErr_Occurred()) SWIG_fail
;
18827 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18843 static PyObject
*_wrap_Treebook_AddPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18844 PyObject
*resultobj
= NULL
;
18845 wxTreebook
*arg1
= (wxTreebook
*) 0 ;
18846 wxWindow
*arg2
= (wxWindow
*) 0 ;
18847 wxString
*arg3
= 0 ;
18848 bool arg4
= (bool) false ;
18849 int arg5
= (int) wxNOT_FOUND
;
18851 bool temp3
= false ;
18852 PyObject
* obj0
= 0 ;
18853 PyObject
* obj1
= 0 ;
18854 PyObject
* obj2
= 0 ;
18855 PyObject
* obj3
= 0 ;
18856 PyObject
* obj4
= 0 ;
18857 char *kwnames
[] = {
18858 (char *) "self",(char *) "page",(char *) "text",(char *) "select",(char *) "imageId", NULL
18861 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:Treebook_AddPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
18862 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreebook
, SWIG_POINTER_EXCEPTION
| 0);
18863 if (SWIG_arg_fail(1)) SWIG_fail
;
18864 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
18865 if (SWIG_arg_fail(2)) SWIG_fail
;
18867 arg3
= wxString_in_helper(obj2
);
18868 if (arg3
== NULL
) SWIG_fail
;
18873 arg4
= static_cast<bool >(SWIG_As_bool(obj3
));
18874 if (SWIG_arg_fail(4)) SWIG_fail
;
18879 arg5
= static_cast<int >(SWIG_As_int(obj4
));
18880 if (SWIG_arg_fail(5)) SWIG_fail
;
18884 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18885 result
= (bool)(arg1
)->AddPage(arg2
,(wxString
const &)*arg3
,arg4
,arg5
);
18887 wxPyEndAllowThreads(__tstate
);
18888 if (PyErr_Occurred()) SWIG_fail
;
18891 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18907 static PyObject
*_wrap_Treebook_AddSubPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18908 PyObject
*resultobj
= NULL
;
18909 wxTreebook
*arg1
= (wxTreebook
*) 0 ;
18910 wxWindow
*arg2
= (wxWindow
*) 0 ;
18911 wxString
*arg3
= 0 ;
18912 bool arg4
= (bool) false ;
18913 int arg5
= (int) wxNOT_FOUND
;
18915 bool temp3
= false ;
18916 PyObject
* obj0
= 0 ;
18917 PyObject
* obj1
= 0 ;
18918 PyObject
* obj2
= 0 ;
18919 PyObject
* obj3
= 0 ;
18920 PyObject
* obj4
= 0 ;
18921 char *kwnames
[] = {
18922 (char *) "self",(char *) "page",(char *) "text",(char *) "select",(char *) "imageId", NULL
18925 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:Treebook_AddSubPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
18926 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreebook
, SWIG_POINTER_EXCEPTION
| 0);
18927 if (SWIG_arg_fail(1)) SWIG_fail
;
18928 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
18929 if (SWIG_arg_fail(2)) SWIG_fail
;
18931 arg3
= wxString_in_helper(obj2
);
18932 if (arg3
== NULL
) SWIG_fail
;
18937 arg4
= static_cast<bool >(SWIG_As_bool(obj3
));
18938 if (SWIG_arg_fail(4)) SWIG_fail
;
18943 arg5
= static_cast<int >(SWIG_As_int(obj4
));
18944 if (SWIG_arg_fail(5)) SWIG_fail
;
18948 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18949 result
= (bool)(arg1
)->AddSubPage(arg2
,(wxString
const &)*arg3
,arg4
,arg5
);
18951 wxPyEndAllowThreads(__tstate
);
18952 if (PyErr_Occurred()) SWIG_fail
;
18955 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18971 static PyObject
*_wrap_Treebook_DeletePage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18972 PyObject
*resultobj
= NULL
;
18973 wxTreebook
*arg1
= (wxTreebook
*) 0 ;
18976 PyObject
* obj0
= 0 ;
18977 PyObject
* obj1
= 0 ;
18978 char *kwnames
[] = {
18979 (char *) "self",(char *) "pos", NULL
18982 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Treebook_DeletePage",kwnames
,&obj0
,&obj1
)) goto fail
;
18983 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreebook
, SWIG_POINTER_EXCEPTION
| 0);
18984 if (SWIG_arg_fail(1)) SWIG_fail
;
18986 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
18987 if (SWIG_arg_fail(2)) SWIG_fail
;
18990 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18991 result
= (bool)(arg1
)->DeletePage(arg2
);
18993 wxPyEndAllowThreads(__tstate
);
18994 if (PyErr_Occurred()) SWIG_fail
;
18997 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19005 static PyObject
*_wrap_Treebook_IsNodeExpanded(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19006 PyObject
*resultobj
= NULL
;
19007 wxTreebook
*arg1
= (wxTreebook
*) 0 ;
19010 PyObject
* obj0
= 0 ;
19011 PyObject
* obj1
= 0 ;
19012 char *kwnames
[] = {
19013 (char *) "self",(char *) "pos", NULL
19016 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Treebook_IsNodeExpanded",kwnames
,&obj0
,&obj1
)) goto fail
;
19017 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreebook
, SWIG_POINTER_EXCEPTION
| 0);
19018 if (SWIG_arg_fail(1)) SWIG_fail
;
19020 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
19021 if (SWIG_arg_fail(2)) SWIG_fail
;
19024 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19025 result
= (bool)((wxTreebook
const *)arg1
)->IsNodeExpanded(arg2
);
19027 wxPyEndAllowThreads(__tstate
);
19028 if (PyErr_Occurred()) SWIG_fail
;
19031 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19039 static PyObject
*_wrap_Treebook_ExpandNode(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19040 PyObject
*resultobj
= NULL
;
19041 wxTreebook
*arg1
= (wxTreebook
*) 0 ;
19043 bool arg3
= (bool) true ;
19045 PyObject
* obj0
= 0 ;
19046 PyObject
* obj1
= 0 ;
19047 PyObject
* obj2
= 0 ;
19048 char *kwnames
[] = {
19049 (char *) "self",(char *) "pos",(char *) "expand", NULL
19052 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:Treebook_ExpandNode",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
19053 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreebook
, SWIG_POINTER_EXCEPTION
| 0);
19054 if (SWIG_arg_fail(1)) SWIG_fail
;
19056 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
19057 if (SWIG_arg_fail(2)) SWIG_fail
;
19061 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
19062 if (SWIG_arg_fail(3)) SWIG_fail
;
19066 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19067 result
= (bool)(arg1
)->ExpandNode(arg2
,arg3
);
19069 wxPyEndAllowThreads(__tstate
);
19070 if (PyErr_Occurred()) SWIG_fail
;
19073 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19081 static PyObject
*_wrap_Treebook_CollapseNode(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19082 PyObject
*resultobj
= NULL
;
19083 wxTreebook
*arg1
= (wxTreebook
*) 0 ;
19086 PyObject
* obj0
= 0 ;
19087 PyObject
* obj1
= 0 ;
19088 char *kwnames
[] = {
19089 (char *) "self",(char *) "pos", NULL
19092 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Treebook_CollapseNode",kwnames
,&obj0
,&obj1
)) goto fail
;
19093 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreebook
, SWIG_POINTER_EXCEPTION
| 0);
19094 if (SWIG_arg_fail(1)) SWIG_fail
;
19096 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
19097 if (SWIG_arg_fail(2)) SWIG_fail
;
19100 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19101 result
= (bool)(arg1
)->CollapseNode(arg2
);
19103 wxPyEndAllowThreads(__tstate
);
19104 if (PyErr_Occurred()) SWIG_fail
;
19107 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19115 static PyObject
*_wrap_Treebook_GetPageParent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19116 PyObject
*resultobj
= NULL
;
19117 wxTreebook
*arg1
= (wxTreebook
*) 0 ;
19120 PyObject
* obj0
= 0 ;
19121 PyObject
* obj1
= 0 ;
19122 char *kwnames
[] = {
19123 (char *) "self",(char *) "pos", NULL
19126 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Treebook_GetPageParent",kwnames
,&obj0
,&obj1
)) goto fail
;
19127 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreebook
, SWIG_POINTER_EXCEPTION
| 0);
19128 if (SWIG_arg_fail(1)) SWIG_fail
;
19130 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
19131 if (SWIG_arg_fail(2)) SWIG_fail
;
19134 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19135 result
= (int)((wxTreebook
const *)arg1
)->GetPageParent(arg2
);
19137 wxPyEndAllowThreads(__tstate
);
19138 if (PyErr_Occurred()) SWIG_fail
;
19141 resultobj
= SWIG_From_int(static_cast<int >(result
));
19149 static PyObject
*_wrap_Treebook_GetTreeCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19150 PyObject
*resultobj
= NULL
;
19151 wxTreebook
*arg1
= (wxTreebook
*) 0 ;
19152 wxTreeCtrl
*result
;
19153 PyObject
* obj0
= 0 ;
19154 char *kwnames
[] = {
19155 (char *) "self", NULL
19158 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Treebook_GetTreeCtrl",kwnames
,&obj0
)) goto fail
;
19159 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreebook
, SWIG_POINTER_EXCEPTION
| 0);
19160 if (SWIG_arg_fail(1)) SWIG_fail
;
19162 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19163 result
= (wxTreeCtrl
*)((wxTreebook
const *)arg1
)->GetTreeCtrl();
19165 wxPyEndAllowThreads(__tstate
);
19166 if (PyErr_Occurred()) SWIG_fail
;
19168 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTreeCtrl
, 0);
19175 static PyObject
* Treebook_swigregister(PyObject
*, PyObject
*args
) {
19177 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
19178 SWIG_TypeClientData(SWIGTYPE_p_wxTreebook
, obj
);
19180 return Py_BuildValue((char *)"");
19182 static PyObject
*_wrap_new_TreebookEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19183 PyObject
*resultobj
= NULL
;
19184 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
19185 int arg2
= (int) 0 ;
19186 int arg3
= (int) wxNOT_FOUND
;
19187 int arg4
= (int) wxNOT_FOUND
;
19188 wxTreebookEvent
*result
;
19189 PyObject
* obj0
= 0 ;
19190 PyObject
* obj1
= 0 ;
19191 PyObject
* obj2
= 0 ;
19192 PyObject
* obj3
= 0 ;
19193 char *kwnames
[] = {
19194 (char *) "commandType",(char *) "id",(char *) "nSel",(char *) "nOldSel", NULL
19197 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_TreebookEvent",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
19200 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
19201 if (SWIG_arg_fail(1)) SWIG_fail
;
19206 arg2
= static_cast<int >(SWIG_As_int(obj1
));
19207 if (SWIG_arg_fail(2)) SWIG_fail
;
19212 arg3
= static_cast<int >(SWIG_As_int(obj2
));
19213 if (SWIG_arg_fail(3)) SWIG_fail
;
19218 arg4
= static_cast<int >(SWIG_As_int(obj3
));
19219 if (SWIG_arg_fail(4)) SWIG_fail
;
19223 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19224 result
= (wxTreebookEvent
*)new wxTreebookEvent(arg1
,arg2
,arg3
,arg4
);
19226 wxPyEndAllowThreads(__tstate
);
19227 if (PyErr_Occurred()) SWIG_fail
;
19229 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTreebookEvent
, 1);
19236 static PyObject
* TreebookEvent_swigregister(PyObject
*, PyObject
*args
) {
19238 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
19239 SWIG_TypeClientData(SWIGTYPE_p_wxTreebookEvent
, obj
);
19241 return Py_BuildValue((char *)"");
19243 static PyObject
*_wrap_new_Toolbook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19244 PyObject
*resultobj
= NULL
;
19245 wxWindow
*arg1
= (wxWindow
*) 0 ;
19247 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
19248 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
19249 wxSize
const &arg4_defvalue
= wxDefaultSize
;
19250 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
19251 long arg5
= (long) wxBK_DEFAULT
;
19252 wxString
const &arg6_defvalue
= wxPyEmptyString
;
19253 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
19254 wxToolbook
*result
;
19257 bool temp6
= false ;
19258 PyObject
* obj0
= 0 ;
19259 PyObject
* obj1
= 0 ;
19260 PyObject
* obj2
= 0 ;
19261 PyObject
* obj3
= 0 ;
19262 PyObject
* obj4
= 0 ;
19263 PyObject
* obj5
= 0 ;
19264 char *kwnames
[] = {
19265 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
19268 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:new_Toolbook",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
19269 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
19270 if (SWIG_arg_fail(1)) SWIG_fail
;
19272 arg2
= static_cast<int >(SWIG_As_int(obj1
));
19273 if (SWIG_arg_fail(2)) SWIG_fail
;
19278 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
19284 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
19289 arg5
= static_cast<long >(SWIG_As_long(obj4
));
19290 if (SWIG_arg_fail(5)) SWIG_fail
;
19295 arg6
= wxString_in_helper(obj5
);
19296 if (arg6
== NULL
) SWIG_fail
;
19301 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19302 result
= (wxToolbook
*)new wxToolbook(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
19304 wxPyEndAllowThreads(__tstate
);
19305 if (PyErr_Occurred()) SWIG_fail
;
19307 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxToolbook
, 1);
19322 static PyObject
*_wrap_new_PreToolbook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19323 PyObject
*resultobj
= NULL
;
19324 wxToolbook
*result
;
19325 char *kwnames
[] = {
19329 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreToolbook",kwnames
)) goto fail
;
19331 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19332 result
= (wxToolbook
*)new wxToolbook();
19334 wxPyEndAllowThreads(__tstate
);
19335 if (PyErr_Occurred()) SWIG_fail
;
19337 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxToolbook
, 1);
19344 static PyObject
*_wrap_Toolbook_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19345 PyObject
*resultobj
= NULL
;
19346 wxToolbook
*arg1
= (wxToolbook
*) 0 ;
19347 wxWindow
*arg2
= (wxWindow
*) 0 ;
19349 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
19350 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
19351 wxSize
const &arg5_defvalue
= wxDefaultSize
;
19352 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
19353 long arg6
= (long) 0 ;
19354 wxString
const &arg7_defvalue
= wxEmptyString
;
19355 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
19359 bool temp7
= false ;
19360 PyObject
* obj0
= 0 ;
19361 PyObject
* obj1
= 0 ;
19362 PyObject
* obj2
= 0 ;
19363 PyObject
* obj3
= 0 ;
19364 PyObject
* obj4
= 0 ;
19365 PyObject
* obj5
= 0 ;
19366 PyObject
* obj6
= 0 ;
19367 char *kwnames
[] = {
19368 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
19371 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:Toolbook_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
19372 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolbook
, SWIG_POINTER_EXCEPTION
| 0);
19373 if (SWIG_arg_fail(1)) SWIG_fail
;
19374 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
19375 if (SWIG_arg_fail(2)) SWIG_fail
;
19377 arg3
= static_cast<int >(SWIG_As_int(obj2
));
19378 if (SWIG_arg_fail(3)) SWIG_fail
;
19383 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
19389 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
19394 arg6
= static_cast<long >(SWIG_As_long(obj5
));
19395 if (SWIG_arg_fail(6)) SWIG_fail
;
19400 arg7
= wxString_in_helper(obj6
);
19401 if (arg7
== NULL
) SWIG_fail
;
19406 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19407 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
19409 wxPyEndAllowThreads(__tstate
);
19410 if (PyErr_Occurred()) SWIG_fail
;
19413 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19429 static PyObject
*_wrap_Toolbook_GetToolBar(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19430 PyObject
*resultobj
= NULL
;
19431 wxToolbook
*arg1
= (wxToolbook
*) 0 ;
19432 wxToolBarBase
*result
;
19433 PyObject
* obj0
= 0 ;
19434 char *kwnames
[] = {
19435 (char *) "self", NULL
19438 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Toolbook_GetToolBar",kwnames
,&obj0
)) goto fail
;
19439 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolbook
, SWIG_POINTER_EXCEPTION
| 0);
19440 if (SWIG_arg_fail(1)) SWIG_fail
;
19442 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19443 result
= (wxToolBarBase
*)((wxToolbook
const *)arg1
)->GetToolBar();
19445 wxPyEndAllowThreads(__tstate
);
19446 if (PyErr_Occurred()) SWIG_fail
;
19449 resultobj
= wxPyMake_wxObject(result
, (bool)0);
19457 static PyObject
*_wrap_Toolbook_Realize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19458 PyObject
*resultobj
= NULL
;
19459 wxToolbook
*arg1
= (wxToolbook
*) 0 ;
19460 PyObject
* obj0
= 0 ;
19461 char *kwnames
[] = {
19462 (char *) "self", NULL
19465 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Toolbook_Realize",kwnames
,&obj0
)) goto fail
;
19466 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolbook
, SWIG_POINTER_EXCEPTION
| 0);
19467 if (SWIG_arg_fail(1)) SWIG_fail
;
19469 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19472 wxPyEndAllowThreads(__tstate
);
19473 if (PyErr_Occurred()) SWIG_fail
;
19475 Py_INCREF(Py_None
); resultobj
= Py_None
;
19482 static PyObject
* Toolbook_swigregister(PyObject
*, PyObject
*args
) {
19484 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
19485 SWIG_TypeClientData(SWIGTYPE_p_wxToolbook
, obj
);
19487 return Py_BuildValue((char *)"");
19489 static PyObject
*_wrap_new_ToolbookEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19490 PyObject
*resultobj
= NULL
;
19491 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
19492 int arg2
= (int) 0 ;
19493 int arg3
= (int) wxNOT_FOUND
;
19494 int arg4
= (int) wxNOT_FOUND
;
19495 wxToolbookEvent
*result
;
19496 PyObject
* obj0
= 0 ;
19497 PyObject
* obj1
= 0 ;
19498 PyObject
* obj2
= 0 ;
19499 PyObject
* obj3
= 0 ;
19500 char *kwnames
[] = {
19501 (char *) "commandType",(char *) "id",(char *) "nSel",(char *) "nOldSel", NULL
19504 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_ToolbookEvent",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
19507 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
19508 if (SWIG_arg_fail(1)) SWIG_fail
;
19513 arg2
= static_cast<int >(SWIG_As_int(obj1
));
19514 if (SWIG_arg_fail(2)) SWIG_fail
;
19519 arg3
= static_cast<int >(SWIG_As_int(obj2
));
19520 if (SWIG_arg_fail(3)) SWIG_fail
;
19525 arg4
= static_cast<int >(SWIG_As_int(obj3
));
19526 if (SWIG_arg_fail(4)) SWIG_fail
;
19530 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19531 result
= (wxToolbookEvent
*)new wxToolbookEvent(arg1
,arg2
,arg3
,arg4
);
19533 wxPyEndAllowThreads(__tstate
);
19534 if (PyErr_Occurred()) SWIG_fail
;
19536 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxToolbookEvent
, 1);
19543 static PyObject
* ToolbookEvent_swigregister(PyObject
*, PyObject
*args
) {
19545 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
19546 SWIG_TypeClientData(SWIGTYPE_p_wxToolbookEvent
, obj
);
19548 return Py_BuildValue((char *)"");
19550 static PyObject
*_wrap_ToolBarToolBase_GetId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19551 PyObject
*resultobj
= NULL
;
19552 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19554 PyObject
* obj0
= 0 ;
19555 char *kwnames
[] = {
19556 (char *) "self", NULL
19559 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetId",kwnames
,&obj0
)) goto fail
;
19560 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19561 if (SWIG_arg_fail(1)) SWIG_fail
;
19563 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19564 result
= (int)(arg1
)->GetId();
19566 wxPyEndAllowThreads(__tstate
);
19567 if (PyErr_Occurred()) SWIG_fail
;
19570 resultobj
= SWIG_From_int(static_cast<int >(result
));
19578 static PyObject
*_wrap_ToolBarToolBase_GetControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19579 PyObject
*resultobj
= NULL
;
19580 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19582 PyObject
* obj0
= 0 ;
19583 char *kwnames
[] = {
19584 (char *) "self", NULL
19587 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetControl",kwnames
,&obj0
)) goto fail
;
19588 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19589 if (SWIG_arg_fail(1)) SWIG_fail
;
19591 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19592 result
= (wxControl
*)(arg1
)->GetControl();
19594 wxPyEndAllowThreads(__tstate
);
19595 if (PyErr_Occurred()) SWIG_fail
;
19598 resultobj
= wxPyMake_wxObject(result
, 0);
19606 static PyObject
*_wrap_ToolBarToolBase_GetToolBar(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19607 PyObject
*resultobj
= NULL
;
19608 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19609 wxToolBarBase
*result
;
19610 PyObject
* obj0
= 0 ;
19611 char *kwnames
[] = {
19612 (char *) "self", NULL
19615 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetToolBar",kwnames
,&obj0
)) goto fail
;
19616 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19617 if (SWIG_arg_fail(1)) SWIG_fail
;
19619 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19620 result
= (wxToolBarBase
*)(arg1
)->GetToolBar();
19622 wxPyEndAllowThreads(__tstate
);
19623 if (PyErr_Occurred()) SWIG_fail
;
19626 resultobj
= wxPyMake_wxObject(result
, (bool)0);
19634 static PyObject
*_wrap_ToolBarToolBase_IsButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19635 PyObject
*resultobj
= NULL
;
19636 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19638 PyObject
* obj0
= 0 ;
19639 char *kwnames
[] = {
19640 (char *) "self", NULL
19643 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_IsButton",kwnames
,&obj0
)) goto fail
;
19644 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19645 if (SWIG_arg_fail(1)) SWIG_fail
;
19647 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19648 result
= (int)(arg1
)->IsButton();
19650 wxPyEndAllowThreads(__tstate
);
19651 if (PyErr_Occurred()) SWIG_fail
;
19654 resultobj
= SWIG_From_int(static_cast<int >(result
));
19662 static PyObject
*_wrap_ToolBarToolBase_IsControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19663 PyObject
*resultobj
= NULL
;
19664 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19666 PyObject
* obj0
= 0 ;
19667 char *kwnames
[] = {
19668 (char *) "self", NULL
19671 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_IsControl",kwnames
,&obj0
)) goto fail
;
19672 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19673 if (SWIG_arg_fail(1)) SWIG_fail
;
19675 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19676 result
= (int)(arg1
)->IsControl();
19678 wxPyEndAllowThreads(__tstate
);
19679 if (PyErr_Occurred()) SWIG_fail
;
19682 resultobj
= SWIG_From_int(static_cast<int >(result
));
19690 static PyObject
*_wrap_ToolBarToolBase_IsSeparator(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19691 PyObject
*resultobj
= NULL
;
19692 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19694 PyObject
* obj0
= 0 ;
19695 char *kwnames
[] = {
19696 (char *) "self", NULL
19699 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_IsSeparator",kwnames
,&obj0
)) goto fail
;
19700 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19701 if (SWIG_arg_fail(1)) SWIG_fail
;
19703 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19704 result
= (int)(arg1
)->IsSeparator();
19706 wxPyEndAllowThreads(__tstate
);
19707 if (PyErr_Occurred()) SWIG_fail
;
19710 resultobj
= SWIG_From_int(static_cast<int >(result
));
19718 static PyObject
*_wrap_ToolBarToolBase_GetStyle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19719 PyObject
*resultobj
= NULL
;
19720 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19722 PyObject
* obj0
= 0 ;
19723 char *kwnames
[] = {
19724 (char *) "self", NULL
19727 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetStyle",kwnames
,&obj0
)) goto fail
;
19728 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19729 if (SWIG_arg_fail(1)) SWIG_fail
;
19731 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19732 result
= (int)(arg1
)->GetStyle();
19734 wxPyEndAllowThreads(__tstate
);
19735 if (PyErr_Occurred()) SWIG_fail
;
19738 resultobj
= SWIG_From_int(static_cast<int >(result
));
19746 static PyObject
*_wrap_ToolBarToolBase_GetKind(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19747 PyObject
*resultobj
= NULL
;
19748 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19750 PyObject
* obj0
= 0 ;
19751 char *kwnames
[] = {
19752 (char *) "self", NULL
19755 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetKind",kwnames
,&obj0
)) goto fail
;
19756 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19757 if (SWIG_arg_fail(1)) SWIG_fail
;
19759 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19760 result
= (wxItemKind
)(arg1
)->GetKind();
19762 wxPyEndAllowThreads(__tstate
);
19763 if (PyErr_Occurred()) SWIG_fail
;
19765 resultobj
= SWIG_From_int((result
));
19772 static PyObject
*_wrap_ToolBarToolBase_IsEnabled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19773 PyObject
*resultobj
= NULL
;
19774 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19776 PyObject
* obj0
= 0 ;
19777 char *kwnames
[] = {
19778 (char *) "self", NULL
19781 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_IsEnabled",kwnames
,&obj0
)) goto fail
;
19782 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19783 if (SWIG_arg_fail(1)) SWIG_fail
;
19785 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19786 result
= (bool)(arg1
)->IsEnabled();
19788 wxPyEndAllowThreads(__tstate
);
19789 if (PyErr_Occurred()) SWIG_fail
;
19792 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19800 static PyObject
*_wrap_ToolBarToolBase_IsToggled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19801 PyObject
*resultobj
= NULL
;
19802 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19804 PyObject
* obj0
= 0 ;
19805 char *kwnames
[] = {
19806 (char *) "self", NULL
19809 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_IsToggled",kwnames
,&obj0
)) goto fail
;
19810 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19811 if (SWIG_arg_fail(1)) SWIG_fail
;
19813 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19814 result
= (bool)(arg1
)->IsToggled();
19816 wxPyEndAllowThreads(__tstate
);
19817 if (PyErr_Occurred()) SWIG_fail
;
19820 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19828 static PyObject
*_wrap_ToolBarToolBase_CanBeToggled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19829 PyObject
*resultobj
= NULL
;
19830 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19832 PyObject
* obj0
= 0 ;
19833 char *kwnames
[] = {
19834 (char *) "self", NULL
19837 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_CanBeToggled",kwnames
,&obj0
)) goto fail
;
19838 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19839 if (SWIG_arg_fail(1)) SWIG_fail
;
19841 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19842 result
= (bool)(arg1
)->CanBeToggled();
19844 wxPyEndAllowThreads(__tstate
);
19845 if (PyErr_Occurred()) SWIG_fail
;
19848 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19856 static PyObject
*_wrap_ToolBarToolBase_GetNormalBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19857 PyObject
*resultobj
= NULL
;
19858 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19860 PyObject
* obj0
= 0 ;
19861 char *kwnames
[] = {
19862 (char *) "self", NULL
19865 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetNormalBitmap",kwnames
,&obj0
)) goto fail
;
19866 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19867 if (SWIG_arg_fail(1)) SWIG_fail
;
19869 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19871 wxBitmap
const &_result_ref
= (arg1
)->GetNormalBitmap();
19872 result
= (wxBitmap
*) &_result_ref
;
19875 wxPyEndAllowThreads(__tstate
);
19876 if (PyErr_Occurred()) SWIG_fail
;
19879 wxBitmap
* resultptr
= new wxBitmap(*result
);
19880 resultobj
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
19888 static PyObject
*_wrap_ToolBarToolBase_GetDisabledBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19889 PyObject
*resultobj
= NULL
;
19890 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19892 PyObject
* obj0
= 0 ;
19893 char *kwnames
[] = {
19894 (char *) "self", NULL
19897 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetDisabledBitmap",kwnames
,&obj0
)) goto fail
;
19898 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19899 if (SWIG_arg_fail(1)) SWIG_fail
;
19901 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19903 wxBitmap
const &_result_ref
= (arg1
)->GetDisabledBitmap();
19904 result
= (wxBitmap
*) &_result_ref
;
19907 wxPyEndAllowThreads(__tstate
);
19908 if (PyErr_Occurred()) SWIG_fail
;
19911 wxBitmap
* resultptr
= new wxBitmap(*result
);
19912 resultobj
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
19920 static PyObject
*_wrap_ToolBarToolBase_GetBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19921 PyObject
*resultobj
= NULL
;
19922 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19924 PyObject
* obj0
= 0 ;
19925 char *kwnames
[] = {
19926 (char *) "self", NULL
19929 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetBitmap",kwnames
,&obj0
)) goto fail
;
19930 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19931 if (SWIG_arg_fail(1)) SWIG_fail
;
19933 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19934 result
= (arg1
)->GetBitmap();
19936 wxPyEndAllowThreads(__tstate
);
19937 if (PyErr_Occurred()) SWIG_fail
;
19940 wxBitmap
* resultptr
;
19941 resultptr
= new wxBitmap(static_cast<wxBitmap
& >(result
));
19942 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
19950 static PyObject
*_wrap_ToolBarToolBase_GetLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19951 PyObject
*resultobj
= NULL
;
19952 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19954 PyObject
* obj0
= 0 ;
19955 char *kwnames
[] = {
19956 (char *) "self", NULL
19959 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetLabel",kwnames
,&obj0
)) goto fail
;
19960 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19961 if (SWIG_arg_fail(1)) SWIG_fail
;
19963 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19964 result
= (arg1
)->GetLabel();
19966 wxPyEndAllowThreads(__tstate
);
19967 if (PyErr_Occurred()) SWIG_fail
;
19971 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
19973 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
19982 static PyObject
*_wrap_ToolBarToolBase_GetShortHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19983 PyObject
*resultobj
= NULL
;
19984 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19986 PyObject
* obj0
= 0 ;
19987 char *kwnames
[] = {
19988 (char *) "self", NULL
19991 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetShortHelp",kwnames
,&obj0
)) goto fail
;
19992 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19993 if (SWIG_arg_fail(1)) SWIG_fail
;
19995 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19996 result
= (arg1
)->GetShortHelp();
19998 wxPyEndAllowThreads(__tstate
);
19999 if (PyErr_Occurred()) SWIG_fail
;
20003 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
20005 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
20014 static PyObject
*_wrap_ToolBarToolBase_GetLongHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20015 PyObject
*resultobj
= NULL
;
20016 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
20018 PyObject
* obj0
= 0 ;
20019 char *kwnames
[] = {
20020 (char *) "self", NULL
20023 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetLongHelp",kwnames
,&obj0
)) goto fail
;
20024 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
20025 if (SWIG_arg_fail(1)) SWIG_fail
;
20027 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20028 result
= (arg1
)->GetLongHelp();
20030 wxPyEndAllowThreads(__tstate
);
20031 if (PyErr_Occurred()) SWIG_fail
;
20035 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
20037 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
20046 static PyObject
*_wrap_ToolBarToolBase_Enable(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20047 PyObject
*resultobj
= NULL
;
20048 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
20051 PyObject
* obj0
= 0 ;
20052 PyObject
* obj1
= 0 ;
20053 char *kwnames
[] = {
20054 (char *) "self",(char *) "enable", NULL
20057 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_Enable",kwnames
,&obj0
,&obj1
)) goto fail
;
20058 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
20059 if (SWIG_arg_fail(1)) SWIG_fail
;
20061 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
20062 if (SWIG_arg_fail(2)) SWIG_fail
;
20065 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20066 result
= (bool)(arg1
)->Enable(arg2
);
20068 wxPyEndAllowThreads(__tstate
);
20069 if (PyErr_Occurred()) SWIG_fail
;
20072 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20080 static PyObject
*_wrap_ToolBarToolBase_Toggle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20081 PyObject
*resultobj
= NULL
;
20082 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
20083 PyObject
* obj0
= 0 ;
20084 char *kwnames
[] = {
20085 (char *) "self", NULL
20088 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_Toggle",kwnames
,&obj0
)) goto fail
;
20089 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
20090 if (SWIG_arg_fail(1)) SWIG_fail
;
20092 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20095 wxPyEndAllowThreads(__tstate
);
20096 if (PyErr_Occurred()) SWIG_fail
;
20098 Py_INCREF(Py_None
); resultobj
= Py_None
;
20105 static PyObject
*_wrap_ToolBarToolBase_SetToggle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20106 PyObject
*resultobj
= NULL
;
20107 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
20110 PyObject
* obj0
= 0 ;
20111 PyObject
* obj1
= 0 ;
20112 char *kwnames
[] = {
20113 (char *) "self",(char *) "toggle", NULL
20116 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_SetToggle",kwnames
,&obj0
,&obj1
)) goto fail
;
20117 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
20118 if (SWIG_arg_fail(1)) SWIG_fail
;
20120 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
20121 if (SWIG_arg_fail(2)) SWIG_fail
;
20124 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20125 result
= (bool)(arg1
)->SetToggle(arg2
);
20127 wxPyEndAllowThreads(__tstate
);
20128 if (PyErr_Occurred()) SWIG_fail
;
20131 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20139 static PyObject
*_wrap_ToolBarToolBase_SetShortHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20140 PyObject
*resultobj
= NULL
;
20141 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
20142 wxString
*arg2
= 0 ;
20144 bool temp2
= false ;
20145 PyObject
* obj0
= 0 ;
20146 PyObject
* obj1
= 0 ;
20147 char *kwnames
[] = {
20148 (char *) "self",(char *) "help", NULL
20151 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_SetShortHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
20152 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
20153 if (SWIG_arg_fail(1)) SWIG_fail
;
20155 arg2
= wxString_in_helper(obj1
);
20156 if (arg2
== NULL
) SWIG_fail
;
20160 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20161 result
= (bool)(arg1
)->SetShortHelp((wxString
const &)*arg2
);
20163 wxPyEndAllowThreads(__tstate
);
20164 if (PyErr_Occurred()) SWIG_fail
;
20167 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20183 static PyObject
*_wrap_ToolBarToolBase_SetLongHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20184 PyObject
*resultobj
= NULL
;
20185 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
20186 wxString
*arg2
= 0 ;
20188 bool temp2
= false ;
20189 PyObject
* obj0
= 0 ;
20190 PyObject
* obj1
= 0 ;
20191 char *kwnames
[] = {
20192 (char *) "self",(char *) "help", NULL
20195 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_SetLongHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
20196 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
20197 if (SWIG_arg_fail(1)) SWIG_fail
;
20199 arg2
= wxString_in_helper(obj1
);
20200 if (arg2
== NULL
) SWIG_fail
;
20204 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20205 result
= (bool)(arg1
)->SetLongHelp((wxString
const &)*arg2
);
20207 wxPyEndAllowThreads(__tstate
);
20208 if (PyErr_Occurred()) SWIG_fail
;
20211 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20227 static PyObject
*_wrap_ToolBarToolBase_SetNormalBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20228 PyObject
*resultobj
= NULL
;
20229 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
20230 wxBitmap
*arg2
= 0 ;
20231 PyObject
* obj0
= 0 ;
20232 PyObject
* obj1
= 0 ;
20233 char *kwnames
[] = {
20234 (char *) "self",(char *) "bmp", NULL
20237 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_SetNormalBitmap",kwnames
,&obj0
,&obj1
)) goto fail
;
20238 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
20239 if (SWIG_arg_fail(1)) SWIG_fail
;
20241 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
20242 if (SWIG_arg_fail(2)) SWIG_fail
;
20243 if (arg2
== NULL
) {
20244 SWIG_null_ref("wxBitmap");
20246 if (SWIG_arg_fail(2)) SWIG_fail
;
20249 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20250 (arg1
)->SetNormalBitmap((wxBitmap
const &)*arg2
);
20252 wxPyEndAllowThreads(__tstate
);
20253 if (PyErr_Occurred()) SWIG_fail
;
20255 Py_INCREF(Py_None
); resultobj
= Py_None
;
20262 static PyObject
*_wrap_ToolBarToolBase_SetDisabledBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20263 PyObject
*resultobj
= NULL
;
20264 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
20265 wxBitmap
*arg2
= 0 ;
20266 PyObject
* obj0
= 0 ;
20267 PyObject
* obj1
= 0 ;
20268 char *kwnames
[] = {
20269 (char *) "self",(char *) "bmp", NULL
20272 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_SetDisabledBitmap",kwnames
,&obj0
,&obj1
)) goto fail
;
20273 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
20274 if (SWIG_arg_fail(1)) SWIG_fail
;
20276 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
20277 if (SWIG_arg_fail(2)) SWIG_fail
;
20278 if (arg2
== NULL
) {
20279 SWIG_null_ref("wxBitmap");
20281 if (SWIG_arg_fail(2)) SWIG_fail
;
20284 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20285 (arg1
)->SetDisabledBitmap((wxBitmap
const &)*arg2
);
20287 wxPyEndAllowThreads(__tstate
);
20288 if (PyErr_Occurred()) SWIG_fail
;
20290 Py_INCREF(Py_None
); resultobj
= Py_None
;
20297 static PyObject
*_wrap_ToolBarToolBase_SetLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20298 PyObject
*resultobj
= NULL
;
20299 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
20300 wxString
*arg2
= 0 ;
20301 bool temp2
= false ;
20302 PyObject
* obj0
= 0 ;
20303 PyObject
* obj1
= 0 ;
20304 char *kwnames
[] = {
20305 (char *) "self",(char *) "label", NULL
20308 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_SetLabel",kwnames
,&obj0
,&obj1
)) goto fail
;
20309 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
20310 if (SWIG_arg_fail(1)) SWIG_fail
;
20312 arg2
= wxString_in_helper(obj1
);
20313 if (arg2
== NULL
) SWIG_fail
;
20317 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20318 (arg1
)->SetLabel((wxString
const &)*arg2
);
20320 wxPyEndAllowThreads(__tstate
);
20321 if (PyErr_Occurred()) SWIG_fail
;
20323 Py_INCREF(Py_None
); resultobj
= Py_None
;
20338 static PyObject
*_wrap_ToolBarToolBase_Detach(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20339 PyObject
*resultobj
= NULL
;
20340 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
20341 PyObject
* obj0
= 0 ;
20342 char *kwnames
[] = {
20343 (char *) "self", NULL
20346 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_Detach",kwnames
,&obj0
)) goto fail
;
20347 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
20348 if (SWIG_arg_fail(1)) SWIG_fail
;
20350 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20353 wxPyEndAllowThreads(__tstate
);
20354 if (PyErr_Occurred()) SWIG_fail
;
20356 Py_INCREF(Py_None
); resultobj
= Py_None
;
20363 static PyObject
*_wrap_ToolBarToolBase_Attach(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20364 PyObject
*resultobj
= NULL
;
20365 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
20366 wxToolBarBase
*arg2
= (wxToolBarBase
*) 0 ;
20367 PyObject
* obj0
= 0 ;
20368 PyObject
* obj1
= 0 ;
20369 char *kwnames
[] = {
20370 (char *) "self",(char *) "tbar", NULL
20373 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_Attach",kwnames
,&obj0
,&obj1
)) goto fail
;
20374 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
20375 if (SWIG_arg_fail(1)) SWIG_fail
;
20376 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20377 if (SWIG_arg_fail(2)) SWIG_fail
;
20379 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20380 (arg1
)->Attach(arg2
);
20382 wxPyEndAllowThreads(__tstate
);
20383 if (PyErr_Occurred()) SWIG_fail
;
20385 Py_INCREF(Py_None
); resultobj
= Py_None
;
20392 static PyObject
*_wrap_ToolBarToolBase_GetClientData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20393 PyObject
*resultobj
= NULL
;
20394 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
20396 PyObject
* obj0
= 0 ;
20397 char *kwnames
[] = {
20398 (char *) "self", NULL
20401 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetClientData",kwnames
,&obj0
)) goto fail
;
20402 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
20403 if (SWIG_arg_fail(1)) SWIG_fail
;
20405 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20406 result
= (PyObject
*)wxToolBarToolBase_GetClientData(arg1
);
20408 wxPyEndAllowThreads(__tstate
);
20409 if (PyErr_Occurred()) SWIG_fail
;
20411 resultobj
= result
;
20418 static PyObject
*_wrap_ToolBarToolBase_SetClientData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20419 PyObject
*resultobj
= NULL
;
20420 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
20421 PyObject
*arg2
= (PyObject
*) 0 ;
20422 PyObject
* obj0
= 0 ;
20423 PyObject
* obj1
= 0 ;
20424 char *kwnames
[] = {
20425 (char *) "self",(char *) "clientData", NULL
20428 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_SetClientData",kwnames
,&obj0
,&obj1
)) goto fail
;
20429 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
20430 if (SWIG_arg_fail(1)) SWIG_fail
;
20433 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20434 wxToolBarToolBase_SetClientData(arg1
,arg2
);
20436 wxPyEndAllowThreads(__tstate
);
20437 if (PyErr_Occurred()) SWIG_fail
;
20439 Py_INCREF(Py_None
); resultobj
= Py_None
;
20446 static PyObject
* ToolBarToolBase_swigregister(PyObject
*, PyObject
*args
) {
20448 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
20449 SWIG_TypeClientData(SWIGTYPE_p_wxToolBarToolBase
, obj
);
20451 return Py_BuildValue((char *)"");
20453 static PyObject
*_wrap_ToolBarBase_DoAddTool(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20454 PyObject
*resultobj
= NULL
;
20455 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20457 wxString
*arg3
= 0 ;
20458 wxBitmap
*arg4
= 0 ;
20459 wxBitmap
const &arg5_defvalue
= wxNullBitmap
;
20460 wxBitmap
*arg5
= (wxBitmap
*) &arg5_defvalue
;
20461 wxItemKind arg6
= (wxItemKind
) wxITEM_NORMAL
;
20462 wxString
const &arg7_defvalue
= wxPyEmptyString
;
20463 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
20464 wxString
const &arg8_defvalue
= wxPyEmptyString
;
20465 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
20466 PyObject
*arg9
= (PyObject
*) NULL
;
20467 wxToolBarToolBase
*result
;
20468 bool temp3
= false ;
20469 bool temp7
= false ;
20470 bool temp8
= false ;
20471 PyObject
* obj0
= 0 ;
20472 PyObject
* obj1
= 0 ;
20473 PyObject
* obj2
= 0 ;
20474 PyObject
* obj3
= 0 ;
20475 PyObject
* obj4
= 0 ;
20476 PyObject
* obj5
= 0 ;
20477 PyObject
* obj6
= 0 ;
20478 PyObject
* obj7
= 0 ;
20479 PyObject
* obj8
= 0 ;
20480 char *kwnames
[] = {
20481 (char *) "self",(char *) "id",(char *) "label",(char *) "bitmap",(char *) "bmpDisabled",(char *) "kind",(char *) "shortHelp",(char *) "longHelp",(char *) "clientData", NULL
20484 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOOOO:ToolBarBase_DoAddTool",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
20485 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20486 if (SWIG_arg_fail(1)) SWIG_fail
;
20488 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20489 if (SWIG_arg_fail(2)) SWIG_fail
;
20492 arg3
= wxString_in_helper(obj2
);
20493 if (arg3
== NULL
) SWIG_fail
;
20497 SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
20498 if (SWIG_arg_fail(4)) SWIG_fail
;
20499 if (arg4
== NULL
) {
20500 SWIG_null_ref("wxBitmap");
20502 if (SWIG_arg_fail(4)) SWIG_fail
;
20506 SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
20507 if (SWIG_arg_fail(5)) SWIG_fail
;
20508 if (arg5
== NULL
) {
20509 SWIG_null_ref("wxBitmap");
20511 if (SWIG_arg_fail(5)) SWIG_fail
;
20516 arg6
= static_cast<wxItemKind
>(SWIG_As_int(obj5
));
20517 if (SWIG_arg_fail(6)) SWIG_fail
;
20522 arg7
= wxString_in_helper(obj6
);
20523 if (arg7
== NULL
) SWIG_fail
;
20529 arg8
= wxString_in_helper(obj7
);
20530 if (arg8
== NULL
) SWIG_fail
;
20538 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20539 result
= (wxToolBarToolBase
*)wxToolBarBase_DoAddTool(arg1
,arg2
,(wxString
const &)*arg3
,(wxBitmap
const &)*arg4
,(wxBitmap
const &)*arg5
,arg6
,(wxString
const &)*arg7
,(wxString
const &)*arg8
,arg9
);
20541 wxPyEndAllowThreads(__tstate
);
20542 if (PyErr_Occurred()) SWIG_fail
;
20545 resultobj
= wxPyMake_wxObject(result
, (bool)0);
20577 static PyObject
*_wrap_ToolBarBase_DoInsertTool(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20578 PyObject
*resultobj
= NULL
;
20579 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20582 wxString
*arg4
= 0 ;
20583 wxBitmap
*arg5
= 0 ;
20584 wxBitmap
const &arg6_defvalue
= wxNullBitmap
;
20585 wxBitmap
*arg6
= (wxBitmap
*) &arg6_defvalue
;
20586 wxItemKind arg7
= (wxItemKind
) wxITEM_NORMAL
;
20587 wxString
const &arg8_defvalue
= wxPyEmptyString
;
20588 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
20589 wxString
const &arg9_defvalue
= wxPyEmptyString
;
20590 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
20591 PyObject
*arg10
= (PyObject
*) NULL
;
20592 wxToolBarToolBase
*result
;
20593 bool temp4
= false ;
20594 bool temp8
= false ;
20595 bool temp9
= false ;
20596 PyObject
* obj0
= 0 ;
20597 PyObject
* obj1
= 0 ;
20598 PyObject
* obj2
= 0 ;
20599 PyObject
* obj3
= 0 ;
20600 PyObject
* obj4
= 0 ;
20601 PyObject
* obj5
= 0 ;
20602 PyObject
* obj6
= 0 ;
20603 PyObject
* obj7
= 0 ;
20604 PyObject
* obj8
= 0 ;
20605 PyObject
* obj9
= 0 ;
20606 char *kwnames
[] = {
20607 (char *) "self",(char *) "pos",(char *) "id",(char *) "label",(char *) "bitmap",(char *) "bmpDisabled",(char *) "kind",(char *) "shortHelp",(char *) "longHelp",(char *) "clientData", NULL
20610 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|OOOOO:ToolBarBase_DoInsertTool",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) goto fail
;
20611 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20612 if (SWIG_arg_fail(1)) SWIG_fail
;
20614 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
20615 if (SWIG_arg_fail(2)) SWIG_fail
;
20618 arg3
= static_cast<int >(SWIG_As_int(obj2
));
20619 if (SWIG_arg_fail(3)) SWIG_fail
;
20622 arg4
= wxString_in_helper(obj3
);
20623 if (arg4
== NULL
) SWIG_fail
;
20627 SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
20628 if (SWIG_arg_fail(5)) SWIG_fail
;
20629 if (arg5
== NULL
) {
20630 SWIG_null_ref("wxBitmap");
20632 if (SWIG_arg_fail(5)) SWIG_fail
;
20636 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
20637 if (SWIG_arg_fail(6)) SWIG_fail
;
20638 if (arg6
== NULL
) {
20639 SWIG_null_ref("wxBitmap");
20641 if (SWIG_arg_fail(6)) SWIG_fail
;
20646 arg7
= static_cast<wxItemKind
>(SWIG_As_int(obj6
));
20647 if (SWIG_arg_fail(7)) SWIG_fail
;
20652 arg8
= wxString_in_helper(obj7
);
20653 if (arg8
== NULL
) SWIG_fail
;
20659 arg9
= wxString_in_helper(obj8
);
20660 if (arg9
== NULL
) SWIG_fail
;
20668 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20669 result
= (wxToolBarToolBase
*)wxToolBarBase_DoInsertTool(arg1
,arg2
,arg3
,(wxString
const &)*arg4
,(wxBitmap
const &)*arg5
,(wxBitmap
const &)*arg6
,arg7
,(wxString
const &)*arg8
,(wxString
const &)*arg9
,arg10
);
20671 wxPyEndAllowThreads(__tstate
);
20672 if (PyErr_Occurred()) SWIG_fail
;
20675 resultobj
= wxPyMake_wxObject(result
, (bool)0);
20707 static PyObject
*_wrap_ToolBarBase_AddToolItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20708 PyObject
*resultobj
= NULL
;
20709 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20710 wxToolBarToolBase
*arg2
= (wxToolBarToolBase
*) 0 ;
20711 wxToolBarToolBase
*result
;
20712 PyObject
* obj0
= 0 ;
20713 PyObject
* obj1
= 0 ;
20714 char *kwnames
[] = {
20715 (char *) "self",(char *) "tool", NULL
20718 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_AddToolItem",kwnames
,&obj0
,&obj1
)) goto fail
;
20719 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20720 if (SWIG_arg_fail(1)) SWIG_fail
;
20721 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
20722 if (SWIG_arg_fail(2)) SWIG_fail
;
20724 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20725 result
= (wxToolBarToolBase
*)(arg1
)->AddTool(arg2
);
20727 wxPyEndAllowThreads(__tstate
);
20728 if (PyErr_Occurred()) SWIG_fail
;
20731 resultobj
= wxPyMake_wxObject(result
, (bool)0);
20739 static PyObject
*_wrap_ToolBarBase_InsertToolItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20740 PyObject
*resultobj
= NULL
;
20741 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20743 wxToolBarToolBase
*arg3
= (wxToolBarToolBase
*) 0 ;
20744 wxToolBarToolBase
*result
;
20745 PyObject
* obj0
= 0 ;
20746 PyObject
* obj1
= 0 ;
20747 PyObject
* obj2
= 0 ;
20748 char *kwnames
[] = {
20749 (char *) "self",(char *) "pos",(char *) "tool", NULL
20752 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_InsertToolItem",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
20753 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20754 if (SWIG_arg_fail(1)) SWIG_fail
;
20756 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
20757 if (SWIG_arg_fail(2)) SWIG_fail
;
20759 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
20760 if (SWIG_arg_fail(3)) SWIG_fail
;
20762 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20763 result
= (wxToolBarToolBase
*)(arg1
)->InsertTool(arg2
,arg3
);
20765 wxPyEndAllowThreads(__tstate
);
20766 if (PyErr_Occurred()) SWIG_fail
;
20769 resultobj
= wxPyMake_wxObject(result
, (bool)0);
20777 static PyObject
*_wrap_ToolBarBase_AddControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20778 PyObject
*resultobj
= NULL
;
20779 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20780 wxControl
*arg2
= (wxControl
*) 0 ;
20781 wxToolBarToolBase
*result
;
20782 PyObject
* obj0
= 0 ;
20783 PyObject
* obj1
= 0 ;
20784 char *kwnames
[] = {
20785 (char *) "self",(char *) "control", NULL
20788 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_AddControl",kwnames
,&obj0
,&obj1
)) goto fail
;
20789 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20790 if (SWIG_arg_fail(1)) SWIG_fail
;
20791 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxControl
, SWIG_POINTER_EXCEPTION
| 0);
20792 if (SWIG_arg_fail(2)) SWIG_fail
;
20794 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20795 result
= (wxToolBarToolBase
*)(arg1
)->AddControl(arg2
);
20797 wxPyEndAllowThreads(__tstate
);
20798 if (PyErr_Occurred()) SWIG_fail
;
20801 resultobj
= wxPyMake_wxObject(result
, (bool)0);
20809 static PyObject
*_wrap_ToolBarBase_InsertControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20810 PyObject
*resultobj
= NULL
;
20811 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20813 wxControl
*arg3
= (wxControl
*) 0 ;
20814 wxToolBarToolBase
*result
;
20815 PyObject
* obj0
= 0 ;
20816 PyObject
* obj1
= 0 ;
20817 PyObject
* obj2
= 0 ;
20818 char *kwnames
[] = {
20819 (char *) "self",(char *) "pos",(char *) "control", NULL
20822 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_InsertControl",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
20823 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20824 if (SWIG_arg_fail(1)) SWIG_fail
;
20826 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
20827 if (SWIG_arg_fail(2)) SWIG_fail
;
20829 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxControl
, SWIG_POINTER_EXCEPTION
| 0);
20830 if (SWIG_arg_fail(3)) SWIG_fail
;
20832 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20833 result
= (wxToolBarToolBase
*)(arg1
)->InsertControl(arg2
,arg3
);
20835 wxPyEndAllowThreads(__tstate
);
20836 if (PyErr_Occurred()) SWIG_fail
;
20839 resultobj
= wxPyMake_wxObject(result
, (bool)0);
20847 static PyObject
*_wrap_ToolBarBase_FindControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20848 PyObject
*resultobj
= NULL
;
20849 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20852 PyObject
* obj0
= 0 ;
20853 PyObject
* obj1
= 0 ;
20854 char *kwnames
[] = {
20855 (char *) "self",(char *) "id", NULL
20858 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_FindControl",kwnames
,&obj0
,&obj1
)) goto fail
;
20859 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20860 if (SWIG_arg_fail(1)) SWIG_fail
;
20862 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20863 if (SWIG_arg_fail(2)) SWIG_fail
;
20866 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20867 result
= (wxControl
*)(arg1
)->FindControl(arg2
);
20869 wxPyEndAllowThreads(__tstate
);
20870 if (PyErr_Occurred()) SWIG_fail
;
20873 resultobj
= wxPyMake_wxObject(result
, 0);
20881 static PyObject
*_wrap_ToolBarBase_AddSeparator(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20882 PyObject
*resultobj
= NULL
;
20883 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20884 wxToolBarToolBase
*result
;
20885 PyObject
* obj0
= 0 ;
20886 char *kwnames
[] = {
20887 (char *) "self", NULL
20890 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_AddSeparator",kwnames
,&obj0
)) goto fail
;
20891 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20892 if (SWIG_arg_fail(1)) SWIG_fail
;
20894 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20895 result
= (wxToolBarToolBase
*)(arg1
)->AddSeparator();
20897 wxPyEndAllowThreads(__tstate
);
20898 if (PyErr_Occurred()) SWIG_fail
;
20901 resultobj
= wxPyMake_wxObject(result
, (bool)0);
20909 static PyObject
*_wrap_ToolBarBase_InsertSeparator(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20910 PyObject
*resultobj
= NULL
;
20911 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20913 wxToolBarToolBase
*result
;
20914 PyObject
* obj0
= 0 ;
20915 PyObject
* obj1
= 0 ;
20916 char *kwnames
[] = {
20917 (char *) "self",(char *) "pos", NULL
20920 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_InsertSeparator",kwnames
,&obj0
,&obj1
)) goto fail
;
20921 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20922 if (SWIG_arg_fail(1)) SWIG_fail
;
20924 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
20925 if (SWIG_arg_fail(2)) SWIG_fail
;
20928 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20929 result
= (wxToolBarToolBase
*)(arg1
)->InsertSeparator(arg2
);
20931 wxPyEndAllowThreads(__tstate
);
20932 if (PyErr_Occurred()) SWIG_fail
;
20935 resultobj
= wxPyMake_wxObject(result
, (bool)0);
20943 static PyObject
*_wrap_ToolBarBase_RemoveTool(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20944 PyObject
*resultobj
= NULL
;
20945 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20947 wxToolBarToolBase
*result
;
20948 PyObject
* obj0
= 0 ;
20949 PyObject
* obj1
= 0 ;
20950 char *kwnames
[] = {
20951 (char *) "self",(char *) "id", NULL
20954 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_RemoveTool",kwnames
,&obj0
,&obj1
)) goto fail
;
20955 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20956 if (SWIG_arg_fail(1)) SWIG_fail
;
20958 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20959 if (SWIG_arg_fail(2)) SWIG_fail
;
20962 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20963 result
= (wxToolBarToolBase
*)(arg1
)->RemoveTool(arg2
);
20965 wxPyEndAllowThreads(__tstate
);
20966 if (PyErr_Occurred()) SWIG_fail
;
20969 resultobj
= wxPyMake_wxObject(result
, (bool)0);
20977 static PyObject
*_wrap_ToolBarBase_DeleteToolByPos(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20978 PyObject
*resultobj
= NULL
;
20979 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20982 PyObject
* obj0
= 0 ;
20983 PyObject
* obj1
= 0 ;
20984 char *kwnames
[] = {
20985 (char *) "self",(char *) "pos", NULL
20988 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_DeleteToolByPos",kwnames
,&obj0
,&obj1
)) goto fail
;
20989 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20990 if (SWIG_arg_fail(1)) SWIG_fail
;
20992 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
20993 if (SWIG_arg_fail(2)) SWIG_fail
;
20996 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20997 result
= (bool)(arg1
)->DeleteToolByPos(arg2
);
20999 wxPyEndAllowThreads(__tstate
);
21000 if (PyErr_Occurred()) SWIG_fail
;
21003 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21011 static PyObject
*_wrap_ToolBarBase_DeleteTool(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21012 PyObject
*resultobj
= NULL
;
21013 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21016 PyObject
* obj0
= 0 ;
21017 PyObject
* obj1
= 0 ;
21018 char *kwnames
[] = {
21019 (char *) "self",(char *) "id", NULL
21022 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_DeleteTool",kwnames
,&obj0
,&obj1
)) goto fail
;
21023 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21024 if (SWIG_arg_fail(1)) SWIG_fail
;
21026 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21027 if (SWIG_arg_fail(2)) SWIG_fail
;
21030 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21031 result
= (bool)(arg1
)->DeleteTool(arg2
);
21033 wxPyEndAllowThreads(__tstate
);
21034 if (PyErr_Occurred()) SWIG_fail
;
21037 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21045 static PyObject
*_wrap_ToolBarBase_ClearTools(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21046 PyObject
*resultobj
= NULL
;
21047 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21048 PyObject
* obj0
= 0 ;
21049 char *kwnames
[] = {
21050 (char *) "self", NULL
21053 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_ClearTools",kwnames
,&obj0
)) goto fail
;
21054 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21055 if (SWIG_arg_fail(1)) SWIG_fail
;
21057 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21058 (arg1
)->ClearTools();
21060 wxPyEndAllowThreads(__tstate
);
21061 if (PyErr_Occurred()) SWIG_fail
;
21063 Py_INCREF(Py_None
); resultobj
= Py_None
;
21070 static PyObject
*_wrap_ToolBarBase_Realize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21071 PyObject
*resultobj
= NULL
;
21072 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21074 PyObject
* obj0
= 0 ;
21075 char *kwnames
[] = {
21076 (char *) "self", NULL
21079 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_Realize",kwnames
,&obj0
)) goto fail
;
21080 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21081 if (SWIG_arg_fail(1)) SWIG_fail
;
21083 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21084 result
= (bool)(arg1
)->Realize();
21086 wxPyEndAllowThreads(__tstate
);
21087 if (PyErr_Occurred()) SWIG_fail
;
21090 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21098 static PyObject
*_wrap_ToolBarBase_EnableTool(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21099 PyObject
*resultobj
= NULL
;
21100 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21103 PyObject
* obj0
= 0 ;
21104 PyObject
* obj1
= 0 ;
21105 PyObject
* obj2
= 0 ;
21106 char *kwnames
[] = {
21107 (char *) "self",(char *) "id",(char *) "enable", NULL
21110 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_EnableTool",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
21111 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21112 if (SWIG_arg_fail(1)) SWIG_fail
;
21114 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21115 if (SWIG_arg_fail(2)) SWIG_fail
;
21118 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
21119 if (SWIG_arg_fail(3)) SWIG_fail
;
21122 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21123 (arg1
)->EnableTool(arg2
,arg3
);
21125 wxPyEndAllowThreads(__tstate
);
21126 if (PyErr_Occurred()) SWIG_fail
;
21128 Py_INCREF(Py_None
); resultobj
= Py_None
;
21135 static PyObject
*_wrap_ToolBarBase_ToggleTool(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21136 PyObject
*resultobj
= NULL
;
21137 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21140 PyObject
* obj0
= 0 ;
21141 PyObject
* obj1
= 0 ;
21142 PyObject
* obj2
= 0 ;
21143 char *kwnames
[] = {
21144 (char *) "self",(char *) "id",(char *) "toggle", NULL
21147 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_ToggleTool",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
21148 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21149 if (SWIG_arg_fail(1)) SWIG_fail
;
21151 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21152 if (SWIG_arg_fail(2)) SWIG_fail
;
21155 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
21156 if (SWIG_arg_fail(3)) SWIG_fail
;
21159 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21160 (arg1
)->ToggleTool(arg2
,arg3
);
21162 wxPyEndAllowThreads(__tstate
);
21163 if (PyErr_Occurred()) SWIG_fail
;
21165 Py_INCREF(Py_None
); resultobj
= Py_None
;
21172 static PyObject
*_wrap_ToolBarBase_SetToggle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21173 PyObject
*resultobj
= NULL
;
21174 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21177 PyObject
* obj0
= 0 ;
21178 PyObject
* obj1
= 0 ;
21179 PyObject
* obj2
= 0 ;
21180 char *kwnames
[] = {
21181 (char *) "self",(char *) "id",(char *) "toggle", NULL
21184 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_SetToggle",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
21185 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21186 if (SWIG_arg_fail(1)) SWIG_fail
;
21188 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21189 if (SWIG_arg_fail(2)) SWIG_fail
;
21192 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
21193 if (SWIG_arg_fail(3)) SWIG_fail
;
21196 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21197 (arg1
)->SetToggle(arg2
,arg3
);
21199 wxPyEndAllowThreads(__tstate
);
21200 if (PyErr_Occurred()) SWIG_fail
;
21202 Py_INCREF(Py_None
); resultobj
= Py_None
;
21209 static PyObject
*_wrap_ToolBarBase_GetToolClientData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21210 PyObject
*resultobj
= NULL
;
21211 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21214 PyObject
* obj0
= 0 ;
21215 PyObject
* obj1
= 0 ;
21216 char *kwnames
[] = {
21217 (char *) "self",(char *) "id", NULL
21220 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_GetToolClientData",kwnames
,&obj0
,&obj1
)) goto fail
;
21221 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21222 if (SWIG_arg_fail(1)) SWIG_fail
;
21224 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21225 if (SWIG_arg_fail(2)) SWIG_fail
;
21228 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21229 result
= (PyObject
*)wxToolBarBase_GetToolClientData(arg1
,arg2
);
21231 wxPyEndAllowThreads(__tstate
);
21232 if (PyErr_Occurred()) SWIG_fail
;
21234 resultobj
= result
;
21241 static PyObject
*_wrap_ToolBarBase_SetToolClientData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21242 PyObject
*resultobj
= NULL
;
21243 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21245 PyObject
*arg3
= (PyObject
*) 0 ;
21246 PyObject
* obj0
= 0 ;
21247 PyObject
* obj1
= 0 ;
21248 PyObject
* obj2
= 0 ;
21249 char *kwnames
[] = {
21250 (char *) "self",(char *) "id",(char *) "clientData", NULL
21253 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_SetToolClientData",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
21254 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21255 if (SWIG_arg_fail(1)) SWIG_fail
;
21257 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21258 if (SWIG_arg_fail(2)) SWIG_fail
;
21262 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21263 wxToolBarBase_SetToolClientData(arg1
,arg2
,arg3
);
21265 wxPyEndAllowThreads(__tstate
);
21266 if (PyErr_Occurred()) SWIG_fail
;
21268 Py_INCREF(Py_None
); resultobj
= Py_None
;
21275 static PyObject
*_wrap_ToolBarBase_GetToolPos(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21276 PyObject
*resultobj
= NULL
;
21277 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21280 PyObject
* obj0
= 0 ;
21281 PyObject
* obj1
= 0 ;
21282 char *kwnames
[] = {
21283 (char *) "self",(char *) "id", NULL
21286 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_GetToolPos",kwnames
,&obj0
,&obj1
)) goto fail
;
21287 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21288 if (SWIG_arg_fail(1)) SWIG_fail
;
21290 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21291 if (SWIG_arg_fail(2)) SWIG_fail
;
21294 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21295 result
= (int)((wxToolBarBase
const *)arg1
)->GetToolPos(arg2
);
21297 wxPyEndAllowThreads(__tstate
);
21298 if (PyErr_Occurred()) SWIG_fail
;
21301 resultobj
= SWIG_From_int(static_cast<int >(result
));
21309 static PyObject
*_wrap_ToolBarBase_GetToolState(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21310 PyObject
*resultobj
= NULL
;
21311 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21314 PyObject
* obj0
= 0 ;
21315 PyObject
* obj1
= 0 ;
21316 char *kwnames
[] = {
21317 (char *) "self",(char *) "id", NULL
21320 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_GetToolState",kwnames
,&obj0
,&obj1
)) goto fail
;
21321 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21322 if (SWIG_arg_fail(1)) SWIG_fail
;
21324 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21325 if (SWIG_arg_fail(2)) SWIG_fail
;
21328 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21329 result
= (bool)(arg1
)->GetToolState(arg2
);
21331 wxPyEndAllowThreads(__tstate
);
21332 if (PyErr_Occurred()) SWIG_fail
;
21335 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21343 static PyObject
*_wrap_ToolBarBase_GetToolEnabled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21344 PyObject
*resultobj
= NULL
;
21345 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21348 PyObject
* obj0
= 0 ;
21349 PyObject
* obj1
= 0 ;
21350 char *kwnames
[] = {
21351 (char *) "self",(char *) "id", NULL
21354 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_GetToolEnabled",kwnames
,&obj0
,&obj1
)) goto fail
;
21355 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21356 if (SWIG_arg_fail(1)) SWIG_fail
;
21358 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21359 if (SWIG_arg_fail(2)) SWIG_fail
;
21362 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21363 result
= (bool)(arg1
)->GetToolEnabled(arg2
);
21365 wxPyEndAllowThreads(__tstate
);
21366 if (PyErr_Occurred()) SWIG_fail
;
21369 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21377 static PyObject
*_wrap_ToolBarBase_SetToolShortHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21378 PyObject
*resultobj
= NULL
;
21379 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21381 wxString
*arg3
= 0 ;
21382 bool temp3
= false ;
21383 PyObject
* obj0
= 0 ;
21384 PyObject
* obj1
= 0 ;
21385 PyObject
* obj2
= 0 ;
21386 char *kwnames
[] = {
21387 (char *) "self",(char *) "id",(char *) "helpString", NULL
21390 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_SetToolShortHelp",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
21391 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21392 if (SWIG_arg_fail(1)) SWIG_fail
;
21394 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21395 if (SWIG_arg_fail(2)) SWIG_fail
;
21398 arg3
= wxString_in_helper(obj2
);
21399 if (arg3
== NULL
) SWIG_fail
;
21403 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21404 (arg1
)->SetToolShortHelp(arg2
,(wxString
const &)*arg3
);
21406 wxPyEndAllowThreads(__tstate
);
21407 if (PyErr_Occurred()) SWIG_fail
;
21409 Py_INCREF(Py_None
); resultobj
= Py_None
;
21424 static PyObject
*_wrap_ToolBarBase_GetToolShortHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21425 PyObject
*resultobj
= NULL
;
21426 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21429 PyObject
* obj0
= 0 ;
21430 PyObject
* obj1
= 0 ;
21431 char *kwnames
[] = {
21432 (char *) "self",(char *) "id", NULL
21435 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_GetToolShortHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
21436 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21437 if (SWIG_arg_fail(1)) SWIG_fail
;
21439 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21440 if (SWIG_arg_fail(2)) SWIG_fail
;
21443 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21444 result
= (arg1
)->GetToolShortHelp(arg2
);
21446 wxPyEndAllowThreads(__tstate
);
21447 if (PyErr_Occurred()) SWIG_fail
;
21451 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
21453 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
21462 static PyObject
*_wrap_ToolBarBase_SetToolLongHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21463 PyObject
*resultobj
= NULL
;
21464 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21466 wxString
*arg3
= 0 ;
21467 bool temp3
= false ;
21468 PyObject
* obj0
= 0 ;
21469 PyObject
* obj1
= 0 ;
21470 PyObject
* obj2
= 0 ;
21471 char *kwnames
[] = {
21472 (char *) "self",(char *) "id",(char *) "helpString", NULL
21475 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_SetToolLongHelp",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
21476 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21477 if (SWIG_arg_fail(1)) SWIG_fail
;
21479 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21480 if (SWIG_arg_fail(2)) SWIG_fail
;
21483 arg3
= wxString_in_helper(obj2
);
21484 if (arg3
== NULL
) SWIG_fail
;
21488 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21489 (arg1
)->SetToolLongHelp(arg2
,(wxString
const &)*arg3
);
21491 wxPyEndAllowThreads(__tstate
);
21492 if (PyErr_Occurred()) SWIG_fail
;
21494 Py_INCREF(Py_None
); resultobj
= Py_None
;
21509 static PyObject
*_wrap_ToolBarBase_GetToolLongHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21510 PyObject
*resultobj
= NULL
;
21511 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21514 PyObject
* obj0
= 0 ;
21515 PyObject
* obj1
= 0 ;
21516 char *kwnames
[] = {
21517 (char *) "self",(char *) "id", NULL
21520 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_GetToolLongHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
21521 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21522 if (SWIG_arg_fail(1)) SWIG_fail
;
21524 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21525 if (SWIG_arg_fail(2)) SWIG_fail
;
21528 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21529 result
= (arg1
)->GetToolLongHelp(arg2
);
21531 wxPyEndAllowThreads(__tstate
);
21532 if (PyErr_Occurred()) SWIG_fail
;
21536 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
21538 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
21547 static PyObject
*_wrap_ToolBarBase_SetMarginsXY(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21548 PyObject
*resultobj
= NULL
;
21549 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21552 PyObject
* obj0
= 0 ;
21553 PyObject
* obj1
= 0 ;
21554 PyObject
* obj2
= 0 ;
21555 char *kwnames
[] = {
21556 (char *) "self",(char *) "x",(char *) "y", NULL
21559 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_SetMarginsXY",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
21560 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21561 if (SWIG_arg_fail(1)) SWIG_fail
;
21563 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21564 if (SWIG_arg_fail(2)) SWIG_fail
;
21567 arg3
= static_cast<int >(SWIG_As_int(obj2
));
21568 if (SWIG_arg_fail(3)) SWIG_fail
;
21571 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21572 (arg1
)->SetMargins(arg2
,arg3
);
21574 wxPyEndAllowThreads(__tstate
);
21575 if (PyErr_Occurred()) SWIG_fail
;
21577 Py_INCREF(Py_None
); resultobj
= Py_None
;
21584 static PyObject
*_wrap_ToolBarBase_SetMargins(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21585 PyObject
*resultobj
= NULL
;
21586 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21589 PyObject
* obj0
= 0 ;
21590 PyObject
* obj1
= 0 ;
21591 char *kwnames
[] = {
21592 (char *) "self",(char *) "size", NULL
21595 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_SetMargins",kwnames
,&obj0
,&obj1
)) goto fail
;
21596 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21597 if (SWIG_arg_fail(1)) SWIG_fail
;
21600 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
21603 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21604 (arg1
)->SetMargins((wxSize
const &)*arg2
);
21606 wxPyEndAllowThreads(__tstate
);
21607 if (PyErr_Occurred()) SWIG_fail
;
21609 Py_INCREF(Py_None
); resultobj
= Py_None
;
21616 static PyObject
*_wrap_ToolBarBase_SetToolPacking(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21617 PyObject
*resultobj
= NULL
;
21618 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21620 PyObject
* obj0
= 0 ;
21621 PyObject
* obj1
= 0 ;
21622 char *kwnames
[] = {
21623 (char *) "self",(char *) "packing", NULL
21626 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_SetToolPacking",kwnames
,&obj0
,&obj1
)) goto fail
;
21627 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21628 if (SWIG_arg_fail(1)) SWIG_fail
;
21630 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21631 if (SWIG_arg_fail(2)) SWIG_fail
;
21634 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21635 (arg1
)->SetToolPacking(arg2
);
21637 wxPyEndAllowThreads(__tstate
);
21638 if (PyErr_Occurred()) SWIG_fail
;
21640 Py_INCREF(Py_None
); resultobj
= Py_None
;
21647 static PyObject
*_wrap_ToolBarBase_SetToolSeparation(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21648 PyObject
*resultobj
= NULL
;
21649 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21651 PyObject
* obj0
= 0 ;
21652 PyObject
* obj1
= 0 ;
21653 char *kwnames
[] = {
21654 (char *) "self",(char *) "separation", NULL
21657 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_SetToolSeparation",kwnames
,&obj0
,&obj1
)) goto fail
;
21658 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21659 if (SWIG_arg_fail(1)) SWIG_fail
;
21661 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21662 if (SWIG_arg_fail(2)) SWIG_fail
;
21665 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21666 (arg1
)->SetToolSeparation(arg2
);
21668 wxPyEndAllowThreads(__tstate
);
21669 if (PyErr_Occurred()) SWIG_fail
;
21671 Py_INCREF(Py_None
); resultobj
= Py_None
;
21678 static PyObject
*_wrap_ToolBarBase_GetToolMargins(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21679 PyObject
*resultobj
= NULL
;
21680 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21682 PyObject
* obj0
= 0 ;
21683 char *kwnames
[] = {
21684 (char *) "self", NULL
21687 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetToolMargins",kwnames
,&obj0
)) goto fail
;
21688 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21689 if (SWIG_arg_fail(1)) SWIG_fail
;
21691 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21692 result
= (arg1
)->GetToolMargins();
21694 wxPyEndAllowThreads(__tstate
);
21695 if (PyErr_Occurred()) SWIG_fail
;
21698 wxSize
* resultptr
;
21699 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
21700 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
21708 static PyObject
*_wrap_ToolBarBase_GetMargins(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21709 PyObject
*resultobj
= NULL
;
21710 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21712 PyObject
* obj0
= 0 ;
21713 char *kwnames
[] = {
21714 (char *) "self", NULL
21717 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetMargins",kwnames
,&obj0
)) goto fail
;
21718 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21719 if (SWIG_arg_fail(1)) SWIG_fail
;
21721 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21722 result
= (arg1
)->GetMargins();
21724 wxPyEndAllowThreads(__tstate
);
21725 if (PyErr_Occurred()) SWIG_fail
;
21728 wxSize
* resultptr
;
21729 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
21730 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
21738 static PyObject
*_wrap_ToolBarBase_GetToolPacking(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21739 PyObject
*resultobj
= NULL
;
21740 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21742 PyObject
* obj0
= 0 ;
21743 char *kwnames
[] = {
21744 (char *) "self", NULL
21747 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetToolPacking",kwnames
,&obj0
)) goto fail
;
21748 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21749 if (SWIG_arg_fail(1)) SWIG_fail
;
21751 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21752 result
= (int)(arg1
)->GetToolPacking();
21754 wxPyEndAllowThreads(__tstate
);
21755 if (PyErr_Occurred()) SWIG_fail
;
21758 resultobj
= SWIG_From_int(static_cast<int >(result
));
21766 static PyObject
*_wrap_ToolBarBase_GetToolSeparation(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21767 PyObject
*resultobj
= NULL
;
21768 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21770 PyObject
* obj0
= 0 ;
21771 char *kwnames
[] = {
21772 (char *) "self", NULL
21775 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetToolSeparation",kwnames
,&obj0
)) goto fail
;
21776 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21777 if (SWIG_arg_fail(1)) SWIG_fail
;
21779 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21780 result
= (int)(arg1
)->GetToolSeparation();
21782 wxPyEndAllowThreads(__tstate
);
21783 if (PyErr_Occurred()) SWIG_fail
;
21786 resultobj
= SWIG_From_int(static_cast<int >(result
));
21794 static PyObject
*_wrap_ToolBarBase_SetRows(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21795 PyObject
*resultobj
= NULL
;
21796 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21798 PyObject
* obj0
= 0 ;
21799 PyObject
* obj1
= 0 ;
21800 char *kwnames
[] = {
21801 (char *) "self",(char *) "nRows", NULL
21804 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_SetRows",kwnames
,&obj0
,&obj1
)) goto fail
;
21805 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21806 if (SWIG_arg_fail(1)) SWIG_fail
;
21808 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21809 if (SWIG_arg_fail(2)) SWIG_fail
;
21812 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21813 (arg1
)->SetRows(arg2
);
21815 wxPyEndAllowThreads(__tstate
);
21816 if (PyErr_Occurred()) SWIG_fail
;
21818 Py_INCREF(Py_None
); resultobj
= Py_None
;
21825 static PyObject
*_wrap_ToolBarBase_SetMaxRowsCols(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21826 PyObject
*resultobj
= NULL
;
21827 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21830 PyObject
* obj0
= 0 ;
21831 PyObject
* obj1
= 0 ;
21832 PyObject
* obj2
= 0 ;
21833 char *kwnames
[] = {
21834 (char *) "self",(char *) "rows",(char *) "cols", NULL
21837 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_SetMaxRowsCols",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
21838 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21839 if (SWIG_arg_fail(1)) SWIG_fail
;
21841 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21842 if (SWIG_arg_fail(2)) SWIG_fail
;
21845 arg3
= static_cast<int >(SWIG_As_int(obj2
));
21846 if (SWIG_arg_fail(3)) SWIG_fail
;
21849 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21850 (arg1
)->SetMaxRowsCols(arg2
,arg3
);
21852 wxPyEndAllowThreads(__tstate
);
21853 if (PyErr_Occurred()) SWIG_fail
;
21855 Py_INCREF(Py_None
); resultobj
= Py_None
;
21862 static PyObject
*_wrap_ToolBarBase_GetMaxRows(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21863 PyObject
*resultobj
= NULL
;
21864 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21866 PyObject
* obj0
= 0 ;
21867 char *kwnames
[] = {
21868 (char *) "self", NULL
21871 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetMaxRows",kwnames
,&obj0
)) goto fail
;
21872 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21873 if (SWIG_arg_fail(1)) SWIG_fail
;
21875 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21876 result
= (int)(arg1
)->GetMaxRows();
21878 wxPyEndAllowThreads(__tstate
);
21879 if (PyErr_Occurred()) SWIG_fail
;
21882 resultobj
= SWIG_From_int(static_cast<int >(result
));
21890 static PyObject
*_wrap_ToolBarBase_GetMaxCols(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21891 PyObject
*resultobj
= NULL
;
21892 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21894 PyObject
* obj0
= 0 ;
21895 char *kwnames
[] = {
21896 (char *) "self", NULL
21899 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetMaxCols",kwnames
,&obj0
)) goto fail
;
21900 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21901 if (SWIG_arg_fail(1)) SWIG_fail
;
21903 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21904 result
= (int)(arg1
)->GetMaxCols();
21906 wxPyEndAllowThreads(__tstate
);
21907 if (PyErr_Occurred()) SWIG_fail
;
21910 resultobj
= SWIG_From_int(static_cast<int >(result
));
21918 static PyObject
*_wrap_ToolBarBase_SetToolBitmapSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21919 PyObject
*resultobj
= NULL
;
21920 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21923 PyObject
* obj0
= 0 ;
21924 PyObject
* obj1
= 0 ;
21925 char *kwnames
[] = {
21926 (char *) "self",(char *) "size", NULL
21929 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_SetToolBitmapSize",kwnames
,&obj0
,&obj1
)) goto fail
;
21930 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21931 if (SWIG_arg_fail(1)) SWIG_fail
;
21934 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
21937 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21938 (arg1
)->SetToolBitmapSize((wxSize
const &)*arg2
);
21940 wxPyEndAllowThreads(__tstate
);
21941 if (PyErr_Occurred()) SWIG_fail
;
21943 Py_INCREF(Py_None
); resultobj
= Py_None
;
21950 static PyObject
*_wrap_ToolBarBase_GetToolBitmapSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21951 PyObject
*resultobj
= NULL
;
21952 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21954 PyObject
* obj0
= 0 ;
21955 char *kwnames
[] = {
21956 (char *) "self", NULL
21959 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetToolBitmapSize",kwnames
,&obj0
)) goto fail
;
21960 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21961 if (SWIG_arg_fail(1)) SWIG_fail
;
21963 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21964 result
= (arg1
)->GetToolBitmapSize();
21966 wxPyEndAllowThreads(__tstate
);
21967 if (PyErr_Occurred()) SWIG_fail
;
21970 wxSize
* resultptr
;
21971 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
21972 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
21980 static PyObject
*_wrap_ToolBarBase_GetToolSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21981 PyObject
*resultobj
= NULL
;
21982 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
21984 PyObject
* obj0
= 0 ;
21985 char *kwnames
[] = {
21986 (char *) "self", NULL
21989 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetToolSize",kwnames
,&obj0
)) goto fail
;
21990 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
21991 if (SWIG_arg_fail(1)) SWIG_fail
;
21993 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21994 result
= (arg1
)->GetToolSize();
21996 wxPyEndAllowThreads(__tstate
);
21997 if (PyErr_Occurred()) SWIG_fail
;
22000 wxSize
* resultptr
;
22001 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
22002 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
22010 static PyObject
*_wrap_ToolBarBase_FindToolForPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22011 PyObject
*resultobj
= NULL
;
22012 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
22015 wxToolBarToolBase
*result
;
22016 PyObject
* obj0
= 0 ;
22017 PyObject
* obj1
= 0 ;
22018 PyObject
* obj2
= 0 ;
22019 char *kwnames
[] = {
22020 (char *) "self",(char *) "x",(char *) "y", NULL
22023 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_FindToolForPosition",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
22024 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
22025 if (SWIG_arg_fail(1)) SWIG_fail
;
22027 arg2
= static_cast<int >(SWIG_As_int(obj1
));
22028 if (SWIG_arg_fail(2)) SWIG_fail
;
22031 arg3
= static_cast<int >(SWIG_As_int(obj2
));
22032 if (SWIG_arg_fail(3)) SWIG_fail
;
22035 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22036 result
= (wxToolBarToolBase
*)(arg1
)->FindToolForPosition(arg2
,arg3
);
22038 wxPyEndAllowThreads(__tstate
);
22039 if (PyErr_Occurred()) SWIG_fail
;
22042 resultobj
= wxPyMake_wxObject(result
, (bool)0);
22050 static PyObject
*_wrap_ToolBarBase_FindById(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22051 PyObject
*resultobj
= NULL
;
22052 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
22054 wxToolBarToolBase
*result
;
22055 PyObject
* obj0
= 0 ;
22056 PyObject
* obj1
= 0 ;
22057 char *kwnames
[] = {
22058 (char *) "self",(char *) "toolid", NULL
22061 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_FindById",kwnames
,&obj0
,&obj1
)) goto fail
;
22062 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
22063 if (SWIG_arg_fail(1)) SWIG_fail
;
22065 arg2
= static_cast<int >(SWIG_As_int(obj1
));
22066 if (SWIG_arg_fail(2)) SWIG_fail
;
22069 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22070 result
= (wxToolBarToolBase
*)((wxToolBarBase
const *)arg1
)->FindById(arg2
);
22072 wxPyEndAllowThreads(__tstate
);
22073 if (PyErr_Occurred()) SWIG_fail
;
22076 resultobj
= wxPyMake_wxObject(result
, (bool)0);
22084 static PyObject
*_wrap_ToolBarBase_IsVertical(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22085 PyObject
*resultobj
= NULL
;
22086 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
22088 PyObject
* obj0
= 0 ;
22089 char *kwnames
[] = {
22090 (char *) "self", NULL
22093 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_IsVertical",kwnames
,&obj0
)) goto fail
;
22094 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
22095 if (SWIG_arg_fail(1)) SWIG_fail
;
22097 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22098 result
= (bool)(arg1
)->IsVertical();
22100 wxPyEndAllowThreads(__tstate
);
22101 if (PyErr_Occurred()) SWIG_fail
;
22104 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
22112 static PyObject
* ToolBarBase_swigregister(PyObject
*, PyObject
*args
) {
22114 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
22115 SWIG_TypeClientData(SWIGTYPE_p_wxToolBarBase
, obj
);
22117 return Py_BuildValue((char *)"");
22119 static PyObject
*_wrap_new_ToolBar(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22120 PyObject
*resultobj
= NULL
;
22121 wxWindow
*arg1
= (wxWindow
*) 0 ;
22122 int arg2
= (int) -1 ;
22123 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
22124 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
22125 wxSize
const &arg4_defvalue
= wxDefaultSize
;
22126 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
22127 long arg5
= (long) wxNO_BORDER
|wxTB_HORIZONTAL
;
22128 wxString
const &arg6_defvalue
= wxPyToolBarNameStr
;
22129 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
22133 bool temp6
= false ;
22134 PyObject
* obj0
= 0 ;
22135 PyObject
* obj1
= 0 ;
22136 PyObject
* obj2
= 0 ;
22137 PyObject
* obj3
= 0 ;
22138 PyObject
* obj4
= 0 ;
22139 PyObject
* obj5
= 0 ;
22140 char *kwnames
[] = {
22141 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
22144 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_ToolBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
22145 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
22146 if (SWIG_arg_fail(1)) SWIG_fail
;
22149 arg2
= static_cast<int >(SWIG_As_int(obj1
));
22150 if (SWIG_arg_fail(2)) SWIG_fail
;
22156 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
22162 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
22167 arg5
= static_cast<long >(SWIG_As_long(obj4
));
22168 if (SWIG_arg_fail(5)) SWIG_fail
;
22173 arg6
= wxString_in_helper(obj5
);
22174 if (arg6
== NULL
) SWIG_fail
;
22179 if (!wxPyCheckForApp()) SWIG_fail
;
22180 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22181 result
= (wxToolBar
*)new wxToolBar(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
22183 wxPyEndAllowThreads(__tstate
);
22184 if (PyErr_Occurred()) SWIG_fail
;
22186 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxToolBar
, 1);
22201 static PyObject
*_wrap_new_PreToolBar(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22202 PyObject
*resultobj
= NULL
;
22204 char *kwnames
[] = {
22208 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreToolBar",kwnames
)) goto fail
;
22210 if (!wxPyCheckForApp()) SWIG_fail
;
22211 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22212 result
= (wxToolBar
*)new wxToolBar();
22214 wxPyEndAllowThreads(__tstate
);
22215 if (PyErr_Occurred()) SWIG_fail
;
22217 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxToolBar
, 1);
22224 static PyObject
*_wrap_ToolBar_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22225 PyObject
*resultobj
= NULL
;
22226 wxToolBar
*arg1
= (wxToolBar
*) 0 ;
22227 wxWindow
*arg2
= (wxWindow
*) 0 ;
22228 int arg3
= (int) -1 ;
22229 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
22230 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
22231 wxSize
const &arg5_defvalue
= wxDefaultSize
;
22232 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
22233 long arg6
= (long) wxNO_BORDER
|wxTB_HORIZONTAL
;
22234 wxString
const &arg7_defvalue
= wxPyToolBarNameStr
;
22235 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
22239 bool temp7
= false ;
22240 PyObject
* obj0
= 0 ;
22241 PyObject
* obj1
= 0 ;
22242 PyObject
* obj2
= 0 ;
22243 PyObject
* obj3
= 0 ;
22244 PyObject
* obj4
= 0 ;
22245 PyObject
* obj5
= 0 ;
22246 PyObject
* obj6
= 0 ;
22247 char *kwnames
[] = {
22248 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
22251 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:ToolBar_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
22252 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBar
, SWIG_POINTER_EXCEPTION
| 0);
22253 if (SWIG_arg_fail(1)) SWIG_fail
;
22254 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
22255 if (SWIG_arg_fail(2)) SWIG_fail
;
22258 arg3
= static_cast<int >(SWIG_As_int(obj2
));
22259 if (SWIG_arg_fail(3)) SWIG_fail
;
22265 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
22271 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
22276 arg6
= static_cast<long >(SWIG_As_long(obj5
));
22277 if (SWIG_arg_fail(6)) SWIG_fail
;
22282 arg7
= wxString_in_helper(obj6
);
22283 if (arg7
== NULL
) SWIG_fail
;
22288 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22289 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
22291 wxPyEndAllowThreads(__tstate
);
22292 if (PyErr_Occurred()) SWIG_fail
;
22295 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
22311 static PyObject
*_wrap_ToolBar_FindToolForPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22312 PyObject
*resultobj
= NULL
;
22313 wxToolBar
*arg1
= (wxToolBar
*) 0 ;
22316 wxToolBarToolBase
*result
;
22317 PyObject
* obj0
= 0 ;
22318 PyObject
* obj1
= 0 ;
22319 PyObject
* obj2
= 0 ;
22320 char *kwnames
[] = {
22321 (char *) "self",(char *) "x",(char *) "y", NULL
22324 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBar_FindToolForPosition",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
22325 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBar
, SWIG_POINTER_EXCEPTION
| 0);
22326 if (SWIG_arg_fail(1)) SWIG_fail
;
22328 arg2
= static_cast<int >(SWIG_As_int(obj1
));
22329 if (SWIG_arg_fail(2)) SWIG_fail
;
22332 arg3
= static_cast<int >(SWIG_As_int(obj2
));
22333 if (SWIG_arg_fail(3)) SWIG_fail
;
22336 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22337 result
= (wxToolBarToolBase
*)(arg1
)->FindToolForPosition(arg2
,arg3
);
22339 wxPyEndAllowThreads(__tstate
);
22340 if (PyErr_Occurred()) SWIG_fail
;
22343 resultobj
= wxPyMake_wxObject(result
, (bool)0);
22351 static PyObject
*_wrap_ToolBar_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22352 PyObject
*resultobj
= NULL
;
22353 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
22354 wxVisualAttributes result
;
22355 PyObject
* obj0
= 0 ;
22356 char *kwnames
[] = {
22357 (char *) "variant", NULL
22360 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ToolBar_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
22363 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
22364 if (SWIG_arg_fail(1)) SWIG_fail
;
22368 if (!wxPyCheckForApp()) SWIG_fail
;
22369 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22370 result
= wxToolBar::GetClassDefaultAttributes(arg1
);
22372 wxPyEndAllowThreads(__tstate
);
22373 if (PyErr_Occurred()) SWIG_fail
;
22376 wxVisualAttributes
* resultptr
;
22377 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
22378 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
22386 static PyObject
* ToolBar_swigregister(PyObject
*, PyObject
*args
) {
22388 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
22389 SWIG_TypeClientData(SWIGTYPE_p_wxToolBar
, obj
);
22391 return Py_BuildValue((char *)"");
22393 static int _wrap_ListCtrlNameStr_set(PyObject
*) {
22394 PyErr_SetString(PyExc_TypeError
,"Variable ListCtrlNameStr is read-only.");
22399 static PyObject
*_wrap_ListCtrlNameStr_get(void) {
22400 PyObject
*pyobj
= NULL
;
22404 pyobj
= PyUnicode_FromWideChar((&wxPyListCtrlNameStr
)->c_str(), (&wxPyListCtrlNameStr
)->Len());
22406 pyobj
= PyString_FromStringAndSize((&wxPyListCtrlNameStr
)->c_str(), (&wxPyListCtrlNameStr
)->Len());
22413 static PyObject
*_wrap_new_ListItemAttr(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22414 PyObject
*resultobj
= NULL
;
22415 wxColour
const &arg1_defvalue
= wxNullColour
;
22416 wxColour
*arg1
= (wxColour
*) &arg1_defvalue
;
22417 wxColour
const &arg2_defvalue
= wxNullColour
;
22418 wxColour
*arg2
= (wxColour
*) &arg2_defvalue
;
22419 wxFont
const &arg3_defvalue
= wxNullFont
;
22420 wxFont
*arg3
= (wxFont
*) &arg3_defvalue
;
22421 wxListItemAttr
*result
;
22424 PyObject
* obj0
= 0 ;
22425 PyObject
* obj1
= 0 ;
22426 PyObject
* obj2
= 0 ;
22427 char *kwnames
[] = {
22428 (char *) "colText",(char *) "colBack",(char *) "font", NULL
22431 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOO:new_ListItemAttr",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
22435 if ( ! wxColour_helper(obj0
, &arg1
)) SWIG_fail
;
22441 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
22446 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
22447 if (SWIG_arg_fail(3)) SWIG_fail
;
22448 if (arg3
== NULL
) {
22449 SWIG_null_ref("wxFont");
22451 if (SWIG_arg_fail(3)) SWIG_fail
;
22455 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22456 result
= (wxListItemAttr
*)new wxListItemAttr((wxColour
const &)*arg1
,(wxColour
const &)*arg2
,(wxFont
const &)*arg3
);
22458 wxPyEndAllowThreads(__tstate
);
22459 if (PyErr_Occurred()) SWIG_fail
;
22461 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListItemAttr
, 1);
22468 static PyObject
*_wrap_delete_ListItemAttr(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22469 PyObject
*resultobj
= NULL
;
22470 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
22471 PyObject
* obj0
= 0 ;
22472 char *kwnames
[] = {
22473 (char *) "self", NULL
22476 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_ListItemAttr",kwnames
,&obj0
)) goto fail
;
22477 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
22478 if (SWIG_arg_fail(1)) SWIG_fail
;
22480 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22483 wxPyEndAllowThreads(__tstate
);
22484 if (PyErr_Occurred()) SWIG_fail
;
22486 Py_INCREF(Py_None
); resultobj
= Py_None
;
22493 static PyObject
*_wrap_ListItemAttr_SetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22494 PyObject
*resultobj
= NULL
;
22495 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
22496 wxColour
*arg2
= 0 ;
22498 PyObject
* obj0
= 0 ;
22499 PyObject
* obj1
= 0 ;
22500 char *kwnames
[] = {
22501 (char *) "self",(char *) "colText", NULL
22504 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItemAttr_SetTextColour",kwnames
,&obj0
,&obj1
)) goto fail
;
22505 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
22506 if (SWIG_arg_fail(1)) SWIG_fail
;
22509 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
22512 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22513 (arg1
)->SetTextColour((wxColour
const &)*arg2
);
22515 wxPyEndAllowThreads(__tstate
);
22516 if (PyErr_Occurred()) SWIG_fail
;
22518 Py_INCREF(Py_None
); resultobj
= Py_None
;
22525 static PyObject
*_wrap_ListItemAttr_SetBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22526 PyObject
*resultobj
= NULL
;
22527 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
22528 wxColour
*arg2
= 0 ;
22530 PyObject
* obj0
= 0 ;
22531 PyObject
* obj1
= 0 ;
22532 char *kwnames
[] = {
22533 (char *) "self",(char *) "colBack", NULL
22536 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItemAttr_SetBackgroundColour",kwnames
,&obj0
,&obj1
)) goto fail
;
22537 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
22538 if (SWIG_arg_fail(1)) SWIG_fail
;
22541 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
22544 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22545 (arg1
)->SetBackgroundColour((wxColour
const &)*arg2
);
22547 wxPyEndAllowThreads(__tstate
);
22548 if (PyErr_Occurred()) SWIG_fail
;
22550 Py_INCREF(Py_None
); resultobj
= Py_None
;
22557 static PyObject
*_wrap_ListItemAttr_SetFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22558 PyObject
*resultobj
= NULL
;
22559 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
22561 PyObject
* obj0
= 0 ;
22562 PyObject
* obj1
= 0 ;
22563 char *kwnames
[] = {
22564 (char *) "self",(char *) "font", NULL
22567 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItemAttr_SetFont",kwnames
,&obj0
,&obj1
)) goto fail
;
22568 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
22569 if (SWIG_arg_fail(1)) SWIG_fail
;
22571 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
22572 if (SWIG_arg_fail(2)) SWIG_fail
;
22573 if (arg2
== NULL
) {
22574 SWIG_null_ref("wxFont");
22576 if (SWIG_arg_fail(2)) SWIG_fail
;
22579 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22580 (arg1
)->SetFont((wxFont
const &)*arg2
);
22582 wxPyEndAllowThreads(__tstate
);
22583 if (PyErr_Occurred()) SWIG_fail
;
22585 Py_INCREF(Py_None
); resultobj
= Py_None
;
22592 static PyObject
*_wrap_ListItemAttr_HasTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22593 PyObject
*resultobj
= NULL
;
22594 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
22596 PyObject
* obj0
= 0 ;
22597 char *kwnames
[] = {
22598 (char *) "self", NULL
22601 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItemAttr_HasTextColour",kwnames
,&obj0
)) goto fail
;
22602 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
22603 if (SWIG_arg_fail(1)) SWIG_fail
;
22605 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22606 result
= (bool)(arg1
)->HasTextColour();
22608 wxPyEndAllowThreads(__tstate
);
22609 if (PyErr_Occurred()) SWIG_fail
;
22612 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
22620 static PyObject
*_wrap_ListItemAttr_HasBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22621 PyObject
*resultobj
= NULL
;
22622 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
22624 PyObject
* obj0
= 0 ;
22625 char *kwnames
[] = {
22626 (char *) "self", NULL
22629 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItemAttr_HasBackgroundColour",kwnames
,&obj0
)) goto fail
;
22630 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
22631 if (SWIG_arg_fail(1)) SWIG_fail
;
22633 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22634 result
= (bool)(arg1
)->HasBackgroundColour();
22636 wxPyEndAllowThreads(__tstate
);
22637 if (PyErr_Occurred()) SWIG_fail
;
22640 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
22648 static PyObject
*_wrap_ListItemAttr_HasFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22649 PyObject
*resultobj
= NULL
;
22650 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
22652 PyObject
* obj0
= 0 ;
22653 char *kwnames
[] = {
22654 (char *) "self", NULL
22657 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItemAttr_HasFont",kwnames
,&obj0
)) goto fail
;
22658 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
22659 if (SWIG_arg_fail(1)) SWIG_fail
;
22661 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22662 result
= (bool)(arg1
)->HasFont();
22664 wxPyEndAllowThreads(__tstate
);
22665 if (PyErr_Occurred()) SWIG_fail
;
22668 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
22676 static PyObject
*_wrap_ListItemAttr_GetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22677 PyObject
*resultobj
= NULL
;
22678 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
22680 PyObject
* obj0
= 0 ;
22681 char *kwnames
[] = {
22682 (char *) "self", NULL
22685 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItemAttr_GetTextColour",kwnames
,&obj0
)) goto fail
;
22686 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
22687 if (SWIG_arg_fail(1)) SWIG_fail
;
22689 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22690 result
= (arg1
)->GetTextColour();
22692 wxPyEndAllowThreads(__tstate
);
22693 if (PyErr_Occurred()) SWIG_fail
;
22696 wxColour
* resultptr
;
22697 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
22698 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
22706 static PyObject
*_wrap_ListItemAttr_GetBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22707 PyObject
*resultobj
= NULL
;
22708 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
22710 PyObject
* obj0
= 0 ;
22711 char *kwnames
[] = {
22712 (char *) "self", NULL
22715 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItemAttr_GetBackgroundColour",kwnames
,&obj0
)) goto fail
;
22716 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
22717 if (SWIG_arg_fail(1)) SWIG_fail
;
22719 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22720 result
= (arg1
)->GetBackgroundColour();
22722 wxPyEndAllowThreads(__tstate
);
22723 if (PyErr_Occurred()) SWIG_fail
;
22726 wxColour
* resultptr
;
22727 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
22728 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
22736 static PyObject
*_wrap_ListItemAttr_GetFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22737 PyObject
*resultobj
= NULL
;
22738 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
22740 PyObject
* obj0
= 0 ;
22741 char *kwnames
[] = {
22742 (char *) "self", NULL
22745 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItemAttr_GetFont",kwnames
,&obj0
)) goto fail
;
22746 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
22747 if (SWIG_arg_fail(1)) SWIG_fail
;
22749 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22750 result
= (arg1
)->GetFont();
22752 wxPyEndAllowThreads(__tstate
);
22753 if (PyErr_Occurred()) SWIG_fail
;
22756 wxFont
* resultptr
;
22757 resultptr
= new wxFont(static_cast<wxFont
& >(result
));
22758 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxFont
, 1);
22766 static PyObject
*_wrap_ListItemAttr_AssignFrom(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22767 PyObject
*resultobj
= NULL
;
22768 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
22769 wxListItemAttr
*arg2
= 0 ;
22770 PyObject
* obj0
= 0 ;
22771 PyObject
* obj1
= 0 ;
22772 char *kwnames
[] = {
22773 (char *) "self",(char *) "source", NULL
22776 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItemAttr_AssignFrom",kwnames
,&obj0
,&obj1
)) goto fail
;
22777 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
22778 if (SWIG_arg_fail(1)) SWIG_fail
;
22780 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
22781 if (SWIG_arg_fail(2)) SWIG_fail
;
22782 if (arg2
== NULL
) {
22783 SWIG_null_ref("wxListItemAttr");
22785 if (SWIG_arg_fail(2)) SWIG_fail
;
22788 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22789 (arg1
)->AssignFrom((wxListItemAttr
const &)*arg2
);
22791 wxPyEndAllowThreads(__tstate
);
22792 if (PyErr_Occurred()) SWIG_fail
;
22794 Py_INCREF(Py_None
); resultobj
= Py_None
;
22801 static PyObject
*_wrap_ListItemAttr_Destroy(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22802 PyObject
*resultobj
= NULL
;
22803 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
22804 PyObject
* obj0
= 0 ;
22805 char *kwnames
[] = {
22806 (char *) "self", NULL
22809 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItemAttr_Destroy",kwnames
,&obj0
)) goto fail
;
22810 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
22811 if (SWIG_arg_fail(1)) SWIG_fail
;
22813 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22814 wxListItemAttr_Destroy(arg1
);
22816 wxPyEndAllowThreads(__tstate
);
22817 if (PyErr_Occurred()) SWIG_fail
;
22819 Py_INCREF(Py_None
); resultobj
= Py_None
;
22826 static PyObject
* ListItemAttr_swigregister(PyObject
*, PyObject
*args
) {
22828 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
22829 SWIG_TypeClientData(SWIGTYPE_p_wxListItemAttr
, obj
);
22831 return Py_BuildValue((char *)"");
22833 static PyObject
*_wrap_new_ListItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22834 PyObject
*resultobj
= NULL
;
22835 wxListItem
*result
;
22836 char *kwnames
[] = {
22840 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_ListItem",kwnames
)) goto fail
;
22842 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22843 result
= (wxListItem
*)new wxListItem();
22845 wxPyEndAllowThreads(__tstate
);
22846 if (PyErr_Occurred()) SWIG_fail
;
22849 resultobj
= wxPyMake_wxObject(result
, (bool)1);
22857 static PyObject
*_wrap_delete_ListItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22858 PyObject
*resultobj
= NULL
;
22859 wxListItem
*arg1
= (wxListItem
*) 0 ;
22860 PyObject
* obj0
= 0 ;
22861 char *kwnames
[] = {
22862 (char *) "self", NULL
22865 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_ListItem",kwnames
,&obj0
)) goto fail
;
22866 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22867 if (SWIG_arg_fail(1)) SWIG_fail
;
22869 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22872 wxPyEndAllowThreads(__tstate
);
22873 if (PyErr_Occurred()) SWIG_fail
;
22875 Py_INCREF(Py_None
); resultobj
= Py_None
;
22882 static PyObject
*_wrap_ListItem_Clear(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22883 PyObject
*resultobj
= NULL
;
22884 wxListItem
*arg1
= (wxListItem
*) 0 ;
22885 PyObject
* obj0
= 0 ;
22886 char *kwnames
[] = {
22887 (char *) "self", NULL
22890 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_Clear",kwnames
,&obj0
)) goto fail
;
22891 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22892 if (SWIG_arg_fail(1)) SWIG_fail
;
22894 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22897 wxPyEndAllowThreads(__tstate
);
22898 if (PyErr_Occurred()) SWIG_fail
;
22900 Py_INCREF(Py_None
); resultobj
= Py_None
;
22907 static PyObject
*_wrap_ListItem_ClearAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22908 PyObject
*resultobj
= NULL
;
22909 wxListItem
*arg1
= (wxListItem
*) 0 ;
22910 PyObject
* obj0
= 0 ;
22911 char *kwnames
[] = {
22912 (char *) "self", NULL
22915 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_ClearAttributes",kwnames
,&obj0
)) goto fail
;
22916 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22917 if (SWIG_arg_fail(1)) SWIG_fail
;
22919 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22920 (arg1
)->ClearAttributes();
22922 wxPyEndAllowThreads(__tstate
);
22923 if (PyErr_Occurred()) SWIG_fail
;
22925 Py_INCREF(Py_None
); resultobj
= Py_None
;
22932 static PyObject
*_wrap_ListItem_SetMask(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22933 PyObject
*resultobj
= NULL
;
22934 wxListItem
*arg1
= (wxListItem
*) 0 ;
22936 PyObject
* obj0
= 0 ;
22937 PyObject
* obj1
= 0 ;
22938 char *kwnames
[] = {
22939 (char *) "self",(char *) "mask", NULL
22942 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetMask",kwnames
,&obj0
,&obj1
)) goto fail
;
22943 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22944 if (SWIG_arg_fail(1)) SWIG_fail
;
22946 arg2
= static_cast<long >(SWIG_As_long(obj1
));
22947 if (SWIG_arg_fail(2)) SWIG_fail
;
22950 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22951 (arg1
)->SetMask(arg2
);
22953 wxPyEndAllowThreads(__tstate
);
22954 if (PyErr_Occurred()) SWIG_fail
;
22956 Py_INCREF(Py_None
); resultobj
= Py_None
;
22963 static PyObject
*_wrap_ListItem_SetId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22964 PyObject
*resultobj
= NULL
;
22965 wxListItem
*arg1
= (wxListItem
*) 0 ;
22967 PyObject
* obj0
= 0 ;
22968 PyObject
* obj1
= 0 ;
22969 char *kwnames
[] = {
22970 (char *) "self",(char *) "id", NULL
22973 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetId",kwnames
,&obj0
,&obj1
)) goto fail
;
22974 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22975 if (SWIG_arg_fail(1)) SWIG_fail
;
22977 arg2
= static_cast<long >(SWIG_As_long(obj1
));
22978 if (SWIG_arg_fail(2)) SWIG_fail
;
22981 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22982 (arg1
)->SetId(arg2
);
22984 wxPyEndAllowThreads(__tstate
);
22985 if (PyErr_Occurred()) SWIG_fail
;
22987 Py_INCREF(Py_None
); resultobj
= Py_None
;
22994 static PyObject
*_wrap_ListItem_SetColumn(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22995 PyObject
*resultobj
= NULL
;
22996 wxListItem
*arg1
= (wxListItem
*) 0 ;
22998 PyObject
* obj0
= 0 ;
22999 PyObject
* obj1
= 0 ;
23000 char *kwnames
[] = {
23001 (char *) "self",(char *) "col", NULL
23004 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetColumn",kwnames
,&obj0
,&obj1
)) goto fail
;
23005 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23006 if (SWIG_arg_fail(1)) SWIG_fail
;
23008 arg2
= static_cast<int >(SWIG_As_int(obj1
));
23009 if (SWIG_arg_fail(2)) SWIG_fail
;
23012 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23013 (arg1
)->SetColumn(arg2
);
23015 wxPyEndAllowThreads(__tstate
);
23016 if (PyErr_Occurred()) SWIG_fail
;
23018 Py_INCREF(Py_None
); resultobj
= Py_None
;
23025 static PyObject
*_wrap_ListItem_SetState(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23026 PyObject
*resultobj
= NULL
;
23027 wxListItem
*arg1
= (wxListItem
*) 0 ;
23029 PyObject
* obj0
= 0 ;
23030 PyObject
* obj1
= 0 ;
23031 char *kwnames
[] = {
23032 (char *) "self",(char *) "state", NULL
23035 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetState",kwnames
,&obj0
,&obj1
)) goto fail
;
23036 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23037 if (SWIG_arg_fail(1)) SWIG_fail
;
23039 arg2
= static_cast<long >(SWIG_As_long(obj1
));
23040 if (SWIG_arg_fail(2)) SWIG_fail
;
23043 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23044 (arg1
)->SetState(arg2
);
23046 wxPyEndAllowThreads(__tstate
);
23047 if (PyErr_Occurred()) SWIG_fail
;
23049 Py_INCREF(Py_None
); resultobj
= Py_None
;
23056 static PyObject
*_wrap_ListItem_SetStateMask(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23057 PyObject
*resultobj
= NULL
;
23058 wxListItem
*arg1
= (wxListItem
*) 0 ;
23060 PyObject
* obj0
= 0 ;
23061 PyObject
* obj1
= 0 ;
23062 char *kwnames
[] = {
23063 (char *) "self",(char *) "stateMask", NULL
23066 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetStateMask",kwnames
,&obj0
,&obj1
)) goto fail
;
23067 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23068 if (SWIG_arg_fail(1)) SWIG_fail
;
23070 arg2
= static_cast<long >(SWIG_As_long(obj1
));
23071 if (SWIG_arg_fail(2)) SWIG_fail
;
23074 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23075 (arg1
)->SetStateMask(arg2
);
23077 wxPyEndAllowThreads(__tstate
);
23078 if (PyErr_Occurred()) SWIG_fail
;
23080 Py_INCREF(Py_None
); resultobj
= Py_None
;
23087 static PyObject
*_wrap_ListItem_SetText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23088 PyObject
*resultobj
= NULL
;
23089 wxListItem
*arg1
= (wxListItem
*) 0 ;
23090 wxString
*arg2
= 0 ;
23091 bool temp2
= false ;
23092 PyObject
* obj0
= 0 ;
23093 PyObject
* obj1
= 0 ;
23094 char *kwnames
[] = {
23095 (char *) "self",(char *) "text", NULL
23098 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetText",kwnames
,&obj0
,&obj1
)) goto fail
;
23099 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23100 if (SWIG_arg_fail(1)) SWIG_fail
;
23102 arg2
= wxString_in_helper(obj1
);
23103 if (arg2
== NULL
) SWIG_fail
;
23107 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23108 (arg1
)->SetText((wxString
const &)*arg2
);
23110 wxPyEndAllowThreads(__tstate
);
23111 if (PyErr_Occurred()) SWIG_fail
;
23113 Py_INCREF(Py_None
); resultobj
= Py_None
;
23128 static PyObject
*_wrap_ListItem_SetImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23129 PyObject
*resultobj
= NULL
;
23130 wxListItem
*arg1
= (wxListItem
*) 0 ;
23132 PyObject
* obj0
= 0 ;
23133 PyObject
* obj1
= 0 ;
23134 char *kwnames
[] = {
23135 (char *) "self",(char *) "image", NULL
23138 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetImage",kwnames
,&obj0
,&obj1
)) goto fail
;
23139 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23140 if (SWIG_arg_fail(1)) SWIG_fail
;
23142 arg2
= static_cast<int >(SWIG_As_int(obj1
));
23143 if (SWIG_arg_fail(2)) SWIG_fail
;
23146 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23147 (arg1
)->SetImage(arg2
);
23149 wxPyEndAllowThreads(__tstate
);
23150 if (PyErr_Occurred()) SWIG_fail
;
23152 Py_INCREF(Py_None
); resultobj
= Py_None
;
23159 static PyObject
*_wrap_ListItem_SetData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23160 PyObject
*resultobj
= NULL
;
23161 wxListItem
*arg1
= (wxListItem
*) 0 ;
23163 PyObject
* obj0
= 0 ;
23164 PyObject
* obj1
= 0 ;
23165 char *kwnames
[] = {
23166 (char *) "self",(char *) "data", NULL
23169 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetData",kwnames
,&obj0
,&obj1
)) goto fail
;
23170 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23171 if (SWIG_arg_fail(1)) SWIG_fail
;
23173 arg2
= static_cast<long >(SWIG_As_long(obj1
));
23174 if (SWIG_arg_fail(2)) SWIG_fail
;
23177 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23178 (arg1
)->SetData(arg2
);
23180 wxPyEndAllowThreads(__tstate
);
23181 if (PyErr_Occurred()) SWIG_fail
;
23183 Py_INCREF(Py_None
); resultobj
= Py_None
;
23190 static PyObject
*_wrap_ListItem_SetWidth(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23191 PyObject
*resultobj
= NULL
;
23192 wxListItem
*arg1
= (wxListItem
*) 0 ;
23194 PyObject
* obj0
= 0 ;
23195 PyObject
* obj1
= 0 ;
23196 char *kwnames
[] = {
23197 (char *) "self",(char *) "width", NULL
23200 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetWidth",kwnames
,&obj0
,&obj1
)) goto fail
;
23201 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23202 if (SWIG_arg_fail(1)) SWIG_fail
;
23204 arg2
= static_cast<int >(SWIG_As_int(obj1
));
23205 if (SWIG_arg_fail(2)) SWIG_fail
;
23208 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23209 (arg1
)->SetWidth(arg2
);
23211 wxPyEndAllowThreads(__tstate
);
23212 if (PyErr_Occurred()) SWIG_fail
;
23214 Py_INCREF(Py_None
); resultobj
= Py_None
;
23221 static PyObject
*_wrap_ListItem_SetAlign(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23222 PyObject
*resultobj
= NULL
;
23223 wxListItem
*arg1
= (wxListItem
*) 0 ;
23224 wxListColumnFormat arg2
;
23225 PyObject
* obj0
= 0 ;
23226 PyObject
* obj1
= 0 ;
23227 char *kwnames
[] = {
23228 (char *) "self",(char *) "align", NULL
23231 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetAlign",kwnames
,&obj0
,&obj1
)) goto fail
;
23232 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23233 if (SWIG_arg_fail(1)) SWIG_fail
;
23235 arg2
= static_cast<wxListColumnFormat
>(SWIG_As_int(obj1
));
23236 if (SWIG_arg_fail(2)) SWIG_fail
;
23239 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23240 (arg1
)->SetAlign(arg2
);
23242 wxPyEndAllowThreads(__tstate
);
23243 if (PyErr_Occurred()) SWIG_fail
;
23245 Py_INCREF(Py_None
); resultobj
= Py_None
;
23252 static PyObject
*_wrap_ListItem_SetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23253 PyObject
*resultobj
= NULL
;
23254 wxListItem
*arg1
= (wxListItem
*) 0 ;
23255 wxColour
*arg2
= 0 ;
23257 PyObject
* obj0
= 0 ;
23258 PyObject
* obj1
= 0 ;
23259 char *kwnames
[] = {
23260 (char *) "self",(char *) "colText", NULL
23263 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetTextColour",kwnames
,&obj0
,&obj1
)) goto fail
;
23264 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23265 if (SWIG_arg_fail(1)) SWIG_fail
;
23268 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
23271 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23272 (arg1
)->SetTextColour((wxColour
const &)*arg2
);
23274 wxPyEndAllowThreads(__tstate
);
23275 if (PyErr_Occurred()) SWIG_fail
;
23277 Py_INCREF(Py_None
); resultobj
= Py_None
;
23284 static PyObject
*_wrap_ListItem_SetBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23285 PyObject
*resultobj
= NULL
;
23286 wxListItem
*arg1
= (wxListItem
*) 0 ;
23287 wxColour
*arg2
= 0 ;
23289 PyObject
* obj0
= 0 ;
23290 PyObject
* obj1
= 0 ;
23291 char *kwnames
[] = {
23292 (char *) "self",(char *) "colBack", NULL
23295 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetBackgroundColour",kwnames
,&obj0
,&obj1
)) goto fail
;
23296 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23297 if (SWIG_arg_fail(1)) SWIG_fail
;
23300 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
23303 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23304 (arg1
)->SetBackgroundColour((wxColour
const &)*arg2
);
23306 wxPyEndAllowThreads(__tstate
);
23307 if (PyErr_Occurred()) SWIG_fail
;
23309 Py_INCREF(Py_None
); resultobj
= Py_None
;
23316 static PyObject
*_wrap_ListItem_SetFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23317 PyObject
*resultobj
= NULL
;
23318 wxListItem
*arg1
= (wxListItem
*) 0 ;
23320 PyObject
* obj0
= 0 ;
23321 PyObject
* obj1
= 0 ;
23322 char *kwnames
[] = {
23323 (char *) "self",(char *) "font", NULL
23326 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetFont",kwnames
,&obj0
,&obj1
)) goto fail
;
23327 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23328 if (SWIG_arg_fail(1)) SWIG_fail
;
23330 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
23331 if (SWIG_arg_fail(2)) SWIG_fail
;
23332 if (arg2
== NULL
) {
23333 SWIG_null_ref("wxFont");
23335 if (SWIG_arg_fail(2)) SWIG_fail
;
23338 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23339 (arg1
)->SetFont((wxFont
const &)*arg2
);
23341 wxPyEndAllowThreads(__tstate
);
23342 if (PyErr_Occurred()) SWIG_fail
;
23344 Py_INCREF(Py_None
); resultobj
= Py_None
;
23351 static PyObject
*_wrap_ListItem_GetMask(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23352 PyObject
*resultobj
= NULL
;
23353 wxListItem
*arg1
= (wxListItem
*) 0 ;
23355 PyObject
* obj0
= 0 ;
23356 char *kwnames
[] = {
23357 (char *) "self", NULL
23360 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetMask",kwnames
,&obj0
)) goto fail
;
23361 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23362 if (SWIG_arg_fail(1)) SWIG_fail
;
23364 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23365 result
= (long)(arg1
)->GetMask();
23367 wxPyEndAllowThreads(__tstate
);
23368 if (PyErr_Occurred()) SWIG_fail
;
23371 resultobj
= SWIG_From_long(static_cast<long >(result
));
23379 static PyObject
*_wrap_ListItem_GetId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23380 PyObject
*resultobj
= NULL
;
23381 wxListItem
*arg1
= (wxListItem
*) 0 ;
23383 PyObject
* obj0
= 0 ;
23384 char *kwnames
[] = {
23385 (char *) "self", NULL
23388 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetId",kwnames
,&obj0
)) goto fail
;
23389 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23390 if (SWIG_arg_fail(1)) SWIG_fail
;
23392 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23393 result
= (long)(arg1
)->GetId();
23395 wxPyEndAllowThreads(__tstate
);
23396 if (PyErr_Occurred()) SWIG_fail
;
23399 resultobj
= SWIG_From_long(static_cast<long >(result
));
23407 static PyObject
*_wrap_ListItem_GetColumn(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23408 PyObject
*resultobj
= NULL
;
23409 wxListItem
*arg1
= (wxListItem
*) 0 ;
23411 PyObject
* obj0
= 0 ;
23412 char *kwnames
[] = {
23413 (char *) "self", NULL
23416 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetColumn",kwnames
,&obj0
)) goto fail
;
23417 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23418 if (SWIG_arg_fail(1)) SWIG_fail
;
23420 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23421 result
= (int)(arg1
)->GetColumn();
23423 wxPyEndAllowThreads(__tstate
);
23424 if (PyErr_Occurred()) SWIG_fail
;
23427 resultobj
= SWIG_From_int(static_cast<int >(result
));
23435 static PyObject
*_wrap_ListItem_GetState(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23436 PyObject
*resultobj
= NULL
;
23437 wxListItem
*arg1
= (wxListItem
*) 0 ;
23439 PyObject
* obj0
= 0 ;
23440 char *kwnames
[] = {
23441 (char *) "self", NULL
23444 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetState",kwnames
,&obj0
)) goto fail
;
23445 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23446 if (SWIG_arg_fail(1)) SWIG_fail
;
23448 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23449 result
= (long)(arg1
)->GetState();
23451 wxPyEndAllowThreads(__tstate
);
23452 if (PyErr_Occurred()) SWIG_fail
;
23455 resultobj
= SWIG_From_long(static_cast<long >(result
));
23463 static PyObject
*_wrap_ListItem_GetText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23464 PyObject
*resultobj
= NULL
;
23465 wxListItem
*arg1
= (wxListItem
*) 0 ;
23467 PyObject
* obj0
= 0 ;
23468 char *kwnames
[] = {
23469 (char *) "self", NULL
23472 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetText",kwnames
,&obj0
)) goto fail
;
23473 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23474 if (SWIG_arg_fail(1)) SWIG_fail
;
23476 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23478 wxString
const &_result_ref
= (arg1
)->GetText();
23479 result
= (wxString
*) &_result_ref
;
23482 wxPyEndAllowThreads(__tstate
);
23483 if (PyErr_Occurred()) SWIG_fail
;
23487 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
23489 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
23498 static PyObject
*_wrap_ListItem_GetImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23499 PyObject
*resultobj
= NULL
;
23500 wxListItem
*arg1
= (wxListItem
*) 0 ;
23502 PyObject
* obj0
= 0 ;
23503 char *kwnames
[] = {
23504 (char *) "self", NULL
23507 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetImage",kwnames
,&obj0
)) goto fail
;
23508 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23509 if (SWIG_arg_fail(1)) SWIG_fail
;
23511 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23512 result
= (int)(arg1
)->GetImage();
23514 wxPyEndAllowThreads(__tstate
);
23515 if (PyErr_Occurred()) SWIG_fail
;
23518 resultobj
= SWIG_From_int(static_cast<int >(result
));
23526 static PyObject
*_wrap_ListItem_GetData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23527 PyObject
*resultobj
= NULL
;
23528 wxListItem
*arg1
= (wxListItem
*) 0 ;
23530 PyObject
* obj0
= 0 ;
23531 char *kwnames
[] = {
23532 (char *) "self", NULL
23535 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetData",kwnames
,&obj0
)) goto fail
;
23536 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23537 if (SWIG_arg_fail(1)) SWIG_fail
;
23539 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23540 result
= (long)(arg1
)->GetData();
23542 wxPyEndAllowThreads(__tstate
);
23543 if (PyErr_Occurred()) SWIG_fail
;
23546 resultobj
= SWIG_From_long(static_cast<long >(result
));
23554 static PyObject
*_wrap_ListItem_GetWidth(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23555 PyObject
*resultobj
= NULL
;
23556 wxListItem
*arg1
= (wxListItem
*) 0 ;
23558 PyObject
* obj0
= 0 ;
23559 char *kwnames
[] = {
23560 (char *) "self", NULL
23563 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetWidth",kwnames
,&obj0
)) goto fail
;
23564 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23565 if (SWIG_arg_fail(1)) SWIG_fail
;
23567 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23568 result
= (int)(arg1
)->GetWidth();
23570 wxPyEndAllowThreads(__tstate
);
23571 if (PyErr_Occurred()) SWIG_fail
;
23574 resultobj
= SWIG_From_int(static_cast<int >(result
));
23582 static PyObject
*_wrap_ListItem_GetAlign(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23583 PyObject
*resultobj
= NULL
;
23584 wxListItem
*arg1
= (wxListItem
*) 0 ;
23585 wxListColumnFormat result
;
23586 PyObject
* obj0
= 0 ;
23587 char *kwnames
[] = {
23588 (char *) "self", NULL
23591 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetAlign",kwnames
,&obj0
)) goto fail
;
23592 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23593 if (SWIG_arg_fail(1)) SWIG_fail
;
23595 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23596 result
= (wxListColumnFormat
)(arg1
)->GetAlign();
23598 wxPyEndAllowThreads(__tstate
);
23599 if (PyErr_Occurred()) SWIG_fail
;
23601 resultobj
= SWIG_From_int((result
));
23608 static PyObject
*_wrap_ListItem_GetAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23609 PyObject
*resultobj
= NULL
;
23610 wxListItem
*arg1
= (wxListItem
*) 0 ;
23611 wxListItemAttr
*result
;
23612 PyObject
* obj0
= 0 ;
23613 char *kwnames
[] = {
23614 (char *) "self", NULL
23617 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetAttributes",kwnames
,&obj0
)) goto fail
;
23618 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23619 if (SWIG_arg_fail(1)) SWIG_fail
;
23621 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23622 result
= (wxListItemAttr
*)(arg1
)->GetAttributes();
23624 wxPyEndAllowThreads(__tstate
);
23625 if (PyErr_Occurred()) SWIG_fail
;
23627 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListItemAttr
, 0);
23634 static PyObject
*_wrap_ListItem_HasAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23635 PyObject
*resultobj
= NULL
;
23636 wxListItem
*arg1
= (wxListItem
*) 0 ;
23638 PyObject
* obj0
= 0 ;
23639 char *kwnames
[] = {
23640 (char *) "self", NULL
23643 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_HasAttributes",kwnames
,&obj0
)) goto fail
;
23644 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23645 if (SWIG_arg_fail(1)) SWIG_fail
;
23647 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23648 result
= (bool)(arg1
)->HasAttributes();
23650 wxPyEndAllowThreads(__tstate
);
23651 if (PyErr_Occurred()) SWIG_fail
;
23654 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
23662 static PyObject
*_wrap_ListItem_GetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23663 PyObject
*resultobj
= NULL
;
23664 wxListItem
*arg1
= (wxListItem
*) 0 ;
23666 PyObject
* obj0
= 0 ;
23667 char *kwnames
[] = {
23668 (char *) "self", NULL
23671 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetTextColour",kwnames
,&obj0
)) goto fail
;
23672 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23673 if (SWIG_arg_fail(1)) SWIG_fail
;
23675 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23676 result
= ((wxListItem
const *)arg1
)->GetTextColour();
23678 wxPyEndAllowThreads(__tstate
);
23679 if (PyErr_Occurred()) SWIG_fail
;
23682 wxColour
* resultptr
;
23683 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
23684 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
23692 static PyObject
*_wrap_ListItem_GetBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23693 PyObject
*resultobj
= NULL
;
23694 wxListItem
*arg1
= (wxListItem
*) 0 ;
23696 PyObject
* obj0
= 0 ;
23697 char *kwnames
[] = {
23698 (char *) "self", NULL
23701 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetBackgroundColour",kwnames
,&obj0
)) goto fail
;
23702 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23703 if (SWIG_arg_fail(1)) SWIG_fail
;
23705 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23706 result
= ((wxListItem
const *)arg1
)->GetBackgroundColour();
23708 wxPyEndAllowThreads(__tstate
);
23709 if (PyErr_Occurred()) SWIG_fail
;
23712 wxColour
* resultptr
;
23713 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
23714 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
23722 static PyObject
*_wrap_ListItem_GetFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23723 PyObject
*resultobj
= NULL
;
23724 wxListItem
*arg1
= (wxListItem
*) 0 ;
23726 PyObject
* obj0
= 0 ;
23727 char *kwnames
[] = {
23728 (char *) "self", NULL
23731 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetFont",kwnames
,&obj0
)) goto fail
;
23732 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23733 if (SWIG_arg_fail(1)) SWIG_fail
;
23735 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23736 result
= ((wxListItem
const *)arg1
)->GetFont();
23738 wxPyEndAllowThreads(__tstate
);
23739 if (PyErr_Occurred()) SWIG_fail
;
23742 wxFont
* resultptr
;
23743 resultptr
= new wxFont(static_cast<wxFont
& >(result
));
23744 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxFont
, 1);
23752 static PyObject
*_wrap_ListItem_m_mask_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23753 PyObject
*resultobj
= NULL
;
23754 wxListItem
*arg1
= (wxListItem
*) 0 ;
23756 PyObject
* obj0
= 0 ;
23757 PyObject
* obj1
= 0 ;
23758 char *kwnames
[] = {
23759 (char *) "self",(char *) "m_mask", NULL
23762 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_mask_set",kwnames
,&obj0
,&obj1
)) goto fail
;
23763 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23764 if (SWIG_arg_fail(1)) SWIG_fail
;
23766 arg2
= static_cast<long >(SWIG_As_long(obj1
));
23767 if (SWIG_arg_fail(2)) SWIG_fail
;
23769 if (arg1
) (arg1
)->m_mask
= arg2
;
23771 Py_INCREF(Py_None
); resultobj
= Py_None
;
23778 static PyObject
*_wrap_ListItem_m_mask_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23779 PyObject
*resultobj
= NULL
;
23780 wxListItem
*arg1
= (wxListItem
*) 0 ;
23782 PyObject
* obj0
= 0 ;
23783 char *kwnames
[] = {
23784 (char *) "self", NULL
23787 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_mask_get",kwnames
,&obj0
)) goto fail
;
23788 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23789 if (SWIG_arg_fail(1)) SWIG_fail
;
23790 result
= (long) ((arg1
)->m_mask
);
23793 resultobj
= SWIG_From_long(static_cast<long >(result
));
23801 static PyObject
*_wrap_ListItem_m_itemId_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23802 PyObject
*resultobj
= NULL
;
23803 wxListItem
*arg1
= (wxListItem
*) 0 ;
23805 PyObject
* obj0
= 0 ;
23806 PyObject
* obj1
= 0 ;
23807 char *kwnames
[] = {
23808 (char *) "self",(char *) "m_itemId", NULL
23811 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_itemId_set",kwnames
,&obj0
,&obj1
)) goto fail
;
23812 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23813 if (SWIG_arg_fail(1)) SWIG_fail
;
23815 arg2
= static_cast<long >(SWIG_As_long(obj1
));
23816 if (SWIG_arg_fail(2)) SWIG_fail
;
23818 if (arg1
) (arg1
)->m_itemId
= arg2
;
23820 Py_INCREF(Py_None
); resultobj
= Py_None
;
23827 static PyObject
*_wrap_ListItem_m_itemId_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23828 PyObject
*resultobj
= NULL
;
23829 wxListItem
*arg1
= (wxListItem
*) 0 ;
23831 PyObject
* obj0
= 0 ;
23832 char *kwnames
[] = {
23833 (char *) "self", NULL
23836 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_itemId_get",kwnames
,&obj0
)) goto fail
;
23837 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23838 if (SWIG_arg_fail(1)) SWIG_fail
;
23839 result
= (long) ((arg1
)->m_itemId
);
23842 resultobj
= SWIG_From_long(static_cast<long >(result
));
23850 static PyObject
*_wrap_ListItem_m_col_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23851 PyObject
*resultobj
= NULL
;
23852 wxListItem
*arg1
= (wxListItem
*) 0 ;
23854 PyObject
* obj0
= 0 ;
23855 PyObject
* obj1
= 0 ;
23856 char *kwnames
[] = {
23857 (char *) "self",(char *) "m_col", NULL
23860 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_col_set",kwnames
,&obj0
,&obj1
)) goto fail
;
23861 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23862 if (SWIG_arg_fail(1)) SWIG_fail
;
23864 arg2
= static_cast<int >(SWIG_As_int(obj1
));
23865 if (SWIG_arg_fail(2)) SWIG_fail
;
23867 if (arg1
) (arg1
)->m_col
= arg2
;
23869 Py_INCREF(Py_None
); resultobj
= Py_None
;
23876 static PyObject
*_wrap_ListItem_m_col_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23877 PyObject
*resultobj
= NULL
;
23878 wxListItem
*arg1
= (wxListItem
*) 0 ;
23880 PyObject
* obj0
= 0 ;
23881 char *kwnames
[] = {
23882 (char *) "self", NULL
23885 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_col_get",kwnames
,&obj0
)) goto fail
;
23886 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23887 if (SWIG_arg_fail(1)) SWIG_fail
;
23888 result
= (int) ((arg1
)->m_col
);
23891 resultobj
= SWIG_From_int(static_cast<int >(result
));
23899 static PyObject
*_wrap_ListItem_m_state_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23900 PyObject
*resultobj
= NULL
;
23901 wxListItem
*arg1
= (wxListItem
*) 0 ;
23903 PyObject
* obj0
= 0 ;
23904 PyObject
* obj1
= 0 ;
23905 char *kwnames
[] = {
23906 (char *) "self",(char *) "m_state", NULL
23909 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_state_set",kwnames
,&obj0
,&obj1
)) goto fail
;
23910 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23911 if (SWIG_arg_fail(1)) SWIG_fail
;
23913 arg2
= static_cast<long >(SWIG_As_long(obj1
));
23914 if (SWIG_arg_fail(2)) SWIG_fail
;
23916 if (arg1
) (arg1
)->m_state
= arg2
;
23918 Py_INCREF(Py_None
); resultobj
= Py_None
;
23925 static PyObject
*_wrap_ListItem_m_state_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23926 PyObject
*resultobj
= NULL
;
23927 wxListItem
*arg1
= (wxListItem
*) 0 ;
23929 PyObject
* obj0
= 0 ;
23930 char *kwnames
[] = {
23931 (char *) "self", NULL
23934 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_state_get",kwnames
,&obj0
)) goto fail
;
23935 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23936 if (SWIG_arg_fail(1)) SWIG_fail
;
23937 result
= (long) ((arg1
)->m_state
);
23940 resultobj
= SWIG_From_long(static_cast<long >(result
));
23948 static PyObject
*_wrap_ListItem_m_stateMask_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23949 PyObject
*resultobj
= NULL
;
23950 wxListItem
*arg1
= (wxListItem
*) 0 ;
23952 PyObject
* obj0
= 0 ;
23953 PyObject
* obj1
= 0 ;
23954 char *kwnames
[] = {
23955 (char *) "self",(char *) "m_stateMask", NULL
23958 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_stateMask_set",kwnames
,&obj0
,&obj1
)) goto fail
;
23959 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23960 if (SWIG_arg_fail(1)) SWIG_fail
;
23962 arg2
= static_cast<long >(SWIG_As_long(obj1
));
23963 if (SWIG_arg_fail(2)) SWIG_fail
;
23965 if (arg1
) (arg1
)->m_stateMask
= arg2
;
23967 Py_INCREF(Py_None
); resultobj
= Py_None
;
23974 static PyObject
*_wrap_ListItem_m_stateMask_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23975 PyObject
*resultobj
= NULL
;
23976 wxListItem
*arg1
= (wxListItem
*) 0 ;
23978 PyObject
* obj0
= 0 ;
23979 char *kwnames
[] = {
23980 (char *) "self", NULL
23983 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_stateMask_get",kwnames
,&obj0
)) goto fail
;
23984 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23985 if (SWIG_arg_fail(1)) SWIG_fail
;
23986 result
= (long) ((arg1
)->m_stateMask
);
23989 resultobj
= SWIG_From_long(static_cast<long >(result
));
23997 static PyObject
*_wrap_ListItem_m_text_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23998 PyObject
*resultobj
= NULL
;
23999 wxListItem
*arg1
= (wxListItem
*) 0 ;
24000 wxString
*arg2
= (wxString
*) 0 ;
24001 bool temp2
= false ;
24002 PyObject
* obj0
= 0 ;
24003 PyObject
* obj1
= 0 ;
24004 char *kwnames
[] = {
24005 (char *) "self",(char *) "m_text", NULL
24008 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_text_set",kwnames
,&obj0
,&obj1
)) goto fail
;
24009 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
24010 if (SWIG_arg_fail(1)) SWIG_fail
;
24012 arg2
= wxString_in_helper(obj1
);
24013 if (arg2
== NULL
) SWIG_fail
;
24016 if (arg1
) (arg1
)->m_text
= *arg2
;
24018 Py_INCREF(Py_None
); resultobj
= Py_None
;
24033 static PyObject
*_wrap_ListItem_m_text_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24034 PyObject
*resultobj
= NULL
;
24035 wxListItem
*arg1
= (wxListItem
*) 0 ;
24037 PyObject
* obj0
= 0 ;
24038 char *kwnames
[] = {
24039 (char *) "self", NULL
24042 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_text_get",kwnames
,&obj0
)) goto fail
;
24043 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
24044 if (SWIG_arg_fail(1)) SWIG_fail
;
24045 result
= (wxString
*)& ((arg1
)->m_text
);
24049 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
24051 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
24060 static PyObject
*_wrap_ListItem_m_image_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24061 PyObject
*resultobj
= NULL
;
24062 wxListItem
*arg1
= (wxListItem
*) 0 ;
24064 PyObject
* obj0
= 0 ;
24065 PyObject
* obj1
= 0 ;
24066 char *kwnames
[] = {
24067 (char *) "self",(char *) "m_image", NULL
24070 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_image_set",kwnames
,&obj0
,&obj1
)) goto fail
;
24071 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
24072 if (SWIG_arg_fail(1)) SWIG_fail
;
24074 arg2
= static_cast<int >(SWIG_As_int(obj1
));
24075 if (SWIG_arg_fail(2)) SWIG_fail
;
24077 if (arg1
) (arg1
)->m_image
= arg2
;
24079 Py_INCREF(Py_None
); resultobj
= Py_None
;
24086 static PyObject
*_wrap_ListItem_m_image_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24087 PyObject
*resultobj
= NULL
;
24088 wxListItem
*arg1
= (wxListItem
*) 0 ;
24090 PyObject
* obj0
= 0 ;
24091 char *kwnames
[] = {
24092 (char *) "self", NULL
24095 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_image_get",kwnames
,&obj0
)) goto fail
;
24096 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
24097 if (SWIG_arg_fail(1)) SWIG_fail
;
24098 result
= (int) ((arg1
)->m_image
);
24101 resultobj
= SWIG_From_int(static_cast<int >(result
));
24109 static PyObject
*_wrap_ListItem_m_data_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24110 PyObject
*resultobj
= NULL
;
24111 wxListItem
*arg1
= (wxListItem
*) 0 ;
24113 PyObject
* obj0
= 0 ;
24114 PyObject
* obj1
= 0 ;
24115 char *kwnames
[] = {
24116 (char *) "self",(char *) "m_data", NULL
24119 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_data_set",kwnames
,&obj0
,&obj1
)) goto fail
;
24120 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
24121 if (SWIG_arg_fail(1)) SWIG_fail
;
24123 arg2
= static_cast<long >(SWIG_As_long(obj1
));
24124 if (SWIG_arg_fail(2)) SWIG_fail
;
24126 if (arg1
) (arg1
)->m_data
= arg2
;
24128 Py_INCREF(Py_None
); resultobj
= Py_None
;
24135 static PyObject
*_wrap_ListItem_m_data_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24136 PyObject
*resultobj
= NULL
;
24137 wxListItem
*arg1
= (wxListItem
*) 0 ;
24139 PyObject
* obj0
= 0 ;
24140 char *kwnames
[] = {
24141 (char *) "self", NULL
24144 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_data_get",kwnames
,&obj0
)) goto fail
;
24145 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
24146 if (SWIG_arg_fail(1)) SWIG_fail
;
24147 result
= (long) ((arg1
)->m_data
);
24150 resultobj
= SWIG_From_long(static_cast<long >(result
));
24158 static PyObject
*_wrap_ListItem_m_format_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24159 PyObject
*resultobj
= NULL
;
24160 wxListItem
*arg1
= (wxListItem
*) 0 ;
24162 PyObject
* obj0
= 0 ;
24163 PyObject
* obj1
= 0 ;
24164 char *kwnames
[] = {
24165 (char *) "self",(char *) "m_format", NULL
24168 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_format_set",kwnames
,&obj0
,&obj1
)) goto fail
;
24169 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
24170 if (SWIG_arg_fail(1)) SWIG_fail
;
24172 arg2
= static_cast<int >(SWIG_As_int(obj1
));
24173 if (SWIG_arg_fail(2)) SWIG_fail
;
24175 if (arg1
) (arg1
)->m_format
= arg2
;
24177 Py_INCREF(Py_None
); resultobj
= Py_None
;
24184 static PyObject
*_wrap_ListItem_m_format_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24185 PyObject
*resultobj
= NULL
;
24186 wxListItem
*arg1
= (wxListItem
*) 0 ;
24188 PyObject
* obj0
= 0 ;
24189 char *kwnames
[] = {
24190 (char *) "self", NULL
24193 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_format_get",kwnames
,&obj0
)) goto fail
;
24194 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
24195 if (SWIG_arg_fail(1)) SWIG_fail
;
24196 result
= (int) ((arg1
)->m_format
);
24199 resultobj
= SWIG_From_int(static_cast<int >(result
));
24207 static PyObject
*_wrap_ListItem_m_width_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24208 PyObject
*resultobj
= NULL
;
24209 wxListItem
*arg1
= (wxListItem
*) 0 ;
24211 PyObject
* obj0
= 0 ;
24212 PyObject
* obj1
= 0 ;
24213 char *kwnames
[] = {
24214 (char *) "self",(char *) "m_width", NULL
24217 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_width_set",kwnames
,&obj0
,&obj1
)) goto fail
;
24218 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
24219 if (SWIG_arg_fail(1)) SWIG_fail
;
24221 arg2
= static_cast<int >(SWIG_As_int(obj1
));
24222 if (SWIG_arg_fail(2)) SWIG_fail
;
24224 if (arg1
) (arg1
)->m_width
= arg2
;
24226 Py_INCREF(Py_None
); resultobj
= Py_None
;
24233 static PyObject
*_wrap_ListItem_m_width_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24234 PyObject
*resultobj
= NULL
;
24235 wxListItem
*arg1
= (wxListItem
*) 0 ;
24237 PyObject
* obj0
= 0 ;
24238 char *kwnames
[] = {
24239 (char *) "self", NULL
24242 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_width_get",kwnames
,&obj0
)) goto fail
;
24243 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
24244 if (SWIG_arg_fail(1)) SWIG_fail
;
24245 result
= (int) ((arg1
)->m_width
);
24248 resultobj
= SWIG_From_int(static_cast<int >(result
));
24256 static PyObject
* ListItem_swigregister(PyObject
*, PyObject
*args
) {
24258 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
24259 SWIG_TypeClientData(SWIGTYPE_p_wxListItem
, obj
);
24261 return Py_BuildValue((char *)"");
24263 static PyObject
*_wrap_new_ListEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24264 PyObject
*resultobj
= NULL
;
24265 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
24266 int arg2
= (int) 0 ;
24267 wxListEvent
*result
;
24268 PyObject
* obj0
= 0 ;
24269 PyObject
* obj1
= 0 ;
24270 char *kwnames
[] = {
24271 (char *) "commandType",(char *) "id", NULL
24274 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_ListEvent",kwnames
,&obj0
,&obj1
)) goto fail
;
24277 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
24278 if (SWIG_arg_fail(1)) SWIG_fail
;
24283 arg2
= static_cast<int >(SWIG_As_int(obj1
));
24284 if (SWIG_arg_fail(2)) SWIG_fail
;
24288 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24289 result
= (wxListEvent
*)new wxListEvent(arg1
,arg2
);
24291 wxPyEndAllowThreads(__tstate
);
24292 if (PyErr_Occurred()) SWIG_fail
;
24294 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListEvent
, 1);
24301 static PyObject
*_wrap_ListEvent_m_code_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24302 PyObject
*resultobj
= NULL
;
24303 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24305 PyObject
* obj0
= 0 ;
24306 PyObject
* obj1
= 0 ;
24307 char *kwnames
[] = {
24308 (char *) "self",(char *) "m_code", NULL
24311 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListEvent_m_code_set",kwnames
,&obj0
,&obj1
)) goto fail
;
24312 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24313 if (SWIG_arg_fail(1)) SWIG_fail
;
24315 arg2
= static_cast<int >(SWIG_As_int(obj1
));
24316 if (SWIG_arg_fail(2)) SWIG_fail
;
24318 if (arg1
) (arg1
)->m_code
= arg2
;
24320 Py_INCREF(Py_None
); resultobj
= Py_None
;
24327 static PyObject
*_wrap_ListEvent_m_code_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24328 PyObject
*resultobj
= NULL
;
24329 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24331 PyObject
* obj0
= 0 ;
24332 char *kwnames
[] = {
24333 (char *) "self", NULL
24336 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_m_code_get",kwnames
,&obj0
)) goto fail
;
24337 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24338 if (SWIG_arg_fail(1)) SWIG_fail
;
24339 result
= (int) ((arg1
)->m_code
);
24342 resultobj
= SWIG_From_int(static_cast<int >(result
));
24350 static PyObject
*_wrap_ListEvent_m_oldItemIndex_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24351 PyObject
*resultobj
= NULL
;
24352 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24354 PyObject
* obj0
= 0 ;
24355 PyObject
* obj1
= 0 ;
24356 char *kwnames
[] = {
24357 (char *) "self",(char *) "m_oldItemIndex", NULL
24360 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListEvent_m_oldItemIndex_set",kwnames
,&obj0
,&obj1
)) goto fail
;
24361 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24362 if (SWIG_arg_fail(1)) SWIG_fail
;
24364 arg2
= static_cast<long >(SWIG_As_long(obj1
));
24365 if (SWIG_arg_fail(2)) SWIG_fail
;
24367 if (arg1
) (arg1
)->m_oldItemIndex
= arg2
;
24369 Py_INCREF(Py_None
); resultobj
= Py_None
;
24376 static PyObject
*_wrap_ListEvent_m_oldItemIndex_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24377 PyObject
*resultobj
= NULL
;
24378 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24380 PyObject
* obj0
= 0 ;
24381 char *kwnames
[] = {
24382 (char *) "self", NULL
24385 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_m_oldItemIndex_get",kwnames
,&obj0
)) goto fail
;
24386 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24387 if (SWIG_arg_fail(1)) SWIG_fail
;
24388 result
= (long) ((arg1
)->m_oldItemIndex
);
24391 resultobj
= SWIG_From_long(static_cast<long >(result
));
24399 static PyObject
*_wrap_ListEvent_m_itemIndex_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24400 PyObject
*resultobj
= NULL
;
24401 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24403 PyObject
* obj0
= 0 ;
24404 PyObject
* obj1
= 0 ;
24405 char *kwnames
[] = {
24406 (char *) "self",(char *) "m_itemIndex", NULL
24409 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListEvent_m_itemIndex_set",kwnames
,&obj0
,&obj1
)) goto fail
;
24410 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24411 if (SWIG_arg_fail(1)) SWIG_fail
;
24413 arg2
= static_cast<long >(SWIG_As_long(obj1
));
24414 if (SWIG_arg_fail(2)) SWIG_fail
;
24416 if (arg1
) (arg1
)->m_itemIndex
= arg2
;
24418 Py_INCREF(Py_None
); resultobj
= Py_None
;
24425 static PyObject
*_wrap_ListEvent_m_itemIndex_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24426 PyObject
*resultobj
= NULL
;
24427 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24429 PyObject
* obj0
= 0 ;
24430 char *kwnames
[] = {
24431 (char *) "self", NULL
24434 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_m_itemIndex_get",kwnames
,&obj0
)) goto fail
;
24435 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24436 if (SWIG_arg_fail(1)) SWIG_fail
;
24437 result
= (long) ((arg1
)->m_itemIndex
);
24440 resultobj
= SWIG_From_long(static_cast<long >(result
));
24448 static PyObject
*_wrap_ListEvent_m_col_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24449 PyObject
*resultobj
= NULL
;
24450 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24452 PyObject
* obj0
= 0 ;
24453 PyObject
* obj1
= 0 ;
24454 char *kwnames
[] = {
24455 (char *) "self",(char *) "m_col", NULL
24458 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListEvent_m_col_set",kwnames
,&obj0
,&obj1
)) goto fail
;
24459 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24460 if (SWIG_arg_fail(1)) SWIG_fail
;
24462 arg2
= static_cast<int >(SWIG_As_int(obj1
));
24463 if (SWIG_arg_fail(2)) SWIG_fail
;
24465 if (arg1
) (arg1
)->m_col
= arg2
;
24467 Py_INCREF(Py_None
); resultobj
= Py_None
;
24474 static PyObject
*_wrap_ListEvent_m_col_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24475 PyObject
*resultobj
= NULL
;
24476 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24478 PyObject
* obj0
= 0 ;
24479 char *kwnames
[] = {
24480 (char *) "self", NULL
24483 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_m_col_get",kwnames
,&obj0
)) goto fail
;
24484 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24485 if (SWIG_arg_fail(1)) SWIG_fail
;
24486 result
= (int) ((arg1
)->m_col
);
24489 resultobj
= SWIG_From_int(static_cast<int >(result
));
24497 static PyObject
*_wrap_ListEvent_m_pointDrag_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24498 PyObject
*resultobj
= NULL
;
24499 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24500 wxPoint
*arg2
= (wxPoint
*) 0 ;
24501 PyObject
* obj0
= 0 ;
24502 PyObject
* obj1
= 0 ;
24503 char *kwnames
[] = {
24504 (char *) "self",(char *) "m_pointDrag", NULL
24507 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListEvent_m_pointDrag_set",kwnames
,&obj0
,&obj1
)) goto fail
;
24508 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24509 if (SWIG_arg_fail(1)) SWIG_fail
;
24510 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPoint
, SWIG_POINTER_EXCEPTION
| 0);
24511 if (SWIG_arg_fail(2)) SWIG_fail
;
24512 if (arg1
) (arg1
)->m_pointDrag
= *arg2
;
24514 Py_INCREF(Py_None
); resultobj
= Py_None
;
24521 static PyObject
*_wrap_ListEvent_m_pointDrag_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24522 PyObject
*resultobj
= NULL
;
24523 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24525 PyObject
* obj0
= 0 ;
24526 char *kwnames
[] = {
24527 (char *) "self", NULL
24530 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_m_pointDrag_get",kwnames
,&obj0
)) goto fail
;
24531 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24532 if (SWIG_arg_fail(1)) SWIG_fail
;
24533 result
= (wxPoint
*)& ((arg1
)->m_pointDrag
);
24535 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPoint
, 0);
24542 static PyObject
*_wrap_ListEvent_m_item_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24543 PyObject
*resultobj
= NULL
;
24544 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24545 wxListItem
*result
;
24546 PyObject
* obj0
= 0 ;
24547 char *kwnames
[] = {
24548 (char *) "self", NULL
24551 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_m_item_get",kwnames
,&obj0
)) goto fail
;
24552 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24553 if (SWIG_arg_fail(1)) SWIG_fail
;
24554 result
= (wxListItem
*)& ((arg1
)->m_item
);
24557 resultobj
= wxPyMake_wxObject(result
, (bool)0);
24565 static PyObject
*_wrap_ListEvent_GetKeyCode(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24566 PyObject
*resultobj
= NULL
;
24567 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24569 PyObject
* obj0
= 0 ;
24570 char *kwnames
[] = {
24571 (char *) "self", NULL
24574 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetKeyCode",kwnames
,&obj0
)) goto fail
;
24575 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24576 if (SWIG_arg_fail(1)) SWIG_fail
;
24578 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24579 result
= (int)(arg1
)->GetKeyCode();
24581 wxPyEndAllowThreads(__tstate
);
24582 if (PyErr_Occurred()) SWIG_fail
;
24585 resultobj
= SWIG_From_int(static_cast<int >(result
));
24593 static PyObject
*_wrap_ListEvent_GetIndex(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24594 PyObject
*resultobj
= NULL
;
24595 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24597 PyObject
* obj0
= 0 ;
24598 char *kwnames
[] = {
24599 (char *) "self", NULL
24602 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetIndex",kwnames
,&obj0
)) goto fail
;
24603 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24604 if (SWIG_arg_fail(1)) SWIG_fail
;
24606 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24607 result
= (long)(arg1
)->GetIndex();
24609 wxPyEndAllowThreads(__tstate
);
24610 if (PyErr_Occurred()) SWIG_fail
;
24613 resultobj
= SWIG_From_long(static_cast<long >(result
));
24621 static PyObject
*_wrap_ListEvent_GetColumn(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24622 PyObject
*resultobj
= NULL
;
24623 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24625 PyObject
* obj0
= 0 ;
24626 char *kwnames
[] = {
24627 (char *) "self", NULL
24630 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetColumn",kwnames
,&obj0
)) goto fail
;
24631 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24632 if (SWIG_arg_fail(1)) SWIG_fail
;
24634 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24635 result
= (int)(arg1
)->GetColumn();
24637 wxPyEndAllowThreads(__tstate
);
24638 if (PyErr_Occurred()) SWIG_fail
;
24641 resultobj
= SWIG_From_int(static_cast<int >(result
));
24649 static PyObject
*_wrap_ListEvent_GetPoint(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24650 PyObject
*resultobj
= NULL
;
24651 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24653 PyObject
* obj0
= 0 ;
24654 char *kwnames
[] = {
24655 (char *) "self", NULL
24658 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetPoint",kwnames
,&obj0
)) goto fail
;
24659 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24660 if (SWIG_arg_fail(1)) SWIG_fail
;
24662 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24663 result
= (arg1
)->GetPoint();
24665 wxPyEndAllowThreads(__tstate
);
24666 if (PyErr_Occurred()) SWIG_fail
;
24669 wxPoint
* resultptr
;
24670 resultptr
= new wxPoint(static_cast<wxPoint
& >(result
));
24671 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1);
24679 static PyObject
*_wrap_ListEvent_GetLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24680 PyObject
*resultobj
= NULL
;
24681 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24683 PyObject
* obj0
= 0 ;
24684 char *kwnames
[] = {
24685 (char *) "self", NULL
24688 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetLabel",kwnames
,&obj0
)) goto fail
;
24689 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24690 if (SWIG_arg_fail(1)) SWIG_fail
;
24692 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24694 wxString
const &_result_ref
= (arg1
)->GetLabel();
24695 result
= (wxString
*) &_result_ref
;
24698 wxPyEndAllowThreads(__tstate
);
24699 if (PyErr_Occurred()) SWIG_fail
;
24703 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
24705 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
24714 static PyObject
*_wrap_ListEvent_GetText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24715 PyObject
*resultobj
= NULL
;
24716 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24718 PyObject
* obj0
= 0 ;
24719 char *kwnames
[] = {
24720 (char *) "self", NULL
24723 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetText",kwnames
,&obj0
)) goto fail
;
24724 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24725 if (SWIG_arg_fail(1)) SWIG_fail
;
24727 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24729 wxString
const &_result_ref
= (arg1
)->GetText();
24730 result
= (wxString
*) &_result_ref
;
24733 wxPyEndAllowThreads(__tstate
);
24734 if (PyErr_Occurred()) SWIG_fail
;
24738 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
24740 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
24749 static PyObject
*_wrap_ListEvent_GetImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24750 PyObject
*resultobj
= NULL
;
24751 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24753 PyObject
* obj0
= 0 ;
24754 char *kwnames
[] = {
24755 (char *) "self", NULL
24758 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetImage",kwnames
,&obj0
)) goto fail
;
24759 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24760 if (SWIG_arg_fail(1)) SWIG_fail
;
24762 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24763 result
= (int)(arg1
)->GetImage();
24765 wxPyEndAllowThreads(__tstate
);
24766 if (PyErr_Occurred()) SWIG_fail
;
24769 resultobj
= SWIG_From_int(static_cast<int >(result
));
24777 static PyObject
*_wrap_ListEvent_GetData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24778 PyObject
*resultobj
= NULL
;
24779 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24781 PyObject
* obj0
= 0 ;
24782 char *kwnames
[] = {
24783 (char *) "self", NULL
24786 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetData",kwnames
,&obj0
)) goto fail
;
24787 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24788 if (SWIG_arg_fail(1)) SWIG_fail
;
24790 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24791 result
= (long)(arg1
)->GetData();
24793 wxPyEndAllowThreads(__tstate
);
24794 if (PyErr_Occurred()) SWIG_fail
;
24797 resultobj
= SWIG_From_long(static_cast<long >(result
));
24805 static PyObject
*_wrap_ListEvent_GetMask(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24806 PyObject
*resultobj
= NULL
;
24807 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24809 PyObject
* obj0
= 0 ;
24810 char *kwnames
[] = {
24811 (char *) "self", NULL
24814 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetMask",kwnames
,&obj0
)) goto fail
;
24815 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24816 if (SWIG_arg_fail(1)) SWIG_fail
;
24818 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24819 result
= (long)(arg1
)->GetMask();
24821 wxPyEndAllowThreads(__tstate
);
24822 if (PyErr_Occurred()) SWIG_fail
;
24825 resultobj
= SWIG_From_long(static_cast<long >(result
));
24833 static PyObject
*_wrap_ListEvent_GetItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24834 PyObject
*resultobj
= NULL
;
24835 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24836 wxListItem
*result
;
24837 PyObject
* obj0
= 0 ;
24838 char *kwnames
[] = {
24839 (char *) "self", NULL
24842 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetItem",kwnames
,&obj0
)) goto fail
;
24843 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24844 if (SWIG_arg_fail(1)) SWIG_fail
;
24846 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24848 wxListItem
const &_result_ref
= (arg1
)->GetItem();
24849 result
= (wxListItem
*) &_result_ref
;
24852 wxPyEndAllowThreads(__tstate
);
24853 if (PyErr_Occurred()) SWIG_fail
;
24855 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListItem
, 0);
24862 static PyObject
*_wrap_ListEvent_GetCacheFrom(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24863 PyObject
*resultobj
= NULL
;
24864 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24866 PyObject
* obj0
= 0 ;
24867 char *kwnames
[] = {
24868 (char *) "self", NULL
24871 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetCacheFrom",kwnames
,&obj0
)) goto fail
;
24872 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24873 if (SWIG_arg_fail(1)) SWIG_fail
;
24875 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24876 result
= (long)(arg1
)->GetCacheFrom();
24878 wxPyEndAllowThreads(__tstate
);
24879 if (PyErr_Occurred()) SWIG_fail
;
24882 resultobj
= SWIG_From_long(static_cast<long >(result
));
24890 static PyObject
*_wrap_ListEvent_GetCacheTo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24891 PyObject
*resultobj
= NULL
;
24892 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24894 PyObject
* obj0
= 0 ;
24895 char *kwnames
[] = {
24896 (char *) "self", NULL
24899 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetCacheTo",kwnames
,&obj0
)) goto fail
;
24900 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24901 if (SWIG_arg_fail(1)) SWIG_fail
;
24903 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24904 result
= (long)(arg1
)->GetCacheTo();
24906 wxPyEndAllowThreads(__tstate
);
24907 if (PyErr_Occurred()) SWIG_fail
;
24910 resultobj
= SWIG_From_long(static_cast<long >(result
));
24918 static PyObject
*_wrap_ListEvent_IsEditCancelled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24919 PyObject
*resultobj
= NULL
;
24920 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24922 PyObject
* obj0
= 0 ;
24923 char *kwnames
[] = {
24924 (char *) "self", NULL
24927 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_IsEditCancelled",kwnames
,&obj0
)) goto fail
;
24928 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24929 if (SWIG_arg_fail(1)) SWIG_fail
;
24931 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24932 result
= (bool)((wxListEvent
const *)arg1
)->IsEditCancelled();
24934 wxPyEndAllowThreads(__tstate
);
24935 if (PyErr_Occurred()) SWIG_fail
;
24938 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24946 static PyObject
*_wrap_ListEvent_SetEditCanceled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24947 PyObject
*resultobj
= NULL
;
24948 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
24950 PyObject
* obj0
= 0 ;
24951 PyObject
* obj1
= 0 ;
24952 char *kwnames
[] = {
24953 (char *) "self",(char *) "editCancelled", NULL
24956 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListEvent_SetEditCanceled",kwnames
,&obj0
,&obj1
)) goto fail
;
24957 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
24958 if (SWIG_arg_fail(1)) SWIG_fail
;
24960 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
24961 if (SWIG_arg_fail(2)) SWIG_fail
;
24964 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24965 (arg1
)->SetEditCanceled(arg2
);
24967 wxPyEndAllowThreads(__tstate
);
24968 if (PyErr_Occurred()) SWIG_fail
;
24970 Py_INCREF(Py_None
); resultobj
= Py_None
;
24977 static PyObject
* ListEvent_swigregister(PyObject
*, PyObject
*args
) {
24979 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
24980 SWIG_TypeClientData(SWIGTYPE_p_wxListEvent
, obj
);
24982 return Py_BuildValue((char *)"");
24984 static PyObject
*_wrap_new_ListCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24985 PyObject
*resultobj
= NULL
;
24986 wxWindow
*arg1
= (wxWindow
*) 0 ;
24987 int arg2
= (int) -1 ;
24988 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
24989 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
24990 wxSize
const &arg4_defvalue
= wxDefaultSize
;
24991 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
24992 long arg5
= (long) wxLC_ICON
;
24993 wxValidator
const &arg6_defvalue
= wxDefaultValidator
;
24994 wxValidator
*arg6
= (wxValidator
*) &arg6_defvalue
;
24995 wxString
const &arg7_defvalue
= wxPyListCtrlNameStr
;
24996 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
24997 wxPyListCtrl
*result
;
25000 bool temp7
= false ;
25001 PyObject
* obj0
= 0 ;
25002 PyObject
* obj1
= 0 ;
25003 PyObject
* obj2
= 0 ;
25004 PyObject
* obj3
= 0 ;
25005 PyObject
* obj4
= 0 ;
25006 PyObject
* obj5
= 0 ;
25007 PyObject
* obj6
= 0 ;
25008 char *kwnames
[] = {
25009 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
25012 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_ListCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
25013 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
25014 if (SWIG_arg_fail(1)) SWIG_fail
;
25017 arg2
= static_cast<int >(SWIG_As_int(obj1
));
25018 if (SWIG_arg_fail(2)) SWIG_fail
;
25024 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
25030 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
25035 arg5
= static_cast<long >(SWIG_As_long(obj4
));
25036 if (SWIG_arg_fail(5)) SWIG_fail
;
25041 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
25042 if (SWIG_arg_fail(6)) SWIG_fail
;
25043 if (arg6
== NULL
) {
25044 SWIG_null_ref("wxValidator");
25046 if (SWIG_arg_fail(6)) SWIG_fail
;
25051 arg7
= wxString_in_helper(obj6
);
25052 if (arg7
== NULL
) SWIG_fail
;
25057 if (!wxPyCheckForApp()) SWIG_fail
;
25058 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25059 result
= (wxPyListCtrl
*)new wxPyListCtrl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxValidator
const &)*arg6
,(wxString
const &)*arg7
);
25061 wxPyEndAllowThreads(__tstate
);
25062 if (PyErr_Occurred()) SWIG_fail
;
25064 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyListCtrl
, 1);
25079 static PyObject
*_wrap_new_PreListCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25080 PyObject
*resultobj
= NULL
;
25081 wxPyListCtrl
*result
;
25082 char *kwnames
[] = {
25086 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreListCtrl",kwnames
)) goto fail
;
25088 if (!wxPyCheckForApp()) SWIG_fail
;
25089 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25090 result
= (wxPyListCtrl
*)new wxPyListCtrl();
25092 wxPyEndAllowThreads(__tstate
);
25093 if (PyErr_Occurred()) SWIG_fail
;
25095 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyListCtrl
, 1);
25102 static PyObject
*_wrap_ListCtrl_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25103 PyObject
*resultobj
= NULL
;
25104 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25105 wxWindow
*arg2
= (wxWindow
*) 0 ;
25106 int arg3
= (int) -1 ;
25107 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
25108 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
25109 wxSize
const &arg5_defvalue
= wxDefaultSize
;
25110 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
25111 long arg6
= (long) wxLC_ICON
;
25112 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
25113 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
25114 wxString
const &arg8_defvalue
= wxPyListCtrlNameStr
;
25115 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
25119 bool temp8
= false ;
25120 PyObject
* obj0
= 0 ;
25121 PyObject
* obj1
= 0 ;
25122 PyObject
* obj2
= 0 ;
25123 PyObject
* obj3
= 0 ;
25124 PyObject
* obj4
= 0 ;
25125 PyObject
* obj5
= 0 ;
25126 PyObject
* obj6
= 0 ;
25127 PyObject
* obj7
= 0 ;
25128 char *kwnames
[] = {
25129 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
25132 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:ListCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
25133 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25134 if (SWIG_arg_fail(1)) SWIG_fail
;
25135 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
25136 if (SWIG_arg_fail(2)) SWIG_fail
;
25139 arg3
= static_cast<int >(SWIG_As_int(obj2
));
25140 if (SWIG_arg_fail(3)) SWIG_fail
;
25146 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
25152 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
25157 arg6
= static_cast<long >(SWIG_As_long(obj5
));
25158 if (SWIG_arg_fail(6)) SWIG_fail
;
25163 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
25164 if (SWIG_arg_fail(7)) SWIG_fail
;
25165 if (arg7
== NULL
) {
25166 SWIG_null_ref("wxValidator");
25168 if (SWIG_arg_fail(7)) SWIG_fail
;
25173 arg8
= wxString_in_helper(obj7
);
25174 if (arg8
== NULL
) SWIG_fail
;
25179 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25180 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
25182 wxPyEndAllowThreads(__tstate
);
25183 if (PyErr_Occurred()) SWIG_fail
;
25186 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25202 static PyObject
*_wrap_ListCtrl__setCallbackInfo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25203 PyObject
*resultobj
= NULL
;
25204 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25205 PyObject
*arg2
= (PyObject
*) 0 ;
25206 PyObject
*arg3
= (PyObject
*) 0 ;
25207 PyObject
* obj0
= 0 ;
25208 PyObject
* obj1
= 0 ;
25209 PyObject
* obj2
= 0 ;
25210 char *kwnames
[] = {
25211 (char *) "self",(char *) "self",(char *) "_class", NULL
25214 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
25215 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25216 if (SWIG_arg_fail(1)) SWIG_fail
;
25220 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25221 (arg1
)->_setCallbackInfo(arg2
,arg3
);
25223 wxPyEndAllowThreads(__tstate
);
25224 if (PyErr_Occurred()) SWIG_fail
;
25226 Py_INCREF(Py_None
); resultobj
= Py_None
;
25233 static PyObject
*_wrap_ListCtrl_SetForegroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25234 PyObject
*resultobj
= NULL
;
25235 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25236 wxColour
*arg2
= 0 ;
25239 PyObject
* obj0
= 0 ;
25240 PyObject
* obj1
= 0 ;
25241 char *kwnames
[] = {
25242 (char *) "self",(char *) "col", NULL
25245 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_SetForegroundColour",kwnames
,&obj0
,&obj1
)) goto fail
;
25246 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25247 if (SWIG_arg_fail(1)) SWIG_fail
;
25250 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
25253 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25254 result
= (bool)(arg1
)->SetForegroundColour((wxColour
const &)*arg2
);
25256 wxPyEndAllowThreads(__tstate
);
25257 if (PyErr_Occurred()) SWIG_fail
;
25260 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25268 static PyObject
*_wrap_ListCtrl_SetBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25269 PyObject
*resultobj
= NULL
;
25270 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25271 wxColour
*arg2
= 0 ;
25274 PyObject
* obj0
= 0 ;
25275 PyObject
* obj1
= 0 ;
25276 char *kwnames
[] = {
25277 (char *) "self",(char *) "col", NULL
25280 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_SetBackgroundColour",kwnames
,&obj0
,&obj1
)) goto fail
;
25281 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25282 if (SWIG_arg_fail(1)) SWIG_fail
;
25285 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
25288 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25289 result
= (bool)(arg1
)->SetBackgroundColour((wxColour
const &)*arg2
);
25291 wxPyEndAllowThreads(__tstate
);
25292 if (PyErr_Occurred()) SWIG_fail
;
25295 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25303 static PyObject
*_wrap_ListCtrl_GetColumn(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25304 PyObject
*resultobj
= NULL
;
25305 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25307 wxListItem
*result
;
25308 PyObject
* obj0
= 0 ;
25309 PyObject
* obj1
= 0 ;
25310 char *kwnames
[] = {
25311 (char *) "self",(char *) "col", NULL
25314 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetColumn",kwnames
,&obj0
,&obj1
)) goto fail
;
25315 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25316 if (SWIG_arg_fail(1)) SWIG_fail
;
25318 arg2
= static_cast<int >(SWIG_As_int(obj1
));
25319 if (SWIG_arg_fail(2)) SWIG_fail
;
25322 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25323 result
= (wxListItem
*)wxPyListCtrl_GetColumn(arg1
,arg2
);
25325 wxPyEndAllowThreads(__tstate
);
25326 if (PyErr_Occurred()) SWIG_fail
;
25329 resultobj
= wxPyMake_wxObject(result
, (bool)0);
25337 static PyObject
*_wrap_ListCtrl_SetColumn(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25338 PyObject
*resultobj
= NULL
;
25339 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25341 wxListItem
*arg3
= 0 ;
25343 PyObject
* obj0
= 0 ;
25344 PyObject
* obj1
= 0 ;
25345 PyObject
* obj2
= 0 ;
25346 char *kwnames
[] = {
25347 (char *) "self",(char *) "col",(char *) "item", NULL
25350 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetColumn",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
25351 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25352 if (SWIG_arg_fail(1)) SWIG_fail
;
25354 arg2
= static_cast<int >(SWIG_As_int(obj1
));
25355 if (SWIG_arg_fail(2)) SWIG_fail
;
25358 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
25359 if (SWIG_arg_fail(3)) SWIG_fail
;
25360 if (arg3
== NULL
) {
25361 SWIG_null_ref("wxListItem");
25363 if (SWIG_arg_fail(3)) SWIG_fail
;
25366 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25367 result
= (bool)(arg1
)->SetColumn(arg2
,*arg3
);
25369 wxPyEndAllowThreads(__tstate
);
25370 if (PyErr_Occurred()) SWIG_fail
;
25373 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25381 static PyObject
*_wrap_ListCtrl_GetColumnWidth(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25382 PyObject
*resultobj
= NULL
;
25383 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25386 PyObject
* obj0
= 0 ;
25387 PyObject
* obj1
= 0 ;
25388 char *kwnames
[] = {
25389 (char *) "self",(char *) "col", NULL
25392 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetColumnWidth",kwnames
,&obj0
,&obj1
)) goto fail
;
25393 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25394 if (SWIG_arg_fail(1)) SWIG_fail
;
25396 arg2
= static_cast<int >(SWIG_As_int(obj1
));
25397 if (SWIG_arg_fail(2)) SWIG_fail
;
25400 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25401 result
= (int)((wxPyListCtrl
const *)arg1
)->GetColumnWidth(arg2
);
25403 wxPyEndAllowThreads(__tstate
);
25404 if (PyErr_Occurred()) SWIG_fail
;
25407 resultobj
= SWIG_From_int(static_cast<int >(result
));
25415 static PyObject
*_wrap_ListCtrl_SetColumnWidth(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25416 PyObject
*resultobj
= NULL
;
25417 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25421 PyObject
* obj0
= 0 ;
25422 PyObject
* obj1
= 0 ;
25423 PyObject
* obj2
= 0 ;
25424 char *kwnames
[] = {
25425 (char *) "self",(char *) "col",(char *) "width", NULL
25428 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetColumnWidth",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
25429 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25430 if (SWIG_arg_fail(1)) SWIG_fail
;
25432 arg2
= static_cast<int >(SWIG_As_int(obj1
));
25433 if (SWIG_arg_fail(2)) SWIG_fail
;
25436 arg3
= static_cast<int >(SWIG_As_int(obj2
));
25437 if (SWIG_arg_fail(3)) SWIG_fail
;
25440 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25441 result
= (bool)(arg1
)->SetColumnWidth(arg2
,arg3
);
25443 wxPyEndAllowThreads(__tstate
);
25444 if (PyErr_Occurred()) SWIG_fail
;
25447 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25455 static PyObject
*_wrap_ListCtrl_GetCountPerPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25456 PyObject
*resultobj
= NULL
;
25457 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25459 PyObject
* obj0
= 0 ;
25460 char *kwnames
[] = {
25461 (char *) "self", NULL
25464 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetCountPerPage",kwnames
,&obj0
)) goto fail
;
25465 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25466 if (SWIG_arg_fail(1)) SWIG_fail
;
25468 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25469 result
= (int)((wxPyListCtrl
const *)arg1
)->GetCountPerPage();
25471 wxPyEndAllowThreads(__tstate
);
25472 if (PyErr_Occurred()) SWIG_fail
;
25475 resultobj
= SWIG_From_int(static_cast<int >(result
));
25483 static PyObject
*_wrap_ListCtrl_GetViewRect(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25484 PyObject
*resultobj
= NULL
;
25485 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25487 PyObject
* obj0
= 0 ;
25488 char *kwnames
[] = {
25489 (char *) "self", NULL
25492 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetViewRect",kwnames
,&obj0
)) goto fail
;
25493 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25494 if (SWIG_arg_fail(1)) SWIG_fail
;
25496 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25497 result
= ((wxPyListCtrl
const *)arg1
)->GetViewRect();
25499 wxPyEndAllowThreads(__tstate
);
25500 if (PyErr_Occurred()) SWIG_fail
;
25503 wxRect
* resultptr
;
25504 resultptr
= new wxRect(static_cast<wxRect
& >(result
));
25505 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxRect
, 1);
25513 static PyObject
*_wrap_ListCtrl_GetItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25514 PyObject
*resultobj
= NULL
;
25515 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25517 int arg3
= (int) 0 ;
25518 wxListItem
*result
;
25519 PyObject
* obj0
= 0 ;
25520 PyObject
* obj1
= 0 ;
25521 PyObject
* obj2
= 0 ;
25522 char *kwnames
[] = {
25523 (char *) "self",(char *) "itemId",(char *) "col", NULL
25526 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ListCtrl_GetItem",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
25527 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25528 if (SWIG_arg_fail(1)) SWIG_fail
;
25530 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25531 if (SWIG_arg_fail(2)) SWIG_fail
;
25535 arg3
= static_cast<int >(SWIG_As_int(obj2
));
25536 if (SWIG_arg_fail(3)) SWIG_fail
;
25540 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25541 result
= (wxListItem
*)wxPyListCtrl_GetItem(arg1
,arg2
,arg3
);
25543 wxPyEndAllowThreads(__tstate
);
25544 if (PyErr_Occurred()) SWIG_fail
;
25547 resultobj
= wxPyMake_wxObject(result
, (bool)0);
25555 static PyObject
*_wrap_ListCtrl_SetItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25556 PyObject
*resultobj
= NULL
;
25557 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25558 wxListItem
*arg2
= 0 ;
25560 PyObject
* obj0
= 0 ;
25561 PyObject
* obj1
= 0 ;
25562 char *kwnames
[] = {
25563 (char *) "self",(char *) "info", NULL
25566 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_SetItem",kwnames
,&obj0
,&obj1
)) goto fail
;
25567 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25568 if (SWIG_arg_fail(1)) SWIG_fail
;
25570 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
25571 if (SWIG_arg_fail(2)) SWIG_fail
;
25572 if (arg2
== NULL
) {
25573 SWIG_null_ref("wxListItem");
25575 if (SWIG_arg_fail(2)) SWIG_fail
;
25578 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25579 result
= (bool)(arg1
)->SetItem(*arg2
);
25581 wxPyEndAllowThreads(__tstate
);
25582 if (PyErr_Occurred()) SWIG_fail
;
25585 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25593 static PyObject
*_wrap_ListCtrl_SetStringItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25594 PyObject
*resultobj
= NULL
;
25595 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25598 wxString
*arg4
= 0 ;
25599 int arg5
= (int) -1 ;
25601 bool temp4
= false ;
25602 PyObject
* obj0
= 0 ;
25603 PyObject
* obj1
= 0 ;
25604 PyObject
* obj2
= 0 ;
25605 PyObject
* obj3
= 0 ;
25606 PyObject
* obj4
= 0 ;
25607 char *kwnames
[] = {
25608 (char *) "self",(char *) "index",(char *) "col",(char *) "label",(char *) "imageId", NULL
25611 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:ListCtrl_SetStringItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
25612 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25613 if (SWIG_arg_fail(1)) SWIG_fail
;
25615 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25616 if (SWIG_arg_fail(2)) SWIG_fail
;
25619 arg3
= static_cast<int >(SWIG_As_int(obj2
));
25620 if (SWIG_arg_fail(3)) SWIG_fail
;
25623 arg4
= wxString_in_helper(obj3
);
25624 if (arg4
== NULL
) SWIG_fail
;
25629 arg5
= static_cast<int >(SWIG_As_int(obj4
));
25630 if (SWIG_arg_fail(5)) SWIG_fail
;
25634 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25635 result
= (long)(arg1
)->SetItem(arg2
,arg3
,(wxString
const &)*arg4
,arg5
);
25637 wxPyEndAllowThreads(__tstate
);
25638 if (PyErr_Occurred()) SWIG_fail
;
25641 resultobj
= SWIG_From_long(static_cast<long >(result
));
25657 static PyObject
*_wrap_ListCtrl_GetItemState(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25658 PyObject
*resultobj
= NULL
;
25659 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25663 PyObject
* obj0
= 0 ;
25664 PyObject
* obj1
= 0 ;
25665 PyObject
* obj2
= 0 ;
25666 char *kwnames
[] = {
25667 (char *) "self",(char *) "item",(char *) "stateMask", NULL
25670 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_GetItemState",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
25671 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25672 if (SWIG_arg_fail(1)) SWIG_fail
;
25674 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25675 if (SWIG_arg_fail(2)) SWIG_fail
;
25678 arg3
= static_cast<long >(SWIG_As_long(obj2
));
25679 if (SWIG_arg_fail(3)) SWIG_fail
;
25682 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25683 result
= (int)((wxPyListCtrl
const *)arg1
)->GetItemState(arg2
,arg3
);
25685 wxPyEndAllowThreads(__tstate
);
25686 if (PyErr_Occurred()) SWIG_fail
;
25689 resultobj
= SWIG_From_int(static_cast<int >(result
));
25697 static PyObject
*_wrap_ListCtrl_SetItemState(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25698 PyObject
*resultobj
= NULL
;
25699 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25704 PyObject
* obj0
= 0 ;
25705 PyObject
* obj1
= 0 ;
25706 PyObject
* obj2
= 0 ;
25707 PyObject
* obj3
= 0 ;
25708 char *kwnames
[] = {
25709 (char *) "self",(char *) "item",(char *) "state",(char *) "stateMask", NULL
25712 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:ListCtrl_SetItemState",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
25713 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25714 if (SWIG_arg_fail(1)) SWIG_fail
;
25716 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25717 if (SWIG_arg_fail(2)) SWIG_fail
;
25720 arg3
= static_cast<long >(SWIG_As_long(obj2
));
25721 if (SWIG_arg_fail(3)) SWIG_fail
;
25724 arg4
= static_cast<long >(SWIG_As_long(obj3
));
25725 if (SWIG_arg_fail(4)) SWIG_fail
;
25728 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25729 result
= (bool)(arg1
)->SetItemState(arg2
,arg3
,arg4
);
25731 wxPyEndAllowThreads(__tstate
);
25732 if (PyErr_Occurred()) SWIG_fail
;
25735 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25743 static PyObject
*_wrap_ListCtrl_SetItemImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25744 PyObject
*resultobj
= NULL
;
25745 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25748 int arg4
= (int) -1 ;
25750 PyObject
* obj0
= 0 ;
25751 PyObject
* obj1
= 0 ;
25752 PyObject
* obj2
= 0 ;
25753 PyObject
* obj3
= 0 ;
25754 char *kwnames
[] = {
25755 (char *) "self",(char *) "item",(char *) "image",(char *) "selImage", NULL
25758 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:ListCtrl_SetItemImage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
25759 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25760 if (SWIG_arg_fail(1)) SWIG_fail
;
25762 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25763 if (SWIG_arg_fail(2)) SWIG_fail
;
25766 arg3
= static_cast<int >(SWIG_As_int(obj2
));
25767 if (SWIG_arg_fail(3)) SWIG_fail
;
25771 arg4
= static_cast<int >(SWIG_As_int(obj3
));
25772 if (SWIG_arg_fail(4)) SWIG_fail
;
25776 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25777 result
= (bool)(arg1
)->SetItemImage(arg2
,arg3
,arg4
);
25779 wxPyEndAllowThreads(__tstate
);
25780 if (PyErr_Occurred()) SWIG_fail
;
25783 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25791 static PyObject
*_wrap_ListCtrl_GetItemText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25792 PyObject
*resultobj
= NULL
;
25793 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25796 PyObject
* obj0
= 0 ;
25797 PyObject
* obj1
= 0 ;
25798 char *kwnames
[] = {
25799 (char *) "self",(char *) "item", NULL
25802 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetItemText",kwnames
,&obj0
,&obj1
)) goto fail
;
25803 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25804 if (SWIG_arg_fail(1)) SWIG_fail
;
25806 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25807 if (SWIG_arg_fail(2)) SWIG_fail
;
25810 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25811 result
= ((wxPyListCtrl
const *)arg1
)->GetItemText(arg2
);
25813 wxPyEndAllowThreads(__tstate
);
25814 if (PyErr_Occurred()) SWIG_fail
;
25818 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
25820 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
25829 static PyObject
*_wrap_ListCtrl_SetItemText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25830 PyObject
*resultobj
= NULL
;
25831 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25833 wxString
*arg3
= 0 ;
25834 bool temp3
= false ;
25835 PyObject
* obj0
= 0 ;
25836 PyObject
* obj1
= 0 ;
25837 PyObject
* obj2
= 0 ;
25838 char *kwnames
[] = {
25839 (char *) "self",(char *) "item",(char *) "str", NULL
25842 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetItemText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
25843 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25844 if (SWIG_arg_fail(1)) SWIG_fail
;
25846 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25847 if (SWIG_arg_fail(2)) SWIG_fail
;
25850 arg3
= wxString_in_helper(obj2
);
25851 if (arg3
== NULL
) SWIG_fail
;
25855 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25856 (arg1
)->SetItemText(arg2
,(wxString
const &)*arg3
);
25858 wxPyEndAllowThreads(__tstate
);
25859 if (PyErr_Occurred()) SWIG_fail
;
25861 Py_INCREF(Py_None
); resultobj
= Py_None
;
25876 static PyObject
*_wrap_ListCtrl_GetItemData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25877 PyObject
*resultobj
= NULL
;
25878 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25881 PyObject
* obj0
= 0 ;
25882 PyObject
* obj1
= 0 ;
25883 char *kwnames
[] = {
25884 (char *) "self",(char *) "item", NULL
25887 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetItemData",kwnames
,&obj0
,&obj1
)) goto fail
;
25888 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25889 if (SWIG_arg_fail(1)) SWIG_fail
;
25891 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25892 if (SWIG_arg_fail(2)) SWIG_fail
;
25895 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25896 result
= (long)((wxPyListCtrl
const *)arg1
)->GetItemData(arg2
);
25898 wxPyEndAllowThreads(__tstate
);
25899 if (PyErr_Occurred()) SWIG_fail
;
25902 resultobj
= SWIG_From_long(static_cast<long >(result
));
25910 static PyObject
*_wrap_ListCtrl_SetItemData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25911 PyObject
*resultobj
= NULL
;
25912 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25916 PyObject
* obj0
= 0 ;
25917 PyObject
* obj1
= 0 ;
25918 PyObject
* obj2
= 0 ;
25919 char *kwnames
[] = {
25920 (char *) "self",(char *) "item",(char *) "data", NULL
25923 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetItemData",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
25924 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25925 if (SWIG_arg_fail(1)) SWIG_fail
;
25927 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25928 if (SWIG_arg_fail(2)) SWIG_fail
;
25931 arg3
= static_cast<long >(SWIG_As_long(obj2
));
25932 if (SWIG_arg_fail(3)) SWIG_fail
;
25935 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25936 result
= (bool)(arg1
)->SetItemData(arg2
,arg3
);
25938 wxPyEndAllowThreads(__tstate
);
25939 if (PyErr_Occurred()) SWIG_fail
;
25942 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25950 static PyObject
*_wrap_ListCtrl_GetItemPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25951 PyObject
*resultobj
= NULL
;
25952 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25955 PyObject
* obj0
= 0 ;
25956 PyObject
* obj1
= 0 ;
25957 char *kwnames
[] = {
25958 (char *) "self",(char *) "item", NULL
25961 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetItemPosition",kwnames
,&obj0
,&obj1
)) goto fail
;
25962 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25963 if (SWIG_arg_fail(1)) SWIG_fail
;
25965 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25966 if (SWIG_arg_fail(2)) SWIG_fail
;
25969 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25970 result
= wxPyListCtrl_GetItemPosition(arg1
,arg2
);
25972 wxPyEndAllowThreads(__tstate
);
25973 if (PyErr_Occurred()) SWIG_fail
;
25976 wxPoint
* resultptr
;
25977 resultptr
= new wxPoint(static_cast<wxPoint
& >(result
));
25978 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1);
25986 static PyObject
*_wrap_ListCtrl_GetItemRect(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25987 PyObject
*resultobj
= NULL
;
25988 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25990 int arg3
= (int) wxLIST_RECT_BOUNDS
;
25992 PyObject
* obj0
= 0 ;
25993 PyObject
* obj1
= 0 ;
25994 PyObject
* obj2
= 0 ;
25995 char *kwnames
[] = {
25996 (char *) "self",(char *) "item",(char *) "code", NULL
25999 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ListCtrl_GetItemRect",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
26000 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26001 if (SWIG_arg_fail(1)) SWIG_fail
;
26003 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26004 if (SWIG_arg_fail(2)) SWIG_fail
;
26008 arg3
= static_cast<int >(SWIG_As_int(obj2
));
26009 if (SWIG_arg_fail(3)) SWIG_fail
;
26013 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26014 result
= wxPyListCtrl_GetItemRect(arg1
,arg2
,arg3
);
26016 wxPyEndAllowThreads(__tstate
);
26017 if (PyErr_Occurred()) SWIG_fail
;
26020 wxRect
* resultptr
;
26021 resultptr
= new wxRect(static_cast<wxRect
& >(result
));
26022 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxRect
, 1);
26030 static PyObject
*_wrap_ListCtrl_SetItemPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26031 PyObject
*resultobj
= NULL
;
26032 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26034 wxPoint
*arg3
= 0 ;
26037 PyObject
* obj0
= 0 ;
26038 PyObject
* obj1
= 0 ;
26039 PyObject
* obj2
= 0 ;
26040 char *kwnames
[] = {
26041 (char *) "self",(char *) "item",(char *) "pos", NULL
26044 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetItemPosition",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
26045 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26046 if (SWIG_arg_fail(1)) SWIG_fail
;
26048 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26049 if (SWIG_arg_fail(2)) SWIG_fail
;
26053 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
26056 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26057 result
= (bool)(arg1
)->SetItemPosition(arg2
,(wxPoint
const &)*arg3
);
26059 wxPyEndAllowThreads(__tstate
);
26060 if (PyErr_Occurred()) SWIG_fail
;
26063 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26071 static PyObject
*_wrap_ListCtrl_GetItemCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26072 PyObject
*resultobj
= NULL
;
26073 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26075 PyObject
* obj0
= 0 ;
26076 char *kwnames
[] = {
26077 (char *) "self", NULL
26080 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetItemCount",kwnames
,&obj0
)) goto fail
;
26081 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26082 if (SWIG_arg_fail(1)) SWIG_fail
;
26084 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26085 result
= (int)((wxPyListCtrl
const *)arg1
)->GetItemCount();
26087 wxPyEndAllowThreads(__tstate
);
26088 if (PyErr_Occurred()) SWIG_fail
;
26091 resultobj
= SWIG_From_int(static_cast<int >(result
));
26099 static PyObject
*_wrap_ListCtrl_GetColumnCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26100 PyObject
*resultobj
= NULL
;
26101 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26103 PyObject
* obj0
= 0 ;
26104 char *kwnames
[] = {
26105 (char *) "self", NULL
26108 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetColumnCount",kwnames
,&obj0
)) goto fail
;
26109 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26110 if (SWIG_arg_fail(1)) SWIG_fail
;
26112 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26113 result
= (int)((wxPyListCtrl
const *)arg1
)->GetColumnCount();
26115 wxPyEndAllowThreads(__tstate
);
26116 if (PyErr_Occurred()) SWIG_fail
;
26119 resultobj
= SWIG_From_int(static_cast<int >(result
));
26127 static PyObject
*_wrap_ListCtrl_GetItemSpacing(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26128 PyObject
*resultobj
= NULL
;
26129 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26131 PyObject
* obj0
= 0 ;
26132 char *kwnames
[] = {
26133 (char *) "self", NULL
26136 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetItemSpacing",kwnames
,&obj0
)) goto fail
;
26137 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26138 if (SWIG_arg_fail(1)) SWIG_fail
;
26140 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26141 result
= ((wxPyListCtrl
const *)arg1
)->GetItemSpacing();
26143 wxPyEndAllowThreads(__tstate
);
26144 if (PyErr_Occurred()) SWIG_fail
;
26147 wxSize
* resultptr
;
26148 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
26149 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
26157 static PyObject
*_wrap_ListCtrl_SetItemSpacing(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26158 PyObject
*resultobj
= NULL
;
26159 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26161 bool arg3
= (bool) false ;
26162 PyObject
* obj0
= 0 ;
26163 PyObject
* obj1
= 0 ;
26164 PyObject
* obj2
= 0 ;
26165 char *kwnames
[] = {
26166 (char *) "self",(char *) "spacing",(char *) "isSmall", NULL
26169 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ListCtrl_SetItemSpacing",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
26170 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26171 if (SWIG_arg_fail(1)) SWIG_fail
;
26173 arg2
= static_cast<int >(SWIG_As_int(obj1
));
26174 if (SWIG_arg_fail(2)) SWIG_fail
;
26178 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
26179 if (SWIG_arg_fail(3)) SWIG_fail
;
26183 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26184 (arg1
)->SetItemSpacing(arg2
,arg3
);
26186 wxPyEndAllowThreads(__tstate
);
26187 if (PyErr_Occurred()) SWIG_fail
;
26189 Py_INCREF(Py_None
); resultobj
= Py_None
;
26196 static PyObject
*_wrap_ListCtrl_GetSelectedItemCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26197 PyObject
*resultobj
= NULL
;
26198 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26200 PyObject
* obj0
= 0 ;
26201 char *kwnames
[] = {
26202 (char *) "self", NULL
26205 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetSelectedItemCount",kwnames
,&obj0
)) goto fail
;
26206 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26207 if (SWIG_arg_fail(1)) SWIG_fail
;
26209 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26210 result
= (int)((wxPyListCtrl
const *)arg1
)->GetSelectedItemCount();
26212 wxPyEndAllowThreads(__tstate
);
26213 if (PyErr_Occurred()) SWIG_fail
;
26216 resultobj
= SWIG_From_int(static_cast<int >(result
));
26224 static PyObject
*_wrap_ListCtrl_GetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26225 PyObject
*resultobj
= NULL
;
26226 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26228 PyObject
* obj0
= 0 ;
26229 char *kwnames
[] = {
26230 (char *) "self", NULL
26233 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetTextColour",kwnames
,&obj0
)) goto fail
;
26234 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26235 if (SWIG_arg_fail(1)) SWIG_fail
;
26237 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26238 result
= ((wxPyListCtrl
const *)arg1
)->GetTextColour();
26240 wxPyEndAllowThreads(__tstate
);
26241 if (PyErr_Occurred()) SWIG_fail
;
26244 wxColour
* resultptr
;
26245 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
26246 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
26254 static PyObject
*_wrap_ListCtrl_SetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26255 PyObject
*resultobj
= NULL
;
26256 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26257 wxColour
*arg2
= 0 ;
26259 PyObject
* obj0
= 0 ;
26260 PyObject
* obj1
= 0 ;
26261 char *kwnames
[] = {
26262 (char *) "self",(char *) "col", NULL
26265 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_SetTextColour",kwnames
,&obj0
,&obj1
)) goto fail
;
26266 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26267 if (SWIG_arg_fail(1)) SWIG_fail
;
26270 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
26273 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26274 (arg1
)->SetTextColour((wxColour
const &)*arg2
);
26276 wxPyEndAllowThreads(__tstate
);
26277 if (PyErr_Occurred()) SWIG_fail
;
26279 Py_INCREF(Py_None
); resultobj
= Py_None
;
26286 static PyObject
*_wrap_ListCtrl_GetTopItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26287 PyObject
*resultobj
= NULL
;
26288 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26290 PyObject
* obj0
= 0 ;
26291 char *kwnames
[] = {
26292 (char *) "self", NULL
26295 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetTopItem",kwnames
,&obj0
)) goto fail
;
26296 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26297 if (SWIG_arg_fail(1)) SWIG_fail
;
26299 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26300 result
= (long)((wxPyListCtrl
const *)arg1
)->GetTopItem();
26302 wxPyEndAllowThreads(__tstate
);
26303 if (PyErr_Occurred()) SWIG_fail
;
26306 resultobj
= SWIG_From_long(static_cast<long >(result
));
26314 static PyObject
*_wrap_ListCtrl_SetSingleStyle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26315 PyObject
*resultobj
= NULL
;
26316 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26318 bool arg3
= (bool) true ;
26319 PyObject
* obj0
= 0 ;
26320 PyObject
* obj1
= 0 ;
26321 PyObject
* obj2
= 0 ;
26322 char *kwnames
[] = {
26323 (char *) "self",(char *) "style",(char *) "add", NULL
26326 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ListCtrl_SetSingleStyle",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
26327 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26328 if (SWIG_arg_fail(1)) SWIG_fail
;
26330 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26331 if (SWIG_arg_fail(2)) SWIG_fail
;
26335 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
26336 if (SWIG_arg_fail(3)) SWIG_fail
;
26340 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26341 (arg1
)->SetSingleStyle(arg2
,arg3
);
26343 wxPyEndAllowThreads(__tstate
);
26344 if (PyErr_Occurred()) SWIG_fail
;
26346 Py_INCREF(Py_None
); resultobj
= Py_None
;
26353 static PyObject
*_wrap_ListCtrl_SetWindowStyleFlag(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26354 PyObject
*resultobj
= NULL
;
26355 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26357 PyObject
* obj0
= 0 ;
26358 PyObject
* obj1
= 0 ;
26359 char *kwnames
[] = {
26360 (char *) "self",(char *) "style", NULL
26363 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_SetWindowStyleFlag",kwnames
,&obj0
,&obj1
)) goto fail
;
26364 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26365 if (SWIG_arg_fail(1)) SWIG_fail
;
26367 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26368 if (SWIG_arg_fail(2)) SWIG_fail
;
26371 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26372 (arg1
)->SetWindowStyleFlag(arg2
);
26374 wxPyEndAllowThreads(__tstate
);
26375 if (PyErr_Occurred()) SWIG_fail
;
26377 Py_INCREF(Py_None
); resultobj
= Py_None
;
26384 static PyObject
*_wrap_ListCtrl_GetNextItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26385 PyObject
*resultobj
= NULL
;
26386 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26388 int arg3
= (int) wxLIST_NEXT_ALL
;
26389 int arg4
= (int) wxLIST_STATE_DONTCARE
;
26391 PyObject
* obj0
= 0 ;
26392 PyObject
* obj1
= 0 ;
26393 PyObject
* obj2
= 0 ;
26394 PyObject
* obj3
= 0 ;
26395 char *kwnames
[] = {
26396 (char *) "self",(char *) "item",(char *) "geometry",(char *) "state", NULL
26399 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:ListCtrl_GetNextItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
26400 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26401 if (SWIG_arg_fail(1)) SWIG_fail
;
26403 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26404 if (SWIG_arg_fail(2)) SWIG_fail
;
26408 arg3
= static_cast<int >(SWIG_As_int(obj2
));
26409 if (SWIG_arg_fail(3)) SWIG_fail
;
26414 arg4
= static_cast<int >(SWIG_As_int(obj3
));
26415 if (SWIG_arg_fail(4)) SWIG_fail
;
26419 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26420 result
= (long)((wxPyListCtrl
const *)arg1
)->GetNextItem(arg2
,arg3
,arg4
);
26422 wxPyEndAllowThreads(__tstate
);
26423 if (PyErr_Occurred()) SWIG_fail
;
26426 resultobj
= SWIG_From_long(static_cast<long >(result
));
26434 static PyObject
*_wrap_ListCtrl_GetImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26435 PyObject
*resultobj
= NULL
;
26436 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26438 wxImageList
*result
;
26439 PyObject
* obj0
= 0 ;
26440 PyObject
* obj1
= 0 ;
26441 char *kwnames
[] = {
26442 (char *) "self",(char *) "which", NULL
26445 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetImageList",kwnames
,&obj0
,&obj1
)) goto fail
;
26446 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26447 if (SWIG_arg_fail(1)) SWIG_fail
;
26449 arg2
= static_cast<int >(SWIG_As_int(obj1
));
26450 if (SWIG_arg_fail(2)) SWIG_fail
;
26453 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26454 result
= (wxImageList
*)((wxPyListCtrl
const *)arg1
)->GetImageList(arg2
);
26456 wxPyEndAllowThreads(__tstate
);
26457 if (PyErr_Occurred()) SWIG_fail
;
26460 resultobj
= wxPyMake_wxObject(result
, (bool)0);
26468 static PyObject
*_wrap_ListCtrl_SetImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26469 PyObject
*resultobj
= NULL
;
26470 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26471 wxImageList
*arg2
= (wxImageList
*) 0 ;
26473 PyObject
* obj0
= 0 ;
26474 PyObject
* obj1
= 0 ;
26475 PyObject
* obj2
= 0 ;
26476 char *kwnames
[] = {
26477 (char *) "self",(char *) "imageList",(char *) "which", NULL
26480 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetImageList",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
26481 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26482 if (SWIG_arg_fail(1)) SWIG_fail
;
26483 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| 0);
26484 if (SWIG_arg_fail(2)) SWIG_fail
;
26486 arg3
= static_cast<int >(SWIG_As_int(obj2
));
26487 if (SWIG_arg_fail(3)) SWIG_fail
;
26490 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26491 (arg1
)->SetImageList(arg2
,arg3
);
26493 wxPyEndAllowThreads(__tstate
);
26494 if (PyErr_Occurred()) SWIG_fail
;
26496 Py_INCREF(Py_None
); resultobj
= Py_None
;
26503 static PyObject
*_wrap_ListCtrl_AssignImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26504 PyObject
*resultobj
= NULL
;
26505 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26506 wxImageList
*arg2
= (wxImageList
*) 0 ;
26508 PyObject
* obj0
= 0 ;
26509 PyObject
* obj1
= 0 ;
26510 PyObject
* obj2
= 0 ;
26511 char *kwnames
[] = {
26512 (char *) "self",(char *) "imageList",(char *) "which", NULL
26515 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_AssignImageList",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
26516 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26517 if (SWIG_arg_fail(1)) SWIG_fail
;
26518 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
);
26519 if (SWIG_arg_fail(2)) SWIG_fail
;
26521 arg3
= static_cast<int >(SWIG_As_int(obj2
));
26522 if (SWIG_arg_fail(3)) SWIG_fail
;
26525 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26526 (arg1
)->AssignImageList(arg2
,arg3
);
26528 wxPyEndAllowThreads(__tstate
);
26529 if (PyErr_Occurred()) SWIG_fail
;
26531 Py_INCREF(Py_None
); resultobj
= Py_None
;
26538 static PyObject
*_wrap_ListCtrl_InReportView(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26539 PyObject
*resultobj
= NULL
;
26540 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26542 PyObject
* obj0
= 0 ;
26543 char *kwnames
[] = {
26544 (char *) "self", NULL
26547 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_InReportView",kwnames
,&obj0
)) goto fail
;
26548 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26549 if (SWIG_arg_fail(1)) SWIG_fail
;
26551 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26552 result
= (bool)((wxPyListCtrl
const *)arg1
)->InReportView();
26554 wxPyEndAllowThreads(__tstate
);
26555 if (PyErr_Occurred()) SWIG_fail
;
26558 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26566 static PyObject
*_wrap_ListCtrl_IsVirtual(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26567 PyObject
*resultobj
= NULL
;
26568 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26570 PyObject
* obj0
= 0 ;
26571 char *kwnames
[] = {
26572 (char *) "self", NULL
26575 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_IsVirtual",kwnames
,&obj0
)) goto fail
;
26576 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26577 if (SWIG_arg_fail(1)) SWIG_fail
;
26579 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26580 result
= (bool)((wxPyListCtrl
const *)arg1
)->IsVirtual();
26582 wxPyEndAllowThreads(__tstate
);
26583 if (PyErr_Occurred()) SWIG_fail
;
26586 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26594 static PyObject
*_wrap_ListCtrl_RefreshItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26595 PyObject
*resultobj
= NULL
;
26596 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26598 PyObject
* obj0
= 0 ;
26599 PyObject
* obj1
= 0 ;
26600 char *kwnames
[] = {
26601 (char *) "self",(char *) "item", NULL
26604 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_RefreshItem",kwnames
,&obj0
,&obj1
)) goto fail
;
26605 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26606 if (SWIG_arg_fail(1)) SWIG_fail
;
26608 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26609 if (SWIG_arg_fail(2)) SWIG_fail
;
26612 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26613 (arg1
)->RefreshItem(arg2
);
26615 wxPyEndAllowThreads(__tstate
);
26616 if (PyErr_Occurred()) SWIG_fail
;
26618 Py_INCREF(Py_None
); resultobj
= Py_None
;
26625 static PyObject
*_wrap_ListCtrl_RefreshItems(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26626 PyObject
*resultobj
= NULL
;
26627 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26630 PyObject
* obj0
= 0 ;
26631 PyObject
* obj1
= 0 ;
26632 PyObject
* obj2
= 0 ;
26633 char *kwnames
[] = {
26634 (char *) "self",(char *) "itemFrom",(char *) "itemTo", NULL
26637 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_RefreshItems",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
26638 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26639 if (SWIG_arg_fail(1)) SWIG_fail
;
26641 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26642 if (SWIG_arg_fail(2)) SWIG_fail
;
26645 arg3
= static_cast<long >(SWIG_As_long(obj2
));
26646 if (SWIG_arg_fail(3)) SWIG_fail
;
26649 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26650 (arg1
)->RefreshItems(arg2
,arg3
);
26652 wxPyEndAllowThreads(__tstate
);
26653 if (PyErr_Occurred()) SWIG_fail
;
26655 Py_INCREF(Py_None
); resultobj
= Py_None
;
26662 static PyObject
*_wrap_ListCtrl_Arrange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26663 PyObject
*resultobj
= NULL
;
26664 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26665 int arg2
= (int) wxLIST_ALIGN_DEFAULT
;
26667 PyObject
* obj0
= 0 ;
26668 PyObject
* obj1
= 0 ;
26669 char *kwnames
[] = {
26670 (char *) "self",(char *) "flag", NULL
26673 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:ListCtrl_Arrange",kwnames
,&obj0
,&obj1
)) goto fail
;
26674 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26675 if (SWIG_arg_fail(1)) SWIG_fail
;
26678 arg2
= static_cast<int >(SWIG_As_int(obj1
));
26679 if (SWIG_arg_fail(2)) SWIG_fail
;
26683 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26684 result
= (bool)(arg1
)->Arrange(arg2
);
26686 wxPyEndAllowThreads(__tstate
);
26687 if (PyErr_Occurred()) SWIG_fail
;
26690 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26698 static PyObject
*_wrap_ListCtrl_DeleteItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26699 PyObject
*resultobj
= NULL
;
26700 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26703 PyObject
* obj0
= 0 ;
26704 PyObject
* obj1
= 0 ;
26705 char *kwnames
[] = {
26706 (char *) "self",(char *) "item", NULL
26709 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_DeleteItem",kwnames
,&obj0
,&obj1
)) goto fail
;
26710 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26711 if (SWIG_arg_fail(1)) SWIG_fail
;
26713 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26714 if (SWIG_arg_fail(2)) SWIG_fail
;
26717 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26718 result
= (bool)(arg1
)->DeleteItem(arg2
);
26720 wxPyEndAllowThreads(__tstate
);
26721 if (PyErr_Occurred()) SWIG_fail
;
26724 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26732 static PyObject
*_wrap_ListCtrl_DeleteAllItems(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26733 PyObject
*resultobj
= NULL
;
26734 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26736 PyObject
* obj0
= 0 ;
26737 char *kwnames
[] = {
26738 (char *) "self", NULL
26741 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_DeleteAllItems",kwnames
,&obj0
)) goto fail
;
26742 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26743 if (SWIG_arg_fail(1)) SWIG_fail
;
26745 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26746 result
= (bool)(arg1
)->DeleteAllItems();
26748 wxPyEndAllowThreads(__tstate
);
26749 if (PyErr_Occurred()) SWIG_fail
;
26752 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26760 static PyObject
*_wrap_ListCtrl_DeleteColumn(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26761 PyObject
*resultobj
= NULL
;
26762 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26765 PyObject
* obj0
= 0 ;
26766 PyObject
* obj1
= 0 ;
26767 char *kwnames
[] = {
26768 (char *) "self",(char *) "col", NULL
26771 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_DeleteColumn",kwnames
,&obj0
,&obj1
)) goto fail
;
26772 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26773 if (SWIG_arg_fail(1)) SWIG_fail
;
26775 arg2
= static_cast<int >(SWIG_As_int(obj1
));
26776 if (SWIG_arg_fail(2)) SWIG_fail
;
26779 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26780 result
= (bool)(arg1
)->DeleteColumn(arg2
);
26782 wxPyEndAllowThreads(__tstate
);
26783 if (PyErr_Occurred()) SWIG_fail
;
26786 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26794 static PyObject
*_wrap_ListCtrl_DeleteAllColumns(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26795 PyObject
*resultobj
= NULL
;
26796 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26798 PyObject
* obj0
= 0 ;
26799 char *kwnames
[] = {
26800 (char *) "self", NULL
26803 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_DeleteAllColumns",kwnames
,&obj0
)) goto fail
;
26804 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26805 if (SWIG_arg_fail(1)) SWIG_fail
;
26807 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26808 result
= (bool)(arg1
)->DeleteAllColumns();
26810 wxPyEndAllowThreads(__tstate
);
26811 if (PyErr_Occurred()) SWIG_fail
;
26814 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26822 static PyObject
*_wrap_ListCtrl_ClearAll(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26823 PyObject
*resultobj
= NULL
;
26824 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26825 PyObject
* obj0
= 0 ;
26826 char *kwnames
[] = {
26827 (char *) "self", NULL
26830 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_ClearAll",kwnames
,&obj0
)) goto fail
;
26831 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26832 if (SWIG_arg_fail(1)) SWIG_fail
;
26834 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26835 (arg1
)->ClearAll();
26837 wxPyEndAllowThreads(__tstate
);
26838 if (PyErr_Occurred()) SWIG_fail
;
26840 Py_INCREF(Py_None
); resultobj
= Py_None
;
26847 static PyObject
*_wrap_ListCtrl_EditLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26848 PyObject
*resultobj
= NULL
;
26849 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26851 PyObject
* obj0
= 0 ;
26852 PyObject
* obj1
= 0 ;
26853 char *kwnames
[] = {
26854 (char *) "self",(char *) "item", NULL
26857 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_EditLabel",kwnames
,&obj0
,&obj1
)) goto fail
;
26858 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26859 if (SWIG_arg_fail(1)) SWIG_fail
;
26861 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26862 if (SWIG_arg_fail(2)) SWIG_fail
;
26865 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26866 (arg1
)->EditLabel(arg2
);
26868 wxPyEndAllowThreads(__tstate
);
26869 if (PyErr_Occurred()) SWIG_fail
;
26871 Py_INCREF(Py_None
); resultobj
= Py_None
;
26878 static PyObject
*_wrap_ListCtrl_EnsureVisible(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26879 PyObject
*resultobj
= NULL
;
26880 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26883 PyObject
* obj0
= 0 ;
26884 PyObject
* obj1
= 0 ;
26885 char *kwnames
[] = {
26886 (char *) "self",(char *) "item", NULL
26889 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_EnsureVisible",kwnames
,&obj0
,&obj1
)) goto fail
;
26890 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26891 if (SWIG_arg_fail(1)) SWIG_fail
;
26893 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26894 if (SWIG_arg_fail(2)) SWIG_fail
;
26897 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26898 result
= (bool)(arg1
)->EnsureVisible(arg2
);
26900 wxPyEndAllowThreads(__tstate
);
26901 if (PyErr_Occurred()) SWIG_fail
;
26904 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26912 static PyObject
*_wrap_ListCtrl_FindItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26913 PyObject
*resultobj
= NULL
;
26914 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26916 wxString
*arg3
= 0 ;
26917 bool arg4
= (bool) false ;
26919 bool temp3
= false ;
26920 PyObject
* obj0
= 0 ;
26921 PyObject
* obj1
= 0 ;
26922 PyObject
* obj2
= 0 ;
26923 PyObject
* obj3
= 0 ;
26924 char *kwnames
[] = {
26925 (char *) "self",(char *) "start",(char *) "str",(char *) "partial", NULL
26928 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:ListCtrl_FindItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
26929 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26930 if (SWIG_arg_fail(1)) SWIG_fail
;
26932 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26933 if (SWIG_arg_fail(2)) SWIG_fail
;
26936 arg3
= wxString_in_helper(obj2
);
26937 if (arg3
== NULL
) SWIG_fail
;
26942 arg4
= static_cast<bool >(SWIG_As_bool(obj3
));
26943 if (SWIG_arg_fail(4)) SWIG_fail
;
26947 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26948 result
= (long)(arg1
)->FindItem(arg2
,(wxString
const &)*arg3
,arg4
);
26950 wxPyEndAllowThreads(__tstate
);
26951 if (PyErr_Occurred()) SWIG_fail
;
26954 resultobj
= SWIG_From_long(static_cast<long >(result
));
26970 static PyObject
*_wrap_ListCtrl_FindItemData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26971 PyObject
*resultobj
= NULL
;
26972 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26976 PyObject
* obj0
= 0 ;
26977 PyObject
* obj1
= 0 ;
26978 PyObject
* obj2
= 0 ;
26979 char *kwnames
[] = {
26980 (char *) "self",(char *) "start",(char *) "data", NULL
26983 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_FindItemData",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
26984 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26985 if (SWIG_arg_fail(1)) SWIG_fail
;
26987 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26988 if (SWIG_arg_fail(2)) SWIG_fail
;
26991 arg3
= static_cast<long >(SWIG_As_long(obj2
));
26992 if (SWIG_arg_fail(3)) SWIG_fail
;
26995 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26996 result
= (long)(arg1
)->FindItem(arg2
,arg3
);
26998 wxPyEndAllowThreads(__tstate
);
26999 if (PyErr_Occurred()) SWIG_fail
;
27002 resultobj
= SWIG_From_long(static_cast<long >(result
));
27010 static PyObject
*_wrap_ListCtrl_FindItemAtPos(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27011 PyObject
*resultobj
= NULL
;
27012 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27014 wxPoint
*arg3
= 0 ;
27018 PyObject
* obj0
= 0 ;
27019 PyObject
* obj1
= 0 ;
27020 PyObject
* obj2
= 0 ;
27021 PyObject
* obj3
= 0 ;
27022 char *kwnames
[] = {
27023 (char *) "self",(char *) "start",(char *) "pt",(char *) "direction", NULL
27026 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:ListCtrl_FindItemAtPos",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
27027 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27028 if (SWIG_arg_fail(1)) SWIG_fail
;
27030 arg2
= static_cast<long >(SWIG_As_long(obj1
));
27031 if (SWIG_arg_fail(2)) SWIG_fail
;
27035 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
27038 arg4
= static_cast<int >(SWIG_As_int(obj3
));
27039 if (SWIG_arg_fail(4)) SWIG_fail
;
27042 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27043 result
= (long)(arg1
)->FindItem(arg2
,(wxPoint
const &)*arg3
,arg4
);
27045 wxPyEndAllowThreads(__tstate
);
27046 if (PyErr_Occurred()) SWIG_fail
;
27049 resultobj
= SWIG_From_long(static_cast<long >(result
));
27057 static PyObject
*_wrap_ListCtrl_HitTest(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27058 PyObject
*resultobj
= NULL
;
27059 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27060 wxPoint
*arg2
= 0 ;
27066 PyObject
* obj0
= 0 ;
27067 PyObject
* obj1
= 0 ;
27068 char *kwnames
[] = {
27069 (char *) "self",(char *) "point", NULL
27072 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
27073 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_HitTest",kwnames
,&obj0
,&obj1
)) goto fail
;
27074 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27075 if (SWIG_arg_fail(1)) SWIG_fail
;
27078 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
27081 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27082 result
= (long)(arg1
)->HitTest((wxPoint
const &)*arg2
,*arg3
);
27084 wxPyEndAllowThreads(__tstate
);
27085 if (PyErr_Occurred()) SWIG_fail
;
27088 resultobj
= SWIG_From_long(static_cast<long >(result
));
27090 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
27091 SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0)));
27098 static PyObject
*_wrap_ListCtrl_InsertItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27099 PyObject
*resultobj
= NULL
;
27100 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27101 wxListItem
*arg2
= 0 ;
27103 PyObject
* obj0
= 0 ;
27104 PyObject
* obj1
= 0 ;
27105 char *kwnames
[] = {
27106 (char *) "self",(char *) "info", NULL
27109 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_InsertItem",kwnames
,&obj0
,&obj1
)) goto fail
;
27110 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27111 if (SWIG_arg_fail(1)) SWIG_fail
;
27113 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
27114 if (SWIG_arg_fail(2)) SWIG_fail
;
27115 if (arg2
== NULL
) {
27116 SWIG_null_ref("wxListItem");
27118 if (SWIG_arg_fail(2)) SWIG_fail
;
27121 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27122 result
= (long)(arg1
)->InsertItem(*arg2
);
27124 wxPyEndAllowThreads(__tstate
);
27125 if (PyErr_Occurred()) SWIG_fail
;
27128 resultobj
= SWIG_From_long(static_cast<long >(result
));
27136 static PyObject
*_wrap_ListCtrl_InsertStringItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27137 PyObject
*resultobj
= NULL
;
27138 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27140 wxString
*arg3
= 0 ;
27141 int arg4
= (int) -1 ;
27143 bool temp3
= false ;
27144 PyObject
* obj0
= 0 ;
27145 PyObject
* obj1
= 0 ;
27146 PyObject
* obj2
= 0 ;
27147 PyObject
* obj3
= 0 ;
27148 char *kwnames
[] = {
27149 (char *) "self",(char *) "index",(char *) "label",(char *) "imageIndex", NULL
27152 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:ListCtrl_InsertStringItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
27153 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27154 if (SWIG_arg_fail(1)) SWIG_fail
;
27156 arg2
= static_cast<long >(SWIG_As_long(obj1
));
27157 if (SWIG_arg_fail(2)) SWIG_fail
;
27160 arg3
= wxString_in_helper(obj2
);
27161 if (arg3
== NULL
) SWIG_fail
;
27166 arg4
= static_cast<int >(SWIG_As_int(obj3
));
27167 if (SWIG_arg_fail(4)) SWIG_fail
;
27171 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27172 result
= (long)(arg1
)->InsertItem(arg2
,(wxString
const &)*arg3
,arg4
);
27174 wxPyEndAllowThreads(__tstate
);
27175 if (PyErr_Occurred()) SWIG_fail
;
27178 resultobj
= SWIG_From_long(static_cast<long >(result
));
27194 static PyObject
*_wrap_ListCtrl_InsertImageItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27195 PyObject
*resultobj
= NULL
;
27196 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27200 PyObject
* obj0
= 0 ;
27201 PyObject
* obj1
= 0 ;
27202 PyObject
* obj2
= 0 ;
27203 char *kwnames
[] = {
27204 (char *) "self",(char *) "index",(char *) "imageIndex", NULL
27207 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_InsertImageItem",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
27208 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27209 if (SWIG_arg_fail(1)) SWIG_fail
;
27211 arg2
= static_cast<long >(SWIG_As_long(obj1
));
27212 if (SWIG_arg_fail(2)) SWIG_fail
;
27215 arg3
= static_cast<int >(SWIG_As_int(obj2
));
27216 if (SWIG_arg_fail(3)) SWIG_fail
;
27219 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27220 result
= (long)(arg1
)->InsertItem(arg2
,arg3
);
27222 wxPyEndAllowThreads(__tstate
);
27223 if (PyErr_Occurred()) SWIG_fail
;
27226 resultobj
= SWIG_From_long(static_cast<long >(result
));
27234 static PyObject
*_wrap_ListCtrl_InsertImageStringItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27235 PyObject
*resultobj
= NULL
;
27236 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27238 wxString
*arg3
= 0 ;
27241 bool temp3
= false ;
27242 PyObject
* obj0
= 0 ;
27243 PyObject
* obj1
= 0 ;
27244 PyObject
* obj2
= 0 ;
27245 PyObject
* obj3
= 0 ;
27246 char *kwnames
[] = {
27247 (char *) "self",(char *) "index",(char *) "label",(char *) "imageIndex", NULL
27250 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:ListCtrl_InsertImageStringItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
27251 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27252 if (SWIG_arg_fail(1)) SWIG_fail
;
27254 arg2
= static_cast<long >(SWIG_As_long(obj1
));
27255 if (SWIG_arg_fail(2)) SWIG_fail
;
27258 arg3
= wxString_in_helper(obj2
);
27259 if (arg3
== NULL
) SWIG_fail
;
27263 arg4
= static_cast<int >(SWIG_As_int(obj3
));
27264 if (SWIG_arg_fail(4)) SWIG_fail
;
27267 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27268 result
= (long)(arg1
)->InsertItem(arg2
,(wxString
const &)*arg3
,arg4
);
27270 wxPyEndAllowThreads(__tstate
);
27271 if (PyErr_Occurred()) SWIG_fail
;
27274 resultobj
= SWIG_From_long(static_cast<long >(result
));
27290 static PyObject
*_wrap_ListCtrl_InsertColumnItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27291 PyObject
*resultobj
= NULL
;
27292 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27294 wxListItem
*arg3
= 0 ;
27296 PyObject
* obj0
= 0 ;
27297 PyObject
* obj1
= 0 ;
27298 PyObject
* obj2
= 0 ;
27299 char *kwnames
[] = {
27300 (char *) "self",(char *) "col",(char *) "info", NULL
27303 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_InsertColumnItem",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
27304 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27305 if (SWIG_arg_fail(1)) SWIG_fail
;
27307 arg2
= static_cast<long >(SWIG_As_long(obj1
));
27308 if (SWIG_arg_fail(2)) SWIG_fail
;
27311 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
27312 if (SWIG_arg_fail(3)) SWIG_fail
;
27313 if (arg3
== NULL
) {
27314 SWIG_null_ref("wxListItem");
27316 if (SWIG_arg_fail(3)) SWIG_fail
;
27319 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27320 result
= (long)(arg1
)->InsertColumn(arg2
,*arg3
);
27322 wxPyEndAllowThreads(__tstate
);
27323 if (PyErr_Occurred()) SWIG_fail
;
27326 resultobj
= SWIG_From_long(static_cast<long >(result
));
27334 static PyObject
*_wrap_ListCtrl_InsertColumn(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27335 PyObject
*resultobj
= NULL
;
27336 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27338 wxString
*arg3
= 0 ;
27339 int arg4
= (int) wxLIST_FORMAT_LEFT
;
27340 int arg5
= (int) -1 ;
27342 bool temp3
= false ;
27343 PyObject
* obj0
= 0 ;
27344 PyObject
* obj1
= 0 ;
27345 PyObject
* obj2
= 0 ;
27346 PyObject
* obj3
= 0 ;
27347 PyObject
* obj4
= 0 ;
27348 char *kwnames
[] = {
27349 (char *) "self",(char *) "col",(char *) "heading",(char *) "format",(char *) "width", NULL
27352 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:ListCtrl_InsertColumn",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
27353 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27354 if (SWIG_arg_fail(1)) SWIG_fail
;
27356 arg2
= static_cast<long >(SWIG_As_long(obj1
));
27357 if (SWIG_arg_fail(2)) SWIG_fail
;
27360 arg3
= wxString_in_helper(obj2
);
27361 if (arg3
== NULL
) SWIG_fail
;
27366 arg4
= static_cast<int >(SWIG_As_int(obj3
));
27367 if (SWIG_arg_fail(4)) SWIG_fail
;
27372 arg5
= static_cast<int >(SWIG_As_int(obj4
));
27373 if (SWIG_arg_fail(5)) SWIG_fail
;
27377 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27378 result
= (long)(arg1
)->InsertColumn(arg2
,(wxString
const &)*arg3
,arg4
,arg5
);
27380 wxPyEndAllowThreads(__tstate
);
27381 if (PyErr_Occurred()) SWIG_fail
;
27384 resultobj
= SWIG_From_long(static_cast<long >(result
));
27400 static PyObject
*_wrap_ListCtrl_SetItemCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27401 PyObject
*resultobj
= NULL
;
27402 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27404 PyObject
* obj0
= 0 ;
27405 PyObject
* obj1
= 0 ;
27406 char *kwnames
[] = {
27407 (char *) "self",(char *) "count", NULL
27410 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_SetItemCount",kwnames
,&obj0
,&obj1
)) goto fail
;
27411 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27412 if (SWIG_arg_fail(1)) SWIG_fail
;
27414 arg2
= static_cast<long >(SWIG_As_long(obj1
));
27415 if (SWIG_arg_fail(2)) SWIG_fail
;
27418 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27419 (arg1
)->SetItemCount(arg2
);
27421 wxPyEndAllowThreads(__tstate
);
27422 if (PyErr_Occurred()) SWIG_fail
;
27424 Py_INCREF(Py_None
); resultobj
= Py_None
;
27431 static PyObject
*_wrap_ListCtrl_ScrollList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27432 PyObject
*resultobj
= NULL
;
27433 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27437 PyObject
* obj0
= 0 ;
27438 PyObject
* obj1
= 0 ;
27439 PyObject
* obj2
= 0 ;
27440 char *kwnames
[] = {
27441 (char *) "self",(char *) "dx",(char *) "dy", NULL
27444 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_ScrollList",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
27445 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27446 if (SWIG_arg_fail(1)) SWIG_fail
;
27448 arg2
= static_cast<int >(SWIG_As_int(obj1
));
27449 if (SWIG_arg_fail(2)) SWIG_fail
;
27452 arg3
= static_cast<int >(SWIG_As_int(obj2
));
27453 if (SWIG_arg_fail(3)) SWIG_fail
;
27456 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27457 result
= (bool)(arg1
)->ScrollList(arg2
,arg3
);
27459 wxPyEndAllowThreads(__tstate
);
27460 if (PyErr_Occurred()) SWIG_fail
;
27463 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27471 static PyObject
*_wrap_ListCtrl_SetItemTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27472 PyObject
*resultobj
= NULL
;
27473 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27475 wxColour
*arg3
= 0 ;
27477 PyObject
* obj0
= 0 ;
27478 PyObject
* obj1
= 0 ;
27479 PyObject
* obj2
= 0 ;
27480 char *kwnames
[] = {
27481 (char *) "self",(char *) "item",(char *) "col", NULL
27484 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetItemTextColour",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
27485 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27486 if (SWIG_arg_fail(1)) SWIG_fail
;
27488 arg2
= static_cast<long >(SWIG_As_long(obj1
));
27489 if (SWIG_arg_fail(2)) SWIG_fail
;
27493 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
27496 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27497 (arg1
)->SetItemTextColour(arg2
,(wxColour
const &)*arg3
);
27499 wxPyEndAllowThreads(__tstate
);
27500 if (PyErr_Occurred()) SWIG_fail
;
27502 Py_INCREF(Py_None
); resultobj
= Py_None
;
27509 static PyObject
*_wrap_ListCtrl_GetItemTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27510 PyObject
*resultobj
= NULL
;
27511 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27514 PyObject
* obj0
= 0 ;
27515 PyObject
* obj1
= 0 ;
27516 char *kwnames
[] = {
27517 (char *) "self",(char *) "item", NULL
27520 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetItemTextColour",kwnames
,&obj0
,&obj1
)) goto fail
;
27521 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27522 if (SWIG_arg_fail(1)) SWIG_fail
;
27524 arg2
= static_cast<long >(SWIG_As_long(obj1
));
27525 if (SWIG_arg_fail(2)) SWIG_fail
;
27528 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27529 result
= ((wxPyListCtrl
const *)arg1
)->GetItemTextColour(arg2
);
27531 wxPyEndAllowThreads(__tstate
);
27532 if (PyErr_Occurred()) SWIG_fail
;
27535 wxColour
* resultptr
;
27536 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
27537 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
27545 static PyObject
*_wrap_ListCtrl_SetItemBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27546 PyObject
*resultobj
= NULL
;
27547 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27549 wxColour
*arg3
= 0 ;
27551 PyObject
* obj0
= 0 ;
27552 PyObject
* obj1
= 0 ;
27553 PyObject
* obj2
= 0 ;
27554 char *kwnames
[] = {
27555 (char *) "self",(char *) "item",(char *) "col", NULL
27558 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetItemBackgroundColour",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
27559 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27560 if (SWIG_arg_fail(1)) SWIG_fail
;
27562 arg2
= static_cast<long >(SWIG_As_long(obj1
));
27563 if (SWIG_arg_fail(2)) SWIG_fail
;
27567 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
27570 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27571 (arg1
)->SetItemBackgroundColour(arg2
,(wxColour
const &)*arg3
);
27573 wxPyEndAllowThreads(__tstate
);
27574 if (PyErr_Occurred()) SWIG_fail
;
27576 Py_INCREF(Py_None
); resultobj
= Py_None
;
27583 static PyObject
*_wrap_ListCtrl_GetItemBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27584 PyObject
*resultobj
= NULL
;
27585 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27588 PyObject
* obj0
= 0 ;
27589 PyObject
* obj1
= 0 ;
27590 char *kwnames
[] = {
27591 (char *) "self",(char *) "item", NULL
27594 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetItemBackgroundColour",kwnames
,&obj0
,&obj1
)) goto fail
;
27595 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27596 if (SWIG_arg_fail(1)) SWIG_fail
;
27598 arg2
= static_cast<long >(SWIG_As_long(obj1
));
27599 if (SWIG_arg_fail(2)) SWIG_fail
;
27602 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27603 result
= ((wxPyListCtrl
const *)arg1
)->GetItemBackgroundColour(arg2
);
27605 wxPyEndAllowThreads(__tstate
);
27606 if (PyErr_Occurred()) SWIG_fail
;
27609 wxColour
* resultptr
;
27610 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
27611 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
27619 static PyObject
*_wrap_ListCtrl_SetItemFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27620 PyObject
*resultobj
= NULL
;
27621 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27624 PyObject
* obj0
= 0 ;
27625 PyObject
* obj1
= 0 ;
27626 PyObject
* obj2
= 0 ;
27627 char *kwnames
[] = {
27628 (char *) "self",(char *) "item",(char *) "f", NULL
27631 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetItemFont",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
27632 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27633 if (SWIG_arg_fail(1)) SWIG_fail
;
27635 arg2
= static_cast<long >(SWIG_As_long(obj1
));
27636 if (SWIG_arg_fail(2)) SWIG_fail
;
27639 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
27640 if (SWIG_arg_fail(3)) SWIG_fail
;
27641 if (arg3
== NULL
) {
27642 SWIG_null_ref("wxFont");
27644 if (SWIG_arg_fail(3)) SWIG_fail
;
27647 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27648 (arg1
)->SetItemFont(arg2
,(wxFont
const &)*arg3
);
27650 wxPyEndAllowThreads(__tstate
);
27651 if (PyErr_Occurred()) SWIG_fail
;
27653 Py_INCREF(Py_None
); resultobj
= Py_None
;
27660 static PyObject
*_wrap_ListCtrl_GetItemFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27661 PyObject
*resultobj
= NULL
;
27662 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27665 PyObject
* obj0
= 0 ;
27666 PyObject
* obj1
= 0 ;
27667 char *kwnames
[] = {
27668 (char *) "self",(char *) "item", NULL
27671 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetItemFont",kwnames
,&obj0
,&obj1
)) goto fail
;
27672 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27673 if (SWIG_arg_fail(1)) SWIG_fail
;
27675 arg2
= static_cast<long >(SWIG_As_long(obj1
));
27676 if (SWIG_arg_fail(2)) SWIG_fail
;
27679 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27680 result
= ((wxPyListCtrl
const *)arg1
)->GetItemFont(arg2
);
27682 wxPyEndAllowThreads(__tstate
);
27683 if (PyErr_Occurred()) SWIG_fail
;
27686 wxFont
* resultptr
;
27687 resultptr
= new wxFont(static_cast<wxFont
& >(result
));
27688 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxFont
, 1);
27696 static PyObject
*_wrap_ListCtrl_SortItems(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27697 PyObject
*resultobj
= NULL
;
27698 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27699 PyObject
*arg2
= (PyObject
*) 0 ;
27701 PyObject
* obj0
= 0 ;
27702 PyObject
* obj1
= 0 ;
27703 char *kwnames
[] = {
27704 (char *) "self",(char *) "func", NULL
27707 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_SortItems",kwnames
,&obj0
,&obj1
)) goto fail
;
27708 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27709 if (SWIG_arg_fail(1)) SWIG_fail
;
27712 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27713 result
= (bool)wxPyListCtrl_SortItems(arg1
,arg2
);
27715 wxPyEndAllowThreads(__tstate
);
27716 if (PyErr_Occurred()) SWIG_fail
;
27719 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27727 static PyObject
*_wrap_ListCtrl_GetMainWindow(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27728 PyObject
*resultobj
= NULL
;
27729 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
27731 PyObject
* obj0
= 0 ;
27732 char *kwnames
[] = {
27733 (char *) "self", NULL
27736 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetMainWindow",kwnames
,&obj0
)) goto fail
;
27737 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
27738 if (SWIG_arg_fail(1)) SWIG_fail
;
27740 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27741 result
= (wxWindow
*)wxPyListCtrl_GetMainWindow(arg1
);
27743 wxPyEndAllowThreads(__tstate
);
27744 if (PyErr_Occurred()) SWIG_fail
;
27747 resultobj
= wxPyMake_wxObject(result
, 0);
27755 static PyObject
*_wrap_ListCtrl_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27756 PyObject
*resultobj
= NULL
;
27757 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
27758 wxVisualAttributes result
;
27759 PyObject
* obj0
= 0 ;
27760 char *kwnames
[] = {
27761 (char *) "variant", NULL
27764 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ListCtrl_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
27767 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
27768 if (SWIG_arg_fail(1)) SWIG_fail
;
27772 if (!wxPyCheckForApp()) SWIG_fail
;
27773 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27774 result
= wxPyListCtrl::GetClassDefaultAttributes(arg1
);
27776 wxPyEndAllowThreads(__tstate
);
27777 if (PyErr_Occurred()) SWIG_fail
;
27780 wxVisualAttributes
* resultptr
;
27781 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
27782 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
27790 static PyObject
* ListCtrl_swigregister(PyObject
*, PyObject
*args
) {
27792 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
27793 SWIG_TypeClientData(SWIGTYPE_p_wxPyListCtrl
, obj
);
27795 return Py_BuildValue((char *)"");
27797 static PyObject
*_wrap_new_ListView(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27798 PyObject
*resultobj
= NULL
;
27799 wxWindow
*arg1
= (wxWindow
*) 0 ;
27800 int arg2
= (int) -1 ;
27801 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
27802 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
27803 wxSize
const &arg4_defvalue
= wxDefaultSize
;
27804 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
27805 long arg5
= (long) wxLC_REPORT
;
27806 wxValidator
const &arg6_defvalue
= wxDefaultValidator
;
27807 wxValidator
*arg6
= (wxValidator
*) &arg6_defvalue
;
27808 wxString
const &arg7_defvalue
= wxPyListCtrlNameStr
;
27809 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
27810 wxListView
*result
;
27813 bool temp7
= false ;
27814 PyObject
* obj0
= 0 ;
27815 PyObject
* obj1
= 0 ;
27816 PyObject
* obj2
= 0 ;
27817 PyObject
* obj3
= 0 ;
27818 PyObject
* obj4
= 0 ;
27819 PyObject
* obj5
= 0 ;
27820 PyObject
* obj6
= 0 ;
27821 char *kwnames
[] = {
27822 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
27825 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_ListView",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
27826 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
27827 if (SWIG_arg_fail(1)) SWIG_fail
;
27830 arg2
= static_cast<int >(SWIG_As_int(obj1
));
27831 if (SWIG_arg_fail(2)) SWIG_fail
;
27837 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
27843 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
27848 arg5
= static_cast<long >(SWIG_As_long(obj4
));
27849 if (SWIG_arg_fail(5)) SWIG_fail
;
27854 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
27855 if (SWIG_arg_fail(6)) SWIG_fail
;
27856 if (arg6
== NULL
) {
27857 SWIG_null_ref("wxValidator");
27859 if (SWIG_arg_fail(6)) SWIG_fail
;
27864 arg7
= wxString_in_helper(obj6
);
27865 if (arg7
== NULL
) SWIG_fail
;
27870 if (!wxPyCheckForApp()) SWIG_fail
;
27871 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27872 result
= (wxListView
*)new wxListView(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxValidator
const &)*arg6
,(wxString
const &)*arg7
);
27874 wxPyEndAllowThreads(__tstate
);
27875 if (PyErr_Occurred()) SWIG_fail
;
27877 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListView
, 1);
27892 static PyObject
*_wrap_new_PreListView(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27893 PyObject
*resultobj
= NULL
;
27894 wxListView
*result
;
27895 char *kwnames
[] = {
27899 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreListView",kwnames
)) goto fail
;
27901 if (!wxPyCheckForApp()) SWIG_fail
;
27902 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27903 result
= (wxListView
*)new wxListView();
27905 wxPyEndAllowThreads(__tstate
);
27906 if (PyErr_Occurred()) SWIG_fail
;
27908 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListView
, 1);
27915 static PyObject
*_wrap_ListView_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27916 PyObject
*resultobj
= NULL
;
27917 wxListView
*arg1
= (wxListView
*) 0 ;
27918 wxWindow
*arg2
= (wxWindow
*) 0 ;
27919 int arg3
= (int) -1 ;
27920 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
27921 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
27922 wxSize
const &arg5_defvalue
= wxDefaultSize
;
27923 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
27924 long arg6
= (long) wxLC_REPORT
;
27925 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
27926 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
27927 wxString
const &arg8_defvalue
= wxPyListCtrlNameStr
;
27928 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
27932 bool temp8
= false ;
27933 PyObject
* obj0
= 0 ;
27934 PyObject
* obj1
= 0 ;
27935 PyObject
* obj2
= 0 ;
27936 PyObject
* obj3
= 0 ;
27937 PyObject
* obj4
= 0 ;
27938 PyObject
* obj5
= 0 ;
27939 PyObject
* obj6
= 0 ;
27940 PyObject
* obj7
= 0 ;
27941 char *kwnames
[] = {
27942 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
27945 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:ListView_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
27946 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
27947 if (SWIG_arg_fail(1)) SWIG_fail
;
27948 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
27949 if (SWIG_arg_fail(2)) SWIG_fail
;
27952 arg3
= static_cast<int >(SWIG_As_int(obj2
));
27953 if (SWIG_arg_fail(3)) SWIG_fail
;
27959 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
27965 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
27970 arg6
= static_cast<long >(SWIG_As_long(obj5
));
27971 if (SWIG_arg_fail(6)) SWIG_fail
;
27976 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
27977 if (SWIG_arg_fail(7)) SWIG_fail
;
27978 if (arg7
== NULL
) {
27979 SWIG_null_ref("wxValidator");
27981 if (SWIG_arg_fail(7)) SWIG_fail
;
27986 arg8
= wxString_in_helper(obj7
);
27987 if (arg8
== NULL
) SWIG_fail
;
27992 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27993 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
27995 wxPyEndAllowThreads(__tstate
);
27996 if (PyErr_Occurred()) SWIG_fail
;
27999 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28015 static PyObject
*_wrap_ListView_Select(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28016 PyObject
*resultobj
= NULL
;
28017 wxListView
*arg1
= (wxListView
*) 0 ;
28019 bool arg3
= (bool) true ;
28020 PyObject
* obj0
= 0 ;
28021 PyObject
* obj1
= 0 ;
28022 PyObject
* obj2
= 0 ;
28023 char *kwnames
[] = {
28024 (char *) "self",(char *) "n",(char *) "on", NULL
28027 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ListView_Select",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
28028 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
28029 if (SWIG_arg_fail(1)) SWIG_fail
;
28031 arg2
= static_cast<long >(SWIG_As_long(obj1
));
28032 if (SWIG_arg_fail(2)) SWIG_fail
;
28036 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
28037 if (SWIG_arg_fail(3)) SWIG_fail
;
28041 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28042 (arg1
)->Select(arg2
,arg3
);
28044 wxPyEndAllowThreads(__tstate
);
28045 if (PyErr_Occurred()) SWIG_fail
;
28047 Py_INCREF(Py_None
); resultobj
= Py_None
;
28054 static PyObject
*_wrap_ListView_Focus(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28055 PyObject
*resultobj
= NULL
;
28056 wxListView
*arg1
= (wxListView
*) 0 ;
28058 PyObject
* obj0
= 0 ;
28059 PyObject
* obj1
= 0 ;
28060 char *kwnames
[] = {
28061 (char *) "self",(char *) "index", NULL
28064 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListView_Focus",kwnames
,&obj0
,&obj1
)) goto fail
;
28065 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
28066 if (SWIG_arg_fail(1)) SWIG_fail
;
28068 arg2
= static_cast<long >(SWIG_As_long(obj1
));
28069 if (SWIG_arg_fail(2)) SWIG_fail
;
28072 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28073 (arg1
)->Focus(arg2
);
28075 wxPyEndAllowThreads(__tstate
);
28076 if (PyErr_Occurred()) SWIG_fail
;
28078 Py_INCREF(Py_None
); resultobj
= Py_None
;
28085 static PyObject
*_wrap_ListView_GetFocusedItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28086 PyObject
*resultobj
= NULL
;
28087 wxListView
*arg1
= (wxListView
*) 0 ;
28089 PyObject
* obj0
= 0 ;
28090 char *kwnames
[] = {
28091 (char *) "self", NULL
28094 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListView_GetFocusedItem",kwnames
,&obj0
)) goto fail
;
28095 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
28096 if (SWIG_arg_fail(1)) SWIG_fail
;
28098 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28099 result
= (long)((wxListView
const *)arg1
)->GetFocusedItem();
28101 wxPyEndAllowThreads(__tstate
);
28102 if (PyErr_Occurred()) SWIG_fail
;
28105 resultobj
= SWIG_From_long(static_cast<long >(result
));
28113 static PyObject
*_wrap_ListView_GetNextSelected(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28114 PyObject
*resultobj
= NULL
;
28115 wxListView
*arg1
= (wxListView
*) 0 ;
28118 PyObject
* obj0
= 0 ;
28119 PyObject
* obj1
= 0 ;
28120 char *kwnames
[] = {
28121 (char *) "self",(char *) "item", NULL
28124 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListView_GetNextSelected",kwnames
,&obj0
,&obj1
)) goto fail
;
28125 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
28126 if (SWIG_arg_fail(1)) SWIG_fail
;
28128 arg2
= static_cast<long >(SWIG_As_long(obj1
));
28129 if (SWIG_arg_fail(2)) SWIG_fail
;
28132 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28133 result
= (long)((wxListView
const *)arg1
)->GetNextSelected(arg2
);
28135 wxPyEndAllowThreads(__tstate
);
28136 if (PyErr_Occurred()) SWIG_fail
;
28139 resultobj
= SWIG_From_long(static_cast<long >(result
));
28147 static PyObject
*_wrap_ListView_GetFirstSelected(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28148 PyObject
*resultobj
= NULL
;
28149 wxListView
*arg1
= (wxListView
*) 0 ;
28151 PyObject
* obj0
= 0 ;
28152 char *kwnames
[] = {
28153 (char *) "self", NULL
28156 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListView_GetFirstSelected",kwnames
,&obj0
)) goto fail
;
28157 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
28158 if (SWIG_arg_fail(1)) SWIG_fail
;
28160 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28161 result
= (long)((wxListView
const *)arg1
)->GetFirstSelected();
28163 wxPyEndAllowThreads(__tstate
);
28164 if (PyErr_Occurred()) SWIG_fail
;
28167 resultobj
= SWIG_From_long(static_cast<long >(result
));
28175 static PyObject
*_wrap_ListView_IsSelected(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28176 PyObject
*resultobj
= NULL
;
28177 wxListView
*arg1
= (wxListView
*) 0 ;
28180 PyObject
* obj0
= 0 ;
28181 PyObject
* obj1
= 0 ;
28182 char *kwnames
[] = {
28183 (char *) "self",(char *) "index", NULL
28186 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListView_IsSelected",kwnames
,&obj0
,&obj1
)) goto fail
;
28187 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
28188 if (SWIG_arg_fail(1)) SWIG_fail
;
28190 arg2
= static_cast<long >(SWIG_As_long(obj1
));
28191 if (SWIG_arg_fail(2)) SWIG_fail
;
28194 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28195 result
= (bool)(arg1
)->IsSelected(arg2
);
28197 wxPyEndAllowThreads(__tstate
);
28198 if (PyErr_Occurred()) SWIG_fail
;
28201 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28209 static PyObject
*_wrap_ListView_SetColumnImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28210 PyObject
*resultobj
= NULL
;
28211 wxListView
*arg1
= (wxListView
*) 0 ;
28214 PyObject
* obj0
= 0 ;
28215 PyObject
* obj1
= 0 ;
28216 PyObject
* obj2
= 0 ;
28217 char *kwnames
[] = {
28218 (char *) "self",(char *) "col",(char *) "image", NULL
28221 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListView_SetColumnImage",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
28222 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
28223 if (SWIG_arg_fail(1)) SWIG_fail
;
28225 arg2
= static_cast<int >(SWIG_As_int(obj1
));
28226 if (SWIG_arg_fail(2)) SWIG_fail
;
28229 arg3
= static_cast<int >(SWIG_As_int(obj2
));
28230 if (SWIG_arg_fail(3)) SWIG_fail
;
28233 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28234 (arg1
)->SetColumnImage(arg2
,arg3
);
28236 wxPyEndAllowThreads(__tstate
);
28237 if (PyErr_Occurred()) SWIG_fail
;
28239 Py_INCREF(Py_None
); resultobj
= Py_None
;
28246 static PyObject
*_wrap_ListView_ClearColumnImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28247 PyObject
*resultobj
= NULL
;
28248 wxListView
*arg1
= (wxListView
*) 0 ;
28250 PyObject
* obj0
= 0 ;
28251 PyObject
* obj1
= 0 ;
28252 char *kwnames
[] = {
28253 (char *) "self",(char *) "col", NULL
28256 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListView_ClearColumnImage",kwnames
,&obj0
,&obj1
)) goto fail
;
28257 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
28258 if (SWIG_arg_fail(1)) SWIG_fail
;
28260 arg2
= static_cast<int >(SWIG_As_int(obj1
));
28261 if (SWIG_arg_fail(2)) SWIG_fail
;
28264 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28265 (arg1
)->ClearColumnImage(arg2
);
28267 wxPyEndAllowThreads(__tstate
);
28268 if (PyErr_Occurred()) SWIG_fail
;
28270 Py_INCREF(Py_None
); resultobj
= Py_None
;
28277 static PyObject
* ListView_swigregister(PyObject
*, PyObject
*args
) {
28279 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
28280 SWIG_TypeClientData(SWIGTYPE_p_wxListView
, obj
);
28282 return Py_BuildValue((char *)"");
28284 static int _wrap_TreeCtrlNameStr_set(PyObject
*) {
28285 PyErr_SetString(PyExc_TypeError
,"Variable TreeCtrlNameStr is read-only.");
28290 static PyObject
*_wrap_TreeCtrlNameStr_get(void) {
28291 PyObject
*pyobj
= NULL
;
28295 pyobj
= PyUnicode_FromWideChar((&wxPyTreeCtrlNameStr
)->c_str(), (&wxPyTreeCtrlNameStr
)->Len());
28297 pyobj
= PyString_FromStringAndSize((&wxPyTreeCtrlNameStr
)->c_str(), (&wxPyTreeCtrlNameStr
)->Len());
28304 static PyObject
*_wrap_new_TreeItemId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28305 PyObject
*resultobj
= NULL
;
28306 wxTreeItemId
*result
;
28307 char *kwnames
[] = {
28311 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_TreeItemId",kwnames
)) goto fail
;
28313 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28314 result
= (wxTreeItemId
*)new wxTreeItemId();
28316 wxPyEndAllowThreads(__tstate
);
28317 if (PyErr_Occurred()) SWIG_fail
;
28319 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTreeItemId
, 1);
28326 static PyObject
*_wrap_delete_TreeItemId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28327 PyObject
*resultobj
= NULL
;
28328 wxTreeItemId
*arg1
= (wxTreeItemId
*) 0 ;
28329 PyObject
* obj0
= 0 ;
28330 char *kwnames
[] = {
28331 (char *) "self", NULL
28334 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_TreeItemId",kwnames
,&obj0
)) goto fail
;
28335 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28336 if (SWIG_arg_fail(1)) SWIG_fail
;
28338 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28341 wxPyEndAllowThreads(__tstate
);
28342 if (PyErr_Occurred()) SWIG_fail
;
28344 Py_INCREF(Py_None
); resultobj
= Py_None
;
28351 static PyObject
*_wrap_TreeItemId_IsOk(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28352 PyObject
*resultobj
= NULL
;
28353 wxTreeItemId
*arg1
= (wxTreeItemId
*) 0 ;
28355 PyObject
* obj0
= 0 ;
28356 char *kwnames
[] = {
28357 (char *) "self", NULL
28360 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeItemId_IsOk",kwnames
,&obj0
)) goto fail
;
28361 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28362 if (SWIG_arg_fail(1)) SWIG_fail
;
28364 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28365 result
= (bool)((wxTreeItemId
const *)arg1
)->IsOk();
28367 wxPyEndAllowThreads(__tstate
);
28368 if (PyErr_Occurred()) SWIG_fail
;
28371 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28379 static PyObject
*_wrap_TreeItemId___eq__(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28380 PyObject
*resultobj
= NULL
;
28381 wxTreeItemId
*arg1
= (wxTreeItemId
*) 0 ;
28382 wxTreeItemId
*arg2
= (wxTreeItemId
*) 0 ;
28384 PyObject
* obj0
= 0 ;
28385 PyObject
* obj1
= 0 ;
28386 char *kwnames
[] = {
28387 (char *) "self",(char *) "other", NULL
28390 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeItemId___eq__",kwnames
,&obj0
,&obj1
)) goto fail
;
28391 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28392 if (SWIG_arg_fail(1)) SWIG_fail
;
28393 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28394 if (SWIG_arg_fail(2)) SWIG_fail
;
28396 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28397 result
= (bool)wxTreeItemId___eq__(arg1
,(wxTreeItemId
const *)arg2
);
28399 wxPyEndAllowThreads(__tstate
);
28400 if (PyErr_Occurred()) SWIG_fail
;
28403 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28411 static PyObject
*_wrap_TreeItemId___ne__(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28412 PyObject
*resultobj
= NULL
;
28413 wxTreeItemId
*arg1
= (wxTreeItemId
*) 0 ;
28414 wxTreeItemId
*arg2
= (wxTreeItemId
*) 0 ;
28416 PyObject
* obj0
= 0 ;
28417 PyObject
* obj1
= 0 ;
28418 char *kwnames
[] = {
28419 (char *) "self",(char *) "other", NULL
28422 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeItemId___ne__",kwnames
,&obj0
,&obj1
)) goto fail
;
28423 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28424 if (SWIG_arg_fail(1)) SWIG_fail
;
28425 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28426 if (SWIG_arg_fail(2)) SWIG_fail
;
28428 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28429 result
= (bool)wxTreeItemId___ne__(arg1
,(wxTreeItemId
const *)arg2
);
28431 wxPyEndAllowThreads(__tstate
);
28432 if (PyErr_Occurred()) SWIG_fail
;
28435 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28443 static PyObject
*_wrap_TreeItemId_m_pItem_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28444 PyObject
*resultobj
= NULL
;
28445 wxTreeItemId
*arg1
= (wxTreeItemId
*) 0 ;
28446 void *arg2
= (void *) 0 ;
28447 PyObject
* obj0
= 0 ;
28448 PyObject
* obj1
= 0 ;
28449 char *kwnames
[] = {
28450 (char *) "self",(char *) "m_pItem", NULL
28453 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeItemId_m_pItem_set",kwnames
,&obj0
,&obj1
)) goto fail
;
28454 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28455 if (SWIG_arg_fail(1)) SWIG_fail
;
28457 if ((SWIG_ConvertPtr(obj1
,reinterpret_cast<void ** >(&arg2
),0,SWIG_POINTER_EXCEPTION
|SWIG_POINTER_DISOWN
))== -1) {
28458 SWIG_arg_fail(2);SWIG_fail
;
28461 if (arg1
) (arg1
)->m_pItem
= arg2
;
28463 Py_INCREF(Py_None
); resultobj
= Py_None
;
28470 static PyObject
*_wrap_TreeItemId_m_pItem_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28471 PyObject
*resultobj
= NULL
;
28472 wxTreeItemId
*arg1
= (wxTreeItemId
*) 0 ;
28474 PyObject
* obj0
= 0 ;
28475 char *kwnames
[] = {
28476 (char *) "self", NULL
28479 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeItemId_m_pItem_get",kwnames
,&obj0
)) goto fail
;
28480 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28481 if (SWIG_arg_fail(1)) SWIG_fail
;
28482 result
= (void *) ((arg1
)->m_pItem
);
28484 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_void
, 0);
28491 static PyObject
* TreeItemId_swigregister(PyObject
*, PyObject
*args
) {
28493 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
28494 SWIG_TypeClientData(SWIGTYPE_p_wxTreeItemId
, obj
);
28496 return Py_BuildValue((char *)"");
28498 static PyObject
*_wrap_new_TreeItemData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28499 PyObject
*resultobj
= NULL
;
28500 PyObject
*arg1
= (PyObject
*) NULL
;
28501 wxPyTreeItemData
*result
;
28502 PyObject
* obj0
= 0 ;
28503 char *kwnames
[] = {
28504 (char *) "obj", NULL
28507 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_TreeItemData",kwnames
,&obj0
)) goto fail
;
28512 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28513 result
= (wxPyTreeItemData
*)new wxPyTreeItemData(arg1
);
28515 wxPyEndAllowThreads(__tstate
);
28516 if (PyErr_Occurred()) SWIG_fail
;
28518 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyTreeItemData
, 1);
28525 static PyObject
*_wrap_delete_TreeItemData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28526 PyObject
*resultobj
= NULL
;
28527 wxPyTreeItemData
*arg1
= (wxPyTreeItemData
*) 0 ;
28528 PyObject
* obj0
= 0 ;
28529 char *kwnames
[] = {
28530 (char *) "self", NULL
28533 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_TreeItemData",kwnames
,&obj0
)) goto fail
;
28534 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
28535 if (SWIG_arg_fail(1)) SWIG_fail
;
28537 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28540 wxPyEndAllowThreads(__tstate
);
28541 if (PyErr_Occurred()) SWIG_fail
;
28543 Py_INCREF(Py_None
); resultobj
= Py_None
;
28550 static PyObject
*_wrap_TreeItemData_GetData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28551 PyObject
*resultobj
= NULL
;
28552 wxPyTreeItemData
*arg1
= (wxPyTreeItemData
*) 0 ;
28554 PyObject
* obj0
= 0 ;
28555 char *kwnames
[] = {
28556 (char *) "self", NULL
28559 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeItemData_GetData",kwnames
,&obj0
)) goto fail
;
28560 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
28561 if (SWIG_arg_fail(1)) SWIG_fail
;
28563 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28564 result
= (PyObject
*)(arg1
)->GetData();
28566 wxPyEndAllowThreads(__tstate
);
28567 if (PyErr_Occurred()) SWIG_fail
;
28569 resultobj
= result
;
28576 static PyObject
*_wrap_TreeItemData_SetData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28577 PyObject
*resultobj
= NULL
;
28578 wxPyTreeItemData
*arg1
= (wxPyTreeItemData
*) 0 ;
28579 PyObject
*arg2
= (PyObject
*) 0 ;
28580 PyObject
* obj0
= 0 ;
28581 PyObject
* obj1
= 0 ;
28582 char *kwnames
[] = {
28583 (char *) "self",(char *) "obj", NULL
28586 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeItemData_SetData",kwnames
,&obj0
,&obj1
)) goto fail
;
28587 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
28588 if (SWIG_arg_fail(1)) SWIG_fail
;
28591 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28592 (arg1
)->SetData(arg2
);
28594 wxPyEndAllowThreads(__tstate
);
28595 if (PyErr_Occurred()) SWIG_fail
;
28597 Py_INCREF(Py_None
); resultobj
= Py_None
;
28604 static PyObject
*_wrap_TreeItemData_GetId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28605 PyObject
*resultobj
= NULL
;
28606 wxPyTreeItemData
*arg1
= (wxPyTreeItemData
*) 0 ;
28607 wxTreeItemId
*result
;
28608 PyObject
* obj0
= 0 ;
28609 char *kwnames
[] = {
28610 (char *) "self", NULL
28613 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeItemData_GetId",kwnames
,&obj0
)) goto fail
;
28614 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
28615 if (SWIG_arg_fail(1)) SWIG_fail
;
28617 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28619 wxTreeItemId
const &_result_ref
= (arg1
)->GetId();
28620 result
= (wxTreeItemId
*) &_result_ref
;
28623 wxPyEndAllowThreads(__tstate
);
28624 if (PyErr_Occurred()) SWIG_fail
;
28626 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTreeItemId
, 0);
28633 static PyObject
*_wrap_TreeItemData_SetId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28634 PyObject
*resultobj
= NULL
;
28635 wxPyTreeItemData
*arg1
= (wxPyTreeItemData
*) 0 ;
28636 wxTreeItemId
*arg2
= 0 ;
28637 PyObject
* obj0
= 0 ;
28638 PyObject
* obj1
= 0 ;
28639 char *kwnames
[] = {
28640 (char *) "self",(char *) "id", NULL
28643 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeItemData_SetId",kwnames
,&obj0
,&obj1
)) goto fail
;
28644 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
28645 if (SWIG_arg_fail(1)) SWIG_fail
;
28647 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28648 if (SWIG_arg_fail(2)) SWIG_fail
;
28649 if (arg2
== NULL
) {
28650 SWIG_null_ref("wxTreeItemId");
28652 if (SWIG_arg_fail(2)) SWIG_fail
;
28655 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28656 (arg1
)->SetId((wxTreeItemId
const &)*arg2
);
28658 wxPyEndAllowThreads(__tstate
);
28659 if (PyErr_Occurred()) SWIG_fail
;
28661 Py_INCREF(Py_None
); resultobj
= Py_None
;
28668 static PyObject
*_wrap_TreeItemData_Destroy(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28669 PyObject
*resultobj
= NULL
;
28670 wxPyTreeItemData
*arg1
= (wxPyTreeItemData
*) 0 ;
28671 PyObject
* obj0
= 0 ;
28672 char *kwnames
[] = {
28673 (char *) "self", NULL
28676 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeItemData_Destroy",kwnames
,&obj0
)) goto fail
;
28677 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
28678 if (SWIG_arg_fail(1)) SWIG_fail
;
28680 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28681 wxPyTreeItemData_Destroy(arg1
);
28683 wxPyEndAllowThreads(__tstate
);
28684 if (PyErr_Occurred()) SWIG_fail
;
28686 Py_INCREF(Py_None
); resultobj
= Py_None
;
28693 static PyObject
* TreeItemData_swigregister(PyObject
*, PyObject
*args
) {
28695 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
28696 SWIG_TypeClientData(SWIGTYPE_p_wxPyTreeItemData
, obj
);
28698 return Py_BuildValue((char *)"");
28700 static PyObject
*_wrap_new_TreeEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28701 PyObject
*resultobj
= NULL
;
28702 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
28703 int arg2
= (int) 0 ;
28704 wxTreeEvent
*result
;
28705 PyObject
* obj0
= 0 ;
28706 PyObject
* obj1
= 0 ;
28707 char *kwnames
[] = {
28708 (char *) "commandType",(char *) "id", NULL
28711 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_TreeEvent",kwnames
,&obj0
,&obj1
)) goto fail
;
28714 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
28715 if (SWIG_arg_fail(1)) SWIG_fail
;
28720 arg2
= static_cast<int >(SWIG_As_int(obj1
));
28721 if (SWIG_arg_fail(2)) SWIG_fail
;
28725 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28726 result
= (wxTreeEvent
*)new wxTreeEvent(arg1
,arg2
);
28728 wxPyEndAllowThreads(__tstate
);
28729 if (PyErr_Occurred()) SWIG_fail
;
28731 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTreeEvent
, 1);
28738 static PyObject
*_wrap_TreeEvent_GetItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28739 PyObject
*resultobj
= NULL
;
28740 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
28741 wxTreeItemId result
;
28742 PyObject
* obj0
= 0 ;
28743 char *kwnames
[] = {
28744 (char *) "self", NULL
28747 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_GetItem",kwnames
,&obj0
)) goto fail
;
28748 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
28749 if (SWIG_arg_fail(1)) SWIG_fail
;
28751 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28752 result
= ((wxTreeEvent
const *)arg1
)->GetItem();
28754 wxPyEndAllowThreads(__tstate
);
28755 if (PyErr_Occurred()) SWIG_fail
;
28758 wxTreeItemId
* resultptr
;
28759 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
28760 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
28768 static PyObject
*_wrap_TreeEvent_SetItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28769 PyObject
*resultobj
= NULL
;
28770 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
28771 wxTreeItemId
*arg2
= 0 ;
28772 PyObject
* obj0
= 0 ;
28773 PyObject
* obj1
= 0 ;
28774 char *kwnames
[] = {
28775 (char *) "self",(char *) "item", NULL
28778 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeEvent_SetItem",kwnames
,&obj0
,&obj1
)) goto fail
;
28779 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
28780 if (SWIG_arg_fail(1)) SWIG_fail
;
28782 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28783 if (SWIG_arg_fail(2)) SWIG_fail
;
28784 if (arg2
== NULL
) {
28785 SWIG_null_ref("wxTreeItemId");
28787 if (SWIG_arg_fail(2)) SWIG_fail
;
28790 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28791 (arg1
)->SetItem((wxTreeItemId
const &)*arg2
);
28793 wxPyEndAllowThreads(__tstate
);
28794 if (PyErr_Occurred()) SWIG_fail
;
28796 Py_INCREF(Py_None
); resultobj
= Py_None
;
28803 static PyObject
*_wrap_TreeEvent_GetOldItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28804 PyObject
*resultobj
= NULL
;
28805 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
28806 wxTreeItemId result
;
28807 PyObject
* obj0
= 0 ;
28808 char *kwnames
[] = {
28809 (char *) "self", NULL
28812 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_GetOldItem",kwnames
,&obj0
)) goto fail
;
28813 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
28814 if (SWIG_arg_fail(1)) SWIG_fail
;
28816 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28817 result
= ((wxTreeEvent
const *)arg1
)->GetOldItem();
28819 wxPyEndAllowThreads(__tstate
);
28820 if (PyErr_Occurred()) SWIG_fail
;
28823 wxTreeItemId
* resultptr
;
28824 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
28825 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
28833 static PyObject
*_wrap_TreeEvent_SetOldItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28834 PyObject
*resultobj
= NULL
;
28835 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
28836 wxTreeItemId
*arg2
= 0 ;
28837 PyObject
* obj0
= 0 ;
28838 PyObject
* obj1
= 0 ;
28839 char *kwnames
[] = {
28840 (char *) "self",(char *) "item", NULL
28843 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeEvent_SetOldItem",kwnames
,&obj0
,&obj1
)) goto fail
;
28844 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
28845 if (SWIG_arg_fail(1)) SWIG_fail
;
28847 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28848 if (SWIG_arg_fail(2)) SWIG_fail
;
28849 if (arg2
== NULL
) {
28850 SWIG_null_ref("wxTreeItemId");
28852 if (SWIG_arg_fail(2)) SWIG_fail
;
28855 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28856 (arg1
)->SetOldItem((wxTreeItemId
const &)*arg2
);
28858 wxPyEndAllowThreads(__tstate
);
28859 if (PyErr_Occurred()) SWIG_fail
;
28861 Py_INCREF(Py_None
); resultobj
= Py_None
;
28868 static PyObject
*_wrap_TreeEvent_GetPoint(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28869 PyObject
*resultobj
= NULL
;
28870 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
28872 PyObject
* obj0
= 0 ;
28873 char *kwnames
[] = {
28874 (char *) "self", NULL
28877 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_GetPoint",kwnames
,&obj0
)) goto fail
;
28878 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
28879 if (SWIG_arg_fail(1)) SWIG_fail
;
28881 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28882 result
= ((wxTreeEvent
const *)arg1
)->GetPoint();
28884 wxPyEndAllowThreads(__tstate
);
28885 if (PyErr_Occurred()) SWIG_fail
;
28888 wxPoint
* resultptr
;
28889 resultptr
= new wxPoint(static_cast<wxPoint
& >(result
));
28890 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1);
28898 static PyObject
*_wrap_TreeEvent_SetPoint(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28899 PyObject
*resultobj
= NULL
;
28900 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
28901 wxPoint
*arg2
= 0 ;
28903 PyObject
* obj0
= 0 ;
28904 PyObject
* obj1
= 0 ;
28905 char *kwnames
[] = {
28906 (char *) "self",(char *) "pt", NULL
28909 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeEvent_SetPoint",kwnames
,&obj0
,&obj1
)) goto fail
;
28910 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
28911 if (SWIG_arg_fail(1)) SWIG_fail
;
28914 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
28917 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28918 (arg1
)->SetPoint((wxPoint
const &)*arg2
);
28920 wxPyEndAllowThreads(__tstate
);
28921 if (PyErr_Occurred()) SWIG_fail
;
28923 Py_INCREF(Py_None
); resultobj
= Py_None
;
28930 static PyObject
*_wrap_TreeEvent_GetKeyEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28931 PyObject
*resultobj
= NULL
;
28932 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
28933 wxKeyEvent
*result
;
28934 PyObject
* obj0
= 0 ;
28935 char *kwnames
[] = {
28936 (char *) "self", NULL
28939 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_GetKeyEvent",kwnames
,&obj0
)) goto fail
;
28940 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
28941 if (SWIG_arg_fail(1)) SWIG_fail
;
28943 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28945 wxKeyEvent
const &_result_ref
= ((wxTreeEvent
const *)arg1
)->GetKeyEvent();
28946 result
= (wxKeyEvent
*) &_result_ref
;
28949 wxPyEndAllowThreads(__tstate
);
28950 if (PyErr_Occurred()) SWIG_fail
;
28952 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxKeyEvent
, 0);
28959 static PyObject
*_wrap_TreeEvent_GetKeyCode(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28960 PyObject
*resultobj
= NULL
;
28961 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
28963 PyObject
* obj0
= 0 ;
28964 char *kwnames
[] = {
28965 (char *) "self", NULL
28968 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_GetKeyCode",kwnames
,&obj0
)) goto fail
;
28969 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
28970 if (SWIG_arg_fail(1)) SWIG_fail
;
28972 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28973 result
= (int)((wxTreeEvent
const *)arg1
)->GetKeyCode();
28975 wxPyEndAllowThreads(__tstate
);
28976 if (PyErr_Occurred()) SWIG_fail
;
28979 resultobj
= SWIG_From_int(static_cast<int >(result
));
28987 static PyObject
*_wrap_TreeEvent_SetKeyEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28988 PyObject
*resultobj
= NULL
;
28989 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
28990 wxKeyEvent
*arg2
= 0 ;
28991 PyObject
* obj0
= 0 ;
28992 PyObject
* obj1
= 0 ;
28993 char *kwnames
[] = {
28994 (char *) "self",(char *) "evt", NULL
28997 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeEvent_SetKeyEvent",kwnames
,&obj0
,&obj1
)) goto fail
;
28998 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
28999 if (SWIG_arg_fail(1)) SWIG_fail
;
29001 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxKeyEvent
, SWIG_POINTER_EXCEPTION
| 0);
29002 if (SWIG_arg_fail(2)) SWIG_fail
;
29003 if (arg2
== NULL
) {
29004 SWIG_null_ref("wxKeyEvent");
29006 if (SWIG_arg_fail(2)) SWIG_fail
;
29009 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29010 (arg1
)->SetKeyEvent((wxKeyEvent
const &)*arg2
);
29012 wxPyEndAllowThreads(__tstate
);
29013 if (PyErr_Occurred()) SWIG_fail
;
29015 Py_INCREF(Py_None
); resultobj
= Py_None
;
29022 static PyObject
*_wrap_TreeEvent_GetLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29023 PyObject
*resultobj
= NULL
;
29024 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
29026 PyObject
* obj0
= 0 ;
29027 char *kwnames
[] = {
29028 (char *) "self", NULL
29031 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_GetLabel",kwnames
,&obj0
)) goto fail
;
29032 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
29033 if (SWIG_arg_fail(1)) SWIG_fail
;
29035 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29037 wxString
const &_result_ref
= ((wxTreeEvent
const *)arg1
)->GetLabel();
29038 result
= (wxString
*) &_result_ref
;
29041 wxPyEndAllowThreads(__tstate
);
29042 if (PyErr_Occurred()) SWIG_fail
;
29046 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
29048 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
29057 static PyObject
*_wrap_TreeEvent_SetLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29058 PyObject
*resultobj
= NULL
;
29059 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
29060 wxString
*arg2
= 0 ;
29061 bool temp2
= false ;
29062 PyObject
* obj0
= 0 ;
29063 PyObject
* obj1
= 0 ;
29064 char *kwnames
[] = {
29065 (char *) "self",(char *) "label", NULL
29068 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeEvent_SetLabel",kwnames
,&obj0
,&obj1
)) goto fail
;
29069 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
29070 if (SWIG_arg_fail(1)) SWIG_fail
;
29072 arg2
= wxString_in_helper(obj1
);
29073 if (arg2
== NULL
) SWIG_fail
;
29077 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29078 (arg1
)->SetLabel((wxString
const &)*arg2
);
29080 wxPyEndAllowThreads(__tstate
);
29081 if (PyErr_Occurred()) SWIG_fail
;
29083 Py_INCREF(Py_None
); resultobj
= Py_None
;
29098 static PyObject
*_wrap_TreeEvent_IsEditCancelled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29099 PyObject
*resultobj
= NULL
;
29100 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
29102 PyObject
* obj0
= 0 ;
29103 char *kwnames
[] = {
29104 (char *) "self", NULL
29107 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_IsEditCancelled",kwnames
,&obj0
)) goto fail
;
29108 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
29109 if (SWIG_arg_fail(1)) SWIG_fail
;
29111 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29112 result
= (bool)((wxTreeEvent
const *)arg1
)->IsEditCancelled();
29114 wxPyEndAllowThreads(__tstate
);
29115 if (PyErr_Occurred()) SWIG_fail
;
29118 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29126 static PyObject
*_wrap_TreeEvent_SetEditCanceled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29127 PyObject
*resultobj
= NULL
;
29128 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
29130 PyObject
* obj0
= 0 ;
29131 PyObject
* obj1
= 0 ;
29132 char *kwnames
[] = {
29133 (char *) "self",(char *) "editCancelled", NULL
29136 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeEvent_SetEditCanceled",kwnames
,&obj0
,&obj1
)) goto fail
;
29137 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
29138 if (SWIG_arg_fail(1)) SWIG_fail
;
29140 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
29141 if (SWIG_arg_fail(2)) SWIG_fail
;
29144 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29145 (arg1
)->SetEditCanceled(arg2
);
29147 wxPyEndAllowThreads(__tstate
);
29148 if (PyErr_Occurred()) SWIG_fail
;
29150 Py_INCREF(Py_None
); resultobj
= Py_None
;
29157 static PyObject
*_wrap_TreeEvent_SetToolTip(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29158 PyObject
*resultobj
= NULL
;
29159 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
29160 wxString
*arg2
= 0 ;
29161 bool temp2
= false ;
29162 PyObject
* obj0
= 0 ;
29163 PyObject
* obj1
= 0 ;
29164 char *kwnames
[] = {
29165 (char *) "self",(char *) "toolTip", NULL
29168 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeEvent_SetToolTip",kwnames
,&obj0
,&obj1
)) goto fail
;
29169 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
29170 if (SWIG_arg_fail(1)) SWIG_fail
;
29172 arg2
= wxString_in_helper(obj1
);
29173 if (arg2
== NULL
) SWIG_fail
;
29177 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29178 (arg1
)->SetToolTip((wxString
const &)*arg2
);
29180 wxPyEndAllowThreads(__tstate
);
29181 if (PyErr_Occurred()) SWIG_fail
;
29183 Py_INCREF(Py_None
); resultobj
= Py_None
;
29198 static PyObject
*_wrap_TreeEvent_GetToolTip(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29199 PyObject
*resultobj
= NULL
;
29200 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
29202 PyObject
* obj0
= 0 ;
29203 char *kwnames
[] = {
29204 (char *) "self", NULL
29207 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_GetToolTip",kwnames
,&obj0
)) goto fail
;
29208 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
29209 if (SWIG_arg_fail(1)) SWIG_fail
;
29211 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29212 result
= (arg1
)->GetToolTip();
29214 wxPyEndAllowThreads(__tstate
);
29215 if (PyErr_Occurred()) SWIG_fail
;
29219 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
29221 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
29230 static PyObject
* TreeEvent_swigregister(PyObject
*, PyObject
*args
) {
29232 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
29233 SWIG_TypeClientData(SWIGTYPE_p_wxTreeEvent
, obj
);
29235 return Py_BuildValue((char *)"");
29237 static PyObject
*_wrap_new_TreeCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29238 PyObject
*resultobj
= NULL
;
29239 wxWindow
*arg1
= (wxWindow
*) 0 ;
29240 int arg2
= (int) -1 ;
29241 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
29242 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
29243 wxSize
const &arg4_defvalue
= wxDefaultSize
;
29244 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
29245 long arg5
= (long) wxTR_DEFAULT_STYLE
;
29246 wxValidator
const &arg6_defvalue
= wxDefaultValidator
;
29247 wxValidator
*arg6
= (wxValidator
*) &arg6_defvalue
;
29248 wxString
const &arg7_defvalue
= wxPyTreeCtrlNameStr
;
29249 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
29250 wxPyTreeCtrl
*result
;
29253 bool temp7
= false ;
29254 PyObject
* obj0
= 0 ;
29255 PyObject
* obj1
= 0 ;
29256 PyObject
* obj2
= 0 ;
29257 PyObject
* obj3
= 0 ;
29258 PyObject
* obj4
= 0 ;
29259 PyObject
* obj5
= 0 ;
29260 PyObject
* obj6
= 0 ;
29261 char *kwnames
[] = {
29262 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
29265 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_TreeCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
29266 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
29267 if (SWIG_arg_fail(1)) SWIG_fail
;
29270 arg2
= static_cast<int >(SWIG_As_int(obj1
));
29271 if (SWIG_arg_fail(2)) SWIG_fail
;
29277 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
29283 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
29288 arg5
= static_cast<long >(SWIG_As_long(obj4
));
29289 if (SWIG_arg_fail(5)) SWIG_fail
;
29294 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
29295 if (SWIG_arg_fail(6)) SWIG_fail
;
29296 if (arg6
== NULL
) {
29297 SWIG_null_ref("wxValidator");
29299 if (SWIG_arg_fail(6)) SWIG_fail
;
29304 arg7
= wxString_in_helper(obj6
);
29305 if (arg7
== NULL
) SWIG_fail
;
29310 if (!wxPyCheckForApp()) SWIG_fail
;
29311 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29312 result
= (wxPyTreeCtrl
*)new wxPyTreeCtrl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxValidator
const &)*arg6
,(wxString
const &)*arg7
);
29314 wxPyEndAllowThreads(__tstate
);
29315 if (PyErr_Occurred()) SWIG_fail
;
29317 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyTreeCtrl
, 1);
29332 static PyObject
*_wrap_new_PreTreeCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29333 PyObject
*resultobj
= NULL
;
29334 wxPyTreeCtrl
*result
;
29335 char *kwnames
[] = {
29339 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreTreeCtrl",kwnames
)) goto fail
;
29341 if (!wxPyCheckForApp()) SWIG_fail
;
29342 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29343 result
= (wxPyTreeCtrl
*)new wxPyTreeCtrl();
29345 wxPyEndAllowThreads(__tstate
);
29346 if (PyErr_Occurred()) SWIG_fail
;
29348 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyTreeCtrl
, 1);
29355 static PyObject
*_wrap_TreeCtrl_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29356 PyObject
*resultobj
= NULL
;
29357 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29358 wxWindow
*arg2
= (wxWindow
*) 0 ;
29359 int arg3
= (int) -1 ;
29360 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
29361 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
29362 wxSize
const &arg5_defvalue
= wxDefaultSize
;
29363 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
29364 long arg6
= (long) wxTR_DEFAULT_STYLE
;
29365 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
29366 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
29367 wxString
const &arg8_defvalue
= wxPyTreeCtrlNameStr
;
29368 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
29372 bool temp8
= false ;
29373 PyObject
* obj0
= 0 ;
29374 PyObject
* obj1
= 0 ;
29375 PyObject
* obj2
= 0 ;
29376 PyObject
* obj3
= 0 ;
29377 PyObject
* obj4
= 0 ;
29378 PyObject
* obj5
= 0 ;
29379 PyObject
* obj6
= 0 ;
29380 PyObject
* obj7
= 0 ;
29381 char *kwnames
[] = {
29382 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
29385 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:TreeCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
29386 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29387 if (SWIG_arg_fail(1)) SWIG_fail
;
29388 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
29389 if (SWIG_arg_fail(2)) SWIG_fail
;
29392 arg3
= static_cast<int >(SWIG_As_int(obj2
));
29393 if (SWIG_arg_fail(3)) SWIG_fail
;
29399 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
29405 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
29410 arg6
= static_cast<long >(SWIG_As_long(obj5
));
29411 if (SWIG_arg_fail(6)) SWIG_fail
;
29416 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
29417 if (SWIG_arg_fail(7)) SWIG_fail
;
29418 if (arg7
== NULL
) {
29419 SWIG_null_ref("wxValidator");
29421 if (SWIG_arg_fail(7)) SWIG_fail
;
29426 arg8
= wxString_in_helper(obj7
);
29427 if (arg8
== NULL
) SWIG_fail
;
29432 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29433 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
29435 wxPyEndAllowThreads(__tstate
);
29436 if (PyErr_Occurred()) SWIG_fail
;
29439 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29455 static PyObject
*_wrap_TreeCtrl__setCallbackInfo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29456 PyObject
*resultobj
= NULL
;
29457 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29458 PyObject
*arg2
= (PyObject
*) 0 ;
29459 PyObject
*arg3
= (PyObject
*) 0 ;
29460 PyObject
* obj0
= 0 ;
29461 PyObject
* obj1
= 0 ;
29462 PyObject
* obj2
= 0 ;
29463 char *kwnames
[] = {
29464 (char *) "self",(char *) "self",(char *) "_class", NULL
29467 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
29468 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29469 if (SWIG_arg_fail(1)) SWIG_fail
;
29473 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29474 (arg1
)->_setCallbackInfo(arg2
,arg3
);
29476 wxPyEndAllowThreads(__tstate
);
29477 if (PyErr_Occurred()) SWIG_fail
;
29479 Py_INCREF(Py_None
); resultobj
= Py_None
;
29486 static PyObject
*_wrap_TreeCtrl_GetCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29487 PyObject
*resultobj
= NULL
;
29488 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29490 PyObject
* obj0
= 0 ;
29491 char *kwnames
[] = {
29492 (char *) "self", NULL
29495 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetCount",kwnames
,&obj0
)) goto fail
;
29496 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29497 if (SWIG_arg_fail(1)) SWIG_fail
;
29499 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29500 result
= (size_t)((wxPyTreeCtrl
const *)arg1
)->GetCount();
29502 wxPyEndAllowThreads(__tstate
);
29503 if (PyErr_Occurred()) SWIG_fail
;
29506 resultobj
= SWIG_From_unsigned_SS_long(static_cast<unsigned long >(result
));
29514 static PyObject
*_wrap_TreeCtrl_GetIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29515 PyObject
*resultobj
= NULL
;
29516 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29517 unsigned int result
;
29518 PyObject
* obj0
= 0 ;
29519 char *kwnames
[] = {
29520 (char *) "self", NULL
29523 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetIndent",kwnames
,&obj0
)) goto fail
;
29524 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29525 if (SWIG_arg_fail(1)) SWIG_fail
;
29527 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29528 result
= (unsigned int)((wxPyTreeCtrl
const *)arg1
)->GetIndent();
29530 wxPyEndAllowThreads(__tstate
);
29531 if (PyErr_Occurred()) SWIG_fail
;
29534 resultobj
= SWIG_From_unsigned_SS_int(static_cast<unsigned int >(result
));
29542 static PyObject
*_wrap_TreeCtrl_SetIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29543 PyObject
*resultobj
= NULL
;
29544 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29545 unsigned int arg2
;
29546 PyObject
* obj0
= 0 ;
29547 PyObject
* obj1
= 0 ;
29548 char *kwnames
[] = {
29549 (char *) "self",(char *) "indent", NULL
29552 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_SetIndent",kwnames
,&obj0
,&obj1
)) goto fail
;
29553 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29554 if (SWIG_arg_fail(1)) SWIG_fail
;
29556 arg2
= static_cast<unsigned int >(SWIG_As_unsigned_SS_int(obj1
));
29557 if (SWIG_arg_fail(2)) SWIG_fail
;
29560 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29561 (arg1
)->SetIndent(arg2
);
29563 wxPyEndAllowThreads(__tstate
);
29564 if (PyErr_Occurred()) SWIG_fail
;
29566 Py_INCREF(Py_None
); resultobj
= Py_None
;
29573 static PyObject
*_wrap_TreeCtrl_GetSpacing(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29574 PyObject
*resultobj
= NULL
;
29575 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29576 unsigned int result
;
29577 PyObject
* obj0
= 0 ;
29578 char *kwnames
[] = {
29579 (char *) "self", NULL
29582 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetSpacing",kwnames
,&obj0
)) goto fail
;
29583 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29584 if (SWIG_arg_fail(1)) SWIG_fail
;
29586 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29587 result
= (unsigned int)((wxPyTreeCtrl
const *)arg1
)->GetSpacing();
29589 wxPyEndAllowThreads(__tstate
);
29590 if (PyErr_Occurred()) SWIG_fail
;
29593 resultobj
= SWIG_From_unsigned_SS_int(static_cast<unsigned int >(result
));
29601 static PyObject
*_wrap_TreeCtrl_SetSpacing(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29602 PyObject
*resultobj
= NULL
;
29603 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29604 unsigned int arg2
;
29605 PyObject
* obj0
= 0 ;
29606 PyObject
* obj1
= 0 ;
29607 char *kwnames
[] = {
29608 (char *) "self",(char *) "spacing", NULL
29611 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_SetSpacing",kwnames
,&obj0
,&obj1
)) goto fail
;
29612 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29613 if (SWIG_arg_fail(1)) SWIG_fail
;
29615 arg2
= static_cast<unsigned int >(SWIG_As_unsigned_SS_int(obj1
));
29616 if (SWIG_arg_fail(2)) SWIG_fail
;
29619 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29620 (arg1
)->SetSpacing(arg2
);
29622 wxPyEndAllowThreads(__tstate
);
29623 if (PyErr_Occurred()) SWIG_fail
;
29625 Py_INCREF(Py_None
); resultobj
= Py_None
;
29632 static PyObject
*_wrap_TreeCtrl_GetImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29633 PyObject
*resultobj
= NULL
;
29634 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29635 wxImageList
*result
;
29636 PyObject
* obj0
= 0 ;
29637 char *kwnames
[] = {
29638 (char *) "self", NULL
29641 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetImageList",kwnames
,&obj0
)) goto fail
;
29642 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29643 if (SWIG_arg_fail(1)) SWIG_fail
;
29645 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29646 result
= (wxImageList
*)((wxPyTreeCtrl
const *)arg1
)->GetImageList();
29648 wxPyEndAllowThreads(__tstate
);
29649 if (PyErr_Occurred()) SWIG_fail
;
29652 resultobj
= wxPyMake_wxObject(result
, (bool)0);
29660 static PyObject
*_wrap_TreeCtrl_GetStateImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29661 PyObject
*resultobj
= NULL
;
29662 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29663 wxImageList
*result
;
29664 PyObject
* obj0
= 0 ;
29665 char *kwnames
[] = {
29666 (char *) "self", NULL
29669 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetStateImageList",kwnames
,&obj0
)) goto fail
;
29670 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29671 if (SWIG_arg_fail(1)) SWIG_fail
;
29673 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29674 result
= (wxImageList
*)((wxPyTreeCtrl
const *)arg1
)->GetStateImageList();
29676 wxPyEndAllowThreads(__tstate
);
29677 if (PyErr_Occurred()) SWIG_fail
;
29680 resultobj
= wxPyMake_wxObject(result
, (bool)0);
29688 static PyObject
*_wrap_TreeCtrl_SetImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29689 PyObject
*resultobj
= NULL
;
29690 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29691 wxImageList
*arg2
= (wxImageList
*) 0 ;
29692 PyObject
* obj0
= 0 ;
29693 PyObject
* obj1
= 0 ;
29694 char *kwnames
[] = {
29695 (char *) "self",(char *) "imageList", NULL
29698 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_SetImageList",kwnames
,&obj0
,&obj1
)) goto fail
;
29699 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29700 if (SWIG_arg_fail(1)) SWIG_fail
;
29701 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| 0);
29702 if (SWIG_arg_fail(2)) SWIG_fail
;
29704 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29705 (arg1
)->SetImageList(arg2
);
29707 wxPyEndAllowThreads(__tstate
);
29708 if (PyErr_Occurred()) SWIG_fail
;
29710 Py_INCREF(Py_None
); resultobj
= Py_None
;
29717 static PyObject
*_wrap_TreeCtrl_SetStateImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29718 PyObject
*resultobj
= NULL
;
29719 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29720 wxImageList
*arg2
= (wxImageList
*) 0 ;
29721 PyObject
* obj0
= 0 ;
29722 PyObject
* obj1
= 0 ;
29723 char *kwnames
[] = {
29724 (char *) "self",(char *) "imageList", NULL
29727 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_SetStateImageList",kwnames
,&obj0
,&obj1
)) goto fail
;
29728 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29729 if (SWIG_arg_fail(1)) SWIG_fail
;
29730 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| 0);
29731 if (SWIG_arg_fail(2)) SWIG_fail
;
29733 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29734 (arg1
)->SetStateImageList(arg2
);
29736 wxPyEndAllowThreads(__tstate
);
29737 if (PyErr_Occurred()) SWIG_fail
;
29739 Py_INCREF(Py_None
); resultobj
= Py_None
;
29746 static PyObject
*_wrap_TreeCtrl_AssignImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29747 PyObject
*resultobj
= NULL
;
29748 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29749 wxImageList
*arg2
= (wxImageList
*) 0 ;
29750 PyObject
* obj0
= 0 ;
29751 PyObject
* obj1
= 0 ;
29752 char *kwnames
[] = {
29753 (char *) "self",(char *) "imageList", NULL
29756 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_AssignImageList",kwnames
,&obj0
,&obj1
)) goto fail
;
29757 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29758 if (SWIG_arg_fail(1)) SWIG_fail
;
29759 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
);
29760 if (SWIG_arg_fail(2)) SWIG_fail
;
29762 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29763 (arg1
)->AssignImageList(arg2
);
29765 wxPyEndAllowThreads(__tstate
);
29766 if (PyErr_Occurred()) SWIG_fail
;
29768 Py_INCREF(Py_None
); resultobj
= Py_None
;
29775 static PyObject
*_wrap_TreeCtrl_AssignStateImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29776 PyObject
*resultobj
= NULL
;
29777 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29778 wxImageList
*arg2
= (wxImageList
*) 0 ;
29779 PyObject
* obj0
= 0 ;
29780 PyObject
* obj1
= 0 ;
29781 char *kwnames
[] = {
29782 (char *) "self",(char *) "imageList", NULL
29785 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_AssignStateImageList",kwnames
,&obj0
,&obj1
)) goto fail
;
29786 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29787 if (SWIG_arg_fail(1)) SWIG_fail
;
29788 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
);
29789 if (SWIG_arg_fail(2)) SWIG_fail
;
29791 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29792 (arg1
)->AssignStateImageList(arg2
);
29794 wxPyEndAllowThreads(__tstate
);
29795 if (PyErr_Occurred()) SWIG_fail
;
29797 Py_INCREF(Py_None
); resultobj
= Py_None
;
29804 static PyObject
*_wrap_TreeCtrl_GetItemText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29805 PyObject
*resultobj
= NULL
;
29806 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29807 wxTreeItemId
*arg2
= 0 ;
29809 PyObject
* obj0
= 0 ;
29810 PyObject
* obj1
= 0 ;
29811 char *kwnames
[] = {
29812 (char *) "self",(char *) "item", NULL
29815 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetItemText",kwnames
,&obj0
,&obj1
)) goto fail
;
29816 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29817 if (SWIG_arg_fail(1)) SWIG_fail
;
29819 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29820 if (SWIG_arg_fail(2)) SWIG_fail
;
29821 if (arg2
== NULL
) {
29822 SWIG_null_ref("wxTreeItemId");
29824 if (SWIG_arg_fail(2)) SWIG_fail
;
29827 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29828 result
= ((wxPyTreeCtrl
const *)arg1
)->GetItemText((wxTreeItemId
const &)*arg2
);
29830 wxPyEndAllowThreads(__tstate
);
29831 if (PyErr_Occurred()) SWIG_fail
;
29835 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
29837 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
29846 static PyObject
*_wrap_TreeCtrl_GetItemImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29847 PyObject
*resultobj
= NULL
;
29848 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29849 wxTreeItemId
*arg2
= 0 ;
29850 wxTreeItemIcon arg3
= (wxTreeItemIcon
) wxTreeItemIcon_Normal
;
29852 PyObject
* obj0
= 0 ;
29853 PyObject
* obj1
= 0 ;
29854 PyObject
* obj2
= 0 ;
29855 char *kwnames
[] = {
29856 (char *) "self",(char *) "item",(char *) "which", NULL
29859 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TreeCtrl_GetItemImage",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
29860 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29861 if (SWIG_arg_fail(1)) SWIG_fail
;
29863 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29864 if (SWIG_arg_fail(2)) SWIG_fail
;
29865 if (arg2
== NULL
) {
29866 SWIG_null_ref("wxTreeItemId");
29868 if (SWIG_arg_fail(2)) SWIG_fail
;
29872 arg3
= static_cast<wxTreeItemIcon
>(SWIG_As_int(obj2
));
29873 if (SWIG_arg_fail(3)) SWIG_fail
;
29877 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29878 result
= (int)((wxPyTreeCtrl
const *)arg1
)->GetItemImage((wxTreeItemId
const &)*arg2
,arg3
);
29880 wxPyEndAllowThreads(__tstate
);
29881 if (PyErr_Occurred()) SWIG_fail
;
29884 resultobj
= SWIG_From_int(static_cast<int >(result
));
29892 static PyObject
*_wrap_TreeCtrl_GetItemData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29893 PyObject
*resultobj
= NULL
;
29894 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29895 wxTreeItemId
*arg2
= 0 ;
29896 wxPyTreeItemData
*result
;
29897 PyObject
* obj0
= 0 ;
29898 PyObject
* obj1
= 0 ;
29899 char *kwnames
[] = {
29900 (char *) "self",(char *) "item", NULL
29903 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetItemData",kwnames
,&obj0
,&obj1
)) goto fail
;
29904 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29905 if (SWIG_arg_fail(1)) SWIG_fail
;
29907 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29908 if (SWIG_arg_fail(2)) SWIG_fail
;
29909 if (arg2
== NULL
) {
29910 SWIG_null_ref("wxTreeItemId");
29912 if (SWIG_arg_fail(2)) SWIG_fail
;
29915 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29916 result
= (wxPyTreeItemData
*)wxPyTreeCtrl_GetItemData(arg1
,(wxTreeItemId
const &)*arg2
);
29918 wxPyEndAllowThreads(__tstate
);
29919 if (PyErr_Occurred()) SWIG_fail
;
29921 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyTreeItemData
, 0);
29928 static PyObject
*_wrap_TreeCtrl_GetItemPyData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29929 PyObject
*resultobj
= NULL
;
29930 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29931 wxTreeItemId
*arg2
= 0 ;
29933 PyObject
* obj0
= 0 ;
29934 PyObject
* obj1
= 0 ;
29935 char *kwnames
[] = {
29936 (char *) "self",(char *) "item", NULL
29939 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetItemPyData",kwnames
,&obj0
,&obj1
)) goto fail
;
29940 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29941 if (SWIG_arg_fail(1)) SWIG_fail
;
29943 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29944 if (SWIG_arg_fail(2)) SWIG_fail
;
29945 if (arg2
== NULL
) {
29946 SWIG_null_ref("wxTreeItemId");
29948 if (SWIG_arg_fail(2)) SWIG_fail
;
29951 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29952 result
= (PyObject
*)wxPyTreeCtrl_GetItemPyData(arg1
,(wxTreeItemId
const &)*arg2
);
29954 wxPyEndAllowThreads(__tstate
);
29955 if (PyErr_Occurred()) SWIG_fail
;
29957 resultobj
= result
;
29964 static PyObject
*_wrap_TreeCtrl_GetItemTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29965 PyObject
*resultobj
= NULL
;
29966 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29967 wxTreeItemId
*arg2
= 0 ;
29969 PyObject
* obj0
= 0 ;
29970 PyObject
* obj1
= 0 ;
29971 char *kwnames
[] = {
29972 (char *) "self",(char *) "item", NULL
29975 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetItemTextColour",kwnames
,&obj0
,&obj1
)) goto fail
;
29976 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29977 if (SWIG_arg_fail(1)) SWIG_fail
;
29979 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29980 if (SWIG_arg_fail(2)) SWIG_fail
;
29981 if (arg2
== NULL
) {
29982 SWIG_null_ref("wxTreeItemId");
29984 if (SWIG_arg_fail(2)) SWIG_fail
;
29987 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29988 result
= ((wxPyTreeCtrl
const *)arg1
)->GetItemTextColour((wxTreeItemId
const &)*arg2
);
29990 wxPyEndAllowThreads(__tstate
);
29991 if (PyErr_Occurred()) SWIG_fail
;
29994 wxColour
* resultptr
;
29995 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
29996 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
30004 static PyObject
*_wrap_TreeCtrl_GetItemBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30005 PyObject
*resultobj
= NULL
;
30006 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30007 wxTreeItemId
*arg2
= 0 ;
30009 PyObject
* obj0
= 0 ;
30010 PyObject
* obj1
= 0 ;
30011 char *kwnames
[] = {
30012 (char *) "self",(char *) "item", NULL
30015 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetItemBackgroundColour",kwnames
,&obj0
,&obj1
)) goto fail
;
30016 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30017 if (SWIG_arg_fail(1)) SWIG_fail
;
30019 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30020 if (SWIG_arg_fail(2)) SWIG_fail
;
30021 if (arg2
== NULL
) {
30022 SWIG_null_ref("wxTreeItemId");
30024 if (SWIG_arg_fail(2)) SWIG_fail
;
30027 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30028 result
= ((wxPyTreeCtrl
const *)arg1
)->GetItemBackgroundColour((wxTreeItemId
const &)*arg2
);
30030 wxPyEndAllowThreads(__tstate
);
30031 if (PyErr_Occurred()) SWIG_fail
;
30034 wxColour
* resultptr
;
30035 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
30036 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
30044 static PyObject
*_wrap_TreeCtrl_GetItemFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30045 PyObject
*resultobj
= NULL
;
30046 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30047 wxTreeItemId
*arg2
= 0 ;
30049 PyObject
* obj0
= 0 ;
30050 PyObject
* obj1
= 0 ;
30051 char *kwnames
[] = {
30052 (char *) "self",(char *) "item", NULL
30055 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetItemFont",kwnames
,&obj0
,&obj1
)) goto fail
;
30056 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30057 if (SWIG_arg_fail(1)) SWIG_fail
;
30059 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30060 if (SWIG_arg_fail(2)) SWIG_fail
;
30061 if (arg2
== NULL
) {
30062 SWIG_null_ref("wxTreeItemId");
30064 if (SWIG_arg_fail(2)) SWIG_fail
;
30067 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30068 result
= ((wxPyTreeCtrl
const *)arg1
)->GetItemFont((wxTreeItemId
const &)*arg2
);
30070 wxPyEndAllowThreads(__tstate
);
30071 if (PyErr_Occurred()) SWIG_fail
;
30074 wxFont
* resultptr
;
30075 resultptr
= new wxFont(static_cast<wxFont
& >(result
));
30076 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxFont
, 1);
30084 static PyObject
*_wrap_TreeCtrl_SetItemText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30085 PyObject
*resultobj
= NULL
;
30086 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30087 wxTreeItemId
*arg2
= 0 ;
30088 wxString
*arg3
= 0 ;
30089 bool temp3
= false ;
30090 PyObject
* obj0
= 0 ;
30091 PyObject
* obj1
= 0 ;
30092 PyObject
* obj2
= 0 ;
30093 char *kwnames
[] = {
30094 (char *) "self",(char *) "item",(char *) "text", NULL
30097 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl_SetItemText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
30098 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30099 if (SWIG_arg_fail(1)) SWIG_fail
;
30101 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30102 if (SWIG_arg_fail(2)) SWIG_fail
;
30103 if (arg2
== NULL
) {
30104 SWIG_null_ref("wxTreeItemId");
30106 if (SWIG_arg_fail(2)) SWIG_fail
;
30109 arg3
= wxString_in_helper(obj2
);
30110 if (arg3
== NULL
) SWIG_fail
;
30114 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30115 (arg1
)->SetItemText((wxTreeItemId
const &)*arg2
,(wxString
const &)*arg3
);
30117 wxPyEndAllowThreads(__tstate
);
30118 if (PyErr_Occurred()) SWIG_fail
;
30120 Py_INCREF(Py_None
); resultobj
= Py_None
;
30135 static PyObject
*_wrap_TreeCtrl_SetItemImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30136 PyObject
*resultobj
= NULL
;
30137 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30138 wxTreeItemId
*arg2
= 0 ;
30140 wxTreeItemIcon arg4
= (wxTreeItemIcon
) wxTreeItemIcon_Normal
;
30141 PyObject
* obj0
= 0 ;
30142 PyObject
* obj1
= 0 ;
30143 PyObject
* obj2
= 0 ;
30144 PyObject
* obj3
= 0 ;
30145 char *kwnames
[] = {
30146 (char *) "self",(char *) "item",(char *) "image",(char *) "which", NULL
30149 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:TreeCtrl_SetItemImage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
30150 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30151 if (SWIG_arg_fail(1)) SWIG_fail
;
30153 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30154 if (SWIG_arg_fail(2)) SWIG_fail
;
30155 if (arg2
== NULL
) {
30156 SWIG_null_ref("wxTreeItemId");
30158 if (SWIG_arg_fail(2)) SWIG_fail
;
30161 arg3
= static_cast<int >(SWIG_As_int(obj2
));
30162 if (SWIG_arg_fail(3)) SWIG_fail
;
30166 arg4
= static_cast<wxTreeItemIcon
>(SWIG_As_int(obj3
));
30167 if (SWIG_arg_fail(4)) SWIG_fail
;
30171 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30172 (arg1
)->SetItemImage((wxTreeItemId
const &)*arg2
,arg3
,arg4
);
30174 wxPyEndAllowThreads(__tstate
);
30175 if (PyErr_Occurred()) SWIG_fail
;
30177 Py_INCREF(Py_None
); resultobj
= Py_None
;
30184 static PyObject
*_wrap_TreeCtrl_SetItemData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30185 PyObject
*resultobj
= NULL
;
30186 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30187 wxTreeItemId
*arg2
= 0 ;
30188 wxPyTreeItemData
*arg3
= (wxPyTreeItemData
*) 0 ;
30189 PyObject
* obj0
= 0 ;
30190 PyObject
* obj1
= 0 ;
30191 PyObject
* obj2
= 0 ;
30192 char *kwnames
[] = {
30193 (char *) "self",(char *) "item",(char *) "data", NULL
30196 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl_SetItemData",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
30197 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30198 if (SWIG_arg_fail(1)) SWIG_fail
;
30200 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30201 if (SWIG_arg_fail(2)) SWIG_fail
;
30202 if (arg2
== NULL
) {
30203 SWIG_null_ref("wxTreeItemId");
30205 if (SWIG_arg_fail(2)) SWIG_fail
;
30207 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
);
30208 if (SWIG_arg_fail(3)) SWIG_fail
;
30210 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30211 wxPyTreeCtrl_SetItemData(arg1
,(wxTreeItemId
const &)*arg2
,arg3
);
30213 wxPyEndAllowThreads(__tstate
);
30214 if (PyErr_Occurred()) SWIG_fail
;
30216 Py_INCREF(Py_None
); resultobj
= Py_None
;
30223 static PyObject
*_wrap_TreeCtrl_SetItemPyData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30224 PyObject
*resultobj
= NULL
;
30225 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30226 wxTreeItemId
*arg2
= 0 ;
30227 PyObject
*arg3
= (PyObject
*) 0 ;
30228 PyObject
* obj0
= 0 ;
30229 PyObject
* obj1
= 0 ;
30230 PyObject
* obj2
= 0 ;
30231 char *kwnames
[] = {
30232 (char *) "self",(char *) "item",(char *) "obj", NULL
30235 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl_SetItemPyData",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
30236 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30237 if (SWIG_arg_fail(1)) SWIG_fail
;
30239 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30240 if (SWIG_arg_fail(2)) SWIG_fail
;
30241 if (arg2
== NULL
) {
30242 SWIG_null_ref("wxTreeItemId");
30244 if (SWIG_arg_fail(2)) SWIG_fail
;
30248 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30249 wxPyTreeCtrl_SetItemPyData(arg1
,(wxTreeItemId
const &)*arg2
,arg3
);
30251 wxPyEndAllowThreads(__tstate
);
30252 if (PyErr_Occurred()) SWIG_fail
;
30254 Py_INCREF(Py_None
); resultobj
= Py_None
;
30261 static PyObject
*_wrap_TreeCtrl_SetItemHasChildren(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30262 PyObject
*resultobj
= NULL
;
30263 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30264 wxTreeItemId
*arg2
= 0 ;
30265 bool arg3
= (bool) true ;
30266 PyObject
* obj0
= 0 ;
30267 PyObject
* obj1
= 0 ;
30268 PyObject
* obj2
= 0 ;
30269 char *kwnames
[] = {
30270 (char *) "self",(char *) "item",(char *) "has", NULL
30273 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TreeCtrl_SetItemHasChildren",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
30274 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30275 if (SWIG_arg_fail(1)) SWIG_fail
;
30277 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30278 if (SWIG_arg_fail(2)) SWIG_fail
;
30279 if (arg2
== NULL
) {
30280 SWIG_null_ref("wxTreeItemId");
30282 if (SWIG_arg_fail(2)) SWIG_fail
;
30286 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
30287 if (SWIG_arg_fail(3)) SWIG_fail
;
30291 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30292 (arg1
)->SetItemHasChildren((wxTreeItemId
const &)*arg2
,arg3
);
30294 wxPyEndAllowThreads(__tstate
);
30295 if (PyErr_Occurred()) SWIG_fail
;
30297 Py_INCREF(Py_None
); resultobj
= Py_None
;
30304 static PyObject
*_wrap_TreeCtrl_SetItemBold(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30305 PyObject
*resultobj
= NULL
;
30306 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30307 wxTreeItemId
*arg2
= 0 ;
30308 bool arg3
= (bool) true ;
30309 PyObject
* obj0
= 0 ;
30310 PyObject
* obj1
= 0 ;
30311 PyObject
* obj2
= 0 ;
30312 char *kwnames
[] = {
30313 (char *) "self",(char *) "item",(char *) "bold", NULL
30316 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TreeCtrl_SetItemBold",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
30317 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30318 if (SWIG_arg_fail(1)) SWIG_fail
;
30320 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30321 if (SWIG_arg_fail(2)) SWIG_fail
;
30322 if (arg2
== NULL
) {
30323 SWIG_null_ref("wxTreeItemId");
30325 if (SWIG_arg_fail(2)) SWIG_fail
;
30329 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
30330 if (SWIG_arg_fail(3)) SWIG_fail
;
30334 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30335 (arg1
)->SetItemBold((wxTreeItemId
const &)*arg2
,arg3
);
30337 wxPyEndAllowThreads(__tstate
);
30338 if (PyErr_Occurred()) SWIG_fail
;
30340 Py_INCREF(Py_None
); resultobj
= Py_None
;
30347 static PyObject
*_wrap_TreeCtrl_SetItemDropHighlight(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30348 PyObject
*resultobj
= NULL
;
30349 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30350 wxTreeItemId
*arg2
= 0 ;
30351 bool arg3
= (bool) true ;
30352 PyObject
* obj0
= 0 ;
30353 PyObject
* obj1
= 0 ;
30354 PyObject
* obj2
= 0 ;
30355 char *kwnames
[] = {
30356 (char *) "self",(char *) "item",(char *) "highlight", NULL
30359 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TreeCtrl_SetItemDropHighlight",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
30360 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30361 if (SWIG_arg_fail(1)) SWIG_fail
;
30363 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30364 if (SWIG_arg_fail(2)) SWIG_fail
;
30365 if (arg2
== NULL
) {
30366 SWIG_null_ref("wxTreeItemId");
30368 if (SWIG_arg_fail(2)) SWIG_fail
;
30372 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
30373 if (SWIG_arg_fail(3)) SWIG_fail
;
30377 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30378 (arg1
)->SetItemDropHighlight((wxTreeItemId
const &)*arg2
,arg3
);
30380 wxPyEndAllowThreads(__tstate
);
30381 if (PyErr_Occurred()) SWIG_fail
;
30383 Py_INCREF(Py_None
); resultobj
= Py_None
;
30390 static PyObject
*_wrap_TreeCtrl_SetItemTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30391 PyObject
*resultobj
= NULL
;
30392 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30393 wxTreeItemId
*arg2
= 0 ;
30394 wxColour
*arg3
= 0 ;
30396 PyObject
* obj0
= 0 ;
30397 PyObject
* obj1
= 0 ;
30398 PyObject
* obj2
= 0 ;
30399 char *kwnames
[] = {
30400 (char *) "self",(char *) "item",(char *) "col", NULL
30403 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl_SetItemTextColour",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
30404 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30405 if (SWIG_arg_fail(1)) SWIG_fail
;
30407 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30408 if (SWIG_arg_fail(2)) SWIG_fail
;
30409 if (arg2
== NULL
) {
30410 SWIG_null_ref("wxTreeItemId");
30412 if (SWIG_arg_fail(2)) SWIG_fail
;
30416 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
30419 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30420 (arg1
)->SetItemTextColour((wxTreeItemId
const &)*arg2
,(wxColour
const &)*arg3
);
30422 wxPyEndAllowThreads(__tstate
);
30423 if (PyErr_Occurred()) SWIG_fail
;
30425 Py_INCREF(Py_None
); resultobj
= Py_None
;
30432 static PyObject
*_wrap_TreeCtrl_SetItemBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30433 PyObject
*resultobj
= NULL
;
30434 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30435 wxTreeItemId
*arg2
= 0 ;
30436 wxColour
*arg3
= 0 ;
30438 PyObject
* obj0
= 0 ;
30439 PyObject
* obj1
= 0 ;
30440 PyObject
* obj2
= 0 ;
30441 char *kwnames
[] = {
30442 (char *) "self",(char *) "item",(char *) "col", NULL
30445 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl_SetItemBackgroundColour",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
30446 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30447 if (SWIG_arg_fail(1)) SWIG_fail
;
30449 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30450 if (SWIG_arg_fail(2)) SWIG_fail
;
30451 if (arg2
== NULL
) {
30452 SWIG_null_ref("wxTreeItemId");
30454 if (SWIG_arg_fail(2)) SWIG_fail
;
30458 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
30461 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30462 (arg1
)->SetItemBackgroundColour((wxTreeItemId
const &)*arg2
,(wxColour
const &)*arg3
);
30464 wxPyEndAllowThreads(__tstate
);
30465 if (PyErr_Occurred()) SWIG_fail
;
30467 Py_INCREF(Py_None
); resultobj
= Py_None
;
30474 static PyObject
*_wrap_TreeCtrl_SetItemFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30475 PyObject
*resultobj
= NULL
;
30476 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30477 wxTreeItemId
*arg2
= 0 ;
30479 PyObject
* obj0
= 0 ;
30480 PyObject
* obj1
= 0 ;
30481 PyObject
* obj2
= 0 ;
30482 char *kwnames
[] = {
30483 (char *) "self",(char *) "item",(char *) "font", NULL
30486 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl_SetItemFont",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
30487 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30488 if (SWIG_arg_fail(1)) SWIG_fail
;
30490 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30491 if (SWIG_arg_fail(2)) SWIG_fail
;
30492 if (arg2
== NULL
) {
30493 SWIG_null_ref("wxTreeItemId");
30495 if (SWIG_arg_fail(2)) SWIG_fail
;
30498 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
30499 if (SWIG_arg_fail(3)) SWIG_fail
;
30500 if (arg3
== NULL
) {
30501 SWIG_null_ref("wxFont");
30503 if (SWIG_arg_fail(3)) SWIG_fail
;
30506 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30507 (arg1
)->SetItemFont((wxTreeItemId
const &)*arg2
,(wxFont
const &)*arg3
);
30509 wxPyEndAllowThreads(__tstate
);
30510 if (PyErr_Occurred()) SWIG_fail
;
30512 Py_INCREF(Py_None
); resultobj
= Py_None
;
30519 static PyObject
*_wrap_TreeCtrl_IsVisible(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30520 PyObject
*resultobj
= NULL
;
30521 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30522 wxTreeItemId
*arg2
= 0 ;
30524 PyObject
* obj0
= 0 ;
30525 PyObject
* obj1
= 0 ;
30526 char *kwnames
[] = {
30527 (char *) "self",(char *) "item", NULL
30530 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_IsVisible",kwnames
,&obj0
,&obj1
)) goto fail
;
30531 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30532 if (SWIG_arg_fail(1)) SWIG_fail
;
30534 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30535 if (SWIG_arg_fail(2)) SWIG_fail
;
30536 if (arg2
== NULL
) {
30537 SWIG_null_ref("wxTreeItemId");
30539 if (SWIG_arg_fail(2)) SWIG_fail
;
30542 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30543 result
= (bool)((wxPyTreeCtrl
const *)arg1
)->IsVisible((wxTreeItemId
const &)*arg2
);
30545 wxPyEndAllowThreads(__tstate
);
30546 if (PyErr_Occurred()) SWIG_fail
;
30549 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
30557 static PyObject
*_wrap_TreeCtrl_ItemHasChildren(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30558 PyObject
*resultobj
= NULL
;
30559 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30560 wxTreeItemId
*arg2
= 0 ;
30562 PyObject
* obj0
= 0 ;
30563 PyObject
* obj1
= 0 ;
30564 char *kwnames
[] = {
30565 (char *) "self",(char *) "item", NULL
30568 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_ItemHasChildren",kwnames
,&obj0
,&obj1
)) goto fail
;
30569 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30570 if (SWIG_arg_fail(1)) SWIG_fail
;
30572 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30573 if (SWIG_arg_fail(2)) SWIG_fail
;
30574 if (arg2
== NULL
) {
30575 SWIG_null_ref("wxTreeItemId");
30577 if (SWIG_arg_fail(2)) SWIG_fail
;
30580 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30581 result
= (bool)((wxPyTreeCtrl
const *)arg1
)->ItemHasChildren((wxTreeItemId
const &)*arg2
);
30583 wxPyEndAllowThreads(__tstate
);
30584 if (PyErr_Occurred()) SWIG_fail
;
30587 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
30595 static PyObject
*_wrap_TreeCtrl_IsExpanded(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30596 PyObject
*resultobj
= NULL
;
30597 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30598 wxTreeItemId
*arg2
= 0 ;
30600 PyObject
* obj0
= 0 ;
30601 PyObject
* obj1
= 0 ;
30602 char *kwnames
[] = {
30603 (char *) "self",(char *) "item", NULL
30606 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_IsExpanded",kwnames
,&obj0
,&obj1
)) goto fail
;
30607 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30608 if (SWIG_arg_fail(1)) SWIG_fail
;
30610 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30611 if (SWIG_arg_fail(2)) SWIG_fail
;
30612 if (arg2
== NULL
) {
30613 SWIG_null_ref("wxTreeItemId");
30615 if (SWIG_arg_fail(2)) SWIG_fail
;
30618 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30619 result
= (bool)((wxPyTreeCtrl
const *)arg1
)->IsExpanded((wxTreeItemId
const &)*arg2
);
30621 wxPyEndAllowThreads(__tstate
);
30622 if (PyErr_Occurred()) SWIG_fail
;
30625 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
30633 static PyObject
*_wrap_TreeCtrl_IsSelected(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30634 PyObject
*resultobj
= NULL
;
30635 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30636 wxTreeItemId
*arg2
= 0 ;
30638 PyObject
* obj0
= 0 ;
30639 PyObject
* obj1
= 0 ;
30640 char *kwnames
[] = {
30641 (char *) "self",(char *) "item", NULL
30644 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_IsSelected",kwnames
,&obj0
,&obj1
)) goto fail
;
30645 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30646 if (SWIG_arg_fail(1)) SWIG_fail
;
30648 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30649 if (SWIG_arg_fail(2)) SWIG_fail
;
30650 if (arg2
== NULL
) {
30651 SWIG_null_ref("wxTreeItemId");
30653 if (SWIG_arg_fail(2)) SWIG_fail
;
30656 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30657 result
= (bool)((wxPyTreeCtrl
const *)arg1
)->IsSelected((wxTreeItemId
const &)*arg2
);
30659 wxPyEndAllowThreads(__tstate
);
30660 if (PyErr_Occurred()) SWIG_fail
;
30663 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
30671 static PyObject
*_wrap_TreeCtrl_IsBold(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30672 PyObject
*resultobj
= NULL
;
30673 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30674 wxTreeItemId
*arg2
= 0 ;
30676 PyObject
* obj0
= 0 ;
30677 PyObject
* obj1
= 0 ;
30678 char *kwnames
[] = {
30679 (char *) "self",(char *) "item", NULL
30682 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_IsBold",kwnames
,&obj0
,&obj1
)) goto fail
;
30683 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30684 if (SWIG_arg_fail(1)) SWIG_fail
;
30686 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30687 if (SWIG_arg_fail(2)) SWIG_fail
;
30688 if (arg2
== NULL
) {
30689 SWIG_null_ref("wxTreeItemId");
30691 if (SWIG_arg_fail(2)) SWIG_fail
;
30694 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30695 result
= (bool)((wxPyTreeCtrl
const *)arg1
)->IsBold((wxTreeItemId
const &)*arg2
);
30697 wxPyEndAllowThreads(__tstate
);
30698 if (PyErr_Occurred()) SWIG_fail
;
30701 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
30709 static PyObject
*_wrap_TreeCtrl_GetChildrenCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30710 PyObject
*resultobj
= NULL
;
30711 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30712 wxTreeItemId
*arg2
= 0 ;
30713 bool arg3
= (bool) true ;
30715 PyObject
* obj0
= 0 ;
30716 PyObject
* obj1
= 0 ;
30717 PyObject
* obj2
= 0 ;
30718 char *kwnames
[] = {
30719 (char *) "self",(char *) "item",(char *) "recursively", NULL
30722 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TreeCtrl_GetChildrenCount",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
30723 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30724 if (SWIG_arg_fail(1)) SWIG_fail
;
30726 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30727 if (SWIG_arg_fail(2)) SWIG_fail
;
30728 if (arg2
== NULL
) {
30729 SWIG_null_ref("wxTreeItemId");
30731 if (SWIG_arg_fail(2)) SWIG_fail
;
30735 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
30736 if (SWIG_arg_fail(3)) SWIG_fail
;
30740 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30741 result
= (size_t)(arg1
)->GetChildrenCount((wxTreeItemId
const &)*arg2
,arg3
);
30743 wxPyEndAllowThreads(__tstate
);
30744 if (PyErr_Occurred()) SWIG_fail
;
30747 resultobj
= SWIG_From_unsigned_SS_long(static_cast<unsigned long >(result
));
30755 static PyObject
*_wrap_TreeCtrl_GetRootItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30756 PyObject
*resultobj
= NULL
;
30757 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30758 wxTreeItemId result
;
30759 PyObject
* obj0
= 0 ;
30760 char *kwnames
[] = {
30761 (char *) "self", NULL
30764 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetRootItem",kwnames
,&obj0
)) goto fail
;
30765 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30766 if (SWIG_arg_fail(1)) SWIG_fail
;
30768 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30769 result
= ((wxPyTreeCtrl
const *)arg1
)->GetRootItem();
30771 wxPyEndAllowThreads(__tstate
);
30772 if (PyErr_Occurred()) SWIG_fail
;
30775 wxTreeItemId
* resultptr
;
30776 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
30777 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
30785 static PyObject
*_wrap_TreeCtrl_GetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30786 PyObject
*resultobj
= NULL
;
30787 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30788 wxTreeItemId result
;
30789 PyObject
* obj0
= 0 ;
30790 char *kwnames
[] = {
30791 (char *) "self", NULL
30794 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetSelection",kwnames
,&obj0
)) goto fail
;
30795 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30796 if (SWIG_arg_fail(1)) SWIG_fail
;
30798 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30799 result
= ((wxPyTreeCtrl
const *)arg1
)->GetSelection();
30801 wxPyEndAllowThreads(__tstate
);
30802 if (PyErr_Occurred()) SWIG_fail
;
30805 wxTreeItemId
* resultptr
;
30806 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
30807 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
30815 static PyObject
*_wrap_TreeCtrl_GetSelections(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30816 PyObject
*resultobj
= NULL
;
30817 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30819 PyObject
* obj0
= 0 ;
30820 char *kwnames
[] = {
30821 (char *) "self", NULL
30824 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetSelections",kwnames
,&obj0
)) goto fail
;
30825 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30826 if (SWIG_arg_fail(1)) SWIG_fail
;
30828 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30829 result
= (PyObject
*)wxPyTreeCtrl_GetSelections(arg1
);
30831 wxPyEndAllowThreads(__tstate
);
30832 if (PyErr_Occurred()) SWIG_fail
;
30834 resultobj
= result
;
30841 static PyObject
*_wrap_TreeCtrl_GetItemParent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30842 PyObject
*resultobj
= NULL
;
30843 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30844 wxTreeItemId
*arg2
= 0 ;
30845 wxTreeItemId result
;
30846 PyObject
* obj0
= 0 ;
30847 PyObject
* obj1
= 0 ;
30848 char *kwnames
[] = {
30849 (char *) "self",(char *) "item", NULL
30852 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetItemParent",kwnames
,&obj0
,&obj1
)) goto fail
;
30853 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30854 if (SWIG_arg_fail(1)) SWIG_fail
;
30856 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30857 if (SWIG_arg_fail(2)) SWIG_fail
;
30858 if (arg2
== NULL
) {
30859 SWIG_null_ref("wxTreeItemId");
30861 if (SWIG_arg_fail(2)) SWIG_fail
;
30864 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30865 result
= ((wxPyTreeCtrl
const *)arg1
)->GetItemParent((wxTreeItemId
const &)*arg2
);
30867 wxPyEndAllowThreads(__tstate
);
30868 if (PyErr_Occurred()) SWIG_fail
;
30871 wxTreeItemId
* resultptr
;
30872 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
30873 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
30881 static PyObject
*_wrap_TreeCtrl_GetFirstChild(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30882 PyObject
*resultobj
= NULL
;
30883 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30884 wxTreeItemId
*arg2
= 0 ;
30886 PyObject
* obj0
= 0 ;
30887 PyObject
* obj1
= 0 ;
30888 char *kwnames
[] = {
30889 (char *) "self",(char *) "item", NULL
30892 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetFirstChild",kwnames
,&obj0
,&obj1
)) goto fail
;
30893 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30894 if (SWIG_arg_fail(1)) SWIG_fail
;
30896 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30897 if (SWIG_arg_fail(2)) SWIG_fail
;
30898 if (arg2
== NULL
) {
30899 SWIG_null_ref("wxTreeItemId");
30901 if (SWIG_arg_fail(2)) SWIG_fail
;
30904 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30905 result
= (PyObject
*)wxPyTreeCtrl_GetFirstChild(arg1
,(wxTreeItemId
const &)*arg2
);
30907 wxPyEndAllowThreads(__tstate
);
30908 if (PyErr_Occurred()) SWIG_fail
;
30910 resultobj
= result
;
30917 static PyObject
*_wrap_TreeCtrl_GetNextChild(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30918 PyObject
*resultobj
= NULL
;
30919 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30920 wxTreeItemId
*arg2
= 0 ;
30921 void *arg3
= (void *) 0 ;
30923 PyObject
* obj0
= 0 ;
30924 PyObject
* obj1
= 0 ;
30925 PyObject
* obj2
= 0 ;
30926 char *kwnames
[] = {
30927 (char *) "self",(char *) "item",(char *) "cookie", NULL
30930 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl_GetNextChild",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
30931 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30932 if (SWIG_arg_fail(1)) SWIG_fail
;
30934 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30935 if (SWIG_arg_fail(2)) SWIG_fail
;
30936 if (arg2
== NULL
) {
30937 SWIG_null_ref("wxTreeItemId");
30939 if (SWIG_arg_fail(2)) SWIG_fail
;
30942 if ((SWIG_ConvertPtr(obj2
,reinterpret_cast<void ** >(&arg3
),0,SWIG_POINTER_EXCEPTION
|0))== -1) {
30943 SWIG_arg_fail(3);SWIG_fail
;
30947 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30948 result
= (PyObject
*)wxPyTreeCtrl_GetNextChild(arg1
,(wxTreeItemId
const &)*arg2
,arg3
);
30950 wxPyEndAllowThreads(__tstate
);
30951 if (PyErr_Occurred()) SWIG_fail
;
30953 resultobj
= result
;
30960 static PyObject
*_wrap_TreeCtrl_GetLastChild(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30961 PyObject
*resultobj
= NULL
;
30962 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30963 wxTreeItemId
*arg2
= 0 ;
30964 wxTreeItemId result
;
30965 PyObject
* obj0
= 0 ;
30966 PyObject
* obj1
= 0 ;
30967 char *kwnames
[] = {
30968 (char *) "self",(char *) "item", NULL
30971 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetLastChild",kwnames
,&obj0
,&obj1
)) goto fail
;
30972 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30973 if (SWIG_arg_fail(1)) SWIG_fail
;
30975 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30976 if (SWIG_arg_fail(2)) SWIG_fail
;
30977 if (arg2
== NULL
) {
30978 SWIG_null_ref("wxTreeItemId");
30980 if (SWIG_arg_fail(2)) SWIG_fail
;
30983 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30984 result
= ((wxPyTreeCtrl
const *)arg1
)->GetLastChild((wxTreeItemId
const &)*arg2
);
30986 wxPyEndAllowThreads(__tstate
);
30987 if (PyErr_Occurred()) SWIG_fail
;
30990 wxTreeItemId
* resultptr
;
30991 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
30992 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
31000 static PyObject
*_wrap_TreeCtrl_GetNextSibling(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31001 PyObject
*resultobj
= NULL
;
31002 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31003 wxTreeItemId
*arg2
= 0 ;
31004 wxTreeItemId result
;
31005 PyObject
* obj0
= 0 ;
31006 PyObject
* obj1
= 0 ;
31007 char *kwnames
[] = {
31008 (char *) "self",(char *) "item", NULL
31011 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetNextSibling",kwnames
,&obj0
,&obj1
)) goto fail
;
31012 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31013 if (SWIG_arg_fail(1)) SWIG_fail
;
31015 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31016 if (SWIG_arg_fail(2)) SWIG_fail
;
31017 if (arg2
== NULL
) {
31018 SWIG_null_ref("wxTreeItemId");
31020 if (SWIG_arg_fail(2)) SWIG_fail
;
31023 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31024 result
= ((wxPyTreeCtrl
const *)arg1
)->GetNextSibling((wxTreeItemId
const &)*arg2
);
31026 wxPyEndAllowThreads(__tstate
);
31027 if (PyErr_Occurred()) SWIG_fail
;
31030 wxTreeItemId
* resultptr
;
31031 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
31032 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
31040 static PyObject
*_wrap_TreeCtrl_GetPrevSibling(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31041 PyObject
*resultobj
= NULL
;
31042 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31043 wxTreeItemId
*arg2
= 0 ;
31044 wxTreeItemId result
;
31045 PyObject
* obj0
= 0 ;
31046 PyObject
* obj1
= 0 ;
31047 char *kwnames
[] = {
31048 (char *) "self",(char *) "item", NULL
31051 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetPrevSibling",kwnames
,&obj0
,&obj1
)) goto fail
;
31052 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31053 if (SWIG_arg_fail(1)) SWIG_fail
;
31055 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31056 if (SWIG_arg_fail(2)) SWIG_fail
;
31057 if (arg2
== NULL
) {
31058 SWIG_null_ref("wxTreeItemId");
31060 if (SWIG_arg_fail(2)) SWIG_fail
;
31063 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31064 result
= ((wxPyTreeCtrl
const *)arg1
)->GetPrevSibling((wxTreeItemId
const &)*arg2
);
31066 wxPyEndAllowThreads(__tstate
);
31067 if (PyErr_Occurred()) SWIG_fail
;
31070 wxTreeItemId
* resultptr
;
31071 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
31072 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
31080 static PyObject
*_wrap_TreeCtrl_GetFirstVisibleItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31081 PyObject
*resultobj
= NULL
;
31082 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31083 wxTreeItemId result
;
31084 PyObject
* obj0
= 0 ;
31085 char *kwnames
[] = {
31086 (char *) "self", NULL
31089 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetFirstVisibleItem",kwnames
,&obj0
)) goto fail
;
31090 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31091 if (SWIG_arg_fail(1)) SWIG_fail
;
31093 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31094 result
= ((wxPyTreeCtrl
const *)arg1
)->GetFirstVisibleItem();
31096 wxPyEndAllowThreads(__tstate
);
31097 if (PyErr_Occurred()) SWIG_fail
;
31100 wxTreeItemId
* resultptr
;
31101 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
31102 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
31110 static PyObject
*_wrap_TreeCtrl_GetNextVisible(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31111 PyObject
*resultobj
= NULL
;
31112 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31113 wxTreeItemId
*arg2
= 0 ;
31114 wxTreeItemId result
;
31115 PyObject
* obj0
= 0 ;
31116 PyObject
* obj1
= 0 ;
31117 char *kwnames
[] = {
31118 (char *) "self",(char *) "item", NULL
31121 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetNextVisible",kwnames
,&obj0
,&obj1
)) goto fail
;
31122 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31123 if (SWIG_arg_fail(1)) SWIG_fail
;
31125 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31126 if (SWIG_arg_fail(2)) SWIG_fail
;
31127 if (arg2
== NULL
) {
31128 SWIG_null_ref("wxTreeItemId");
31130 if (SWIG_arg_fail(2)) SWIG_fail
;
31133 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31134 result
= ((wxPyTreeCtrl
const *)arg1
)->GetNextVisible((wxTreeItemId
const &)*arg2
);
31136 wxPyEndAllowThreads(__tstate
);
31137 if (PyErr_Occurred()) SWIG_fail
;
31140 wxTreeItemId
* resultptr
;
31141 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
31142 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
31150 static PyObject
*_wrap_TreeCtrl_GetPrevVisible(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31151 PyObject
*resultobj
= NULL
;
31152 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31153 wxTreeItemId
*arg2
= 0 ;
31154 wxTreeItemId result
;
31155 PyObject
* obj0
= 0 ;
31156 PyObject
* obj1
= 0 ;
31157 char *kwnames
[] = {
31158 (char *) "self",(char *) "item", NULL
31161 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetPrevVisible",kwnames
,&obj0
,&obj1
)) goto fail
;
31162 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31163 if (SWIG_arg_fail(1)) SWIG_fail
;
31165 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31166 if (SWIG_arg_fail(2)) SWIG_fail
;
31167 if (arg2
== NULL
) {
31168 SWIG_null_ref("wxTreeItemId");
31170 if (SWIG_arg_fail(2)) SWIG_fail
;
31173 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31174 result
= ((wxPyTreeCtrl
const *)arg1
)->GetPrevVisible((wxTreeItemId
const &)*arg2
);
31176 wxPyEndAllowThreads(__tstate
);
31177 if (PyErr_Occurred()) SWIG_fail
;
31180 wxTreeItemId
* resultptr
;
31181 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
31182 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
31190 static PyObject
*_wrap_TreeCtrl_AddRoot(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31191 PyObject
*resultobj
= NULL
;
31192 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31193 wxString
*arg2
= 0 ;
31194 int arg3
= (int) -1 ;
31195 int arg4
= (int) -1 ;
31196 wxPyTreeItemData
*arg5
= (wxPyTreeItemData
*) NULL
;
31197 wxTreeItemId result
;
31198 bool temp2
= false ;
31199 PyObject
* obj0
= 0 ;
31200 PyObject
* obj1
= 0 ;
31201 PyObject
* obj2
= 0 ;
31202 PyObject
* obj3
= 0 ;
31203 PyObject
* obj4
= 0 ;
31204 char *kwnames
[] = {
31205 (char *) "self",(char *) "text",(char *) "image",(char *) "selectedImage",(char *) "data", NULL
31208 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:TreeCtrl_AddRoot",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
31209 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31210 if (SWIG_arg_fail(1)) SWIG_fail
;
31212 arg2
= wxString_in_helper(obj1
);
31213 if (arg2
== NULL
) SWIG_fail
;
31218 arg3
= static_cast<int >(SWIG_As_int(obj2
));
31219 if (SWIG_arg_fail(3)) SWIG_fail
;
31224 arg4
= static_cast<int >(SWIG_As_int(obj3
));
31225 if (SWIG_arg_fail(4)) SWIG_fail
;
31229 SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
);
31230 if (SWIG_arg_fail(5)) SWIG_fail
;
31233 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31234 result
= (arg1
)->AddRoot((wxString
const &)*arg2
,arg3
,arg4
,arg5
);
31236 wxPyEndAllowThreads(__tstate
);
31237 if (PyErr_Occurred()) SWIG_fail
;
31240 wxTreeItemId
* resultptr
;
31241 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
31242 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
31258 static PyObject
*_wrap_TreeCtrl_PrependItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31259 PyObject
*resultobj
= NULL
;
31260 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31261 wxTreeItemId
*arg2
= 0 ;
31262 wxString
*arg3
= 0 ;
31263 int arg4
= (int) -1 ;
31264 int arg5
= (int) -1 ;
31265 wxPyTreeItemData
*arg6
= (wxPyTreeItemData
*) NULL
;
31266 wxTreeItemId result
;
31267 bool temp3
= false ;
31268 PyObject
* obj0
= 0 ;
31269 PyObject
* obj1
= 0 ;
31270 PyObject
* obj2
= 0 ;
31271 PyObject
* obj3
= 0 ;
31272 PyObject
* obj4
= 0 ;
31273 PyObject
* obj5
= 0 ;
31274 char *kwnames
[] = {
31275 (char *) "self",(char *) "parent",(char *) "text",(char *) "image",(char *) "selectedImage",(char *) "data", NULL
31278 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOO:TreeCtrl_PrependItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
31279 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31280 if (SWIG_arg_fail(1)) SWIG_fail
;
31282 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31283 if (SWIG_arg_fail(2)) SWIG_fail
;
31284 if (arg2
== NULL
) {
31285 SWIG_null_ref("wxTreeItemId");
31287 if (SWIG_arg_fail(2)) SWIG_fail
;
31290 arg3
= wxString_in_helper(obj2
);
31291 if (arg3
== NULL
) SWIG_fail
;
31296 arg4
= static_cast<int >(SWIG_As_int(obj3
));
31297 if (SWIG_arg_fail(4)) SWIG_fail
;
31302 arg5
= static_cast<int >(SWIG_As_int(obj4
));
31303 if (SWIG_arg_fail(5)) SWIG_fail
;
31307 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
);
31308 if (SWIG_arg_fail(6)) SWIG_fail
;
31311 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31312 result
= (arg1
)->PrependItem((wxTreeItemId
const &)*arg2
,(wxString
const &)*arg3
,arg4
,arg5
,arg6
);
31314 wxPyEndAllowThreads(__tstate
);
31315 if (PyErr_Occurred()) SWIG_fail
;
31318 wxTreeItemId
* resultptr
;
31319 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
31320 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
31336 static PyObject
*_wrap_TreeCtrl_InsertItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31337 PyObject
*resultobj
= NULL
;
31338 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31339 wxTreeItemId
*arg2
= 0 ;
31340 wxTreeItemId
*arg3
= 0 ;
31341 wxString
*arg4
= 0 ;
31342 int arg5
= (int) -1 ;
31343 int arg6
= (int) -1 ;
31344 wxPyTreeItemData
*arg7
= (wxPyTreeItemData
*) NULL
;
31345 wxTreeItemId result
;
31346 bool temp4
= false ;
31347 PyObject
* obj0
= 0 ;
31348 PyObject
* obj1
= 0 ;
31349 PyObject
* obj2
= 0 ;
31350 PyObject
* obj3
= 0 ;
31351 PyObject
* obj4
= 0 ;
31352 PyObject
* obj5
= 0 ;
31353 PyObject
* obj6
= 0 ;
31354 char *kwnames
[] = {
31355 (char *) "self",(char *) "parent",(char *) "idPrevious",(char *) "text",(char *) "image",(char *) "selectedImage",(char *) "data", NULL
31358 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOO:TreeCtrl_InsertItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
31359 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31360 if (SWIG_arg_fail(1)) SWIG_fail
;
31362 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31363 if (SWIG_arg_fail(2)) SWIG_fail
;
31364 if (arg2
== NULL
) {
31365 SWIG_null_ref("wxTreeItemId");
31367 if (SWIG_arg_fail(2)) SWIG_fail
;
31370 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31371 if (SWIG_arg_fail(3)) SWIG_fail
;
31372 if (arg3
== NULL
) {
31373 SWIG_null_ref("wxTreeItemId");
31375 if (SWIG_arg_fail(3)) SWIG_fail
;
31378 arg4
= wxString_in_helper(obj3
);
31379 if (arg4
== NULL
) SWIG_fail
;
31384 arg5
= static_cast<int >(SWIG_As_int(obj4
));
31385 if (SWIG_arg_fail(5)) SWIG_fail
;
31390 arg6
= static_cast<int >(SWIG_As_int(obj5
));
31391 if (SWIG_arg_fail(6)) SWIG_fail
;
31395 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
);
31396 if (SWIG_arg_fail(7)) SWIG_fail
;
31399 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31400 result
= (arg1
)->InsertItem((wxTreeItemId
const &)*arg2
,(wxTreeItemId
const &)*arg3
,(wxString
const &)*arg4
,arg5
,arg6
,arg7
);
31402 wxPyEndAllowThreads(__tstate
);
31403 if (PyErr_Occurred()) SWIG_fail
;
31406 wxTreeItemId
* resultptr
;
31407 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
31408 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
31424 static PyObject
*_wrap_TreeCtrl_InsertItemBefore(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31425 PyObject
*resultobj
= NULL
;
31426 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31427 wxTreeItemId
*arg2
= 0 ;
31429 wxString
*arg4
= 0 ;
31430 int arg5
= (int) -1 ;
31431 int arg6
= (int) -1 ;
31432 wxPyTreeItemData
*arg7
= (wxPyTreeItemData
*) NULL
;
31433 wxTreeItemId result
;
31434 bool temp4
= false ;
31435 PyObject
* obj0
= 0 ;
31436 PyObject
* obj1
= 0 ;
31437 PyObject
* obj2
= 0 ;
31438 PyObject
* obj3
= 0 ;
31439 PyObject
* obj4
= 0 ;
31440 PyObject
* obj5
= 0 ;
31441 PyObject
* obj6
= 0 ;
31442 char *kwnames
[] = {
31443 (char *) "self",(char *) "parent",(char *) "index",(char *) "text",(char *) "image",(char *) "selectedImage",(char *) "data", NULL
31446 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOO:TreeCtrl_InsertItemBefore",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
31447 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31448 if (SWIG_arg_fail(1)) SWIG_fail
;
31450 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31451 if (SWIG_arg_fail(2)) SWIG_fail
;
31452 if (arg2
== NULL
) {
31453 SWIG_null_ref("wxTreeItemId");
31455 if (SWIG_arg_fail(2)) SWIG_fail
;
31458 arg3
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj2
));
31459 if (SWIG_arg_fail(3)) SWIG_fail
;
31462 arg4
= wxString_in_helper(obj3
);
31463 if (arg4
== NULL
) SWIG_fail
;
31468 arg5
= static_cast<int >(SWIG_As_int(obj4
));
31469 if (SWIG_arg_fail(5)) SWIG_fail
;
31474 arg6
= static_cast<int >(SWIG_As_int(obj5
));
31475 if (SWIG_arg_fail(6)) SWIG_fail
;
31479 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
);
31480 if (SWIG_arg_fail(7)) SWIG_fail
;
31483 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31484 result
= (arg1
)->InsertItem((wxTreeItemId
const &)*arg2
,arg3
,(wxString
const &)*arg4
,arg5
,arg6
,arg7
);
31486 wxPyEndAllowThreads(__tstate
);
31487 if (PyErr_Occurred()) SWIG_fail
;
31490 wxTreeItemId
* resultptr
;
31491 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
31492 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
31508 static PyObject
*_wrap_TreeCtrl_AppendItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31509 PyObject
*resultobj
= NULL
;
31510 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31511 wxTreeItemId
*arg2
= 0 ;
31512 wxString
*arg3
= 0 ;
31513 int arg4
= (int) -1 ;
31514 int arg5
= (int) -1 ;
31515 wxPyTreeItemData
*arg6
= (wxPyTreeItemData
*) NULL
;
31516 wxTreeItemId result
;
31517 bool temp3
= false ;
31518 PyObject
* obj0
= 0 ;
31519 PyObject
* obj1
= 0 ;
31520 PyObject
* obj2
= 0 ;
31521 PyObject
* obj3
= 0 ;
31522 PyObject
* obj4
= 0 ;
31523 PyObject
* obj5
= 0 ;
31524 char *kwnames
[] = {
31525 (char *) "self",(char *) "parent",(char *) "text",(char *) "image",(char *) "selectedImage",(char *) "data", NULL
31528 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOO:TreeCtrl_AppendItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
31529 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31530 if (SWIG_arg_fail(1)) SWIG_fail
;
31532 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31533 if (SWIG_arg_fail(2)) SWIG_fail
;
31534 if (arg2
== NULL
) {
31535 SWIG_null_ref("wxTreeItemId");
31537 if (SWIG_arg_fail(2)) SWIG_fail
;
31540 arg3
= wxString_in_helper(obj2
);
31541 if (arg3
== NULL
) SWIG_fail
;
31546 arg4
= static_cast<int >(SWIG_As_int(obj3
));
31547 if (SWIG_arg_fail(4)) SWIG_fail
;
31552 arg5
= static_cast<int >(SWIG_As_int(obj4
));
31553 if (SWIG_arg_fail(5)) SWIG_fail
;
31557 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
);
31558 if (SWIG_arg_fail(6)) SWIG_fail
;
31561 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31562 result
= (arg1
)->AppendItem((wxTreeItemId
const &)*arg2
,(wxString
const &)*arg3
,arg4
,arg5
,arg6
);
31564 wxPyEndAllowThreads(__tstate
);
31565 if (PyErr_Occurred()) SWIG_fail
;
31568 wxTreeItemId
* resultptr
;
31569 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
31570 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
31586 static PyObject
*_wrap_TreeCtrl_Delete(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31587 PyObject
*resultobj
= NULL
;
31588 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31589 wxTreeItemId
*arg2
= 0 ;
31590 PyObject
* obj0
= 0 ;
31591 PyObject
* obj1
= 0 ;
31592 char *kwnames
[] = {
31593 (char *) "self",(char *) "item", NULL
31596 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_Delete",kwnames
,&obj0
,&obj1
)) goto fail
;
31597 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31598 if (SWIG_arg_fail(1)) SWIG_fail
;
31600 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31601 if (SWIG_arg_fail(2)) SWIG_fail
;
31602 if (arg2
== NULL
) {
31603 SWIG_null_ref("wxTreeItemId");
31605 if (SWIG_arg_fail(2)) SWIG_fail
;
31608 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31609 (arg1
)->Delete((wxTreeItemId
const &)*arg2
);
31611 wxPyEndAllowThreads(__tstate
);
31612 if (PyErr_Occurred()) SWIG_fail
;
31614 Py_INCREF(Py_None
); resultobj
= Py_None
;
31621 static PyObject
*_wrap_TreeCtrl_DeleteChildren(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31622 PyObject
*resultobj
= NULL
;
31623 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31624 wxTreeItemId
*arg2
= 0 ;
31625 PyObject
* obj0
= 0 ;
31626 PyObject
* obj1
= 0 ;
31627 char *kwnames
[] = {
31628 (char *) "self",(char *) "item", NULL
31631 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_DeleteChildren",kwnames
,&obj0
,&obj1
)) goto fail
;
31632 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31633 if (SWIG_arg_fail(1)) SWIG_fail
;
31635 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31636 if (SWIG_arg_fail(2)) SWIG_fail
;
31637 if (arg2
== NULL
) {
31638 SWIG_null_ref("wxTreeItemId");
31640 if (SWIG_arg_fail(2)) SWIG_fail
;
31643 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31644 (arg1
)->DeleteChildren((wxTreeItemId
const &)*arg2
);
31646 wxPyEndAllowThreads(__tstate
);
31647 if (PyErr_Occurred()) SWIG_fail
;
31649 Py_INCREF(Py_None
); resultobj
= Py_None
;
31656 static PyObject
*_wrap_TreeCtrl_DeleteAllItems(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31657 PyObject
*resultobj
= NULL
;
31658 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31659 PyObject
* obj0
= 0 ;
31660 char *kwnames
[] = {
31661 (char *) "self", NULL
31664 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_DeleteAllItems",kwnames
,&obj0
)) goto fail
;
31665 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31666 if (SWIG_arg_fail(1)) SWIG_fail
;
31668 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31669 (arg1
)->DeleteAllItems();
31671 wxPyEndAllowThreads(__tstate
);
31672 if (PyErr_Occurred()) SWIG_fail
;
31674 Py_INCREF(Py_None
); resultobj
= Py_None
;
31681 static PyObject
*_wrap_TreeCtrl_Expand(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31682 PyObject
*resultobj
= NULL
;
31683 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31684 wxTreeItemId
*arg2
= 0 ;
31685 PyObject
* obj0
= 0 ;
31686 PyObject
* obj1
= 0 ;
31687 char *kwnames
[] = {
31688 (char *) "self",(char *) "item", NULL
31691 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_Expand",kwnames
,&obj0
,&obj1
)) goto fail
;
31692 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31693 if (SWIG_arg_fail(1)) SWIG_fail
;
31695 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31696 if (SWIG_arg_fail(2)) SWIG_fail
;
31697 if (arg2
== NULL
) {
31698 SWIG_null_ref("wxTreeItemId");
31700 if (SWIG_arg_fail(2)) SWIG_fail
;
31703 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31704 (arg1
)->Expand((wxTreeItemId
const &)*arg2
);
31706 wxPyEndAllowThreads(__tstate
);
31707 if (PyErr_Occurred()) SWIG_fail
;
31709 Py_INCREF(Py_None
); resultobj
= Py_None
;
31716 static PyObject
*_wrap_TreeCtrl_Collapse(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31717 PyObject
*resultobj
= NULL
;
31718 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31719 wxTreeItemId
*arg2
= 0 ;
31720 PyObject
* obj0
= 0 ;
31721 PyObject
* obj1
= 0 ;
31722 char *kwnames
[] = {
31723 (char *) "self",(char *) "item", NULL
31726 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_Collapse",kwnames
,&obj0
,&obj1
)) goto fail
;
31727 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31728 if (SWIG_arg_fail(1)) SWIG_fail
;
31730 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31731 if (SWIG_arg_fail(2)) SWIG_fail
;
31732 if (arg2
== NULL
) {
31733 SWIG_null_ref("wxTreeItemId");
31735 if (SWIG_arg_fail(2)) SWIG_fail
;
31738 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31739 (arg1
)->Collapse((wxTreeItemId
const &)*arg2
);
31741 wxPyEndAllowThreads(__tstate
);
31742 if (PyErr_Occurred()) SWIG_fail
;
31744 Py_INCREF(Py_None
); resultobj
= Py_None
;
31751 static PyObject
*_wrap_TreeCtrl_CollapseAndReset(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31752 PyObject
*resultobj
= NULL
;
31753 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31754 wxTreeItemId
*arg2
= 0 ;
31755 PyObject
* obj0
= 0 ;
31756 PyObject
* obj1
= 0 ;
31757 char *kwnames
[] = {
31758 (char *) "self",(char *) "item", NULL
31761 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_CollapseAndReset",kwnames
,&obj0
,&obj1
)) goto fail
;
31762 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31763 if (SWIG_arg_fail(1)) SWIG_fail
;
31765 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31766 if (SWIG_arg_fail(2)) SWIG_fail
;
31767 if (arg2
== NULL
) {
31768 SWIG_null_ref("wxTreeItemId");
31770 if (SWIG_arg_fail(2)) SWIG_fail
;
31773 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31774 (arg1
)->CollapseAndReset((wxTreeItemId
const &)*arg2
);
31776 wxPyEndAllowThreads(__tstate
);
31777 if (PyErr_Occurred()) SWIG_fail
;
31779 Py_INCREF(Py_None
); resultobj
= Py_None
;
31786 static PyObject
*_wrap_TreeCtrl_Toggle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31787 PyObject
*resultobj
= NULL
;
31788 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31789 wxTreeItemId
*arg2
= 0 ;
31790 PyObject
* obj0
= 0 ;
31791 PyObject
* obj1
= 0 ;
31792 char *kwnames
[] = {
31793 (char *) "self",(char *) "item", NULL
31796 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_Toggle",kwnames
,&obj0
,&obj1
)) goto fail
;
31797 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31798 if (SWIG_arg_fail(1)) SWIG_fail
;
31800 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31801 if (SWIG_arg_fail(2)) SWIG_fail
;
31802 if (arg2
== NULL
) {
31803 SWIG_null_ref("wxTreeItemId");
31805 if (SWIG_arg_fail(2)) SWIG_fail
;
31808 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31809 (arg1
)->Toggle((wxTreeItemId
const &)*arg2
);
31811 wxPyEndAllowThreads(__tstate
);
31812 if (PyErr_Occurred()) SWIG_fail
;
31814 Py_INCREF(Py_None
); resultobj
= Py_None
;
31821 static PyObject
*_wrap_TreeCtrl_Unselect(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31822 PyObject
*resultobj
= NULL
;
31823 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31824 PyObject
* obj0
= 0 ;
31825 char *kwnames
[] = {
31826 (char *) "self", NULL
31829 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_Unselect",kwnames
,&obj0
)) goto fail
;
31830 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31831 if (SWIG_arg_fail(1)) SWIG_fail
;
31833 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31834 (arg1
)->Unselect();
31836 wxPyEndAllowThreads(__tstate
);
31837 if (PyErr_Occurred()) SWIG_fail
;
31839 Py_INCREF(Py_None
); resultobj
= Py_None
;
31846 static PyObject
*_wrap_TreeCtrl_UnselectItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31847 PyObject
*resultobj
= NULL
;
31848 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31849 wxTreeItemId
*arg2
= 0 ;
31850 PyObject
* obj0
= 0 ;
31851 PyObject
* obj1
= 0 ;
31852 char *kwnames
[] = {
31853 (char *) "self",(char *) "item", NULL
31856 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_UnselectItem",kwnames
,&obj0
,&obj1
)) goto fail
;
31857 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31858 if (SWIG_arg_fail(1)) SWIG_fail
;
31860 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31861 if (SWIG_arg_fail(2)) SWIG_fail
;
31862 if (arg2
== NULL
) {
31863 SWIG_null_ref("wxTreeItemId");
31865 if (SWIG_arg_fail(2)) SWIG_fail
;
31868 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31869 (arg1
)->UnselectItem((wxTreeItemId
const &)*arg2
);
31871 wxPyEndAllowThreads(__tstate
);
31872 if (PyErr_Occurred()) SWIG_fail
;
31874 Py_INCREF(Py_None
); resultobj
= Py_None
;
31881 static PyObject
*_wrap_TreeCtrl_UnselectAll(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31882 PyObject
*resultobj
= NULL
;
31883 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31884 PyObject
* obj0
= 0 ;
31885 char *kwnames
[] = {
31886 (char *) "self", NULL
31889 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_UnselectAll",kwnames
,&obj0
)) goto fail
;
31890 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31891 if (SWIG_arg_fail(1)) SWIG_fail
;
31893 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31894 (arg1
)->UnselectAll();
31896 wxPyEndAllowThreads(__tstate
);
31897 if (PyErr_Occurred()) SWIG_fail
;
31899 Py_INCREF(Py_None
); resultobj
= Py_None
;
31906 static PyObject
*_wrap_TreeCtrl_SelectItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31907 PyObject
*resultobj
= NULL
;
31908 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31909 wxTreeItemId
*arg2
= 0 ;
31910 bool arg3
= (bool) true ;
31911 PyObject
* obj0
= 0 ;
31912 PyObject
* obj1
= 0 ;
31913 PyObject
* obj2
= 0 ;
31914 char *kwnames
[] = {
31915 (char *) "self",(char *) "item",(char *) "select", NULL
31918 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TreeCtrl_SelectItem",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
31919 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31920 if (SWIG_arg_fail(1)) SWIG_fail
;
31922 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31923 if (SWIG_arg_fail(2)) SWIG_fail
;
31924 if (arg2
== NULL
) {
31925 SWIG_null_ref("wxTreeItemId");
31927 if (SWIG_arg_fail(2)) SWIG_fail
;
31931 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
31932 if (SWIG_arg_fail(3)) SWIG_fail
;
31936 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31937 (arg1
)->SelectItem((wxTreeItemId
const &)*arg2
,arg3
);
31939 wxPyEndAllowThreads(__tstate
);
31940 if (PyErr_Occurred()) SWIG_fail
;
31942 Py_INCREF(Py_None
); resultobj
= Py_None
;
31949 static PyObject
*_wrap_TreeCtrl_ToggleItemSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31950 PyObject
*resultobj
= NULL
;
31951 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31952 wxTreeItemId
*arg2
= 0 ;
31953 PyObject
* obj0
= 0 ;
31954 PyObject
* obj1
= 0 ;
31955 char *kwnames
[] = {
31956 (char *) "self",(char *) "item", NULL
31959 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_ToggleItemSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
31960 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31961 if (SWIG_arg_fail(1)) SWIG_fail
;
31963 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31964 if (SWIG_arg_fail(2)) SWIG_fail
;
31965 if (arg2
== NULL
) {
31966 SWIG_null_ref("wxTreeItemId");
31968 if (SWIG_arg_fail(2)) SWIG_fail
;
31971 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31972 (arg1
)->ToggleItemSelection((wxTreeItemId
const &)*arg2
);
31974 wxPyEndAllowThreads(__tstate
);
31975 if (PyErr_Occurred()) SWIG_fail
;
31977 Py_INCREF(Py_None
); resultobj
= Py_None
;
31984 static PyObject
*_wrap_TreeCtrl_EnsureVisible(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31985 PyObject
*resultobj
= NULL
;
31986 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
31987 wxTreeItemId
*arg2
= 0 ;
31988 PyObject
* obj0
= 0 ;
31989 PyObject
* obj1
= 0 ;
31990 char *kwnames
[] = {
31991 (char *) "self",(char *) "item", NULL
31994 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_EnsureVisible",kwnames
,&obj0
,&obj1
)) goto fail
;
31995 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31996 if (SWIG_arg_fail(1)) SWIG_fail
;
31998 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
31999 if (SWIG_arg_fail(2)) SWIG_fail
;
32000 if (arg2
== NULL
) {
32001 SWIG_null_ref("wxTreeItemId");
32003 if (SWIG_arg_fail(2)) SWIG_fail
;
32006 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32007 (arg1
)->EnsureVisible((wxTreeItemId
const &)*arg2
);
32009 wxPyEndAllowThreads(__tstate
);
32010 if (PyErr_Occurred()) SWIG_fail
;
32012 Py_INCREF(Py_None
); resultobj
= Py_None
;
32019 static PyObject
*_wrap_TreeCtrl_ScrollTo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32020 PyObject
*resultobj
= NULL
;
32021 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
32022 wxTreeItemId
*arg2
= 0 ;
32023 PyObject
* obj0
= 0 ;
32024 PyObject
* obj1
= 0 ;
32025 char *kwnames
[] = {
32026 (char *) "self",(char *) "item", NULL
32029 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_ScrollTo",kwnames
,&obj0
,&obj1
)) goto fail
;
32030 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32031 if (SWIG_arg_fail(1)) SWIG_fail
;
32033 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
32034 if (SWIG_arg_fail(2)) SWIG_fail
;
32035 if (arg2
== NULL
) {
32036 SWIG_null_ref("wxTreeItemId");
32038 if (SWIG_arg_fail(2)) SWIG_fail
;
32041 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32042 (arg1
)->ScrollTo((wxTreeItemId
const &)*arg2
);
32044 wxPyEndAllowThreads(__tstate
);
32045 if (PyErr_Occurred()) SWIG_fail
;
32047 Py_INCREF(Py_None
); resultobj
= Py_None
;
32054 static PyObject
*_wrap_TreeCtrl_EditLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32055 PyObject
*resultobj
= NULL
;
32056 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
32057 wxTreeItemId
*arg2
= 0 ;
32058 PyObject
* obj0
= 0 ;
32059 PyObject
* obj1
= 0 ;
32060 char *kwnames
[] = {
32061 (char *) "self",(char *) "item", NULL
32064 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_EditLabel",kwnames
,&obj0
,&obj1
)) goto fail
;
32065 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32066 if (SWIG_arg_fail(1)) SWIG_fail
;
32068 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
32069 if (SWIG_arg_fail(2)) SWIG_fail
;
32070 if (arg2
== NULL
) {
32071 SWIG_null_ref("wxTreeItemId");
32073 if (SWIG_arg_fail(2)) SWIG_fail
;
32076 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32077 (arg1
)->EditLabel((wxTreeItemId
const &)*arg2
);
32079 wxPyEndAllowThreads(__tstate
);
32080 if (PyErr_Occurred()) SWIG_fail
;
32082 Py_INCREF(Py_None
); resultobj
= Py_None
;
32089 static PyObject
*_wrap_TreeCtrl_GetEditControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32090 PyObject
*resultobj
= NULL
;
32091 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
32092 wxTextCtrl
*result
;
32093 PyObject
* obj0
= 0 ;
32094 char *kwnames
[] = {
32095 (char *) "self", NULL
32098 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetEditControl",kwnames
,&obj0
)) goto fail
;
32099 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32100 if (SWIG_arg_fail(1)) SWIG_fail
;
32102 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32103 result
= (wxTextCtrl
*)((wxPyTreeCtrl
const *)arg1
)->GetEditControl();
32105 wxPyEndAllowThreads(__tstate
);
32106 if (PyErr_Occurred()) SWIG_fail
;
32109 resultobj
= wxPyMake_wxObject(result
, 0);
32117 static PyObject
*_wrap_TreeCtrl_SortChildren(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32118 PyObject
*resultobj
= NULL
;
32119 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
32120 wxTreeItemId
*arg2
= 0 ;
32121 PyObject
* obj0
= 0 ;
32122 PyObject
* obj1
= 0 ;
32123 char *kwnames
[] = {
32124 (char *) "self",(char *) "item", NULL
32127 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_SortChildren",kwnames
,&obj0
,&obj1
)) goto fail
;
32128 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32129 if (SWIG_arg_fail(1)) SWIG_fail
;
32131 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
32132 if (SWIG_arg_fail(2)) SWIG_fail
;
32133 if (arg2
== NULL
) {
32134 SWIG_null_ref("wxTreeItemId");
32136 if (SWIG_arg_fail(2)) SWIG_fail
;
32139 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32140 (arg1
)->SortChildren((wxTreeItemId
const &)*arg2
);
32142 wxPyEndAllowThreads(__tstate
);
32143 if (PyErr_Occurred()) SWIG_fail
;
32145 Py_INCREF(Py_None
); resultobj
= Py_None
;
32152 static PyObject
*_wrap_TreeCtrl_HitTest(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32153 PyObject
*resultobj
= NULL
;
32154 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
32155 wxPoint
*arg2
= 0 ;
32157 wxTreeItemId result
;
32161 PyObject
* obj0
= 0 ;
32162 PyObject
* obj1
= 0 ;
32163 char *kwnames
[] = {
32164 (char *) "self",(char *) "point", NULL
32167 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
32168 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_HitTest",kwnames
,&obj0
,&obj1
)) goto fail
;
32169 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32170 if (SWIG_arg_fail(1)) SWIG_fail
;
32173 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
32176 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32177 result
= (arg1
)->HitTest((wxPoint
const &)*arg2
,*arg3
);
32179 wxPyEndAllowThreads(__tstate
);
32180 if (PyErr_Occurred()) SWIG_fail
;
32183 wxTreeItemId
* resultptr
;
32184 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
32185 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
32187 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
32188 SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0)));
32195 static PyObject
*_wrap_TreeCtrl_GetBoundingRect(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32196 PyObject
*resultobj
= NULL
;
32197 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
32198 wxTreeItemId
*arg2
= 0 ;
32199 bool arg3
= (bool) false ;
32201 PyObject
* obj0
= 0 ;
32202 PyObject
* obj1
= 0 ;
32203 PyObject
* obj2
= 0 ;
32204 char *kwnames
[] = {
32205 (char *) "self",(char *) "item",(char *) "textOnly", NULL
32208 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TreeCtrl_GetBoundingRect",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
32209 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32210 if (SWIG_arg_fail(1)) SWIG_fail
;
32212 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
32213 if (SWIG_arg_fail(2)) SWIG_fail
;
32214 if (arg2
== NULL
) {
32215 SWIG_null_ref("wxTreeItemId");
32217 if (SWIG_arg_fail(2)) SWIG_fail
;
32221 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
32222 if (SWIG_arg_fail(3)) SWIG_fail
;
32226 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32227 result
= (PyObject
*)wxPyTreeCtrl_GetBoundingRect(arg1
,(wxTreeItemId
const &)*arg2
,arg3
);
32229 wxPyEndAllowThreads(__tstate
);
32230 if (PyErr_Occurred()) SWIG_fail
;
32232 resultobj
= result
;
32239 static PyObject
*_wrap_TreeCtrl_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32240 PyObject
*resultobj
= NULL
;
32241 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
32242 wxVisualAttributes result
;
32243 PyObject
* obj0
= 0 ;
32244 char *kwnames
[] = {
32245 (char *) "variant", NULL
32248 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:TreeCtrl_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
32251 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
32252 if (SWIG_arg_fail(1)) SWIG_fail
;
32256 if (!wxPyCheckForApp()) SWIG_fail
;
32257 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32258 result
= wxPyTreeCtrl::GetClassDefaultAttributes(arg1
);
32260 wxPyEndAllowThreads(__tstate
);
32261 if (PyErr_Occurred()) SWIG_fail
;
32264 wxVisualAttributes
* resultptr
;
32265 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
32266 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
32274 static PyObject
* TreeCtrl_swigregister(PyObject
*, PyObject
*args
) {
32276 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
32277 SWIG_TypeClientData(SWIGTYPE_p_wxPyTreeCtrl
, obj
);
32279 return Py_BuildValue((char *)"");
32281 static int _wrap_DirDialogDefaultFolderStr_set(PyObject
*) {
32282 PyErr_SetString(PyExc_TypeError
,"Variable DirDialogDefaultFolderStr is read-only.");
32287 static PyObject
*_wrap_DirDialogDefaultFolderStr_get(void) {
32288 PyObject
*pyobj
= NULL
;
32292 pyobj
= PyUnicode_FromWideChar((&wxPyDirDialogDefaultFolderStr
)->c_str(), (&wxPyDirDialogDefaultFolderStr
)->Len());
32294 pyobj
= PyString_FromStringAndSize((&wxPyDirDialogDefaultFolderStr
)->c_str(), (&wxPyDirDialogDefaultFolderStr
)->Len());
32301 static PyObject
*_wrap_new_GenericDirCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32302 PyObject
*resultobj
= NULL
;
32303 wxWindow
*arg1
= (wxWindow
*) 0 ;
32304 int arg2
= (int) (int)-1 ;
32305 wxString
const &arg3_defvalue
= wxPyDirDialogDefaultFolderStr
;
32306 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
32307 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
32308 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
32309 wxSize
const &arg5_defvalue
= wxDefaultSize
;
32310 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
32311 long arg6
= (long) wxDIRCTRL_3D_INTERNAL
|wxSUNKEN_BORDER
;
32312 wxString
const &arg7_defvalue
= wxPyEmptyString
;
32313 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
32314 int arg8
= (int) 0 ;
32315 wxString
const &arg9_defvalue
= wxPyTreeCtrlNameStr
;
32316 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
32317 wxGenericDirCtrl
*result
;
32318 bool temp3
= false ;
32321 bool temp7
= false ;
32322 bool temp9
= false ;
32323 PyObject
* obj0
= 0 ;
32324 PyObject
* obj1
= 0 ;
32325 PyObject
* obj2
= 0 ;
32326 PyObject
* obj3
= 0 ;
32327 PyObject
* obj4
= 0 ;
32328 PyObject
* obj5
= 0 ;
32329 PyObject
* obj6
= 0 ;
32330 PyObject
* obj7
= 0 ;
32331 PyObject
* obj8
= 0 ;
32332 char *kwnames
[] = {
32333 (char *) "parent",(char *) "id",(char *) "dir",(char *) "pos",(char *) "size",(char *) "style",(char *) "filter",(char *) "defaultFilter",(char *) "name", NULL
32336 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOOO:new_GenericDirCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
32337 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
32338 if (SWIG_arg_fail(1)) SWIG_fail
;
32341 arg2
= static_cast<int const >(SWIG_As_int(obj1
));
32342 if (SWIG_arg_fail(2)) SWIG_fail
;
32347 arg3
= wxString_in_helper(obj2
);
32348 if (arg3
== NULL
) SWIG_fail
;
32355 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
32361 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
32366 arg6
= static_cast<long >(SWIG_As_long(obj5
));
32367 if (SWIG_arg_fail(6)) SWIG_fail
;
32372 arg7
= wxString_in_helper(obj6
);
32373 if (arg7
== NULL
) SWIG_fail
;
32379 arg8
= static_cast<int >(SWIG_As_int(obj7
));
32380 if (SWIG_arg_fail(8)) SWIG_fail
;
32385 arg9
= wxString_in_helper(obj8
);
32386 if (arg9
== NULL
) SWIG_fail
;
32391 if (!wxPyCheckForApp()) SWIG_fail
;
32392 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32393 result
= (wxGenericDirCtrl
*)new wxGenericDirCtrl(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
,arg8
,(wxString
const &)*arg9
);
32395 wxPyEndAllowThreads(__tstate
);
32396 if (PyErr_Occurred()) SWIG_fail
;
32398 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGenericDirCtrl
, 1);
32429 static PyObject
*_wrap_new_PreGenericDirCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32430 PyObject
*resultobj
= NULL
;
32431 wxGenericDirCtrl
*result
;
32432 char *kwnames
[] = {
32436 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreGenericDirCtrl",kwnames
)) goto fail
;
32438 if (!wxPyCheckForApp()) SWIG_fail
;
32439 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32440 result
= (wxGenericDirCtrl
*)new wxGenericDirCtrl();
32442 wxPyEndAllowThreads(__tstate
);
32443 if (PyErr_Occurred()) SWIG_fail
;
32445 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGenericDirCtrl
, 1);
32452 static PyObject
*_wrap_GenericDirCtrl_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32453 PyObject
*resultobj
= NULL
;
32454 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
32455 wxWindow
*arg2
= (wxWindow
*) 0 ;
32456 int arg3
= (int) (int)-1 ;
32457 wxString
const &arg4_defvalue
= wxPyDirDialogDefaultFolderStr
;
32458 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
32459 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
32460 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
32461 wxSize
const &arg6_defvalue
= wxDefaultSize
;
32462 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
32463 long arg7
= (long) wxDIRCTRL_3D_INTERNAL
|wxSUNKEN_BORDER
;
32464 wxString
const &arg8_defvalue
= wxPyEmptyString
;
32465 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
32466 int arg9
= (int) 0 ;
32467 wxString
const &arg10_defvalue
= wxPyTreeCtrlNameStr
;
32468 wxString
*arg10
= (wxString
*) &arg10_defvalue
;
32470 bool temp4
= false ;
32473 bool temp8
= false ;
32474 bool temp10
= false ;
32475 PyObject
* obj0
= 0 ;
32476 PyObject
* obj1
= 0 ;
32477 PyObject
* obj2
= 0 ;
32478 PyObject
* obj3
= 0 ;
32479 PyObject
* obj4
= 0 ;
32480 PyObject
* obj5
= 0 ;
32481 PyObject
* obj6
= 0 ;
32482 PyObject
* obj7
= 0 ;
32483 PyObject
* obj8
= 0 ;
32484 PyObject
* obj9
= 0 ;
32485 char *kwnames
[] = {
32486 (char *) "self",(char *) "parent",(char *) "id",(char *) "dir",(char *) "pos",(char *) "size",(char *) "style",(char *) "filter",(char *) "defaultFilter",(char *) "name", NULL
32489 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOOO:GenericDirCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) goto fail
;
32490 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32491 if (SWIG_arg_fail(1)) SWIG_fail
;
32492 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
32493 if (SWIG_arg_fail(2)) SWIG_fail
;
32496 arg3
= static_cast<int const >(SWIG_As_int(obj2
));
32497 if (SWIG_arg_fail(3)) SWIG_fail
;
32502 arg4
= wxString_in_helper(obj3
);
32503 if (arg4
== NULL
) SWIG_fail
;
32510 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
32516 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
32521 arg7
= static_cast<long >(SWIG_As_long(obj6
));
32522 if (SWIG_arg_fail(7)) SWIG_fail
;
32527 arg8
= wxString_in_helper(obj7
);
32528 if (arg8
== NULL
) SWIG_fail
;
32534 arg9
= static_cast<int >(SWIG_As_int(obj8
));
32535 if (SWIG_arg_fail(9)) SWIG_fail
;
32540 arg10
= wxString_in_helper(obj9
);
32541 if (arg10
== NULL
) SWIG_fail
;
32546 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32547 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
,arg9
,(wxString
const &)*arg10
);
32549 wxPyEndAllowThreads(__tstate
);
32550 if (PyErr_Occurred()) SWIG_fail
;
32553 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
32585 static PyObject
*_wrap_GenericDirCtrl_ExpandPath(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32586 PyObject
*resultobj
= NULL
;
32587 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
32588 wxString
*arg2
= 0 ;
32590 bool temp2
= false ;
32591 PyObject
* obj0
= 0 ;
32592 PyObject
* obj1
= 0 ;
32593 char *kwnames
[] = {
32594 (char *) "self",(char *) "path", NULL
32597 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GenericDirCtrl_ExpandPath",kwnames
,&obj0
,&obj1
)) goto fail
;
32598 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32599 if (SWIG_arg_fail(1)) SWIG_fail
;
32601 arg2
= wxString_in_helper(obj1
);
32602 if (arg2
== NULL
) SWIG_fail
;
32606 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32607 result
= (bool)(arg1
)->ExpandPath((wxString
const &)*arg2
);
32609 wxPyEndAllowThreads(__tstate
);
32610 if (PyErr_Occurred()) SWIG_fail
;
32613 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
32629 static PyObject
*_wrap_GenericDirCtrl_GetDefaultPath(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32630 PyObject
*resultobj
= NULL
;
32631 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
32633 PyObject
* obj0
= 0 ;
32634 char *kwnames
[] = {
32635 (char *) "self", NULL
32638 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetDefaultPath",kwnames
,&obj0
)) goto fail
;
32639 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32640 if (SWIG_arg_fail(1)) SWIG_fail
;
32642 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32643 result
= ((wxGenericDirCtrl
const *)arg1
)->GetDefaultPath();
32645 wxPyEndAllowThreads(__tstate
);
32646 if (PyErr_Occurred()) SWIG_fail
;
32650 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
32652 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
32661 static PyObject
*_wrap_GenericDirCtrl_SetDefaultPath(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32662 PyObject
*resultobj
= NULL
;
32663 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
32664 wxString
*arg2
= 0 ;
32665 bool temp2
= false ;
32666 PyObject
* obj0
= 0 ;
32667 PyObject
* obj1
= 0 ;
32668 char *kwnames
[] = {
32669 (char *) "self",(char *) "path", NULL
32672 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GenericDirCtrl_SetDefaultPath",kwnames
,&obj0
,&obj1
)) goto fail
;
32673 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32674 if (SWIG_arg_fail(1)) SWIG_fail
;
32676 arg2
= wxString_in_helper(obj1
);
32677 if (arg2
== NULL
) SWIG_fail
;
32681 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32682 (arg1
)->SetDefaultPath((wxString
const &)*arg2
);
32684 wxPyEndAllowThreads(__tstate
);
32685 if (PyErr_Occurred()) SWIG_fail
;
32687 Py_INCREF(Py_None
); resultobj
= Py_None
;
32702 static PyObject
*_wrap_GenericDirCtrl_GetPath(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32703 PyObject
*resultobj
= NULL
;
32704 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
32706 PyObject
* obj0
= 0 ;
32707 char *kwnames
[] = {
32708 (char *) "self", NULL
32711 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetPath",kwnames
,&obj0
)) goto fail
;
32712 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32713 if (SWIG_arg_fail(1)) SWIG_fail
;
32715 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32716 result
= ((wxGenericDirCtrl
const *)arg1
)->GetPath();
32718 wxPyEndAllowThreads(__tstate
);
32719 if (PyErr_Occurred()) SWIG_fail
;
32723 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
32725 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
32734 static PyObject
*_wrap_GenericDirCtrl_GetFilePath(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32735 PyObject
*resultobj
= NULL
;
32736 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
32738 PyObject
* obj0
= 0 ;
32739 char *kwnames
[] = {
32740 (char *) "self", NULL
32743 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetFilePath",kwnames
,&obj0
)) goto fail
;
32744 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32745 if (SWIG_arg_fail(1)) SWIG_fail
;
32747 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32748 result
= ((wxGenericDirCtrl
const *)arg1
)->GetFilePath();
32750 wxPyEndAllowThreads(__tstate
);
32751 if (PyErr_Occurred()) SWIG_fail
;
32755 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
32757 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
32766 static PyObject
*_wrap_GenericDirCtrl_SetPath(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32767 PyObject
*resultobj
= NULL
;
32768 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
32769 wxString
*arg2
= 0 ;
32770 bool temp2
= false ;
32771 PyObject
* obj0
= 0 ;
32772 PyObject
* obj1
= 0 ;
32773 char *kwnames
[] = {
32774 (char *) "self",(char *) "path", NULL
32777 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GenericDirCtrl_SetPath",kwnames
,&obj0
,&obj1
)) goto fail
;
32778 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32779 if (SWIG_arg_fail(1)) SWIG_fail
;
32781 arg2
= wxString_in_helper(obj1
);
32782 if (arg2
== NULL
) SWIG_fail
;
32786 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32787 (arg1
)->SetPath((wxString
const &)*arg2
);
32789 wxPyEndAllowThreads(__tstate
);
32790 if (PyErr_Occurred()) SWIG_fail
;
32792 Py_INCREF(Py_None
); resultobj
= Py_None
;
32807 static PyObject
*_wrap_GenericDirCtrl_ShowHidden(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32808 PyObject
*resultobj
= NULL
;
32809 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
32811 PyObject
* obj0
= 0 ;
32812 PyObject
* obj1
= 0 ;
32813 char *kwnames
[] = {
32814 (char *) "self",(char *) "show", NULL
32817 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GenericDirCtrl_ShowHidden",kwnames
,&obj0
,&obj1
)) goto fail
;
32818 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32819 if (SWIG_arg_fail(1)) SWIG_fail
;
32821 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
32822 if (SWIG_arg_fail(2)) SWIG_fail
;
32825 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32826 (arg1
)->ShowHidden(arg2
);
32828 wxPyEndAllowThreads(__tstate
);
32829 if (PyErr_Occurred()) SWIG_fail
;
32831 Py_INCREF(Py_None
); resultobj
= Py_None
;
32838 static PyObject
*_wrap_GenericDirCtrl_GetShowHidden(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32839 PyObject
*resultobj
= NULL
;
32840 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
32842 PyObject
* obj0
= 0 ;
32843 char *kwnames
[] = {
32844 (char *) "self", NULL
32847 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetShowHidden",kwnames
,&obj0
)) goto fail
;
32848 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32849 if (SWIG_arg_fail(1)) SWIG_fail
;
32851 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32852 result
= (bool)(arg1
)->GetShowHidden();
32854 wxPyEndAllowThreads(__tstate
);
32855 if (PyErr_Occurred()) SWIG_fail
;
32858 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
32866 static PyObject
*_wrap_GenericDirCtrl_GetFilter(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32867 PyObject
*resultobj
= NULL
;
32868 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
32870 PyObject
* obj0
= 0 ;
32871 char *kwnames
[] = {
32872 (char *) "self", NULL
32875 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetFilter",kwnames
,&obj0
)) goto fail
;
32876 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32877 if (SWIG_arg_fail(1)) SWIG_fail
;
32879 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32880 result
= ((wxGenericDirCtrl
const *)arg1
)->GetFilter();
32882 wxPyEndAllowThreads(__tstate
);
32883 if (PyErr_Occurred()) SWIG_fail
;
32887 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
32889 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
32898 static PyObject
*_wrap_GenericDirCtrl_SetFilter(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32899 PyObject
*resultobj
= NULL
;
32900 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
32901 wxString
*arg2
= 0 ;
32902 bool temp2
= false ;
32903 PyObject
* obj0
= 0 ;
32904 PyObject
* obj1
= 0 ;
32905 char *kwnames
[] = {
32906 (char *) "self",(char *) "filter", NULL
32909 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GenericDirCtrl_SetFilter",kwnames
,&obj0
,&obj1
)) goto fail
;
32910 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32911 if (SWIG_arg_fail(1)) SWIG_fail
;
32913 arg2
= wxString_in_helper(obj1
);
32914 if (arg2
== NULL
) SWIG_fail
;
32918 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32919 (arg1
)->SetFilter((wxString
const &)*arg2
);
32921 wxPyEndAllowThreads(__tstate
);
32922 if (PyErr_Occurred()) SWIG_fail
;
32924 Py_INCREF(Py_None
); resultobj
= Py_None
;
32939 static PyObject
*_wrap_GenericDirCtrl_GetFilterIndex(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32940 PyObject
*resultobj
= NULL
;
32941 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
32943 PyObject
* obj0
= 0 ;
32944 char *kwnames
[] = {
32945 (char *) "self", NULL
32948 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetFilterIndex",kwnames
,&obj0
)) goto fail
;
32949 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32950 if (SWIG_arg_fail(1)) SWIG_fail
;
32952 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32953 result
= (int)((wxGenericDirCtrl
const *)arg1
)->GetFilterIndex();
32955 wxPyEndAllowThreads(__tstate
);
32956 if (PyErr_Occurred()) SWIG_fail
;
32959 resultobj
= SWIG_From_int(static_cast<int >(result
));
32967 static PyObject
*_wrap_GenericDirCtrl_SetFilterIndex(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32968 PyObject
*resultobj
= NULL
;
32969 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
32971 PyObject
* obj0
= 0 ;
32972 PyObject
* obj1
= 0 ;
32973 char *kwnames
[] = {
32974 (char *) "self",(char *) "n", NULL
32977 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GenericDirCtrl_SetFilterIndex",kwnames
,&obj0
,&obj1
)) goto fail
;
32978 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32979 if (SWIG_arg_fail(1)) SWIG_fail
;
32981 arg2
= static_cast<int >(SWIG_As_int(obj1
));
32982 if (SWIG_arg_fail(2)) SWIG_fail
;
32985 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32986 (arg1
)->SetFilterIndex(arg2
);
32988 wxPyEndAllowThreads(__tstate
);
32989 if (PyErr_Occurred()) SWIG_fail
;
32991 Py_INCREF(Py_None
); resultobj
= Py_None
;
32998 static PyObject
*_wrap_GenericDirCtrl_GetRootId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32999 PyObject
*resultobj
= NULL
;
33000 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
33001 wxTreeItemId result
;
33002 PyObject
* obj0
= 0 ;
33003 char *kwnames
[] = {
33004 (char *) "self", NULL
33007 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetRootId",kwnames
,&obj0
)) goto fail
;
33008 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
33009 if (SWIG_arg_fail(1)) SWIG_fail
;
33011 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33012 result
= (arg1
)->GetRootId();
33014 wxPyEndAllowThreads(__tstate
);
33015 if (PyErr_Occurred()) SWIG_fail
;
33018 wxTreeItemId
* resultptr
;
33019 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
33020 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
33028 static PyObject
*_wrap_GenericDirCtrl_GetTreeCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33029 PyObject
*resultobj
= NULL
;
33030 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
33031 wxPyTreeCtrl
*result
;
33032 PyObject
* obj0
= 0 ;
33033 char *kwnames
[] = {
33034 (char *) "self", NULL
33037 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetTreeCtrl",kwnames
,&obj0
)) goto fail
;
33038 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
33039 if (SWIG_arg_fail(1)) SWIG_fail
;
33041 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33042 result
= (wxPyTreeCtrl
*)((wxGenericDirCtrl
const *)arg1
)->GetTreeCtrl();
33044 wxPyEndAllowThreads(__tstate
);
33045 if (PyErr_Occurred()) SWIG_fail
;
33048 resultobj
= wxPyMake_wxObject(result
, 0);
33056 static PyObject
*_wrap_GenericDirCtrl_GetFilterListCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33057 PyObject
*resultobj
= NULL
;
33058 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
33059 wxDirFilterListCtrl
*result
;
33060 PyObject
* obj0
= 0 ;
33061 char *kwnames
[] = {
33062 (char *) "self", NULL
33065 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetFilterListCtrl",kwnames
,&obj0
)) goto fail
;
33066 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
33067 if (SWIG_arg_fail(1)) SWIG_fail
;
33069 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33070 result
= (wxDirFilterListCtrl
*)((wxGenericDirCtrl
const *)arg1
)->GetFilterListCtrl();
33072 wxPyEndAllowThreads(__tstate
);
33073 if (PyErr_Occurred()) SWIG_fail
;
33075 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxDirFilterListCtrl
, 0);
33082 static PyObject
*_wrap_GenericDirCtrl_FindChild(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33083 PyObject
*resultobj
= NULL
;
33084 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
33085 wxTreeItemId arg2
;
33086 wxString
*arg3
= 0 ;
33088 wxTreeItemId result
;
33089 bool temp3
= false ;
33092 PyObject
* obj0
= 0 ;
33093 PyObject
* obj1
= 0 ;
33094 PyObject
* obj2
= 0 ;
33095 char *kwnames
[] = {
33096 (char *) "self",(char *) "parentId",(char *) "path", NULL
33099 arg4
= &temp4
; res4
= SWIG_NEWOBJ
;
33100 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:GenericDirCtrl_FindChild",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
33101 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
33102 if (SWIG_arg_fail(1)) SWIG_fail
;
33104 wxTreeItemId
* argp
;
33105 SWIG_Python_ConvertPtr(obj1
, (void **)&argp
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
);
33106 if (SWIG_arg_fail(2)) SWIG_fail
;
33107 if (argp
== NULL
) {
33108 SWIG_null_ref("wxTreeItemId");
33110 if (SWIG_arg_fail(2)) SWIG_fail
;
33114 arg3
= wxString_in_helper(obj2
);
33115 if (arg3
== NULL
) SWIG_fail
;
33119 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33120 result
= (arg1
)->FindChild(arg2
,(wxString
const &)*arg3
,*arg4
);
33122 wxPyEndAllowThreads(__tstate
);
33123 if (PyErr_Occurred()) SWIG_fail
;
33126 wxTreeItemId
* resultptr
;
33127 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
33128 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
33130 resultobj
= t_output_helper(resultobj
, ((res4
== SWIG_NEWOBJ
) ?
33131 SWIG_From_bool((*arg4
)) : SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_bool
, 0)));
33146 static PyObject
*_wrap_GenericDirCtrl_DoResize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33147 PyObject
*resultobj
= NULL
;
33148 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
33149 PyObject
* obj0
= 0 ;
33150 char *kwnames
[] = {
33151 (char *) "self", NULL
33154 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_DoResize",kwnames
,&obj0
)) goto fail
;
33155 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
33156 if (SWIG_arg_fail(1)) SWIG_fail
;
33158 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33159 (arg1
)->DoResize();
33161 wxPyEndAllowThreads(__tstate
);
33162 if (PyErr_Occurred()) SWIG_fail
;
33164 Py_INCREF(Py_None
); resultobj
= Py_None
;
33171 static PyObject
*_wrap_GenericDirCtrl_ReCreateTree(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33172 PyObject
*resultobj
= NULL
;
33173 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
33174 PyObject
* obj0
= 0 ;
33175 char *kwnames
[] = {
33176 (char *) "self", NULL
33179 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_ReCreateTree",kwnames
,&obj0
)) goto fail
;
33180 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
33181 if (SWIG_arg_fail(1)) SWIG_fail
;
33183 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33184 (arg1
)->ReCreateTree();
33186 wxPyEndAllowThreads(__tstate
);
33187 if (PyErr_Occurred()) SWIG_fail
;
33189 Py_INCREF(Py_None
); resultobj
= Py_None
;
33196 static PyObject
* GenericDirCtrl_swigregister(PyObject
*, PyObject
*args
) {
33198 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
33199 SWIG_TypeClientData(SWIGTYPE_p_wxGenericDirCtrl
, obj
);
33201 return Py_BuildValue((char *)"");
33203 static PyObject
*_wrap_new_DirFilterListCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33204 PyObject
*resultobj
= NULL
;
33205 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
33206 int arg2
= (int) (int)-1 ;
33207 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
33208 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
33209 wxSize
const &arg4_defvalue
= wxDefaultSize
;
33210 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
33211 long arg5
= (long) 0 ;
33212 wxDirFilterListCtrl
*result
;
33215 PyObject
* obj0
= 0 ;
33216 PyObject
* obj1
= 0 ;
33217 PyObject
* obj2
= 0 ;
33218 PyObject
* obj3
= 0 ;
33219 PyObject
* obj4
= 0 ;
33220 char *kwnames
[] = {
33221 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
33224 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_DirFilterListCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
33225 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
33226 if (SWIG_arg_fail(1)) SWIG_fail
;
33229 arg2
= static_cast<int const >(SWIG_As_int(obj1
));
33230 if (SWIG_arg_fail(2)) SWIG_fail
;
33236 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
33242 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
33247 arg5
= static_cast<long >(SWIG_As_long(obj4
));
33248 if (SWIG_arg_fail(5)) SWIG_fail
;
33252 if (!wxPyCheckForApp()) SWIG_fail
;
33253 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33254 result
= (wxDirFilterListCtrl
*)new wxDirFilterListCtrl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
33256 wxPyEndAllowThreads(__tstate
);
33257 if (PyErr_Occurred()) SWIG_fail
;
33259 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxDirFilterListCtrl
, 1);
33266 static PyObject
*_wrap_new_PreDirFilterListCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33267 PyObject
*resultobj
= NULL
;
33268 wxDirFilterListCtrl
*result
;
33269 char *kwnames
[] = {
33273 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreDirFilterListCtrl",kwnames
)) goto fail
;
33275 if (!wxPyCheckForApp()) SWIG_fail
;
33276 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33277 result
= (wxDirFilterListCtrl
*)new wxDirFilterListCtrl();
33279 wxPyEndAllowThreads(__tstate
);
33280 if (PyErr_Occurred()) SWIG_fail
;
33282 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxDirFilterListCtrl
, 1);
33289 static PyObject
*_wrap_DirFilterListCtrl_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33290 PyObject
*resultobj
= NULL
;
33291 wxDirFilterListCtrl
*arg1
= (wxDirFilterListCtrl
*) 0 ;
33292 wxGenericDirCtrl
*arg2
= (wxGenericDirCtrl
*) 0 ;
33293 int arg3
= (int) (int)-1 ;
33294 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
33295 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
33296 wxSize
const &arg5_defvalue
= wxDefaultSize
;
33297 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
33298 long arg6
= (long) 0 ;
33302 PyObject
* obj0
= 0 ;
33303 PyObject
* obj1
= 0 ;
33304 PyObject
* obj2
= 0 ;
33305 PyObject
* obj3
= 0 ;
33306 PyObject
* obj4
= 0 ;
33307 PyObject
* obj5
= 0 ;
33308 char *kwnames
[] = {
33309 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
33312 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:DirFilterListCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
33313 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDirFilterListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
33314 if (SWIG_arg_fail(1)) SWIG_fail
;
33315 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
33316 if (SWIG_arg_fail(2)) SWIG_fail
;
33319 arg3
= static_cast<int const >(SWIG_As_int(obj2
));
33320 if (SWIG_arg_fail(3)) SWIG_fail
;
33326 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
33332 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
33337 arg6
= static_cast<long >(SWIG_As_long(obj5
));
33338 if (SWIG_arg_fail(6)) SWIG_fail
;
33342 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33343 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
);
33345 wxPyEndAllowThreads(__tstate
);
33346 if (PyErr_Occurred()) SWIG_fail
;
33349 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
33357 static PyObject
*_wrap_DirFilterListCtrl_FillFilterList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33358 PyObject
*resultobj
= NULL
;
33359 wxDirFilterListCtrl
*arg1
= (wxDirFilterListCtrl
*) 0 ;
33360 wxString
*arg2
= 0 ;
33362 bool temp2
= false ;
33363 PyObject
* obj0
= 0 ;
33364 PyObject
* obj1
= 0 ;
33365 PyObject
* obj2
= 0 ;
33366 char *kwnames
[] = {
33367 (char *) "self",(char *) "filter",(char *) "defaultFilter", NULL
33370 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DirFilterListCtrl_FillFilterList",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
33371 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDirFilterListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
33372 if (SWIG_arg_fail(1)) SWIG_fail
;
33374 arg2
= wxString_in_helper(obj1
);
33375 if (arg2
== NULL
) SWIG_fail
;
33379 arg3
= static_cast<int >(SWIG_As_int(obj2
));
33380 if (SWIG_arg_fail(3)) SWIG_fail
;
33383 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33384 (arg1
)->FillFilterList((wxString
const &)*arg2
,arg3
);
33386 wxPyEndAllowThreads(__tstate
);
33387 if (PyErr_Occurred()) SWIG_fail
;
33389 Py_INCREF(Py_None
); resultobj
= Py_None
;
33404 static PyObject
* DirFilterListCtrl_swigregister(PyObject
*, PyObject
*args
) {
33406 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
33407 SWIG_TypeClientData(SWIGTYPE_p_wxDirFilterListCtrl
, obj
);
33409 return Py_BuildValue((char *)"");
33411 static PyObject
*_wrap_new_PyControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33412 PyObject
*resultobj
= NULL
;
33413 wxWindow
*arg1
= (wxWindow
*) 0 ;
33414 int arg2
= (int) (int)-1 ;
33415 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
33416 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
33417 wxSize
const &arg4_defvalue
= wxDefaultSize
;
33418 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
33419 long arg5
= (long) 0 ;
33420 wxValidator
const &arg6_defvalue
= wxDefaultValidator
;
33421 wxValidator
*arg6
= (wxValidator
*) &arg6_defvalue
;
33422 wxString
const &arg7_defvalue
= wxPyControlNameStr
;
33423 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
33424 wxPyControl
*result
;
33427 bool temp7
= false ;
33428 PyObject
* obj0
= 0 ;
33429 PyObject
* obj1
= 0 ;
33430 PyObject
* obj2
= 0 ;
33431 PyObject
* obj3
= 0 ;
33432 PyObject
* obj4
= 0 ;
33433 PyObject
* obj5
= 0 ;
33434 PyObject
* obj6
= 0 ;
33435 char *kwnames
[] = {
33436 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
33439 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_PyControl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
33440 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
33441 if (SWIG_arg_fail(1)) SWIG_fail
;
33444 arg2
= static_cast<int const >(SWIG_As_int(obj1
));
33445 if (SWIG_arg_fail(2)) SWIG_fail
;
33451 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
33457 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
33462 arg5
= static_cast<long >(SWIG_As_long(obj4
));
33463 if (SWIG_arg_fail(5)) SWIG_fail
;
33468 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
33469 if (SWIG_arg_fail(6)) SWIG_fail
;
33470 if (arg6
== NULL
) {
33471 SWIG_null_ref("wxValidator");
33473 if (SWIG_arg_fail(6)) SWIG_fail
;
33478 arg7
= wxString_in_helper(obj6
);
33479 if (arg7
== NULL
) SWIG_fail
;
33484 if (!wxPyCheckForApp()) SWIG_fail
;
33485 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33486 result
= (wxPyControl
*)new wxPyControl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxValidator
const &)*arg6
,(wxString
const &)*arg7
);
33488 wxPyEndAllowThreads(__tstate
);
33489 if (PyErr_Occurred()) SWIG_fail
;
33491 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyControl
, 1);
33506 static PyObject
*_wrap_new_PrePyControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33507 PyObject
*resultobj
= NULL
;
33508 wxPyControl
*result
;
33509 char *kwnames
[] = {
33513 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PrePyControl",kwnames
)) goto fail
;
33515 if (!wxPyCheckForApp()) SWIG_fail
;
33516 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33517 result
= (wxPyControl
*)new wxPyControl();
33519 wxPyEndAllowThreads(__tstate
);
33520 if (PyErr_Occurred()) SWIG_fail
;
33522 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyControl
, 1);
33529 static PyObject
*_wrap_PyControl__setCallbackInfo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33530 PyObject
*resultobj
= NULL
;
33531 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33532 PyObject
*arg2
= (PyObject
*) 0 ;
33533 PyObject
*arg3
= (PyObject
*) 0 ;
33534 PyObject
* obj0
= 0 ;
33535 PyObject
* obj1
= 0 ;
33536 PyObject
* obj2
= 0 ;
33537 char *kwnames
[] = {
33538 (char *) "self",(char *) "self",(char *) "_class", NULL
33541 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyControl__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
33542 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33543 if (SWIG_arg_fail(1)) SWIG_fail
;
33547 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33548 (arg1
)->_setCallbackInfo(arg2
,arg3
);
33550 wxPyEndAllowThreads(__tstate
);
33551 if (PyErr_Occurred()) SWIG_fail
;
33553 Py_INCREF(Py_None
); resultobj
= Py_None
;
33560 static PyObject
*_wrap_PyControl_SetBestSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33561 PyObject
*resultobj
= NULL
;
33562 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33565 PyObject
* obj0
= 0 ;
33566 PyObject
* obj1
= 0 ;
33567 char *kwnames
[] = {
33568 (char *) "self",(char *) "size", NULL
33571 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyControl_SetBestSize",kwnames
,&obj0
,&obj1
)) goto fail
;
33572 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33573 if (SWIG_arg_fail(1)) SWIG_fail
;
33576 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
33579 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33580 (arg1
)->SetBestSize((wxSize
const &)*arg2
);
33582 wxPyEndAllowThreads(__tstate
);
33583 if (PyErr_Occurred()) SWIG_fail
;
33585 Py_INCREF(Py_None
); resultobj
= Py_None
;
33592 static PyObject
*_wrap_PyControl_DoEraseBackground(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33593 PyObject
*resultobj
= NULL
;
33594 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33595 wxDC
*arg2
= (wxDC
*) 0 ;
33597 PyObject
* obj0
= 0 ;
33598 PyObject
* obj1
= 0 ;
33599 char *kwnames
[] = {
33600 (char *) "self",(char *) "dc", NULL
33603 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyControl_DoEraseBackground",kwnames
,&obj0
,&obj1
)) goto fail
;
33604 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33605 if (SWIG_arg_fail(1)) SWIG_fail
;
33606 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION
| 0);
33607 if (SWIG_arg_fail(2)) SWIG_fail
;
33609 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33610 result
= (bool)(arg1
)->DoEraseBackground(arg2
);
33612 wxPyEndAllowThreads(__tstate
);
33613 if (PyErr_Occurred()) SWIG_fail
;
33616 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
33624 static PyObject
*_wrap_PyControl_DoMoveWindow(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33625 PyObject
*resultobj
= NULL
;
33626 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33631 PyObject
* obj0
= 0 ;
33632 PyObject
* obj1
= 0 ;
33633 PyObject
* obj2
= 0 ;
33634 PyObject
* obj3
= 0 ;
33635 PyObject
* obj4
= 0 ;
33636 char *kwnames
[] = {
33637 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
33640 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PyControl_DoMoveWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
33641 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33642 if (SWIG_arg_fail(1)) SWIG_fail
;
33644 arg2
= static_cast<int >(SWIG_As_int(obj1
));
33645 if (SWIG_arg_fail(2)) SWIG_fail
;
33648 arg3
= static_cast<int >(SWIG_As_int(obj2
));
33649 if (SWIG_arg_fail(3)) SWIG_fail
;
33652 arg4
= static_cast<int >(SWIG_As_int(obj3
));
33653 if (SWIG_arg_fail(4)) SWIG_fail
;
33656 arg5
= static_cast<int >(SWIG_As_int(obj4
));
33657 if (SWIG_arg_fail(5)) SWIG_fail
;
33660 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33661 (arg1
)->DoMoveWindow(arg2
,arg3
,arg4
,arg5
);
33663 wxPyEndAllowThreads(__tstate
);
33664 if (PyErr_Occurred()) SWIG_fail
;
33666 Py_INCREF(Py_None
); resultobj
= Py_None
;
33673 static PyObject
*_wrap_PyControl_DoSetSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33674 PyObject
*resultobj
= NULL
;
33675 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33680 int arg6
= (int) wxSIZE_AUTO
;
33681 PyObject
* obj0
= 0 ;
33682 PyObject
* obj1
= 0 ;
33683 PyObject
* obj2
= 0 ;
33684 PyObject
* obj3
= 0 ;
33685 PyObject
* obj4
= 0 ;
33686 PyObject
* obj5
= 0 ;
33687 char *kwnames
[] = {
33688 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height",(char *) "sizeFlags", NULL
33691 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|O:PyControl_DoSetSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
33692 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33693 if (SWIG_arg_fail(1)) SWIG_fail
;
33695 arg2
= static_cast<int >(SWIG_As_int(obj1
));
33696 if (SWIG_arg_fail(2)) SWIG_fail
;
33699 arg3
= static_cast<int >(SWIG_As_int(obj2
));
33700 if (SWIG_arg_fail(3)) SWIG_fail
;
33703 arg4
= static_cast<int >(SWIG_As_int(obj3
));
33704 if (SWIG_arg_fail(4)) SWIG_fail
;
33707 arg5
= static_cast<int >(SWIG_As_int(obj4
));
33708 if (SWIG_arg_fail(5)) SWIG_fail
;
33712 arg6
= static_cast<int >(SWIG_As_int(obj5
));
33713 if (SWIG_arg_fail(6)) SWIG_fail
;
33717 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33718 (arg1
)->DoSetSize(arg2
,arg3
,arg4
,arg5
,arg6
);
33720 wxPyEndAllowThreads(__tstate
);
33721 if (PyErr_Occurred()) SWIG_fail
;
33723 Py_INCREF(Py_None
); resultobj
= Py_None
;
33730 static PyObject
*_wrap_PyControl_DoSetClientSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33731 PyObject
*resultobj
= NULL
;
33732 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33735 PyObject
* obj0
= 0 ;
33736 PyObject
* obj1
= 0 ;
33737 PyObject
* obj2
= 0 ;
33738 char *kwnames
[] = {
33739 (char *) "self",(char *) "width",(char *) "height", NULL
33742 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyControl_DoSetClientSize",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
33743 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33744 if (SWIG_arg_fail(1)) SWIG_fail
;
33746 arg2
= static_cast<int >(SWIG_As_int(obj1
));
33747 if (SWIG_arg_fail(2)) SWIG_fail
;
33750 arg3
= static_cast<int >(SWIG_As_int(obj2
));
33751 if (SWIG_arg_fail(3)) SWIG_fail
;
33754 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33755 (arg1
)->DoSetClientSize(arg2
,arg3
);
33757 wxPyEndAllowThreads(__tstate
);
33758 if (PyErr_Occurred()) SWIG_fail
;
33760 Py_INCREF(Py_None
); resultobj
= Py_None
;
33767 static PyObject
*_wrap_PyControl_DoSetVirtualSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33768 PyObject
*resultobj
= NULL
;
33769 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33772 PyObject
* obj0
= 0 ;
33773 PyObject
* obj1
= 0 ;
33774 PyObject
* obj2
= 0 ;
33775 char *kwnames
[] = {
33776 (char *) "self",(char *) "x",(char *) "y", NULL
33779 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyControl_DoSetVirtualSize",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
33780 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33781 if (SWIG_arg_fail(1)) SWIG_fail
;
33783 arg2
= static_cast<int >(SWIG_As_int(obj1
));
33784 if (SWIG_arg_fail(2)) SWIG_fail
;
33787 arg3
= static_cast<int >(SWIG_As_int(obj2
));
33788 if (SWIG_arg_fail(3)) SWIG_fail
;
33791 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33792 (arg1
)->DoSetVirtualSize(arg2
,arg3
);
33794 wxPyEndAllowThreads(__tstate
);
33795 if (PyErr_Occurred()) SWIG_fail
;
33797 Py_INCREF(Py_None
); resultobj
= Py_None
;
33804 static PyObject
*_wrap_PyControl_DoGetSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33805 PyObject
*resultobj
= NULL
;
33806 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33807 int *arg2
= (int *) 0 ;
33808 int *arg3
= (int *) 0 ;
33813 PyObject
* obj0
= 0 ;
33814 char *kwnames
[] = {
33815 (char *) "self", NULL
33818 arg2
= &temp2
; res2
= SWIG_NEWOBJ
;
33819 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
33820 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_DoGetSize",kwnames
,&obj0
)) goto fail
;
33821 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33822 if (SWIG_arg_fail(1)) SWIG_fail
;
33824 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33825 ((wxPyControl
const *)arg1
)->DoGetSize(arg2
,arg3
);
33827 wxPyEndAllowThreads(__tstate
);
33828 if (PyErr_Occurred()) SWIG_fail
;
33830 Py_INCREF(Py_None
); resultobj
= Py_None
;
33831 resultobj
= t_output_helper(resultobj
, ((res2
== SWIG_NEWOBJ
) ?
33832 SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0)));
33833 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
33834 SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0)));
33841 static PyObject
*_wrap_PyControl_DoGetClientSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33842 PyObject
*resultobj
= NULL
;
33843 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33844 int *arg2
= (int *) 0 ;
33845 int *arg3
= (int *) 0 ;
33850 PyObject
* obj0
= 0 ;
33851 char *kwnames
[] = {
33852 (char *) "self", NULL
33855 arg2
= &temp2
; res2
= SWIG_NEWOBJ
;
33856 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
33857 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_DoGetClientSize",kwnames
,&obj0
)) goto fail
;
33858 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33859 if (SWIG_arg_fail(1)) SWIG_fail
;
33861 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33862 ((wxPyControl
const *)arg1
)->DoGetClientSize(arg2
,arg3
);
33864 wxPyEndAllowThreads(__tstate
);
33865 if (PyErr_Occurred()) SWIG_fail
;
33867 Py_INCREF(Py_None
); resultobj
= Py_None
;
33868 resultobj
= t_output_helper(resultobj
, ((res2
== SWIG_NEWOBJ
) ?
33869 SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0)));
33870 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
33871 SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0)));
33878 static PyObject
*_wrap_PyControl_DoGetPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33879 PyObject
*resultobj
= NULL
;
33880 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33881 int *arg2
= (int *) 0 ;
33882 int *arg3
= (int *) 0 ;
33887 PyObject
* obj0
= 0 ;
33888 char *kwnames
[] = {
33889 (char *) "self", NULL
33892 arg2
= &temp2
; res2
= SWIG_NEWOBJ
;
33893 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
33894 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_DoGetPosition",kwnames
,&obj0
)) goto fail
;
33895 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33896 if (SWIG_arg_fail(1)) SWIG_fail
;
33898 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33899 ((wxPyControl
const *)arg1
)->DoGetPosition(arg2
,arg3
);
33901 wxPyEndAllowThreads(__tstate
);
33902 if (PyErr_Occurred()) SWIG_fail
;
33904 Py_INCREF(Py_None
); resultobj
= Py_None
;
33905 resultobj
= t_output_helper(resultobj
, ((res2
== SWIG_NEWOBJ
) ?
33906 SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0)));
33907 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
33908 SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0)));
33915 static PyObject
*_wrap_PyControl_DoGetVirtualSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33916 PyObject
*resultobj
= NULL
;
33917 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33919 PyObject
* obj0
= 0 ;
33920 char *kwnames
[] = {
33921 (char *) "self", NULL
33924 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_DoGetVirtualSize",kwnames
,&obj0
)) goto fail
;
33925 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33926 if (SWIG_arg_fail(1)) SWIG_fail
;
33928 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33929 result
= ((wxPyControl
const *)arg1
)->DoGetVirtualSize();
33931 wxPyEndAllowThreads(__tstate
);
33932 if (PyErr_Occurred()) SWIG_fail
;
33935 wxSize
* resultptr
;
33936 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
33937 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
33945 static PyObject
*_wrap_PyControl_DoGetBestSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33946 PyObject
*resultobj
= NULL
;
33947 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33949 PyObject
* obj0
= 0 ;
33950 char *kwnames
[] = {
33951 (char *) "self", NULL
33954 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_DoGetBestSize",kwnames
,&obj0
)) goto fail
;
33955 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33956 if (SWIG_arg_fail(1)) SWIG_fail
;
33958 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33959 result
= ((wxPyControl
const *)arg1
)->DoGetBestSize();
33961 wxPyEndAllowThreads(__tstate
);
33962 if (PyErr_Occurred()) SWIG_fail
;
33965 wxSize
* resultptr
;
33966 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
33967 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
33975 static PyObject
*_wrap_PyControl_InitDialog(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33976 PyObject
*resultobj
= NULL
;
33977 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33978 PyObject
* obj0
= 0 ;
33979 char *kwnames
[] = {
33980 (char *) "self", NULL
33983 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_InitDialog",kwnames
,&obj0
)) goto fail
;
33984 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33985 if (SWIG_arg_fail(1)) SWIG_fail
;
33987 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33988 (arg1
)->InitDialog();
33990 wxPyEndAllowThreads(__tstate
);
33991 if (PyErr_Occurred()) SWIG_fail
;
33993 Py_INCREF(Py_None
); resultobj
= Py_None
;
34000 static PyObject
*_wrap_PyControl_TransferDataToWindow(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34001 PyObject
*resultobj
= NULL
;
34002 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
34004 PyObject
* obj0
= 0 ;
34005 char *kwnames
[] = {
34006 (char *) "self", NULL
34009 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_TransferDataToWindow",kwnames
,&obj0
)) goto fail
;
34010 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
34011 if (SWIG_arg_fail(1)) SWIG_fail
;
34013 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34014 result
= (bool)(arg1
)->TransferDataToWindow();
34016 wxPyEndAllowThreads(__tstate
);
34017 if (PyErr_Occurred()) SWIG_fail
;
34020 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34028 static PyObject
*_wrap_PyControl_TransferDataFromWindow(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34029 PyObject
*resultobj
= NULL
;
34030 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
34032 PyObject
* obj0
= 0 ;
34033 char *kwnames
[] = {
34034 (char *) "self", NULL
34037 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_TransferDataFromWindow",kwnames
,&obj0
)) goto fail
;
34038 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
34039 if (SWIG_arg_fail(1)) SWIG_fail
;
34041 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34042 result
= (bool)(arg1
)->TransferDataFromWindow();
34044 wxPyEndAllowThreads(__tstate
);
34045 if (PyErr_Occurred()) SWIG_fail
;
34048 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34056 static PyObject
*_wrap_PyControl_Validate(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34057 PyObject
*resultobj
= NULL
;
34058 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
34060 PyObject
* obj0
= 0 ;
34061 char *kwnames
[] = {
34062 (char *) "self", NULL
34065 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_Validate",kwnames
,&obj0
)) goto fail
;
34066 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
34067 if (SWIG_arg_fail(1)) SWIG_fail
;
34069 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34070 result
= (bool)(arg1
)->Validate();
34072 wxPyEndAllowThreads(__tstate
);
34073 if (PyErr_Occurred()) SWIG_fail
;
34076 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34084 static PyObject
*_wrap_PyControl_AcceptsFocus(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34085 PyObject
*resultobj
= NULL
;
34086 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
34088 PyObject
* obj0
= 0 ;
34089 char *kwnames
[] = {
34090 (char *) "self", NULL
34093 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_AcceptsFocus",kwnames
,&obj0
)) goto fail
;
34094 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
34095 if (SWIG_arg_fail(1)) SWIG_fail
;
34097 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34098 result
= (bool)((wxPyControl
const *)arg1
)->AcceptsFocus();
34100 wxPyEndAllowThreads(__tstate
);
34101 if (PyErr_Occurred()) SWIG_fail
;
34104 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34112 static PyObject
*_wrap_PyControl_AcceptsFocusFromKeyboard(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34113 PyObject
*resultobj
= NULL
;
34114 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
34116 PyObject
* obj0
= 0 ;
34117 char *kwnames
[] = {
34118 (char *) "self", NULL
34121 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_AcceptsFocusFromKeyboard",kwnames
,&obj0
)) goto fail
;
34122 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
34123 if (SWIG_arg_fail(1)) SWIG_fail
;
34125 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34126 result
= (bool)((wxPyControl
const *)arg1
)->AcceptsFocusFromKeyboard();
34128 wxPyEndAllowThreads(__tstate
);
34129 if (PyErr_Occurred()) SWIG_fail
;
34132 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34140 static PyObject
*_wrap_PyControl_GetMaxSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34141 PyObject
*resultobj
= NULL
;
34142 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
34144 PyObject
* obj0
= 0 ;
34145 char *kwnames
[] = {
34146 (char *) "self", NULL
34149 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_GetMaxSize",kwnames
,&obj0
)) goto fail
;
34150 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
34151 if (SWIG_arg_fail(1)) SWIG_fail
;
34153 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34154 result
= ((wxPyControl
const *)arg1
)->GetMaxSize();
34156 wxPyEndAllowThreads(__tstate
);
34157 if (PyErr_Occurred()) SWIG_fail
;
34160 wxSize
* resultptr
;
34161 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
34162 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
34170 static PyObject
*_wrap_PyControl_AddChild(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34171 PyObject
*resultobj
= NULL
;
34172 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
34173 wxWindow
*arg2
= (wxWindow
*) 0 ;
34174 PyObject
* obj0
= 0 ;
34175 PyObject
* obj1
= 0 ;
34176 char *kwnames
[] = {
34177 (char *) "self",(char *) "child", NULL
34180 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyControl_AddChild",kwnames
,&obj0
,&obj1
)) goto fail
;
34181 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
34182 if (SWIG_arg_fail(1)) SWIG_fail
;
34183 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
34184 if (SWIG_arg_fail(2)) SWIG_fail
;
34186 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34187 (arg1
)->AddChild(arg2
);
34189 wxPyEndAllowThreads(__tstate
);
34190 if (PyErr_Occurred()) SWIG_fail
;
34192 Py_INCREF(Py_None
); resultobj
= Py_None
;
34199 static PyObject
*_wrap_PyControl_RemoveChild(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34200 PyObject
*resultobj
= NULL
;
34201 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
34202 wxWindow
*arg2
= (wxWindow
*) 0 ;
34203 PyObject
* obj0
= 0 ;
34204 PyObject
* obj1
= 0 ;
34205 char *kwnames
[] = {
34206 (char *) "self",(char *) "child", NULL
34209 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyControl_RemoveChild",kwnames
,&obj0
,&obj1
)) goto fail
;
34210 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
34211 if (SWIG_arg_fail(1)) SWIG_fail
;
34212 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
34213 if (SWIG_arg_fail(2)) SWIG_fail
;
34215 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34216 (arg1
)->RemoveChild(arg2
);
34218 wxPyEndAllowThreads(__tstate
);
34219 if (PyErr_Occurred()) SWIG_fail
;
34221 Py_INCREF(Py_None
); resultobj
= Py_None
;
34228 static PyObject
*_wrap_PyControl_ShouldInheritColours(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34229 PyObject
*resultobj
= NULL
;
34230 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
34232 PyObject
* obj0
= 0 ;
34233 char *kwnames
[] = {
34234 (char *) "self", NULL
34237 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_ShouldInheritColours",kwnames
,&obj0
)) goto fail
;
34238 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
34239 if (SWIG_arg_fail(1)) SWIG_fail
;
34241 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34242 result
= (bool)((wxPyControl
const *)arg1
)->ShouldInheritColours();
34244 wxPyEndAllowThreads(__tstate
);
34245 if (PyErr_Occurred()) SWIG_fail
;
34248 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34256 static PyObject
*_wrap_PyControl_GetDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34257 PyObject
*resultobj
= NULL
;
34258 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
34259 wxVisualAttributes result
;
34260 PyObject
* obj0
= 0 ;
34261 char *kwnames
[] = {
34262 (char *) "self", NULL
34265 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_GetDefaultAttributes",kwnames
,&obj0
)) goto fail
;
34266 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
34267 if (SWIG_arg_fail(1)) SWIG_fail
;
34269 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34270 result
= (arg1
)->GetDefaultAttributes();
34272 wxPyEndAllowThreads(__tstate
);
34273 if (PyErr_Occurred()) SWIG_fail
;
34276 wxVisualAttributes
* resultptr
;
34277 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
34278 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
34286 static PyObject
*_wrap_PyControl_OnInternalIdle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34287 PyObject
*resultobj
= NULL
;
34288 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
34289 PyObject
* obj0
= 0 ;
34290 char *kwnames
[] = {
34291 (char *) "self", NULL
34294 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_OnInternalIdle",kwnames
,&obj0
)) goto fail
;
34295 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
34296 if (SWIG_arg_fail(1)) SWIG_fail
;
34298 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34299 (arg1
)->OnInternalIdle();
34301 wxPyEndAllowThreads(__tstate
);
34302 if (PyErr_Occurred()) SWIG_fail
;
34304 Py_INCREF(Py_None
); resultobj
= Py_None
;
34311 static PyObject
* PyControl_swigregister(PyObject
*, PyObject
*args
) {
34313 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
34314 SWIG_TypeClientData(SWIGTYPE_p_wxPyControl
, obj
);
34316 return Py_BuildValue((char *)"");
34318 static PyObject
*_wrap_new_HelpEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34319 PyObject
*resultobj
= NULL
;
34320 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
34321 int arg2
= (int) 0 ;
34322 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
34323 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
34324 wxHelpEvent
*result
;
34326 PyObject
* obj0
= 0 ;
34327 PyObject
* obj1
= 0 ;
34328 PyObject
* obj2
= 0 ;
34329 char *kwnames
[] = {
34330 (char *) "type",(char *) "winid",(char *) "pt", NULL
34333 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOO:new_HelpEvent",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
34336 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
34337 if (SWIG_arg_fail(1)) SWIG_fail
;
34342 arg2
= static_cast<int >(SWIG_As_int(obj1
));
34343 if (SWIG_arg_fail(2)) SWIG_fail
;
34349 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
34353 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34354 result
= (wxHelpEvent
*)new wxHelpEvent(arg1
,arg2
,(wxPoint
const &)*arg3
);
34356 wxPyEndAllowThreads(__tstate
);
34357 if (PyErr_Occurred()) SWIG_fail
;
34359 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHelpEvent
, 1);
34366 static PyObject
*_wrap_HelpEvent_GetPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34367 PyObject
*resultobj
= NULL
;
34368 wxHelpEvent
*arg1
= (wxHelpEvent
*) 0 ;
34370 PyObject
* obj0
= 0 ;
34371 char *kwnames
[] = {
34372 (char *) "self", NULL
34375 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HelpEvent_GetPosition",kwnames
,&obj0
)) goto fail
;
34376 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpEvent
, SWIG_POINTER_EXCEPTION
| 0);
34377 if (SWIG_arg_fail(1)) SWIG_fail
;
34379 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34380 result
= ((wxHelpEvent
const *)arg1
)->GetPosition();
34382 wxPyEndAllowThreads(__tstate
);
34383 if (PyErr_Occurred()) SWIG_fail
;
34386 wxPoint
* resultptr
;
34387 resultptr
= new wxPoint(static_cast<wxPoint
const & >(result
));
34388 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1);
34396 static PyObject
*_wrap_HelpEvent_SetPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34397 PyObject
*resultobj
= NULL
;
34398 wxHelpEvent
*arg1
= (wxHelpEvent
*) 0 ;
34399 wxPoint
*arg2
= 0 ;
34401 PyObject
* obj0
= 0 ;
34402 PyObject
* obj1
= 0 ;
34403 char *kwnames
[] = {
34404 (char *) "self",(char *) "pos", NULL
34407 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HelpEvent_SetPosition",kwnames
,&obj0
,&obj1
)) goto fail
;
34408 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpEvent
, SWIG_POINTER_EXCEPTION
| 0);
34409 if (SWIG_arg_fail(1)) SWIG_fail
;
34412 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
34415 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34416 (arg1
)->SetPosition((wxPoint
const &)*arg2
);
34418 wxPyEndAllowThreads(__tstate
);
34419 if (PyErr_Occurred()) SWIG_fail
;
34421 Py_INCREF(Py_None
); resultobj
= Py_None
;
34428 static PyObject
*_wrap_HelpEvent_GetLink(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34429 PyObject
*resultobj
= NULL
;
34430 wxHelpEvent
*arg1
= (wxHelpEvent
*) 0 ;
34432 PyObject
* obj0
= 0 ;
34433 char *kwnames
[] = {
34434 (char *) "self", NULL
34437 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HelpEvent_GetLink",kwnames
,&obj0
)) goto fail
;
34438 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpEvent
, SWIG_POINTER_EXCEPTION
| 0);
34439 if (SWIG_arg_fail(1)) SWIG_fail
;
34441 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34443 wxString
const &_result_ref
= ((wxHelpEvent
const *)arg1
)->GetLink();
34444 result
= (wxString
*) &_result_ref
;
34447 wxPyEndAllowThreads(__tstate
);
34448 if (PyErr_Occurred()) SWIG_fail
;
34452 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
34454 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
34463 static PyObject
*_wrap_HelpEvent_SetLink(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34464 PyObject
*resultobj
= NULL
;
34465 wxHelpEvent
*arg1
= (wxHelpEvent
*) 0 ;
34466 wxString
*arg2
= 0 ;
34467 bool temp2
= false ;
34468 PyObject
* obj0
= 0 ;
34469 PyObject
* obj1
= 0 ;
34470 char *kwnames
[] = {
34471 (char *) "self",(char *) "link", NULL
34474 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HelpEvent_SetLink",kwnames
,&obj0
,&obj1
)) goto fail
;
34475 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpEvent
, SWIG_POINTER_EXCEPTION
| 0);
34476 if (SWIG_arg_fail(1)) SWIG_fail
;
34478 arg2
= wxString_in_helper(obj1
);
34479 if (arg2
== NULL
) SWIG_fail
;
34483 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34484 (arg1
)->SetLink((wxString
const &)*arg2
);
34486 wxPyEndAllowThreads(__tstate
);
34487 if (PyErr_Occurred()) SWIG_fail
;
34489 Py_INCREF(Py_None
); resultobj
= Py_None
;
34504 static PyObject
*_wrap_HelpEvent_GetTarget(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34505 PyObject
*resultobj
= NULL
;
34506 wxHelpEvent
*arg1
= (wxHelpEvent
*) 0 ;
34508 PyObject
* obj0
= 0 ;
34509 char *kwnames
[] = {
34510 (char *) "self", NULL
34513 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HelpEvent_GetTarget",kwnames
,&obj0
)) goto fail
;
34514 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpEvent
, SWIG_POINTER_EXCEPTION
| 0);
34515 if (SWIG_arg_fail(1)) SWIG_fail
;
34517 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34519 wxString
const &_result_ref
= ((wxHelpEvent
const *)arg1
)->GetTarget();
34520 result
= (wxString
*) &_result_ref
;
34523 wxPyEndAllowThreads(__tstate
);
34524 if (PyErr_Occurred()) SWIG_fail
;
34528 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
34530 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
34539 static PyObject
*_wrap_HelpEvent_SetTarget(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34540 PyObject
*resultobj
= NULL
;
34541 wxHelpEvent
*arg1
= (wxHelpEvent
*) 0 ;
34542 wxString
*arg2
= 0 ;
34543 bool temp2
= false ;
34544 PyObject
* obj0
= 0 ;
34545 PyObject
* obj1
= 0 ;
34546 char *kwnames
[] = {
34547 (char *) "self",(char *) "target", NULL
34550 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HelpEvent_SetTarget",kwnames
,&obj0
,&obj1
)) goto fail
;
34551 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpEvent
, SWIG_POINTER_EXCEPTION
| 0);
34552 if (SWIG_arg_fail(1)) SWIG_fail
;
34554 arg2
= wxString_in_helper(obj1
);
34555 if (arg2
== NULL
) SWIG_fail
;
34559 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34560 (arg1
)->SetTarget((wxString
const &)*arg2
);
34562 wxPyEndAllowThreads(__tstate
);
34563 if (PyErr_Occurred()) SWIG_fail
;
34565 Py_INCREF(Py_None
); resultobj
= Py_None
;
34580 static PyObject
* HelpEvent_swigregister(PyObject
*, PyObject
*args
) {
34582 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
34583 SWIG_TypeClientData(SWIGTYPE_p_wxHelpEvent
, obj
);
34585 return Py_BuildValue((char *)"");
34587 static PyObject
*_wrap_new_ContextHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34588 PyObject
*resultobj
= NULL
;
34589 wxWindow
*arg1
= (wxWindow
*) NULL
;
34590 bool arg2
= (bool) true ;
34591 wxContextHelp
*result
;
34592 PyObject
* obj0
= 0 ;
34593 PyObject
* obj1
= 0 ;
34594 char *kwnames
[] = {
34595 (char *) "window",(char *) "doNow", NULL
34598 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_ContextHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
34600 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
34601 if (SWIG_arg_fail(1)) SWIG_fail
;
34605 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
34606 if (SWIG_arg_fail(2)) SWIG_fail
;
34610 if (!wxPyCheckForApp()) SWIG_fail
;
34611 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34612 result
= (wxContextHelp
*)new wxContextHelp(arg1
,arg2
);
34614 wxPyEndAllowThreads(__tstate
);
34615 if (PyErr_Occurred()) SWIG_fail
;
34617 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxContextHelp
, 1);
34624 static PyObject
*_wrap_delete_ContextHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34625 PyObject
*resultobj
= NULL
;
34626 wxContextHelp
*arg1
= (wxContextHelp
*) 0 ;
34627 PyObject
* obj0
= 0 ;
34628 char *kwnames
[] = {
34629 (char *) "self", NULL
34632 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_ContextHelp",kwnames
,&obj0
)) goto fail
;
34633 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxContextHelp
, SWIG_POINTER_EXCEPTION
| 0);
34634 if (SWIG_arg_fail(1)) SWIG_fail
;
34636 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34639 wxPyEndAllowThreads(__tstate
);
34640 if (PyErr_Occurred()) SWIG_fail
;
34642 Py_INCREF(Py_None
); resultobj
= Py_None
;
34649 static PyObject
*_wrap_ContextHelp_BeginContextHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34650 PyObject
*resultobj
= NULL
;
34651 wxContextHelp
*arg1
= (wxContextHelp
*) 0 ;
34652 wxWindow
*arg2
= (wxWindow
*) NULL
;
34654 PyObject
* obj0
= 0 ;
34655 PyObject
* obj1
= 0 ;
34656 char *kwnames
[] = {
34657 (char *) "self",(char *) "window", NULL
34660 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:ContextHelp_BeginContextHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
34661 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxContextHelp
, SWIG_POINTER_EXCEPTION
| 0);
34662 if (SWIG_arg_fail(1)) SWIG_fail
;
34664 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
34665 if (SWIG_arg_fail(2)) SWIG_fail
;
34668 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34669 result
= (bool)(arg1
)->BeginContextHelp(arg2
);
34671 wxPyEndAllowThreads(__tstate
);
34672 if (PyErr_Occurred()) SWIG_fail
;
34675 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34683 static PyObject
*_wrap_ContextHelp_EndContextHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34684 PyObject
*resultobj
= NULL
;
34685 wxContextHelp
*arg1
= (wxContextHelp
*) 0 ;
34687 PyObject
* obj0
= 0 ;
34688 char *kwnames
[] = {
34689 (char *) "self", NULL
34692 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ContextHelp_EndContextHelp",kwnames
,&obj0
)) goto fail
;
34693 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxContextHelp
, SWIG_POINTER_EXCEPTION
| 0);
34694 if (SWIG_arg_fail(1)) SWIG_fail
;
34696 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34697 result
= (bool)(arg1
)->EndContextHelp();
34699 wxPyEndAllowThreads(__tstate
);
34700 if (PyErr_Occurred()) SWIG_fail
;
34703 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34711 static PyObject
* ContextHelp_swigregister(PyObject
*, PyObject
*args
) {
34713 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
34714 SWIG_TypeClientData(SWIGTYPE_p_wxContextHelp
, obj
);
34716 return Py_BuildValue((char *)"");
34718 static PyObject
*_wrap_new_ContextHelpButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34719 PyObject
*resultobj
= NULL
;
34720 wxWindow
*arg1
= (wxWindow
*) 0 ;
34721 int arg2
= (int) wxID_CONTEXT_HELP
;
34722 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
34723 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
34724 wxSize
const &arg4_defvalue
= wxDefaultSize
;
34725 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
34726 long arg5
= (long) wxBU_AUTODRAW
;
34727 wxContextHelpButton
*result
;
34730 PyObject
* obj0
= 0 ;
34731 PyObject
* obj1
= 0 ;
34732 PyObject
* obj2
= 0 ;
34733 PyObject
* obj3
= 0 ;
34734 PyObject
* obj4
= 0 ;
34735 char *kwnames
[] = {
34736 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
34739 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_ContextHelpButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
34740 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
34741 if (SWIG_arg_fail(1)) SWIG_fail
;
34744 arg2
= static_cast<int >(SWIG_As_int(obj1
));
34745 if (SWIG_arg_fail(2)) SWIG_fail
;
34751 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
34757 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
34762 arg5
= static_cast<long >(SWIG_As_long(obj4
));
34763 if (SWIG_arg_fail(5)) SWIG_fail
;
34767 if (!wxPyCheckForApp()) SWIG_fail
;
34768 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34769 result
= (wxContextHelpButton
*)new wxContextHelpButton(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
34771 wxPyEndAllowThreads(__tstate
);
34772 if (PyErr_Occurred()) SWIG_fail
;
34774 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxContextHelpButton
, 1);
34781 static PyObject
* ContextHelpButton_swigregister(PyObject
*, PyObject
*args
) {
34783 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
34784 SWIG_TypeClientData(SWIGTYPE_p_wxContextHelpButton
, obj
);
34786 return Py_BuildValue((char *)"");
34788 static PyObject
*_wrap_HelpProvider_Set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34789 PyObject
*resultobj
= NULL
;
34790 wxHelpProvider
*arg1
= (wxHelpProvider
*) 0 ;
34791 wxHelpProvider
*result
;
34792 PyObject
* obj0
= 0 ;
34793 char *kwnames
[] = {
34794 (char *) "helpProvider", NULL
34797 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HelpProvider_Set",kwnames
,&obj0
)) goto fail
;
34798 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpProvider
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
);
34799 if (SWIG_arg_fail(1)) SWIG_fail
;
34801 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34802 result
= (wxHelpProvider
*)wxHelpProvider::Set(arg1
);
34804 wxPyEndAllowThreads(__tstate
);
34805 if (PyErr_Occurred()) SWIG_fail
;
34807 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHelpProvider
, 1);
34814 static PyObject
*_wrap_HelpProvider_Get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34815 PyObject
*resultobj
= NULL
;
34816 wxHelpProvider
*result
;
34817 char *kwnames
[] = {
34821 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":HelpProvider_Get",kwnames
)) goto fail
;
34823 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34824 result
= (wxHelpProvider
*)wxHelpProvider::Get();
34826 wxPyEndAllowThreads(__tstate
);
34827 if (PyErr_Occurred()) SWIG_fail
;
34829 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHelpProvider
, 0);
34836 static PyObject
*_wrap_HelpProvider_GetHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34837 PyObject
*resultobj
= NULL
;
34838 wxHelpProvider
*arg1
= (wxHelpProvider
*) 0 ;
34839 wxWindow
*arg2
= (wxWindow
*) 0 ;
34841 PyObject
* obj0
= 0 ;
34842 PyObject
* obj1
= 0 ;
34843 char *kwnames
[] = {
34844 (char *) "self",(char *) "window", NULL
34847 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HelpProvider_GetHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
34848 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpProvider
, SWIG_POINTER_EXCEPTION
| 0);
34849 if (SWIG_arg_fail(1)) SWIG_fail
;
34850 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
34851 if (SWIG_arg_fail(2)) SWIG_fail
;
34853 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34854 result
= (arg1
)->GetHelp((wxWindow
const *)arg2
);
34856 wxPyEndAllowThreads(__tstate
);
34857 if (PyErr_Occurred()) SWIG_fail
;
34861 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
34863 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
34872 static PyObject
*_wrap_HelpProvider_ShowHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34873 PyObject
*resultobj
= NULL
;
34874 wxHelpProvider
*arg1
= (wxHelpProvider
*) 0 ;
34875 wxWindow
*arg2
= (wxWindow
*) 0 ;
34877 PyObject
* obj0
= 0 ;
34878 PyObject
* obj1
= 0 ;
34879 char *kwnames
[] = {
34880 (char *) "self",(char *) "window", NULL
34883 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HelpProvider_ShowHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
34884 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpProvider
, SWIG_POINTER_EXCEPTION
| 0);
34885 if (SWIG_arg_fail(1)) SWIG_fail
;
34886 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
34887 if (SWIG_arg_fail(2)) SWIG_fail
;
34889 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34890 result
= (bool)(arg1
)->ShowHelp(arg2
);
34892 wxPyEndAllowThreads(__tstate
);
34893 if (PyErr_Occurred()) SWIG_fail
;
34896 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34904 static PyObject
*_wrap_HelpProvider_AddHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34905 PyObject
*resultobj
= NULL
;
34906 wxHelpProvider
*arg1
= (wxHelpProvider
*) 0 ;
34907 wxWindow
*arg2
= (wxWindow
*) 0 ;
34908 wxString
*arg3
= 0 ;
34909 bool temp3
= false ;
34910 PyObject
* obj0
= 0 ;
34911 PyObject
* obj1
= 0 ;
34912 PyObject
* obj2
= 0 ;
34913 char *kwnames
[] = {
34914 (char *) "self",(char *) "window",(char *) "text", NULL
34917 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HelpProvider_AddHelp",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
34918 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpProvider
, SWIG_POINTER_EXCEPTION
| 0);
34919 if (SWIG_arg_fail(1)) SWIG_fail
;
34920 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
34921 if (SWIG_arg_fail(2)) SWIG_fail
;
34923 arg3
= wxString_in_helper(obj2
);
34924 if (arg3
== NULL
) SWIG_fail
;
34928 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34929 (arg1
)->AddHelp(arg2
,(wxString
const &)*arg3
);
34931 wxPyEndAllowThreads(__tstate
);
34932 if (PyErr_Occurred()) SWIG_fail
;
34934 Py_INCREF(Py_None
); resultobj
= Py_None
;
34949 static PyObject
*_wrap_HelpProvider_AddHelpById(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34950 PyObject
*resultobj
= NULL
;
34951 wxHelpProvider
*arg1
= (wxHelpProvider
*) 0 ;
34953 wxString
*arg3
= 0 ;
34954 bool temp3
= false ;
34955 PyObject
* obj0
= 0 ;
34956 PyObject
* obj1
= 0 ;
34957 PyObject
* obj2
= 0 ;
34958 char *kwnames
[] = {
34959 (char *) "self",(char *) "id",(char *) "text", NULL
34962 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HelpProvider_AddHelpById",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
34963 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpProvider
, SWIG_POINTER_EXCEPTION
| 0);
34964 if (SWIG_arg_fail(1)) SWIG_fail
;
34966 arg2
= static_cast<int >(SWIG_As_int(obj1
));
34967 if (SWIG_arg_fail(2)) SWIG_fail
;
34970 arg3
= wxString_in_helper(obj2
);
34971 if (arg3
== NULL
) SWIG_fail
;
34975 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34976 (arg1
)->AddHelp(arg2
,(wxString
const &)*arg3
);
34978 wxPyEndAllowThreads(__tstate
);
34979 if (PyErr_Occurred()) SWIG_fail
;
34981 Py_INCREF(Py_None
); resultobj
= Py_None
;
34996 static PyObject
*_wrap_HelpProvider_RemoveHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34997 PyObject
*resultobj
= NULL
;
34998 wxHelpProvider
*arg1
= (wxHelpProvider
*) 0 ;
34999 wxWindow
*arg2
= (wxWindow
*) 0 ;
35000 PyObject
* obj0
= 0 ;
35001 PyObject
* obj1
= 0 ;
35002 char *kwnames
[] = {
35003 (char *) "self",(char *) "window", NULL
35006 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HelpProvider_RemoveHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
35007 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpProvider
, SWIG_POINTER_EXCEPTION
| 0);
35008 if (SWIG_arg_fail(1)) SWIG_fail
;
35009 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
35010 if (SWIG_arg_fail(2)) SWIG_fail
;
35012 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35013 (arg1
)->RemoveHelp(arg2
);
35015 wxPyEndAllowThreads(__tstate
);
35016 if (PyErr_Occurred()) SWIG_fail
;
35018 Py_INCREF(Py_None
); resultobj
= Py_None
;
35025 static PyObject
*_wrap_HelpProvider_Destroy(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35026 PyObject
*resultobj
= NULL
;
35027 wxHelpProvider
*arg1
= (wxHelpProvider
*) 0 ;
35028 PyObject
* obj0
= 0 ;
35029 char *kwnames
[] = {
35030 (char *) "self", NULL
35033 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HelpProvider_Destroy",kwnames
,&obj0
)) goto fail
;
35034 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpProvider
, SWIG_POINTER_EXCEPTION
| 0);
35035 if (SWIG_arg_fail(1)) SWIG_fail
;
35037 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35038 wxHelpProvider_Destroy(arg1
);
35040 wxPyEndAllowThreads(__tstate
);
35041 if (PyErr_Occurred()) SWIG_fail
;
35043 Py_INCREF(Py_None
); resultobj
= Py_None
;
35050 static PyObject
* HelpProvider_swigregister(PyObject
*, PyObject
*args
) {
35052 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
35053 SWIG_TypeClientData(SWIGTYPE_p_wxHelpProvider
, obj
);
35055 return Py_BuildValue((char *)"");
35057 static PyObject
*_wrap_new_SimpleHelpProvider(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35058 PyObject
*resultobj
= NULL
;
35059 wxSimpleHelpProvider
*result
;
35060 char *kwnames
[] = {
35064 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_SimpleHelpProvider",kwnames
)) goto fail
;
35066 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35067 result
= (wxSimpleHelpProvider
*)new wxSimpleHelpProvider();
35069 wxPyEndAllowThreads(__tstate
);
35070 if (PyErr_Occurred()) SWIG_fail
;
35072 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSimpleHelpProvider
, 1);
35079 static PyObject
* SimpleHelpProvider_swigregister(PyObject
*, PyObject
*args
) {
35081 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
35082 SWIG_TypeClientData(SWIGTYPE_p_wxSimpleHelpProvider
, obj
);
35084 return Py_BuildValue((char *)"");
35086 static PyObject
*_wrap_new_DragImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35087 PyObject
*resultobj
= NULL
;
35088 wxBitmap
*arg1
= 0 ;
35089 wxCursor
const &arg2_defvalue
= wxNullCursor
;
35090 wxCursor
*arg2
= (wxCursor
*) &arg2_defvalue
;
35091 wxGenericDragImage
*result
;
35092 PyObject
* obj0
= 0 ;
35093 PyObject
* obj1
= 0 ;
35094 char *kwnames
[] = {
35095 (char *) "image",(char *) "cursor", NULL
35098 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_DragImage",kwnames
,&obj0
,&obj1
)) goto fail
;
35100 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
35101 if (SWIG_arg_fail(1)) SWIG_fail
;
35102 if (arg1
== NULL
) {
35103 SWIG_null_ref("wxBitmap");
35105 if (SWIG_arg_fail(1)) SWIG_fail
;
35109 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxCursor
, SWIG_POINTER_EXCEPTION
| 0);
35110 if (SWIG_arg_fail(2)) SWIG_fail
;
35111 if (arg2
== NULL
) {
35112 SWIG_null_ref("wxCursor");
35114 if (SWIG_arg_fail(2)) SWIG_fail
;
35118 if (!wxPyCheckForApp()) SWIG_fail
;
35119 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35120 result
= (wxGenericDragImage
*)new wxGenericDragImage((wxBitmap
const &)*arg1
,(wxCursor
const &)*arg2
);
35122 wxPyEndAllowThreads(__tstate
);
35123 if (PyErr_Occurred()) SWIG_fail
;
35125 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGenericDragImage
, 1);
35132 static PyObject
*_wrap_new_DragIcon(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35133 PyObject
*resultobj
= NULL
;
35135 wxCursor
const &arg2_defvalue
= wxNullCursor
;
35136 wxCursor
*arg2
= (wxCursor
*) &arg2_defvalue
;
35137 wxGenericDragImage
*result
;
35138 PyObject
* obj0
= 0 ;
35139 PyObject
* obj1
= 0 ;
35140 char *kwnames
[] = {
35141 (char *) "image",(char *) "cursor", NULL
35144 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_DragIcon",kwnames
,&obj0
,&obj1
)) goto fail
;
35146 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxIcon
, SWIG_POINTER_EXCEPTION
| 0);
35147 if (SWIG_arg_fail(1)) SWIG_fail
;
35148 if (arg1
== NULL
) {
35149 SWIG_null_ref("wxIcon");
35151 if (SWIG_arg_fail(1)) SWIG_fail
;
35155 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxCursor
, SWIG_POINTER_EXCEPTION
| 0);
35156 if (SWIG_arg_fail(2)) SWIG_fail
;
35157 if (arg2
== NULL
) {
35158 SWIG_null_ref("wxCursor");
35160 if (SWIG_arg_fail(2)) SWIG_fail
;
35164 if (!wxPyCheckForApp()) SWIG_fail
;
35165 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35166 result
= (wxGenericDragImage
*)new wxGenericDragImage((wxIcon
const &)*arg1
,(wxCursor
const &)*arg2
);
35168 wxPyEndAllowThreads(__tstate
);
35169 if (PyErr_Occurred()) SWIG_fail
;
35171 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGenericDragImage
, 1);
35178 static PyObject
*_wrap_new_DragString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35179 PyObject
*resultobj
= NULL
;
35180 wxString
*arg1
= 0 ;
35181 wxCursor
const &arg2_defvalue
= wxNullCursor
;
35182 wxCursor
*arg2
= (wxCursor
*) &arg2_defvalue
;
35183 wxGenericDragImage
*result
;
35184 bool temp1
= false ;
35185 PyObject
* obj0
= 0 ;
35186 PyObject
* obj1
= 0 ;
35187 char *kwnames
[] = {
35188 (char *) "str",(char *) "cursor", NULL
35191 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_DragString",kwnames
,&obj0
,&obj1
)) goto fail
;
35193 arg1
= wxString_in_helper(obj0
);
35194 if (arg1
== NULL
) SWIG_fail
;
35199 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxCursor
, SWIG_POINTER_EXCEPTION
| 0);
35200 if (SWIG_arg_fail(2)) SWIG_fail
;
35201 if (arg2
== NULL
) {
35202 SWIG_null_ref("wxCursor");
35204 if (SWIG_arg_fail(2)) SWIG_fail
;
35208 if (!wxPyCheckForApp()) SWIG_fail
;
35209 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35210 result
= (wxGenericDragImage
*)new wxGenericDragImage((wxString
const &)*arg1
,(wxCursor
const &)*arg2
);
35212 wxPyEndAllowThreads(__tstate
);
35213 if (PyErr_Occurred()) SWIG_fail
;
35215 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGenericDragImage
, 1);
35230 static PyObject
*_wrap_new_DragTreeItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35231 PyObject
*resultobj
= NULL
;
35232 wxPyTreeCtrl
*arg1
= 0 ;
35233 wxTreeItemId
*arg2
= 0 ;
35234 wxGenericDragImage
*result
;
35235 PyObject
* obj0
= 0 ;
35236 PyObject
* obj1
= 0 ;
35237 char *kwnames
[] = {
35238 (char *) "treeCtrl",(char *) "id", NULL
35241 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_DragTreeItem",kwnames
,&obj0
,&obj1
)) goto fail
;
35243 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
35244 if (SWIG_arg_fail(1)) SWIG_fail
;
35245 if (arg1
== NULL
) {
35246 SWIG_null_ref("wxPyTreeCtrl");
35248 if (SWIG_arg_fail(1)) SWIG_fail
;
35251 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
35252 if (SWIG_arg_fail(2)) SWIG_fail
;
35253 if (arg2
== NULL
) {
35254 SWIG_null_ref("wxTreeItemId");
35256 if (SWIG_arg_fail(2)) SWIG_fail
;
35259 if (!wxPyCheckForApp()) SWIG_fail
;
35260 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35261 result
= (wxGenericDragImage
*)new wxGenericDragImage((wxPyTreeCtrl
const &)*arg1
,*arg2
);
35263 wxPyEndAllowThreads(__tstate
);
35264 if (PyErr_Occurred()) SWIG_fail
;
35266 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGenericDragImage
, 1);
35273 static PyObject
*_wrap_new_DragListItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35274 PyObject
*resultobj
= NULL
;
35275 wxPyListCtrl
*arg1
= 0 ;
35277 wxGenericDragImage
*result
;
35278 PyObject
* obj0
= 0 ;
35279 PyObject
* obj1
= 0 ;
35280 char *kwnames
[] = {
35281 (char *) "listCtrl",(char *) "id", NULL
35284 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_DragListItem",kwnames
,&obj0
,&obj1
)) goto fail
;
35286 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
35287 if (SWIG_arg_fail(1)) SWIG_fail
;
35288 if (arg1
== NULL
) {
35289 SWIG_null_ref("wxPyListCtrl");
35291 if (SWIG_arg_fail(1)) SWIG_fail
;
35294 arg2
= static_cast<long >(SWIG_As_long(obj1
));
35295 if (SWIG_arg_fail(2)) SWIG_fail
;
35298 if (!wxPyCheckForApp()) SWIG_fail
;
35299 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35300 result
= (wxGenericDragImage
*)new wxGenericDragImage((wxPyListCtrl
const &)*arg1
,arg2
);
35302 wxPyEndAllowThreads(__tstate
);
35303 if (PyErr_Occurred()) SWIG_fail
;
35305 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGenericDragImage
, 1);
35312 static PyObject
*_wrap_delete_DragImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35313 PyObject
*resultobj
= NULL
;
35314 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
35315 PyObject
* obj0
= 0 ;
35316 char *kwnames
[] = {
35317 (char *) "self", NULL
35320 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_DragImage",kwnames
,&obj0
)) goto fail
;
35321 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
35322 if (SWIG_arg_fail(1)) SWIG_fail
;
35324 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35327 wxPyEndAllowThreads(__tstate
);
35328 if (PyErr_Occurred()) SWIG_fail
;
35330 Py_INCREF(Py_None
); resultobj
= Py_None
;
35337 static PyObject
*_wrap_DragImage_SetBackingBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35338 PyObject
*resultobj
= NULL
;
35339 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
35340 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
35341 PyObject
* obj0
= 0 ;
35342 PyObject
* obj1
= 0 ;
35343 char *kwnames
[] = {
35344 (char *) "self",(char *) "bitmap", NULL
35347 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DragImage_SetBackingBitmap",kwnames
,&obj0
,&obj1
)) goto fail
;
35348 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
35349 if (SWIG_arg_fail(1)) SWIG_fail
;
35350 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
35351 if (SWIG_arg_fail(2)) SWIG_fail
;
35353 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35354 (arg1
)->SetBackingBitmap(arg2
);
35356 wxPyEndAllowThreads(__tstate
);
35357 if (PyErr_Occurred()) SWIG_fail
;
35359 Py_INCREF(Py_None
); resultobj
= Py_None
;
35366 static PyObject
*_wrap_DragImage_BeginDrag(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35367 PyObject
*resultobj
= NULL
;
35368 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
35369 wxPoint
*arg2
= 0 ;
35370 wxWindow
*arg3
= (wxWindow
*) 0 ;
35371 bool arg4
= (bool) false ;
35372 wxRect
*arg5
= (wxRect
*) NULL
;
35375 PyObject
* obj0
= 0 ;
35376 PyObject
* obj1
= 0 ;
35377 PyObject
* obj2
= 0 ;
35378 PyObject
* obj3
= 0 ;
35379 PyObject
* obj4
= 0 ;
35380 char *kwnames
[] = {
35381 (char *) "self",(char *) "hotspot",(char *) "window",(char *) "fullScreen",(char *) "rect", NULL
35384 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:DragImage_BeginDrag",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
35385 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
35386 if (SWIG_arg_fail(1)) SWIG_fail
;
35389 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
35391 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
35392 if (SWIG_arg_fail(3)) SWIG_fail
;
35395 arg4
= static_cast<bool >(SWIG_As_bool(obj3
));
35396 if (SWIG_arg_fail(4)) SWIG_fail
;
35400 SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxRect
, SWIG_POINTER_EXCEPTION
| 0);
35401 if (SWIG_arg_fail(5)) SWIG_fail
;
35404 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35405 result
= (bool)(arg1
)->BeginDrag((wxPoint
const &)*arg2
,arg3
,arg4
,arg5
);
35407 wxPyEndAllowThreads(__tstate
);
35408 if (PyErr_Occurred()) SWIG_fail
;
35411 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
35419 static PyObject
*_wrap_DragImage_BeginDragBounded(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35420 PyObject
*resultobj
= NULL
;
35421 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
35422 wxPoint
*arg2
= 0 ;
35423 wxWindow
*arg3
= (wxWindow
*) 0 ;
35424 wxWindow
*arg4
= (wxWindow
*) 0 ;
35427 PyObject
* obj0
= 0 ;
35428 PyObject
* obj1
= 0 ;
35429 PyObject
* obj2
= 0 ;
35430 PyObject
* obj3
= 0 ;
35431 char *kwnames
[] = {
35432 (char *) "self",(char *) "hotspot",(char *) "window",(char *) "boundingWindow", NULL
35435 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DragImage_BeginDragBounded",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
35436 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
35437 if (SWIG_arg_fail(1)) SWIG_fail
;
35440 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
35442 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
35443 if (SWIG_arg_fail(3)) SWIG_fail
;
35444 SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
35445 if (SWIG_arg_fail(4)) SWIG_fail
;
35447 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35448 result
= (bool)(arg1
)->BeginDrag((wxPoint
const &)*arg2
,arg3
,arg4
);
35450 wxPyEndAllowThreads(__tstate
);
35451 if (PyErr_Occurred()) SWIG_fail
;
35454 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
35462 static PyObject
*_wrap_DragImage_EndDrag(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35463 PyObject
*resultobj
= NULL
;
35464 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
35466 PyObject
* obj0
= 0 ;
35467 char *kwnames
[] = {
35468 (char *) "self", NULL
35471 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DragImage_EndDrag",kwnames
,&obj0
)) goto fail
;
35472 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
35473 if (SWIG_arg_fail(1)) SWIG_fail
;
35475 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35476 result
= (bool)(arg1
)->EndDrag();
35478 wxPyEndAllowThreads(__tstate
);
35479 if (PyErr_Occurred()) SWIG_fail
;
35482 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
35490 static PyObject
*_wrap_DragImage_Move(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35491 PyObject
*resultobj
= NULL
;
35492 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
35493 wxPoint
*arg2
= 0 ;
35496 PyObject
* obj0
= 0 ;
35497 PyObject
* obj1
= 0 ;
35498 char *kwnames
[] = {
35499 (char *) "self",(char *) "pt", NULL
35502 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DragImage_Move",kwnames
,&obj0
,&obj1
)) goto fail
;
35503 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
35504 if (SWIG_arg_fail(1)) SWIG_fail
;
35507 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
35510 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35511 result
= (bool)(arg1
)->Move((wxPoint
const &)*arg2
);
35513 wxPyEndAllowThreads(__tstate
);
35514 if (PyErr_Occurred()) SWIG_fail
;
35517 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
35525 static PyObject
*_wrap_DragImage_Show(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35526 PyObject
*resultobj
= NULL
;
35527 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
35529 PyObject
* obj0
= 0 ;
35530 char *kwnames
[] = {
35531 (char *) "self", NULL
35534 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DragImage_Show",kwnames
,&obj0
)) goto fail
;
35535 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
35536 if (SWIG_arg_fail(1)) SWIG_fail
;
35538 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35539 result
= (bool)(arg1
)->Show();
35541 wxPyEndAllowThreads(__tstate
);
35542 if (PyErr_Occurred()) SWIG_fail
;
35545 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
35553 static PyObject
*_wrap_DragImage_Hide(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35554 PyObject
*resultobj
= NULL
;
35555 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
35557 PyObject
* obj0
= 0 ;
35558 char *kwnames
[] = {
35559 (char *) "self", NULL
35562 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DragImage_Hide",kwnames
,&obj0
)) goto fail
;
35563 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
35564 if (SWIG_arg_fail(1)) SWIG_fail
;
35566 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35567 result
= (bool)(arg1
)->Hide();
35569 wxPyEndAllowThreads(__tstate
);
35570 if (PyErr_Occurred()) SWIG_fail
;
35573 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
35581 static PyObject
*_wrap_DragImage_GetImageRect(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35582 PyObject
*resultobj
= NULL
;
35583 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
35584 wxPoint
*arg2
= 0 ;
35587 PyObject
* obj0
= 0 ;
35588 PyObject
* obj1
= 0 ;
35589 char *kwnames
[] = {
35590 (char *) "self",(char *) "pos", NULL
35593 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DragImage_GetImageRect",kwnames
,&obj0
,&obj1
)) goto fail
;
35594 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
35595 if (SWIG_arg_fail(1)) SWIG_fail
;
35598 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
35601 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35602 result
= ((wxGenericDragImage
const *)arg1
)->GetImageRect((wxPoint
const &)*arg2
);
35604 wxPyEndAllowThreads(__tstate
);
35605 if (PyErr_Occurred()) SWIG_fail
;
35608 wxRect
* resultptr
;
35609 resultptr
= new wxRect(static_cast<wxRect
& >(result
));
35610 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxRect
, 1);
35618 static PyObject
*_wrap_DragImage_DoDrawImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35619 PyObject
*resultobj
= NULL
;
35620 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
35622 wxPoint
*arg3
= 0 ;
35625 PyObject
* obj0
= 0 ;
35626 PyObject
* obj1
= 0 ;
35627 PyObject
* obj2
= 0 ;
35628 char *kwnames
[] = {
35629 (char *) "self",(char *) "dc",(char *) "pos", NULL
35632 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DragImage_DoDrawImage",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
35633 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
35634 if (SWIG_arg_fail(1)) SWIG_fail
;
35636 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION
| 0);
35637 if (SWIG_arg_fail(2)) SWIG_fail
;
35638 if (arg2
== NULL
) {
35639 SWIG_null_ref("wxDC");
35641 if (SWIG_arg_fail(2)) SWIG_fail
;
35645 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
35648 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35649 result
= (bool)((wxGenericDragImage
const *)arg1
)->DoDrawImage(*arg2
,(wxPoint
const &)*arg3
);
35651 wxPyEndAllowThreads(__tstate
);
35652 if (PyErr_Occurred()) SWIG_fail
;
35655 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
35663 static PyObject
*_wrap_DragImage_UpdateBackingFromWindow(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35664 PyObject
*resultobj
= NULL
;
35665 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
35667 wxMemoryDC
*arg3
= 0 ;
35673 PyObject
* obj0
= 0 ;
35674 PyObject
* obj1
= 0 ;
35675 PyObject
* obj2
= 0 ;
35676 PyObject
* obj3
= 0 ;
35677 PyObject
* obj4
= 0 ;
35678 char *kwnames
[] = {
35679 (char *) "self",(char *) "windowDC",(char *) "destDC",(char *) "sourceRect",(char *) "destRect", NULL
35682 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DragImage_UpdateBackingFromWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
35683 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
35684 if (SWIG_arg_fail(1)) SWIG_fail
;
35686 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION
| 0);
35687 if (SWIG_arg_fail(2)) SWIG_fail
;
35688 if (arg2
== NULL
) {
35689 SWIG_null_ref("wxDC");
35691 if (SWIG_arg_fail(2)) SWIG_fail
;
35694 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxMemoryDC
, SWIG_POINTER_EXCEPTION
| 0);
35695 if (SWIG_arg_fail(3)) SWIG_fail
;
35696 if (arg3
== NULL
) {
35697 SWIG_null_ref("wxMemoryDC");
35699 if (SWIG_arg_fail(3)) SWIG_fail
;
35703 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
35707 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
35710 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35711 result
= (bool)((wxGenericDragImage
const *)arg1
)->UpdateBackingFromWindow(*arg2
,*arg3
,(wxRect
const &)*arg4
,(wxRect
const &)*arg5
);
35713 wxPyEndAllowThreads(__tstate
);
35714 if (PyErr_Occurred()) SWIG_fail
;
35717 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
35725 static PyObject
*_wrap_DragImage_RedrawImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35726 PyObject
*resultobj
= NULL
;
35727 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
35728 wxPoint
*arg2
= 0 ;
35729 wxPoint
*arg3
= 0 ;
35735 PyObject
* obj0
= 0 ;
35736 PyObject
* obj1
= 0 ;
35737 PyObject
* obj2
= 0 ;
35738 PyObject
* obj3
= 0 ;
35739 PyObject
* obj4
= 0 ;
35740 char *kwnames
[] = {
35741 (char *) "self",(char *) "oldPos",(char *) "newPos",(char *) "eraseOld",(char *) "drawNew", NULL
35744 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DragImage_RedrawImage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
35745 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
35746 if (SWIG_arg_fail(1)) SWIG_fail
;
35749 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
35753 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
35756 arg4
= static_cast<bool >(SWIG_As_bool(obj3
));
35757 if (SWIG_arg_fail(4)) SWIG_fail
;
35760 arg5
= static_cast<bool >(SWIG_As_bool(obj4
));
35761 if (SWIG_arg_fail(5)) SWIG_fail
;
35764 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35765 result
= (bool)(arg1
)->RedrawImage((wxPoint
const &)*arg2
,(wxPoint
const &)*arg3
,arg4
,arg5
);
35767 wxPyEndAllowThreads(__tstate
);
35768 if (PyErr_Occurred()) SWIG_fail
;
35771 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
35779 static PyObject
* DragImage_swigregister(PyObject
*, PyObject
*args
) {
35781 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
35782 SWIG_TypeClientData(SWIGTYPE_p_wxGenericDragImage
, obj
);
35784 return Py_BuildValue((char *)"");
35786 static int _wrap_DatePickerCtrlNameStr_set(PyObject
*) {
35787 PyErr_SetString(PyExc_TypeError
,"Variable DatePickerCtrlNameStr is read-only.");
35792 static PyObject
*_wrap_DatePickerCtrlNameStr_get(void) {
35793 PyObject
*pyobj
= NULL
;
35797 pyobj
= PyUnicode_FromWideChar((&wxPyDatePickerCtrlNameStr
)->c_str(), (&wxPyDatePickerCtrlNameStr
)->Len());
35799 pyobj
= PyString_FromStringAndSize((&wxPyDatePickerCtrlNameStr
)->c_str(), (&wxPyDatePickerCtrlNameStr
)->Len());
35806 static PyObject
*_wrap_new_DatePickerCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35807 PyObject
*resultobj
= NULL
;
35808 wxWindow
*arg1
= (wxWindow
*) 0 ;
35809 int arg2
= (int) -1 ;
35810 wxDateTime
const &arg3_defvalue
= wxDefaultDateTime
;
35811 wxDateTime
*arg3
= (wxDateTime
*) &arg3_defvalue
;
35812 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
35813 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
35814 wxSize
const &arg5_defvalue
= wxDefaultSize
;
35815 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
35816 long arg6
= (long) wxDP_DEFAULT
|wxDP_SHOWCENTURY
;
35817 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
35818 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
35819 wxString
const &arg8_defvalue
= wxPyDatePickerCtrlNameStr
;
35820 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
35821 wxDatePickerCtrl
*result
;
35824 bool temp8
= false ;
35825 PyObject
* obj0
= 0 ;
35826 PyObject
* obj1
= 0 ;
35827 PyObject
* obj2
= 0 ;
35828 PyObject
* obj3
= 0 ;
35829 PyObject
* obj4
= 0 ;
35830 PyObject
* obj5
= 0 ;
35831 PyObject
* obj6
= 0 ;
35832 PyObject
* obj7
= 0 ;
35833 char *kwnames
[] = {
35834 (char *) "parent",(char *) "id",(char *) "dt",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
35837 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_DatePickerCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
35838 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
35839 if (SWIG_arg_fail(1)) SWIG_fail
;
35842 arg2
= static_cast<int >(SWIG_As_int(obj1
));
35843 if (SWIG_arg_fail(2)) SWIG_fail
;
35848 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxDateTime
, SWIG_POINTER_EXCEPTION
| 0);
35849 if (SWIG_arg_fail(3)) SWIG_fail
;
35850 if (arg3
== NULL
) {
35851 SWIG_null_ref("wxDateTime");
35853 if (SWIG_arg_fail(3)) SWIG_fail
;
35859 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
35865 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
35870 arg6
= static_cast<long >(SWIG_As_long(obj5
));
35871 if (SWIG_arg_fail(6)) SWIG_fail
;
35876 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
35877 if (SWIG_arg_fail(7)) SWIG_fail
;
35878 if (arg7
== NULL
) {
35879 SWIG_null_ref("wxValidator");
35881 if (SWIG_arg_fail(7)) SWIG_fail
;
35886 arg8
= wxString_in_helper(obj7
);
35887 if (arg8
== NULL
) SWIG_fail
;
35892 if (!wxPyCheckForApp()) SWIG_fail
;
35893 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35894 result
= (wxDatePickerCtrl
*)new wxDatePickerCtrl(arg1
,arg2
,(wxDateTime
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
35896 wxPyEndAllowThreads(__tstate
);
35897 if (PyErr_Occurred()) SWIG_fail
;
35899 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxDatePickerCtrl
, 1);
35914 static PyObject
*_wrap_new_PreDatePickerCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35915 PyObject
*resultobj
= NULL
;
35916 wxDatePickerCtrl
*result
;
35917 char *kwnames
[] = {
35921 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreDatePickerCtrl",kwnames
)) goto fail
;
35923 if (!wxPyCheckForApp()) SWIG_fail
;
35924 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
35925 result
= (wxDatePickerCtrl
*)new wxDatePickerCtrl();
35927 wxPyEndAllowThreads(__tstate
);
35928 if (PyErr_Occurred()) SWIG_fail
;
35930 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxDatePickerCtrl
, 1);
35937 static PyObject
*_wrap_DatePickerCtrl_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
35938 PyObject
*resultobj
= NULL
;
35939 wxDatePickerCtrl
*arg1
= (wxDatePickerCtrl
*) 0 ;
35940 wxWindow
*arg2
= (wxWindow
*) 0 ;
35941 int arg3
= (int) -1 ;
35942 wxDateTime
const &arg4_defvalue
= wxDefaultDateTime
;
35943 wxDateTime
*arg4
= (wxDateTime
*) &arg4_defvalue
;
35944 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
35945 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
35946 wxSize
const &arg6_defvalue
= wxDefaultSize
;
35947 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
35948 long arg7
= (long) wxDP_DEFAULT
|wxDP_SHOWCENTURY
;
35949 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
35950 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
35951 wxString
const &arg9_defvalue
= wxPyDatePickerCtrlNameStr
;
35952 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
35956 bool temp9
= false ;
35957 PyObject
* obj0
= 0 ;
35958 PyObject
* obj1
= 0 ;
35959 PyObject
* obj2
= 0 ;
35960 PyObject
* obj3
= 0 ;
35961 PyObject
* obj4
= 0 ;
35962 PyObject
* obj5
= 0 ;
35963 PyObject
* obj6
= 0 ;
35964 PyObject
* obj7
= 0 ;
35965 PyObject
* obj8
= 0 ;
35966 char *kwnames
[] = {
35967 (char *) "self",(char *) "parent",(char *) "id",(char *) "dt",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
35970 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:DatePickerCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
35971 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDatePickerCtrl
, SWIG_POINTER_EXCEPTION
| 0);
35972 if (SWIG_arg_fail(1)) SWIG_fail
;
35973 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
35974 if (SWIG_arg_fail(2)) SWIG_fail
;
35977 arg3
= static_cast<int >(SWIG_As_int(obj2
));
35978 if (SWIG_arg_fail(3)) SWIG_fail
;
35983 SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_wxDateTime
, SWIG_POINTER_EXCEPTION
| 0);
35984 if (SWIG_arg_fail(4)) SWIG_fail
;
35985 if (arg4
== NULL
) {
35986 SWIG_null_ref("wxDateTime");
35988 if (SWIG_arg_fail(4)) SWIG_fail
;
35994 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
36000 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
36005 arg7
= static_cast<long >(SWIG_As_long(obj6
));
36006 if (SWIG_arg_fail(7)) SWIG_fail
;
36011 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
36012 if (SWIG_arg_fail(8)) SWIG_fail
;
36013 if (arg8
== NULL
) {
36014 SWIG_null_ref("wxValidator");
36016 if (SWIG_arg_fail(8)) SWIG_fail
;
36021 arg9
= wxString_in_helper(obj8
);
36022 if (arg9
== NULL
) SWIG_fail
;
36027 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
36028 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxDateTime
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
36030 wxPyEndAllowThreads(__tstate
);
36031 if (PyErr_Occurred()) SWIG_fail
;
36034 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
36050 static PyObject
*_wrap_DatePickerCtrl_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
36051 PyObject
*resultobj
= NULL
;
36052 wxDatePickerCtrl
*arg1
= (wxDatePickerCtrl
*) 0 ;
36053 wxDateTime
*arg2
= 0 ;
36054 PyObject
* obj0
= 0 ;
36055 PyObject
* obj1
= 0 ;
36056 char *kwnames
[] = {
36057 (char *) "self",(char *) "dt", NULL
36060 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DatePickerCtrl_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
36061 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDatePickerCtrl
, SWIG_POINTER_EXCEPTION
| 0);
36062 if (SWIG_arg_fail(1)) SWIG_fail
;
36064 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDateTime
, SWIG_POINTER_EXCEPTION
| 0);
36065 if (SWIG_arg_fail(2)) SWIG_fail
;
36066 if (arg2
== NULL
) {
36067 SWIG_null_ref("wxDateTime");
36069 if (SWIG_arg_fail(2)) SWIG_fail
;
36072 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
36073 (arg1
)->SetValue((wxDateTime
const &)*arg2
);
36075 wxPyEndAllowThreads(__tstate
);
36076 if (PyErr_Occurred()) SWIG_fail
;
36078 Py_INCREF(Py_None
); resultobj
= Py_None
;
36085 static PyObject
*_wrap_DatePickerCtrl_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
36086 PyObject
*resultobj
= NULL
;
36087 wxDatePickerCtrl
*arg1
= (wxDatePickerCtrl
*) 0 ;
36089 PyObject
* obj0
= 0 ;
36090 char *kwnames
[] = {
36091 (char *) "self", NULL
36094 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DatePickerCtrl_GetValue",kwnames
,&obj0
)) goto fail
;
36095 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDatePickerCtrl
, SWIG_POINTER_EXCEPTION
| 0);
36096 if (SWIG_arg_fail(1)) SWIG_fail
;
36098 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
36099 result
= ((wxDatePickerCtrl
const *)arg1
)->GetValue();
36101 wxPyEndAllowThreads(__tstate
);
36102 if (PyErr_Occurred()) SWIG_fail
;
36105 wxDateTime
* resultptr
;
36106 resultptr
= new wxDateTime(static_cast<wxDateTime
& >(result
));
36107 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxDateTime
, 1);
36115 static PyObject
*_wrap_DatePickerCtrl_SetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
36116 PyObject
*resultobj
= NULL
;
36117 wxDatePickerCtrl
*arg1
= (wxDatePickerCtrl
*) 0 ;
36118 wxDateTime
*arg2
= 0 ;
36119 wxDateTime
*arg3
= 0 ;
36120 PyObject
* obj0
= 0 ;
36121 PyObject
* obj1
= 0 ;
36122 PyObject
* obj2
= 0 ;
36123 char *kwnames
[] = {
36124 (char *) "self",(char *) "dt1",(char *) "dt2", NULL
36127 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DatePickerCtrl_SetRange",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
36128 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDatePickerCtrl
, SWIG_POINTER_EXCEPTION
| 0);
36129 if (SWIG_arg_fail(1)) SWIG_fail
;
36131 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDateTime
, SWIG_POINTER_EXCEPTION
| 0);
36132 if (SWIG_arg_fail(2)) SWIG_fail
;
36133 if (arg2
== NULL
) {
36134 SWIG_null_ref("wxDateTime");
36136 if (SWIG_arg_fail(2)) SWIG_fail
;
36139 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxDateTime
, SWIG_POINTER_EXCEPTION
| 0);
36140 if (SWIG_arg_fail(3)) SWIG_fail
;
36141 if (arg3
== NULL
) {
36142 SWIG_null_ref("wxDateTime");
36144 if (SWIG_arg_fail(3)) SWIG_fail
;
36147 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
36148 (arg1
)->SetRange((wxDateTime
const &)*arg2
,(wxDateTime
const &)*arg3
);
36150 wxPyEndAllowThreads(__tstate
);
36151 if (PyErr_Occurred()) SWIG_fail
;
36153 Py_INCREF(Py_None
); resultobj
= Py_None
;
36160 static PyObject
*_wrap_DatePickerCtrl_GetLowerLimit(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
36161 PyObject
*resultobj
= NULL
;
36162 wxDatePickerCtrl
*arg1
= (wxDatePickerCtrl
*) 0 ;
36164 PyObject
* obj0
= 0 ;
36165 char *kwnames
[] = {
36166 (char *) "self", NULL
36169 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DatePickerCtrl_GetLowerLimit",kwnames
,&obj0
)) goto fail
;
36170 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDatePickerCtrl
, SWIG_POINTER_EXCEPTION
| 0);
36171 if (SWIG_arg_fail(1)) SWIG_fail
;
36173 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
36174 result
= wxDatePickerCtrl_GetLowerLimit(arg1
);
36176 wxPyEndAllowThreads(__tstate
);
36177 if (PyErr_Occurred()) SWIG_fail
;
36180 wxDateTime
* resultptr
;
36181 resultptr
= new wxDateTime(static_cast<wxDateTime
& >(result
));
36182 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxDateTime
, 1);
36190 static PyObject
*_wrap_DatePickerCtrl_GetUpperLimit(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
36191 PyObject
*resultobj
= NULL
;
36192 wxDatePickerCtrl
*arg1
= (wxDatePickerCtrl
*) 0 ;
36194 PyObject
* obj0
= 0 ;
36195 char *kwnames
[] = {
36196 (char *) "self", NULL
36199 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DatePickerCtrl_GetUpperLimit",kwnames
,&obj0
)) goto fail
;
36200 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDatePickerCtrl
, SWIG_POINTER_EXCEPTION
| 0);
36201 if (SWIG_arg_fail(1)) SWIG_fail
;
36203 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
36204 result
= wxDatePickerCtrl_GetUpperLimit(arg1
);
36206 wxPyEndAllowThreads(__tstate
);
36207 if (PyErr_Occurred()) SWIG_fail
;
36210 wxDateTime
* resultptr
;
36211 resultptr
= new wxDateTime(static_cast<wxDateTime
& >(result
));
36212 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxDateTime
, 1);
36220 static PyObject
* DatePickerCtrl_swigregister(PyObject
*, PyObject
*args
) {
36222 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
36223 SWIG_TypeClientData(SWIGTYPE_p_wxDatePickerCtrl
, obj
);
36225 return Py_BuildValue((char *)"");
36227 static PyMethodDef SwigMethods
[] = {
36228 { (char *)"new_Button", (PyCFunction
) _wrap_new_Button
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36229 { (char *)"new_PreButton", (PyCFunction
) _wrap_new_PreButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36230 { (char *)"Button_Create", (PyCFunction
) _wrap_Button_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36231 { (char *)"Button_SetDefault", (PyCFunction
) _wrap_Button_SetDefault
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36232 { (char *)"Button_GetDefaultSize", (PyCFunction
) _wrap_Button_GetDefaultSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36233 { (char *)"Button_GetClassDefaultAttributes", (PyCFunction
) _wrap_Button_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36234 { (char *)"Button_swigregister", Button_swigregister
, METH_VARARGS
, NULL
},
36235 { (char *)"new_BitmapButton", (PyCFunction
) _wrap_new_BitmapButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36236 { (char *)"new_PreBitmapButton", (PyCFunction
) _wrap_new_PreBitmapButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36237 { (char *)"BitmapButton_Create", (PyCFunction
) _wrap_BitmapButton_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36238 { (char *)"BitmapButton_GetBitmapLabel", (PyCFunction
) _wrap_BitmapButton_GetBitmapLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36239 { (char *)"BitmapButton_GetBitmapDisabled", (PyCFunction
) _wrap_BitmapButton_GetBitmapDisabled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36240 { (char *)"BitmapButton_GetBitmapFocus", (PyCFunction
) _wrap_BitmapButton_GetBitmapFocus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36241 { (char *)"BitmapButton_GetBitmapSelected", (PyCFunction
) _wrap_BitmapButton_GetBitmapSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36242 { (char *)"BitmapButton_SetBitmapDisabled", (PyCFunction
) _wrap_BitmapButton_SetBitmapDisabled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36243 { (char *)"BitmapButton_SetBitmapFocus", (PyCFunction
) _wrap_BitmapButton_SetBitmapFocus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36244 { (char *)"BitmapButton_SetBitmapSelected", (PyCFunction
) _wrap_BitmapButton_SetBitmapSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36245 { (char *)"BitmapButton_SetBitmapLabel", (PyCFunction
) _wrap_BitmapButton_SetBitmapLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36246 { (char *)"BitmapButton_SetMargins", (PyCFunction
) _wrap_BitmapButton_SetMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36247 { (char *)"BitmapButton_GetMarginX", (PyCFunction
) _wrap_BitmapButton_GetMarginX
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36248 { (char *)"BitmapButton_GetMarginY", (PyCFunction
) _wrap_BitmapButton_GetMarginY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36249 { (char *)"BitmapButton_swigregister", BitmapButton_swigregister
, METH_VARARGS
, NULL
},
36250 { (char *)"new_CheckBox", (PyCFunction
) _wrap_new_CheckBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36251 { (char *)"new_PreCheckBox", (PyCFunction
) _wrap_new_PreCheckBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36252 { (char *)"CheckBox_Create", (PyCFunction
) _wrap_CheckBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36253 { (char *)"CheckBox_GetValue", (PyCFunction
) _wrap_CheckBox_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36254 { (char *)"CheckBox_IsChecked", (PyCFunction
) _wrap_CheckBox_IsChecked
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36255 { (char *)"CheckBox_SetValue", (PyCFunction
) _wrap_CheckBox_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36256 { (char *)"CheckBox_Get3StateValue", (PyCFunction
) _wrap_CheckBox_Get3StateValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36257 { (char *)"CheckBox_Set3StateValue", (PyCFunction
) _wrap_CheckBox_Set3StateValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36258 { (char *)"CheckBox_Is3State", (PyCFunction
) _wrap_CheckBox_Is3State
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36259 { (char *)"CheckBox_Is3rdStateAllowedForUser", (PyCFunction
) _wrap_CheckBox_Is3rdStateAllowedForUser
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36260 { (char *)"CheckBox_GetClassDefaultAttributes", (PyCFunction
) _wrap_CheckBox_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36261 { (char *)"CheckBox_swigregister", CheckBox_swigregister
, METH_VARARGS
, NULL
},
36262 { (char *)"new_Choice", (PyCFunction
) _wrap_new_Choice
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36263 { (char *)"new_PreChoice", (PyCFunction
) _wrap_new_PreChoice
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36264 { (char *)"Choice_Create", (PyCFunction
) _wrap_Choice_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36265 { (char *)"Choice_GetCurrentSelection", (PyCFunction
) _wrap_Choice_GetCurrentSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36266 { (char *)"Choice_GetClassDefaultAttributes", (PyCFunction
) _wrap_Choice_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36267 { (char *)"Choice_swigregister", Choice_swigregister
, METH_VARARGS
, NULL
},
36268 { (char *)"new_ComboBox", (PyCFunction
) _wrap_new_ComboBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36269 { (char *)"new_PreComboBox", (PyCFunction
) _wrap_new_PreComboBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36270 { (char *)"ComboBox_Create", (PyCFunction
) _wrap_ComboBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36271 { (char *)"ComboBox_GetValue", (PyCFunction
) _wrap_ComboBox_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36272 { (char *)"ComboBox_SetValue", (PyCFunction
) _wrap_ComboBox_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36273 { (char *)"ComboBox_Copy", (PyCFunction
) _wrap_ComboBox_Copy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36274 { (char *)"ComboBox_Cut", (PyCFunction
) _wrap_ComboBox_Cut
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36275 { (char *)"ComboBox_Paste", (PyCFunction
) _wrap_ComboBox_Paste
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36276 { (char *)"ComboBox_SetInsertionPoint", (PyCFunction
) _wrap_ComboBox_SetInsertionPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36277 { (char *)"ComboBox_GetInsertionPoint", (PyCFunction
) _wrap_ComboBox_GetInsertionPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36278 { (char *)"ComboBox_GetLastPosition", (PyCFunction
) _wrap_ComboBox_GetLastPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36279 { (char *)"ComboBox_Replace", (PyCFunction
) _wrap_ComboBox_Replace
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36280 { (char *)"ComboBox_SetSelection", (PyCFunction
) _wrap_ComboBox_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36281 { (char *)"ComboBox_SetMark", (PyCFunction
) _wrap_ComboBox_SetMark
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36282 { (char *)"ComboBox_GetMark", (PyCFunction
) _wrap_ComboBox_GetMark
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36283 { (char *)"ComboBox_GetCurrentSelection", (PyCFunction
) _wrap_ComboBox_GetCurrentSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36284 { (char *)"ComboBox_SetStringSelection", (PyCFunction
) _wrap_ComboBox_SetStringSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36285 { (char *)"ComboBox_SetString", (PyCFunction
) _wrap_ComboBox_SetString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36286 { (char *)"ComboBox_SetEditable", (PyCFunction
) _wrap_ComboBox_SetEditable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36287 { (char *)"ComboBox_SetInsertionPointEnd", (PyCFunction
) _wrap_ComboBox_SetInsertionPointEnd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36288 { (char *)"ComboBox_Remove", (PyCFunction
) _wrap_ComboBox_Remove
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36289 { (char *)"ComboBox_IsEditable", (PyCFunction
) _wrap_ComboBox_IsEditable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36290 { (char *)"ComboBox_Undo", (PyCFunction
) _wrap_ComboBox_Undo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36291 { (char *)"ComboBox_Redo", (PyCFunction
) _wrap_ComboBox_Redo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36292 { (char *)"ComboBox_SelectAll", (PyCFunction
) _wrap_ComboBox_SelectAll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36293 { (char *)"ComboBox_CanCopy", (PyCFunction
) _wrap_ComboBox_CanCopy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36294 { (char *)"ComboBox_CanCut", (PyCFunction
) _wrap_ComboBox_CanCut
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36295 { (char *)"ComboBox_CanPaste", (PyCFunction
) _wrap_ComboBox_CanPaste
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36296 { (char *)"ComboBox_CanUndo", (PyCFunction
) _wrap_ComboBox_CanUndo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36297 { (char *)"ComboBox_CanRedo", (PyCFunction
) _wrap_ComboBox_CanRedo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36298 { (char *)"ComboBox_GetClassDefaultAttributes", (PyCFunction
) _wrap_ComboBox_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36299 { (char *)"ComboBox_swigregister", ComboBox_swigregister
, METH_VARARGS
, NULL
},
36300 { (char *)"new_Gauge", (PyCFunction
) _wrap_new_Gauge
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36301 { (char *)"new_PreGauge", (PyCFunction
) _wrap_new_PreGauge
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36302 { (char *)"Gauge_Create", (PyCFunction
) _wrap_Gauge_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36303 { (char *)"Gauge_SetRange", (PyCFunction
) _wrap_Gauge_SetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36304 { (char *)"Gauge_GetRange", (PyCFunction
) _wrap_Gauge_GetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36305 { (char *)"Gauge_SetValue", (PyCFunction
) _wrap_Gauge_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36306 { (char *)"Gauge_GetValue", (PyCFunction
) _wrap_Gauge_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36307 { (char *)"Gauge_IsVertical", (PyCFunction
) _wrap_Gauge_IsVertical
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36308 { (char *)"Gauge_SetShadowWidth", (PyCFunction
) _wrap_Gauge_SetShadowWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36309 { (char *)"Gauge_GetShadowWidth", (PyCFunction
) _wrap_Gauge_GetShadowWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36310 { (char *)"Gauge_SetBezelFace", (PyCFunction
) _wrap_Gauge_SetBezelFace
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36311 { (char *)"Gauge_GetBezelFace", (PyCFunction
) _wrap_Gauge_GetBezelFace
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36312 { (char *)"Gauge_GetClassDefaultAttributes", (PyCFunction
) _wrap_Gauge_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36313 { (char *)"Gauge_swigregister", Gauge_swigregister
, METH_VARARGS
, NULL
},
36314 { (char *)"new_StaticBox", (PyCFunction
) _wrap_new_StaticBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36315 { (char *)"new_PreStaticBox", (PyCFunction
) _wrap_new_PreStaticBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36316 { (char *)"StaticBox_Create", (PyCFunction
) _wrap_StaticBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36317 { (char *)"StaticBox_GetClassDefaultAttributes", (PyCFunction
) _wrap_StaticBox_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36318 { (char *)"StaticBox_swigregister", StaticBox_swigregister
, METH_VARARGS
, NULL
},
36319 { (char *)"new_StaticLine", (PyCFunction
) _wrap_new_StaticLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36320 { (char *)"new_PreStaticLine", (PyCFunction
) _wrap_new_PreStaticLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36321 { (char *)"StaticLine_Create", (PyCFunction
) _wrap_StaticLine_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36322 { (char *)"StaticLine_IsVertical", (PyCFunction
) _wrap_StaticLine_IsVertical
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36323 { (char *)"StaticLine_GetDefaultSize", (PyCFunction
) _wrap_StaticLine_GetDefaultSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36324 { (char *)"StaticLine_GetClassDefaultAttributes", (PyCFunction
) _wrap_StaticLine_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36325 { (char *)"StaticLine_swigregister", StaticLine_swigregister
, METH_VARARGS
, NULL
},
36326 { (char *)"new_StaticText", (PyCFunction
) _wrap_new_StaticText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36327 { (char *)"new_PreStaticText", (PyCFunction
) _wrap_new_PreStaticText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36328 { (char *)"StaticText_Create", (PyCFunction
) _wrap_StaticText_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36329 { (char *)"StaticText_Wrap", (PyCFunction
) _wrap_StaticText_Wrap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36330 { (char *)"StaticText_GetClassDefaultAttributes", (PyCFunction
) _wrap_StaticText_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36331 { (char *)"StaticText_swigregister", StaticText_swigregister
, METH_VARARGS
, NULL
},
36332 { (char *)"new_StaticBitmap", (PyCFunction
) _wrap_new_StaticBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36333 { (char *)"new_PreStaticBitmap", (PyCFunction
) _wrap_new_PreStaticBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36334 { (char *)"StaticBitmap_Create", (PyCFunction
) _wrap_StaticBitmap_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36335 { (char *)"StaticBitmap_GetBitmap", (PyCFunction
) _wrap_StaticBitmap_GetBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36336 { (char *)"StaticBitmap_SetBitmap", (PyCFunction
) _wrap_StaticBitmap_SetBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36337 { (char *)"StaticBitmap_SetIcon", (PyCFunction
) _wrap_StaticBitmap_SetIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36338 { (char *)"StaticBitmap_GetClassDefaultAttributes", (PyCFunction
) _wrap_StaticBitmap_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36339 { (char *)"StaticBitmap_swigregister", StaticBitmap_swigregister
, METH_VARARGS
, NULL
},
36340 { (char *)"new_ListBox", (PyCFunction
) _wrap_new_ListBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36341 { (char *)"new_PreListBox", (PyCFunction
) _wrap_new_PreListBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36342 { (char *)"ListBox_Create", (PyCFunction
) _wrap_ListBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36343 { (char *)"ListBox_Insert", (PyCFunction
) _wrap_ListBox_Insert
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36344 { (char *)"ListBox_InsertItems", (PyCFunction
) _wrap_ListBox_InsertItems
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36345 { (char *)"ListBox_Set", (PyCFunction
) _wrap_ListBox_Set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36346 { (char *)"ListBox_IsSelected", (PyCFunction
) _wrap_ListBox_IsSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36347 { (char *)"ListBox_SetSelection", (PyCFunction
) _wrap_ListBox_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36348 { (char *)"ListBox_Select", (PyCFunction
) _wrap_ListBox_Select
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36349 { (char *)"ListBox_Deselect", (PyCFunction
) _wrap_ListBox_Deselect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36350 { (char *)"ListBox_DeselectAll", (PyCFunction
) _wrap_ListBox_DeselectAll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36351 { (char *)"ListBox_SetStringSelection", (PyCFunction
) _wrap_ListBox_SetStringSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36352 { (char *)"ListBox_GetSelections", (PyCFunction
) _wrap_ListBox_GetSelections
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36353 { (char *)"ListBox_SetFirstItem", (PyCFunction
) _wrap_ListBox_SetFirstItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36354 { (char *)"ListBox_SetFirstItemStr", (PyCFunction
) _wrap_ListBox_SetFirstItemStr
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36355 { (char *)"ListBox_EnsureVisible", (PyCFunction
) _wrap_ListBox_EnsureVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36356 { (char *)"ListBox_AppendAndEnsureVisible", (PyCFunction
) _wrap_ListBox_AppendAndEnsureVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36357 { (char *)"ListBox_IsSorted", (PyCFunction
) _wrap_ListBox_IsSorted
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36358 { (char *)"ListBox_SetItemForegroundColour", (PyCFunction
) _wrap_ListBox_SetItemForegroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36359 { (char *)"ListBox_SetItemBackgroundColour", (PyCFunction
) _wrap_ListBox_SetItemBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36360 { (char *)"ListBox_SetItemFont", (PyCFunction
) _wrap_ListBox_SetItemFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36361 { (char *)"ListBox_GetClassDefaultAttributes", (PyCFunction
) _wrap_ListBox_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36362 { (char *)"ListBox_swigregister", ListBox_swigregister
, METH_VARARGS
, NULL
},
36363 { (char *)"new_CheckListBox", (PyCFunction
) _wrap_new_CheckListBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36364 { (char *)"new_PreCheckListBox", (PyCFunction
) _wrap_new_PreCheckListBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36365 { (char *)"CheckListBox_Create", (PyCFunction
) _wrap_CheckListBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36366 { (char *)"CheckListBox_IsChecked", (PyCFunction
) _wrap_CheckListBox_IsChecked
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36367 { (char *)"CheckListBox_Check", (PyCFunction
) _wrap_CheckListBox_Check
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36368 { (char *)"CheckListBox_GetItemHeight", (PyCFunction
) _wrap_CheckListBox_GetItemHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36369 { (char *)"CheckListBox_HitTest", (PyCFunction
) _wrap_CheckListBox_HitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36370 { (char *)"CheckListBox_HitTestXY", (PyCFunction
) _wrap_CheckListBox_HitTestXY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36371 { (char *)"CheckListBox_swigregister", CheckListBox_swigregister
, METH_VARARGS
, NULL
},
36372 { (char *)"new_TextAttr", (PyCFunction
) _wrap_new_TextAttr
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36373 { (char *)"delete_TextAttr", (PyCFunction
) _wrap_delete_TextAttr
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36374 { (char *)"TextAttr_Init", (PyCFunction
) _wrap_TextAttr_Init
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36375 { (char *)"TextAttr_SetTextColour", (PyCFunction
) _wrap_TextAttr_SetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36376 { (char *)"TextAttr_SetBackgroundColour", (PyCFunction
) _wrap_TextAttr_SetBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36377 { (char *)"TextAttr_SetFont", (PyCFunction
) _wrap_TextAttr_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36378 { (char *)"TextAttr_SetAlignment", (PyCFunction
) _wrap_TextAttr_SetAlignment
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36379 { (char *)"TextAttr_SetTabs", (PyCFunction
) _wrap_TextAttr_SetTabs
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36380 { (char *)"TextAttr_SetLeftIndent", (PyCFunction
) _wrap_TextAttr_SetLeftIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36381 { (char *)"TextAttr_SetRightIndent", (PyCFunction
) _wrap_TextAttr_SetRightIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36382 { (char *)"TextAttr_SetFlags", (PyCFunction
) _wrap_TextAttr_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36383 { (char *)"TextAttr_HasTextColour", (PyCFunction
) _wrap_TextAttr_HasTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36384 { (char *)"TextAttr_HasBackgroundColour", (PyCFunction
) _wrap_TextAttr_HasBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36385 { (char *)"TextAttr_HasFont", (PyCFunction
) _wrap_TextAttr_HasFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36386 { (char *)"TextAttr_HasAlignment", (PyCFunction
) _wrap_TextAttr_HasAlignment
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36387 { (char *)"TextAttr_HasTabs", (PyCFunction
) _wrap_TextAttr_HasTabs
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36388 { (char *)"TextAttr_HasLeftIndent", (PyCFunction
) _wrap_TextAttr_HasLeftIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36389 { (char *)"TextAttr_HasRightIndent", (PyCFunction
) _wrap_TextAttr_HasRightIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36390 { (char *)"TextAttr_HasFlag", (PyCFunction
) _wrap_TextAttr_HasFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36391 { (char *)"TextAttr_GetTextColour", (PyCFunction
) _wrap_TextAttr_GetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36392 { (char *)"TextAttr_GetBackgroundColour", (PyCFunction
) _wrap_TextAttr_GetBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36393 { (char *)"TextAttr_GetFont", (PyCFunction
) _wrap_TextAttr_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36394 { (char *)"TextAttr_GetAlignment", (PyCFunction
) _wrap_TextAttr_GetAlignment
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36395 { (char *)"TextAttr_GetTabs", (PyCFunction
) _wrap_TextAttr_GetTabs
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36396 { (char *)"TextAttr_GetLeftIndent", (PyCFunction
) _wrap_TextAttr_GetLeftIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36397 { (char *)"TextAttr_GetLeftSubIndent", (PyCFunction
) _wrap_TextAttr_GetLeftSubIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36398 { (char *)"TextAttr_GetRightIndent", (PyCFunction
) _wrap_TextAttr_GetRightIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36399 { (char *)"TextAttr_GetFlags", (PyCFunction
) _wrap_TextAttr_GetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36400 { (char *)"TextAttr_IsDefault", (PyCFunction
) _wrap_TextAttr_IsDefault
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36401 { (char *)"TextAttr_Combine", (PyCFunction
) _wrap_TextAttr_Combine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36402 { (char *)"TextAttr_swigregister", TextAttr_swigregister
, METH_VARARGS
, NULL
},
36403 { (char *)"new_TextCtrl", (PyCFunction
) _wrap_new_TextCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36404 { (char *)"new_PreTextCtrl", (PyCFunction
) _wrap_new_PreTextCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36405 { (char *)"TextCtrl_Create", (PyCFunction
) _wrap_TextCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36406 { (char *)"TextCtrl_GetValue", (PyCFunction
) _wrap_TextCtrl_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36407 { (char *)"TextCtrl_SetValue", (PyCFunction
) _wrap_TextCtrl_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36408 { (char *)"TextCtrl_GetRange", (PyCFunction
) _wrap_TextCtrl_GetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36409 { (char *)"TextCtrl_GetLineLength", (PyCFunction
) _wrap_TextCtrl_GetLineLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36410 { (char *)"TextCtrl_GetLineText", (PyCFunction
) _wrap_TextCtrl_GetLineText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36411 { (char *)"TextCtrl_GetNumberOfLines", (PyCFunction
) _wrap_TextCtrl_GetNumberOfLines
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36412 { (char *)"TextCtrl_IsModified", (PyCFunction
) _wrap_TextCtrl_IsModified
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36413 { (char *)"TextCtrl_IsEditable", (PyCFunction
) _wrap_TextCtrl_IsEditable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36414 { (char *)"TextCtrl_IsSingleLine", (PyCFunction
) _wrap_TextCtrl_IsSingleLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36415 { (char *)"TextCtrl_IsMultiLine", (PyCFunction
) _wrap_TextCtrl_IsMultiLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36416 { (char *)"TextCtrl_GetSelection", (PyCFunction
) _wrap_TextCtrl_GetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36417 { (char *)"TextCtrl_GetStringSelection", (PyCFunction
) _wrap_TextCtrl_GetStringSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36418 { (char *)"TextCtrl_Clear", (PyCFunction
) _wrap_TextCtrl_Clear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36419 { (char *)"TextCtrl_Replace", (PyCFunction
) _wrap_TextCtrl_Replace
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36420 { (char *)"TextCtrl_Remove", (PyCFunction
) _wrap_TextCtrl_Remove
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36421 { (char *)"TextCtrl_LoadFile", (PyCFunction
) _wrap_TextCtrl_LoadFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36422 { (char *)"TextCtrl_SaveFile", (PyCFunction
) _wrap_TextCtrl_SaveFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36423 { (char *)"TextCtrl_MarkDirty", (PyCFunction
) _wrap_TextCtrl_MarkDirty
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36424 { (char *)"TextCtrl_DiscardEdits", (PyCFunction
) _wrap_TextCtrl_DiscardEdits
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36425 { (char *)"TextCtrl_SetMaxLength", (PyCFunction
) _wrap_TextCtrl_SetMaxLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36426 { (char *)"TextCtrl_WriteText", (PyCFunction
) _wrap_TextCtrl_WriteText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36427 { (char *)"TextCtrl_AppendText", (PyCFunction
) _wrap_TextCtrl_AppendText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36428 { (char *)"TextCtrl_EmulateKeyPress", (PyCFunction
) _wrap_TextCtrl_EmulateKeyPress
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36429 { (char *)"TextCtrl_SetStyle", (PyCFunction
) _wrap_TextCtrl_SetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36430 { (char *)"TextCtrl_GetStyle", (PyCFunction
) _wrap_TextCtrl_GetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36431 { (char *)"TextCtrl_SetDefaultStyle", (PyCFunction
) _wrap_TextCtrl_SetDefaultStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36432 { (char *)"TextCtrl_GetDefaultStyle", (PyCFunction
) _wrap_TextCtrl_GetDefaultStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36433 { (char *)"TextCtrl_XYToPosition", (PyCFunction
) _wrap_TextCtrl_XYToPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36434 { (char *)"TextCtrl_PositionToXY", (PyCFunction
) _wrap_TextCtrl_PositionToXY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36435 { (char *)"TextCtrl_ShowPosition", (PyCFunction
) _wrap_TextCtrl_ShowPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36436 { (char *)"TextCtrl_HitTest", (PyCFunction
) _wrap_TextCtrl_HitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36437 { (char *)"TextCtrl_HitTestPos", (PyCFunction
) _wrap_TextCtrl_HitTestPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36438 { (char *)"TextCtrl_Copy", (PyCFunction
) _wrap_TextCtrl_Copy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36439 { (char *)"TextCtrl_Cut", (PyCFunction
) _wrap_TextCtrl_Cut
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36440 { (char *)"TextCtrl_Paste", (PyCFunction
) _wrap_TextCtrl_Paste
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36441 { (char *)"TextCtrl_CanCopy", (PyCFunction
) _wrap_TextCtrl_CanCopy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36442 { (char *)"TextCtrl_CanCut", (PyCFunction
) _wrap_TextCtrl_CanCut
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36443 { (char *)"TextCtrl_CanPaste", (PyCFunction
) _wrap_TextCtrl_CanPaste
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36444 { (char *)"TextCtrl_Undo", (PyCFunction
) _wrap_TextCtrl_Undo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36445 { (char *)"TextCtrl_Redo", (PyCFunction
) _wrap_TextCtrl_Redo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36446 { (char *)"TextCtrl_CanUndo", (PyCFunction
) _wrap_TextCtrl_CanUndo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36447 { (char *)"TextCtrl_CanRedo", (PyCFunction
) _wrap_TextCtrl_CanRedo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36448 { (char *)"TextCtrl_SetInsertionPoint", (PyCFunction
) _wrap_TextCtrl_SetInsertionPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36449 { (char *)"TextCtrl_SetInsertionPointEnd", (PyCFunction
) _wrap_TextCtrl_SetInsertionPointEnd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36450 { (char *)"TextCtrl_GetInsertionPoint", (PyCFunction
) _wrap_TextCtrl_GetInsertionPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36451 { (char *)"TextCtrl_GetLastPosition", (PyCFunction
) _wrap_TextCtrl_GetLastPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36452 { (char *)"TextCtrl_SetSelection", (PyCFunction
) _wrap_TextCtrl_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36453 { (char *)"TextCtrl_SelectAll", (PyCFunction
) _wrap_TextCtrl_SelectAll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36454 { (char *)"TextCtrl_SetEditable", (PyCFunction
) _wrap_TextCtrl_SetEditable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36455 { (char *)"TextCtrl_write", (PyCFunction
) _wrap_TextCtrl_write
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36456 { (char *)"TextCtrl_GetString", (PyCFunction
) _wrap_TextCtrl_GetString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36457 { (char *)"TextCtrl_GetClassDefaultAttributes", (PyCFunction
) _wrap_TextCtrl_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36458 { (char *)"TextCtrl_swigregister", TextCtrl_swigregister
, METH_VARARGS
, NULL
},
36459 { (char *)"new_TextUrlEvent", (PyCFunction
) _wrap_new_TextUrlEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36460 { (char *)"TextUrlEvent_GetMouseEvent", (PyCFunction
) _wrap_TextUrlEvent_GetMouseEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36461 { (char *)"TextUrlEvent_GetURLStart", (PyCFunction
) _wrap_TextUrlEvent_GetURLStart
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36462 { (char *)"TextUrlEvent_GetURLEnd", (PyCFunction
) _wrap_TextUrlEvent_GetURLEnd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36463 { (char *)"TextUrlEvent_swigregister", TextUrlEvent_swigregister
, METH_VARARGS
, NULL
},
36464 { (char *)"new_ScrollBar", (PyCFunction
) _wrap_new_ScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36465 { (char *)"new_PreScrollBar", (PyCFunction
) _wrap_new_PreScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36466 { (char *)"ScrollBar_Create", (PyCFunction
) _wrap_ScrollBar_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36467 { (char *)"ScrollBar_GetThumbPosition", (PyCFunction
) _wrap_ScrollBar_GetThumbPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36468 { (char *)"ScrollBar_GetThumbSize", (PyCFunction
) _wrap_ScrollBar_GetThumbSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36469 { (char *)"ScrollBar_GetPageSize", (PyCFunction
) _wrap_ScrollBar_GetPageSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36470 { (char *)"ScrollBar_GetRange", (PyCFunction
) _wrap_ScrollBar_GetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36471 { (char *)"ScrollBar_IsVertical", (PyCFunction
) _wrap_ScrollBar_IsVertical
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36472 { (char *)"ScrollBar_SetThumbPosition", (PyCFunction
) _wrap_ScrollBar_SetThumbPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36473 { (char *)"ScrollBar_SetScrollbar", (PyCFunction
) _wrap_ScrollBar_SetScrollbar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36474 { (char *)"ScrollBar_GetClassDefaultAttributes", (PyCFunction
) _wrap_ScrollBar_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36475 { (char *)"ScrollBar_swigregister", ScrollBar_swigregister
, METH_VARARGS
, NULL
},
36476 { (char *)"new_SpinButton", (PyCFunction
) _wrap_new_SpinButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36477 { (char *)"new_PreSpinButton", (PyCFunction
) _wrap_new_PreSpinButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36478 { (char *)"SpinButton_Create", (PyCFunction
) _wrap_SpinButton_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36479 { (char *)"SpinButton_GetValue", (PyCFunction
) _wrap_SpinButton_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36480 { (char *)"SpinButton_GetMin", (PyCFunction
) _wrap_SpinButton_GetMin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36481 { (char *)"SpinButton_GetMax", (PyCFunction
) _wrap_SpinButton_GetMax
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36482 { (char *)"SpinButton_SetValue", (PyCFunction
) _wrap_SpinButton_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36483 { (char *)"SpinButton_SetMin", (PyCFunction
) _wrap_SpinButton_SetMin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36484 { (char *)"SpinButton_SetMax", (PyCFunction
) _wrap_SpinButton_SetMax
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36485 { (char *)"SpinButton_SetRange", (PyCFunction
) _wrap_SpinButton_SetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36486 { (char *)"SpinButton_IsVertical", (PyCFunction
) _wrap_SpinButton_IsVertical
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36487 { (char *)"SpinButton_GetClassDefaultAttributes", (PyCFunction
) _wrap_SpinButton_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36488 { (char *)"SpinButton_swigregister", SpinButton_swigregister
, METH_VARARGS
, NULL
},
36489 { (char *)"new_SpinCtrl", (PyCFunction
) _wrap_new_SpinCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36490 { (char *)"new_PreSpinCtrl", (PyCFunction
) _wrap_new_PreSpinCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36491 { (char *)"SpinCtrl_Create", (PyCFunction
) _wrap_SpinCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36492 { (char *)"SpinCtrl_GetValue", (PyCFunction
) _wrap_SpinCtrl_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36493 { (char *)"SpinCtrl_SetValue", (PyCFunction
) _wrap_SpinCtrl_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36494 { (char *)"SpinCtrl_SetValueString", (PyCFunction
) _wrap_SpinCtrl_SetValueString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36495 { (char *)"SpinCtrl_SetRange", (PyCFunction
) _wrap_SpinCtrl_SetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36496 { (char *)"SpinCtrl_GetMin", (PyCFunction
) _wrap_SpinCtrl_GetMin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36497 { (char *)"SpinCtrl_GetMax", (PyCFunction
) _wrap_SpinCtrl_GetMax
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36498 { (char *)"SpinCtrl_SetSelection", (PyCFunction
) _wrap_SpinCtrl_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36499 { (char *)"SpinCtrl_GetClassDefaultAttributes", (PyCFunction
) _wrap_SpinCtrl_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36500 { (char *)"SpinCtrl_swigregister", SpinCtrl_swigregister
, METH_VARARGS
, NULL
},
36501 { (char *)"new_SpinEvent", (PyCFunction
) _wrap_new_SpinEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36502 { (char *)"SpinEvent_GetPosition", (PyCFunction
) _wrap_SpinEvent_GetPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36503 { (char *)"SpinEvent_SetPosition", (PyCFunction
) _wrap_SpinEvent_SetPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36504 { (char *)"SpinEvent_swigregister", SpinEvent_swigregister
, METH_VARARGS
, NULL
},
36505 { (char *)"new_RadioBox", (PyCFunction
) _wrap_new_RadioBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36506 { (char *)"new_PreRadioBox", (PyCFunction
) _wrap_new_PreRadioBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36507 { (char *)"RadioBox_Create", (PyCFunction
) _wrap_RadioBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36508 { (char *)"RadioBox_SetSelection", (PyCFunction
) _wrap_RadioBox_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36509 { (char *)"RadioBox_GetSelection", (PyCFunction
) _wrap_RadioBox_GetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36510 { (char *)"RadioBox_GetStringSelection", (PyCFunction
) _wrap_RadioBox_GetStringSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36511 { (char *)"RadioBox_SetStringSelection", (PyCFunction
) _wrap_RadioBox_SetStringSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36512 { (char *)"RadioBox_GetCount", (PyCFunction
) _wrap_RadioBox_GetCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36513 { (char *)"RadioBox_FindString", (PyCFunction
) _wrap_RadioBox_FindString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36514 { (char *)"RadioBox_GetString", (PyCFunction
) _wrap_RadioBox_GetString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36515 { (char *)"RadioBox_SetString", (PyCFunction
) _wrap_RadioBox_SetString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36516 { (char *)"RadioBox_EnableItem", (PyCFunction
) _wrap_RadioBox_EnableItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36517 { (char *)"RadioBox_ShowItem", (PyCFunction
) _wrap_RadioBox_ShowItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36518 { (char *)"RadioBox_GetColumnCount", (PyCFunction
) _wrap_RadioBox_GetColumnCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36519 { (char *)"RadioBox_GetRowCount", (PyCFunction
) _wrap_RadioBox_GetRowCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36520 { (char *)"RadioBox_GetNextItem", (PyCFunction
) _wrap_RadioBox_GetNextItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36521 { (char *)"RadioBox_GetClassDefaultAttributes", (PyCFunction
) _wrap_RadioBox_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36522 { (char *)"RadioBox_swigregister", RadioBox_swigregister
, METH_VARARGS
, NULL
},
36523 { (char *)"new_RadioButton", (PyCFunction
) _wrap_new_RadioButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36524 { (char *)"new_PreRadioButton", (PyCFunction
) _wrap_new_PreRadioButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36525 { (char *)"RadioButton_Create", (PyCFunction
) _wrap_RadioButton_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36526 { (char *)"RadioButton_GetValue", (PyCFunction
) _wrap_RadioButton_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36527 { (char *)"RadioButton_SetValue", (PyCFunction
) _wrap_RadioButton_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36528 { (char *)"RadioButton_GetClassDefaultAttributes", (PyCFunction
) _wrap_RadioButton_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36529 { (char *)"RadioButton_swigregister", RadioButton_swigregister
, METH_VARARGS
, NULL
},
36530 { (char *)"new_Slider", (PyCFunction
) _wrap_new_Slider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36531 { (char *)"new_PreSlider", (PyCFunction
) _wrap_new_PreSlider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36532 { (char *)"Slider_Create", (PyCFunction
) _wrap_Slider_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36533 { (char *)"Slider_GetValue", (PyCFunction
) _wrap_Slider_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36534 { (char *)"Slider_SetValue", (PyCFunction
) _wrap_Slider_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36535 { (char *)"Slider_SetRange", (PyCFunction
) _wrap_Slider_SetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36536 { (char *)"Slider_GetMin", (PyCFunction
) _wrap_Slider_GetMin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36537 { (char *)"Slider_GetMax", (PyCFunction
) _wrap_Slider_GetMax
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36538 { (char *)"Slider_SetMin", (PyCFunction
) _wrap_Slider_SetMin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36539 { (char *)"Slider_SetMax", (PyCFunction
) _wrap_Slider_SetMax
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36540 { (char *)"Slider_SetLineSize", (PyCFunction
) _wrap_Slider_SetLineSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36541 { (char *)"Slider_SetPageSize", (PyCFunction
) _wrap_Slider_SetPageSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36542 { (char *)"Slider_GetLineSize", (PyCFunction
) _wrap_Slider_GetLineSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36543 { (char *)"Slider_GetPageSize", (PyCFunction
) _wrap_Slider_GetPageSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36544 { (char *)"Slider_SetThumbLength", (PyCFunction
) _wrap_Slider_SetThumbLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36545 { (char *)"Slider_GetThumbLength", (PyCFunction
) _wrap_Slider_GetThumbLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36546 { (char *)"Slider_SetTickFreq", (PyCFunction
) _wrap_Slider_SetTickFreq
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36547 { (char *)"Slider_GetTickFreq", (PyCFunction
) _wrap_Slider_GetTickFreq
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36548 { (char *)"Slider_ClearTicks", (PyCFunction
) _wrap_Slider_ClearTicks
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36549 { (char *)"Slider_SetTick", (PyCFunction
) _wrap_Slider_SetTick
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36550 { (char *)"Slider_ClearSel", (PyCFunction
) _wrap_Slider_ClearSel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36551 { (char *)"Slider_GetSelEnd", (PyCFunction
) _wrap_Slider_GetSelEnd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36552 { (char *)"Slider_GetSelStart", (PyCFunction
) _wrap_Slider_GetSelStart
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36553 { (char *)"Slider_SetSelection", (PyCFunction
) _wrap_Slider_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36554 { (char *)"Slider_GetClassDefaultAttributes", (PyCFunction
) _wrap_Slider_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36555 { (char *)"Slider_swigregister", Slider_swigregister
, METH_VARARGS
, NULL
},
36556 { (char *)"new_ToggleButton", (PyCFunction
) _wrap_new_ToggleButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36557 { (char *)"new_PreToggleButton", (PyCFunction
) _wrap_new_PreToggleButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36558 { (char *)"ToggleButton_Create", (PyCFunction
) _wrap_ToggleButton_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36559 { (char *)"ToggleButton_SetValue", (PyCFunction
) _wrap_ToggleButton_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36560 { (char *)"ToggleButton_GetValue", (PyCFunction
) _wrap_ToggleButton_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36561 { (char *)"ToggleButton_SetLabel", (PyCFunction
) _wrap_ToggleButton_SetLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36562 { (char *)"ToggleButton_GetClassDefaultAttributes", (PyCFunction
) _wrap_ToggleButton_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36563 { (char *)"ToggleButton_swigregister", ToggleButton_swigregister
, METH_VARARGS
, NULL
},
36564 { (char *)"BookCtrlBase_GetPageCount", (PyCFunction
) _wrap_BookCtrlBase_GetPageCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36565 { (char *)"BookCtrlBase_GetPage", (PyCFunction
) _wrap_BookCtrlBase_GetPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36566 { (char *)"BookCtrlBase_GetCurrentPage", (PyCFunction
) _wrap_BookCtrlBase_GetCurrentPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36567 { (char *)"BookCtrlBase_GetSelection", (PyCFunction
) _wrap_BookCtrlBase_GetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36568 { (char *)"BookCtrlBase_SetPageText", (PyCFunction
) _wrap_BookCtrlBase_SetPageText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36569 { (char *)"BookCtrlBase_GetPageText", (PyCFunction
) _wrap_BookCtrlBase_GetPageText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36570 { (char *)"BookCtrlBase_SetImageList", (PyCFunction
) _wrap_BookCtrlBase_SetImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36571 { (char *)"BookCtrlBase_AssignImageList", (PyCFunction
) _wrap_BookCtrlBase_AssignImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36572 { (char *)"BookCtrlBase_GetImageList", (PyCFunction
) _wrap_BookCtrlBase_GetImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36573 { (char *)"BookCtrlBase_GetPageImage", (PyCFunction
) _wrap_BookCtrlBase_GetPageImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36574 { (char *)"BookCtrlBase_SetPageImage", (PyCFunction
) _wrap_BookCtrlBase_SetPageImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36575 { (char *)"BookCtrlBase_SetPageSize", (PyCFunction
) _wrap_BookCtrlBase_SetPageSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36576 { (char *)"BookCtrlBase_CalcSizeFromPage", (PyCFunction
) _wrap_BookCtrlBase_CalcSizeFromPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36577 { (char *)"BookCtrlBase_GetInternalBorder", (PyCFunction
) _wrap_BookCtrlBase_GetInternalBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36578 { (char *)"BookCtrlBase_SetInternalBorder", (PyCFunction
) _wrap_BookCtrlBase_SetInternalBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36579 { (char *)"BookCtrlBase_IsVertical", (PyCFunction
) _wrap_BookCtrlBase_IsVertical
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36580 { (char *)"BookCtrlBase_SetFitToCurrentPage", (PyCFunction
) _wrap_BookCtrlBase_SetFitToCurrentPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36581 { (char *)"BookCtrlBase_GetFitToCurrentPage", (PyCFunction
) _wrap_BookCtrlBase_GetFitToCurrentPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36582 { (char *)"BookCtrlBase_DeletePage", (PyCFunction
) _wrap_BookCtrlBase_DeletePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36583 { (char *)"BookCtrlBase_RemovePage", (PyCFunction
) _wrap_BookCtrlBase_RemovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36584 { (char *)"BookCtrlBase_DeleteAllPages", (PyCFunction
) _wrap_BookCtrlBase_DeleteAllPages
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36585 { (char *)"BookCtrlBase_AddPage", (PyCFunction
) _wrap_BookCtrlBase_AddPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36586 { (char *)"BookCtrlBase_InsertPage", (PyCFunction
) _wrap_BookCtrlBase_InsertPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36587 { (char *)"BookCtrlBase_SetSelection", (PyCFunction
) _wrap_BookCtrlBase_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36588 { (char *)"BookCtrlBase_AdvanceSelection", (PyCFunction
) _wrap_BookCtrlBase_AdvanceSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36589 { (char *)"BookCtrlBase_GetClassDefaultAttributes", (PyCFunction
) _wrap_BookCtrlBase_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36590 { (char *)"BookCtrlBase_swigregister", BookCtrlBase_swigregister
, METH_VARARGS
, NULL
},
36591 { (char *)"new_BookCtrlBaseEvent", (PyCFunction
) _wrap_new_BookCtrlBaseEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36592 { (char *)"BookCtrlBaseEvent_GetSelection", (PyCFunction
) _wrap_BookCtrlBaseEvent_GetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36593 { (char *)"BookCtrlBaseEvent_SetSelection", (PyCFunction
) _wrap_BookCtrlBaseEvent_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36594 { (char *)"BookCtrlBaseEvent_GetOldSelection", (PyCFunction
) _wrap_BookCtrlBaseEvent_GetOldSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36595 { (char *)"BookCtrlBaseEvent_SetOldSelection", (PyCFunction
) _wrap_BookCtrlBaseEvent_SetOldSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36596 { (char *)"BookCtrlBaseEvent_swigregister", BookCtrlBaseEvent_swigregister
, METH_VARARGS
, NULL
},
36597 { (char *)"new_Notebook", (PyCFunction
) _wrap_new_Notebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36598 { (char *)"new_PreNotebook", (PyCFunction
) _wrap_new_PreNotebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36599 { (char *)"Notebook_Create", (PyCFunction
) _wrap_Notebook_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36600 { (char *)"Notebook_GetRowCount", (PyCFunction
) _wrap_Notebook_GetRowCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36601 { (char *)"Notebook_SetPadding", (PyCFunction
) _wrap_Notebook_SetPadding
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36602 { (char *)"Notebook_SetTabSize", (PyCFunction
) _wrap_Notebook_SetTabSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36603 { (char *)"Notebook_HitTest", (PyCFunction
) _wrap_Notebook_HitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36604 { (char *)"Notebook_CalcSizeFromPage", (PyCFunction
) _wrap_Notebook_CalcSizeFromPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36605 { (char *)"Notebook_GetThemeBackgroundColour", (PyCFunction
) _wrap_Notebook_GetThemeBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36606 { (char *)"Notebook_GetClassDefaultAttributes", (PyCFunction
) _wrap_Notebook_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36607 { (char *)"Notebook_swigregister", Notebook_swigregister
, METH_VARARGS
, NULL
},
36608 { (char *)"new_NotebookEvent", (PyCFunction
) _wrap_new_NotebookEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36609 { (char *)"NotebookEvent_swigregister", NotebookEvent_swigregister
, METH_VARARGS
, NULL
},
36610 { (char *)"new_Listbook", (PyCFunction
) _wrap_new_Listbook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36611 { (char *)"new_PreListbook", (PyCFunction
) _wrap_new_PreListbook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36612 { (char *)"Listbook_Create", (PyCFunction
) _wrap_Listbook_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36613 { (char *)"Listbook_GetListView", (PyCFunction
) _wrap_Listbook_GetListView
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36614 { (char *)"Listbook_swigregister", Listbook_swigregister
, METH_VARARGS
, NULL
},
36615 { (char *)"new_ListbookEvent", (PyCFunction
) _wrap_new_ListbookEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36616 { (char *)"ListbookEvent_swigregister", ListbookEvent_swigregister
, METH_VARARGS
, NULL
},
36617 { (char *)"new_Choicebook", (PyCFunction
) _wrap_new_Choicebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36618 { (char *)"new_PreChoicebook", (PyCFunction
) _wrap_new_PreChoicebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36619 { (char *)"Choicebook_Create", (PyCFunction
) _wrap_Choicebook_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36620 { (char *)"Choicebook_GetChoiceCtrl", (PyCFunction
) _wrap_Choicebook_GetChoiceCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36621 { (char *)"Choicebook_DeleteAllPages", (PyCFunction
) _wrap_Choicebook_DeleteAllPages
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36622 { (char *)"Choicebook_swigregister", Choicebook_swigregister
, METH_VARARGS
, NULL
},
36623 { (char *)"new_ChoicebookEvent", (PyCFunction
) _wrap_new_ChoicebookEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36624 { (char *)"ChoicebookEvent_swigregister", ChoicebookEvent_swigregister
, METH_VARARGS
, NULL
},
36625 { (char *)"new_Treebook", (PyCFunction
) _wrap_new_Treebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36626 { (char *)"new_PreTreebook", (PyCFunction
) _wrap_new_PreTreebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36627 { (char *)"Treebook_Create", (PyCFunction
) _wrap_Treebook_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36628 { (char *)"Treebook_InsertPage", (PyCFunction
) _wrap_Treebook_InsertPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36629 { (char *)"Treebook_InsertSubPage", (PyCFunction
) _wrap_Treebook_InsertSubPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36630 { (char *)"Treebook_AddPage", (PyCFunction
) _wrap_Treebook_AddPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36631 { (char *)"Treebook_AddSubPage", (PyCFunction
) _wrap_Treebook_AddSubPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36632 { (char *)"Treebook_DeletePage", (PyCFunction
) _wrap_Treebook_DeletePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36633 { (char *)"Treebook_IsNodeExpanded", (PyCFunction
) _wrap_Treebook_IsNodeExpanded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36634 { (char *)"Treebook_ExpandNode", (PyCFunction
) _wrap_Treebook_ExpandNode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36635 { (char *)"Treebook_CollapseNode", (PyCFunction
) _wrap_Treebook_CollapseNode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36636 { (char *)"Treebook_GetPageParent", (PyCFunction
) _wrap_Treebook_GetPageParent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36637 { (char *)"Treebook_GetTreeCtrl", (PyCFunction
) _wrap_Treebook_GetTreeCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36638 { (char *)"Treebook_swigregister", Treebook_swigregister
, METH_VARARGS
, NULL
},
36639 { (char *)"new_TreebookEvent", (PyCFunction
) _wrap_new_TreebookEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36640 { (char *)"TreebookEvent_swigregister", TreebookEvent_swigregister
, METH_VARARGS
, NULL
},
36641 { (char *)"new_Toolbook", (PyCFunction
) _wrap_new_Toolbook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36642 { (char *)"new_PreToolbook", (PyCFunction
) _wrap_new_PreToolbook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36643 { (char *)"Toolbook_Create", (PyCFunction
) _wrap_Toolbook_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36644 { (char *)"Toolbook_GetToolBar", (PyCFunction
) _wrap_Toolbook_GetToolBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36645 { (char *)"Toolbook_Realize", (PyCFunction
) _wrap_Toolbook_Realize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36646 { (char *)"Toolbook_swigregister", Toolbook_swigregister
, METH_VARARGS
, NULL
},
36647 { (char *)"new_ToolbookEvent", (PyCFunction
) _wrap_new_ToolbookEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36648 { (char *)"ToolbookEvent_swigregister", ToolbookEvent_swigregister
, METH_VARARGS
, NULL
},
36649 { (char *)"ToolBarToolBase_GetId", (PyCFunction
) _wrap_ToolBarToolBase_GetId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36650 { (char *)"ToolBarToolBase_GetControl", (PyCFunction
) _wrap_ToolBarToolBase_GetControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36651 { (char *)"ToolBarToolBase_GetToolBar", (PyCFunction
) _wrap_ToolBarToolBase_GetToolBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36652 { (char *)"ToolBarToolBase_IsButton", (PyCFunction
) _wrap_ToolBarToolBase_IsButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36653 { (char *)"ToolBarToolBase_IsControl", (PyCFunction
) _wrap_ToolBarToolBase_IsControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36654 { (char *)"ToolBarToolBase_IsSeparator", (PyCFunction
) _wrap_ToolBarToolBase_IsSeparator
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36655 { (char *)"ToolBarToolBase_GetStyle", (PyCFunction
) _wrap_ToolBarToolBase_GetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36656 { (char *)"ToolBarToolBase_GetKind", (PyCFunction
) _wrap_ToolBarToolBase_GetKind
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36657 { (char *)"ToolBarToolBase_IsEnabled", (PyCFunction
) _wrap_ToolBarToolBase_IsEnabled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36658 { (char *)"ToolBarToolBase_IsToggled", (PyCFunction
) _wrap_ToolBarToolBase_IsToggled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36659 { (char *)"ToolBarToolBase_CanBeToggled", (PyCFunction
) _wrap_ToolBarToolBase_CanBeToggled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36660 { (char *)"ToolBarToolBase_GetNormalBitmap", (PyCFunction
) _wrap_ToolBarToolBase_GetNormalBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36661 { (char *)"ToolBarToolBase_GetDisabledBitmap", (PyCFunction
) _wrap_ToolBarToolBase_GetDisabledBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36662 { (char *)"ToolBarToolBase_GetBitmap", (PyCFunction
) _wrap_ToolBarToolBase_GetBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36663 { (char *)"ToolBarToolBase_GetLabel", (PyCFunction
) _wrap_ToolBarToolBase_GetLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36664 { (char *)"ToolBarToolBase_GetShortHelp", (PyCFunction
) _wrap_ToolBarToolBase_GetShortHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36665 { (char *)"ToolBarToolBase_GetLongHelp", (PyCFunction
) _wrap_ToolBarToolBase_GetLongHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36666 { (char *)"ToolBarToolBase_Enable", (PyCFunction
) _wrap_ToolBarToolBase_Enable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36667 { (char *)"ToolBarToolBase_Toggle", (PyCFunction
) _wrap_ToolBarToolBase_Toggle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36668 { (char *)"ToolBarToolBase_SetToggle", (PyCFunction
) _wrap_ToolBarToolBase_SetToggle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36669 { (char *)"ToolBarToolBase_SetShortHelp", (PyCFunction
) _wrap_ToolBarToolBase_SetShortHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36670 { (char *)"ToolBarToolBase_SetLongHelp", (PyCFunction
) _wrap_ToolBarToolBase_SetLongHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36671 { (char *)"ToolBarToolBase_SetNormalBitmap", (PyCFunction
) _wrap_ToolBarToolBase_SetNormalBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36672 { (char *)"ToolBarToolBase_SetDisabledBitmap", (PyCFunction
) _wrap_ToolBarToolBase_SetDisabledBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36673 { (char *)"ToolBarToolBase_SetLabel", (PyCFunction
) _wrap_ToolBarToolBase_SetLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36674 { (char *)"ToolBarToolBase_Detach", (PyCFunction
) _wrap_ToolBarToolBase_Detach
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36675 { (char *)"ToolBarToolBase_Attach", (PyCFunction
) _wrap_ToolBarToolBase_Attach
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36676 { (char *)"ToolBarToolBase_GetClientData", (PyCFunction
) _wrap_ToolBarToolBase_GetClientData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36677 { (char *)"ToolBarToolBase_SetClientData", (PyCFunction
) _wrap_ToolBarToolBase_SetClientData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36678 { (char *)"ToolBarToolBase_swigregister", ToolBarToolBase_swigregister
, METH_VARARGS
, NULL
},
36679 { (char *)"ToolBarBase_DoAddTool", (PyCFunction
) _wrap_ToolBarBase_DoAddTool
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36680 { (char *)"ToolBarBase_DoInsertTool", (PyCFunction
) _wrap_ToolBarBase_DoInsertTool
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36681 { (char *)"ToolBarBase_AddToolItem", (PyCFunction
) _wrap_ToolBarBase_AddToolItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36682 { (char *)"ToolBarBase_InsertToolItem", (PyCFunction
) _wrap_ToolBarBase_InsertToolItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36683 { (char *)"ToolBarBase_AddControl", (PyCFunction
) _wrap_ToolBarBase_AddControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36684 { (char *)"ToolBarBase_InsertControl", (PyCFunction
) _wrap_ToolBarBase_InsertControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36685 { (char *)"ToolBarBase_FindControl", (PyCFunction
) _wrap_ToolBarBase_FindControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36686 { (char *)"ToolBarBase_AddSeparator", (PyCFunction
) _wrap_ToolBarBase_AddSeparator
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36687 { (char *)"ToolBarBase_InsertSeparator", (PyCFunction
) _wrap_ToolBarBase_InsertSeparator
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36688 { (char *)"ToolBarBase_RemoveTool", (PyCFunction
) _wrap_ToolBarBase_RemoveTool
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36689 { (char *)"ToolBarBase_DeleteToolByPos", (PyCFunction
) _wrap_ToolBarBase_DeleteToolByPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36690 { (char *)"ToolBarBase_DeleteTool", (PyCFunction
) _wrap_ToolBarBase_DeleteTool
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36691 { (char *)"ToolBarBase_ClearTools", (PyCFunction
) _wrap_ToolBarBase_ClearTools
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36692 { (char *)"ToolBarBase_Realize", (PyCFunction
) _wrap_ToolBarBase_Realize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36693 { (char *)"ToolBarBase_EnableTool", (PyCFunction
) _wrap_ToolBarBase_EnableTool
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36694 { (char *)"ToolBarBase_ToggleTool", (PyCFunction
) _wrap_ToolBarBase_ToggleTool
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36695 { (char *)"ToolBarBase_SetToggle", (PyCFunction
) _wrap_ToolBarBase_SetToggle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36696 { (char *)"ToolBarBase_GetToolClientData", (PyCFunction
) _wrap_ToolBarBase_GetToolClientData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36697 { (char *)"ToolBarBase_SetToolClientData", (PyCFunction
) _wrap_ToolBarBase_SetToolClientData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36698 { (char *)"ToolBarBase_GetToolPos", (PyCFunction
) _wrap_ToolBarBase_GetToolPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36699 { (char *)"ToolBarBase_GetToolState", (PyCFunction
) _wrap_ToolBarBase_GetToolState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36700 { (char *)"ToolBarBase_GetToolEnabled", (PyCFunction
) _wrap_ToolBarBase_GetToolEnabled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36701 { (char *)"ToolBarBase_SetToolShortHelp", (PyCFunction
) _wrap_ToolBarBase_SetToolShortHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36702 { (char *)"ToolBarBase_GetToolShortHelp", (PyCFunction
) _wrap_ToolBarBase_GetToolShortHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36703 { (char *)"ToolBarBase_SetToolLongHelp", (PyCFunction
) _wrap_ToolBarBase_SetToolLongHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36704 { (char *)"ToolBarBase_GetToolLongHelp", (PyCFunction
) _wrap_ToolBarBase_GetToolLongHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36705 { (char *)"ToolBarBase_SetMarginsXY", (PyCFunction
) _wrap_ToolBarBase_SetMarginsXY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36706 { (char *)"ToolBarBase_SetMargins", (PyCFunction
) _wrap_ToolBarBase_SetMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36707 { (char *)"ToolBarBase_SetToolPacking", (PyCFunction
) _wrap_ToolBarBase_SetToolPacking
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36708 { (char *)"ToolBarBase_SetToolSeparation", (PyCFunction
) _wrap_ToolBarBase_SetToolSeparation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36709 { (char *)"ToolBarBase_GetToolMargins", (PyCFunction
) _wrap_ToolBarBase_GetToolMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36710 { (char *)"ToolBarBase_GetMargins", (PyCFunction
) _wrap_ToolBarBase_GetMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36711 { (char *)"ToolBarBase_GetToolPacking", (PyCFunction
) _wrap_ToolBarBase_GetToolPacking
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36712 { (char *)"ToolBarBase_GetToolSeparation", (PyCFunction
) _wrap_ToolBarBase_GetToolSeparation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36713 { (char *)"ToolBarBase_SetRows", (PyCFunction
) _wrap_ToolBarBase_SetRows
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36714 { (char *)"ToolBarBase_SetMaxRowsCols", (PyCFunction
) _wrap_ToolBarBase_SetMaxRowsCols
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36715 { (char *)"ToolBarBase_GetMaxRows", (PyCFunction
) _wrap_ToolBarBase_GetMaxRows
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36716 { (char *)"ToolBarBase_GetMaxCols", (PyCFunction
) _wrap_ToolBarBase_GetMaxCols
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36717 { (char *)"ToolBarBase_SetToolBitmapSize", (PyCFunction
) _wrap_ToolBarBase_SetToolBitmapSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36718 { (char *)"ToolBarBase_GetToolBitmapSize", (PyCFunction
) _wrap_ToolBarBase_GetToolBitmapSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36719 { (char *)"ToolBarBase_GetToolSize", (PyCFunction
) _wrap_ToolBarBase_GetToolSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36720 { (char *)"ToolBarBase_FindToolForPosition", (PyCFunction
) _wrap_ToolBarBase_FindToolForPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36721 { (char *)"ToolBarBase_FindById", (PyCFunction
) _wrap_ToolBarBase_FindById
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36722 { (char *)"ToolBarBase_IsVertical", (PyCFunction
) _wrap_ToolBarBase_IsVertical
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36723 { (char *)"ToolBarBase_swigregister", ToolBarBase_swigregister
, METH_VARARGS
, NULL
},
36724 { (char *)"new_ToolBar", (PyCFunction
) _wrap_new_ToolBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36725 { (char *)"new_PreToolBar", (PyCFunction
) _wrap_new_PreToolBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36726 { (char *)"ToolBar_Create", (PyCFunction
) _wrap_ToolBar_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36727 { (char *)"ToolBar_FindToolForPosition", (PyCFunction
) _wrap_ToolBar_FindToolForPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36728 { (char *)"ToolBar_GetClassDefaultAttributes", (PyCFunction
) _wrap_ToolBar_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36729 { (char *)"ToolBar_swigregister", ToolBar_swigregister
, METH_VARARGS
, NULL
},
36730 { (char *)"new_ListItemAttr", (PyCFunction
) _wrap_new_ListItemAttr
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36731 { (char *)"delete_ListItemAttr", (PyCFunction
) _wrap_delete_ListItemAttr
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36732 { (char *)"ListItemAttr_SetTextColour", (PyCFunction
) _wrap_ListItemAttr_SetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36733 { (char *)"ListItemAttr_SetBackgroundColour", (PyCFunction
) _wrap_ListItemAttr_SetBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36734 { (char *)"ListItemAttr_SetFont", (PyCFunction
) _wrap_ListItemAttr_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36735 { (char *)"ListItemAttr_HasTextColour", (PyCFunction
) _wrap_ListItemAttr_HasTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36736 { (char *)"ListItemAttr_HasBackgroundColour", (PyCFunction
) _wrap_ListItemAttr_HasBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36737 { (char *)"ListItemAttr_HasFont", (PyCFunction
) _wrap_ListItemAttr_HasFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36738 { (char *)"ListItemAttr_GetTextColour", (PyCFunction
) _wrap_ListItemAttr_GetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36739 { (char *)"ListItemAttr_GetBackgroundColour", (PyCFunction
) _wrap_ListItemAttr_GetBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36740 { (char *)"ListItemAttr_GetFont", (PyCFunction
) _wrap_ListItemAttr_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36741 { (char *)"ListItemAttr_AssignFrom", (PyCFunction
) _wrap_ListItemAttr_AssignFrom
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36742 { (char *)"ListItemAttr_Destroy", (PyCFunction
) _wrap_ListItemAttr_Destroy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36743 { (char *)"ListItemAttr_swigregister", ListItemAttr_swigregister
, METH_VARARGS
, NULL
},
36744 { (char *)"new_ListItem", (PyCFunction
) _wrap_new_ListItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36745 { (char *)"delete_ListItem", (PyCFunction
) _wrap_delete_ListItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36746 { (char *)"ListItem_Clear", (PyCFunction
) _wrap_ListItem_Clear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36747 { (char *)"ListItem_ClearAttributes", (PyCFunction
) _wrap_ListItem_ClearAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36748 { (char *)"ListItem_SetMask", (PyCFunction
) _wrap_ListItem_SetMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36749 { (char *)"ListItem_SetId", (PyCFunction
) _wrap_ListItem_SetId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36750 { (char *)"ListItem_SetColumn", (PyCFunction
) _wrap_ListItem_SetColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36751 { (char *)"ListItem_SetState", (PyCFunction
) _wrap_ListItem_SetState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36752 { (char *)"ListItem_SetStateMask", (PyCFunction
) _wrap_ListItem_SetStateMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36753 { (char *)"ListItem_SetText", (PyCFunction
) _wrap_ListItem_SetText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36754 { (char *)"ListItem_SetImage", (PyCFunction
) _wrap_ListItem_SetImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36755 { (char *)"ListItem_SetData", (PyCFunction
) _wrap_ListItem_SetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36756 { (char *)"ListItem_SetWidth", (PyCFunction
) _wrap_ListItem_SetWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36757 { (char *)"ListItem_SetAlign", (PyCFunction
) _wrap_ListItem_SetAlign
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36758 { (char *)"ListItem_SetTextColour", (PyCFunction
) _wrap_ListItem_SetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36759 { (char *)"ListItem_SetBackgroundColour", (PyCFunction
) _wrap_ListItem_SetBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36760 { (char *)"ListItem_SetFont", (PyCFunction
) _wrap_ListItem_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36761 { (char *)"ListItem_GetMask", (PyCFunction
) _wrap_ListItem_GetMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36762 { (char *)"ListItem_GetId", (PyCFunction
) _wrap_ListItem_GetId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36763 { (char *)"ListItem_GetColumn", (PyCFunction
) _wrap_ListItem_GetColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36764 { (char *)"ListItem_GetState", (PyCFunction
) _wrap_ListItem_GetState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36765 { (char *)"ListItem_GetText", (PyCFunction
) _wrap_ListItem_GetText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36766 { (char *)"ListItem_GetImage", (PyCFunction
) _wrap_ListItem_GetImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36767 { (char *)"ListItem_GetData", (PyCFunction
) _wrap_ListItem_GetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36768 { (char *)"ListItem_GetWidth", (PyCFunction
) _wrap_ListItem_GetWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36769 { (char *)"ListItem_GetAlign", (PyCFunction
) _wrap_ListItem_GetAlign
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36770 { (char *)"ListItem_GetAttributes", (PyCFunction
) _wrap_ListItem_GetAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36771 { (char *)"ListItem_HasAttributes", (PyCFunction
) _wrap_ListItem_HasAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36772 { (char *)"ListItem_GetTextColour", (PyCFunction
) _wrap_ListItem_GetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36773 { (char *)"ListItem_GetBackgroundColour", (PyCFunction
) _wrap_ListItem_GetBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36774 { (char *)"ListItem_GetFont", (PyCFunction
) _wrap_ListItem_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36775 { (char *)"ListItem_m_mask_set", (PyCFunction
) _wrap_ListItem_m_mask_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36776 { (char *)"ListItem_m_mask_get", (PyCFunction
) _wrap_ListItem_m_mask_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36777 { (char *)"ListItem_m_itemId_set", (PyCFunction
) _wrap_ListItem_m_itemId_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36778 { (char *)"ListItem_m_itemId_get", (PyCFunction
) _wrap_ListItem_m_itemId_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36779 { (char *)"ListItem_m_col_set", (PyCFunction
) _wrap_ListItem_m_col_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36780 { (char *)"ListItem_m_col_get", (PyCFunction
) _wrap_ListItem_m_col_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36781 { (char *)"ListItem_m_state_set", (PyCFunction
) _wrap_ListItem_m_state_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36782 { (char *)"ListItem_m_state_get", (PyCFunction
) _wrap_ListItem_m_state_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36783 { (char *)"ListItem_m_stateMask_set", (PyCFunction
) _wrap_ListItem_m_stateMask_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36784 { (char *)"ListItem_m_stateMask_get", (PyCFunction
) _wrap_ListItem_m_stateMask_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36785 { (char *)"ListItem_m_text_set", (PyCFunction
) _wrap_ListItem_m_text_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36786 { (char *)"ListItem_m_text_get", (PyCFunction
) _wrap_ListItem_m_text_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36787 { (char *)"ListItem_m_image_set", (PyCFunction
) _wrap_ListItem_m_image_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36788 { (char *)"ListItem_m_image_get", (PyCFunction
) _wrap_ListItem_m_image_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36789 { (char *)"ListItem_m_data_set", (PyCFunction
) _wrap_ListItem_m_data_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36790 { (char *)"ListItem_m_data_get", (PyCFunction
) _wrap_ListItem_m_data_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36791 { (char *)"ListItem_m_format_set", (PyCFunction
) _wrap_ListItem_m_format_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36792 { (char *)"ListItem_m_format_get", (PyCFunction
) _wrap_ListItem_m_format_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36793 { (char *)"ListItem_m_width_set", (PyCFunction
) _wrap_ListItem_m_width_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36794 { (char *)"ListItem_m_width_get", (PyCFunction
) _wrap_ListItem_m_width_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36795 { (char *)"ListItem_swigregister", ListItem_swigregister
, METH_VARARGS
, NULL
},
36796 { (char *)"new_ListEvent", (PyCFunction
) _wrap_new_ListEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36797 { (char *)"ListEvent_m_code_set", (PyCFunction
) _wrap_ListEvent_m_code_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36798 { (char *)"ListEvent_m_code_get", (PyCFunction
) _wrap_ListEvent_m_code_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36799 { (char *)"ListEvent_m_oldItemIndex_set", (PyCFunction
) _wrap_ListEvent_m_oldItemIndex_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36800 { (char *)"ListEvent_m_oldItemIndex_get", (PyCFunction
) _wrap_ListEvent_m_oldItemIndex_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36801 { (char *)"ListEvent_m_itemIndex_set", (PyCFunction
) _wrap_ListEvent_m_itemIndex_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36802 { (char *)"ListEvent_m_itemIndex_get", (PyCFunction
) _wrap_ListEvent_m_itemIndex_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36803 { (char *)"ListEvent_m_col_set", (PyCFunction
) _wrap_ListEvent_m_col_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36804 { (char *)"ListEvent_m_col_get", (PyCFunction
) _wrap_ListEvent_m_col_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36805 { (char *)"ListEvent_m_pointDrag_set", (PyCFunction
) _wrap_ListEvent_m_pointDrag_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36806 { (char *)"ListEvent_m_pointDrag_get", (PyCFunction
) _wrap_ListEvent_m_pointDrag_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36807 { (char *)"ListEvent_m_item_get", (PyCFunction
) _wrap_ListEvent_m_item_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36808 { (char *)"ListEvent_GetKeyCode", (PyCFunction
) _wrap_ListEvent_GetKeyCode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36809 { (char *)"ListEvent_GetIndex", (PyCFunction
) _wrap_ListEvent_GetIndex
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36810 { (char *)"ListEvent_GetColumn", (PyCFunction
) _wrap_ListEvent_GetColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36811 { (char *)"ListEvent_GetPoint", (PyCFunction
) _wrap_ListEvent_GetPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36812 { (char *)"ListEvent_GetLabel", (PyCFunction
) _wrap_ListEvent_GetLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36813 { (char *)"ListEvent_GetText", (PyCFunction
) _wrap_ListEvent_GetText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36814 { (char *)"ListEvent_GetImage", (PyCFunction
) _wrap_ListEvent_GetImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36815 { (char *)"ListEvent_GetData", (PyCFunction
) _wrap_ListEvent_GetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36816 { (char *)"ListEvent_GetMask", (PyCFunction
) _wrap_ListEvent_GetMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36817 { (char *)"ListEvent_GetItem", (PyCFunction
) _wrap_ListEvent_GetItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36818 { (char *)"ListEvent_GetCacheFrom", (PyCFunction
) _wrap_ListEvent_GetCacheFrom
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36819 { (char *)"ListEvent_GetCacheTo", (PyCFunction
) _wrap_ListEvent_GetCacheTo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36820 { (char *)"ListEvent_IsEditCancelled", (PyCFunction
) _wrap_ListEvent_IsEditCancelled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36821 { (char *)"ListEvent_SetEditCanceled", (PyCFunction
) _wrap_ListEvent_SetEditCanceled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36822 { (char *)"ListEvent_swigregister", ListEvent_swigregister
, METH_VARARGS
, NULL
},
36823 { (char *)"new_ListCtrl", (PyCFunction
) _wrap_new_ListCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36824 { (char *)"new_PreListCtrl", (PyCFunction
) _wrap_new_PreListCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36825 { (char *)"ListCtrl_Create", (PyCFunction
) _wrap_ListCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36826 { (char *)"ListCtrl__setCallbackInfo", (PyCFunction
) _wrap_ListCtrl__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36827 { (char *)"ListCtrl_SetForegroundColour", (PyCFunction
) _wrap_ListCtrl_SetForegroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36828 { (char *)"ListCtrl_SetBackgroundColour", (PyCFunction
) _wrap_ListCtrl_SetBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36829 { (char *)"ListCtrl_GetColumn", (PyCFunction
) _wrap_ListCtrl_GetColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36830 { (char *)"ListCtrl_SetColumn", (PyCFunction
) _wrap_ListCtrl_SetColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36831 { (char *)"ListCtrl_GetColumnWidth", (PyCFunction
) _wrap_ListCtrl_GetColumnWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36832 { (char *)"ListCtrl_SetColumnWidth", (PyCFunction
) _wrap_ListCtrl_SetColumnWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36833 { (char *)"ListCtrl_GetCountPerPage", (PyCFunction
) _wrap_ListCtrl_GetCountPerPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36834 { (char *)"ListCtrl_GetViewRect", (PyCFunction
) _wrap_ListCtrl_GetViewRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36835 { (char *)"ListCtrl_GetItem", (PyCFunction
) _wrap_ListCtrl_GetItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36836 { (char *)"ListCtrl_SetItem", (PyCFunction
) _wrap_ListCtrl_SetItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36837 { (char *)"ListCtrl_SetStringItem", (PyCFunction
) _wrap_ListCtrl_SetStringItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36838 { (char *)"ListCtrl_GetItemState", (PyCFunction
) _wrap_ListCtrl_GetItemState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36839 { (char *)"ListCtrl_SetItemState", (PyCFunction
) _wrap_ListCtrl_SetItemState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36840 { (char *)"ListCtrl_SetItemImage", (PyCFunction
) _wrap_ListCtrl_SetItemImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36841 { (char *)"ListCtrl_GetItemText", (PyCFunction
) _wrap_ListCtrl_GetItemText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36842 { (char *)"ListCtrl_SetItemText", (PyCFunction
) _wrap_ListCtrl_SetItemText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36843 { (char *)"ListCtrl_GetItemData", (PyCFunction
) _wrap_ListCtrl_GetItemData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36844 { (char *)"ListCtrl_SetItemData", (PyCFunction
) _wrap_ListCtrl_SetItemData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36845 { (char *)"ListCtrl_GetItemPosition", (PyCFunction
) _wrap_ListCtrl_GetItemPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36846 { (char *)"ListCtrl_GetItemRect", (PyCFunction
) _wrap_ListCtrl_GetItemRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36847 { (char *)"ListCtrl_SetItemPosition", (PyCFunction
) _wrap_ListCtrl_SetItemPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36848 { (char *)"ListCtrl_GetItemCount", (PyCFunction
) _wrap_ListCtrl_GetItemCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36849 { (char *)"ListCtrl_GetColumnCount", (PyCFunction
) _wrap_ListCtrl_GetColumnCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36850 { (char *)"ListCtrl_GetItemSpacing", (PyCFunction
) _wrap_ListCtrl_GetItemSpacing
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36851 { (char *)"ListCtrl_SetItemSpacing", (PyCFunction
) _wrap_ListCtrl_SetItemSpacing
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36852 { (char *)"ListCtrl_GetSelectedItemCount", (PyCFunction
) _wrap_ListCtrl_GetSelectedItemCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36853 { (char *)"ListCtrl_GetTextColour", (PyCFunction
) _wrap_ListCtrl_GetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36854 { (char *)"ListCtrl_SetTextColour", (PyCFunction
) _wrap_ListCtrl_SetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36855 { (char *)"ListCtrl_GetTopItem", (PyCFunction
) _wrap_ListCtrl_GetTopItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36856 { (char *)"ListCtrl_SetSingleStyle", (PyCFunction
) _wrap_ListCtrl_SetSingleStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36857 { (char *)"ListCtrl_SetWindowStyleFlag", (PyCFunction
) _wrap_ListCtrl_SetWindowStyleFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36858 { (char *)"ListCtrl_GetNextItem", (PyCFunction
) _wrap_ListCtrl_GetNextItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36859 { (char *)"ListCtrl_GetImageList", (PyCFunction
) _wrap_ListCtrl_GetImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36860 { (char *)"ListCtrl_SetImageList", (PyCFunction
) _wrap_ListCtrl_SetImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36861 { (char *)"ListCtrl_AssignImageList", (PyCFunction
) _wrap_ListCtrl_AssignImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36862 { (char *)"ListCtrl_InReportView", (PyCFunction
) _wrap_ListCtrl_InReportView
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36863 { (char *)"ListCtrl_IsVirtual", (PyCFunction
) _wrap_ListCtrl_IsVirtual
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36864 { (char *)"ListCtrl_RefreshItem", (PyCFunction
) _wrap_ListCtrl_RefreshItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36865 { (char *)"ListCtrl_RefreshItems", (PyCFunction
) _wrap_ListCtrl_RefreshItems
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36866 { (char *)"ListCtrl_Arrange", (PyCFunction
) _wrap_ListCtrl_Arrange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36867 { (char *)"ListCtrl_DeleteItem", (PyCFunction
) _wrap_ListCtrl_DeleteItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36868 { (char *)"ListCtrl_DeleteAllItems", (PyCFunction
) _wrap_ListCtrl_DeleteAllItems
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36869 { (char *)"ListCtrl_DeleteColumn", (PyCFunction
) _wrap_ListCtrl_DeleteColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36870 { (char *)"ListCtrl_DeleteAllColumns", (PyCFunction
) _wrap_ListCtrl_DeleteAllColumns
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36871 { (char *)"ListCtrl_ClearAll", (PyCFunction
) _wrap_ListCtrl_ClearAll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36872 { (char *)"ListCtrl_EditLabel", (PyCFunction
) _wrap_ListCtrl_EditLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36873 { (char *)"ListCtrl_EnsureVisible", (PyCFunction
) _wrap_ListCtrl_EnsureVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36874 { (char *)"ListCtrl_FindItem", (PyCFunction
) _wrap_ListCtrl_FindItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36875 { (char *)"ListCtrl_FindItemData", (PyCFunction
) _wrap_ListCtrl_FindItemData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36876 { (char *)"ListCtrl_FindItemAtPos", (PyCFunction
) _wrap_ListCtrl_FindItemAtPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36877 { (char *)"ListCtrl_HitTest", (PyCFunction
) _wrap_ListCtrl_HitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36878 { (char *)"ListCtrl_InsertItem", (PyCFunction
) _wrap_ListCtrl_InsertItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36879 { (char *)"ListCtrl_InsertStringItem", (PyCFunction
) _wrap_ListCtrl_InsertStringItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36880 { (char *)"ListCtrl_InsertImageItem", (PyCFunction
) _wrap_ListCtrl_InsertImageItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36881 { (char *)"ListCtrl_InsertImageStringItem", (PyCFunction
) _wrap_ListCtrl_InsertImageStringItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36882 { (char *)"ListCtrl_InsertColumnItem", (PyCFunction
) _wrap_ListCtrl_InsertColumnItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36883 { (char *)"ListCtrl_InsertColumn", (PyCFunction
) _wrap_ListCtrl_InsertColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36884 { (char *)"ListCtrl_SetItemCount", (PyCFunction
) _wrap_ListCtrl_SetItemCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36885 { (char *)"ListCtrl_ScrollList", (PyCFunction
) _wrap_ListCtrl_ScrollList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36886 { (char *)"ListCtrl_SetItemTextColour", (PyCFunction
) _wrap_ListCtrl_SetItemTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36887 { (char *)"ListCtrl_GetItemTextColour", (PyCFunction
) _wrap_ListCtrl_GetItemTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36888 { (char *)"ListCtrl_SetItemBackgroundColour", (PyCFunction
) _wrap_ListCtrl_SetItemBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36889 { (char *)"ListCtrl_GetItemBackgroundColour", (PyCFunction
) _wrap_ListCtrl_GetItemBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36890 { (char *)"ListCtrl_SetItemFont", (PyCFunction
) _wrap_ListCtrl_SetItemFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36891 { (char *)"ListCtrl_GetItemFont", (PyCFunction
) _wrap_ListCtrl_GetItemFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36892 { (char *)"ListCtrl_SortItems", (PyCFunction
) _wrap_ListCtrl_SortItems
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36893 { (char *)"ListCtrl_GetMainWindow", (PyCFunction
) _wrap_ListCtrl_GetMainWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36894 { (char *)"ListCtrl_GetClassDefaultAttributes", (PyCFunction
) _wrap_ListCtrl_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36895 { (char *)"ListCtrl_swigregister", ListCtrl_swigregister
, METH_VARARGS
, NULL
},
36896 { (char *)"new_ListView", (PyCFunction
) _wrap_new_ListView
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36897 { (char *)"new_PreListView", (PyCFunction
) _wrap_new_PreListView
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36898 { (char *)"ListView_Create", (PyCFunction
) _wrap_ListView_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36899 { (char *)"ListView_Select", (PyCFunction
) _wrap_ListView_Select
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36900 { (char *)"ListView_Focus", (PyCFunction
) _wrap_ListView_Focus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36901 { (char *)"ListView_GetFocusedItem", (PyCFunction
) _wrap_ListView_GetFocusedItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36902 { (char *)"ListView_GetNextSelected", (PyCFunction
) _wrap_ListView_GetNextSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36903 { (char *)"ListView_GetFirstSelected", (PyCFunction
) _wrap_ListView_GetFirstSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36904 { (char *)"ListView_IsSelected", (PyCFunction
) _wrap_ListView_IsSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36905 { (char *)"ListView_SetColumnImage", (PyCFunction
) _wrap_ListView_SetColumnImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36906 { (char *)"ListView_ClearColumnImage", (PyCFunction
) _wrap_ListView_ClearColumnImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36907 { (char *)"ListView_swigregister", ListView_swigregister
, METH_VARARGS
, NULL
},
36908 { (char *)"new_TreeItemId", (PyCFunction
) _wrap_new_TreeItemId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36909 { (char *)"delete_TreeItemId", (PyCFunction
) _wrap_delete_TreeItemId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36910 { (char *)"TreeItemId_IsOk", (PyCFunction
) _wrap_TreeItemId_IsOk
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36911 { (char *)"TreeItemId___eq__", (PyCFunction
) _wrap_TreeItemId___eq__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36912 { (char *)"TreeItemId___ne__", (PyCFunction
) _wrap_TreeItemId___ne__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36913 { (char *)"TreeItemId_m_pItem_set", (PyCFunction
) _wrap_TreeItemId_m_pItem_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36914 { (char *)"TreeItemId_m_pItem_get", (PyCFunction
) _wrap_TreeItemId_m_pItem_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36915 { (char *)"TreeItemId_swigregister", TreeItemId_swigregister
, METH_VARARGS
, NULL
},
36916 { (char *)"new_TreeItemData", (PyCFunction
) _wrap_new_TreeItemData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36917 { (char *)"delete_TreeItemData", (PyCFunction
) _wrap_delete_TreeItemData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36918 { (char *)"TreeItemData_GetData", (PyCFunction
) _wrap_TreeItemData_GetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36919 { (char *)"TreeItemData_SetData", (PyCFunction
) _wrap_TreeItemData_SetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36920 { (char *)"TreeItemData_GetId", (PyCFunction
) _wrap_TreeItemData_GetId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36921 { (char *)"TreeItemData_SetId", (PyCFunction
) _wrap_TreeItemData_SetId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36922 { (char *)"TreeItemData_Destroy", (PyCFunction
) _wrap_TreeItemData_Destroy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36923 { (char *)"TreeItemData_swigregister", TreeItemData_swigregister
, METH_VARARGS
, NULL
},
36924 { (char *)"new_TreeEvent", (PyCFunction
) _wrap_new_TreeEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36925 { (char *)"TreeEvent_GetItem", (PyCFunction
) _wrap_TreeEvent_GetItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36926 { (char *)"TreeEvent_SetItem", (PyCFunction
) _wrap_TreeEvent_SetItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36927 { (char *)"TreeEvent_GetOldItem", (PyCFunction
) _wrap_TreeEvent_GetOldItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36928 { (char *)"TreeEvent_SetOldItem", (PyCFunction
) _wrap_TreeEvent_SetOldItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36929 { (char *)"TreeEvent_GetPoint", (PyCFunction
) _wrap_TreeEvent_GetPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36930 { (char *)"TreeEvent_SetPoint", (PyCFunction
) _wrap_TreeEvent_SetPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36931 { (char *)"TreeEvent_GetKeyEvent", (PyCFunction
) _wrap_TreeEvent_GetKeyEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36932 { (char *)"TreeEvent_GetKeyCode", (PyCFunction
) _wrap_TreeEvent_GetKeyCode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36933 { (char *)"TreeEvent_SetKeyEvent", (PyCFunction
) _wrap_TreeEvent_SetKeyEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36934 { (char *)"TreeEvent_GetLabel", (PyCFunction
) _wrap_TreeEvent_GetLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36935 { (char *)"TreeEvent_SetLabel", (PyCFunction
) _wrap_TreeEvent_SetLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36936 { (char *)"TreeEvent_IsEditCancelled", (PyCFunction
) _wrap_TreeEvent_IsEditCancelled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36937 { (char *)"TreeEvent_SetEditCanceled", (PyCFunction
) _wrap_TreeEvent_SetEditCanceled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36938 { (char *)"TreeEvent_SetToolTip", (PyCFunction
) _wrap_TreeEvent_SetToolTip
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36939 { (char *)"TreeEvent_GetToolTip", (PyCFunction
) _wrap_TreeEvent_GetToolTip
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36940 { (char *)"TreeEvent_swigregister", TreeEvent_swigregister
, METH_VARARGS
, NULL
},
36941 { (char *)"new_TreeCtrl", (PyCFunction
) _wrap_new_TreeCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36942 { (char *)"new_PreTreeCtrl", (PyCFunction
) _wrap_new_PreTreeCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36943 { (char *)"TreeCtrl_Create", (PyCFunction
) _wrap_TreeCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36944 { (char *)"TreeCtrl__setCallbackInfo", (PyCFunction
) _wrap_TreeCtrl__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36945 { (char *)"TreeCtrl_GetCount", (PyCFunction
) _wrap_TreeCtrl_GetCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36946 { (char *)"TreeCtrl_GetIndent", (PyCFunction
) _wrap_TreeCtrl_GetIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36947 { (char *)"TreeCtrl_SetIndent", (PyCFunction
) _wrap_TreeCtrl_SetIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36948 { (char *)"TreeCtrl_GetSpacing", (PyCFunction
) _wrap_TreeCtrl_GetSpacing
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36949 { (char *)"TreeCtrl_SetSpacing", (PyCFunction
) _wrap_TreeCtrl_SetSpacing
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36950 { (char *)"TreeCtrl_GetImageList", (PyCFunction
) _wrap_TreeCtrl_GetImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36951 { (char *)"TreeCtrl_GetStateImageList", (PyCFunction
) _wrap_TreeCtrl_GetStateImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36952 { (char *)"TreeCtrl_SetImageList", (PyCFunction
) _wrap_TreeCtrl_SetImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36953 { (char *)"TreeCtrl_SetStateImageList", (PyCFunction
) _wrap_TreeCtrl_SetStateImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36954 { (char *)"TreeCtrl_AssignImageList", (PyCFunction
) _wrap_TreeCtrl_AssignImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36955 { (char *)"TreeCtrl_AssignStateImageList", (PyCFunction
) _wrap_TreeCtrl_AssignStateImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36956 { (char *)"TreeCtrl_GetItemText", (PyCFunction
) _wrap_TreeCtrl_GetItemText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36957 { (char *)"TreeCtrl_GetItemImage", (PyCFunction
) _wrap_TreeCtrl_GetItemImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36958 { (char *)"TreeCtrl_GetItemData", (PyCFunction
) _wrap_TreeCtrl_GetItemData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36959 { (char *)"TreeCtrl_GetItemPyData", (PyCFunction
) _wrap_TreeCtrl_GetItemPyData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36960 { (char *)"TreeCtrl_GetItemTextColour", (PyCFunction
) _wrap_TreeCtrl_GetItemTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36961 { (char *)"TreeCtrl_GetItemBackgroundColour", (PyCFunction
) _wrap_TreeCtrl_GetItemBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36962 { (char *)"TreeCtrl_GetItemFont", (PyCFunction
) _wrap_TreeCtrl_GetItemFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36963 { (char *)"TreeCtrl_SetItemText", (PyCFunction
) _wrap_TreeCtrl_SetItemText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36964 { (char *)"TreeCtrl_SetItemImage", (PyCFunction
) _wrap_TreeCtrl_SetItemImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36965 { (char *)"TreeCtrl_SetItemData", (PyCFunction
) _wrap_TreeCtrl_SetItemData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36966 { (char *)"TreeCtrl_SetItemPyData", (PyCFunction
) _wrap_TreeCtrl_SetItemPyData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36967 { (char *)"TreeCtrl_SetItemHasChildren", (PyCFunction
) _wrap_TreeCtrl_SetItemHasChildren
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36968 { (char *)"TreeCtrl_SetItemBold", (PyCFunction
) _wrap_TreeCtrl_SetItemBold
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36969 { (char *)"TreeCtrl_SetItemDropHighlight", (PyCFunction
) _wrap_TreeCtrl_SetItemDropHighlight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36970 { (char *)"TreeCtrl_SetItemTextColour", (PyCFunction
) _wrap_TreeCtrl_SetItemTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36971 { (char *)"TreeCtrl_SetItemBackgroundColour", (PyCFunction
) _wrap_TreeCtrl_SetItemBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36972 { (char *)"TreeCtrl_SetItemFont", (PyCFunction
) _wrap_TreeCtrl_SetItemFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36973 { (char *)"TreeCtrl_IsVisible", (PyCFunction
) _wrap_TreeCtrl_IsVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36974 { (char *)"TreeCtrl_ItemHasChildren", (PyCFunction
) _wrap_TreeCtrl_ItemHasChildren
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36975 { (char *)"TreeCtrl_IsExpanded", (PyCFunction
) _wrap_TreeCtrl_IsExpanded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36976 { (char *)"TreeCtrl_IsSelected", (PyCFunction
) _wrap_TreeCtrl_IsSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36977 { (char *)"TreeCtrl_IsBold", (PyCFunction
) _wrap_TreeCtrl_IsBold
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36978 { (char *)"TreeCtrl_GetChildrenCount", (PyCFunction
) _wrap_TreeCtrl_GetChildrenCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36979 { (char *)"TreeCtrl_GetRootItem", (PyCFunction
) _wrap_TreeCtrl_GetRootItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36980 { (char *)"TreeCtrl_GetSelection", (PyCFunction
) _wrap_TreeCtrl_GetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36981 { (char *)"TreeCtrl_GetSelections", (PyCFunction
) _wrap_TreeCtrl_GetSelections
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36982 { (char *)"TreeCtrl_GetItemParent", (PyCFunction
) _wrap_TreeCtrl_GetItemParent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36983 { (char *)"TreeCtrl_GetFirstChild", (PyCFunction
) _wrap_TreeCtrl_GetFirstChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36984 { (char *)"TreeCtrl_GetNextChild", (PyCFunction
) _wrap_TreeCtrl_GetNextChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36985 { (char *)"TreeCtrl_GetLastChild", (PyCFunction
) _wrap_TreeCtrl_GetLastChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36986 { (char *)"TreeCtrl_GetNextSibling", (PyCFunction
) _wrap_TreeCtrl_GetNextSibling
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36987 { (char *)"TreeCtrl_GetPrevSibling", (PyCFunction
) _wrap_TreeCtrl_GetPrevSibling
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36988 { (char *)"TreeCtrl_GetFirstVisibleItem", (PyCFunction
) _wrap_TreeCtrl_GetFirstVisibleItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36989 { (char *)"TreeCtrl_GetNextVisible", (PyCFunction
) _wrap_TreeCtrl_GetNextVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36990 { (char *)"TreeCtrl_GetPrevVisible", (PyCFunction
) _wrap_TreeCtrl_GetPrevVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36991 { (char *)"TreeCtrl_AddRoot", (PyCFunction
) _wrap_TreeCtrl_AddRoot
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36992 { (char *)"TreeCtrl_PrependItem", (PyCFunction
) _wrap_TreeCtrl_PrependItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36993 { (char *)"TreeCtrl_InsertItem", (PyCFunction
) _wrap_TreeCtrl_InsertItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36994 { (char *)"TreeCtrl_InsertItemBefore", (PyCFunction
) _wrap_TreeCtrl_InsertItemBefore
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36995 { (char *)"TreeCtrl_AppendItem", (PyCFunction
) _wrap_TreeCtrl_AppendItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36996 { (char *)"TreeCtrl_Delete", (PyCFunction
) _wrap_TreeCtrl_Delete
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36997 { (char *)"TreeCtrl_DeleteChildren", (PyCFunction
) _wrap_TreeCtrl_DeleteChildren
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36998 { (char *)"TreeCtrl_DeleteAllItems", (PyCFunction
) _wrap_TreeCtrl_DeleteAllItems
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
36999 { (char *)"TreeCtrl_Expand", (PyCFunction
) _wrap_TreeCtrl_Expand
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37000 { (char *)"TreeCtrl_Collapse", (PyCFunction
) _wrap_TreeCtrl_Collapse
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37001 { (char *)"TreeCtrl_CollapseAndReset", (PyCFunction
) _wrap_TreeCtrl_CollapseAndReset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37002 { (char *)"TreeCtrl_Toggle", (PyCFunction
) _wrap_TreeCtrl_Toggle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37003 { (char *)"TreeCtrl_Unselect", (PyCFunction
) _wrap_TreeCtrl_Unselect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37004 { (char *)"TreeCtrl_UnselectItem", (PyCFunction
) _wrap_TreeCtrl_UnselectItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37005 { (char *)"TreeCtrl_UnselectAll", (PyCFunction
) _wrap_TreeCtrl_UnselectAll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37006 { (char *)"TreeCtrl_SelectItem", (PyCFunction
) _wrap_TreeCtrl_SelectItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37007 { (char *)"TreeCtrl_ToggleItemSelection", (PyCFunction
) _wrap_TreeCtrl_ToggleItemSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37008 { (char *)"TreeCtrl_EnsureVisible", (PyCFunction
) _wrap_TreeCtrl_EnsureVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37009 { (char *)"TreeCtrl_ScrollTo", (PyCFunction
) _wrap_TreeCtrl_ScrollTo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37010 { (char *)"TreeCtrl_EditLabel", (PyCFunction
) _wrap_TreeCtrl_EditLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37011 { (char *)"TreeCtrl_GetEditControl", (PyCFunction
) _wrap_TreeCtrl_GetEditControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37012 { (char *)"TreeCtrl_SortChildren", (PyCFunction
) _wrap_TreeCtrl_SortChildren
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37013 { (char *)"TreeCtrl_HitTest", (PyCFunction
) _wrap_TreeCtrl_HitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37014 { (char *)"TreeCtrl_GetBoundingRect", (PyCFunction
) _wrap_TreeCtrl_GetBoundingRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37015 { (char *)"TreeCtrl_GetClassDefaultAttributes", (PyCFunction
) _wrap_TreeCtrl_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37016 { (char *)"TreeCtrl_swigregister", TreeCtrl_swigregister
, METH_VARARGS
, NULL
},
37017 { (char *)"new_GenericDirCtrl", (PyCFunction
) _wrap_new_GenericDirCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37018 { (char *)"new_PreGenericDirCtrl", (PyCFunction
) _wrap_new_PreGenericDirCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37019 { (char *)"GenericDirCtrl_Create", (PyCFunction
) _wrap_GenericDirCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37020 { (char *)"GenericDirCtrl_ExpandPath", (PyCFunction
) _wrap_GenericDirCtrl_ExpandPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37021 { (char *)"GenericDirCtrl_GetDefaultPath", (PyCFunction
) _wrap_GenericDirCtrl_GetDefaultPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37022 { (char *)"GenericDirCtrl_SetDefaultPath", (PyCFunction
) _wrap_GenericDirCtrl_SetDefaultPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37023 { (char *)"GenericDirCtrl_GetPath", (PyCFunction
) _wrap_GenericDirCtrl_GetPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37024 { (char *)"GenericDirCtrl_GetFilePath", (PyCFunction
) _wrap_GenericDirCtrl_GetFilePath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37025 { (char *)"GenericDirCtrl_SetPath", (PyCFunction
) _wrap_GenericDirCtrl_SetPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37026 { (char *)"GenericDirCtrl_ShowHidden", (PyCFunction
) _wrap_GenericDirCtrl_ShowHidden
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37027 { (char *)"GenericDirCtrl_GetShowHidden", (PyCFunction
) _wrap_GenericDirCtrl_GetShowHidden
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37028 { (char *)"GenericDirCtrl_GetFilter", (PyCFunction
) _wrap_GenericDirCtrl_GetFilter
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37029 { (char *)"GenericDirCtrl_SetFilter", (PyCFunction
) _wrap_GenericDirCtrl_SetFilter
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37030 { (char *)"GenericDirCtrl_GetFilterIndex", (PyCFunction
) _wrap_GenericDirCtrl_GetFilterIndex
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37031 { (char *)"GenericDirCtrl_SetFilterIndex", (PyCFunction
) _wrap_GenericDirCtrl_SetFilterIndex
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37032 { (char *)"GenericDirCtrl_GetRootId", (PyCFunction
) _wrap_GenericDirCtrl_GetRootId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37033 { (char *)"GenericDirCtrl_GetTreeCtrl", (PyCFunction
) _wrap_GenericDirCtrl_GetTreeCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37034 { (char *)"GenericDirCtrl_GetFilterListCtrl", (PyCFunction
) _wrap_GenericDirCtrl_GetFilterListCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37035 { (char *)"GenericDirCtrl_FindChild", (PyCFunction
) _wrap_GenericDirCtrl_FindChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37036 { (char *)"GenericDirCtrl_DoResize", (PyCFunction
) _wrap_GenericDirCtrl_DoResize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37037 { (char *)"GenericDirCtrl_ReCreateTree", (PyCFunction
) _wrap_GenericDirCtrl_ReCreateTree
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37038 { (char *)"GenericDirCtrl_swigregister", GenericDirCtrl_swigregister
, METH_VARARGS
, NULL
},
37039 { (char *)"new_DirFilterListCtrl", (PyCFunction
) _wrap_new_DirFilterListCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37040 { (char *)"new_PreDirFilterListCtrl", (PyCFunction
) _wrap_new_PreDirFilterListCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37041 { (char *)"DirFilterListCtrl_Create", (PyCFunction
) _wrap_DirFilterListCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37042 { (char *)"DirFilterListCtrl_FillFilterList", (PyCFunction
) _wrap_DirFilterListCtrl_FillFilterList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37043 { (char *)"DirFilterListCtrl_swigregister", DirFilterListCtrl_swigregister
, METH_VARARGS
, NULL
},
37044 { (char *)"new_PyControl", (PyCFunction
) _wrap_new_PyControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37045 { (char *)"new_PrePyControl", (PyCFunction
) _wrap_new_PrePyControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37046 { (char *)"PyControl__setCallbackInfo", (PyCFunction
) _wrap_PyControl__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37047 { (char *)"PyControl_SetBestSize", (PyCFunction
) _wrap_PyControl_SetBestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37048 { (char *)"PyControl_DoEraseBackground", (PyCFunction
) _wrap_PyControl_DoEraseBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37049 { (char *)"PyControl_DoMoveWindow", (PyCFunction
) _wrap_PyControl_DoMoveWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37050 { (char *)"PyControl_DoSetSize", (PyCFunction
) _wrap_PyControl_DoSetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37051 { (char *)"PyControl_DoSetClientSize", (PyCFunction
) _wrap_PyControl_DoSetClientSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37052 { (char *)"PyControl_DoSetVirtualSize", (PyCFunction
) _wrap_PyControl_DoSetVirtualSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37053 { (char *)"PyControl_DoGetSize", (PyCFunction
) _wrap_PyControl_DoGetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37054 { (char *)"PyControl_DoGetClientSize", (PyCFunction
) _wrap_PyControl_DoGetClientSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37055 { (char *)"PyControl_DoGetPosition", (PyCFunction
) _wrap_PyControl_DoGetPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37056 { (char *)"PyControl_DoGetVirtualSize", (PyCFunction
) _wrap_PyControl_DoGetVirtualSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37057 { (char *)"PyControl_DoGetBestSize", (PyCFunction
) _wrap_PyControl_DoGetBestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37058 { (char *)"PyControl_InitDialog", (PyCFunction
) _wrap_PyControl_InitDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37059 { (char *)"PyControl_TransferDataToWindow", (PyCFunction
) _wrap_PyControl_TransferDataToWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37060 { (char *)"PyControl_TransferDataFromWindow", (PyCFunction
) _wrap_PyControl_TransferDataFromWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37061 { (char *)"PyControl_Validate", (PyCFunction
) _wrap_PyControl_Validate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37062 { (char *)"PyControl_AcceptsFocus", (PyCFunction
) _wrap_PyControl_AcceptsFocus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37063 { (char *)"PyControl_AcceptsFocusFromKeyboard", (PyCFunction
) _wrap_PyControl_AcceptsFocusFromKeyboard
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37064 { (char *)"PyControl_GetMaxSize", (PyCFunction
) _wrap_PyControl_GetMaxSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37065 { (char *)"PyControl_AddChild", (PyCFunction
) _wrap_PyControl_AddChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37066 { (char *)"PyControl_RemoveChild", (PyCFunction
) _wrap_PyControl_RemoveChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37067 { (char *)"PyControl_ShouldInheritColours", (PyCFunction
) _wrap_PyControl_ShouldInheritColours
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37068 { (char *)"PyControl_GetDefaultAttributes", (PyCFunction
) _wrap_PyControl_GetDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37069 { (char *)"PyControl_OnInternalIdle", (PyCFunction
) _wrap_PyControl_OnInternalIdle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37070 { (char *)"PyControl_swigregister", PyControl_swigregister
, METH_VARARGS
, NULL
},
37071 { (char *)"new_HelpEvent", (PyCFunction
) _wrap_new_HelpEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37072 { (char *)"HelpEvent_GetPosition", (PyCFunction
) _wrap_HelpEvent_GetPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37073 { (char *)"HelpEvent_SetPosition", (PyCFunction
) _wrap_HelpEvent_SetPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37074 { (char *)"HelpEvent_GetLink", (PyCFunction
) _wrap_HelpEvent_GetLink
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37075 { (char *)"HelpEvent_SetLink", (PyCFunction
) _wrap_HelpEvent_SetLink
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37076 { (char *)"HelpEvent_GetTarget", (PyCFunction
) _wrap_HelpEvent_GetTarget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37077 { (char *)"HelpEvent_SetTarget", (PyCFunction
) _wrap_HelpEvent_SetTarget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37078 { (char *)"HelpEvent_swigregister", HelpEvent_swigregister
, METH_VARARGS
, NULL
},
37079 { (char *)"new_ContextHelp", (PyCFunction
) _wrap_new_ContextHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37080 { (char *)"delete_ContextHelp", (PyCFunction
) _wrap_delete_ContextHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37081 { (char *)"ContextHelp_BeginContextHelp", (PyCFunction
) _wrap_ContextHelp_BeginContextHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37082 { (char *)"ContextHelp_EndContextHelp", (PyCFunction
) _wrap_ContextHelp_EndContextHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37083 { (char *)"ContextHelp_swigregister", ContextHelp_swigregister
, METH_VARARGS
, NULL
},
37084 { (char *)"new_ContextHelpButton", (PyCFunction
) _wrap_new_ContextHelpButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37085 { (char *)"ContextHelpButton_swigregister", ContextHelpButton_swigregister
, METH_VARARGS
, NULL
},
37086 { (char *)"HelpProvider_Set", (PyCFunction
) _wrap_HelpProvider_Set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37087 { (char *)"HelpProvider_Get", (PyCFunction
) _wrap_HelpProvider_Get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37088 { (char *)"HelpProvider_GetHelp", (PyCFunction
) _wrap_HelpProvider_GetHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37089 { (char *)"HelpProvider_ShowHelp", (PyCFunction
) _wrap_HelpProvider_ShowHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37090 { (char *)"HelpProvider_AddHelp", (PyCFunction
) _wrap_HelpProvider_AddHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37091 { (char *)"HelpProvider_AddHelpById", (PyCFunction
) _wrap_HelpProvider_AddHelpById
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37092 { (char *)"HelpProvider_RemoveHelp", (PyCFunction
) _wrap_HelpProvider_RemoveHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37093 { (char *)"HelpProvider_Destroy", (PyCFunction
) _wrap_HelpProvider_Destroy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37094 { (char *)"HelpProvider_swigregister", HelpProvider_swigregister
, METH_VARARGS
, NULL
},
37095 { (char *)"new_SimpleHelpProvider", (PyCFunction
) _wrap_new_SimpleHelpProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37096 { (char *)"SimpleHelpProvider_swigregister", SimpleHelpProvider_swigregister
, METH_VARARGS
, NULL
},
37097 { (char *)"new_DragImage", (PyCFunction
) _wrap_new_DragImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37098 { (char *)"new_DragIcon", (PyCFunction
) _wrap_new_DragIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37099 { (char *)"new_DragString", (PyCFunction
) _wrap_new_DragString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37100 { (char *)"new_DragTreeItem", (PyCFunction
) _wrap_new_DragTreeItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37101 { (char *)"new_DragListItem", (PyCFunction
) _wrap_new_DragListItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37102 { (char *)"delete_DragImage", (PyCFunction
) _wrap_delete_DragImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37103 { (char *)"DragImage_SetBackingBitmap", (PyCFunction
) _wrap_DragImage_SetBackingBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37104 { (char *)"DragImage_BeginDrag", (PyCFunction
) _wrap_DragImage_BeginDrag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37105 { (char *)"DragImage_BeginDragBounded", (PyCFunction
) _wrap_DragImage_BeginDragBounded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37106 { (char *)"DragImage_EndDrag", (PyCFunction
) _wrap_DragImage_EndDrag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37107 { (char *)"DragImage_Move", (PyCFunction
) _wrap_DragImage_Move
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37108 { (char *)"DragImage_Show", (PyCFunction
) _wrap_DragImage_Show
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37109 { (char *)"DragImage_Hide", (PyCFunction
) _wrap_DragImage_Hide
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37110 { (char *)"DragImage_GetImageRect", (PyCFunction
) _wrap_DragImage_GetImageRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37111 { (char *)"DragImage_DoDrawImage", (PyCFunction
) _wrap_DragImage_DoDrawImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37112 { (char *)"DragImage_UpdateBackingFromWindow", (PyCFunction
) _wrap_DragImage_UpdateBackingFromWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37113 { (char *)"DragImage_RedrawImage", (PyCFunction
) _wrap_DragImage_RedrawImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37114 { (char *)"DragImage_swigregister", DragImage_swigregister
, METH_VARARGS
, NULL
},
37115 { (char *)"new_DatePickerCtrl", (PyCFunction
) _wrap_new_DatePickerCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37116 { (char *)"new_PreDatePickerCtrl", (PyCFunction
) _wrap_new_PreDatePickerCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37117 { (char *)"DatePickerCtrl_Create", (PyCFunction
) _wrap_DatePickerCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37118 { (char *)"DatePickerCtrl_SetValue", (PyCFunction
) _wrap_DatePickerCtrl_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37119 { (char *)"DatePickerCtrl_GetValue", (PyCFunction
) _wrap_DatePickerCtrl_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37120 { (char *)"DatePickerCtrl_SetRange", (PyCFunction
) _wrap_DatePickerCtrl_SetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37121 { (char *)"DatePickerCtrl_GetLowerLimit", (PyCFunction
) _wrap_DatePickerCtrl_GetLowerLimit
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37122 { (char *)"DatePickerCtrl_GetUpperLimit", (PyCFunction
) _wrap_DatePickerCtrl_GetUpperLimit
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
37123 { (char *)"DatePickerCtrl_swigregister", DatePickerCtrl_swigregister
, METH_VARARGS
, NULL
},
37124 { NULL
, NULL
, 0, NULL
}
37128 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
37130 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
37131 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
37133 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
37134 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
37136 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
37137 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
37139 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
37140 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
37142 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
37143 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
37145 static void *_p_wxBookCtrlBaseEventTo_p_wxEvent(void *x
) {
37146 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxBookCtrlBaseEvent
*) x
));
37148 static void *_p_wxTreeEventTo_p_wxEvent(void *x
) {
37149 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxTreeEvent
*) x
));
37151 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
37152 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
37154 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
37155 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
37157 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
37158 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
37160 static void *_p_wxTextUrlEventTo_p_wxEvent(void *x
) {
37161 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxTextUrlEvent
*) x
));
37163 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
37164 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
37166 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
37167 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
37169 static void *_p_wxListEventTo_p_wxEvent(void *x
) {
37170 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxListEvent
*) x
));
37172 static void *_p_wxNotebookEventTo_p_wxEvent(void *x
) {
37173 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxNotebookEvent
*) x
));
37175 static void *_p_wxListbookEventTo_p_wxEvent(void *x
) {
37176 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxListbookEvent
*) x
));
37178 static void *_p_wxChoicebookEventTo_p_wxEvent(void *x
) {
37179 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxChoicebookEvent
*) x
));
37181 static void *_p_wxTreebookEventTo_p_wxEvent(void *x
) {
37182 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxTreebookEvent
*) x
));
37184 static void *_p_wxToolbookEventTo_p_wxEvent(void *x
) {
37185 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxToolbookEvent
*) x
));
37187 static void *_p_wxHelpEventTo_p_wxEvent(void *x
) {
37188 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxHelpEvent
*) x
));
37190 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
37191 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
37193 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
37194 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
37196 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
37197 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
37199 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
37200 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
37202 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
37203 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
37205 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
37206 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
37208 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
37209 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
37211 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
37212 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
37214 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
37215 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
37217 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
37218 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
37220 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
37221 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
37223 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
37224 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
37226 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
37227 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
37229 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
37230 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
37232 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
37233 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
37235 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
37236 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
37238 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
37239 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
37241 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
37242 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
37244 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
37245 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
37247 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
37248 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
37250 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
37251 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
37253 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
37254 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
37256 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
37257 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
37259 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
37260 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
37262 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
37263 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
37265 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
37266 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
37268 static void *_p_wxSpinEventTo_p_wxEvent(void *x
) {
37269 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxSpinEvent
*) x
));
37271 static void *_p_wxComboBoxTo_p_wxItemContainer(void *x
) {
37272 return (void *)((wxItemContainer
*) ((wxComboBox
*) x
));
37274 static void *_p_wxDirFilterListCtrlTo_p_wxItemContainer(void *x
) {
37275 return (void *)((wxItemContainer
*) (wxControlWithItems
*)(wxChoice
*) ((wxDirFilterListCtrl
*) x
));
37277 static void *_p_wxChoiceTo_p_wxItemContainer(void *x
) {
37278 return (void *)((wxItemContainer
*) (wxControlWithItems
*) ((wxChoice
*) x
));
37280 static void *_p_wxControlWithItemsTo_p_wxItemContainer(void *x
) {
37281 return (void *)((wxItemContainer
*) ((wxControlWithItems
*) x
));
37283 static void *_p_wxListBoxTo_p_wxItemContainer(void *x
) {
37284 return (void *)((wxItemContainer
*) (wxControlWithItems
*) ((wxListBox
*) x
));
37286 static void *_p_wxCheckListBoxTo_p_wxItemContainer(void *x
) {
37287 return (void *)((wxItemContainer
*) (wxControlWithItems
*)(wxListBox
*) ((wxCheckListBox
*) x
));
37289 static void *_p_wxListViewTo_p_wxPyListCtrl(void *x
) {
37290 return (void *)((wxPyListCtrl
*) ((wxListView
*) x
));
37292 static void *_p_wxBookCtrlBaseTo_p_wxControl(void *x
) {
37293 return (void *)((wxControl
*) ((wxBookCtrlBase
*) x
));
37295 static void *_p_wxToolBarTo_p_wxControl(void *x
) {
37296 return (void *)((wxControl
*) (wxToolBarBase
*) ((wxToolBar
*) x
));
37298 static void *_p_wxToggleButtonTo_p_wxControl(void *x
) {
37299 return (void *)((wxControl
*) ((wxToggleButton
*) x
));
37301 static void *_p_wxRadioButtonTo_p_wxControl(void *x
) {
37302 return (void *)((wxControl
*) ((wxRadioButton
*) x
));
37304 static void *_p_wxToolbookTo_p_wxControl(void *x
) {
37305 return (void *)((wxControl
*) (wxBookCtrlBase
*) ((wxToolbook
*) x
));
37307 static void *_p_wxToolBarBaseTo_p_wxControl(void *x
) {
37308 return (void *)((wxControl
*) ((wxToolBarBase
*) x
));
37310 static void *_p_wxDirFilterListCtrlTo_p_wxControl(void *x
) {
37311 return (void *)((wxControl
*) (wxControlWithItems
*)(wxChoice
*) ((wxDirFilterListCtrl
*) x
));
37313 static void *_p_wxPyListCtrlTo_p_wxControl(void *x
) {
37314 return (void *)((wxControl
*) ((wxPyListCtrl
*) x
));
37316 static void *_p_wxComboBoxTo_p_wxControl(void *x
) {
37317 return (void *)((wxControl
*) ((wxComboBox
*) x
));
37319 static void *_p_wxPyControlTo_p_wxControl(void *x
) {
37320 return (void *)((wxControl
*) ((wxPyControl
*) x
));
37322 static void *_p_wxGenericDirCtrlTo_p_wxControl(void *x
) {
37323 return (void *)((wxControl
*) ((wxGenericDirCtrl
*) x
));
37325 static void *_p_wxScrollBarTo_p_wxControl(void *x
) {
37326 return (void *)((wxControl
*) ((wxScrollBar
*) x
));
37328 static void *_p_wxControlWithItemsTo_p_wxControl(void *x
) {
37329 return (void *)((wxControl
*) ((wxControlWithItems
*) x
));
37331 static void *_p_wxGaugeTo_p_wxControl(void *x
) {
37332 return (void *)((wxControl
*) ((wxGauge
*) x
));
37334 static void *_p_wxStaticLineTo_p_wxControl(void *x
) {
37335 return (void *)((wxControl
*) ((wxStaticLine
*) x
));
37337 static void *_p_wxChoicebookTo_p_wxControl(void *x
) {
37338 return (void *)((wxControl
*) (wxBookCtrlBase
*) ((wxChoicebook
*) x
));
37340 static void *_p_wxListbookTo_p_wxControl(void *x
) {
37341 return (void *)((wxControl
*) (wxBookCtrlBase
*) ((wxListbook
*) x
));
37343 static void *_p_wxPyTreeCtrlTo_p_wxControl(void *x
) {
37344 return (void *)((wxControl
*) ((wxPyTreeCtrl
*) x
));
37346 static void *_p_wxCheckBoxTo_p_wxControl(void *x
) {
37347 return (void *)((wxControl
*) ((wxCheckBox
*) x
));
37349 static void *_p_wxRadioBoxTo_p_wxControl(void *x
) {
37350 return (void *)((wxControl
*) ((wxRadioBox
*) x
));
37352 static void *_p_wxChoiceTo_p_wxControl(void *x
) {
37353 return (void *)((wxControl
*) (wxControlWithItems
*) ((wxChoice
*) x
));
37355 static void *_p_wxListBoxTo_p_wxControl(void *x
) {
37356 return (void *)((wxControl
*) (wxControlWithItems
*) ((wxListBox
*) x
));
37358 static void *_p_wxCheckListBoxTo_p_wxControl(void *x
) {
37359 return (void *)((wxControl
*) (wxControlWithItems
*)(wxListBox
*) ((wxCheckListBox
*) x
));
37361 static void *_p_wxListViewTo_p_wxControl(void *x
) {
37362 return (void *)((wxControl
*) (wxPyListCtrl
*) ((wxListView
*) x
));
37364 static void *_p_wxNotebookTo_p_wxControl(void *x
) {
37365 return (void *)((wxControl
*) (wxBookCtrlBase
*) ((wxNotebook
*) x
));
37367 static void *_p_wxStaticBitmapTo_p_wxControl(void *x
) {
37368 return (void *)((wxControl
*) ((wxStaticBitmap
*) x
));
37370 static void *_p_wxSpinCtrlTo_p_wxControl(void *x
) {
37371 return (void *)((wxControl
*) ((wxSpinCtrl
*) x
));
37373 static void *_p_wxStaticTextTo_p_wxControl(void *x
) {
37374 return (void *)((wxControl
*) ((wxStaticText
*) x
));
37376 static void *_p_wxStaticBoxTo_p_wxControl(void *x
) {
37377 return (void *)((wxControl
*) ((wxStaticBox
*) x
));
37379 static void *_p_wxSliderTo_p_wxControl(void *x
) {
37380 return (void *)((wxControl
*) ((wxSlider
*) x
));
37382 static void *_p_wxTreebookTo_p_wxControl(void *x
) {
37383 return (void *)((wxControl
*) (wxBookCtrlBase
*) ((wxTreebook
*) x
));
37385 static void *_p_wxSpinButtonTo_p_wxControl(void *x
) {
37386 return (void *)((wxControl
*) ((wxSpinButton
*) x
));
37388 static void *_p_wxButtonTo_p_wxControl(void *x
) {
37389 return (void *)((wxControl
*) ((wxButton
*) x
));
37391 static void *_p_wxBitmapButtonTo_p_wxControl(void *x
) {
37392 return (void *)((wxControl
*) (wxButton
*) ((wxBitmapButton
*) x
));
37394 static void *_p_wxContextHelpButtonTo_p_wxControl(void *x
) {
37395 return (void *)((wxControl
*) (wxButton
*)(wxBitmapButton
*) ((wxContextHelpButton
*) x
));
37397 static void *_p_wxDatePickerCtrlTo_p_wxControl(void *x
) {
37398 return (void *)((wxControl
*) ((wxDatePickerCtrl
*) x
));
37400 static void *_p_wxTextCtrlTo_p_wxControl(void *x
) {
37401 return (void *)((wxControl
*) ((wxTextCtrl
*) x
));
37403 static void *_p_wxToolBarTo_p_wxToolBarBase(void *x
) {
37404 return (void *)((wxToolBarBase
*) ((wxToolBar
*) x
));
37406 static void *_p_wxDirFilterListCtrlTo_p_wxChoice(void *x
) {
37407 return (void *)((wxChoice
*) ((wxDirFilterListCtrl
*) x
));
37409 static void *_p_wxBookCtrlBaseEventTo_p_wxNotifyEvent(void *x
) {
37410 return (void *)((wxNotifyEvent
*) ((wxBookCtrlBaseEvent
*) x
));
37412 static void *_p_wxTreeEventTo_p_wxNotifyEvent(void *x
) {
37413 return (void *)((wxNotifyEvent
*) ((wxTreeEvent
*) x
));
37415 static void *_p_wxListEventTo_p_wxNotifyEvent(void *x
) {
37416 return (void *)((wxNotifyEvent
*) ((wxListEvent
*) x
));
37418 static void *_p_wxSpinEventTo_p_wxNotifyEvent(void *x
) {
37419 return (void *)((wxNotifyEvent
*) ((wxSpinEvent
*) x
));
37421 static void *_p_wxNotebookEventTo_p_wxNotifyEvent(void *x
) {
37422 return (void *)((wxNotifyEvent
*) (wxBookCtrlBaseEvent
*) ((wxNotebookEvent
*) x
));
37424 static void *_p_wxListbookEventTo_p_wxNotifyEvent(void *x
) {
37425 return (void *)((wxNotifyEvent
*) (wxBookCtrlBaseEvent
*) ((wxListbookEvent
*) x
));
37427 static void *_p_wxChoicebookEventTo_p_wxNotifyEvent(void *x
) {
37428 return (void *)((wxNotifyEvent
*) (wxBookCtrlBaseEvent
*) ((wxChoicebookEvent
*) x
));
37430 static void *_p_wxTreebookEventTo_p_wxNotifyEvent(void *x
) {
37431 return (void *)((wxNotifyEvent
*) (wxBookCtrlBaseEvent
*) ((wxTreebookEvent
*) x
));
37433 static void *_p_wxToolbookEventTo_p_wxNotifyEvent(void *x
) {
37434 return (void *)((wxNotifyEvent
*) (wxBookCtrlBaseEvent
*) ((wxToolbookEvent
*) x
));
37436 static void *_p_wxChoicebookTo_p_wxBookCtrlBase(void *x
) {
37437 return (void *)((wxBookCtrlBase
*) ((wxChoicebook
*) x
));
37439 static void *_p_wxListbookTo_p_wxBookCtrlBase(void *x
) {
37440 return (void *)((wxBookCtrlBase
*) ((wxListbook
*) x
));
37442 static void *_p_wxToolbookTo_p_wxBookCtrlBase(void *x
) {
37443 return (void *)((wxBookCtrlBase
*) ((wxToolbook
*) x
));
37445 static void *_p_wxTreebookTo_p_wxBookCtrlBase(void *x
) {
37446 return (void *)((wxBookCtrlBase
*) ((wxTreebook
*) x
));
37448 static void *_p_wxNotebookTo_p_wxBookCtrlBase(void *x
) {
37449 return (void *)((wxBookCtrlBase
*) ((wxNotebook
*) x
));
37451 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
37452 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
37454 static void *_p_wxBookCtrlBaseTo_p_wxEvtHandler(void *x
) {
37455 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxBookCtrlBase
*) x
));
37457 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
37458 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
37460 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
37461 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
37463 static void *_p_wxToolBarTo_p_wxEvtHandler(void *x
) {
37464 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxToolBarBase
*) ((wxToolBar
*) x
));
37466 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
37467 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
37469 static void *_p_wxToggleButtonTo_p_wxEvtHandler(void *x
) {
37470 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxToggleButton
*) x
));
37472 static void *_p_wxRadioButtonTo_p_wxEvtHandler(void *x
) {
37473 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxRadioButton
*) x
));
37475 static void *_p_wxToolbookTo_p_wxEvtHandler(void *x
) {
37476 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxToolbook
*) x
));
37478 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
37479 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
37481 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
37482 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
37484 static void *_p_wxComboBoxTo_p_wxEvtHandler(void *x
) {
37485 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxComboBox
*) x
));
37487 static void *_p_wxToolBarBaseTo_p_wxEvtHandler(void *x
) {
37488 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxToolBarBase
*) x
));
37490 static void *_p_wxPyListCtrlTo_p_wxEvtHandler(void *x
) {
37491 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxPyListCtrl
*) x
));
37493 static void *_p_wxDirFilterListCtrlTo_p_wxEvtHandler(void *x
) {
37494 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxControlWithItems
*)(wxChoice
*) ((wxDirFilterListCtrl
*) x
));
37496 static void *_p_wxPyControlTo_p_wxEvtHandler(void *x
) {
37497 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxPyControl
*) x
));
37499 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
37500 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
37502 static void *_p_wxGenericDirCtrlTo_p_wxEvtHandler(void *x
) {
37503 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxGenericDirCtrl
*) x
));
37505 static void *_p_wxScrollBarTo_p_wxEvtHandler(void *x
) {
37506 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxScrollBar
*) x
));
37508 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
37509 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
37511 static void *_p_wxGaugeTo_p_wxEvtHandler(void *x
) {
37512 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxGauge
*) x
));
37514 static void *_p_wxStaticLineTo_p_wxEvtHandler(void *x
) {
37515 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxStaticLine
*) x
));
37517 static void *_p_wxChoicebookTo_p_wxEvtHandler(void *x
) {
37518 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxChoicebook
*) x
));
37520 static void *_p_wxListbookTo_p_wxEvtHandler(void *x
) {
37521 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxListbook
*) x
));
37523 static void *_p_wxPyTreeCtrlTo_p_wxEvtHandler(void *x
) {
37524 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxPyTreeCtrl
*) x
));
37526 static void *_p_wxCheckBoxTo_p_wxEvtHandler(void *x
) {
37527 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxCheckBox
*) x
));
37529 static void *_p_wxRadioBoxTo_p_wxEvtHandler(void *x
) {
37530 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxRadioBox
*) x
));
37532 static void *_p_wxCheckListBoxTo_p_wxEvtHandler(void *x
) {
37533 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxControlWithItems
*)(wxListBox
*) ((wxCheckListBox
*) x
));
37535 static void *_p_wxListBoxTo_p_wxEvtHandler(void *x
) {
37536 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxControlWithItems
*) ((wxListBox
*) x
));
37538 static void *_p_wxChoiceTo_p_wxEvtHandler(void *x
) {
37539 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxControlWithItems
*) ((wxChoice
*) x
));
37541 static void *_p_wxNotebookTo_p_wxEvtHandler(void *x
) {
37542 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxNotebook
*) x
));
37544 static void *_p_wxStaticBitmapTo_p_wxEvtHandler(void *x
) {
37545 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxStaticBitmap
*) x
));
37547 static void *_p_wxListViewTo_p_wxEvtHandler(void *x
) {
37548 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxPyListCtrl
*) ((wxListView
*) x
));
37550 static void *_p_wxSpinCtrlTo_p_wxEvtHandler(void *x
) {
37551 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxSpinCtrl
*) x
));
37553 static void *_p_wxStaticTextTo_p_wxEvtHandler(void *x
) {
37554 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxStaticText
*) x
));
37556 static void *_p_wxStaticBoxTo_p_wxEvtHandler(void *x
) {
37557 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxStaticBox
*) x
));
37559 static void *_p_wxSliderTo_p_wxEvtHandler(void *x
) {
37560 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxSlider
*) x
));
37562 static void *_p_wxTreebookTo_p_wxEvtHandler(void *x
) {
37563 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxTreebook
*) x
));
37565 static void *_p_wxSpinButtonTo_p_wxEvtHandler(void *x
) {
37566 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxSpinButton
*) x
));
37568 static void *_p_wxButtonTo_p_wxEvtHandler(void *x
) {
37569 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxButton
*) x
));
37571 static void *_p_wxBitmapButtonTo_p_wxEvtHandler(void *x
) {
37572 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxButton
*) ((wxBitmapButton
*) x
));
37574 static void *_p_wxContextHelpButtonTo_p_wxEvtHandler(void *x
) {
37575 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxButton
*)(wxBitmapButton
*) ((wxContextHelpButton
*) x
));
37577 static void *_p_wxDatePickerCtrlTo_p_wxEvtHandler(void *x
) {
37578 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxDatePickerCtrl
*) x
));
37580 static void *_p_wxTextCtrlTo_p_wxEvtHandler(void *x
) {
37581 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxTextCtrl
*) x
));
37583 static void *_p_wxCheckListBoxTo_p_wxListBox(void *x
) {
37584 return (void *)((wxListBox
*) ((wxCheckListBox
*) x
));
37586 static void *_p_wxBitmapButtonTo_p_wxButton(void *x
) {
37587 return (void *)((wxButton
*) ((wxBitmapButton
*) x
));
37589 static void *_p_wxContextHelpButtonTo_p_wxButton(void *x
) {
37590 return (void *)((wxButton
*) (wxBitmapButton
*) ((wxContextHelpButton
*) x
));
37592 static void *_p_wxContextHelpButtonTo_p_wxBitmapButton(void *x
) {
37593 return (void *)((wxBitmapButton
*) ((wxContextHelpButton
*) x
));
37595 static void *_p_wxSimpleHelpProviderTo_p_wxHelpProvider(void *x
) {
37596 return (void *)((wxHelpProvider
*) ((wxSimpleHelpProvider
*) x
));
37598 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
37599 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
37601 static void *_p_wxToolbookTo_p_wxObject(void *x
) {
37602 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxToolbook
*) x
));
37604 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
37605 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
37607 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
37608 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
37610 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
37611 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
37613 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
37614 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
37616 static void *_p_wxTextUrlEventTo_p_wxObject(void *x
) {
37617 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxTextUrlEvent
*) x
));
37619 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
37620 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
37622 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
37623 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
37625 static void *_p_wxSizerTo_p_wxObject(void *x
) {
37626 return (void *)((wxObject
*) ((wxSizer
*) x
));
37628 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
37629 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
37631 static void *_p_wxCheckBoxTo_p_wxObject(void *x
) {
37632 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxCheckBox
*) x
));
37634 static void *_p_wxPyTreeCtrlTo_p_wxObject(void *x
) {
37635 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxPyTreeCtrl
*) x
));
37637 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
37638 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
37640 static void *_p_wxEventTo_p_wxObject(void *x
) {
37641 return (void *)((wxObject
*) ((wxEvent
*) x
));
37643 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
37644 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
37646 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
37647 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
37649 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
37650 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
37652 static void *_p_wxGenericDirCtrlTo_p_wxObject(void *x
) {
37653 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxGenericDirCtrl
*) x
));
37655 static void *_p_wxPyListCtrlTo_p_wxObject(void *x
) {
37656 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxPyListCtrl
*) x
));
37658 static void *_p_wxDirFilterListCtrlTo_p_wxObject(void *x
) {
37659 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxControlWithItems
*)(wxChoice
*) ((wxDirFilterListCtrl
*) x
));
37661 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
37662 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
37664 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
37665 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
37667 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
37668 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
37670 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
37671 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
37673 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
37674 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
37676 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
37677 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
37679 static void *_p_wxStaticLineTo_p_wxObject(void *x
) {
37680 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxStaticLine
*) x
));
37682 static void *_p_wxControlTo_p_wxObject(void *x
) {
37683 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
37685 static void *_p_wxPyControlTo_p_wxObject(void *x
) {
37686 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxPyControl
*) x
));
37688 static void *_p_wxGaugeTo_p_wxObject(void *x
) {
37689 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxGauge
*) x
));
37691 static void *_p_wxRadioButtonTo_p_wxObject(void *x
) {
37692 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxRadioButton
*) x
));
37694 static void *_p_wxToggleButtonTo_p_wxObject(void *x
) {
37695 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxToggleButton
*) x
));
37697 static void *_p_wxToolBarBaseTo_p_wxObject(void *x
) {
37698 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxToolBarBase
*) x
));
37700 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
37701 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
37703 static void *_p_wxChoiceTo_p_wxObject(void *x
) {
37704 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxControlWithItems
*) ((wxChoice
*) x
));
37706 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
37707 return (void *)((wxObject
*) ((wxFSFile
*) x
));
37709 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
37710 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
37712 static void *_p_wxTreebookTo_p_wxObject(void *x
) {
37713 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxTreebook
*) x
));
37715 static void *_p_wxListViewTo_p_wxObject(void *x
) {
37716 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxPyListCtrl
*) ((wxListView
*) x
));
37718 static void *_p_wxTextCtrlTo_p_wxObject(void *x
) {
37719 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxTextCtrl
*) x
));
37721 static void *_p_wxNotebookTo_p_wxObject(void *x
) {
37722 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxNotebook
*) x
));
37724 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
37725 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
37727 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
37728 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
37730 static void *_p_wxChoicebookTo_p_wxObject(void *x
) {
37731 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxChoicebook
*) x
));
37733 static void *_p_wxListbookTo_p_wxObject(void *x
) {
37734 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxListbook
*) x
));
37736 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
37737 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
37739 static void *_p_wxStaticBitmapTo_p_wxObject(void *x
) {
37740 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxStaticBitmap
*) x
));
37742 static void *_p_wxSliderTo_p_wxObject(void *x
) {
37743 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxSlider
*) x
));
37745 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
37746 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
37748 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
37749 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
37751 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
37752 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
37754 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
37755 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
37757 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
37758 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
37760 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
37761 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
37763 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
37764 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
37766 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
37767 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
37769 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
37770 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
37772 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
37773 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
37775 static void *_p_wxStaticBoxTo_p_wxObject(void *x
) {
37776 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxStaticBox
*) x
));
37778 static void *_p_wxContextHelpTo_p_wxObject(void *x
) {
37779 return (void *)((wxObject
*) ((wxContextHelp
*) x
));
37781 static void *_p_wxBookCtrlBaseTo_p_wxObject(void *x
) {
37782 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxBookCtrlBase
*) x
));
37784 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
37785 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
37787 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
37788 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
37790 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
37791 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
37793 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
37794 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
37796 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
37797 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
37799 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
37800 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
37802 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
37803 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
37805 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
37806 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
37808 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
37809 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
37811 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
37812 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
37814 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
37815 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
37817 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
37818 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
37820 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
37821 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
37823 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
37824 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
37826 static void *_p_wxListEventTo_p_wxObject(void *x
) {
37827 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxListEvent
*) x
));
37829 static void *_p_wxListBoxTo_p_wxObject(void *x
) {
37830 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxControlWithItems
*) ((wxListBox
*) x
));
37832 static void *_p_wxCheckListBoxTo_p_wxObject(void *x
) {
37833 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxControlWithItems
*)(wxListBox
*) ((wxCheckListBox
*) x
));
37835 static void *_p_wxButtonTo_p_wxObject(void *x
) {
37836 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxButton
*) x
));
37838 static void *_p_wxBitmapButtonTo_p_wxObject(void *x
) {
37839 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxButton
*) ((wxBitmapButton
*) x
));
37841 static void *_p_wxSpinButtonTo_p_wxObject(void *x
) {
37842 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxSpinButton
*) x
));
37844 static void *_p_wxContextHelpButtonTo_p_wxObject(void *x
) {
37845 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxButton
*)(wxBitmapButton
*) ((wxContextHelpButton
*) x
));
37847 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
37848 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
37850 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
37851 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
37853 static void *_p_wxScrollBarTo_p_wxObject(void *x
) {
37854 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxScrollBar
*) x
));
37856 static void *_p_wxRadioBoxTo_p_wxObject(void *x
) {
37857 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxRadioBox
*) x
));
37859 static void *_p_wxComboBoxTo_p_wxObject(void *x
) {
37860 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxComboBox
*) x
));
37862 static void *_p_wxHelpEventTo_p_wxObject(void *x
) {
37863 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxHelpEvent
*) x
));
37865 static void *_p_wxListItemTo_p_wxObject(void *x
) {
37866 return (void *)((wxObject
*) ((wxListItem
*) x
));
37868 static void *_p_wxImageTo_p_wxObject(void *x
) {
37869 return (void *)((wxObject
*) ((wxImage
*) x
));
37871 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
37872 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
37874 static void *_p_wxSpinEventTo_p_wxObject(void *x
) {
37875 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxSpinEvent
*) x
));
37877 static void *_p_wxGenericDragImageTo_p_wxObject(void *x
) {
37878 return (void *)((wxObject
*) ((wxGenericDragImage
*) x
));
37880 static void *_p_wxSpinCtrlTo_p_wxObject(void *x
) {
37881 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxSpinCtrl
*) x
));
37883 static void *_p_wxNotebookEventTo_p_wxObject(void *x
) {
37884 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxNotebookEvent
*) x
));
37886 static void *_p_wxListbookEventTo_p_wxObject(void *x
) {
37887 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxListbookEvent
*) x
));
37889 static void *_p_wxChoicebookEventTo_p_wxObject(void *x
) {
37890 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxChoicebookEvent
*) x
));
37892 static void *_p_wxTreebookEventTo_p_wxObject(void *x
) {
37893 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxTreebookEvent
*) x
));
37895 static void *_p_wxToolbookEventTo_p_wxObject(void *x
) {
37896 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxToolbookEvent
*) x
));
37898 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
37899 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
37901 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
37902 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
37904 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
37905 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
37907 static void *_p_wxWindowTo_p_wxObject(void *x
) {
37908 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
37910 static void *_p_wxMenuTo_p_wxObject(void *x
) {
37911 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
37913 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
37914 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
37916 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
37917 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
37919 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
37920 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
37922 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
37923 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
37925 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
37926 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
37928 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
37929 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
37931 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
37932 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
37934 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
37935 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
37937 static void *_p_wxBookCtrlBaseEventTo_p_wxObject(void *x
) {
37938 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxBookCtrlBaseEvent
*) x
));
37940 static void *_p_wxTreeEventTo_p_wxObject(void *x
) {
37941 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxTreeEvent
*) x
));
37943 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
37944 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
37946 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
37947 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
37949 static void *_p_wxStaticTextTo_p_wxObject(void *x
) {
37950 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxStaticText
*) x
));
37952 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
37953 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
37955 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
37956 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
37958 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
37959 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
37961 static void *_p_wxDatePickerCtrlTo_p_wxObject(void *x
) {
37962 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxDatePickerCtrl
*) x
));
37964 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
37965 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
37967 static void *_p_wxToolBarToolBaseTo_p_wxObject(void *x
) {
37968 return (void *)((wxObject
*) ((wxToolBarToolBase
*) x
));
37970 static void *_p_wxToolBarTo_p_wxObject(void *x
) {
37971 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxToolBarBase
*) ((wxToolBar
*) x
));
37973 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
37974 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
37976 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
37977 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
37979 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
37980 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
37982 static void *_p_wxBookCtrlBaseTo_p_wxWindow(void *x
) {
37983 return (void *)((wxWindow
*) (wxControl
*) ((wxBookCtrlBase
*) x
));
37985 static void *_p_wxToolBarTo_p_wxWindow(void *x
) {
37986 return (void *)((wxWindow
*) (wxControl
*)(wxToolBarBase
*) ((wxToolBar
*) x
));
37988 static void *_p_wxToggleButtonTo_p_wxWindow(void *x
) {
37989 return (void *)((wxWindow
*) (wxControl
*) ((wxToggleButton
*) x
));
37991 static void *_p_wxRadioButtonTo_p_wxWindow(void *x
) {
37992 return (void *)((wxWindow
*) (wxControl
*) ((wxRadioButton
*) x
));
37994 static void *_p_wxToolbookTo_p_wxWindow(void *x
) {
37995 return (void *)((wxWindow
*) (wxControl
*)(wxBookCtrlBase
*) ((wxToolbook
*) x
));
37997 static void *_p_wxControlTo_p_wxWindow(void *x
) {
37998 return (void *)((wxWindow
*) ((wxControl
*) x
));
38000 static void *_p_wxToolBarBaseTo_p_wxWindow(void *x
) {
38001 return (void *)((wxWindow
*) (wxControl
*) ((wxToolBarBase
*) x
));
38003 static void *_p_wxPyListCtrlTo_p_wxWindow(void *x
) {
38004 return (void *)((wxWindow
*) (wxControl
*) ((wxPyListCtrl
*) x
));
38006 static void *_p_wxComboBoxTo_p_wxWindow(void *x
) {
38007 return (void *)((wxWindow
*) (wxControl
*) ((wxComboBox
*) x
));
38009 static void *_p_wxDirFilterListCtrlTo_p_wxWindow(void *x
) {
38010 return (void *)((wxWindow
*) (wxControl
*)(wxControlWithItems
*)(wxChoice
*) ((wxDirFilterListCtrl
*) x
));
38012 static void *_p_wxPyControlTo_p_wxWindow(void *x
) {
38013 return (void *)((wxWindow
*) (wxControl
*) ((wxPyControl
*) x
));
38015 static void *_p_wxGenericDirCtrlTo_p_wxWindow(void *x
) {
38016 return (void *)((wxWindow
*) (wxControl
*) ((wxGenericDirCtrl
*) x
));
38018 static void *_p_wxScrollBarTo_p_wxWindow(void *x
) {
38019 return (void *)((wxWindow
*) (wxControl
*) ((wxScrollBar
*) x
));
38021 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
38022 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
38024 static void *_p_wxGaugeTo_p_wxWindow(void *x
) {
38025 return (void *)((wxWindow
*) (wxControl
*) ((wxGauge
*) x
));
38027 static void *_p_wxStaticLineTo_p_wxWindow(void *x
) {
38028 return (void *)((wxWindow
*) (wxControl
*) ((wxStaticLine
*) x
));
38030 static void *_p_wxChoicebookTo_p_wxWindow(void *x
) {
38031 return (void *)((wxWindow
*) (wxControl
*)(wxBookCtrlBase
*) ((wxChoicebook
*) x
));
38033 static void *_p_wxListbookTo_p_wxWindow(void *x
) {
38034 return (void *)((wxWindow
*) (wxControl
*)(wxBookCtrlBase
*) ((wxListbook
*) x
));
38036 static void *_p_wxPyTreeCtrlTo_p_wxWindow(void *x
) {
38037 return (void *)((wxWindow
*) (wxControl
*) ((wxPyTreeCtrl
*) x
));
38039 static void *_p_wxCheckBoxTo_p_wxWindow(void *x
) {
38040 return (void *)((wxWindow
*) (wxControl
*) ((wxCheckBox
*) x
));
38042 static void *_p_wxRadioBoxTo_p_wxWindow(void *x
) {
38043 return (void *)((wxWindow
*) (wxControl
*) ((wxRadioBox
*) x
));
38045 static void *_p_wxCheckListBoxTo_p_wxWindow(void *x
) {
38046 return (void *)((wxWindow
*) (wxControl
*)(wxControlWithItems
*)(wxListBox
*) ((wxCheckListBox
*) x
));
38048 static void *_p_wxChoiceTo_p_wxWindow(void *x
) {
38049 return (void *)((wxWindow
*) (wxControl
*)(wxControlWithItems
*) ((wxChoice
*) x
));
38051 static void *_p_wxListBoxTo_p_wxWindow(void *x
) {
38052 return (void *)((wxWindow
*) (wxControl
*)(wxControlWithItems
*) ((wxListBox
*) x
));
38054 static void *_p_wxListViewTo_p_wxWindow(void *x
) {
38055 return (void *)((wxWindow
*) (wxControl
*)(wxPyListCtrl
*) ((wxListView
*) x
));
38057 static void *_p_wxNotebookTo_p_wxWindow(void *x
) {
38058 return (void *)((wxWindow
*) (wxControl
*)(wxBookCtrlBase
*) ((wxNotebook
*) x
));
38060 static void *_p_wxStaticBitmapTo_p_wxWindow(void *x
) {
38061 return (void *)((wxWindow
*) (wxControl
*) ((wxStaticBitmap
*) x
));
38063 static void *_p_wxSpinCtrlTo_p_wxWindow(void *x
) {
38064 return (void *)((wxWindow
*) (wxControl
*) ((wxSpinCtrl
*) x
));
38066 static void *_p_wxStaticTextTo_p_wxWindow(void *x
) {
38067 return (void *)((wxWindow
*) (wxControl
*) ((wxStaticText
*) x
));
38069 static void *_p_wxStaticBoxTo_p_wxWindow(void *x
) {
38070 return (void *)((wxWindow
*) (wxControl
*) ((wxStaticBox
*) x
));
38072 static void *_p_wxSliderTo_p_wxWindow(void *x
) {
38073 return (void *)((wxWindow
*) (wxControl
*) ((wxSlider
*) x
));
38075 static void *_p_wxTreebookTo_p_wxWindow(void *x
) {
38076 return (void *)((wxWindow
*) (wxControl
*)(wxBookCtrlBase
*) ((wxTreebook
*) x
));
38078 static void *_p_wxSpinButtonTo_p_wxWindow(void *x
) {
38079 return (void *)((wxWindow
*) (wxControl
*) ((wxSpinButton
*) x
));
38081 static void *_p_wxButtonTo_p_wxWindow(void *x
) {
38082 return (void *)((wxWindow
*) (wxControl
*) ((wxButton
*) x
));
38084 static void *_p_wxBitmapButtonTo_p_wxWindow(void *x
) {
38085 return (void *)((wxWindow
*) (wxControl
*)(wxButton
*) ((wxBitmapButton
*) x
));
38087 static void *_p_wxContextHelpButtonTo_p_wxWindow(void *x
) {
38088 return (void *)((wxWindow
*) (wxControl
*)(wxButton
*)(wxBitmapButton
*) ((wxContextHelpButton
*) x
));
38090 static void *_p_wxDatePickerCtrlTo_p_wxWindow(void *x
) {
38091 return (void *)((wxWindow
*) (wxControl
*) ((wxDatePickerCtrl
*) x
));
38093 static void *_p_wxTextCtrlTo_p_wxWindow(void *x
) {
38094 return (void *)((wxWindow
*) (wxControl
*) ((wxTextCtrl
*) x
));
38096 static void *_p_wxNotebookEventTo_p_wxBookCtrlBaseEvent(void *x
) {
38097 return (void *)((wxBookCtrlBaseEvent
*) ((wxNotebookEvent
*) x
));
38099 static void *_p_wxListbookEventTo_p_wxBookCtrlBaseEvent(void *x
) {
38100 return (void *)((wxBookCtrlBaseEvent
*) ((wxListbookEvent
*) x
));
38102 static void *_p_wxChoicebookEventTo_p_wxBookCtrlBaseEvent(void *x
) {
38103 return (void *)((wxBookCtrlBaseEvent
*) ((wxChoicebookEvent
*) x
));
38105 static void *_p_wxTreebookEventTo_p_wxBookCtrlBaseEvent(void *x
) {
38106 return (void *)((wxBookCtrlBaseEvent
*) ((wxTreebookEvent
*) x
));
38108 static void *_p_wxToolbookEventTo_p_wxBookCtrlBaseEvent(void *x
) {
38109 return (void *)((wxBookCtrlBaseEvent
*) ((wxToolbookEvent
*) x
));
38111 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) {
38112 return (void *)((wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
38114 static void *_p_wxTextUrlEventTo_p_wxCommandEvent(void *x
) {
38115 return (void *)((wxCommandEvent
*) ((wxTextUrlEvent
*) x
));
38117 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) {
38118 return (void *)((wxCommandEvent
*) ((wxScrollEvent
*) x
));
38120 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) {
38121 return (void *)((wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
38123 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) {
38124 return (void *)((wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
38126 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) {
38127 return (void *)((wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
38129 static void *_p_wxListbookEventTo_p_wxCommandEvent(void *x
) {
38130 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxListbookEvent
*) x
));
38132 static void *_p_wxNotebookEventTo_p_wxCommandEvent(void *x
) {
38133 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxNotebookEvent
*) x
));
38135 static void *_p_wxChoicebookEventTo_p_wxCommandEvent(void *x
) {
38136 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxChoicebookEvent
*) x
));
38138 static void *_p_wxTreebookEventTo_p_wxCommandEvent(void *x
) {
38139 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxTreebookEvent
*) x
));
38141 static void *_p_wxToolbookEventTo_p_wxCommandEvent(void *x
) {
38142 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxToolbookEvent
*) x
));
38144 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) {
38145 return (void *)((wxCommandEvent
*) ((wxDateEvent
*) x
));
38147 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) {
38148 return (void *)((wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
38150 static void *_p_wxListEventTo_p_wxCommandEvent(void *x
) {
38151 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxListEvent
*) x
));
38153 static void *_p_wxBookCtrlBaseEventTo_p_wxCommandEvent(void *x
) {
38154 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxBookCtrlBaseEvent
*) x
));
38156 static void *_p_wxTreeEventTo_p_wxCommandEvent(void *x
) {
38157 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxTreeEvent
*) x
));
38159 static void *_p_wxSpinEventTo_p_wxCommandEvent(void *x
) {
38160 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxSpinEvent
*) x
));
38162 static void *_p_wxHelpEventTo_p_wxCommandEvent(void *x
) {
38163 return (void *)((wxCommandEvent
*) ((wxHelpEvent
*) x
));
38165 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) {
38166 return (void *)((wxCommandEvent
*) ((wxNotifyEvent
*) x
));
38168 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) {
38169 return (void *)((wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
38171 static void *_p_wxDirFilterListCtrlTo_p_wxControlWithItems(void *x
) {
38172 return (void *)((wxControlWithItems
*) (wxChoice
*) ((wxDirFilterListCtrl
*) x
));
38174 static void *_p_wxChoiceTo_p_wxControlWithItems(void *x
) {
38175 return (void *)((wxControlWithItems
*) ((wxChoice
*) x
));
38177 static void *_p_wxListBoxTo_p_wxControlWithItems(void *x
) {
38178 return (void *)((wxControlWithItems
*) ((wxListBox
*) x
));
38180 static void *_p_wxCheckListBoxTo_p_wxControlWithItems(void *x
) {
38181 return (void *)((wxControlWithItems
*) (wxListBox
*) ((wxCheckListBox
*) x
));
38183 static void *_p_wxPyValidatorTo_p_wxValidator(void *x
) {
38184 return (void *)((wxValidator
*) ((wxPyValidator
*) x
));
38186 static swig_type_info _swigt__p_bool
= {"_p_bool", "bool *", 0, 0, 0};
38187 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, 0};
38188 static swig_type_info _swigt__p_form_ops_t
= {"_p_form_ops_t", "enum form_ops_t *|form_ops_t *", 0, 0, 0};
38189 static swig_type_info _swigt__p_int
= {"_p_int", "int *", 0, 0, 0};
38190 static swig_type_info _swigt__p_long
= {"_p_long", "long *", 0, 0, 0};
38191 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, 0};
38192 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, 0};
38193 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxUIntPtr *", 0, 0, 0};
38194 static swig_type_info _swigt__p_void
= {"_p_void", "void *", 0, 0, 0};
38195 static swig_type_info _swigt__p_wxArrayInt
= {"_p_wxArrayInt", "wxArrayInt *", 0, 0, 0};
38196 static swig_type_info _swigt__p_wxArrayString
= {"_p_wxArrayString", "wxArrayString *", 0, 0, 0};
38197 static swig_type_info _swigt__p_wxBitmap
= {"_p_wxBitmap", "wxBitmap *", 0, 0, 0};
38198 static swig_type_info _swigt__p_wxBitmapButton
= {"_p_wxBitmapButton", "wxBitmapButton *", 0, 0, 0};
38199 static swig_type_info _swigt__p_wxBookCtrlBase
= {"_p_wxBookCtrlBase", "wxBookCtrlBase *", 0, 0, 0};
38200 static swig_type_info _swigt__p_wxBookCtrlBaseEvent
= {"_p_wxBookCtrlBaseEvent", "wxBookCtrlBaseEvent *", 0, 0, 0};
38201 static swig_type_info _swigt__p_wxButton
= {"_p_wxButton", "wxButton *", 0, 0, 0};
38202 static swig_type_info _swigt__p_wxCheckBox
= {"_p_wxCheckBox", "wxCheckBox *", 0, 0, 0};
38203 static swig_type_info _swigt__p_wxCheckListBox
= {"_p_wxCheckListBox", "wxCheckListBox *", 0, 0, 0};
38204 static swig_type_info _swigt__p_wxChoice
= {"_p_wxChoice", "wxChoice *", 0, 0, 0};
38205 static swig_type_info _swigt__p_wxChoicebook
= {"_p_wxChoicebook", "wxChoicebook *", 0, 0, 0};
38206 static swig_type_info _swigt__p_wxChoicebookEvent
= {"_p_wxChoicebookEvent", "wxChoicebookEvent *", 0, 0, 0};
38207 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, 0};
38208 static swig_type_info _swigt__p_wxComboBox
= {"_p_wxComboBox", "wxComboBox *", 0, 0, 0};
38209 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", "wxCommandEvent *", 0, 0, 0};
38210 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0};
38211 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0};
38212 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0};
38213 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0};
38214 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0};
38215 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0};
38216 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0};
38217 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0};
38218 static swig_type_info _swigt__p_wxContextHelp
= {"_p_wxContextHelp", "wxContextHelp *", 0, 0, 0};
38219 static swig_type_info _swigt__p_wxContextHelpButton
= {"_p_wxContextHelpButton", "wxContextHelpButton *", 0, 0, 0};
38220 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", "wxControl *", 0, 0, 0};
38221 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", "wxControlWithItems *", 0, 0, 0};
38222 static swig_type_info _swigt__p_wxCursor
= {"_p_wxCursor", "wxCursor *", 0, 0, 0};
38223 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, 0};
38224 static swig_type_info _swigt__p_wxDatePickerCtrl
= {"_p_wxDatePickerCtrl", "wxDatePickerCtrl *", 0, 0, 0};
38225 static swig_type_info _swigt__p_wxDateTime
= {"_p_wxDateTime", "wxDateTime *", 0, 0, 0};
38226 static swig_type_info _swigt__p_wxDirFilterListCtrl
= {"_p_wxDirFilterListCtrl", "wxDirFilterListCtrl *", 0, 0, 0};
38227 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, 0};
38228 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, 0};
38229 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0};
38230 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0};
38231 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0};
38232 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0};
38233 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0};
38234 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0};
38235 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0};
38236 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0};
38237 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0};
38238 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0};
38239 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0};
38240 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0};
38241 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0};
38242 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0};
38243 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0};
38244 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0};
38245 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0};
38246 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0};
38247 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0};
38248 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0};
38249 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0};
38250 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0};
38251 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0};
38252 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", 0, 0, 0, 0};
38253 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, 0};
38254 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", 0, 0, 0, 0};
38255 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0};
38256 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0};
38257 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", 0, 0, 0, 0};
38258 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, 0};
38259 static swig_type_info _swigt__p_wxGauge
= {"_p_wxGauge", "wxGauge *", 0, 0, 0};
38260 static swig_type_info _swigt__p_wxGenericDirCtrl
= {"_p_wxGenericDirCtrl", "wxGenericDirCtrl *", 0, 0, 0};
38261 static swig_type_info _swigt__p_wxGenericDragImage
= {"_p_wxGenericDragImage", "wxGenericDragImage *", 0, 0, 0};
38262 static swig_type_info _swigt__p_wxHelpEvent
= {"_p_wxHelpEvent", "wxHelpEvent *", 0, 0, 0};
38263 static swig_type_info _swigt__p_wxHelpProvider
= {"_p_wxHelpProvider", "wxHelpProvider *", 0, 0, 0};
38264 static swig_type_info _swigt__p_wxIcon
= {"_p_wxIcon", "wxIcon *", 0, 0, 0};
38265 static swig_type_info _swigt__p_wxImageList
= {"_p_wxImageList", "wxImageList *", 0, 0, 0};
38266 static swig_type_info _swigt__p_wxItemContainer
= {"_p_wxItemContainer", "wxItemContainer *", 0, 0, 0};
38267 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", "wxKeyEvent *", 0, 0, 0};
38268 static swig_type_info _swigt__p_wxListBox
= {"_p_wxListBox", "wxListBox *", 0, 0, 0};
38269 static swig_type_info _swigt__p_wxListEvent
= {"_p_wxListEvent", "wxListEvent *", 0, 0, 0};
38270 static swig_type_info _swigt__p_wxListItem
= {"_p_wxListItem", "wxListItem *", 0, 0, 0};
38271 static swig_type_info _swigt__p_wxListItemAttr
= {"_p_wxListItemAttr", "wxListItemAttr *", 0, 0, 0};
38272 static swig_type_info _swigt__p_wxListView
= {"_p_wxListView", "wxListView *", 0, 0, 0};
38273 static swig_type_info _swigt__p_wxListbook
= {"_p_wxListbook", "wxListbook *", 0, 0, 0};
38274 static swig_type_info _swigt__p_wxListbookEvent
= {"_p_wxListbookEvent", "wxListbookEvent *", 0, 0, 0};
38275 static swig_type_info _swigt__p_wxMemoryDC
= {"_p_wxMemoryDC", "wxMemoryDC *", 0, 0, 0};
38276 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", "wxMouseEvent *", 0, 0, 0};
38277 static swig_type_info _swigt__p_wxNotebook
= {"_p_wxNotebook", "wxNotebook *", 0, 0, 0};
38278 static swig_type_info _swigt__p_wxNotebookEvent
= {"_p_wxNotebookEvent", "wxNotebookEvent *", 0, 0, 0};
38279 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", "wxNotifyEvent *", 0, 0, 0};
38280 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, 0};
38281 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0};
38282 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0};
38283 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", 0, 0, 0, 0};
38284 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0};
38285 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0};
38286 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0};
38287 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", 0, 0, 0, 0};
38288 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0};
38289 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0};
38290 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0};
38291 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0};
38292 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0};
38293 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0};
38294 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0};
38295 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0};
38296 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0};
38297 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0};
38298 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0};
38299 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0};
38300 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0};
38301 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0};
38302 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0};
38303 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0};
38304 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0};
38305 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0};
38306 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0};
38307 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0};
38308 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0};
38309 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0};
38310 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", 0, 0, 0, 0};
38311 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, 0};
38312 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, 0};
38313 static swig_type_info _swigt__p_wxPyControl
= {"_p_wxPyControl", "wxPyControl *", 0, 0, 0};
38314 static swig_type_info _swigt__p_wxPyListCtrl
= {"_p_wxPyListCtrl", "wxPyListCtrl *", 0, 0, 0};
38315 static swig_type_info _swigt__p_wxPyTreeCtrl
= {"_p_wxPyTreeCtrl", "wxPyTreeCtrl *", 0, 0, 0};
38316 static swig_type_info _swigt__p_wxPyTreeItemData
= {"_p_wxPyTreeItemData", "wxPyTreeItemData *", 0, 0, 0};
38317 static swig_type_info _swigt__p_wxRadioBox
= {"_p_wxRadioBox", "wxRadioBox *", 0, 0, 0};
38318 static swig_type_info _swigt__p_wxRadioButton
= {"_p_wxRadioButton", "wxRadioButton *", 0, 0, 0};
38319 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, 0};
38320 static swig_type_info _swigt__p_wxScrollBar
= {"_p_wxScrollBar", "wxScrollBar *", 0, 0, 0};
38321 static swig_type_info _swigt__p_wxSimpleHelpProvider
= {"_p_wxSimpleHelpProvider", "wxSimpleHelpProvider *", 0, 0, 0};
38322 static swig_type_info _swigt__p_wxSize
= {"_p_wxSize", "wxSize *", 0, 0, 0};
38323 static swig_type_info _swigt__p_wxSlider
= {"_p_wxSlider", "wxSlider *", 0, 0, 0};
38324 static swig_type_info _swigt__p_wxSpinButton
= {"_p_wxSpinButton", "wxSpinButton *", 0, 0, 0};
38325 static swig_type_info _swigt__p_wxSpinCtrl
= {"_p_wxSpinCtrl", "wxSpinCtrl *", 0, 0, 0};
38326 static swig_type_info _swigt__p_wxSpinEvent
= {"_p_wxSpinEvent", "wxSpinEvent *", 0, 0, 0};
38327 static swig_type_info _swigt__p_wxStaticBitmap
= {"_p_wxStaticBitmap", "wxStaticBitmap *", 0, 0, 0};
38328 static swig_type_info _swigt__p_wxStaticBox
= {"_p_wxStaticBox", "wxStaticBox *", 0, 0, 0};
38329 static swig_type_info _swigt__p_wxStaticLine
= {"_p_wxStaticLine", "wxStaticLine *", 0, 0, 0};
38330 static swig_type_info _swigt__p_wxStaticText
= {"_p_wxStaticText", "wxStaticText *", 0, 0, 0};
38331 static swig_type_info _swigt__p_wxString
= {"_p_wxString", "wxString *", 0, 0, 0};
38332 static swig_type_info _swigt__p_wxTextAttr
= {"_p_wxTextAttr", "wxTextAttr *", 0, 0, 0};
38333 static swig_type_info _swigt__p_wxTextCtrl
= {"_p_wxTextCtrl", "wxTextCtrl *", 0, 0, 0};
38334 static swig_type_info _swigt__p_wxTextUrlEvent
= {"_p_wxTextUrlEvent", "wxTextUrlEvent *", 0, 0, 0};
38335 static swig_type_info _swigt__p_wxToggleButton
= {"_p_wxToggleButton", "wxToggleButton *", 0, 0, 0};
38336 static swig_type_info _swigt__p_wxToolBar
= {"_p_wxToolBar", "wxToolBar *", 0, 0, 0};
38337 static swig_type_info _swigt__p_wxToolBarBase
= {"_p_wxToolBarBase", "wxToolBarBase *", 0, 0, 0};
38338 static swig_type_info _swigt__p_wxToolBarToolBase
= {"_p_wxToolBarToolBase", "wxToolBarToolBase *", 0, 0, 0};
38339 static swig_type_info _swigt__p_wxToolbook
= {"_p_wxToolbook", "wxToolbook *", 0, 0, 0};
38340 static swig_type_info _swigt__p_wxToolbookEvent
= {"_p_wxToolbookEvent", "wxToolbookEvent *", 0, 0, 0};
38341 static swig_type_info _swigt__p_wxTreeCtrl
= {"_p_wxTreeCtrl", "wxTreeCtrl *", 0, 0, 0};
38342 static swig_type_info _swigt__p_wxTreeEvent
= {"_p_wxTreeEvent", "wxTreeEvent *", 0, 0, 0};
38343 static swig_type_info _swigt__p_wxTreeItemId
= {"_p_wxTreeItemId", "wxTreeItemId *", 0, 0, 0};
38344 static swig_type_info _swigt__p_wxTreebook
= {"_p_wxTreebook", "wxTreebook *", 0, 0, 0};
38345 static swig_type_info _swigt__p_wxTreebookEvent
= {"_p_wxTreebookEvent", "wxTreebookEvent *", 0, 0, 0};
38346 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", "wxValidator *", 0, 0, 0};
38347 static swig_type_info _swigt__p_wxVisualAttributes
= {"_p_wxVisualAttributes", "wxVisualAttributes *", 0, 0, 0};
38348 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, 0};
38349 static swig_type_info _swigt__ptrdiff_t
= {"_ptrdiff_t", "ptrdiff_t", 0, 0, 0};
38350 static swig_type_info _swigt__std__ptrdiff_t
= {"_std__ptrdiff_t", "std::ptrdiff_t", 0, 0, 0};
38351 static swig_type_info _swigt__unsigned_int
= {"_unsigned_int", "unsigned int|std::size_t", 0, 0, 0};
38353 static swig_type_info
*swig_type_initial
[] = {
38356 &_swigt__p_form_ops_t
,
38359 &_swigt__p_unsigned_char
,
38360 &_swigt__p_unsigned_int
,
38361 &_swigt__p_unsigned_long
,
38363 &_swigt__p_wxANIHandler
,
38364 &_swigt__p_wxAcceleratorTable
,
38365 &_swigt__p_wxActivateEvent
,
38366 &_swigt__p_wxArrayInt
,
38367 &_swigt__p_wxArrayString
,
38368 &_swigt__p_wxBMPHandler
,
38369 &_swigt__p_wxBitmap
,
38370 &_swigt__p_wxBitmapButton
,
38371 &_swigt__p_wxBookCtrlBase
,
38372 &_swigt__p_wxBookCtrlBaseEvent
,
38373 &_swigt__p_wxBoxSizer
,
38374 &_swigt__p_wxButton
,
38375 &_swigt__p_wxCURHandler
,
38376 &_swigt__p_wxCheckBox
,
38377 &_swigt__p_wxCheckListBox
,
38378 &_swigt__p_wxChildFocusEvent
,
38379 &_swigt__p_wxChoice
,
38380 &_swigt__p_wxChoicebook
,
38381 &_swigt__p_wxChoicebookEvent
,
38382 &_swigt__p_wxCloseEvent
,
38383 &_swigt__p_wxColour
,
38384 &_swigt__p_wxComboBox
,
38385 &_swigt__p_wxCommandEvent
,
38386 &_swigt__p_wxContextHelp
,
38387 &_swigt__p_wxContextHelpButton
,
38388 &_swigt__p_wxContextMenuEvent
,
38389 &_swigt__p_wxControl
,
38390 &_swigt__p_wxControlWithItems
,
38391 &_swigt__p_wxCursor
,
38393 &_swigt__p_wxDateEvent
,
38394 &_swigt__p_wxDatePickerCtrl
,
38395 &_swigt__p_wxDateTime
,
38396 &_swigt__p_wxDirFilterListCtrl
,
38397 &_swigt__p_wxDisplayChangedEvent
,
38398 &_swigt__p_wxDropFilesEvent
,
38399 &_swigt__p_wxDuplexMode
,
38400 &_swigt__p_wxEraseEvent
,
38401 &_swigt__p_wxEvent
,
38402 &_swigt__p_wxEvtHandler
,
38403 &_swigt__p_wxFSFile
,
38404 &_swigt__p_wxFileSystem
,
38405 &_swigt__p_wxFlexGridSizer
,
38406 &_swigt__p_wxFocusEvent
,
38408 &_swigt__p_wxGBSizerItem
,
38409 &_swigt__p_wxGIFHandler
,
38410 &_swigt__p_wxGauge
,
38411 &_swigt__p_wxGenericDirCtrl
,
38412 &_swigt__p_wxGenericDragImage
,
38413 &_swigt__p_wxGridBagSizer
,
38414 &_swigt__p_wxGridSizer
,
38415 &_swigt__p_wxHelpEvent
,
38416 &_swigt__p_wxHelpProvider
,
38417 &_swigt__p_wxICOHandler
,
38419 &_swigt__p_wxIconizeEvent
,
38420 &_swigt__p_wxIdleEvent
,
38421 &_swigt__p_wxImage
,
38422 &_swigt__p_wxImageHandler
,
38423 &_swigt__p_wxImageList
,
38424 &_swigt__p_wxIndividualLayoutConstraint
,
38425 &_swigt__p_wxInitDialogEvent
,
38426 &_swigt__p_wxItemContainer
,
38427 &_swigt__p_wxJPEGHandler
,
38428 &_swigt__p_wxKeyEvent
,
38429 &_swigt__p_wxLayoutConstraints
,
38430 &_swigt__p_wxListBox
,
38431 &_swigt__p_wxListEvent
,
38432 &_swigt__p_wxListItem
,
38433 &_swigt__p_wxListItemAttr
,
38434 &_swigt__p_wxListView
,
38435 &_swigt__p_wxListbook
,
38436 &_swigt__p_wxListbookEvent
,
38437 &_swigt__p_wxMaximizeEvent
,
38438 &_swigt__p_wxMemoryDC
,
38440 &_swigt__p_wxMenuBar
,
38441 &_swigt__p_wxMenuEvent
,
38442 &_swigt__p_wxMenuItem
,
38443 &_swigt__p_wxMouseCaptureChangedEvent
,
38444 &_swigt__p_wxMouseEvent
,
38445 &_swigt__p_wxMoveEvent
,
38446 &_swigt__p_wxNavigationKeyEvent
,
38447 &_swigt__p_wxNcPaintEvent
,
38448 &_swigt__p_wxNotebook
,
38449 &_swigt__p_wxNotebookEvent
,
38450 &_swigt__p_wxNotifyEvent
,
38451 &_swigt__p_wxObject
,
38452 &_swigt__p_wxPCXHandler
,
38453 &_swigt__p_wxPNGHandler
,
38454 &_swigt__p_wxPNMHandler
,
38455 &_swigt__p_wxPaintEvent
,
38456 &_swigt__p_wxPaletteChangedEvent
,
38457 &_swigt__p_wxPaperSize
,
38458 &_swigt__p_wxPoint
,
38459 &_swigt__p_wxPyApp
,
38460 &_swigt__p_wxPyCommandEvent
,
38461 &_swigt__p_wxPyControl
,
38462 &_swigt__p_wxPyEvent
,
38463 &_swigt__p_wxPyImageHandler
,
38464 &_swigt__p_wxPyListCtrl
,
38465 &_swigt__p_wxPySizer
,
38466 &_swigt__p_wxPyTreeCtrl
,
38467 &_swigt__p_wxPyTreeItemData
,
38468 &_swigt__p_wxPyValidator
,
38469 &_swigt__p_wxQueryNewPaletteEvent
,
38470 &_swigt__p_wxRadioBox
,
38471 &_swigt__p_wxRadioButton
,
38473 &_swigt__p_wxScrollBar
,
38474 &_swigt__p_wxScrollEvent
,
38475 &_swigt__p_wxScrollWinEvent
,
38476 &_swigt__p_wxSetCursorEvent
,
38477 &_swigt__p_wxShowEvent
,
38478 &_swigt__p_wxSimpleHelpProvider
,
38480 &_swigt__p_wxSizeEvent
,
38481 &_swigt__p_wxSizer
,
38482 &_swigt__p_wxSizerItem
,
38483 &_swigt__p_wxSlider
,
38484 &_swigt__p_wxSpinButton
,
38485 &_swigt__p_wxSpinCtrl
,
38486 &_swigt__p_wxSpinEvent
,
38487 &_swigt__p_wxStaticBitmap
,
38488 &_swigt__p_wxStaticBox
,
38489 &_swigt__p_wxStaticBoxSizer
,
38490 &_swigt__p_wxStaticLine
,
38491 &_swigt__p_wxStaticText
,
38492 &_swigt__p_wxStdDialogButtonSizer
,
38493 &_swigt__p_wxString
,
38494 &_swigt__p_wxSysColourChangedEvent
,
38495 &_swigt__p_wxTIFFHandler
,
38496 &_swigt__p_wxTextAttr
,
38497 &_swigt__p_wxTextCtrl
,
38498 &_swigt__p_wxTextUrlEvent
,
38499 &_swigt__p_wxToggleButton
,
38500 &_swigt__p_wxToolBar
,
38501 &_swigt__p_wxToolBarBase
,
38502 &_swigt__p_wxToolBarToolBase
,
38503 &_swigt__p_wxToolbook
,
38504 &_swigt__p_wxToolbookEvent
,
38505 &_swigt__p_wxTreeCtrl
,
38506 &_swigt__p_wxTreeEvent
,
38507 &_swigt__p_wxTreeItemId
,
38508 &_swigt__p_wxTreebook
,
38509 &_swigt__p_wxTreebookEvent
,
38510 &_swigt__p_wxUpdateUIEvent
,
38511 &_swigt__p_wxValidator
,
38512 &_swigt__p_wxVisualAttributes
,
38513 &_swigt__p_wxWindow
,
38514 &_swigt__p_wxWindowCreateEvent
,
38515 &_swigt__p_wxWindowDestroyEvent
,
38516 &_swigt__p_wxXPMHandler
,
38517 &_swigt__ptrdiff_t
,
38518 &_swigt__std__ptrdiff_t
,
38519 &_swigt__unsigned_int
,
38522 static swig_cast_info _swigc__p_bool
[] = { {&_swigt__p_bool
, 0, 0, 0},{0, 0, 0, 0}};
38523 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
38524 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
38525 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
38526 static swig_cast_info _swigc__p_long
[] = { {&_swigt__p_long
, 0, 0, 0},{0, 0, 0, 0}};
38527 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
38528 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
38529 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
38530 static swig_cast_info _swigc__p_void
[] = { {&_swigt__p_void
, 0, 0, 0},{0, 0, 0, 0}};
38531 static swig_cast_info _swigc__p_wxArrayInt
[] = { {&_swigt__p_wxArrayInt
, 0, 0, 0},{0, 0, 0, 0}};
38532 static swig_cast_info _swigc__p_wxArrayString
[] = { {&_swigt__p_wxArrayString
, 0, 0, 0},{0, 0, 0, 0}};
38533 static swig_cast_info _swigc__p_wxBitmap
[] = { {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}};
38534 static swig_cast_info _swigc__p_wxBitmapButton
[] = { {&_swigt__p_wxBitmapButton
, 0, 0, 0}, {&_swigt__p_wxContextHelpButton
, _p_wxContextHelpButtonTo_p_wxBitmapButton
, 0, 0},{0, 0, 0, 0}};
38535 static swig_cast_info _swigc__p_wxBookCtrlBase
[] = { {&_swigt__p_wxChoicebook
, _p_wxChoicebookTo_p_wxBookCtrlBase
, 0, 0}, {&_swigt__p_wxListbook
, _p_wxListbookTo_p_wxBookCtrlBase
, 0, 0}, {&_swigt__p_wxBookCtrlBase
, 0, 0, 0}, {&_swigt__p_wxToolbook
, _p_wxToolbookTo_p_wxBookCtrlBase
, 0, 0}, {&_swigt__p_wxTreebook
, _p_wxTreebookTo_p_wxBookCtrlBase
, 0, 0}, {&_swigt__p_wxNotebook
, _p_wxNotebookTo_p_wxBookCtrlBase
, 0, 0},{0, 0, 0, 0}};
38536 static swig_cast_info _swigc__p_wxBookCtrlBaseEvent
[] = { {&_swigt__p_wxBookCtrlBaseEvent
, 0, 0, 0}, {&_swigt__p_wxNotebookEvent
, _p_wxNotebookEventTo_p_wxBookCtrlBaseEvent
, 0, 0}, {&_swigt__p_wxListbookEvent
, _p_wxListbookEventTo_p_wxBookCtrlBaseEvent
, 0, 0}, {&_swigt__p_wxChoicebookEvent
, _p_wxChoicebookEventTo_p_wxBookCtrlBaseEvent
, 0, 0}, {&_swigt__p_wxTreebookEvent
, _p_wxTreebookEventTo_p_wxBookCtrlBaseEvent
, 0, 0}, {&_swigt__p_wxToolbookEvent
, _p_wxToolbookEventTo_p_wxBookCtrlBaseEvent
, 0, 0},{0, 0, 0, 0}};
38537 static swig_cast_info _swigc__p_wxButton
[] = { {&_swigt__p_wxButton
, 0, 0, 0}, {&_swigt__p_wxBitmapButton
, _p_wxBitmapButtonTo_p_wxButton
, 0, 0}, {&_swigt__p_wxContextHelpButton
, _p_wxContextHelpButtonTo_p_wxButton
, 0, 0},{0, 0, 0, 0}};
38538 static swig_cast_info _swigc__p_wxCheckBox
[] = { {&_swigt__p_wxCheckBox
, 0, 0, 0},{0, 0, 0, 0}};
38539 static swig_cast_info _swigc__p_wxCheckListBox
[] = { {&_swigt__p_wxCheckListBox
, 0, 0, 0},{0, 0, 0, 0}};
38540 static swig_cast_info _swigc__p_wxChoice
[] = { {&_swigt__p_wxDirFilterListCtrl
, _p_wxDirFilterListCtrlTo_p_wxChoice
, 0, 0}, {&_swigt__p_wxChoice
, 0, 0, 0},{0, 0, 0, 0}};
38541 static swig_cast_info _swigc__p_wxChoicebook
[] = { {&_swigt__p_wxChoicebook
, 0, 0, 0},{0, 0, 0, 0}};
38542 static swig_cast_info _swigc__p_wxChoicebookEvent
[] = { {&_swigt__p_wxChoicebookEvent
, 0, 0, 0},{0, 0, 0, 0}};
38543 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
38544 static swig_cast_info _swigc__p_wxComboBox
[] = { {&_swigt__p_wxComboBox
, 0, 0, 0},{0, 0, 0, 0}};
38545 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
38546 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
38547 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
38548 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
38549 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
38550 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
38551 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
38552 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
38553 static swig_cast_info _swigc__p_wxCommandEvent
[] = { {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxTextUrlEvent
, _p_wxTextUrlEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxCommandEvent
, 0, 0, 0}, {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxListbookEvent
, _p_wxListbookEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxNotebookEvent
, _p_wxNotebookEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxChoicebookEvent
, _p_wxChoicebookEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxTreebookEvent
, _p_wxTreebookEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxToolbookEvent
, _p_wxToolbookEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxListEvent
, _p_wxListEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxBookCtrlBaseEvent
, _p_wxBookCtrlBaseEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxTreeEvent
, _p_wxTreeEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxSpinEvent
, _p_wxSpinEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxHelpEvent
, _p_wxHelpEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxCommandEvent
, 0, 0},{0, 0, 0, 0}};
38554 static swig_cast_info _swigc__p_wxContextHelp
[] = { {&_swigt__p_wxContextHelp
, 0, 0, 0},{0, 0, 0, 0}};
38555 static swig_cast_info _swigc__p_wxContextHelpButton
[] = { {&_swigt__p_wxContextHelpButton
, 0, 0, 0},{0, 0, 0, 0}};
38556 static swig_cast_info _swigc__p_wxControl
[] = { {&_swigt__p_wxBookCtrlBase
, _p_wxBookCtrlBaseTo_p_wxControl
, 0, 0}, {&_swigt__p_wxToolBar
, _p_wxToolBarTo_p_wxControl
, 0, 0}, {&_swigt__p_wxToggleButton
, _p_wxToggleButtonTo_p_wxControl
, 0, 0}, {&_swigt__p_wxRadioButton
, _p_wxRadioButtonTo_p_wxControl
, 0, 0}, {&_swigt__p_wxToolbook
, _p_wxToolbookTo_p_wxControl
, 0, 0}, {&_swigt__p_wxControl
, 0, 0, 0}, {&_swigt__p_wxPyControl
, _p_wxPyControlTo_p_wxControl
, 0, 0}, {&_swigt__p_wxToolBarBase
, _p_wxToolBarBaseTo_p_wxControl
, 0, 0}, {&_swigt__p_wxDirFilterListCtrl
, _p_wxDirFilterListCtrlTo_p_wxControl
, 0, 0}, {&_swigt__p_wxPyListCtrl
, _p_wxPyListCtrlTo_p_wxControl
, 0, 0}, {&_swigt__p_wxComboBox
, _p_wxComboBoxTo_p_wxControl
, 0, 0}, {&_swigt__p_wxGenericDirCtrl
, _p_wxGenericDirCtrlTo_p_wxControl
, 0, 0}, {&_swigt__p_wxScrollBar
, _p_wxScrollBarTo_p_wxControl
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxControl
, 0, 0}, {&_swigt__p_wxGauge
, _p_wxGaugeTo_p_wxControl
, 0, 0}, {&_swigt__p_wxStaticLine
, _p_wxStaticLineTo_p_wxControl
, 0, 0}, {&_swigt__p_wxChoicebook
, _p_wxChoicebookTo_p_wxControl
, 0, 0}, {&_swigt__p_wxListbook
, _p_wxListbookTo_p_wxControl
, 0, 0}, {&_swigt__p_wxPyTreeCtrl
, _p_wxPyTreeCtrlTo_p_wxControl
, 0, 0}, {&_swigt__p_wxCheckBox
, _p_wxCheckBoxTo_p_wxControl
, 0, 0}, {&_swigt__p_wxRadioBox
, _p_wxRadioBoxTo_p_wxControl
, 0, 0}, {&_swigt__p_wxCheckListBox
, _p_wxCheckListBoxTo_p_wxControl
, 0, 0}, {&_swigt__p_wxListBox
, _p_wxListBoxTo_p_wxControl
, 0, 0}, {&_swigt__p_wxChoice
, _p_wxChoiceTo_p_wxControl
, 0, 0}, {&_swigt__p_wxListView
, _p_wxListViewTo_p_wxControl
, 0, 0}, {&_swigt__p_wxNotebook
, _p_wxNotebookTo_p_wxControl
, 0, 0}, {&_swigt__p_wxStaticBitmap
, _p_wxStaticBitmapTo_p_wxControl
, 0, 0}, {&_swigt__p_wxSpinCtrl
, _p_wxSpinCtrlTo_p_wxControl
, 0, 0}, {&_swigt__p_wxStaticText
, _p_wxStaticTextTo_p_wxControl
, 0, 0}, {&_swigt__p_wxStaticBox
, _p_wxStaticBoxTo_p_wxControl
, 0, 0}, {&_swigt__p_wxSlider
, _p_wxSliderTo_p_wxControl
, 0, 0}, {&_swigt__p_wxTreebook
, _p_wxTreebookTo_p_wxControl
, 0, 0}, {&_swigt__p_wxBitmapButton
, _p_wxBitmapButtonTo_p_wxControl
, 0, 0}, {&_swigt__p_wxButton
, _p_wxButtonTo_p_wxControl
, 0, 0}, {&_swigt__p_wxContextHelpButton
, _p_wxContextHelpButtonTo_p_wxControl
, 0, 0}, {&_swigt__p_wxSpinButton
, _p_wxSpinButtonTo_p_wxControl
, 0, 0}, {&_swigt__p_wxDatePickerCtrl
, _p_wxDatePickerCtrlTo_p_wxControl
, 0, 0}, {&_swigt__p_wxTextCtrl
, _p_wxTextCtrlTo_p_wxControl
, 0, 0},{0, 0, 0, 0}};
38557 static swig_cast_info _swigc__p_wxControlWithItems
[] = { {&_swigt__p_wxDirFilterListCtrl
, _p_wxDirFilterListCtrlTo_p_wxControlWithItems
, 0, 0}, {&_swigt__p_wxChoice
, _p_wxChoiceTo_p_wxControlWithItems
, 0, 0}, {&_swigt__p_wxControlWithItems
, 0, 0, 0}, {&_swigt__p_wxListBox
, _p_wxListBoxTo_p_wxControlWithItems
, 0, 0}, {&_swigt__p_wxCheckListBox
, _p_wxCheckListBoxTo_p_wxControlWithItems
, 0, 0},{0, 0, 0, 0}};
38558 static swig_cast_info _swigc__p_wxCursor
[] = { {&_swigt__p_wxCursor
, 0, 0, 0},{0, 0, 0, 0}};
38559 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
38560 static swig_cast_info _swigc__p_wxDatePickerCtrl
[] = { {&_swigt__p_wxDatePickerCtrl
, 0, 0, 0},{0, 0, 0, 0}};
38561 static swig_cast_info _swigc__p_wxDateTime
[] = { {&_swigt__p_wxDateTime
, 0, 0, 0},{0, 0, 0, 0}};
38562 static swig_cast_info _swigc__p_wxDirFilterListCtrl
[] = { {&_swigt__p_wxDirFilterListCtrl
, 0, 0, 0},{0, 0, 0, 0}};
38563 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
38564 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
38565 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
38566 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
38567 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
38568 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
38569 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
38570 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
38571 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
38572 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
38573 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
38574 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
38575 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
38576 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
38577 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
38578 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
38579 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
38580 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
38581 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
38582 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
38583 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
38584 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
38585 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
38586 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
38587 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
38588 static swig_cast_info _swigc__p_wxEvent
[] = { {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMenuEvent
, _p_wxMenuEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxCloseEvent
, _p_wxCloseEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMouseEvent
, _p_wxMouseEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxEraseEvent
, _p_wxEraseEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxBookCtrlBaseEvent
, _p_wxBookCtrlBaseEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxTreeEvent
, _p_wxTreeEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSetCursorEvent
, _p_wxSetCursorEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxTextUrlEvent
, _p_wxTextUrlEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxListEvent
, _p_wxListEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxHelpEvent
, _p_wxHelpEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxNotebookEvent
, _p_wxNotebookEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxListbookEvent
, _p_wxListbookEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxChoicebookEvent
, _p_wxChoicebookEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxTreebookEvent
, _p_wxTreebookEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxToolbookEvent
, _p_wxToolbookEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxEvent
, 0, 0, 0}, {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxQueryNewPaletteEvent
, _p_wxQueryNewPaletteEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMaximizeEvent
, _p_wxMaximizeEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxIconizeEvent
, _p_wxIconizeEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxActivateEvent
, _p_wxActivateEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSizeEvent
, _p_wxSizeEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMoveEvent
, _p_wxMoveEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPaintEvent
, _p_wxPaintEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxNcPaintEvent
, _p_wxNcPaintEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPaletteChangedEvent
, _p_wxPaletteChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxDisplayChangedEvent
, _p_wxDisplayChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMouseCaptureChangedEvent
, _p_wxMouseCaptureChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSysColourChangedEvent
, _p_wxSysColourChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxDropFilesEvent
, _p_wxDropFilesEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxFocusEvent
, _p_wxFocusEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxShowEvent
, _p_wxShowEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxCommandEvent
, _p_wxCommandEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxNavigationKeyEvent
, _p_wxNavigationKeyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxKeyEvent
, _p_wxKeyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSpinEvent
, _p_wxSpinEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxScrollWinEvent
, _p_wxScrollWinEventTo_p_wxEvent
, 0, 0},{0, 0, 0, 0}};
38589 static swig_cast_info _swigc__p_wxMenuBar
[] = {{&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
38590 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
38591 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
38592 static swig_cast_info _swigc__p_wxMenu
[] = {{&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
38593 static swig_cast_info _swigc__p_wxEvtHandler
[] = { {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxBookCtrlBase
, _p_wxBookCtrlBaseTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxToolBar
, _p_wxToolBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxToggleButton
, _p_wxToggleButtonTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxRadioButton
, _p_wxRadioButtonTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxToolbook
, _p_wxToolbookTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyControl
, _p_wxPyControlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxToolBarBase
, _p_wxToolBarBaseTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyListCtrl
, _p_wxPyListCtrlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxDirFilterListCtrl
, _p_wxDirFilterListCtrlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxComboBox
, _p_wxComboBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxGenericDirCtrl
, _p_wxGenericDirCtrlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxScrollBar
, _p_wxScrollBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxGauge
, _p_wxGaugeTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxStaticLine
, _p_wxStaticLineTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxChoicebook
, _p_wxChoicebookTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxEvtHandler
, 0, 0, 0}, {&_swigt__p_wxListbook
, _p_wxListbookTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyTreeCtrl
, _p_wxPyTreeCtrlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxCheckBox
, _p_wxCheckBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxRadioBox
, _p_wxRadioBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxCheckListBox
, _p_wxCheckListBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxListBox
, _p_wxListBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxChoice
, _p_wxChoiceTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxListView
, _p_wxListViewTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxNotebook
, _p_wxNotebookTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxStaticBitmap
, _p_wxStaticBitmapTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSpinCtrl
, _p_wxSpinCtrlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxStaticText
, _p_wxStaticTextTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxStaticBox
, _p_wxStaticBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSlider
, _p_wxSliderTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMenu
, _p_wxMenuTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTreebook
, _p_wxTreebookTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxButton
, _p_wxButtonTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxBitmapButton
, _p_wxBitmapButtonTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxContextHelpButton
, _p_wxContextHelpButtonTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSpinButton
, _p_wxSpinButtonTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxDatePickerCtrl
, _p_wxDatePickerCtrlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTextCtrl
, _p_wxTextCtrlTo_p_wxEvtHandler
, 0, 0},{0, 0, 0, 0}};
38594 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
38595 static swig_cast_info _swigc__p_wxGauge
[] = { {&_swigt__p_wxGauge
, 0, 0, 0},{0, 0, 0, 0}};
38596 static swig_cast_info _swigc__p_wxGenericDirCtrl
[] = { {&_swigt__p_wxGenericDirCtrl
, 0, 0, 0},{0, 0, 0, 0}};
38597 static swig_cast_info _swigc__p_wxGenericDragImage
[] = { {&_swigt__p_wxGenericDragImage
, 0, 0, 0},{0, 0, 0, 0}};
38598 static swig_cast_info _swigc__p_wxHelpEvent
[] = { {&_swigt__p_wxHelpEvent
, 0, 0, 0},{0, 0, 0, 0}};
38599 static swig_cast_info _swigc__p_wxHelpProvider
[] = { {&_swigt__p_wxHelpProvider
, 0, 0, 0}, {&_swigt__p_wxSimpleHelpProvider
, _p_wxSimpleHelpProviderTo_p_wxHelpProvider
, 0, 0},{0, 0, 0, 0}};
38600 static swig_cast_info _swigc__p_wxIcon
[] = { {&_swigt__p_wxIcon
, 0, 0, 0},{0, 0, 0, 0}};
38601 static swig_cast_info _swigc__p_wxImageList
[] = { {&_swigt__p_wxImageList
, 0, 0, 0},{0, 0, 0, 0}};
38602 static swig_cast_info _swigc__p_wxItemContainer
[] = { {&_swigt__p_wxComboBox
, _p_wxComboBoxTo_p_wxItemContainer
, 0, 0}, {&_swigt__p_wxDirFilterListCtrl
, _p_wxDirFilterListCtrlTo_p_wxItemContainer
, 0, 0}, {&_swigt__p_wxChoice
, _p_wxChoiceTo_p_wxItemContainer
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxItemContainer
, 0, 0}, {&_swigt__p_wxListBox
, _p_wxListBoxTo_p_wxItemContainer
, 0, 0}, {&_swigt__p_wxCheckListBox
, _p_wxCheckListBoxTo_p_wxItemContainer
, 0, 0}, {&_swigt__p_wxItemContainer
, 0, 0, 0},{0, 0, 0, 0}};
38603 static swig_cast_info _swigc__p_wxKeyEvent
[] = { {&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
38604 static swig_cast_info _swigc__p_wxListBox
[] = { {&_swigt__p_wxListBox
, 0, 0, 0}, {&_swigt__p_wxCheckListBox
, _p_wxCheckListBoxTo_p_wxListBox
, 0, 0},{0, 0, 0, 0}};
38605 static swig_cast_info _swigc__p_wxListEvent
[] = { {&_swigt__p_wxListEvent
, 0, 0, 0},{0, 0, 0, 0}};
38606 static swig_cast_info _swigc__p_wxListItem
[] = { {&_swigt__p_wxListItem
, 0, 0, 0},{0, 0, 0, 0}};
38607 static swig_cast_info _swigc__p_wxListItemAttr
[] = { {&_swigt__p_wxListItemAttr
, 0, 0, 0},{0, 0, 0, 0}};
38608 static swig_cast_info _swigc__p_wxListView
[] = { {&_swigt__p_wxListView
, 0, 0, 0},{0, 0, 0, 0}};
38609 static swig_cast_info _swigc__p_wxListbook
[] = { {&_swigt__p_wxListbook
, 0, 0, 0},{0, 0, 0, 0}};
38610 static swig_cast_info _swigc__p_wxListbookEvent
[] = { {&_swigt__p_wxListbookEvent
, 0, 0, 0},{0, 0, 0, 0}};
38611 static swig_cast_info _swigc__p_wxMemoryDC
[] = { {&_swigt__p_wxMemoryDC
, 0, 0, 0},{0, 0, 0, 0}};
38612 static swig_cast_info _swigc__p_wxMouseEvent
[] = { {&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
38613 static swig_cast_info _swigc__p_wxNotebook
[] = { {&_swigt__p_wxNotebook
, 0, 0, 0},{0, 0, 0, 0}};
38614 static swig_cast_info _swigc__p_wxNotebookEvent
[] = { {&_swigt__p_wxNotebookEvent
, 0, 0, 0},{0, 0, 0, 0}};
38615 static swig_cast_info _swigc__p_wxNotifyEvent
[] = { {&_swigt__p_wxBookCtrlBaseEvent
, _p_wxBookCtrlBaseEventTo_p_wxNotifyEvent
, 0, 0}, {&_swigt__p_wxTreeEvent
, _p_wxTreeEventTo_p_wxNotifyEvent
, 0, 0}, {&_swigt__p_wxListEvent
, _p_wxListEventTo_p_wxNotifyEvent
, 0, 0}, {&_swigt__p_wxSpinEvent
, _p_wxSpinEventTo_p_wxNotifyEvent
, 0, 0}, {&_swigt__p_wxNotebookEvent
, _p_wxNotebookEventTo_p_wxNotifyEvent
, 0, 0}, {&_swigt__p_wxListbookEvent
, _p_wxListbookEventTo_p_wxNotifyEvent
, 0, 0}, {&_swigt__p_wxChoicebookEvent
, _p_wxChoicebookEventTo_p_wxNotifyEvent
, 0, 0}, {&_swigt__p_wxTreebookEvent
, _p_wxTreebookEventTo_p_wxNotifyEvent
, 0, 0}, {&_swigt__p_wxToolbookEvent
, _p_wxToolbookEventTo_p_wxNotifyEvent
, 0, 0}, {&_swigt__p_wxNotifyEvent
, 0, 0, 0},{0, 0, 0, 0}};
38616 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
38617 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
38618 static swig_cast_info _swigc__p_wxSizerItem
[] = {{&_swigt__p_wxSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
38619 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
38620 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
38621 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
38622 static swig_cast_info _swigc__p_wxSizer
[] = {{&_swigt__p_wxSizer
, 0, 0, 0},{0, 0, 0, 0}};
38623 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
38624 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
38625 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
38626 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
38627 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
38628 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
38629 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
38630 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
38631 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
38632 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
38633 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
38634 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
38635 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
38636 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
38637 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
38638 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
38639 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
38640 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
38641 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
38642 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
38643 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
38644 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
38645 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
38646 static swig_cast_info _swigc__p_wxObject
[] = { {&_swigt__p_wxLayoutConstraints
, _p_wxLayoutConstraintsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxToolbook
, _p_wxToolbookTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGBSizerItem
, _p_wxGBSizerItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizerItem
, _p_wxSizerItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTextUrlEvent
, _p_wxTextUrlEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIndividualLayoutConstraint
, _p_wxIndividualLayoutConstraintTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStaticBoxSizer
, _p_wxStaticBoxSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBoxSizer
, _p_wxBoxSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizer
, _p_wxSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGridBagSizer
, _p_wxGridBagSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCheckBox
, _p_wxCheckBoxTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyTreeCtrl
, _p_wxPyTreeCtrlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenu
, _p_wxMenuTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEvent
, _p_wxEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGridSizer
, _p_wxGridSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFlexGridSizer
, _p_wxFlexGridSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGenericDirCtrl
, _p_wxGenericDirCtrlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDirFilterListCtrl
, _p_wxDirFilterListCtrlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyListCtrl
, _p_wxPyListCtrlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPaintEvent
, _p_wxPaintEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNcPaintEvent
, _p_wxNcPaintEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSysColourChangedEvent
, _p_wxSysColourChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMouseCaptureChangedEvent
, _p_wxMouseCaptureChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDisplayChangedEvent
, _p_wxDisplayChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPaletteChangedEvent
, _p_wxPaletteChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStaticLine
, _p_wxStaticLineTo_p_wxObject
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyControl
, _p_wxPyControlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxToggleButton
, _p_wxToggleButtonTo_p_wxObject
, 0, 0}, {&_swigt__p_wxRadioButton
, _p_wxRadioButtonTo_p_wxObject
, 0, 0}, {&_swigt__p_wxToolBarBase
, _p_wxToolBarBaseTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGauge
, _p_wxGaugeTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSetCursorEvent
, _p_wxSetCursorEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxChoice
, _p_wxChoiceTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFSFile
, _p_wxFSFileTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPySizer
, _p_wxPySizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTreebook
, _p_wxTreebookTo_p_wxObject
, 0, 0}, {&_swigt__p_wxListView
, _p_wxListViewTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNotebook
, _p_wxNotebookTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTextCtrl
, _p_wxTextCtrlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxChoicebook
, _p_wxChoicebookTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxListbook
, _p_wxListbookTo_p_wxObject
, 0, 0}, {&_swigt__p_wxShowEvent
, _p_wxShowEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStaticBitmap
, _p_wxStaticBitmapTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSlider
, _p_wxSliderTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxQueryNewPaletteEvent
, _p_wxQueryNewPaletteEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMaximizeEvent
, _p_wxMaximizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIconizeEvent
, _p_wxIconizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxActivateEvent
, _p_wxActivateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizeEvent
, _p_wxSizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMoveEvent
, _p_wxMoveEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStaticBox
, _p_wxStaticBoxTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuItem
, _p_wxMenuItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxContextHelp
, _p_wxContextHelpTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBookCtrlBase
, _p_wxBookCtrlBaseTo_p_wxObject
, 0, 0}, {&_swigt__p_wxListEvent
, _p_wxListEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxImageHandler
, _p_wxImageHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyImageHandler
, _p_wxPyImageHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBMPHandler
, _p_wxBMPHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxICOHandler
, _p_wxICOHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCURHandler
, _p_wxCURHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxANIHandler
, _p_wxANIHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPNGHandler
, _p_wxPNGHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGIFHandler
, _p_wxGIFHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPCXHandler
, _p_wxPCXHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxJPEGHandler
, _p_wxJPEGHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPNMHandler
, _p_wxPNMHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxXPMHandler
, _p_wxXPMHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTIFFHandler
, _p_wxTIFFHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEvtHandler
, _p_wxEvtHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxListBox
, _p_wxListBoxTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCheckListBox
, _p_wxCheckListBoxTo_p_wxObject
, 0, 0}, {&_swigt__p_wxButton
, _p_wxButtonTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBitmapButton
, _p_wxBitmapButtonTo_p_wxObject
, 0, 0}, {&_swigt__p_wxContextHelpButton
, _p_wxContextHelpButtonTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSpinButton
, _p_wxSpinButtonTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStdDialogButtonSizer
, _p_wxStdDialogButtonSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAcceleratorTable
, _p_wxAcceleratorTableTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrollBar
, _p_wxScrollBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxRadioBox
, _p_wxRadioBoxTo_p_wxObject
, 0, 0}, {&_swigt__p_wxHelpEvent
, _p_wxHelpEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxComboBox
, _p_wxComboBoxTo_p_wxObject
, 0, 0}, {&_swigt__p_wxListItem
, _p_wxListItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxImage
, _p_wxImageTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrollWinEvent
, _p_wxScrollWinEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSpinEvent
, _p_wxSpinEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGenericDragImage
, _p_wxGenericDragImageTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSpinCtrl
, _p_wxSpinCtrlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNotebookEvent
, _p_wxNotebookEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxListbookEvent
, _p_wxListbookEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxChoicebookEvent
, _p_wxChoicebookEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTreebookEvent
, _p_wxTreebookEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxToolbookEvent
, _p_wxToolbookEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxObject
, 0, 0, 0}, {&_swigt__p_wxKeyEvent
, _p_wxKeyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNavigationKeyEvent
, _p_wxNavigationKeyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFileSystem
, _p_wxFileSystemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuEvent
, _p_wxMenuEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCloseEvent
, _p_wxCloseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMouseEvent
, _p_wxMouseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEraseEvent
, _p_wxEraseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBookCtrlBaseEvent
, _p_wxBookCtrlBaseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTreeEvent
, _p_wxTreeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCommandEvent
, _p_wxCommandEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStaticText
, _p_wxStaticTextTo_p_wxObject
, 0, 0}, {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFocusEvent
, _p_wxFocusEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDropFilesEvent
, _p_wxDropFilesEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDatePickerCtrl
, _p_wxDatePickerCtrlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxToolBarToolBase
, _p_wxToolBarToolBaseTo_p_wxObject
, 0, 0}, {&_swigt__p_wxToolBar
, _p_wxToolBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxObject
, 0, 0},{0, 0, 0, 0}};
38647 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
38648 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
38649 static swig_cast_info _swigc__p_wxPyControl
[] = { {&_swigt__p_wxPyControl
, 0, 0, 0},{0, 0, 0, 0}};
38650 static swig_cast_info _swigc__p_wxPyListCtrl
[] = { {&_swigt__p_wxPyListCtrl
, 0, 0, 0}, {&_swigt__p_wxListView
, _p_wxListViewTo_p_wxPyListCtrl
, 0, 0},{0, 0, 0, 0}};
38651 static swig_cast_info _swigc__p_wxPyTreeCtrl
[] = { {&_swigt__p_wxPyTreeCtrl
, 0, 0, 0},{0, 0, 0, 0}};
38652 static swig_cast_info _swigc__p_wxPyTreeItemData
[] = { {&_swigt__p_wxPyTreeItemData
, 0, 0, 0},{0, 0, 0, 0}};
38653 static swig_cast_info _swigc__p_wxRadioBox
[] = { {&_swigt__p_wxRadioBox
, 0, 0, 0},{0, 0, 0, 0}};
38654 static swig_cast_info _swigc__p_wxRadioButton
[] = { {&_swigt__p_wxRadioButton
, 0, 0, 0},{0, 0, 0, 0}};
38655 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
38656 static swig_cast_info _swigc__p_wxScrollBar
[] = { {&_swigt__p_wxScrollBar
, 0, 0, 0},{0, 0, 0, 0}};
38657 static swig_cast_info _swigc__p_wxSimpleHelpProvider
[] = { {&_swigt__p_wxSimpleHelpProvider
, 0, 0, 0},{0, 0, 0, 0}};
38658 static swig_cast_info _swigc__p_wxSize
[] = { {&_swigt__p_wxSize
, 0, 0, 0},{0, 0, 0, 0}};
38659 static swig_cast_info _swigc__p_wxSlider
[] = { {&_swigt__p_wxSlider
, 0, 0, 0},{0, 0, 0, 0}};
38660 static swig_cast_info _swigc__p_wxSpinButton
[] = { {&_swigt__p_wxSpinButton
, 0, 0, 0},{0, 0, 0, 0}};
38661 static swig_cast_info _swigc__p_wxSpinCtrl
[] = { {&_swigt__p_wxSpinCtrl
, 0, 0, 0},{0, 0, 0, 0}};
38662 static swig_cast_info _swigc__p_wxSpinEvent
[] = { {&_swigt__p_wxSpinEvent
, 0, 0, 0},{0, 0, 0, 0}};
38663 static swig_cast_info _swigc__p_wxStaticBitmap
[] = { {&_swigt__p_wxStaticBitmap
, 0, 0, 0},{0, 0, 0, 0}};
38664 static swig_cast_info _swigc__p_wxStaticBox
[] = { {&_swigt__p_wxStaticBox
, 0, 0, 0},{0, 0, 0, 0}};
38665 static swig_cast_info _swigc__p_wxStaticLine
[] = { {&_swigt__p_wxStaticLine
, 0, 0, 0},{0, 0, 0, 0}};
38666 static swig_cast_info _swigc__p_wxStaticText
[] = { {&_swigt__p_wxStaticText
, 0, 0, 0},{0, 0, 0, 0}};
38667 static swig_cast_info _swigc__p_wxString
[] = { {&_swigt__p_wxString
, 0, 0, 0},{0, 0, 0, 0}};
38668 static swig_cast_info _swigc__p_wxTextAttr
[] = { {&_swigt__p_wxTextAttr
, 0, 0, 0},{0, 0, 0, 0}};
38669 static swig_cast_info _swigc__p_wxTextCtrl
[] = { {&_swigt__p_wxTextCtrl
, 0, 0, 0},{0, 0, 0, 0}};
38670 static swig_cast_info _swigc__p_wxTextUrlEvent
[] = { {&_swigt__p_wxTextUrlEvent
, 0, 0, 0},{0, 0, 0, 0}};
38671 static swig_cast_info _swigc__p_wxToggleButton
[] = { {&_swigt__p_wxToggleButton
, 0, 0, 0},{0, 0, 0, 0}};
38672 static swig_cast_info _swigc__p_wxToolBar
[] = { {&_swigt__p_wxToolBar
, 0, 0, 0},{0, 0, 0, 0}};
38673 static swig_cast_info _swigc__p_wxToolBarBase
[] = { {&_swigt__p_wxToolBarBase
, 0, 0, 0}, {&_swigt__p_wxToolBar
, _p_wxToolBarTo_p_wxToolBarBase
, 0, 0},{0, 0, 0, 0}};
38674 static swig_cast_info _swigc__p_wxToolBarToolBase
[] = { {&_swigt__p_wxToolBarToolBase
, 0, 0, 0},{0, 0, 0, 0}};
38675 static swig_cast_info _swigc__p_wxToolbook
[] = { {&_swigt__p_wxToolbook
, 0, 0, 0},{0, 0, 0, 0}};
38676 static swig_cast_info _swigc__p_wxToolbookEvent
[] = { {&_swigt__p_wxToolbookEvent
, 0, 0, 0},{0, 0, 0, 0}};
38677 static swig_cast_info _swigc__p_wxTreeCtrl
[] = { {&_swigt__p_wxTreeCtrl
, 0, 0, 0},{0, 0, 0, 0}};
38678 static swig_cast_info _swigc__p_wxTreeEvent
[] = { {&_swigt__p_wxTreeEvent
, 0, 0, 0},{0, 0, 0, 0}};
38679 static swig_cast_info _swigc__p_wxTreeItemId
[] = { {&_swigt__p_wxTreeItemId
, 0, 0, 0},{0, 0, 0, 0}};
38680 static swig_cast_info _swigc__p_wxTreebook
[] = { {&_swigt__p_wxTreebook
, 0, 0, 0},{0, 0, 0, 0}};
38681 static swig_cast_info _swigc__p_wxTreebookEvent
[] = { {&_swigt__p_wxTreebookEvent
, 0, 0, 0},{0, 0, 0, 0}};
38682 static swig_cast_info _swigc__p_wxValidator
[] = { {&_swigt__p_wxValidator
, 0, 0, 0}, {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxValidator
, 0, 0},{0, 0, 0, 0}};
38683 static swig_cast_info _swigc__p_wxVisualAttributes
[] = { {&_swigt__p_wxVisualAttributes
, 0, 0, 0},{0, 0, 0, 0}};
38684 static swig_cast_info _swigc__p_wxWindow
[] = { {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxBookCtrlBase
, _p_wxBookCtrlBaseTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxToolBar
, _p_wxToolBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxToggleButton
, _p_wxToggleButtonTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxRadioButton
, _p_wxRadioButtonTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxToolbook
, _p_wxToolbookTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxWindow
, 0, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyControl
, _p_wxPyControlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxToolBarBase
, _p_wxToolBarBaseTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyListCtrl
, _p_wxPyListCtrlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxDirFilterListCtrl
, _p_wxDirFilterListCtrlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxComboBox
, _p_wxComboBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxGenericDirCtrl
, _p_wxGenericDirCtrlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxScrollBar
, _p_wxScrollBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxGauge
, _p_wxGaugeTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxStaticLine
, _p_wxStaticLineTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxChoicebook
, _p_wxChoicebookTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxListbook
, _p_wxListbookTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyTreeCtrl
, _p_wxPyTreeCtrlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxCheckBox
, _p_wxCheckBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxRadioBox
, _p_wxRadioBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxCheckListBox
, _p_wxCheckListBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxListBox
, _p_wxListBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxChoice
, _p_wxChoiceTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxListView
, _p_wxListViewTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxNotebook
, _p_wxNotebookTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxStaticBitmap
, _p_wxStaticBitmapTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSpinCtrl
, _p_wxSpinCtrlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxStaticText
, _p_wxStaticTextTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxStaticBox
, _p_wxStaticBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSlider
, _p_wxSliderTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTreebook
, _p_wxTreebookTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxButton
, _p_wxButtonTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxBitmapButton
, _p_wxBitmapButtonTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxContextHelpButton
, _p_wxContextHelpButtonTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSpinButton
, _p_wxSpinButtonTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxDatePickerCtrl
, _p_wxDatePickerCtrlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTextCtrl
, _p_wxTextCtrlTo_p_wxWindow
, 0, 0},{0, 0, 0, 0}};
38685 static swig_cast_info _swigc__ptrdiff_t
[] = { {&_swigt__ptrdiff_t
, 0, 0, 0},{0, 0, 0, 0}};
38686 static swig_cast_info _swigc__std__ptrdiff_t
[] = { {&_swigt__std__ptrdiff_t
, 0, 0, 0},{0, 0, 0, 0}};
38687 static swig_cast_info _swigc__unsigned_int
[] = { {&_swigt__unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
38689 static swig_cast_info
*swig_cast_initial
[] = {
38692 _swigc__p_form_ops_t
,
38695 _swigc__p_unsigned_char
,
38696 _swigc__p_unsigned_int
,
38697 _swigc__p_unsigned_long
,
38699 _swigc__p_wxANIHandler
,
38700 _swigc__p_wxAcceleratorTable
,
38701 _swigc__p_wxActivateEvent
,
38702 _swigc__p_wxArrayInt
,
38703 _swigc__p_wxArrayString
,
38704 _swigc__p_wxBMPHandler
,
38705 _swigc__p_wxBitmap
,
38706 _swigc__p_wxBitmapButton
,
38707 _swigc__p_wxBookCtrlBase
,
38708 _swigc__p_wxBookCtrlBaseEvent
,
38709 _swigc__p_wxBoxSizer
,
38710 _swigc__p_wxButton
,
38711 _swigc__p_wxCURHandler
,
38712 _swigc__p_wxCheckBox
,
38713 _swigc__p_wxCheckListBox
,
38714 _swigc__p_wxChildFocusEvent
,
38715 _swigc__p_wxChoice
,
38716 _swigc__p_wxChoicebook
,
38717 _swigc__p_wxChoicebookEvent
,
38718 _swigc__p_wxCloseEvent
,
38719 _swigc__p_wxColour
,
38720 _swigc__p_wxComboBox
,
38721 _swigc__p_wxCommandEvent
,
38722 _swigc__p_wxContextHelp
,
38723 _swigc__p_wxContextHelpButton
,
38724 _swigc__p_wxContextMenuEvent
,
38725 _swigc__p_wxControl
,
38726 _swigc__p_wxControlWithItems
,
38727 _swigc__p_wxCursor
,
38729 _swigc__p_wxDateEvent
,
38730 _swigc__p_wxDatePickerCtrl
,
38731 _swigc__p_wxDateTime
,
38732 _swigc__p_wxDirFilterListCtrl
,
38733 _swigc__p_wxDisplayChangedEvent
,
38734 _swigc__p_wxDropFilesEvent
,
38735 _swigc__p_wxDuplexMode
,
38736 _swigc__p_wxEraseEvent
,
38738 _swigc__p_wxEvtHandler
,
38739 _swigc__p_wxFSFile
,
38740 _swigc__p_wxFileSystem
,
38741 _swigc__p_wxFlexGridSizer
,
38742 _swigc__p_wxFocusEvent
,
38744 _swigc__p_wxGBSizerItem
,
38745 _swigc__p_wxGIFHandler
,
38747 _swigc__p_wxGenericDirCtrl
,
38748 _swigc__p_wxGenericDragImage
,
38749 _swigc__p_wxGridBagSizer
,
38750 _swigc__p_wxGridSizer
,
38751 _swigc__p_wxHelpEvent
,
38752 _swigc__p_wxHelpProvider
,
38753 _swigc__p_wxICOHandler
,
38755 _swigc__p_wxIconizeEvent
,
38756 _swigc__p_wxIdleEvent
,
38758 _swigc__p_wxImageHandler
,
38759 _swigc__p_wxImageList
,
38760 _swigc__p_wxIndividualLayoutConstraint
,
38761 _swigc__p_wxInitDialogEvent
,
38762 _swigc__p_wxItemContainer
,
38763 _swigc__p_wxJPEGHandler
,
38764 _swigc__p_wxKeyEvent
,
38765 _swigc__p_wxLayoutConstraints
,
38766 _swigc__p_wxListBox
,
38767 _swigc__p_wxListEvent
,
38768 _swigc__p_wxListItem
,
38769 _swigc__p_wxListItemAttr
,
38770 _swigc__p_wxListView
,
38771 _swigc__p_wxListbook
,
38772 _swigc__p_wxListbookEvent
,
38773 _swigc__p_wxMaximizeEvent
,
38774 _swigc__p_wxMemoryDC
,
38776 _swigc__p_wxMenuBar
,
38777 _swigc__p_wxMenuEvent
,
38778 _swigc__p_wxMenuItem
,
38779 _swigc__p_wxMouseCaptureChangedEvent
,
38780 _swigc__p_wxMouseEvent
,
38781 _swigc__p_wxMoveEvent
,
38782 _swigc__p_wxNavigationKeyEvent
,
38783 _swigc__p_wxNcPaintEvent
,
38784 _swigc__p_wxNotebook
,
38785 _swigc__p_wxNotebookEvent
,
38786 _swigc__p_wxNotifyEvent
,
38787 _swigc__p_wxObject
,
38788 _swigc__p_wxPCXHandler
,
38789 _swigc__p_wxPNGHandler
,
38790 _swigc__p_wxPNMHandler
,
38791 _swigc__p_wxPaintEvent
,
38792 _swigc__p_wxPaletteChangedEvent
,
38793 _swigc__p_wxPaperSize
,
38796 _swigc__p_wxPyCommandEvent
,
38797 _swigc__p_wxPyControl
,
38798 _swigc__p_wxPyEvent
,
38799 _swigc__p_wxPyImageHandler
,
38800 _swigc__p_wxPyListCtrl
,
38801 _swigc__p_wxPySizer
,
38802 _swigc__p_wxPyTreeCtrl
,
38803 _swigc__p_wxPyTreeItemData
,
38804 _swigc__p_wxPyValidator
,
38805 _swigc__p_wxQueryNewPaletteEvent
,
38806 _swigc__p_wxRadioBox
,
38807 _swigc__p_wxRadioButton
,
38809 _swigc__p_wxScrollBar
,
38810 _swigc__p_wxScrollEvent
,
38811 _swigc__p_wxScrollWinEvent
,
38812 _swigc__p_wxSetCursorEvent
,
38813 _swigc__p_wxShowEvent
,
38814 _swigc__p_wxSimpleHelpProvider
,
38816 _swigc__p_wxSizeEvent
,
38818 _swigc__p_wxSizerItem
,
38819 _swigc__p_wxSlider
,
38820 _swigc__p_wxSpinButton
,
38821 _swigc__p_wxSpinCtrl
,
38822 _swigc__p_wxSpinEvent
,
38823 _swigc__p_wxStaticBitmap
,
38824 _swigc__p_wxStaticBox
,
38825 _swigc__p_wxStaticBoxSizer
,
38826 _swigc__p_wxStaticLine
,
38827 _swigc__p_wxStaticText
,
38828 _swigc__p_wxStdDialogButtonSizer
,
38829 _swigc__p_wxString
,
38830 _swigc__p_wxSysColourChangedEvent
,
38831 _swigc__p_wxTIFFHandler
,
38832 _swigc__p_wxTextAttr
,
38833 _swigc__p_wxTextCtrl
,
38834 _swigc__p_wxTextUrlEvent
,
38835 _swigc__p_wxToggleButton
,
38836 _swigc__p_wxToolBar
,
38837 _swigc__p_wxToolBarBase
,
38838 _swigc__p_wxToolBarToolBase
,
38839 _swigc__p_wxToolbook
,
38840 _swigc__p_wxToolbookEvent
,
38841 _swigc__p_wxTreeCtrl
,
38842 _swigc__p_wxTreeEvent
,
38843 _swigc__p_wxTreeItemId
,
38844 _swigc__p_wxTreebook
,
38845 _swigc__p_wxTreebookEvent
,
38846 _swigc__p_wxUpdateUIEvent
,
38847 _swigc__p_wxValidator
,
38848 _swigc__p_wxVisualAttributes
,
38849 _swigc__p_wxWindow
,
38850 _swigc__p_wxWindowCreateEvent
,
38851 _swigc__p_wxWindowDestroyEvent
,
38852 _swigc__p_wxXPMHandler
,
38854 _swigc__std__ptrdiff_t
,
38855 _swigc__unsigned_int
,
38859 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
38861 static swig_const_info swig_const_table
[] = {
38862 {0, 0, 0, 0.0, 0, 0}};
38867 /*************************************************************************
38868 * Type initialization:
38869 * This problem is tough by the requirement that no dynamic
38870 * memory is used. Also, since swig_type_info structures store pointers to
38871 * swig_cast_info structures and swig_cast_info structures store pointers back
38872 * to swig_type_info structures, we need some lookup code at initialization.
38873 * The idea is that swig generates all the structures that are needed.
38874 * The runtime then collects these partially filled structures.
38875 * The SWIG_InitializeModule function takes these initial arrays out of
38876 * swig_module, and does all the lookup, filling in the swig_module.types
38877 * array with the correct data and linking the correct swig_cast_info
38878 * structures together.
38880 * The generated swig_type_info structures are assigned staticly to an initial
38881 * array. We just loop though that array, and handle each type individually.
38882 * First we lookup if this type has been already loaded, and if so, use the
38883 * loaded structure instead of the generated one. Then we have to fill in the
38884 * cast linked list. The cast data is initially stored in something like a
38885 * two-dimensional array. Each row corresponds to a type (there are the same
38886 * number of rows as there are in the swig_type_initial array). Each entry in
38887 * a column is one of the swig_cast_info structures for that type.
38888 * The cast_initial array is actually an array of arrays, because each row has
38889 * a variable number of columns. So to actually build the cast linked list,
38890 * we find the array of casts associated with the type, and loop through it
38891 * adding the casts to the list. The one last trick we need to do is making
38892 * sure the type pointer in the swig_cast_info struct is correct.
38894 * First off, we lookup the cast->type name to see if it is already loaded.
38895 * There are three cases to handle:
38896 * 1) If the cast->type has already been loaded AND the type we are adding
38897 * casting info to has not been loaded (it is in this module), THEN we
38898 * replace the cast->type pointer with the type pointer that has already
38900 * 2) If BOTH types (the one we are adding casting info to, and the
38901 * cast->type) are loaded, THEN the cast info has already been loaded by
38902 * the previous module so we just ignore it.
38903 * 3) Finally, if cast->type has not already been loaded, then we add that
38904 * swig_cast_info to the linked list (because the cast->type) pointer will
38916 #define SWIGRUNTIME_DEBUG
38920 SWIG_InitializeModule(void *clientdata
) {
38922 swig_module_info
*module_head
;
38923 static int init_run
= 0;
38925 clientdata
= clientdata
;
38927 if (init_run
) return;
38930 /* Initialize the swig_module */
38931 swig_module
.type_initial
= swig_type_initial
;
38932 swig_module
.cast_initial
= swig_cast_initial
;
38934 /* Try and load any already created modules */
38935 module_head
= SWIG_GetModule(clientdata
);
38937 swig_module
.next
= module_head
->next
;
38938 module_head
->next
= &swig_module
;
38940 /* This is the first module loaded */
38941 swig_module
.next
= &swig_module
;
38942 SWIG_SetModule(clientdata
, &swig_module
);
38945 /* Now work on filling in swig_module.types */
38946 #ifdef SWIGRUNTIME_DEBUG
38947 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
38949 for (i
= 0; i
< swig_module
.size
; ++i
) {
38950 swig_type_info
*type
= 0;
38951 swig_type_info
*ret
;
38952 swig_cast_info
*cast
;
38954 #ifdef SWIGRUNTIME_DEBUG
38955 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
38958 /* if there is another module already loaded */
38959 if (swig_module
.next
!= &swig_module
) {
38960 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
38963 /* Overwrite clientdata field */
38964 #ifdef SWIGRUNTIME_DEBUG
38965 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
38967 if (swig_module
.type_initial
[i
]->clientdata
) {
38968 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
38969 #ifdef SWIGRUNTIME_DEBUG
38970 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
38974 type
= swig_module
.type_initial
[i
];
38977 /* Insert casting types */
38978 cast
= swig_module
.cast_initial
[i
];
38979 while (cast
->type
) {
38980 /* Don't need to add information already in the list */
38982 #ifdef SWIGRUNTIME_DEBUG
38983 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
38985 if (swig_module
.next
!= &swig_module
) {
38986 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
38987 #ifdef SWIGRUNTIME_DEBUG
38988 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
38992 if (type
== swig_module
.type_initial
[i
]) {
38993 #ifdef SWIGRUNTIME_DEBUG
38994 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
38999 /* Check for casting already in the list */
39000 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
39001 #ifdef SWIGRUNTIME_DEBUG
39002 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
39004 if (!ocast
) ret
= 0;
39009 #ifdef SWIGRUNTIME_DEBUG
39010 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
39013 type
->cast
->prev
= cast
;
39014 cast
->next
= type
->cast
;
39020 /* Set entry in modules->types array equal to the type */
39021 swig_module
.types
[i
] = type
;
39023 swig_module
.types
[i
] = 0;
39025 #ifdef SWIGRUNTIME_DEBUG
39026 printf("**** SWIG_InitializeModule: Cast List ******\n");
39027 for (i
= 0; i
< swig_module
.size
; ++i
) {
39029 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
39030 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
39031 while (cast
->type
) {
39032 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
39036 printf("---- Total casts: %d\n",j
);
39038 printf("**** SWIG_InitializeModule: Cast List ******\n");
39042 /* This function will propagate the clientdata field of type to
39043 * any new swig_type_info structures that have been added into the list
39044 * of equivalent types. It is like calling
39045 * SWIG_TypeClientData(type, clientdata) a second time.
39048 SWIG_PropagateClientData(void) {
39050 swig_cast_info
*equiv
;
39051 static int init_run
= 0;
39053 if (init_run
) return;
39056 for (i
= 0; i
< swig_module
.size
; i
++) {
39057 if (swig_module
.types
[i
]->clientdata
) {
39058 equiv
= swig_module
.types
[i
]->cast
;
39060 if (!equiv
->converter
) {
39061 if (equiv
->type
&& !equiv
->type
->clientdata
)
39062 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
39064 equiv
= equiv
->next
;
39084 /* Python-specific SWIG API */
39085 #define SWIG_newvarlink() SWIG_Python_newvarlink()
39086 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
39087 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
39089 /* -----------------------------------------------------------------------------
39090 * global variable support code.
39091 * ----------------------------------------------------------------------------- */
39093 typedef struct swig_globalvar
{
39094 char *name
; /* Name of global variable */
39095 PyObject
*(*get_attr
)(void); /* Return the current value */
39096 int (*set_attr
)(PyObject
*); /* Set the value */
39097 struct swig_globalvar
*next
;
39100 typedef struct swig_varlinkobject
{
39102 swig_globalvar
*vars
;
39103 } swig_varlinkobject
;
39105 SWIGINTERN PyObject
*
39106 swig_varlink_repr(swig_varlinkobject
*v
) {
39108 return PyString_FromString("<Swig global variables>");
39112 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int flags
) {
39113 swig_globalvar
*var
;
39115 fprintf(fp
,"Swig global variables { ");
39116 for (var
= v
->vars
; var
; var
=var
->next
) {
39117 fprintf(fp
,"%s", var
->name
);
39118 if (var
->next
) fprintf(fp
,", ");
39120 fprintf(fp
," }\n");
39124 SWIGINTERN PyObject
*
39125 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
39126 swig_globalvar
*var
= v
->vars
;
39128 if (strcmp(var
->name
,n
) == 0) {
39129 return (*var
->get_attr
)();
39133 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
39138 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
39139 swig_globalvar
*var
= v
->vars
;
39141 if (strcmp(var
->name
,n
) == 0) {
39142 return (*var
->set_attr
)(p
);
39146 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
39150 SWIGINTERN PyTypeObject
*
39151 swig_varlink_type(void) {
39152 static char varlink__doc__
[] = "Swig var link object";
39153 static PyTypeObject varlink_type
39154 #if !defined(__cplusplus)
39156 static int type_init
= 0;
39161 PyObject_HEAD_INIT(&PyType_Type
)
39162 0, /* Number of items in variable part (ob_size) */
39163 (char *)"swigvarlink", /* Type name (tp_name) */
39164 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
39165 0, /* Itemsize (tp_itemsize) */
39166 0, /* Deallocator (tp_dealloc) */
39167 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
39168 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
39169 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
39170 0, /* tp_compare */
39171 (reprfunc
) swig_varlink_repr
, /* tp_repr */
39172 0, /* tp_as_number */
39173 0, /* tp_as_sequence */
39174 0, /* tp_as_mapping */
39178 0, /* tp_getattro */
39179 0, /* tp_setattro */
39180 0, /* tp_as_buffer */
39182 varlink__doc__
, /* tp_doc */
39183 #if PY_VERSION_HEX >= 0x02000000
39184 0, /* tp_traverse */
39187 #if PY_VERSION_HEX >= 0x02010000
39188 0, /* tp_richcompare */
39189 0, /* tp_weaklistoffset */
39191 #if PY_VERSION_HEX >= 0x02020000
39192 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
39194 #if PY_VERSION_HEX >= 0x02030000
39197 #ifdef COUNT_ALLOCS
39198 0,0,0,0 /* tp_alloc -> tp_next */
39201 #if !defined(__cplusplus)
39202 varlink_type
= tmp
;
39206 return &varlink_type
;
39209 /* Create a variable linking object for use later */
39210 SWIGINTERN PyObject
*
39211 SWIG_Python_newvarlink(void) {
39212 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
39216 return ((PyObject
*) result
);
39220 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
39221 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
39222 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
39224 size_t size
= strlen(name
)+1;
39225 gv
->name
= (char *)malloc(size
);
39227 strncpy(gv
->name
,name
,size
);
39228 gv
->get_attr
= get_attr
;
39229 gv
->set_attr
= set_attr
;
39230 gv
->next
= v
->vars
;
39236 /* -----------------------------------------------------------------------------
39237 * constants/methods manipulation
39238 * ----------------------------------------------------------------------------- */
39240 /* Install Constants */
39242 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
39245 for (i
= 0; constants
[i
].type
; ++i
) {
39246 switch(constants
[i
].type
) {
39248 obj
= PyInt_FromLong(constants
[i
].lvalue
);
39250 case SWIG_PY_FLOAT
:
39251 obj
= PyFloat_FromDouble(constants
[i
].dvalue
);
39253 case SWIG_PY_STRING
:
39254 if (constants
[i
].pvalue
) {
39255 obj
= PyString_FromString((char *) constants
[i
].pvalue
);
39257 Py_INCREF(Py_None
);
39261 case SWIG_PY_POINTER
:
39262 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
39264 case SWIG_PY_BINARY
:
39265 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
39272 PyDict_SetItemString(d
,constants
[i
].name
,obj
);
39278 /* -----------------------------------------------------------------------------*/
39279 /* Fix SwigMethods to carry the callback ptrs when needed */
39280 /* -----------------------------------------------------------------------------*/
39283 SWIG_Python_FixMethods(PyMethodDef
*methods
,
39284 swig_const_info
*const_table
,
39285 swig_type_info
**types
,
39286 swig_type_info
**types_initial
) {
39288 for (i
= 0; methods
[i
].ml_name
; ++i
) {
39289 char *c
= methods
[i
].ml_doc
;
39290 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
39292 swig_const_info
*ci
= 0;
39293 char *name
= c
+ 10;
39294 for (j
= 0; const_table
[j
].type
; ++j
) {
39295 if (strncmp(const_table
[j
].name
, name
,
39296 strlen(const_table
[j
].name
)) == 0) {
39297 ci
= &(const_table
[j
]);
39302 size_t shift
= (ci
->ptype
) - types
;
39303 swig_type_info
*ty
= types_initial
[shift
];
39304 size_t ldoc
= (c
- methods
[i
].ml_doc
);
39305 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
39306 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
39309 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
39311 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
39313 strncpy(buff
, "swig_ptr: ", 10);
39315 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
39316 methods
[i
].ml_doc
= ndoc
;
39324 /* -----------------------------------------------------------------------------*
39325 * Initialize type list
39326 * -----------------------------------------------------------------------------*/
39332 /* -----------------------------------------------------------------------------*
39333 * Partial Init method
39334 * -----------------------------------------------------------------------------*/
39339 SWIGEXPORT
void SWIG_init(void) {
39340 static PyObject
*SWIG_globals
= 0;
39342 if (!SWIG_globals
) SWIG_globals
= SWIG_newvarlink();
39344 /* Fix SwigMethods to carry the callback ptrs when needed */
39345 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
39347 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
39348 d
= PyModule_GetDict(m
);
39350 SWIG_InitializeModule(0);
39351 SWIG_InstallConstants(d
,swig_const_table
);
39353 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals
);
39354 SWIG_addvarlink(SWIG_globals
,(char*)"ButtonNameStr",_wrap_ButtonNameStr_get
, _wrap_ButtonNameStr_set
);
39356 PyDict_SetItemString(d
,"BU_LEFT", SWIG_From_int(static_cast<int >(wxBU_LEFT
)));
39359 PyDict_SetItemString(d
,"BU_TOP", SWIG_From_int(static_cast<int >(wxBU_TOP
)));
39362 PyDict_SetItemString(d
,"BU_RIGHT", SWIG_From_int(static_cast<int >(wxBU_RIGHT
)));
39365 PyDict_SetItemString(d
,"BU_BOTTOM", SWIG_From_int(static_cast<int >(wxBU_BOTTOM
)));
39368 PyDict_SetItemString(d
,"BU_ALIGN_MASK", SWIG_From_int(static_cast<int >(wxBU_ALIGN_MASK
)));
39371 PyDict_SetItemString(d
,"BU_EXACTFIT", SWIG_From_int(static_cast<int >(wxBU_EXACTFIT
)));
39374 PyDict_SetItemString(d
,"BU_AUTODRAW", SWIG_From_int(static_cast<int >(wxBU_AUTODRAW
)));
39376 SWIG_addvarlink(SWIG_globals
,(char*)"CheckBoxNameStr",_wrap_CheckBoxNameStr_get
, _wrap_CheckBoxNameStr_set
);
39378 PyDict_SetItemString(d
,"CHK_2STATE", SWIG_From_int(static_cast<int >(wxCHK_2STATE
)));
39381 PyDict_SetItemString(d
,"CHK_3STATE", SWIG_From_int(static_cast<int >(wxCHK_3STATE
)));
39384 PyDict_SetItemString(d
,"CHK_ALLOW_3RD_STATE_FOR_USER", SWIG_From_int(static_cast<int >(wxCHK_ALLOW_3RD_STATE_FOR_USER
)));
39387 PyDict_SetItemString(d
,"CHK_UNCHECKED", SWIG_From_int(static_cast<int >(wxCHK_UNCHECKED
)));
39390 PyDict_SetItemString(d
,"CHK_CHECKED", SWIG_From_int(static_cast<int >(wxCHK_CHECKED
)));
39393 PyDict_SetItemString(d
,"CHK_UNDETERMINED", SWIG_From_int(static_cast<int >(wxCHK_UNDETERMINED
)));
39395 SWIG_addvarlink(SWIG_globals
,(char*)"ChoiceNameStr",_wrap_ChoiceNameStr_get
, _wrap_ChoiceNameStr_set
);
39396 SWIG_addvarlink(SWIG_globals
,(char*)"ComboBoxNameStr",_wrap_ComboBoxNameStr_get
, _wrap_ComboBoxNameStr_set
);
39397 SWIG_addvarlink(SWIG_globals
,(char*)"GaugeNameStr",_wrap_GaugeNameStr_get
, _wrap_GaugeNameStr_set
);
39399 PyDict_SetItemString(d
,"GA_HORIZONTAL", SWIG_From_int(static_cast<int >(wxGA_HORIZONTAL
)));
39402 PyDict_SetItemString(d
,"GA_VERTICAL", SWIG_From_int(static_cast<int >(wxGA_VERTICAL
)));
39405 PyDict_SetItemString(d
,"GA_SMOOTH", SWIG_From_int(static_cast<int >(wxGA_SMOOTH
)));
39408 PyDict_SetItemString(d
,"GA_PROGRESSBAR", SWIG_From_int(static_cast<int >(wxGA_PROGRESSBAR
)));
39410 SWIG_addvarlink(SWIG_globals
,(char*)"StaticBitmapNameStr",_wrap_StaticBitmapNameStr_get
, _wrap_StaticBitmapNameStr_set
);
39411 SWIG_addvarlink(SWIG_globals
,(char*)"StaticBoxNameStr",_wrap_StaticBoxNameStr_get
, _wrap_StaticBoxNameStr_set
);
39412 SWIG_addvarlink(SWIG_globals
,(char*)"StaticTextNameStr",_wrap_StaticTextNameStr_get
, _wrap_StaticTextNameStr_set
);
39413 SWIG_addvarlink(SWIG_globals
,(char*)"ListBoxNameStr",_wrap_ListBoxNameStr_get
, _wrap_ListBoxNameStr_set
);
39414 SWIG_addvarlink(SWIG_globals
,(char*)"TextCtrlNameStr",_wrap_TextCtrlNameStr_get
, _wrap_TextCtrlNameStr_set
);
39416 PyDict_SetItemString(d
,"TE_NO_VSCROLL", SWIG_From_int(static_cast<int >(wxTE_NO_VSCROLL
)));
39419 PyDict_SetItemString(d
,"TE_AUTO_SCROLL", SWIG_From_int(static_cast<int >(wxTE_AUTO_SCROLL
)));
39422 PyDict_SetItemString(d
,"TE_READONLY", SWIG_From_int(static_cast<int >(wxTE_READONLY
)));
39425 PyDict_SetItemString(d
,"TE_MULTILINE", SWIG_From_int(static_cast<int >(wxTE_MULTILINE
)));
39428 PyDict_SetItemString(d
,"TE_PROCESS_TAB", SWIG_From_int(static_cast<int >(wxTE_PROCESS_TAB
)));
39431 PyDict_SetItemString(d
,"TE_LEFT", SWIG_From_int(static_cast<int >(wxTE_LEFT
)));
39434 PyDict_SetItemString(d
,"TE_CENTER", SWIG_From_int(static_cast<int >(wxTE_CENTER
)));
39437 PyDict_SetItemString(d
,"TE_RIGHT", SWIG_From_int(static_cast<int >(wxTE_RIGHT
)));
39440 PyDict_SetItemString(d
,"TE_CENTRE", SWIG_From_int(static_cast<int >(wxTE_CENTRE
)));
39443 PyDict_SetItemString(d
,"TE_RICH", SWIG_From_int(static_cast<int >(wxTE_RICH
)));
39446 PyDict_SetItemString(d
,"TE_PROCESS_ENTER", SWIG_From_int(static_cast<int >(wxTE_PROCESS_ENTER
)));
39449 PyDict_SetItemString(d
,"TE_PASSWORD", SWIG_From_int(static_cast<int >(wxTE_PASSWORD
)));
39452 PyDict_SetItemString(d
,"TE_AUTO_URL", SWIG_From_int(static_cast<int >(wxTE_AUTO_URL
)));
39455 PyDict_SetItemString(d
,"TE_NOHIDESEL", SWIG_From_int(static_cast<int >(wxTE_NOHIDESEL
)));
39458 PyDict_SetItemString(d
,"TE_DONTWRAP", SWIG_From_int(static_cast<int >(wxTE_DONTWRAP
)));
39461 PyDict_SetItemString(d
,"TE_CHARWRAP", SWIG_From_int(static_cast<int >(wxTE_CHARWRAP
)));
39464 PyDict_SetItemString(d
,"TE_WORDWRAP", SWIG_From_int(static_cast<int >(wxTE_WORDWRAP
)));
39467 PyDict_SetItemString(d
,"TE_BESTWRAP", SWIG_From_int(static_cast<int >(wxTE_BESTWRAP
)));
39470 PyDict_SetItemString(d
,"TE_LINEWRAP", SWIG_From_int(static_cast<int >(wxTE_LINEWRAP
)));
39473 PyDict_SetItemString(d
,"TE_RICH2", SWIG_From_int(static_cast<int >(wxTE_RICH2
)));
39476 PyDict_SetItemString(d
,"TE_CAPITALIZE", SWIG_From_int(static_cast<int >(wxTE_CAPITALIZE
)));
39479 PyDict_SetItemString(d
,"TEXT_ALIGNMENT_DEFAULT", SWIG_From_int(static_cast<int >(wxTEXT_ALIGNMENT_DEFAULT
)));
39482 PyDict_SetItemString(d
,"TEXT_ALIGNMENT_LEFT", SWIG_From_int(static_cast<int >(wxTEXT_ALIGNMENT_LEFT
)));
39485 PyDict_SetItemString(d
,"TEXT_ALIGNMENT_CENTRE", SWIG_From_int(static_cast<int >(wxTEXT_ALIGNMENT_CENTRE
)));
39488 PyDict_SetItemString(d
,"TEXT_ALIGNMENT_CENTER", SWIG_From_int(static_cast<int >(wxTEXT_ALIGNMENT_CENTER
)));
39491 PyDict_SetItemString(d
,"TEXT_ALIGNMENT_RIGHT", SWIG_From_int(static_cast<int >(wxTEXT_ALIGNMENT_RIGHT
)));
39494 PyDict_SetItemString(d
,"TEXT_ALIGNMENT_JUSTIFIED", SWIG_From_int(static_cast<int >(wxTEXT_ALIGNMENT_JUSTIFIED
)));
39497 PyDict_SetItemString(d
,"TEXT_ATTR_TEXT_COLOUR", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_TEXT_COLOUR
)));
39500 PyDict_SetItemString(d
,"TEXT_ATTR_BACKGROUND_COLOUR", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_BACKGROUND_COLOUR
)));
39503 PyDict_SetItemString(d
,"TEXT_ATTR_FONT_FACE", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_FONT_FACE
)));
39506 PyDict_SetItemString(d
,"TEXT_ATTR_FONT_SIZE", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_FONT_SIZE
)));
39509 PyDict_SetItemString(d
,"TEXT_ATTR_FONT_WEIGHT", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_FONT_WEIGHT
)));
39512 PyDict_SetItemString(d
,"TEXT_ATTR_FONT_ITALIC", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_FONT_ITALIC
)));
39515 PyDict_SetItemString(d
,"TEXT_ATTR_FONT_UNDERLINE", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_FONT_UNDERLINE
)));
39518 PyDict_SetItemString(d
,"TEXT_ATTR_FONT", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_FONT
)));
39521 PyDict_SetItemString(d
,"TEXT_ATTR_ALIGNMENT", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_ALIGNMENT
)));
39524 PyDict_SetItemString(d
,"TEXT_ATTR_LEFT_INDENT", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_LEFT_INDENT
)));
39527 PyDict_SetItemString(d
,"TEXT_ATTR_RIGHT_INDENT", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_RIGHT_INDENT
)));
39530 PyDict_SetItemString(d
,"TEXT_ATTR_TABS", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_TABS
)));
39533 PyDict_SetItemString(d
,"TE_HT_UNKNOWN", SWIG_From_int(static_cast<int >(wxTE_HT_UNKNOWN
)));
39536 PyDict_SetItemString(d
,"TE_HT_BEFORE", SWIG_From_int(static_cast<int >(wxTE_HT_BEFORE
)));
39539 PyDict_SetItemString(d
,"TE_HT_ON_TEXT", SWIG_From_int(static_cast<int >(wxTE_HT_ON_TEXT
)));
39542 PyDict_SetItemString(d
,"TE_HT_BELOW", SWIG_From_int(static_cast<int >(wxTE_HT_BELOW
)));
39545 PyDict_SetItemString(d
,"TE_HT_BEYOND", SWIG_From_int(static_cast<int >(wxTE_HT_BEYOND
)));
39548 PyDict_SetItemString(d
,"OutOfRangeTextCoord", SWIG_From_int(static_cast<int >(wxOutOfRangeTextCoord
)));
39551 PyDict_SetItemString(d
,"InvalidTextCoord", SWIG_From_int(static_cast<int >(wxInvalidTextCoord
)));
39553 PyDict_SetItemString(d
, "wxEVT_COMMAND_TEXT_UPDATED", PyInt_FromLong(wxEVT_COMMAND_TEXT_UPDATED
));
39554 PyDict_SetItemString(d
, "wxEVT_COMMAND_TEXT_ENTER", PyInt_FromLong(wxEVT_COMMAND_TEXT_ENTER
));
39555 PyDict_SetItemString(d
, "wxEVT_COMMAND_TEXT_URL", PyInt_FromLong(wxEVT_COMMAND_TEXT_URL
));
39556 PyDict_SetItemString(d
, "wxEVT_COMMAND_TEXT_MAXLEN", PyInt_FromLong(wxEVT_COMMAND_TEXT_MAXLEN
));
39557 SWIG_addvarlink(SWIG_globals
,(char*)"ScrollBarNameStr",_wrap_ScrollBarNameStr_get
, _wrap_ScrollBarNameStr_set
);
39558 SWIG_addvarlink(SWIG_globals
,(char*)"SPIN_BUTTON_NAME",_wrap_SPIN_BUTTON_NAME_get
, _wrap_SPIN_BUTTON_NAME_set
);
39559 SWIG_addvarlink(SWIG_globals
,(char*)"SpinCtrlNameStr",_wrap_SpinCtrlNameStr_get
, _wrap_SpinCtrlNameStr_set
);
39561 PyDict_SetItemString(d
,"SP_HORIZONTAL", SWIG_From_int(static_cast<int >(wxSP_HORIZONTAL
)));
39564 PyDict_SetItemString(d
,"SP_VERTICAL", SWIG_From_int(static_cast<int >(wxSP_VERTICAL
)));
39567 PyDict_SetItemString(d
,"SP_ARROW_KEYS", SWIG_From_int(static_cast<int >(wxSP_ARROW_KEYS
)));
39570 PyDict_SetItemString(d
,"SP_WRAP", SWIG_From_int(static_cast<int >(wxSP_WRAP
)));
39572 PyDict_SetItemString(d
, "wxEVT_COMMAND_SPINCTRL_UPDATED", PyInt_FromLong(wxEVT_COMMAND_SPINCTRL_UPDATED
));
39573 SWIG_addvarlink(SWIG_globals
,(char*)"RadioBoxNameStr",_wrap_RadioBoxNameStr_get
, _wrap_RadioBoxNameStr_set
);
39574 SWIG_addvarlink(SWIG_globals
,(char*)"RadioButtonNameStr",_wrap_RadioButtonNameStr_get
, _wrap_RadioButtonNameStr_set
);
39575 SWIG_addvarlink(SWIG_globals
,(char*)"SliderNameStr",_wrap_SliderNameStr_get
, _wrap_SliderNameStr_set
);
39577 PyDict_SetItemString(d
,"SL_HORIZONTAL", SWIG_From_int(static_cast<int >(wxSL_HORIZONTAL
)));
39580 PyDict_SetItemString(d
,"SL_VERTICAL", SWIG_From_int(static_cast<int >(wxSL_VERTICAL
)));
39583 PyDict_SetItemString(d
,"SL_TICKS", SWIG_From_int(static_cast<int >(wxSL_TICKS
)));
39586 PyDict_SetItemString(d
,"SL_AUTOTICKS", SWIG_From_int(static_cast<int >(wxSL_AUTOTICKS
)));
39589 PyDict_SetItemString(d
,"SL_LABELS", SWIG_From_int(static_cast<int >(wxSL_LABELS
)));
39592 PyDict_SetItemString(d
,"SL_LEFT", SWIG_From_int(static_cast<int >(wxSL_LEFT
)));
39595 PyDict_SetItemString(d
,"SL_TOP", SWIG_From_int(static_cast<int >(wxSL_TOP
)));
39598 PyDict_SetItemString(d
,"SL_RIGHT", SWIG_From_int(static_cast<int >(wxSL_RIGHT
)));
39601 PyDict_SetItemString(d
,"SL_BOTTOM", SWIG_From_int(static_cast<int >(wxSL_BOTTOM
)));
39604 PyDict_SetItemString(d
,"SL_BOTH", SWIG_From_int(static_cast<int >(wxSL_BOTH
)));
39607 PyDict_SetItemString(d
,"SL_SELRANGE", SWIG_From_int(static_cast<int >(wxSL_SELRANGE
)));
39610 PyDict_SetItemString(d
,"SL_INVERSE", SWIG_From_int(static_cast<int >(wxSL_INVERSE
)));
39612 SWIG_addvarlink(SWIG_globals
,(char*)"ToggleButtonNameStr",_wrap_ToggleButtonNameStr_get
, _wrap_ToggleButtonNameStr_set
);
39613 PyDict_SetItemString(d
, "wxEVT_COMMAND_TOGGLEBUTTON_CLICKED", PyInt_FromLong(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
));
39614 SWIG_addvarlink(SWIG_globals
,(char*)"NotebookNameStr",_wrap_NotebookNameStr_get
, _wrap_NotebookNameStr_set
);
39616 PyDict_SetItemString(d
,"BK_DEFAULT", SWIG_From_int(static_cast<int >(wxBK_DEFAULT
)));
39619 PyDict_SetItemString(d
,"BK_TOP", SWIG_From_int(static_cast<int >(wxBK_TOP
)));
39622 PyDict_SetItemString(d
,"BK_BOTTOM", SWIG_From_int(static_cast<int >(wxBK_BOTTOM
)));
39625 PyDict_SetItemString(d
,"BK_LEFT", SWIG_From_int(static_cast<int >(wxBK_LEFT
)));
39628 PyDict_SetItemString(d
,"BK_RIGHT", SWIG_From_int(static_cast<int >(wxBK_RIGHT
)));
39631 PyDict_SetItemString(d
,"BK_ALIGN_MASK", SWIG_From_int(static_cast<int >(wxBK_ALIGN_MASK
)));
39634 PyDict_SetItemString(d
,"NB_FIXEDWIDTH", SWIG_From_int(static_cast<int >(wxNB_FIXEDWIDTH
)));
39637 PyDict_SetItemString(d
,"NB_TOP", SWIG_From_int(static_cast<int >(wxNB_TOP
)));
39640 PyDict_SetItemString(d
,"NB_LEFT", SWIG_From_int(static_cast<int >(wxNB_LEFT
)));
39643 PyDict_SetItemString(d
,"NB_RIGHT", SWIG_From_int(static_cast<int >(wxNB_RIGHT
)));
39646 PyDict_SetItemString(d
,"NB_BOTTOM", SWIG_From_int(static_cast<int >(wxNB_BOTTOM
)));
39649 PyDict_SetItemString(d
,"NB_MULTILINE", SWIG_From_int(static_cast<int >(wxNB_MULTILINE
)));
39652 PyDict_SetItemString(d
,"NB_NOPAGETHEME", SWIG_From_int(static_cast<int >(wxNB_NOPAGETHEME
)));
39655 PyDict_SetItemString(d
,"NB_HITTEST_NOWHERE", SWIG_From_int(static_cast<int >(wxNB_HITTEST_NOWHERE
)));
39658 PyDict_SetItemString(d
,"NB_HITTEST_ONICON", SWIG_From_int(static_cast<int >(wxNB_HITTEST_ONICON
)));
39661 PyDict_SetItemString(d
,"NB_HITTEST_ONLABEL", SWIG_From_int(static_cast<int >(wxNB_HITTEST_ONLABEL
)));
39664 PyDict_SetItemString(d
,"NB_HITTEST_ONITEM", SWIG_From_int(static_cast<int >(wxNB_HITTEST_ONITEM
)));
39666 PyDict_SetItemString(d
, "wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
));
39667 PyDict_SetItemString(d
, "wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
));
39669 PyDict_SetItemString(d
,"LB_DEFAULT", SWIG_From_int(static_cast<int >(wxLB_DEFAULT
)));
39672 PyDict_SetItemString(d
,"LB_TOP", SWIG_From_int(static_cast<int >(wxLB_TOP
)));
39675 PyDict_SetItemString(d
,"LB_BOTTOM", SWIG_From_int(static_cast<int >(wxLB_BOTTOM
)));
39678 PyDict_SetItemString(d
,"LB_LEFT", SWIG_From_int(static_cast<int >(wxLB_LEFT
)));
39681 PyDict_SetItemString(d
,"LB_RIGHT", SWIG_From_int(static_cast<int >(wxLB_RIGHT
)));
39684 PyDict_SetItemString(d
,"LB_ALIGN_MASK", SWIG_From_int(static_cast<int >(wxLB_ALIGN_MASK
)));
39686 PyDict_SetItemString(d
, "wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
));
39687 PyDict_SetItemString(d
, "wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
));
39689 PyDict_SetItemString(d
,"CHB_DEFAULT", SWIG_From_int(static_cast<int >(wxCHB_DEFAULT
)));
39692 PyDict_SetItemString(d
,"CHB_TOP", SWIG_From_int(static_cast<int >(wxCHB_TOP
)));
39695 PyDict_SetItemString(d
,"CHB_BOTTOM", SWIG_From_int(static_cast<int >(wxCHB_BOTTOM
)));
39698 PyDict_SetItemString(d
,"CHB_LEFT", SWIG_From_int(static_cast<int >(wxCHB_LEFT
)));
39701 PyDict_SetItemString(d
,"CHB_RIGHT", SWIG_From_int(static_cast<int >(wxCHB_RIGHT
)));
39704 PyDict_SetItemString(d
,"CHB_ALIGN_MASK", SWIG_From_int(static_cast<int >(wxCHB_ALIGN_MASK
)));
39706 PyDict_SetItemString(d
, "wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
));
39707 PyDict_SetItemString(d
, "wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
));
39708 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
));
39709 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING
));
39710 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED", PyInt_FromLong(wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED
));
39711 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED", PyInt_FromLong(wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED
));
39712 PyDict_SetItemString(d
, "wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
));
39713 PyDict_SetItemString(d
, "wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
));
39715 PyDict_SetItemString(d
,"TOOL_STYLE_BUTTON", SWIG_From_int(static_cast<int >(wxTOOL_STYLE_BUTTON
)));
39718 PyDict_SetItemString(d
,"TOOL_STYLE_SEPARATOR", SWIG_From_int(static_cast<int >(wxTOOL_STYLE_SEPARATOR
)));
39721 PyDict_SetItemString(d
,"TOOL_STYLE_CONTROL", SWIG_From_int(static_cast<int >(wxTOOL_STYLE_CONTROL
)));
39724 PyDict_SetItemString(d
,"TB_HORIZONTAL", SWIG_From_int(static_cast<int >(wxTB_HORIZONTAL
)));
39727 PyDict_SetItemString(d
,"TB_VERTICAL", SWIG_From_int(static_cast<int >(wxTB_VERTICAL
)));
39730 PyDict_SetItemString(d
,"TB_3DBUTTONS", SWIG_From_int(static_cast<int >(wxTB_3DBUTTONS
)));
39733 PyDict_SetItemString(d
,"TB_FLAT", SWIG_From_int(static_cast<int >(wxTB_FLAT
)));
39736 PyDict_SetItemString(d
,"TB_DOCKABLE", SWIG_From_int(static_cast<int >(wxTB_DOCKABLE
)));
39739 PyDict_SetItemString(d
,"TB_NOICONS", SWIG_From_int(static_cast<int >(wxTB_NOICONS
)));
39742 PyDict_SetItemString(d
,"TB_TEXT", SWIG_From_int(static_cast<int >(wxTB_TEXT
)));
39745 PyDict_SetItemString(d
,"TB_NODIVIDER", SWIG_From_int(static_cast<int >(wxTB_NODIVIDER
)));
39748 PyDict_SetItemString(d
,"TB_NOALIGN", SWIG_From_int(static_cast<int >(wxTB_NOALIGN
)));
39751 PyDict_SetItemString(d
,"TB_HORZ_LAYOUT", SWIG_From_int(static_cast<int >(wxTB_HORZ_LAYOUT
)));
39754 PyDict_SetItemString(d
,"TB_HORZ_TEXT", SWIG_From_int(static_cast<int >(wxTB_HORZ_TEXT
)));
39756 SWIG_addvarlink(SWIG_globals
,(char*)"ListCtrlNameStr",_wrap_ListCtrlNameStr_get
, _wrap_ListCtrlNameStr_set
);
39758 PyDict_SetItemString(d
,"LC_VRULES", SWIG_From_int(static_cast<int >(wxLC_VRULES
)));
39761 PyDict_SetItemString(d
,"LC_HRULES", SWIG_From_int(static_cast<int >(wxLC_HRULES
)));
39764 PyDict_SetItemString(d
,"LC_ICON", SWIG_From_int(static_cast<int >(wxLC_ICON
)));
39767 PyDict_SetItemString(d
,"LC_SMALL_ICON", SWIG_From_int(static_cast<int >(wxLC_SMALL_ICON
)));
39770 PyDict_SetItemString(d
,"LC_LIST", SWIG_From_int(static_cast<int >(wxLC_LIST
)));
39773 PyDict_SetItemString(d
,"LC_REPORT", SWIG_From_int(static_cast<int >(wxLC_REPORT
)));
39776 PyDict_SetItemString(d
,"LC_ALIGN_TOP", SWIG_From_int(static_cast<int >(wxLC_ALIGN_TOP
)));
39779 PyDict_SetItemString(d
,"LC_ALIGN_LEFT", SWIG_From_int(static_cast<int >(wxLC_ALIGN_LEFT
)));
39782 PyDict_SetItemString(d
,"LC_AUTOARRANGE", SWIG_From_int(static_cast<int >(wxLC_AUTOARRANGE
)));
39785 PyDict_SetItemString(d
,"LC_VIRTUAL", SWIG_From_int(static_cast<int >(wxLC_VIRTUAL
)));
39788 PyDict_SetItemString(d
,"LC_EDIT_LABELS", SWIG_From_int(static_cast<int >(wxLC_EDIT_LABELS
)));
39791 PyDict_SetItemString(d
,"LC_NO_HEADER", SWIG_From_int(static_cast<int >(wxLC_NO_HEADER
)));
39794 PyDict_SetItemString(d
,"LC_NO_SORT_HEADER", SWIG_From_int(static_cast<int >(wxLC_NO_SORT_HEADER
)));
39797 PyDict_SetItemString(d
,"LC_SINGLE_SEL", SWIG_From_int(static_cast<int >(wxLC_SINGLE_SEL
)));
39800 PyDict_SetItemString(d
,"LC_SORT_ASCENDING", SWIG_From_int(static_cast<int >(wxLC_SORT_ASCENDING
)));
39803 PyDict_SetItemString(d
,"LC_SORT_DESCENDING", SWIG_From_int(static_cast<int >(wxLC_SORT_DESCENDING
)));
39806 PyDict_SetItemString(d
,"LC_MASK_TYPE", SWIG_From_int(static_cast<int >(wxLC_MASK_TYPE
)));
39809 PyDict_SetItemString(d
,"LC_MASK_ALIGN", SWIG_From_int(static_cast<int >(wxLC_MASK_ALIGN
)));
39812 PyDict_SetItemString(d
,"LC_MASK_SORT", SWIG_From_int(static_cast<int >(wxLC_MASK_SORT
)));
39815 PyDict_SetItemString(d
,"LIST_MASK_STATE", SWIG_From_int(static_cast<int >(wxLIST_MASK_STATE
)));
39818 PyDict_SetItemString(d
,"LIST_MASK_TEXT", SWIG_From_int(static_cast<int >(wxLIST_MASK_TEXT
)));
39821 PyDict_SetItemString(d
,"LIST_MASK_IMAGE", SWIG_From_int(static_cast<int >(wxLIST_MASK_IMAGE
)));
39824 PyDict_SetItemString(d
,"LIST_MASK_DATA", SWIG_From_int(static_cast<int >(wxLIST_MASK_DATA
)));
39827 PyDict_SetItemString(d
,"LIST_SET_ITEM", SWIG_From_int(static_cast<int >(wxLIST_SET_ITEM
)));
39830 PyDict_SetItemString(d
,"LIST_MASK_WIDTH", SWIG_From_int(static_cast<int >(wxLIST_MASK_WIDTH
)));
39833 PyDict_SetItemString(d
,"LIST_MASK_FORMAT", SWIG_From_int(static_cast<int >(wxLIST_MASK_FORMAT
)));
39836 PyDict_SetItemString(d
,"LIST_STATE_DONTCARE", SWIG_From_int(static_cast<int >(wxLIST_STATE_DONTCARE
)));
39839 PyDict_SetItemString(d
,"LIST_STATE_DROPHILITED", SWIG_From_int(static_cast<int >(wxLIST_STATE_DROPHILITED
)));
39842 PyDict_SetItemString(d
,"LIST_STATE_FOCUSED", SWIG_From_int(static_cast<int >(wxLIST_STATE_FOCUSED
)));
39845 PyDict_SetItemString(d
,"LIST_STATE_SELECTED", SWIG_From_int(static_cast<int >(wxLIST_STATE_SELECTED
)));
39848 PyDict_SetItemString(d
,"LIST_STATE_CUT", SWIG_From_int(static_cast<int >(wxLIST_STATE_CUT
)));
39851 PyDict_SetItemString(d
,"LIST_STATE_DISABLED", SWIG_From_int(static_cast<int >(wxLIST_STATE_DISABLED
)));
39854 PyDict_SetItemString(d
,"LIST_STATE_FILTERED", SWIG_From_int(static_cast<int >(wxLIST_STATE_FILTERED
)));
39857 PyDict_SetItemString(d
,"LIST_STATE_INUSE", SWIG_From_int(static_cast<int >(wxLIST_STATE_INUSE
)));
39860 PyDict_SetItemString(d
,"LIST_STATE_PICKED", SWIG_From_int(static_cast<int >(wxLIST_STATE_PICKED
)));
39863 PyDict_SetItemString(d
,"LIST_STATE_SOURCE", SWIG_From_int(static_cast<int >(wxLIST_STATE_SOURCE
)));
39866 PyDict_SetItemString(d
,"LIST_HITTEST_ABOVE", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_ABOVE
)));
39869 PyDict_SetItemString(d
,"LIST_HITTEST_BELOW", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_BELOW
)));
39872 PyDict_SetItemString(d
,"LIST_HITTEST_NOWHERE", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_NOWHERE
)));
39875 PyDict_SetItemString(d
,"LIST_HITTEST_ONITEMICON", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_ONITEMICON
)));
39878 PyDict_SetItemString(d
,"LIST_HITTEST_ONITEMLABEL", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_ONITEMLABEL
)));
39881 PyDict_SetItemString(d
,"LIST_HITTEST_ONITEMRIGHT", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_ONITEMRIGHT
)));
39884 PyDict_SetItemString(d
,"LIST_HITTEST_ONITEMSTATEICON", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_ONITEMSTATEICON
)));
39887 PyDict_SetItemString(d
,"LIST_HITTEST_TOLEFT", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_TOLEFT
)));
39890 PyDict_SetItemString(d
,"LIST_HITTEST_TORIGHT", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_TORIGHT
)));
39893 PyDict_SetItemString(d
,"LIST_HITTEST_ONITEM", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_ONITEM
)));
39896 PyDict_SetItemString(d
,"LIST_NEXT_ABOVE", SWIG_From_int(static_cast<int >(wxLIST_NEXT_ABOVE
)));
39899 PyDict_SetItemString(d
,"LIST_NEXT_ALL", SWIG_From_int(static_cast<int >(wxLIST_NEXT_ALL
)));
39902 PyDict_SetItemString(d
,"LIST_NEXT_BELOW", SWIG_From_int(static_cast<int >(wxLIST_NEXT_BELOW
)));
39905 PyDict_SetItemString(d
,"LIST_NEXT_LEFT", SWIG_From_int(static_cast<int >(wxLIST_NEXT_LEFT
)));
39908 PyDict_SetItemString(d
,"LIST_NEXT_RIGHT", SWIG_From_int(static_cast<int >(wxLIST_NEXT_RIGHT
)));
39911 PyDict_SetItemString(d
,"LIST_ALIGN_DEFAULT", SWIG_From_int(static_cast<int >(wxLIST_ALIGN_DEFAULT
)));
39914 PyDict_SetItemString(d
,"LIST_ALIGN_LEFT", SWIG_From_int(static_cast<int >(wxLIST_ALIGN_LEFT
)));
39917 PyDict_SetItemString(d
,"LIST_ALIGN_TOP", SWIG_From_int(static_cast<int >(wxLIST_ALIGN_TOP
)));
39920 PyDict_SetItemString(d
,"LIST_ALIGN_SNAP_TO_GRID", SWIG_From_int(static_cast<int >(wxLIST_ALIGN_SNAP_TO_GRID
)));
39923 PyDict_SetItemString(d
,"LIST_FORMAT_LEFT", SWIG_From_int(static_cast<int >(wxLIST_FORMAT_LEFT
)));
39926 PyDict_SetItemString(d
,"LIST_FORMAT_RIGHT", SWIG_From_int(static_cast<int >(wxLIST_FORMAT_RIGHT
)));
39929 PyDict_SetItemString(d
,"LIST_FORMAT_CENTRE", SWIG_From_int(static_cast<int >(wxLIST_FORMAT_CENTRE
)));
39932 PyDict_SetItemString(d
,"LIST_FORMAT_CENTER", SWIG_From_int(static_cast<int >(wxLIST_FORMAT_CENTER
)));
39935 PyDict_SetItemString(d
,"LIST_AUTOSIZE", SWIG_From_int(static_cast<int >(wxLIST_AUTOSIZE
)));
39938 PyDict_SetItemString(d
,"LIST_AUTOSIZE_USEHEADER", SWIG_From_int(static_cast<int >(wxLIST_AUTOSIZE_USEHEADER
)));
39941 PyDict_SetItemString(d
,"LIST_RECT_BOUNDS", SWIG_From_int(static_cast<int >(wxLIST_RECT_BOUNDS
)));
39944 PyDict_SetItemString(d
,"LIST_RECT_ICON", SWIG_From_int(static_cast<int >(wxLIST_RECT_ICON
)));
39947 PyDict_SetItemString(d
,"LIST_RECT_LABEL", SWIG_From_int(static_cast<int >(wxLIST_RECT_LABEL
)));
39950 PyDict_SetItemString(d
,"LIST_FIND_UP", SWIG_From_int(static_cast<int >(wxLIST_FIND_UP
)));
39953 PyDict_SetItemString(d
,"LIST_FIND_DOWN", SWIG_From_int(static_cast<int >(wxLIST_FIND_DOWN
)));
39956 PyDict_SetItemString(d
,"LIST_FIND_LEFT", SWIG_From_int(static_cast<int >(wxLIST_FIND_LEFT
)));
39959 PyDict_SetItemString(d
,"LIST_FIND_RIGHT", SWIG_From_int(static_cast<int >(wxLIST_FIND_RIGHT
)));
39961 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_LIST_BEGIN_DRAG
));
39962 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_BEGIN_RDRAG", PyInt_FromLong(wxEVT_COMMAND_LIST_BEGIN_RDRAG
));
39963 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT", PyInt_FromLong(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
));
39964 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_END_LABEL_EDIT", PyInt_FromLong(wxEVT_COMMAND_LIST_END_LABEL_EDIT
));
39965 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_DELETE_ITEM", PyInt_FromLong(wxEVT_COMMAND_LIST_DELETE_ITEM
));
39966 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS", PyInt_FromLong(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
));
39967 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_ITEM_SELECTED", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_SELECTED
));
39968 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_ITEM_DESELECTED", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_DESELECTED
));
39969 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_KEY_DOWN", PyInt_FromLong(wxEVT_COMMAND_LIST_KEY_DOWN
));
39970 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_INSERT_ITEM", PyInt_FromLong(wxEVT_COMMAND_LIST_INSERT_ITEM
));
39971 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_COL_CLICK", PyInt_FromLong(wxEVT_COMMAND_LIST_COL_CLICK
));
39972 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
));
39973 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
));
39974 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_ITEM_ACTIVATED", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
));
39975 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_CACHE_HINT", PyInt_FromLong(wxEVT_COMMAND_LIST_CACHE_HINT
));
39976 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_COL_RIGHT_CLICK", PyInt_FromLong(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
));
39977 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_COL_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
));
39978 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_COL_DRAGGING", PyInt_FromLong(wxEVT_COMMAND_LIST_COL_DRAGGING
));
39979 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_COL_END_DRAG", PyInt_FromLong(wxEVT_COMMAND_LIST_COL_END_DRAG
));
39980 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_ITEM_FOCUSED", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_FOCUSED
));
39982 // Map renamed classes back to their common name for OOR
39983 wxPyPtrTypeMap_Add("wxListCtrl", "wxPyListCtrl");
39985 SWIG_addvarlink(SWIG_globals
,(char*)"TreeCtrlNameStr",_wrap_TreeCtrlNameStr_get
, _wrap_TreeCtrlNameStr_set
);
39987 PyDict_SetItemString(d
,"TR_NO_BUTTONS", SWIG_From_int(static_cast<int >(wxTR_NO_BUTTONS
)));
39990 PyDict_SetItemString(d
,"TR_HAS_BUTTONS", SWIG_From_int(static_cast<int >(wxTR_HAS_BUTTONS
)));
39993 PyDict_SetItemString(d
,"TR_NO_LINES", SWIG_From_int(static_cast<int >(wxTR_NO_LINES
)));
39996 PyDict_SetItemString(d
,"TR_LINES_AT_ROOT", SWIG_From_int(static_cast<int >(wxTR_LINES_AT_ROOT
)));
39999 PyDict_SetItemString(d
,"TR_SINGLE", SWIG_From_int(static_cast<int >(wxTR_SINGLE
)));
40002 PyDict_SetItemString(d
,"TR_MULTIPLE", SWIG_From_int(static_cast<int >(wxTR_MULTIPLE
)));
40005 PyDict_SetItemString(d
,"TR_EXTENDED", SWIG_From_int(static_cast<int >(wxTR_EXTENDED
)));
40008 PyDict_SetItemString(d
,"TR_HAS_VARIABLE_ROW_HEIGHT", SWIG_From_int(static_cast<int >(wxTR_HAS_VARIABLE_ROW_HEIGHT
)));
40011 PyDict_SetItemString(d
,"TR_EDIT_LABELS", SWIG_From_int(static_cast<int >(wxTR_EDIT_LABELS
)));
40014 PyDict_SetItemString(d
,"TR_HIDE_ROOT", SWIG_From_int(static_cast<int >(wxTR_HIDE_ROOT
)));
40017 PyDict_SetItemString(d
,"TR_ROW_LINES", SWIG_From_int(static_cast<int >(wxTR_ROW_LINES
)));
40020 PyDict_SetItemString(d
,"TR_FULL_ROW_HIGHLIGHT", SWIG_From_int(static_cast<int >(wxTR_FULL_ROW_HIGHLIGHT
)));
40023 PyDict_SetItemString(d
,"TR_DEFAULT_STYLE", SWIG_From_int(static_cast<int >(wxTR_DEFAULT_STYLE
)));
40026 PyDict_SetItemString(d
,"TR_TWIST_BUTTONS", SWIG_From_int(static_cast<int >(wxTR_TWIST_BUTTONS
)));
40029 PyDict_SetItemString(d
,"TR_MAC_BUTTONS", SWIG_From_int(static_cast<int >(wxTR_MAC_BUTTONS
)));
40032 PyDict_SetItemString(d
,"TR_AQUA_BUTTONS", SWIG_From_int(static_cast<int >(wxTR_AQUA_BUTTONS
)));
40035 PyDict_SetItemString(d
,"TreeItemIcon_Normal", SWIG_From_int(static_cast<int >(wxTreeItemIcon_Normal
)));
40038 PyDict_SetItemString(d
,"TreeItemIcon_Selected", SWIG_From_int(static_cast<int >(wxTreeItemIcon_Selected
)));
40041 PyDict_SetItemString(d
,"TreeItemIcon_Expanded", SWIG_From_int(static_cast<int >(wxTreeItemIcon_Expanded
)));
40044 PyDict_SetItemString(d
,"TreeItemIcon_SelectedExpanded", SWIG_From_int(static_cast<int >(wxTreeItemIcon_SelectedExpanded
)));
40047 PyDict_SetItemString(d
,"TreeItemIcon_Max", SWIG_From_int(static_cast<int >(wxTreeItemIcon_Max
)));
40050 PyDict_SetItemString(d
,"TREE_HITTEST_ABOVE", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ABOVE
)));
40053 PyDict_SetItemString(d
,"TREE_HITTEST_BELOW", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_BELOW
)));
40056 PyDict_SetItemString(d
,"TREE_HITTEST_NOWHERE", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_NOWHERE
)));
40059 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMBUTTON", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMBUTTON
)));
40062 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMICON", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMICON
)));
40065 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMINDENT", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMINDENT
)));
40068 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMLABEL", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMLABEL
)));
40071 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMRIGHT", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMRIGHT
)));
40074 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMSTATEICON", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMSTATEICON
)));
40077 PyDict_SetItemString(d
,"TREE_HITTEST_TOLEFT", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_TOLEFT
)));
40080 PyDict_SetItemString(d
,"TREE_HITTEST_TORIGHT", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_TORIGHT
)));
40083 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMUPPERPART", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMUPPERPART
)));
40086 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMLOWERPART", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMLOWERPART
)));
40089 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEM", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEM
)));
40091 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_TREE_BEGIN_DRAG
));
40092 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_BEGIN_RDRAG", PyInt_FromLong(wxEVT_COMMAND_TREE_BEGIN_RDRAG
));
40093 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT", PyInt_FromLong(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
));
40094 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_END_LABEL_EDIT", PyInt_FromLong(wxEVT_COMMAND_TREE_END_LABEL_EDIT
));
40095 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_DELETE_ITEM", PyInt_FromLong(wxEVT_COMMAND_TREE_DELETE_ITEM
));
40096 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_GET_INFO", PyInt_FromLong(wxEVT_COMMAND_TREE_GET_INFO
));
40097 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_SET_INFO", PyInt_FromLong(wxEVT_COMMAND_TREE_SET_INFO
));
40098 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_EXPANDED", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_EXPANDED
));
40099 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_EXPANDING", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_EXPANDING
));
40100 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_COLLAPSED", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
));
40101 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_COLLAPSING", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
));
40102 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_SEL_CHANGED", PyInt_FromLong(wxEVT_COMMAND_TREE_SEL_CHANGED
));
40103 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_SEL_CHANGING", PyInt_FromLong(wxEVT_COMMAND_TREE_SEL_CHANGING
));
40104 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_KEY_DOWN", PyInt_FromLong(wxEVT_COMMAND_TREE_KEY_DOWN
));
40105 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_ACTIVATED", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
));
40106 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
));
40107 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
));
40108 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_END_DRAG", PyInt_FromLong(wxEVT_COMMAND_TREE_END_DRAG
));
40109 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK", PyInt_FromLong(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
));
40110 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
));
40111 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_MENU", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_MENU
));
40113 // Map renamed classes back to their common name for OOR
40114 wxPyPtrTypeMap_Add("wxTreeItemData", "wxPyTreeItemData");
40115 wxPyPtrTypeMap_Add("wxTreeCtrl", "wxPyTreeCtrl");
40117 SWIG_addvarlink(SWIG_globals
,(char*)"DirDialogDefaultFolderStr",_wrap_DirDialogDefaultFolderStr_get
, _wrap_DirDialogDefaultFolderStr_set
);
40119 PyDict_SetItemString(d
,"DIRCTRL_DIR_ONLY", SWIG_From_int(static_cast<int >(wxDIRCTRL_DIR_ONLY
)));
40122 PyDict_SetItemString(d
,"DIRCTRL_SELECT_FIRST", SWIG_From_int(static_cast<int >(wxDIRCTRL_SELECT_FIRST
)));
40125 PyDict_SetItemString(d
,"DIRCTRL_SHOW_FILTERS", SWIG_From_int(static_cast<int >(wxDIRCTRL_SHOW_FILTERS
)));
40128 PyDict_SetItemString(d
,"DIRCTRL_3D_INTERNAL", SWIG_From_int(static_cast<int >(wxDIRCTRL_3D_INTERNAL
)));
40131 PyDict_SetItemString(d
,"DIRCTRL_EDIT_LABELS", SWIG_From_int(static_cast<int >(wxDIRCTRL_EDIT_LABELS
)));
40134 PyDict_SetItemString(d
,"FRAME_EX_CONTEXTHELP", SWIG_From_int(static_cast<int >(wxFRAME_EX_CONTEXTHELP
)));
40137 PyDict_SetItemString(d
,"DIALOG_EX_CONTEXTHELP", SWIG_From_int(static_cast<int >(wxDIALOG_EX_CONTEXTHELP
)));
40139 PyDict_SetItemString(d
, "wxEVT_HELP", PyInt_FromLong(wxEVT_HELP
));
40140 PyDict_SetItemString(d
, "wxEVT_DETAILED_HELP", PyInt_FromLong(wxEVT_DETAILED_HELP
));
40142 wxPyPtrTypeMap_Add("wxDragImage", "wxGenericDragImage");
40144 SWIG_addvarlink(SWIG_globals
,(char*)"DatePickerCtrlNameStr",_wrap_DatePickerCtrlNameStr_get
, _wrap_DatePickerCtrlNameStr_set
);
40146 PyDict_SetItemString(d
,"DP_DEFAULT", SWIG_From_int(static_cast<int >(wxDP_DEFAULT
)));
40149 PyDict_SetItemString(d
,"DP_SPIN", SWIG_From_int(static_cast<int >(wxDP_SPIN
)));
40152 PyDict_SetItemString(d
,"DP_DROPDOWN", SWIG_From_int(static_cast<int >(wxDP_DROPDOWN
)));
40155 PyDict_SetItemString(d
,"DP_SHOWCENTURY", SWIG_From_int(static_cast<int >(wxDP_SHOWCENTURY
)));
40158 PyDict_SetItemString(d
,"DP_ALLOWNONE", SWIG_From_int(static_cast<int >(wxDP_ALLOWNONE
)));