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 * ----------------------------------------------------------------------------- */
14 template<class T
> class SwigValueWrapper
{
17 SwigValueWrapper() : tt(0) { }
18 SwigValueWrapper(const SwigValueWrapper
<T
>& rhs
) : tt(new T(*rhs
.tt
)) { }
19 SwigValueWrapper(const T
& t
) : tt(new T(t
)) { }
20 ~SwigValueWrapper() { delete tt
; }
21 SwigValueWrapper
& operator=(const T
& t
) { delete tt
; tt
= new T(t
); return *this; }
22 operator T
&() const { return *tt
; }
23 T
*operator&() { return tt
; }
25 SwigValueWrapper
& operator=(const SwigValueWrapper
<T
>& rhs
);
29 /***********************************************************************
31 * This section contains generic SWIG labels for method/variable
32 * declarations/attributes, and other compiler dependent labels.
34 ************************************************************************/
36 /* template workaround for compilers that cannot correctly implement the C++ standard */
37 #ifndef SWIGTEMPLATEDISAMBIGUATOR
38 # if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560)
39 # define SWIGTEMPLATEDISAMBIGUATOR template
41 # define SWIGTEMPLATEDISAMBIGUATOR
45 /* inline attribute */
47 # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
48 # define SWIGINLINE inline
54 /* attribute recognised by some compilers to avoid 'unused' warnings */
56 # if defined(__GNUC__) || defined(__ICC)
57 # define SWIGUNUSED __attribute__ ((unused))
63 /* internal SWIG method */
65 # define SWIGINTERN static SWIGUNUSED
68 /* internal inline SWIG method */
69 #ifndef SWIGINTERNINLINE
70 # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
73 /* exporting methods for Windows DLLs */
75 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
76 # if defined(STATIC_LINKED)
79 # define SWIGEXPORT __declspec(dllexport)
86 /* calling conventions for Windows */
88 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
89 # define SWIGSTDCALL __stdcall
99 /***********************************************************************
102 * This file contains generic CAPI SWIG runtime support for pointer
105 ************************************************************************/
107 /* This should only be incremented when either the layout of swig_type_info changes,
108 or for whatever reason, the runtime changes incompatibly */
109 #define SWIG_RUNTIME_VERSION "2"
111 /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
112 #ifdef SWIG_TYPE_TABLE
113 # define SWIG_QUOTE_STRING(x) #x
114 # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
115 # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
117 # define SWIG_TYPE_TABLE_NAME
121 You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
122 creating a static or dynamic library from the swig runtime code.
123 In 99.9% of the cases, swig just needs to declare them as 'static'.
125 But only do this if is strictly necessary, ie, if you have problems
126 with your compiler or so.
130 # define SWIGRUNTIME SWIGINTERN
133 #ifndef SWIGRUNTIMEINLINE
134 # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
143 typedef void *(*swig_converter_func
)(void *);
144 typedef struct swig_type_info
*(*swig_dycast_func
)(void **);
146 /* Structure to store inforomation on one type */
147 typedef struct swig_type_info
{
148 const char *name
; /* mangled name of this type */
149 const char *str
; /* human readable name of this type */
150 swig_dycast_func dcast
; /* dynamic cast function down a hierarchy */
151 struct swig_cast_info
*cast
; /* linked list of types that can cast into this type */
152 void *clientdata
; /* language specific type data */
155 /* Structure to store a type and conversion function used for casting */
156 typedef struct swig_cast_info
{
157 swig_type_info
*type
; /* pointer to type that is equivalent to this type */
158 swig_converter_func converter
; /* function to cast the void pointers */
159 struct swig_cast_info
*next
; /* pointer to next cast in linked list */
160 struct swig_cast_info
*prev
; /* pointer to the previous cast */
163 /* Structure used to store module information
164 * Each module generates one structure like this, and the runtime collects
165 * all of these structures and stores them in a circularly linked list.*/
166 typedef struct swig_module_info
{
167 swig_type_info
**types
; /* Array of pointers to swig_type_info structures that are in this module */
168 size_t size
; /* Number of types in this module */
169 struct swig_module_info
*next
; /* Pointer to next element in circularly linked list */
170 swig_type_info
**type_initial
; /* Array of initially generated type structures */
171 swig_cast_info
**cast_initial
; /* Array of initially generated casting structures */
172 void *clientdata
; /* Language specific module data */
177 Compare two type names skipping the space characters, therefore
178 "char*" == "char *" and "Class<int>" == "Class<int >", etc.
180 Return 0 when the two name types are equivalent, as in
181 strncmp, but skipping ' '.
184 SWIG_TypeNameComp(const char *f1
, const char *l1
,
185 const char *f2
, const char *l2
) {
186 for (;(f1
!= l1
) && (f2
!= l2
); ++f1
, ++f2
) {
187 while ((*f1
== ' ') && (f1
!= l1
)) ++f1
;
188 while ((*f2
== ' ') && (f2
!= l2
)) ++f2
;
189 if (*f1
!= *f2
) return (int)(*f1
- *f2
);
191 return (l1
- f1
) - (l2
- f2
);
195 Check type equivalence in a name list like <name1>|<name2>|...
196 Return 0 if not equal, 1 if equal
199 SWIG_TypeEquiv(const char *nb
, const char *tb
) {
201 const char* te
= tb
+ strlen(tb
);
203 while (!equiv
&& *ne
) {
204 for (nb
= ne
; *ne
; ++ne
) {
205 if (*ne
== '|') break;
207 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
214 Check type equivalence in a name list like <name1>|<name2>|...
215 Return 0 if equal, -1 if nb < tb, 1 if nb > tb
218 SWIG_TypeCompare(const char *nb
, const char *tb
) {
220 const char* te
= tb
+ strlen(tb
);
222 while (!equiv
&& *ne
) {
223 for (nb
= ne
; *ne
; ++ne
) {
224 if (*ne
== '|') break;
226 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
233 /* think of this as a c++ template<> or a scheme macro */
234 #define SWIG_TypeCheck_Template(comparison, ty) \
236 swig_cast_info *iter = ty->cast; \
239 if (iter == ty->cast) return iter; \
240 /* Move iter to the top of the linked list */ \
241 iter->prev->next = iter->next; \
243 iter->next->prev = iter->prev; \
244 iter->next = ty->cast; \
246 if (ty->cast) ty->cast->prev = iter; \
258 SWIGRUNTIME swig_cast_info
*
259 SWIG_TypeCheck(const char *c
, swig_type_info
*ty
) {
260 SWIG_TypeCheck_Template(strcmp(iter
->type
->name
, c
) == 0, ty
);
263 /* Same as previous function, except strcmp is replaced with a pointer comparison */
264 SWIGRUNTIME swig_cast_info
*
265 SWIG_TypeCheckStruct(swig_type_info
*from
, swig_type_info
*into
) {
266 SWIG_TypeCheck_Template(iter
->type
== from
, into
);
270 Cast a pointer up an inheritance hierarchy
272 SWIGRUNTIMEINLINE
void *
273 SWIG_TypeCast(swig_cast_info
*ty
, void *ptr
) {
274 return ((!ty
) || (!ty
->converter
)) ? ptr
: (*ty
->converter
)(ptr
);
278 Dynamic pointer casting. Down an inheritance hierarchy
280 SWIGRUNTIME swig_type_info
*
281 SWIG_TypeDynamicCast(swig_type_info
*ty
, void **ptr
) {
282 swig_type_info
*lastty
= ty
;
283 if (!ty
|| !ty
->dcast
) return ty
;
284 while (ty
&& (ty
->dcast
)) {
285 ty
= (*ty
->dcast
)(ptr
);
292 Return the name associated with this type
294 SWIGRUNTIMEINLINE
const char *
295 SWIG_TypeName(const swig_type_info
*ty
) {
300 Return the pretty name associated with this type,
301 that is an unmangled type name in a form presentable to the user.
303 SWIGRUNTIME
const char *
304 SWIG_TypePrettyName(const swig_type_info
*type
) {
305 /* The "str" field contains the equivalent pretty names of the
306 type, separated by vertical-bar characters. We choose
307 to print the last name, as it is often (?) the most
309 if (type
->str
!= NULL
) {
310 const char *last_name
= type
->str
;
312 for (s
= type
->str
; *s
; s
++)
313 if (*s
== '|') last_name
= s
+1;
321 Set the clientdata field for a type
324 SWIG_TypeClientData(swig_type_info
*ti
, void *clientdata
) {
325 swig_cast_info
*cast
= ti
->cast
;
326 /* if (ti->clientdata == clientdata) return; */
327 ti
->clientdata
= clientdata
;
330 if (!cast
->converter
) {
331 swig_type_info
*tc
= cast
->type
;
332 if (!tc
->clientdata
) {
333 SWIG_TypeClientData(tc
, clientdata
);
341 Search for a swig_type_info structure only by mangled name
342 Search is a O(log #types)
344 We start searching at module start, and finish searching when start == end.
345 Note: if start == end at the beginning of the function, we go all the way around
348 SWIGRUNTIME swig_type_info
*
349 SWIG_MangledTypeQueryModule(swig_module_info
*start
,
350 swig_module_info
*end
,
352 swig_module_info
*iter
= start
;
355 register size_t l
= 0;
356 register size_t r
= iter
->size
- 1;
358 /* since l+r >= 0, we can (>> 1) instead (/ 2) */
359 register size_t i
= (l
+ r
) >> 1;
360 const char *iname
= iter
->types
[i
]->name
;
362 register int compare
= strcmp(name
, iname
);
364 return iter
->types
[i
];
365 } else if (compare
< 0) {
371 } else if (compare
> 0) {
375 break; /* should never happen */
380 } while (iter
!= end
);
385 Search for a swig_type_info structure for either a mangled name or a human readable name.
386 It first searches the mangled names of the types, which is a O(log #types)
387 If a type is not found it then searches the human readable names, which is O(#types).
389 We start searching at module start, and finish searching when start == end.
390 Note: if start == end at the beginning of the function, we go all the way around
393 SWIGRUNTIME swig_type_info
*
394 SWIG_TypeQueryModule(swig_module_info
*start
,
395 swig_module_info
*end
,
397 /* STEP 1: Search the name field using binary search */
398 swig_type_info
*ret
= SWIG_MangledTypeQueryModule(start
, end
, name
);
402 /* STEP 2: If the type hasn't been found, do a complete search
403 of the str field (the human readable name) */
404 swig_module_info
*iter
= start
;
406 register size_t i
= 0;
407 for (; i
< iter
->size
; ++i
) {
408 if (iter
->types
[i
]->str
&& (SWIG_TypeEquiv(iter
->types
[i
]->str
, name
)))
409 return iter
->types
[i
];
412 } while (iter
!= end
);
415 /* neither found a match */
421 Pack binary data into a string
424 SWIG_PackData(char *c
, void *ptr
, size_t sz
) {
425 static const char hex
[17] = "0123456789abcdef";
426 register const unsigned char *u
= (unsigned char *) ptr
;
427 register const unsigned char *eu
= u
+ sz
;
428 for (; u
!= eu
; ++u
) {
429 register unsigned char uu
= *u
;
430 *(c
++) = hex
[(uu
& 0xf0) >> 4];
431 *(c
++) = hex
[uu
& 0xf];
437 Unpack binary data from a string
439 SWIGRUNTIME
const char *
440 SWIG_UnpackData(const char *c
, void *ptr
, size_t sz
) {
441 register unsigned char *u
= (unsigned char *) ptr
;
442 register const unsigned char *eu
= u
+ sz
;
443 for (; u
!= eu
; ++u
) {
444 register char d
= *(c
++);
445 register unsigned char uu
= 0;
446 if ((d
>= '0') && (d
<= '9'))
447 uu
= ((d
- '0') << 4);
448 else if ((d
>= 'a') && (d
<= 'f'))
449 uu
= ((d
- ('a'-10)) << 4);
453 if ((d
>= '0') && (d
<= '9'))
455 else if ((d
>= 'a') && (d
<= 'f'))
456 uu
|= (d
- ('a'-10));
465 Pack 'void *' into a string buffer.
468 SWIG_PackVoidPtr(char *buff
, void *ptr
, const char *name
, size_t bsz
) {
470 if ((2*sizeof(void *) + 2) > bsz
) return 0;
472 r
= SWIG_PackData(r
,&ptr
,sizeof(void *));
473 if (strlen(name
) + 1 > (bsz
- (r
- buff
))) return 0;
478 SWIGRUNTIME
const char *
479 SWIG_UnpackVoidPtr(const char *c
, void **ptr
, const char *name
) {
481 if (strcmp(c
,"NULL") == 0) {
488 return SWIG_UnpackData(++c
,ptr
,sizeof(void *));
492 SWIG_PackDataName(char *buff
, void *ptr
, size_t sz
, const char *name
, size_t bsz
) {
494 size_t lname
= (name
? strlen(name
) : 0);
495 if ((2*sz
+ 2 + lname
) > bsz
) return 0;
497 r
= SWIG_PackData(r
,ptr
,sz
);
499 strncpy(r
,name
,lname
+1);
506 SWIGRUNTIME
const char *
507 SWIG_UnpackDataName(const char *c
, void *ptr
, size_t sz
, const char *name
) {
509 if (strcmp(c
,"NULL") == 0) {
516 return SWIG_UnpackData(++c
,ptr
,sz
);
523 /* -----------------------------------------------------------------------------
524 * SWIG API. Portion that goes into the runtime
525 * ----------------------------------------------------------------------------- */
531 /* -----------------------------------------------------------------------------
532 * for internal method declarations
533 * ----------------------------------------------------------------------------- */
536 # define SWIGINTERN static SWIGUNUSED
539 #ifndef SWIGINTERNINLINE
540 # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
544 Exception handling in wrappers
546 #define SWIG_fail goto fail
547 #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
548 #define SWIG_append_errmsg(msg) SWIG_Python_AddErrMesg(msg,0)
549 #define SWIG_preppend_errmsg(msg) SWIG_Python_AddErrMesg(msg,1)
550 #define SWIG_type_error(type,obj) SWIG_Python_TypeError(type,obj)
551 #define SWIG_null_ref(type) SWIG_Python_NullRef(type)
556 #define SWIG_contract_assert(expr, msg) \
557 if (!(expr)) { PyErr_SetString(PyExc_RuntimeError, (char *) msg ); goto fail; } else
559 /* -----------------------------------------------------------------------------
560 * Constant declarations
561 * ----------------------------------------------------------------------------- */
564 #define SWIG_PY_INT 1
565 #define SWIG_PY_FLOAT 2
566 #define SWIG_PY_STRING 3
567 #define SWIG_PY_POINTER 4
568 #define SWIG_PY_BINARY 5
570 /* Constant information structure */
571 typedef struct swig_const_info
{
577 swig_type_info
**ptype
;
581 /* -----------------------------------------------------------------------------
582 * Alloc. memory flags
583 * ----------------------------------------------------------------------------- */
584 #define SWIG_OLDOBJ 1
585 #define SWIG_NEWOBJ SWIG_OLDOBJ + 1
586 #define SWIG_PYSTR SWIG_NEWOBJ + 1
593 /***********************************************************************
596 * This file contains the runtime support for Python modules
597 * and includes code for managing global variables and pointer
600 * Author : David Beazley (beazley@cs.uchicago.edu)
601 ************************************************************************/
603 /* Common SWIG API */
604 #define SWIG_ConvertPtr(obj, pp, type, flags) SWIG_Python_ConvertPtr(obj, pp, type, flags)
605 #define SWIG_NewPointerObj(p, type, flags) SWIG_Python_NewPointerObj(p, type, flags)
606 #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
609 /* Python-specific SWIG API */
610 #define SWIG_ConvertPacked(obj, ptr, sz, ty, flags) SWIG_Python_ConvertPacked(obj, ptr, sz, ty, flags)
611 #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
614 #define SWIG_GetModule(clientdata) SWIG_Python_GetModule()
615 #define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
617 /* -----------------------------------------------------------------------------
618 * Pointer declarations
619 * ----------------------------------------------------------------------------- */
621 Use SWIG_NO_COBJECT_TYPES to force the use of strings to represent
622 C/C++ pointers in the python side. Very useful for debugging, but
625 #if !defined(SWIG_NO_COBJECT_TYPES) && !defined(SWIG_COBJECT_TYPES)
626 # define SWIG_COBJECT_TYPES
629 /* Flags for pointer conversion */
630 #define SWIG_POINTER_EXCEPTION 0x1
631 #define SWIG_POINTER_DISOWN 0x2
634 /* Add PyOS_snprintf for old Pythons */
635 #if PY_VERSION_HEX < 0x02020000
636 #define PyOS_snprintf snprintf
643 /* -----------------------------------------------------------------------------
644 * Create a new pointer string
645 * ----------------------------------------------------------------------------- */
646 #ifndef SWIG_BUFFER_SIZE
647 #define SWIG_BUFFER_SIZE 1024
650 /* A crude PyString_FromFormat implementation for old Pythons */
651 #if PY_VERSION_HEX < 0x02020000
653 PyString_FromFormat(const char *fmt
, ...) {
655 char buf
[SWIG_BUFFER_SIZE
* 2];
658 res
= vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
660 return (res
< 0 || res
>= sizeof(buf
)) ? 0 : PyString_FromString(buf
);
664 #if PY_VERSION_HEX < 0x01060000
665 #define PyObject_Del(op) PyMem_DEL((op))
668 #if defined(SWIG_COBJECT_TYPES)
669 #if !defined(SWIG_COBJECT_PYTHON)
670 /* -----------------------------------------------------------------------------
671 * Implements a simple Swig Object type, and use it instead of PyCObject
672 * ----------------------------------------------------------------------------- */
680 /* Declarations for objects of type PySwigObject */
683 PySwigObject_print(PySwigObject
*v
, FILE *fp
, int flags
)
685 char result
[SWIG_BUFFER_SIZE
];
687 if (SWIG_PackVoidPtr(result
, v
->ptr
, v
->desc
, sizeof(result
))) {
688 fputs("<Swig Object at ", fp
); fputs(result
, fp
); fputs(">", fp
);
695 SWIGRUNTIME PyObject
*
696 PySwigObject_repr(PySwigObject
*v
)
698 char result
[SWIG_BUFFER_SIZE
];
699 return SWIG_PackVoidPtr(result
, v
->ptr
, v
->desc
, sizeof(result
)) ?
700 PyString_FromFormat("<Swig Object at %s>", result
) : 0;
703 SWIGRUNTIME PyObject
*
704 PySwigObject_str(PySwigObject
*v
)
706 char result
[SWIG_BUFFER_SIZE
];
707 return SWIG_PackVoidPtr(result
, v
->ptr
, v
->desc
, sizeof(result
)) ?
708 PyString_FromString(result
) : 0;
711 SWIGRUNTIME PyObject
*
712 PySwigObject_long(PySwigObject
*v
)
714 return PyLong_FromVoidPtr(v
->ptr
);
717 SWIGRUNTIME PyObject
*
718 PySwigObject_format(const char* fmt
, PySwigObject
*v
)
720 PyObject
*res
= NULL
;
721 PyObject
*args
= PyTuple_New(1);
722 if (args
&& (PyTuple_SetItem(args
, 0, PySwigObject_long(v
)) == 0)) {
723 PyObject
*ofmt
= PyString_FromString(fmt
);
725 res
= PyString_Format(ofmt
,args
);
733 SWIGRUNTIME PyObject
*
734 PySwigObject_oct(PySwigObject
*v
)
736 return PySwigObject_format("%o",v
);
739 SWIGRUNTIME PyObject
*
740 PySwigObject_hex(PySwigObject
*v
)
742 return PySwigObject_format("%x",v
);
746 PySwigObject_compare(PySwigObject
*v
, PySwigObject
*w
)
748 int c
= strcmp(v
->desc
, w
->desc
);
750 return (c
> 0) ? 1 : -1;
754 return (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
759 PySwigObject_dealloc(PySwigObject
*self
)
764 SWIGRUNTIME PyTypeObject
*
765 PySwigObject_type(void) {
766 static char pyswigobject_type__doc__
[] =
767 "Swig object carries a C/C++ instance pointer";
769 static PyNumberMethods PySwigObject_as_number
= {
770 (binaryfunc
)0, /*nb_add*/
771 (binaryfunc
)0, /*nb_subtract*/
772 (binaryfunc
)0, /*nb_multiply*/
773 (binaryfunc
)0, /*nb_divide*/
774 (binaryfunc
)0, /*nb_remainder*/
775 (binaryfunc
)0, /*nb_divmod*/
776 (ternaryfunc
)0,/*nb_power*/
777 (unaryfunc
)0, /*nb_negative*/
778 (unaryfunc
)0, /*nb_positive*/
779 (unaryfunc
)0, /*nb_absolute*/
780 (inquiry
)0, /*nb_nonzero*/
787 (coercion
)0, /*nb_coerce*/
788 (unaryfunc
)PySwigObject_long
, /*nb_int*/
789 (unaryfunc
)PySwigObject_long
, /*nb_long*/
790 (unaryfunc
)0, /*nb_float*/
791 (unaryfunc
)PySwigObject_oct
, /*nb_oct*/
792 (unaryfunc
)PySwigObject_hex
, /*nb_hex*/
793 #if PY_VERSION_HEX >= 0x02020000
794 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
795 #elif PY_VERSION_HEX >= 0x02000000
796 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
800 static PyTypeObject pyswigobject_type
801 #if !defined(__cplusplus)
803 static int type_init
= 0;
808 PyObject_HEAD_INIT(&PyType_Type
)
810 (char *)"PySwigObject", /*tp_name*/
811 sizeof(PySwigObject
), /*tp_basicsize*/
814 (destructor
)PySwigObject_dealloc
, /*tp_dealloc*/
815 (printfunc
)PySwigObject_print
, /*tp_print*/
816 (getattrfunc
)0, /*tp_getattr*/
817 (setattrfunc
)0, /*tp_setattr*/
818 (cmpfunc
)PySwigObject_compare
, /*tp_compare*/
819 (reprfunc
)PySwigObject_repr
, /*tp_repr*/
820 &PySwigObject_as_number
, /*tp_as_number*/
821 0, /*tp_as_sequence*/
823 (hashfunc
)0, /*tp_hash*/
824 (ternaryfunc
)0, /*tp_call*/
825 (reprfunc
)PySwigObject_str
, /*tp_str*/
826 /* Space for future expansion */
828 pyswigobject_type__doc__
, /* Documentation string */
829 #if PY_VERSION_HEX >= 0x02000000
833 #if PY_VERSION_HEX >= 0x02010000
834 0, /* tp_richcompare */
835 0, /* tp_weaklistoffset */
837 #if PY_VERSION_HEX >= 0x02020000
838 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
840 #if PY_VERSION_HEX >= 0x02030000
844 0,0,0,0 /* tp_alloc -> tp_next */
847 #if !defined(__cplusplus)
848 pyswigobject_type
= tmp
;
852 return &pyswigobject_type
;
855 SWIGRUNTIME PyObject
*
856 PySwigObject_FromVoidPtrAndDesc(void *ptr
, const char *desc
)
858 PySwigObject
*self
= PyObject_NEW(PySwigObject
, PySwigObject_type());
863 return (PyObject
*)self
;
866 SWIGRUNTIMEINLINE
void *
867 PySwigObject_AsVoidPtr(PyObject
*self
)
869 return ((PySwigObject
*)self
)->ptr
;
872 SWIGRUNTIMEINLINE
const char *
873 PySwigObject_GetDesc(PyObject
*self
)
875 return ((PySwigObject
*)self
)->desc
;
878 SWIGRUNTIMEINLINE
int
879 PySwigObject_Check(PyObject
*op
) {
880 return ((op
)->ob_type
== PySwigObject_type())
881 || (strcmp((op
)->ob_type
->tp_name
,"PySwigObject") == 0);
884 /* -----------------------------------------------------------------------------
885 * Implements a simple Swig Packed type, and use it instead of string
886 * ----------------------------------------------------------------------------- */
896 PySwigPacked_print(PySwigPacked
*v
, FILE *fp
, int flags
)
898 char result
[SWIG_BUFFER_SIZE
];
900 fputs("<Swig Packed ", fp
);
901 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
910 SWIGRUNTIME PyObject
*
911 PySwigPacked_repr(PySwigPacked
*v
)
913 char result
[SWIG_BUFFER_SIZE
];
914 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
915 return PyString_FromFormat("<Swig Packed at %s%s>", result
, v
->desc
);
917 return PyString_FromFormat("<Swig Packed %s>", v
->desc
);
921 SWIGRUNTIME PyObject
*
922 PySwigPacked_str(PySwigPacked
*v
)
924 char result
[SWIG_BUFFER_SIZE
];
925 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))){
926 return PyString_FromFormat("%s%s", result
, v
->desc
);
928 return PyString_FromString(v
->desc
);
933 PySwigPacked_compare(PySwigPacked
*v
, PySwigPacked
*w
)
935 int c
= strcmp(v
->desc
, w
->desc
);
937 return (c
> 0) ? 1 : -1;
941 int s
= (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
942 return s
? s
: strncmp((char *)v
->pack
, (char *)w
->pack
, 2*v
->size
);
947 PySwigPacked_dealloc(PySwigPacked
*self
)
953 SWIGRUNTIME PyTypeObject
*
954 PySwigPacked_type(void) {
955 static char pyswigpacked_type__doc__
[] =
956 "Swig object carries a C/C++ instance pointer";
957 static PyTypeObject pyswigpacked_type
958 #if !defined(__cplusplus)
960 static int type_init
= 0;
965 PyObject_HEAD_INIT(&PyType_Type
)
967 (char *)"PySwigPacked", /*tp_name*/
968 sizeof(PySwigPacked
), /*tp_basicsize*/
971 (destructor
)PySwigPacked_dealloc
, /*tp_dealloc*/
972 (printfunc
)PySwigPacked_print
, /*tp_print*/
973 (getattrfunc
)0, /*tp_getattr*/
974 (setattrfunc
)0, /*tp_setattr*/
975 (cmpfunc
)PySwigPacked_compare
, /*tp_compare*/
976 (reprfunc
)PySwigPacked_repr
, /*tp_repr*/
978 0, /*tp_as_sequence*/
980 (hashfunc
)0, /*tp_hash*/
981 (ternaryfunc
)0, /*tp_call*/
982 (reprfunc
)PySwigPacked_str
, /*tp_str*/
983 /* Space for future expansion */
985 pyswigpacked_type__doc__
, /* Documentation string */
986 #if PY_VERSION_HEX >= 0x02000000
990 #if PY_VERSION_HEX >= 0x02010000
991 0, /* tp_richcompare */
992 0, /* tp_weaklistoffset */
994 #if PY_VERSION_HEX >= 0x02020000
995 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
997 #if PY_VERSION_HEX >= 0x02030000
1001 0,0,0,0 /* tp_alloc -> tp_next */
1004 #if !defined(__cplusplus)
1005 pyswigpacked_type
= tmp
;
1009 return &pyswigpacked_type
;
1012 SWIGRUNTIME PyObject
*
1013 PySwigPacked_FromDataAndDesc(void *ptr
, size_t size
, const char *desc
)
1015 PySwigPacked
*self
= PyObject_NEW(PySwigPacked
, PySwigPacked_type());
1019 void *pack
= malloc(size
);
1021 memcpy(pack
, ptr
, size
);
1025 return (PyObject
*) self
;
1031 SWIGRUNTIMEINLINE
const char *
1032 PySwigPacked_UnpackData(PyObject
*obj
, void *ptr
, size_t size
)
1034 PySwigPacked
*self
= (PySwigPacked
*)obj
;
1035 if (self
->size
!= size
) return 0;
1036 memcpy(ptr
, self
->pack
, size
);
1040 SWIGRUNTIMEINLINE
const char *
1041 PySwigPacked_GetDesc(PyObject
*self
)
1043 return ((PySwigPacked
*)self
)->desc
;
1046 SWIGRUNTIMEINLINE
int
1047 PySwigPacked_Check(PyObject
*op
) {
1048 return ((op
)->ob_type
== PySwigPacked_type())
1049 || (strcmp((op
)->ob_type
->tp_name
,"PySwigPacked") == 0);
1053 /* -----------------------------------------------------------------------------
1054 * Use the old Python PyCObject instead of PySwigObject
1055 * ----------------------------------------------------------------------------- */
1057 #define PySwigObject_GetDesc(obj) PyCObject_GetDesc(obj)
1058 #define PySwigObject_Check(obj) PyCObject_Check(obj)
1059 #define PySwigObject_AsVoidPtr(obj) PyCObject_AsVoidPtr(obj)
1060 #define PySwigObject_FromVoidPtrAndDesc(p, d) PyCObject_FromVoidPtrAndDesc(p, d, NULL)
1066 /* -----------------------------------------------------------------------------
1067 * errors manipulation
1068 * ----------------------------------------------------------------------------- */
1071 SWIG_Python_TypeError(const char *type
, PyObject
*obj
)
1074 #if defined(SWIG_COBJECT_TYPES)
1075 if (obj
&& PySwigObject_Check(obj
)) {
1076 const char *otype
= (const char *) PySwigObject_GetDesc(obj
);
1078 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, 'PySwigObject(%s)' is received",
1085 const char *otype
= (obj
? obj
->ob_type
->tp_name
: 0);
1087 PyObject
*str
= PyObject_Str(obj
);
1088 const char *cstr
= str
? PyString_AsString(str
) : 0;
1090 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s(%s)' is received",
1093 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s' is received",
1100 PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
);
1102 PyErr_Format(PyExc_TypeError
, "unexpected type is received");
1106 SWIGRUNTIMEINLINE
void
1107 SWIG_Python_NullRef(const char *type
)
1110 PyErr_Format(PyExc_TypeError
, "null reference of type '%s' was received",type
);
1112 PyErr_Format(PyExc_TypeError
, "null reference was received");
1117 SWIG_Python_AddErrMesg(const char* mesg
, int infront
)
1119 if (PyErr_Occurred()) {
1121 PyObject
*value
= 0;
1122 PyObject
*traceback
= 0;
1123 PyErr_Fetch(&type
, &value
, &traceback
);
1125 PyObject
*old_str
= PyObject_Str(value
);
1129 PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
));
1131 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
1142 SWIG_Python_ArgFail(int argnum
)
1144 if (PyErr_Occurred()) {
1145 /* add information about failing argument */
1147 PyOS_snprintf(mesg
, sizeof(mesg
), "argument number %d:", argnum
);
1148 return SWIG_Python_AddErrMesg(mesg
, 1);
1155 /* -----------------------------------------------------------------------------
1156 * pointers/data manipulation
1157 * ----------------------------------------------------------------------------- */
1159 /* Convert a pointer value */
1161 SWIG_Python_ConvertPtr(PyObject
*obj
, void **ptr
, swig_type_info
*ty
, int flags
) {
1164 static PyObject
*SWIG_this
= 0;
1166 PyObject
*pyobj
= 0;
1170 if (obj
== Py_None
) {
1175 #ifdef SWIG_COBJECT_TYPES
1176 if (!(PySwigObject_Check(obj
))) {
1178 SWIG_this
= PyString_FromString("this");
1180 obj
= PyObject_GetAttr(obj
,SWIG_this
);
1182 if (!obj
) goto type_error
;
1183 if (!PySwigObject_Check(obj
)) {
1188 vptr
= PySwigObject_AsVoidPtr(obj
);
1189 c
= (const char *) PySwigObject_GetDesc(obj
);
1190 if (newref
) { Py_DECREF(obj
); }
1193 if (!(PyString_Check(obj
))) {
1195 SWIG_this
= PyString_FromString("this");
1197 obj
= PyObject_GetAttr(obj
,SWIG_this
);
1199 if (!obj
) goto type_error
;
1200 if (!PyString_Check(obj
)) {
1205 c
= PyString_AsString(obj
);
1206 /* Pointer values must start with leading underscore */
1207 c
= SWIG_UnpackVoidPtr(c
, &vptr
, ty
->name
);
1208 if (newref
) { Py_DECREF(obj
); }
1209 if (!c
) goto type_error
;
1214 tc
= SWIG_TypeCheck(c
,ty
);
1215 if (!tc
) goto type_error
;
1216 *ptr
= SWIG_TypeCast(tc
,vptr
);
1220 if ((pyobj
) && (flags
& SWIG_POINTER_DISOWN
)) {
1221 PyObject_SetAttrString(pyobj
,(char*)"thisown",Py_False
);
1227 if (pyobj
&& !obj
) {
1229 if (PyCFunction_Check(obj
)) {
1230 /* here we get the method pointer for callbacks */
1231 char *doc
= (((PyCFunctionObject
*)obj
) -> m_ml
-> ml_doc
);
1232 c
= doc
? strstr(doc
, "swig_ptr: ") : 0;
1234 c
= ty
? SWIG_UnpackVoidPtr(c
+ 10, &vptr
, ty
->name
) : 0;
1235 if (!c
) goto type_error
;
1240 if (flags
& SWIG_POINTER_EXCEPTION
) {
1242 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
1244 SWIG_Python_TypeError("C/C++ pointer", obj
);
1250 /* Convert a pointer value, signal an exception on a type mismatch */
1252 SWIG_Python_MustGetPtr(PyObject
*obj
, swig_type_info
*ty
, int argnum
, int flags
) {
1254 if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) {
1256 if (flags
& SWIG_POINTER_EXCEPTION
) {
1257 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
1258 SWIG_Python_ArgFail(argnum
);
1264 /* Convert a packed value value */
1266 SWIG_Python_ConvertPacked(PyObject
*obj
, void *ptr
, size_t sz
, swig_type_info
*ty
, int flags
) {
1270 #if defined(SWIG_COBJECT_TYPES) && !defined(SWIG_COBJECT_PYTHON)
1271 c
= PySwigPacked_UnpackData(obj
, ptr
, sz
);
1273 if ((!obj
) || (!PyString_Check(obj
))) goto type_error
;
1274 c
= PyString_AsString(obj
);
1275 /* Pointer values must start with leading underscore */
1276 c
= SWIG_UnpackDataName(c
, ptr
, sz
, ty
->name
);
1278 if (!c
) goto type_error
;
1280 tc
= SWIG_TypeCheck(c
,ty
);
1281 if (!tc
) goto type_error
;
1287 if (flags
& SWIG_POINTER_EXCEPTION
) {
1289 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
1291 SWIG_Python_TypeError("C/C++ packed data", obj
);
1297 /* Create a new array object */
1298 SWIGRUNTIME PyObject
*
1299 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info
*type
, int own
) {
1302 if (!PyErr_Occurred()) {
1303 PyErr_Format(PyExc_TypeError
, "Swig: null type passed to NewPointerObj");
1311 #ifdef SWIG_COBJECT_TYPES
1312 robj
= PySwigObject_FromVoidPtrAndDesc((void *) ptr
, (char *)type
->name
);
1315 char result
[SWIG_BUFFER_SIZE
];
1316 robj
= SWIG_PackVoidPtr(result
, ptr
, type
->name
, sizeof(result
)) ?
1317 PyString_FromString(result
) : 0;
1320 if (!robj
|| (robj
== Py_None
)) return robj
;
1321 if (type
->clientdata
) {
1323 PyObject
*args
= Py_BuildValue((char*)"(O)", robj
);
1325 inst
= PyObject_CallObject((PyObject
*) type
->clientdata
, args
);
1329 PyObject_SetAttrString(inst
,(char*)"thisown",Py_True
);
1337 SWIGRUNTIME PyObject
*
1338 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info
*type
) {
1344 #if defined(SWIG_COBJECT_TYPES) && !defined(SWIG_COBJECT_PYTHON)
1345 robj
= PySwigPacked_FromDataAndDesc((void *) ptr
, sz
, (char *)type
->name
);
1348 char result
[SWIG_BUFFER_SIZE
];
1349 robj
= SWIG_PackDataName(result
, ptr
, sz
, type
->name
, sizeof(result
)) ?
1350 PyString_FromString(result
) : 0;
1356 /* -----------------------------------------------------------------------------*
1358 * -----------------------------------------------------------------------------*/
1360 #ifdef SWIG_LINK_RUNTIME
1361 void *SWIG_ReturnGlobalTypeList(void *);
1364 SWIGRUNTIME swig_module_info
*
1365 SWIG_Python_GetModule(void) {
1366 static void *type_pointer
= (void *)0;
1367 /* first check if module already created */
1368 if (!type_pointer
) {
1369 #ifdef SWIG_LINK_RUNTIME
1370 type_pointer
= SWIG_ReturnGlobalTypeList((void *)0);
1372 type_pointer
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
1373 (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
);
1374 if (PyErr_Occurred()) {
1376 type_pointer
= (void *)0;
1380 return (swig_module_info
*) type_pointer
;
1383 #if PY_MAJOR_VERSION < 2
1384 /* PyModule_AddObject function was introduced in Python 2.0. The following function
1385 is copied out of Python/modsupport.c in python version 2.3.4 */
1387 PyModule_AddObject(PyObject
*m
, char *name
, PyObject
*o
)
1390 if (!PyModule_Check(m
)) {
1391 PyErr_SetString(PyExc_TypeError
,
1392 "PyModule_AddObject() needs module as first arg");
1396 PyErr_SetString(PyExc_TypeError
,
1397 "PyModule_AddObject() needs non-NULL value");
1401 dict
= PyModule_GetDict(m
);
1403 /* Internal error -- modules must have a dict! */
1404 PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__",
1405 PyModule_GetName(m
));
1408 if (PyDict_SetItemString(dict
, name
, o
))
1416 SWIG_Python_SetModule(swig_module_info
*swig_module
) {
1417 static PyMethodDef swig_empty_runtime_method_table
[] = { {NULL
, NULL
, 0, NULL
} };/* Sentinel */
1419 PyObject
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
1420 swig_empty_runtime_method_table
);
1421 PyObject
*pointer
= PyCObject_FromVoidPtr((void *) swig_module
, NULL
);
1422 if (pointer
&& module) {
1423 PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
);
1432 /* -------- TYPES TABLE (BEGIN) -------- */
1434 #define SWIGTYPE_p_bool swig_types[0]
1435 #define SWIGTYPE_p_char swig_types[1]
1436 #define SWIGTYPE_p_form_ops_t swig_types[2]
1437 #define SWIGTYPE_p_int swig_types[3]
1438 #define SWIGTYPE_p_long swig_types[4]
1439 #define SWIGTYPE_p_unsigned_char swig_types[5]
1440 #define SWIGTYPE_p_unsigned_int swig_types[6]
1441 #define SWIGTYPE_p_unsigned_long swig_types[7]
1442 #define SWIGTYPE_p_void swig_types[8]
1443 #define SWIGTYPE_p_wxANIHandler swig_types[9]
1444 #define SWIGTYPE_p_wxAcceleratorTable swig_types[10]
1445 #define SWIGTYPE_p_wxActivateEvent swig_types[11]
1446 #define SWIGTYPE_p_wxArrayInt swig_types[12]
1447 #define SWIGTYPE_p_wxArrayString swig_types[13]
1448 #define SWIGTYPE_p_wxBMPHandler swig_types[14]
1449 #define SWIGTYPE_p_wxBitmap swig_types[15]
1450 #define SWIGTYPE_p_wxBitmapButton swig_types[16]
1451 #define SWIGTYPE_p_wxBookCtrlBase swig_types[17]
1452 #define SWIGTYPE_p_wxBookCtrlBaseEvent swig_types[18]
1453 #define SWIGTYPE_p_wxBoxSizer swig_types[19]
1454 #define SWIGTYPE_p_wxButton swig_types[20]
1455 #define SWIGTYPE_p_wxCURHandler swig_types[21]
1456 #define SWIGTYPE_p_wxCheckBox swig_types[22]
1457 #define SWIGTYPE_p_wxCheckListBox swig_types[23]
1458 #define SWIGTYPE_p_wxChildFocusEvent swig_types[24]
1459 #define SWIGTYPE_p_wxChoice swig_types[25]
1460 #define SWIGTYPE_p_wxChoicebook swig_types[26]
1461 #define SWIGTYPE_p_wxChoicebookEvent swig_types[27]
1462 #define SWIGTYPE_p_wxCloseEvent swig_types[28]
1463 #define SWIGTYPE_p_wxColour swig_types[29]
1464 #define SWIGTYPE_p_wxComboBox swig_types[30]
1465 #define SWIGTYPE_p_wxCommandEvent swig_types[31]
1466 #define SWIGTYPE_p_wxContextHelp swig_types[32]
1467 #define SWIGTYPE_p_wxContextHelpButton swig_types[33]
1468 #define SWIGTYPE_p_wxContextMenuEvent swig_types[34]
1469 #define SWIGTYPE_p_wxControl swig_types[35]
1470 #define SWIGTYPE_p_wxControlWithItems swig_types[36]
1471 #define SWIGTYPE_p_wxCursor swig_types[37]
1472 #define SWIGTYPE_p_wxDC swig_types[38]
1473 #define SWIGTYPE_p_wxDateEvent swig_types[39]
1474 #define SWIGTYPE_p_wxDatePickerCtrl swig_types[40]
1475 #define SWIGTYPE_p_wxDateTime swig_types[41]
1476 #define SWIGTYPE_p_wxDirFilterListCtrl swig_types[42]
1477 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[43]
1478 #define SWIGTYPE_p_wxDropFilesEvent swig_types[44]
1479 #define SWIGTYPE_p_wxDuplexMode swig_types[45]
1480 #define SWIGTYPE_p_wxEraseEvent swig_types[46]
1481 #define SWIGTYPE_p_wxEvent swig_types[47]
1482 #define SWIGTYPE_p_wxEvtHandler swig_types[48]
1483 #define SWIGTYPE_p_wxFSFile swig_types[49]
1484 #define SWIGTYPE_p_wxFileSystem swig_types[50]
1485 #define SWIGTYPE_p_wxFlexGridSizer swig_types[51]
1486 #define SWIGTYPE_p_wxFocusEvent swig_types[52]
1487 #define SWIGTYPE_p_wxFont swig_types[53]
1488 #define SWIGTYPE_p_wxGBSizerItem swig_types[54]
1489 #define SWIGTYPE_p_wxGIFHandler swig_types[55]
1490 #define SWIGTYPE_p_wxGauge swig_types[56]
1491 #define SWIGTYPE_p_wxGenericDirCtrl swig_types[57]
1492 #define SWIGTYPE_p_wxGenericDragImage swig_types[58]
1493 #define SWIGTYPE_p_wxGridBagSizer swig_types[59]
1494 #define SWIGTYPE_p_wxGridSizer swig_types[60]
1495 #define SWIGTYPE_p_wxHelpEvent swig_types[61]
1496 #define SWIGTYPE_p_wxHelpProvider swig_types[62]
1497 #define SWIGTYPE_p_wxICOHandler swig_types[63]
1498 #define SWIGTYPE_p_wxIcon swig_types[64]
1499 #define SWIGTYPE_p_wxIconizeEvent swig_types[65]
1500 #define SWIGTYPE_p_wxIdleEvent swig_types[66]
1501 #define SWIGTYPE_p_wxImage swig_types[67]
1502 #define SWIGTYPE_p_wxImageHandler swig_types[68]
1503 #define SWIGTYPE_p_wxImageList swig_types[69]
1504 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[70]
1505 #define SWIGTYPE_p_wxInitDialogEvent swig_types[71]
1506 #define SWIGTYPE_p_wxItemContainer swig_types[72]
1507 #define SWIGTYPE_p_wxJPEGHandler swig_types[73]
1508 #define SWIGTYPE_p_wxKeyEvent swig_types[74]
1509 #define SWIGTYPE_p_wxLayoutConstraints swig_types[75]
1510 #define SWIGTYPE_p_wxListBox swig_types[76]
1511 #define SWIGTYPE_p_wxListEvent swig_types[77]
1512 #define SWIGTYPE_p_wxListItem swig_types[78]
1513 #define SWIGTYPE_p_wxListItemAttr swig_types[79]
1514 #define SWIGTYPE_p_wxListView swig_types[80]
1515 #define SWIGTYPE_p_wxListbook swig_types[81]
1516 #define SWIGTYPE_p_wxListbookEvent swig_types[82]
1517 #define SWIGTYPE_p_wxMaximizeEvent swig_types[83]
1518 #define SWIGTYPE_p_wxMemoryDC swig_types[84]
1519 #define SWIGTYPE_p_wxMenu swig_types[85]
1520 #define SWIGTYPE_p_wxMenuBar swig_types[86]
1521 #define SWIGTYPE_p_wxMenuEvent swig_types[87]
1522 #define SWIGTYPE_p_wxMenuItem swig_types[88]
1523 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[89]
1524 #define SWIGTYPE_p_wxMouseEvent swig_types[90]
1525 #define SWIGTYPE_p_wxMoveEvent swig_types[91]
1526 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[92]
1527 #define SWIGTYPE_p_wxNcPaintEvent swig_types[93]
1528 #define SWIGTYPE_p_wxNotebook swig_types[94]
1529 #define SWIGTYPE_p_wxNotebookEvent swig_types[95]
1530 #define SWIGTYPE_p_wxNotifyEvent swig_types[96]
1531 #define SWIGTYPE_p_wxObject swig_types[97]
1532 #define SWIGTYPE_p_wxPCXHandler swig_types[98]
1533 #define SWIGTYPE_p_wxPNGHandler swig_types[99]
1534 #define SWIGTYPE_p_wxPNMHandler swig_types[100]
1535 #define SWIGTYPE_p_wxPaintEvent swig_types[101]
1536 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[102]
1537 #define SWIGTYPE_p_wxPaperSize swig_types[103]
1538 #define SWIGTYPE_p_wxPoint swig_types[104]
1539 #define SWIGTYPE_p_wxPyApp swig_types[105]
1540 #define SWIGTYPE_p_wxPyCommandEvent swig_types[106]
1541 #define SWIGTYPE_p_wxPyControl swig_types[107]
1542 #define SWIGTYPE_p_wxPyEvent swig_types[108]
1543 #define SWIGTYPE_p_wxPyImageHandler swig_types[109]
1544 #define SWIGTYPE_p_wxPyListCtrl swig_types[110]
1545 #define SWIGTYPE_p_wxPySizer swig_types[111]
1546 #define SWIGTYPE_p_wxPyTreeCtrl swig_types[112]
1547 #define SWIGTYPE_p_wxPyTreeItemData swig_types[113]
1548 #define SWIGTYPE_p_wxPyValidator swig_types[114]
1549 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[115]
1550 #define SWIGTYPE_p_wxRadioBox swig_types[116]
1551 #define SWIGTYPE_p_wxRadioButton swig_types[117]
1552 #define SWIGTYPE_p_wxRect swig_types[118]
1553 #define SWIGTYPE_p_wxScrollBar swig_types[119]
1554 #define SWIGTYPE_p_wxScrollEvent swig_types[120]
1555 #define SWIGTYPE_p_wxScrollWinEvent swig_types[121]
1556 #define SWIGTYPE_p_wxSetCursorEvent swig_types[122]
1557 #define SWIGTYPE_p_wxShowEvent swig_types[123]
1558 #define SWIGTYPE_p_wxSimpleHelpProvider swig_types[124]
1559 #define SWIGTYPE_p_wxSize swig_types[125]
1560 #define SWIGTYPE_p_wxSizeEvent swig_types[126]
1561 #define SWIGTYPE_p_wxSizer swig_types[127]
1562 #define SWIGTYPE_p_wxSizerItem swig_types[128]
1563 #define SWIGTYPE_p_wxSlider swig_types[129]
1564 #define SWIGTYPE_p_wxSpinButton swig_types[130]
1565 #define SWIGTYPE_p_wxSpinCtrl swig_types[131]
1566 #define SWIGTYPE_p_wxSpinEvent swig_types[132]
1567 #define SWIGTYPE_p_wxStaticBitmap swig_types[133]
1568 #define SWIGTYPE_p_wxStaticBox swig_types[134]
1569 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[135]
1570 #define SWIGTYPE_p_wxStaticLine swig_types[136]
1571 #define SWIGTYPE_p_wxStaticText swig_types[137]
1572 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[138]
1573 #define SWIGTYPE_p_wxString swig_types[139]
1574 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[140]
1575 #define SWIGTYPE_p_wxTIFFHandler swig_types[141]
1576 #define SWIGTYPE_p_wxTextAttr swig_types[142]
1577 #define SWIGTYPE_p_wxTextCtrl swig_types[143]
1578 #define SWIGTYPE_p_wxTextUrlEvent swig_types[144]
1579 #define SWIGTYPE_p_wxToggleButton swig_types[145]
1580 #define SWIGTYPE_p_wxToolBar swig_types[146]
1581 #define SWIGTYPE_p_wxToolBarBase swig_types[147]
1582 #define SWIGTYPE_p_wxToolBarToolBase swig_types[148]
1583 #define SWIGTYPE_p_wxTreeEvent swig_types[149]
1584 #define SWIGTYPE_p_wxTreeItemId swig_types[150]
1585 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[151]
1586 #define SWIGTYPE_p_wxValidator swig_types[152]
1587 #define SWIGTYPE_p_wxVisualAttributes swig_types[153]
1588 #define SWIGTYPE_p_wxWindow swig_types[154]
1589 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[155]
1590 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[156]
1591 #define SWIGTYPE_p_wxXPMHandler swig_types[157]
1592 #define SWIGTYPE_ptrdiff_t swig_types[158]
1593 #define SWIGTYPE_std__ptrdiff_t swig_types[159]
1594 #define SWIGTYPE_unsigned_int swig_types[160]
1595 static swig_type_info
*swig_types
[162];
1596 static swig_module_info swig_module
= {swig_types
, 161, 0, 0, 0, 0};
1597 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
1598 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
1600 /* -------- TYPES TABLE (END) -------- */
1603 /*-----------------------------------------------
1604 @(target):= _controls_.so
1605 ------------------------------------------------*/
1606 #define SWIG_init init_controls_
1608 #define SWIG_name "_controls_"
1610 #include "wx/wxPython/wxPython.h"
1611 #include "wx/wxPython/pyclasses.h"
1613 static const wxString
wxPyPanelNameStr(wxPanelNameStr
);
1614 static const wxString
wxPyEmptyString(wxEmptyString
);
1615 static const wxString
wxPyControlNameStr(wxControlNameStr
);
1617 const wxArrayString wxPyEmptyStringArray
;
1619 static const wxString
wxPyButtonNameStr(wxButtonNameStr
);
1621 /*@/opt/swig/share/swig/1.3.27/python/pymacros.swg,72,SWIG_define@*/
1622 #define SWIG_From_int PyInt_FromLong
1630 SWIG_CheckLongInRange(long value
, long min_value
, long max_value
,
1633 if (value
< min_value
) {
1635 PyErr_Format(PyExc_OverflowError
,
1636 "value %ld is less than '%s' minimum %ld",
1637 value
, errmsg
, min_value
);
1640 } else if (value
> max_value
) {
1642 PyErr_Format(PyExc_OverflowError
,
1643 "value %ld is greater than '%s' maximum %ld",
1644 value
, errmsg
, max_value
);
1653 SWIG_AsVal_long(PyObject
* obj
, long* val
)
1655 if (PyNumber_Check(obj
)) {
1656 if (val
) *val
= PyInt_AsLong(obj
);
1660 SWIG_type_error("number", obj
);
1666 #if INT_MAX != LONG_MAX
1668 SWIG_AsVal_int(PyObject
*obj
, int *val
)
1670 const char* errmsg
= val
? "int" : (char*)0;
1672 if (SWIG_AsVal_long(obj
, &v
)) {
1673 if (SWIG_CheckLongInRange(v
, INT_MIN
,INT_MAX
, errmsg
)) {
1674 if (val
) *val
= static_cast<int >(v
);
1683 SWIG_type_error(errmsg
, obj
);
1688 SWIGINTERNINLINE
int
1689 SWIG_AsVal_int(PyObject
*obj
, int *val
)
1691 return SWIG_AsVal_long(obj
,(long*)val
);
1696 SWIGINTERNINLINE
int
1697 SWIG_As_int(PyObject
* obj
)
1700 if (!SWIG_AsVal_int(obj
, &v
)) {
1702 this is needed to make valgrind/purify happier.
1704 memset((void*)&v
, 0, sizeof(int));
1710 SWIGINTERNINLINE
long
1711 SWIG_As_long(PyObject
* obj
)
1714 if (!SWIG_AsVal_long(obj
, &v
)) {
1716 this is needed to make valgrind/purify happier.
1718 memset((void*)&v
, 0, sizeof(long));
1724 SWIGINTERNINLINE
int
1725 SWIG_Check_int(PyObject
* obj
)
1727 return SWIG_AsVal_int(obj
, (int*)0);
1731 SWIGINTERNINLINE
int
1732 SWIG_Check_long(PyObject
* obj
)
1734 return SWIG_AsVal_long(obj
, (long*)0);
1737 static const wxString
wxPyCheckBoxNameStr(wxCheckBoxNameStr
);
1740 SWIG_AsVal_bool(PyObject
*obj
, bool *val
)
1742 if (obj
== Py_True
) {
1743 if (val
) *val
= true;
1746 if (obj
== Py_False
) {
1747 if (val
) *val
= false;
1751 if (SWIG_AsVal_int(obj
, &res
)) {
1752 if (val
) *val
= res
? true : false;
1758 SWIG_type_error("bool", obj
);
1764 SWIGINTERNINLINE
bool
1765 SWIG_As_bool(PyObject
* obj
)
1768 if (!SWIG_AsVal_bool(obj
, &v
)) {
1770 this is needed to make valgrind/purify happier.
1772 memset((void*)&v
, 0, sizeof(bool));
1778 SWIGINTERNINLINE
int
1779 SWIG_Check_bool(PyObject
* obj
)
1781 return SWIG_AsVal_bool(obj
, (bool*)0);
1784 static const wxString
wxPyChoiceNameStr(wxChoiceNameStr
);
1785 static const wxString
wxPyComboBoxNameStr(wxComboBoxNameStr
);
1787 /*@/opt/swig/share/swig/1.3.27/python/pymacros.swg,72,SWIG_define@*/
1788 #define SWIG_From_long PyInt_FromLong
1792 static PyObject
* t_output_helper(PyObject
* target
, PyObject
* o
) {
1798 } else if (target
== Py_None
) {
1802 if (!PyTuple_Check(target
)) {
1804 target
= PyTuple_New(1);
1805 PyTuple_SetItem(target
, 0, o2
);
1807 o3
= PyTuple_New(1);
1808 PyTuple_SetItem(o3
, 0, o
);
1811 target
= PySequence_Concat(o2
, o3
);
1819 static const wxString
wxPyGaugeNameStr(wxGaugeNameStr
);
1820 static const wxString
wxPyStaticBitmapNameStr(wxStaticBitmapNameStr
);
1821 static const wxString
wxPyStaticBoxNameStr(wxStaticBoxNameStr
);
1822 static const wxString
wxPyStaticTextNameStr(wxStaticTextNameStr
);
1824 #include <wx/checklst.h>
1827 static const wxString
wxPyListBoxNameStr(wxListBoxNameStr
);
1828 static void wxListBox_Insert(wxListBox
*self
,wxString
const &item
,int pos
,PyObject
*clientData
=NULL
){
1830 wxPyClientData
* data
= new wxPyClientData(clientData
);
1831 self
->Insert(item
, pos
, data
);
1833 self
->Insert(item
, pos
);
1835 static PyObject
*wxListBox_GetSelections(wxListBox
*self
){
1837 self
->GetSelections(lst
);
1838 PyObject
*tup
= PyTuple_New(lst
.GetCount());
1839 for(size_t i
=0; i
<lst
.GetCount(); i
++) {
1840 PyTuple_SetItem(tup
, i
, PyInt_FromLong(lst
[i
]));
1844 static void wxListBox_SetItemForegroundColour(wxListBox
*self
,int item
,wxColour
const &c
){
1846 if (self
->GetWindowStyle() & wxLB_OWNERDRAW
)
1847 self
->GetItem(item
)->SetTextColour(c
);
1850 static void wxListBox_SetItemBackgroundColour(wxListBox
*self
,int item
,wxColour
const &c
){
1852 if (self
->GetWindowStyle() & wxLB_OWNERDRAW
)
1853 self
->GetItem(item
)->SetBackgroundColour(c
);
1856 static void wxListBox_SetItemFont(wxListBox
*self
,int item
,wxFont
const &f
){
1858 if (self
->GetWindowStyle() & wxLB_OWNERDRAW
)
1859 self
->GetItem(item
)->SetFont(f
);
1862 static const wxString
wxPyTextCtrlNameStr(wxTextCtrlNameStr
);
1865 SWIG_AsVal_unsigned_SS_long(PyObject
* obj
, unsigned long* val
)
1868 if (SWIG_AsVal_long(obj
, &v
) && v
< 0) {
1869 SWIG_type_error("unsigned number", obj
);
1872 *val
= (unsigned long)v
;
1877 SWIGINTERNINLINE
unsigned long
1878 SWIG_As_unsigned_SS_long(PyObject
* obj
)
1881 if (!SWIG_AsVal_unsigned_SS_long(obj
, &v
)) {
1883 this is needed to make valgrind/purify happier.
1885 memset((void*)&v
, 0, sizeof(unsigned long));
1891 SWIGINTERNINLINE
int
1892 SWIG_Check_unsigned_SS_long(PyObject
* obj
)
1894 return SWIG_AsVal_unsigned_SS_long(obj
, (unsigned long*)0);
1897 static void wxTextCtrl_write(wxTextCtrl
*self
,wxString
const &text
){
1898 self
->AppendText(text
);
1900 static wxString
wxTextCtrl_GetString(wxTextCtrl
*self
,long from
,long to
){
1901 return self
->GetValue().Mid(from
, to
- from
);
1903 static const wxString
wxPyScrollBarNameStr(wxScrollBarNameStr
);
1904 static const wxString
wxPySPIN_BUTTON_NAME(wxSPIN_BUTTON_NAME
);
1905 static const wxString
wxPySpinCtrlNameStr(_T("wxSpinCtrl"));
1906 static const wxString
wxPyRadioBoxNameStr(wxRadioBoxNameStr
);
1907 static const wxString
wxPyRadioButtonNameStr(wxRadioButtonNameStr
);
1908 static int wxRadioBox_GetColumnCount(wxRadioBox
const *self
){ return -1; }
1909 static int wxRadioBox_GetRowCount(wxRadioBox
const *self
){ return -1; }
1910 static int wxRadioBox_GetNextItem(wxRadioBox
const *self
,int item
,wxDirection dir
,long style
){ return -1; }
1912 #include <wx/slider.h>
1915 static const wxString
wxPySliderNameStr(wxSliderNameStr
);
1916 static const wxString
wxPyToggleButtonNameStr(_T("wxToggleButton"));
1918 #if !wxUSE_TOGGLEBTN
1919 // implement dummy items for platforms that don't have this class
1921 #define wxEVT_COMMAND_TOGGLEBUTTON_CLICKED 0
1923 class wxToggleButton
: public wxControl
1926 wxToggleButton(wxWindow
*, wxWindowID
, const wxString
&,
1927 const wxPoint
&, const wxSize
&, long,
1928 const wxValidator
&, const wxString
&)
1929 { wxPyRaiseNotImplemented(); }
1932 { wxPyRaiseNotImplemented(); }
1936 static const wxString
wxPyNotebookNameStr(wxNotebookNameStr
);
1938 SWIGINTERNINLINE PyObject
*
1939 SWIG_From_unsigned_SS_long(unsigned long value
)
1941 return (value
> LONG_MAX
) ?
1942 PyLong_FromUnsignedLong(value
)
1943 : PyInt_FromLong(static_cast<long >(value
));
1946 static const wxString
wxPyToolBarNameStr(wxToolBarNameStr
);
1947 static PyObject
*wxToolBarToolBase_GetClientData(wxToolBarToolBase
*self
){
1948 wxPyUserData
* udata
= (wxPyUserData
*)self
->GetClientData();
1950 Py_INCREF(udata
->m_obj
);
1951 return udata
->m_obj
;
1957 static void wxToolBarToolBase_SetClientData(wxToolBarToolBase
*self
,PyObject
*clientData
){
1958 self
->SetClientData(new wxPyUserData(clientData
));
1960 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
){
1961 wxPyUserData
* udata
= NULL
;
1962 if (clientData
&& clientData
!= Py_None
)
1963 udata
= new wxPyUserData(clientData
);
1964 return self
->AddTool(id
, label
, bitmap
, bmpDisabled
, kind
,
1965 shortHelp
, longHelp
, udata
);
1967 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
){
1968 wxPyUserData
* udata
= NULL
;
1969 if (clientData
&& clientData
!= Py_None
)
1970 udata
= new wxPyUserData(clientData
);
1971 return self
->InsertTool(pos
, id
, label
, bitmap
, bmpDisabled
, kind
,
1972 shortHelp
, longHelp
, udata
);
1974 static PyObject
*wxToolBarBase_GetToolClientData(wxToolBarBase
*self
,int id
){
1975 wxPyUserData
* udata
= (wxPyUserData
*)self
->GetToolClientData(id
);
1977 Py_INCREF(udata
->m_obj
);
1978 return udata
->m_obj
;
1984 static void wxToolBarBase_SetToolClientData(wxToolBarBase
*self
,int id
,PyObject
*clientData
){
1985 self
->SetToolClientData(id
, new wxPyUserData(clientData
));
1988 #include <wx/listctrl.h>
1990 static const wxString
wxPyListCtrlNameStr(wxListCtrlNameStr
);
1991 static void wxListItemAttr_Destroy(wxListItemAttr
*self
){ delete self
; }
1992 // Python aware sorting function for wxPyListCtrl
1993 static int wxCALLBACK
wxPyListCtrl_SortItems(long item1
, long item2
, long funcPtr
) {
1995 PyObject
* func
= (PyObject
*)funcPtr
;
1996 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
1998 PyObject
* args
= Py_BuildValue("(ii)", item1
, item2
);
1999 PyObject
* result
= PyEval_CallObject(func
, args
);
2002 retval
= PyInt_AsLong(result
);
2006 wxPyEndBlockThreads(blocked
);
2010 // C++ Version of a Python aware class
2011 class wxPyListCtrl
: public wxListCtrl
{
2012 DECLARE_ABSTRACT_CLASS(wxPyListCtrl
)
2014 wxPyListCtrl() : wxListCtrl() {}
2015 wxPyListCtrl(wxWindow
* parent
, wxWindowID id
,
2019 const wxValidator
& validator
,
2020 const wxString
& name
) :
2021 wxListCtrl(parent
, id
, pos
, size
, style
, validator
, name
) {}
2023 bool Create(wxWindow
* parent
, wxWindowID id
,
2027 const wxValidator
& validator
,
2028 const wxString
& name
) {
2029 return wxListCtrl::Create(parent
, id
, pos
, size
, style
, validator
, name
);
2032 DEC_PYCALLBACK_STRING_LONGLONG(OnGetItemText
);
2033 DEC_PYCALLBACK_LISTATTR_LONG(OnGetItemAttr
);
2035 // use the virtual version to avoid a confusing assert in the base class
2036 DEC_PYCALLBACK_INT_LONG_virtual(OnGetItemImage
);
2041 IMPLEMENT_ABSTRACT_CLASS(wxPyListCtrl
, wxListCtrl
);
2043 IMP_PYCALLBACK_STRING_LONGLONG(wxPyListCtrl
, wxListCtrl
, OnGetItemText
);
2044 IMP_PYCALLBACK_LISTATTR_LONG(wxPyListCtrl
, wxListCtrl
, OnGetItemAttr
);
2045 IMP_PYCALLBACK_INT_LONG_virtual(wxPyListCtrl
, wxListCtrl
, OnGetItemImage
);
2048 static wxListItem
*wxPyListCtrl_GetColumn(wxPyListCtrl
*self
,int col
){
2050 item
.SetMask( wxLIST_MASK_STATE
|
2058 if (self
->GetColumn(col
, item
))
2059 return new wxListItem(item
);
2063 static wxListItem
*wxPyListCtrl_GetItem(wxPyListCtrl
*self
,long itemId
,int col
=0){
2064 wxListItem
* info
= new wxListItem
;
2065 info
->m_itemId
= itemId
;
2067 info
->m_mask
= 0xFFFF;
2068 self
->GetItem(*info
);
2071 static wxPoint
wxPyListCtrl_GetItemPosition(wxPyListCtrl
*self
,long item
){
2073 self
->GetItemPosition(item
, pos
);
2076 static wxRect
wxPyListCtrl_GetItemRect(wxPyListCtrl
*self
,long item
,int code
=wxLIST_RECT_BOUNDS
){
2078 self
->GetItemRect(item
, rect
, code
);
2082 static bool wxPyListCtrl_SortItems(wxPyListCtrl
*self
,PyObject
*func
){
2083 if (!PyCallable_Check(func
))
2085 return self
->SortItems((wxListCtrlCompare
)wxPyListCtrl_SortItems
, (long)func
);
2087 static wxWindow
*wxPyListCtrl_GetMainWindow(wxPyListCtrl
*self
){
2091 return (wxWindow
*)self
->m_mainWin
;
2095 #include <wx/treectrl.h>
2096 #include "wx/wxPython/pytree.h"
2098 static const wxString
wxPyTreeCtrlNameStr(_T("wxTreeCtrl"));
2099 static bool wxTreeItemId___eq__(wxTreeItemId
*self
,wxTreeItemId
const *other
){ return other
? (*self
== *other
) : false; }
2100 static bool wxTreeItemId___ne__(wxTreeItemId
*self
,wxTreeItemId
const *other
){ return other
? (*self
!= *other
) : true; }
2101 static void wxPyTreeItemData_Destroy(wxPyTreeItemData
*self
){ delete self
; }
2102 // C++ version of Python aware wxTreeCtrl
2103 class wxPyTreeCtrl
: public wxTreeCtrl
{
2104 DECLARE_ABSTRACT_CLASS(wxPyTreeCtrl
)
2106 wxPyTreeCtrl() : wxTreeCtrl() {}
2107 wxPyTreeCtrl(wxWindow
*parent
, wxWindowID id
,
2111 const wxValidator
& validator
,
2112 const wxString
& name
) :
2113 wxTreeCtrl(parent
, id
, pos
, size
, style
, validator
, name
) {}
2115 bool Create(wxWindow
*parent
, wxWindowID id
,
2119 const wxValidator
& validator
,
2120 const wxString
& name
) {
2121 return wxTreeCtrl::Create(parent
, id
, pos
, size
, style
, validator
, name
);
2125 int OnCompareItems(const wxTreeItemId
& item1
,
2126 const wxTreeItemId
& item2
) {
2129 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2130 if ((found
= wxPyCBH_findCallback(m_myInst
, "OnCompareItems"))) {
2131 PyObject
*o1
= wxPyConstructObject((void*)&item1
, wxT("wxTreeItemId"), false);
2132 PyObject
*o2
= wxPyConstructObject((void*)&item2
, wxT("wxTreeItemId"), false);
2133 rval
= wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OO)",o1
,o2
));
2137 wxPyEndBlockThreads(blocked
);
2139 rval
= wxTreeCtrl::OnCompareItems(item1
, item2
);
2145 IMPLEMENT_ABSTRACT_CLASS(wxPyTreeCtrl
, wxTreeCtrl
);
2149 #if UINT_MAX < LONG_MAX
2150 /*@/opt/swig/share/swig/1.3.27/python/pymacros.swg,72,SWIG_define@*/
2151 #define SWIG_From_unsigned_SS_int SWIG_From_long
2154 /*@/opt/swig/share/swig/1.3.27/python/pymacros.swg,72,SWIG_define@*/
2155 #define SWIG_From_unsigned_SS_int SWIG_From_unsigned_SS_long
2160 SWIGINTERNINLINE
int
2161 SWIG_CheckUnsignedLongInRange(unsigned long value
,
2162 unsigned long max_value
,
2165 if (value
> max_value
) {
2167 PyErr_Format(PyExc_OverflowError
,
2168 "value %lu is greater than '%s' minimum %lu",
2169 value
, errmsg
, max_value
);
2177 #if UINT_MAX != ULONG_MAX
2179 SWIG_AsVal_unsigned_SS_int(PyObject
*obj
, unsigned int *val
)
2181 const char* errmsg
= val
? "unsigned int" : (char*)0;
2183 if (SWIG_AsVal_unsigned_SS_long(obj
, &v
)) {
2184 if (SWIG_CheckUnsignedLongInRange(v
, INT_MAX
, errmsg
)) {
2185 if (val
) *val
= static_cast<unsigned int >(v
);
2192 SWIG_type_error(errmsg
, obj
);
2197 SWIGINTERNINLINE
unsigned int
2198 SWIG_AsVal_unsigned_SS_int(PyObject
*obj
, unsigned int *val
)
2200 return SWIG_AsVal_unsigned_SS_long(obj
,(unsigned long *)val
);
2205 SWIGINTERNINLINE
unsigned int
2206 SWIG_As_unsigned_SS_int(PyObject
* obj
)
2209 if (!SWIG_AsVal_unsigned_SS_int(obj
, &v
)) {
2211 this is needed to make valgrind/purify happier.
2213 memset((void*)&v
, 0, sizeof(unsigned int));
2219 SWIGINTERNINLINE
int
2220 SWIG_Check_unsigned_SS_int(PyObject
* obj
)
2222 return SWIG_AsVal_unsigned_SS_int(obj
, (unsigned int*)0);
2225 static wxPyTreeItemData
*wxPyTreeCtrl_GetItemData(wxPyTreeCtrl
*self
,wxTreeItemId
const &item
){
2226 wxPyTreeItemData
* data
= (wxPyTreeItemData
*)self
->GetItemData(item
);
2228 data
= new wxPyTreeItemData();
2229 data
->SetId(item
); // set the id
2230 self
->SetItemData(item
, data
);
2234 static PyObject
*wxPyTreeCtrl_GetItemPyData(wxPyTreeCtrl
*self
,wxTreeItemId
const &item
){
2235 wxPyTreeItemData
* data
= (wxPyTreeItemData
*)self
->GetItemData(item
);
2237 data
= new wxPyTreeItemData();
2238 data
->SetId(item
); // set the id
2239 self
->SetItemData(item
, data
);
2241 return data
->GetData();
2243 static void wxPyTreeCtrl_SetItemData(wxPyTreeCtrl
*self
,wxTreeItemId
const &item
,wxPyTreeItemData
*data
){
2244 data
->SetId(item
); // set the id
2245 self
->SetItemData(item
, data
);
2247 static void wxPyTreeCtrl_SetItemPyData(wxPyTreeCtrl
*self
,wxTreeItemId
const &item
,PyObject
*obj
){
2248 wxPyTreeItemData
* data
= (wxPyTreeItemData
*)self
->GetItemData(item
);
2250 data
= new wxPyTreeItemData(obj
);
2251 data
->SetId(item
); // set the id
2252 self
->SetItemData(item
, data
);
2256 static PyObject
*wxPyTreeCtrl_GetSelections(wxPyTreeCtrl
*self
){
2257 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2258 PyObject
* rval
= PyList_New(0);
2259 wxArrayTreeItemIds array
;
2261 num
= self
->GetSelections(array
);
2262 for (x
=0; x
< num
; x
++) {
2263 wxTreeItemId
*tii
= new wxTreeItemId(array
.Item(x
));
2264 PyObject
* item
= wxPyConstructObject((void*)tii
, wxT("wxTreeItemId"), true);
2265 PyList_Append(rval
, item
);
2268 wxPyEndBlockThreads(blocked
);
2271 static PyObject
*wxPyTreeCtrl_GetFirstChild(wxPyTreeCtrl
*self
,wxTreeItemId
const &item
){
2273 wxTreeItemId
* ritem
= new wxTreeItemId(self
->GetFirstChild(item
, cookie
));
2274 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2275 PyObject
* tup
= PyTuple_New(2);
2276 PyTuple_SET_ITEM(tup
, 0, wxPyConstructObject(ritem
, wxT("wxTreeItemId"), true));
2277 PyTuple_SET_ITEM(tup
, 1, wxPyMakeSwigPtr(cookie
, wxT("void")));
2278 wxPyEndBlockThreads(blocked
);
2281 static PyObject
*wxPyTreeCtrl_GetNextChild(wxPyTreeCtrl
*self
,wxTreeItemId
const &item
,void *cookie
){
2282 wxTreeItemId
* ritem
= new wxTreeItemId(self
->GetNextChild(item
, cookie
));
2283 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2284 PyObject
* tup
= PyTuple_New(2);
2285 PyTuple_SET_ITEM(tup
, 0, wxPyConstructObject(ritem
, wxT("wxTreeItemId"), true));
2286 PyTuple_SET_ITEM(tup
, 1, wxPyMakeSwigPtr(cookie
, wxT("void")));
2287 wxPyEndBlockThreads(blocked
);
2290 static PyObject
*wxPyTreeCtrl_GetBoundingRect(wxPyTreeCtrl
*self
,wxTreeItemId
const &item
,bool textOnly
=false){
2292 if (self
->GetBoundingRect(item
, rect
, textOnly
)) {
2293 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2294 wxRect
* r
= new wxRect(rect
);
2295 PyObject
* val
= wxPyConstructObject((void*)r
, wxT("wxRect"), true);
2296 wxPyEndBlockThreads(blocked
);
2302 static const wxString
wxPyDirDialogDefaultFolderStr(wxDirDialogDefaultFolderStr
);
2304 SWIGINTERNINLINE PyObject
*
2305 SWIG_From_bool(bool value
)
2307 PyObject
*obj
= value
? Py_True
: Py_False
;
2313 // C++ version of Python aware wxControl
2314 class wxPyControl
: public wxControl
2316 DECLARE_DYNAMIC_CLASS(wxPyControl
)
2318 wxPyControl() : wxControl() {}
2319 wxPyControl(wxWindow
* parent
, const wxWindowID id
,
2320 const wxPoint
& pos
= wxDefaultPosition
,
2321 const wxSize
& size
= wxDefaultSize
,
2323 const wxValidator
& validator
=wxDefaultValidator
,
2324 const wxString
& name
= wxPyControlNameStr
)
2325 : wxControl(parent
, id
, pos
, size
, style
, validator
, name
) {}
2327 void SetBestSize(const wxSize
& size
) { wxControl::SetBestSize(size
); }
2329 bool DoEraseBackground(wxDC
* dc
) {
2331 return wxWindow::DoEraseBackground(dc
->GetHDC());
2333 dc
->SetBackground(wxBrush(GetBackgroundColour()));
2339 DEC_PYCALLBACK_VOID_INT4(DoMoveWindow
);
2340 DEC_PYCALLBACK_VOID_INT5(DoSetSize
);
2341 DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize
);
2342 DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize
);
2344 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize
);
2345 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize
);
2346 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition
);
2348 DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize
);
2349 DEC_PYCALLBACK_SIZE_const(DoGetBestSize
);
2351 DEC_PYCALLBACK__(InitDialog
);
2352 DEC_PYCALLBACK_BOOL_(TransferDataFromWindow
);
2353 DEC_PYCALLBACK_BOOL_(TransferDataToWindow
);
2354 DEC_PYCALLBACK_BOOL_(Validate
);
2356 DEC_PYCALLBACK_BOOL_const(AcceptsFocus
);
2357 DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard
);
2358 DEC_PYCALLBACK_SIZE_const(GetMaxSize
);
2360 DEC_PYCALLBACK_VOID_WXWINBASE(AddChild
);
2361 DEC_PYCALLBACK_VOID_WXWINBASE(RemoveChild
);
2363 DEC_PYCALLBACK_BOOL_const(ShouldInheritColours
);
2364 DEC_PYCALLBACK_VIZATTR_(GetDefaultAttributes
);
2366 DEC_PYCALLBACK_BOOL_(HasTransparentBackground
);
2368 DEC_PYCALLBACK_VOID_(OnInternalIdle
);
2373 IMPLEMENT_DYNAMIC_CLASS(wxPyControl
, wxControl
);
2375 IMP_PYCALLBACK_VOID_INT4(wxPyControl
, wxControl
, DoMoveWindow
);
2376 IMP_PYCALLBACK_VOID_INT5(wxPyControl
, wxControl
, DoSetSize
);
2377 IMP_PYCALLBACK_VOID_INTINT(wxPyControl
, wxControl
, DoSetClientSize
);
2378 IMP_PYCALLBACK_VOID_INTINT(wxPyControl
, wxControl
, DoSetVirtualSize
);
2380 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyControl
, wxControl
, DoGetSize
);
2381 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyControl
, wxControl
, DoGetClientSize
);
2382 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyControl
, wxControl
, DoGetPosition
);
2384 IMP_PYCALLBACK_SIZE_const(wxPyControl
, wxControl
, DoGetVirtualSize
);
2385 IMP_PYCALLBACK_SIZE_const(wxPyControl
, wxControl
, DoGetBestSize
);
2387 IMP_PYCALLBACK__(wxPyControl
, wxControl
, InitDialog
);
2388 IMP_PYCALLBACK_BOOL_(wxPyControl
, wxControl
, TransferDataFromWindow
);
2389 IMP_PYCALLBACK_BOOL_(wxPyControl
, wxControl
, TransferDataToWindow
);
2390 IMP_PYCALLBACK_BOOL_(wxPyControl
, wxControl
, Validate
);
2392 IMP_PYCALLBACK_BOOL_const(wxPyControl
, wxControl
, AcceptsFocus
);
2393 IMP_PYCALLBACK_BOOL_const(wxPyControl
, wxControl
, AcceptsFocusFromKeyboard
);
2394 IMP_PYCALLBACK_SIZE_const(wxPyControl
, wxControl
, GetMaxSize
);
2396 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyControl
, wxControl
, AddChild
);
2397 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyControl
, wxControl
, RemoveChild
);
2399 IMP_PYCALLBACK_BOOL_const(wxPyControl
, wxControl
, ShouldInheritColours
);
2400 IMP_PYCALLBACK_VIZATTR_(wxPyControl
, wxControl
, GetDefaultAttributes
);
2402 IMP_PYCALLBACK_BOOL_(wxPyControl
, wxControl
, HasTransparentBackground
);
2404 IMP_PYCALLBACK_VOID_(wxPyControl
, wxControl
, OnInternalIdle
);
2408 static void wxHelpProvider_Destroy(wxHelpProvider
*self
){ delete self
; }
2410 #include <wx/generic/dragimgg.h>
2412 static const wxString
wxPyDatePickerCtrlNameStr(wxDatePickerCtrlNameStr
);
2413 static wxDateTime
wxDatePickerCtrl_GetLowerLimit(wxDatePickerCtrl
*self
){
2415 self
->GetRange(&rv
, NULL
);
2418 static wxDateTime
wxDatePickerCtrl_GetUpperLimit(wxDatePickerCtrl
*self
){
2420 self
->GetRange(NULL
, &rv
);
2426 static int _wrap_ButtonNameStr_set(PyObject
*) {
2427 PyErr_SetString(PyExc_TypeError
,"Variable ButtonNameStr is read-only.");
2432 static PyObject
*_wrap_ButtonNameStr_get(void) {
2433 PyObject
*pyobj
= NULL
;
2437 pyobj
= PyUnicode_FromWideChar((&wxPyButtonNameStr
)->c_str(), (&wxPyButtonNameStr
)->Len());
2439 pyobj
= PyString_FromStringAndSize((&wxPyButtonNameStr
)->c_str(), (&wxPyButtonNameStr
)->Len());
2446 static PyObject
*_wrap_new_Button(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2447 PyObject
*resultobj
= NULL
;
2448 wxWindow
*arg1
= (wxWindow
*) 0 ;
2449 int arg2
= (int) -1 ;
2450 wxString
const &arg3_defvalue
= wxPyEmptyString
;
2451 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
2452 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
2453 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
2454 wxSize
const &arg5_defvalue
= wxDefaultSize
;
2455 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
2456 long arg6
= (long) 0 ;
2457 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
2458 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
2459 wxString
const &arg8_defvalue
= wxPyButtonNameStr
;
2460 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
2462 bool temp3
= false ;
2465 bool temp8
= false ;
2466 PyObject
* obj0
= 0 ;
2467 PyObject
* obj1
= 0 ;
2468 PyObject
* obj2
= 0 ;
2469 PyObject
* obj3
= 0 ;
2470 PyObject
* obj4
= 0 ;
2471 PyObject
* obj5
= 0 ;
2472 PyObject
* obj6
= 0 ;
2473 PyObject
* obj7
= 0 ;
2475 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
2478 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_Button",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
2479 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
2480 if (SWIG_arg_fail(1)) SWIG_fail
;
2483 arg2
= static_cast<int >(SWIG_As_int(obj1
));
2484 if (SWIG_arg_fail(2)) SWIG_fail
;
2489 arg3
= wxString_in_helper(obj2
);
2490 if (arg3
== NULL
) SWIG_fail
;
2497 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
2503 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
2508 arg6
= static_cast<long >(SWIG_As_long(obj5
));
2509 if (SWIG_arg_fail(6)) SWIG_fail
;
2514 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
2515 if (SWIG_arg_fail(7)) SWIG_fail
;
2517 SWIG_null_ref("wxValidator");
2519 if (SWIG_arg_fail(7)) SWIG_fail
;
2524 arg8
= wxString_in_helper(obj7
);
2525 if (arg8
== NULL
) SWIG_fail
;
2530 if (!wxPyCheckForApp()) SWIG_fail
;
2531 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2532 result
= (wxButton
*)new wxButton(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
2534 wxPyEndAllowThreads(__tstate
);
2535 if (PyErr_Occurred()) SWIG_fail
;
2537 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxButton
, 1);
2560 static PyObject
*_wrap_new_PreButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2561 PyObject
*resultobj
= NULL
;
2567 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreButton",kwnames
)) goto fail
;
2569 if (!wxPyCheckForApp()) SWIG_fail
;
2570 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2571 result
= (wxButton
*)new wxButton();
2573 wxPyEndAllowThreads(__tstate
);
2574 if (PyErr_Occurred()) SWIG_fail
;
2576 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxButton
, 1);
2583 static PyObject
*_wrap_Button_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2584 PyObject
*resultobj
= NULL
;
2585 wxButton
*arg1
= (wxButton
*) 0 ;
2586 wxWindow
*arg2
= (wxWindow
*) 0 ;
2587 int arg3
= (int) -1 ;
2588 wxString
const &arg4_defvalue
= wxPyEmptyString
;
2589 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
2590 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
2591 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
2592 wxSize
const &arg6_defvalue
= wxDefaultSize
;
2593 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
2594 long arg7
= (long) 0 ;
2595 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
2596 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
2597 wxString
const &arg9_defvalue
= wxPyButtonNameStr
;
2598 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
2600 bool temp4
= false ;
2603 bool temp9
= false ;
2604 PyObject
* obj0
= 0 ;
2605 PyObject
* obj1
= 0 ;
2606 PyObject
* obj2
= 0 ;
2607 PyObject
* obj3
= 0 ;
2608 PyObject
* obj4
= 0 ;
2609 PyObject
* obj5
= 0 ;
2610 PyObject
* obj6
= 0 ;
2611 PyObject
* obj7
= 0 ;
2612 PyObject
* obj8
= 0 ;
2614 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
2617 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:Button_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
2618 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxButton
, SWIG_POINTER_EXCEPTION
| 0);
2619 if (SWIG_arg_fail(1)) SWIG_fail
;
2620 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
2621 if (SWIG_arg_fail(2)) SWIG_fail
;
2624 arg3
= static_cast<int >(SWIG_As_int(obj2
));
2625 if (SWIG_arg_fail(3)) SWIG_fail
;
2630 arg4
= wxString_in_helper(obj3
);
2631 if (arg4
== NULL
) SWIG_fail
;
2638 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
2644 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
2649 arg7
= static_cast<long >(SWIG_As_long(obj6
));
2650 if (SWIG_arg_fail(7)) SWIG_fail
;
2655 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
2656 if (SWIG_arg_fail(8)) SWIG_fail
;
2658 SWIG_null_ref("wxValidator");
2660 if (SWIG_arg_fail(8)) SWIG_fail
;
2665 arg9
= wxString_in_helper(obj8
);
2666 if (arg9
== NULL
) SWIG_fail
;
2671 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2672 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
2674 wxPyEndAllowThreads(__tstate
);
2675 if (PyErr_Occurred()) SWIG_fail
;
2678 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
2702 static PyObject
*_wrap_Button_SetDefault(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2703 PyObject
*resultobj
= NULL
;
2704 wxButton
*arg1
= (wxButton
*) 0 ;
2705 PyObject
* obj0
= 0 ;
2707 (char *) "self", NULL
2710 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Button_SetDefault",kwnames
,&obj0
)) goto fail
;
2711 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxButton
, SWIG_POINTER_EXCEPTION
| 0);
2712 if (SWIG_arg_fail(1)) SWIG_fail
;
2714 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2715 (arg1
)->SetDefault();
2717 wxPyEndAllowThreads(__tstate
);
2718 if (PyErr_Occurred()) SWIG_fail
;
2720 Py_INCREF(Py_None
); resultobj
= Py_None
;
2727 static PyObject
*_wrap_Button_GetDefaultSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2728 PyObject
*resultobj
= NULL
;
2734 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":Button_GetDefaultSize",kwnames
)) goto fail
;
2736 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2737 result
= wxButton::GetDefaultSize();
2739 wxPyEndAllowThreads(__tstate
);
2740 if (PyErr_Occurred()) SWIG_fail
;
2744 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
2745 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
2753 static PyObject
*_wrap_Button_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2754 PyObject
*resultobj
= NULL
;
2755 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
2756 wxVisualAttributes result
;
2757 PyObject
* obj0
= 0 ;
2759 (char *) "variant", NULL
2762 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Button_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
2765 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
2766 if (SWIG_arg_fail(1)) SWIG_fail
;
2770 if (!wxPyCheckForApp()) SWIG_fail
;
2771 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2772 result
= wxButton::GetClassDefaultAttributes(arg1
);
2774 wxPyEndAllowThreads(__tstate
);
2775 if (PyErr_Occurred()) SWIG_fail
;
2778 wxVisualAttributes
* resultptr
;
2779 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
2780 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
2788 static PyObject
* Button_swigregister(PyObject
*, PyObject
*args
) {
2790 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
2791 SWIG_TypeClientData(SWIGTYPE_p_wxButton
, obj
);
2793 return Py_BuildValue((char *)"");
2795 static PyObject
*_wrap_new_BitmapButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2796 PyObject
*resultobj
= NULL
;
2797 wxWindow
*arg1
= (wxWindow
*) 0 ;
2798 int arg2
= (int) -1 ;
2799 wxBitmap
const &arg3_defvalue
= wxNullBitmap
;
2800 wxBitmap
*arg3
= (wxBitmap
*) &arg3_defvalue
;
2801 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
2802 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
2803 wxSize
const &arg5_defvalue
= wxDefaultSize
;
2804 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
2805 long arg6
= (long) wxBU_AUTODRAW
;
2806 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
2807 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
2808 wxString
const &arg8_defvalue
= wxPyButtonNameStr
;
2809 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
2810 wxBitmapButton
*result
;
2813 bool temp8
= false ;
2814 PyObject
* obj0
= 0 ;
2815 PyObject
* obj1
= 0 ;
2816 PyObject
* obj2
= 0 ;
2817 PyObject
* obj3
= 0 ;
2818 PyObject
* obj4
= 0 ;
2819 PyObject
* obj5
= 0 ;
2820 PyObject
* obj6
= 0 ;
2821 PyObject
* obj7
= 0 ;
2823 (char *) "parent",(char *) "id",(char *) "bitmap",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
2826 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_BitmapButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
2827 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
2828 if (SWIG_arg_fail(1)) SWIG_fail
;
2831 arg2
= static_cast<int >(SWIG_As_int(obj1
));
2832 if (SWIG_arg_fail(2)) SWIG_fail
;
2837 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
2838 if (SWIG_arg_fail(3)) SWIG_fail
;
2840 SWIG_null_ref("wxBitmap");
2842 if (SWIG_arg_fail(3)) SWIG_fail
;
2848 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
2854 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
2859 arg6
= static_cast<long >(SWIG_As_long(obj5
));
2860 if (SWIG_arg_fail(6)) SWIG_fail
;
2865 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
2866 if (SWIG_arg_fail(7)) SWIG_fail
;
2868 SWIG_null_ref("wxValidator");
2870 if (SWIG_arg_fail(7)) SWIG_fail
;
2875 arg8
= wxString_in_helper(obj7
);
2876 if (arg8
== NULL
) SWIG_fail
;
2881 if (!wxPyCheckForApp()) SWIG_fail
;
2882 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2883 result
= (wxBitmapButton
*)new wxBitmapButton(arg1
,arg2
,(wxBitmap
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
2885 wxPyEndAllowThreads(__tstate
);
2886 if (PyErr_Occurred()) SWIG_fail
;
2888 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxBitmapButton
, 1);
2903 static PyObject
*_wrap_new_PreBitmapButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2904 PyObject
*resultobj
= NULL
;
2905 wxBitmapButton
*result
;
2910 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreBitmapButton",kwnames
)) goto fail
;
2912 if (!wxPyCheckForApp()) SWIG_fail
;
2913 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2914 result
= (wxBitmapButton
*)new wxBitmapButton();
2916 wxPyEndAllowThreads(__tstate
);
2917 if (PyErr_Occurred()) SWIG_fail
;
2919 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxBitmapButton
, 1);
2926 static PyObject
*_wrap_BitmapButton_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
2927 PyObject
*resultobj
= NULL
;
2928 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
2929 wxWindow
*arg2
= (wxWindow
*) 0 ;
2930 int arg3
= (int) -1 ;
2931 wxBitmap
const &arg4_defvalue
= wxNullBitmap
;
2932 wxBitmap
*arg4
= (wxBitmap
*) &arg4_defvalue
;
2933 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
2934 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
2935 wxSize
const &arg6_defvalue
= wxDefaultSize
;
2936 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
2937 long arg7
= (long) wxBU_AUTODRAW
;
2938 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
2939 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
2940 wxString
const &arg9_defvalue
= wxPyButtonNameStr
;
2941 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
2945 bool temp9
= false ;
2946 PyObject
* obj0
= 0 ;
2947 PyObject
* obj1
= 0 ;
2948 PyObject
* obj2
= 0 ;
2949 PyObject
* obj3
= 0 ;
2950 PyObject
* obj4
= 0 ;
2951 PyObject
* obj5
= 0 ;
2952 PyObject
* obj6
= 0 ;
2953 PyObject
* obj7
= 0 ;
2954 PyObject
* obj8
= 0 ;
2956 (char *) "self",(char *) "parent",(char *) "id",(char *) "bitmap",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
2959 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:BitmapButton_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
2960 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
2961 if (SWIG_arg_fail(1)) SWIG_fail
;
2962 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
2963 if (SWIG_arg_fail(2)) SWIG_fail
;
2966 arg3
= static_cast<int >(SWIG_As_int(obj2
));
2967 if (SWIG_arg_fail(3)) SWIG_fail
;
2972 SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
2973 if (SWIG_arg_fail(4)) SWIG_fail
;
2975 SWIG_null_ref("wxBitmap");
2977 if (SWIG_arg_fail(4)) SWIG_fail
;
2983 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
2989 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
2994 arg7
= static_cast<long >(SWIG_As_long(obj6
));
2995 if (SWIG_arg_fail(7)) SWIG_fail
;
3000 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
3001 if (SWIG_arg_fail(8)) SWIG_fail
;
3003 SWIG_null_ref("wxValidator");
3005 if (SWIG_arg_fail(8)) SWIG_fail
;
3010 arg9
= wxString_in_helper(obj8
);
3011 if (arg9
== NULL
) SWIG_fail
;
3016 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3017 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxBitmap
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
3019 wxPyEndAllowThreads(__tstate
);
3020 if (PyErr_Occurred()) SWIG_fail
;
3023 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3039 static PyObject
*_wrap_BitmapButton_GetBitmapLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3040 PyObject
*resultobj
= NULL
;
3041 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3043 PyObject
* obj0
= 0 ;
3045 (char *) "self", NULL
3048 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BitmapButton_GetBitmapLabel",kwnames
,&obj0
)) goto fail
;
3049 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3050 if (SWIG_arg_fail(1)) SWIG_fail
;
3052 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3053 result
= (arg1
)->GetBitmapLabel();
3055 wxPyEndAllowThreads(__tstate
);
3056 if (PyErr_Occurred()) SWIG_fail
;
3059 wxBitmap
* resultptr
;
3060 resultptr
= new wxBitmap(static_cast<wxBitmap
& >(result
));
3061 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
3069 static PyObject
*_wrap_BitmapButton_GetBitmapDisabled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3070 PyObject
*resultobj
= NULL
;
3071 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3073 PyObject
* obj0
= 0 ;
3075 (char *) "self", NULL
3078 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BitmapButton_GetBitmapDisabled",kwnames
,&obj0
)) goto fail
;
3079 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3080 if (SWIG_arg_fail(1)) SWIG_fail
;
3082 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3083 result
= (arg1
)->GetBitmapDisabled();
3085 wxPyEndAllowThreads(__tstate
);
3086 if (PyErr_Occurred()) SWIG_fail
;
3089 wxBitmap
* resultptr
;
3090 resultptr
= new wxBitmap(static_cast<wxBitmap
& >(result
));
3091 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
3099 static PyObject
*_wrap_BitmapButton_GetBitmapFocus(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3100 PyObject
*resultobj
= NULL
;
3101 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3103 PyObject
* obj0
= 0 ;
3105 (char *) "self", NULL
3108 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BitmapButton_GetBitmapFocus",kwnames
,&obj0
)) goto fail
;
3109 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3110 if (SWIG_arg_fail(1)) SWIG_fail
;
3112 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3113 result
= (arg1
)->GetBitmapFocus();
3115 wxPyEndAllowThreads(__tstate
);
3116 if (PyErr_Occurred()) SWIG_fail
;
3119 wxBitmap
* resultptr
;
3120 resultptr
= new wxBitmap(static_cast<wxBitmap
& >(result
));
3121 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
3129 static PyObject
*_wrap_BitmapButton_GetBitmapSelected(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3130 PyObject
*resultobj
= NULL
;
3131 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3133 PyObject
* obj0
= 0 ;
3135 (char *) "self", NULL
3138 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BitmapButton_GetBitmapSelected",kwnames
,&obj0
)) goto fail
;
3139 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3140 if (SWIG_arg_fail(1)) SWIG_fail
;
3142 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3143 result
= (arg1
)->GetBitmapSelected();
3145 wxPyEndAllowThreads(__tstate
);
3146 if (PyErr_Occurred()) SWIG_fail
;
3149 wxBitmap
* resultptr
;
3150 resultptr
= new wxBitmap(static_cast<wxBitmap
& >(result
));
3151 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
3159 static PyObject
*_wrap_BitmapButton_SetBitmapDisabled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3160 PyObject
*resultobj
= NULL
;
3161 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3162 wxBitmap
*arg2
= 0 ;
3163 PyObject
* obj0
= 0 ;
3164 PyObject
* obj1
= 0 ;
3166 (char *) "self",(char *) "bitmap", NULL
3169 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BitmapButton_SetBitmapDisabled",kwnames
,&obj0
,&obj1
)) goto fail
;
3170 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3171 if (SWIG_arg_fail(1)) SWIG_fail
;
3173 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
3174 if (SWIG_arg_fail(2)) SWIG_fail
;
3176 SWIG_null_ref("wxBitmap");
3178 if (SWIG_arg_fail(2)) SWIG_fail
;
3181 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3182 (arg1
)->SetBitmapDisabled((wxBitmap
const &)*arg2
);
3184 wxPyEndAllowThreads(__tstate
);
3185 if (PyErr_Occurred()) SWIG_fail
;
3187 Py_INCREF(Py_None
); resultobj
= Py_None
;
3194 static PyObject
*_wrap_BitmapButton_SetBitmapFocus(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3195 PyObject
*resultobj
= NULL
;
3196 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3197 wxBitmap
*arg2
= 0 ;
3198 PyObject
* obj0
= 0 ;
3199 PyObject
* obj1
= 0 ;
3201 (char *) "self",(char *) "bitmap", NULL
3204 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BitmapButton_SetBitmapFocus",kwnames
,&obj0
,&obj1
)) goto fail
;
3205 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3206 if (SWIG_arg_fail(1)) SWIG_fail
;
3208 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
3209 if (SWIG_arg_fail(2)) SWIG_fail
;
3211 SWIG_null_ref("wxBitmap");
3213 if (SWIG_arg_fail(2)) SWIG_fail
;
3216 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3217 (arg1
)->SetBitmapFocus((wxBitmap
const &)*arg2
);
3219 wxPyEndAllowThreads(__tstate
);
3220 if (PyErr_Occurred()) SWIG_fail
;
3222 Py_INCREF(Py_None
); resultobj
= Py_None
;
3229 static PyObject
*_wrap_BitmapButton_SetBitmapSelected(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3230 PyObject
*resultobj
= NULL
;
3231 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3232 wxBitmap
*arg2
= 0 ;
3233 PyObject
* obj0
= 0 ;
3234 PyObject
* obj1
= 0 ;
3236 (char *) "self",(char *) "bitmap", NULL
3239 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BitmapButton_SetBitmapSelected",kwnames
,&obj0
,&obj1
)) goto fail
;
3240 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3241 if (SWIG_arg_fail(1)) SWIG_fail
;
3243 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
3244 if (SWIG_arg_fail(2)) SWIG_fail
;
3246 SWIG_null_ref("wxBitmap");
3248 if (SWIG_arg_fail(2)) SWIG_fail
;
3251 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3252 (arg1
)->SetBitmapSelected((wxBitmap
const &)*arg2
);
3254 wxPyEndAllowThreads(__tstate
);
3255 if (PyErr_Occurred()) SWIG_fail
;
3257 Py_INCREF(Py_None
); resultobj
= Py_None
;
3264 static PyObject
*_wrap_BitmapButton_SetBitmapLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3265 PyObject
*resultobj
= NULL
;
3266 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3267 wxBitmap
*arg2
= 0 ;
3268 PyObject
* obj0
= 0 ;
3269 PyObject
* obj1
= 0 ;
3271 (char *) "self",(char *) "bitmap", NULL
3274 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BitmapButton_SetBitmapLabel",kwnames
,&obj0
,&obj1
)) goto fail
;
3275 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3276 if (SWIG_arg_fail(1)) SWIG_fail
;
3278 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
3279 if (SWIG_arg_fail(2)) SWIG_fail
;
3281 SWIG_null_ref("wxBitmap");
3283 if (SWIG_arg_fail(2)) SWIG_fail
;
3286 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3287 (arg1
)->SetBitmapLabel((wxBitmap
const &)*arg2
);
3289 wxPyEndAllowThreads(__tstate
);
3290 if (PyErr_Occurred()) SWIG_fail
;
3292 Py_INCREF(Py_None
); resultobj
= Py_None
;
3299 static PyObject
*_wrap_BitmapButton_SetMargins(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3300 PyObject
*resultobj
= NULL
;
3301 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3304 PyObject
* obj0
= 0 ;
3305 PyObject
* obj1
= 0 ;
3306 PyObject
* obj2
= 0 ;
3308 (char *) "self",(char *) "x",(char *) "y", NULL
3311 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:BitmapButton_SetMargins",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
3312 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3313 if (SWIG_arg_fail(1)) SWIG_fail
;
3315 arg2
= static_cast<int >(SWIG_As_int(obj1
));
3316 if (SWIG_arg_fail(2)) SWIG_fail
;
3319 arg3
= static_cast<int >(SWIG_As_int(obj2
));
3320 if (SWIG_arg_fail(3)) SWIG_fail
;
3323 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3324 (arg1
)->SetMargins(arg2
,arg3
);
3326 wxPyEndAllowThreads(__tstate
);
3327 if (PyErr_Occurred()) SWIG_fail
;
3329 Py_INCREF(Py_None
); resultobj
= Py_None
;
3336 static PyObject
*_wrap_BitmapButton_GetMarginX(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3337 PyObject
*resultobj
= NULL
;
3338 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3340 PyObject
* obj0
= 0 ;
3342 (char *) "self", NULL
3345 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BitmapButton_GetMarginX",kwnames
,&obj0
)) goto fail
;
3346 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3347 if (SWIG_arg_fail(1)) SWIG_fail
;
3349 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3350 result
= (int)((wxBitmapButton
const *)arg1
)->GetMarginX();
3352 wxPyEndAllowThreads(__tstate
);
3353 if (PyErr_Occurred()) SWIG_fail
;
3356 resultobj
= SWIG_From_int(static_cast<int >(result
));
3364 static PyObject
*_wrap_BitmapButton_GetMarginY(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3365 PyObject
*resultobj
= NULL
;
3366 wxBitmapButton
*arg1
= (wxBitmapButton
*) 0 ;
3368 PyObject
* obj0
= 0 ;
3370 (char *) "self", NULL
3373 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BitmapButton_GetMarginY",kwnames
,&obj0
)) goto fail
;
3374 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmapButton
, SWIG_POINTER_EXCEPTION
| 0);
3375 if (SWIG_arg_fail(1)) SWIG_fail
;
3377 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3378 result
= (int)((wxBitmapButton
const *)arg1
)->GetMarginY();
3380 wxPyEndAllowThreads(__tstate
);
3381 if (PyErr_Occurred()) SWIG_fail
;
3384 resultobj
= SWIG_From_int(static_cast<int >(result
));
3392 static PyObject
* BitmapButton_swigregister(PyObject
*, PyObject
*args
) {
3394 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3395 SWIG_TypeClientData(SWIGTYPE_p_wxBitmapButton
, obj
);
3397 return Py_BuildValue((char *)"");
3399 static int _wrap_CheckBoxNameStr_set(PyObject
*) {
3400 PyErr_SetString(PyExc_TypeError
,"Variable CheckBoxNameStr is read-only.");
3405 static PyObject
*_wrap_CheckBoxNameStr_get(void) {
3406 PyObject
*pyobj
= NULL
;
3410 pyobj
= PyUnicode_FromWideChar((&wxPyCheckBoxNameStr
)->c_str(), (&wxPyCheckBoxNameStr
)->Len());
3412 pyobj
= PyString_FromStringAndSize((&wxPyCheckBoxNameStr
)->c_str(), (&wxPyCheckBoxNameStr
)->Len());
3419 static PyObject
*_wrap_new_CheckBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3420 PyObject
*resultobj
= NULL
;
3421 wxWindow
*arg1
= (wxWindow
*) 0 ;
3422 int arg2
= (int) -1 ;
3423 wxString
const &arg3_defvalue
= wxPyEmptyString
;
3424 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
3425 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
3426 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
3427 wxSize
const &arg5_defvalue
= wxDefaultSize
;
3428 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
3429 long arg6
= (long) 0 ;
3430 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
3431 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
3432 wxString
const &arg8_defvalue
= wxPyCheckBoxNameStr
;
3433 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
3435 bool temp3
= false ;
3438 bool temp8
= false ;
3439 PyObject
* obj0
= 0 ;
3440 PyObject
* obj1
= 0 ;
3441 PyObject
* obj2
= 0 ;
3442 PyObject
* obj3
= 0 ;
3443 PyObject
* obj4
= 0 ;
3444 PyObject
* obj5
= 0 ;
3445 PyObject
* obj6
= 0 ;
3446 PyObject
* obj7
= 0 ;
3448 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
3451 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_CheckBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
3452 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
3453 if (SWIG_arg_fail(1)) SWIG_fail
;
3456 arg2
= static_cast<int >(SWIG_As_int(obj1
));
3457 if (SWIG_arg_fail(2)) SWIG_fail
;
3462 arg3
= wxString_in_helper(obj2
);
3463 if (arg3
== NULL
) SWIG_fail
;
3470 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
3476 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
3481 arg6
= static_cast<long >(SWIG_As_long(obj5
));
3482 if (SWIG_arg_fail(6)) SWIG_fail
;
3487 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
3488 if (SWIG_arg_fail(7)) SWIG_fail
;
3490 SWIG_null_ref("wxValidator");
3492 if (SWIG_arg_fail(7)) SWIG_fail
;
3497 arg8
= wxString_in_helper(obj7
);
3498 if (arg8
== NULL
) SWIG_fail
;
3503 if (!wxPyCheckForApp()) SWIG_fail
;
3504 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3505 result
= (wxCheckBox
*)new wxCheckBox(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
3507 wxPyEndAllowThreads(__tstate
);
3508 if (PyErr_Occurred()) SWIG_fail
;
3510 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxCheckBox
, 1);
3533 static PyObject
*_wrap_new_PreCheckBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3534 PyObject
*resultobj
= NULL
;
3540 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreCheckBox",kwnames
)) goto fail
;
3542 if (!wxPyCheckForApp()) SWIG_fail
;
3543 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3544 result
= (wxCheckBox
*)new wxCheckBox();
3546 wxPyEndAllowThreads(__tstate
);
3547 if (PyErr_Occurred()) SWIG_fail
;
3549 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxCheckBox
, 1);
3556 static PyObject
*_wrap_CheckBox_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3557 PyObject
*resultobj
= NULL
;
3558 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3559 wxWindow
*arg2
= (wxWindow
*) 0 ;
3560 int arg3
= (int) -1 ;
3561 wxString
const &arg4_defvalue
= wxPyEmptyString
;
3562 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
3563 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
3564 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
3565 wxSize
const &arg6_defvalue
= wxDefaultSize
;
3566 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
3567 long arg7
= (long) 0 ;
3568 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
3569 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
3570 wxString
const &arg9_defvalue
= wxPyCheckBoxNameStr
;
3571 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
3573 bool temp4
= false ;
3576 bool temp9
= false ;
3577 PyObject
* obj0
= 0 ;
3578 PyObject
* obj1
= 0 ;
3579 PyObject
* obj2
= 0 ;
3580 PyObject
* obj3
= 0 ;
3581 PyObject
* obj4
= 0 ;
3582 PyObject
* obj5
= 0 ;
3583 PyObject
* obj6
= 0 ;
3584 PyObject
* obj7
= 0 ;
3585 PyObject
* obj8
= 0 ;
3587 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
3590 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:CheckBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
3591 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3592 if (SWIG_arg_fail(1)) SWIG_fail
;
3593 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
3594 if (SWIG_arg_fail(2)) SWIG_fail
;
3597 arg3
= static_cast<int >(SWIG_As_int(obj2
));
3598 if (SWIG_arg_fail(3)) SWIG_fail
;
3603 arg4
= wxString_in_helper(obj3
);
3604 if (arg4
== NULL
) SWIG_fail
;
3611 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
3617 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
3622 arg7
= static_cast<long >(SWIG_As_long(obj6
));
3623 if (SWIG_arg_fail(7)) SWIG_fail
;
3628 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
3629 if (SWIG_arg_fail(8)) SWIG_fail
;
3631 SWIG_null_ref("wxValidator");
3633 if (SWIG_arg_fail(8)) SWIG_fail
;
3638 arg9
= wxString_in_helper(obj8
);
3639 if (arg9
== NULL
) SWIG_fail
;
3644 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3645 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
3647 wxPyEndAllowThreads(__tstate
);
3648 if (PyErr_Occurred()) SWIG_fail
;
3651 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3675 static PyObject
*_wrap_CheckBox_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3676 PyObject
*resultobj
= NULL
;
3677 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3679 PyObject
* obj0
= 0 ;
3681 (char *) "self", NULL
3684 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CheckBox_GetValue",kwnames
,&obj0
)) goto fail
;
3685 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3686 if (SWIG_arg_fail(1)) SWIG_fail
;
3688 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3689 result
= (bool)(arg1
)->GetValue();
3691 wxPyEndAllowThreads(__tstate
);
3692 if (PyErr_Occurred()) SWIG_fail
;
3695 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3703 static PyObject
*_wrap_CheckBox_IsChecked(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3704 PyObject
*resultobj
= NULL
;
3705 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3707 PyObject
* obj0
= 0 ;
3709 (char *) "self", NULL
3712 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CheckBox_IsChecked",kwnames
,&obj0
)) goto fail
;
3713 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3714 if (SWIG_arg_fail(1)) SWIG_fail
;
3716 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3717 result
= (bool)(arg1
)->IsChecked();
3719 wxPyEndAllowThreads(__tstate
);
3720 if (PyErr_Occurred()) SWIG_fail
;
3723 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3731 static PyObject
*_wrap_CheckBox_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3732 PyObject
*resultobj
= NULL
;
3733 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3735 PyObject
* obj0
= 0 ;
3736 PyObject
* obj1
= 0 ;
3738 (char *) "self",(char *) "state", NULL
3741 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CheckBox_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
3742 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3743 if (SWIG_arg_fail(1)) SWIG_fail
;
3745 arg2
= static_cast<bool const >(SWIG_As_bool(obj1
));
3746 if (SWIG_arg_fail(2)) SWIG_fail
;
3749 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3750 (arg1
)->SetValue(arg2
);
3752 wxPyEndAllowThreads(__tstate
);
3753 if (PyErr_Occurred()) SWIG_fail
;
3755 Py_INCREF(Py_None
); resultobj
= Py_None
;
3762 static PyObject
*_wrap_CheckBox_Get3StateValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3763 PyObject
*resultobj
= NULL
;
3764 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3765 wxCheckBoxState result
;
3766 PyObject
* obj0
= 0 ;
3768 (char *) "self", NULL
3771 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CheckBox_Get3StateValue",kwnames
,&obj0
)) goto fail
;
3772 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3773 if (SWIG_arg_fail(1)) SWIG_fail
;
3775 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3776 result
= (wxCheckBoxState
)((wxCheckBox
const *)arg1
)->Get3StateValue();
3778 wxPyEndAllowThreads(__tstate
);
3779 if (PyErr_Occurred()) SWIG_fail
;
3781 resultobj
= SWIG_From_int((result
));
3788 static PyObject
*_wrap_CheckBox_Set3StateValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3789 PyObject
*resultobj
= NULL
;
3790 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3791 wxCheckBoxState arg2
;
3792 PyObject
* obj0
= 0 ;
3793 PyObject
* obj1
= 0 ;
3795 (char *) "self",(char *) "state", NULL
3798 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CheckBox_Set3StateValue",kwnames
,&obj0
,&obj1
)) goto fail
;
3799 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3800 if (SWIG_arg_fail(1)) SWIG_fail
;
3802 arg2
= static_cast<wxCheckBoxState
>(SWIG_As_int(obj1
));
3803 if (SWIG_arg_fail(2)) SWIG_fail
;
3806 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3807 (arg1
)->Set3StateValue(arg2
);
3809 wxPyEndAllowThreads(__tstate
);
3810 if (PyErr_Occurred()) SWIG_fail
;
3812 Py_INCREF(Py_None
); resultobj
= Py_None
;
3819 static PyObject
*_wrap_CheckBox_Is3State(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3820 PyObject
*resultobj
= NULL
;
3821 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3823 PyObject
* obj0
= 0 ;
3825 (char *) "self", NULL
3828 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CheckBox_Is3State",kwnames
,&obj0
)) goto fail
;
3829 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3830 if (SWIG_arg_fail(1)) SWIG_fail
;
3832 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3833 result
= (bool)((wxCheckBox
const *)arg1
)->Is3State();
3835 wxPyEndAllowThreads(__tstate
);
3836 if (PyErr_Occurred()) SWIG_fail
;
3839 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3847 static PyObject
*_wrap_CheckBox_Is3rdStateAllowedForUser(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3848 PyObject
*resultobj
= NULL
;
3849 wxCheckBox
*arg1
= (wxCheckBox
*) 0 ;
3851 PyObject
* obj0
= 0 ;
3853 (char *) "self", NULL
3856 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CheckBox_Is3rdStateAllowedForUser",kwnames
,&obj0
)) goto fail
;
3857 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckBox
, SWIG_POINTER_EXCEPTION
| 0);
3858 if (SWIG_arg_fail(1)) SWIG_fail
;
3860 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3861 result
= (bool)((wxCheckBox
const *)arg1
)->Is3rdStateAllowedForUser();
3863 wxPyEndAllowThreads(__tstate
);
3864 if (PyErr_Occurred()) SWIG_fail
;
3867 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3875 static PyObject
*_wrap_CheckBox_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3876 PyObject
*resultobj
= NULL
;
3877 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
3878 wxVisualAttributes result
;
3879 PyObject
* obj0
= 0 ;
3881 (char *) "variant", NULL
3884 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:CheckBox_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
3887 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
3888 if (SWIG_arg_fail(1)) SWIG_fail
;
3892 if (!wxPyCheckForApp()) SWIG_fail
;
3893 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3894 result
= wxCheckBox::GetClassDefaultAttributes(arg1
);
3896 wxPyEndAllowThreads(__tstate
);
3897 if (PyErr_Occurred()) SWIG_fail
;
3900 wxVisualAttributes
* resultptr
;
3901 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
3902 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
3910 static PyObject
* CheckBox_swigregister(PyObject
*, PyObject
*args
) {
3912 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3913 SWIG_TypeClientData(SWIGTYPE_p_wxCheckBox
, obj
);
3915 return Py_BuildValue((char *)"");
3917 static int _wrap_ChoiceNameStr_set(PyObject
*) {
3918 PyErr_SetString(PyExc_TypeError
,"Variable ChoiceNameStr is read-only.");
3923 static PyObject
*_wrap_ChoiceNameStr_get(void) {
3924 PyObject
*pyobj
= NULL
;
3928 pyobj
= PyUnicode_FromWideChar((&wxPyChoiceNameStr
)->c_str(), (&wxPyChoiceNameStr
)->Len());
3930 pyobj
= PyString_FromStringAndSize((&wxPyChoiceNameStr
)->c_str(), (&wxPyChoiceNameStr
)->Len());
3937 static PyObject
*_wrap_new_Choice(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
3938 PyObject
*resultobj
= NULL
;
3939 wxWindow
*arg1
= (wxWindow
*) 0 ;
3940 int arg2
= (int) -1 ;
3941 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
3942 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
3943 wxSize
const &arg4_defvalue
= wxDefaultSize
;
3944 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
3945 wxArrayString
const &arg5_defvalue
= wxPyEmptyStringArray
;
3946 wxArrayString
*arg5
= (wxArrayString
*) &arg5_defvalue
;
3947 long arg6
= (long) 0 ;
3948 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
3949 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
3950 wxString
const &arg8_defvalue
= wxPyChoiceNameStr
;
3951 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
3955 bool temp5
= false ;
3956 bool temp8
= false ;
3957 PyObject
* obj0
= 0 ;
3958 PyObject
* obj1
= 0 ;
3959 PyObject
* obj2
= 0 ;
3960 PyObject
* obj3
= 0 ;
3961 PyObject
* obj4
= 0 ;
3962 PyObject
* obj5
= 0 ;
3963 PyObject
* obj6
= 0 ;
3964 PyObject
* obj7
= 0 ;
3966 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
3969 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_Choice",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
3970 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
3971 if (SWIG_arg_fail(1)) SWIG_fail
;
3974 arg2
= static_cast<int >(SWIG_As_int(obj1
));
3975 if (SWIG_arg_fail(2)) SWIG_fail
;
3981 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
3987 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
3992 if (! PySequence_Check(obj4
)) {
3993 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
3996 arg5
= new wxArrayString
;
3998 int i
, len
=PySequence_Length(obj4
);
3999 for (i
=0; i
<len
; i
++) {
4000 PyObject
* item
= PySequence_GetItem(obj4
, i
);
4001 wxString
* s
= wxString_in_helper(item
);
4002 if (PyErr_Occurred()) SWIG_fail
;
4011 arg6
= static_cast<long >(SWIG_As_long(obj5
));
4012 if (SWIG_arg_fail(6)) SWIG_fail
;
4017 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
4018 if (SWIG_arg_fail(7)) SWIG_fail
;
4020 SWIG_null_ref("wxValidator");
4022 if (SWIG_arg_fail(7)) SWIG_fail
;
4027 arg8
= wxString_in_helper(obj7
);
4028 if (arg8
== NULL
) SWIG_fail
;
4033 if (!wxPyCheckForApp()) SWIG_fail
;
4034 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4035 result
= (wxChoice
*)new wxChoice(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,(wxArrayString
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
4037 wxPyEndAllowThreads(__tstate
);
4038 if (PyErr_Occurred()) SWIG_fail
;
4040 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxChoice
, 1);
4042 if (temp5
) delete arg5
;
4051 if (temp5
) delete arg5
;
4061 static PyObject
*_wrap_new_PreChoice(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4062 PyObject
*resultobj
= NULL
;
4068 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreChoice",kwnames
)) goto fail
;
4070 if (!wxPyCheckForApp()) SWIG_fail
;
4071 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4072 result
= (wxChoice
*)new wxChoice();
4074 wxPyEndAllowThreads(__tstate
);
4075 if (PyErr_Occurred()) SWIG_fail
;
4077 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxChoice
, 1);
4084 static PyObject
*_wrap_Choice_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4085 PyObject
*resultobj
= NULL
;
4086 wxChoice
*arg1
= (wxChoice
*) 0 ;
4087 wxWindow
*arg2
= (wxWindow
*) 0 ;
4088 int arg3
= (int) -1 ;
4089 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
4090 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
4091 wxSize
const &arg5_defvalue
= wxDefaultSize
;
4092 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
4093 wxArrayString
const &arg6_defvalue
= wxPyEmptyStringArray
;
4094 wxArrayString
*arg6
= (wxArrayString
*) &arg6_defvalue
;
4095 long arg7
= (long) 0 ;
4096 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
4097 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
4098 wxString
const &arg9_defvalue
= wxPyChoiceNameStr
;
4099 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
4103 bool temp6
= false ;
4104 bool temp9
= false ;
4105 PyObject
* obj0
= 0 ;
4106 PyObject
* obj1
= 0 ;
4107 PyObject
* obj2
= 0 ;
4108 PyObject
* obj3
= 0 ;
4109 PyObject
* obj4
= 0 ;
4110 PyObject
* obj5
= 0 ;
4111 PyObject
* obj6
= 0 ;
4112 PyObject
* obj7
= 0 ;
4113 PyObject
* obj8
= 0 ;
4115 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
4118 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:Choice_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
4119 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxChoice
, SWIG_POINTER_EXCEPTION
| 0);
4120 if (SWIG_arg_fail(1)) SWIG_fail
;
4121 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
4122 if (SWIG_arg_fail(2)) SWIG_fail
;
4125 arg3
= static_cast<int >(SWIG_As_int(obj2
));
4126 if (SWIG_arg_fail(3)) SWIG_fail
;
4132 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
4138 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
4143 if (! PySequence_Check(obj5
)) {
4144 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
4147 arg6
= new wxArrayString
;
4149 int i
, len
=PySequence_Length(obj5
);
4150 for (i
=0; i
<len
; i
++) {
4151 PyObject
* item
= PySequence_GetItem(obj5
, i
);
4152 wxString
* s
= wxString_in_helper(item
);
4153 if (PyErr_Occurred()) SWIG_fail
;
4162 arg7
= static_cast<long >(SWIG_As_long(obj6
));
4163 if (SWIG_arg_fail(7)) SWIG_fail
;
4168 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
4169 if (SWIG_arg_fail(8)) SWIG_fail
;
4171 SWIG_null_ref("wxValidator");
4173 if (SWIG_arg_fail(8)) SWIG_fail
;
4178 arg9
= wxString_in_helper(obj8
);
4179 if (arg9
== NULL
) SWIG_fail
;
4184 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4185 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,(wxArrayString
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
4187 wxPyEndAllowThreads(__tstate
);
4188 if (PyErr_Occurred()) SWIG_fail
;
4191 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4194 if (temp6
) delete arg6
;
4203 if (temp6
) delete arg6
;
4213 static PyObject
*_wrap_Choice_GetCurrentSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4214 PyObject
*resultobj
= NULL
;
4215 wxChoice
*arg1
= (wxChoice
*) 0 ;
4217 PyObject
* obj0
= 0 ;
4219 (char *) "self", NULL
4222 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Choice_GetCurrentSelection",kwnames
,&obj0
)) goto fail
;
4223 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxChoice
, SWIG_POINTER_EXCEPTION
| 0);
4224 if (SWIG_arg_fail(1)) SWIG_fail
;
4226 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4227 result
= (int)((wxChoice
const *)arg1
)->GetCurrentSelection();
4229 wxPyEndAllowThreads(__tstate
);
4230 if (PyErr_Occurred()) SWIG_fail
;
4233 resultobj
= SWIG_From_int(static_cast<int >(result
));
4241 static PyObject
*_wrap_Choice_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4242 PyObject
*resultobj
= NULL
;
4243 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
4244 wxVisualAttributes result
;
4245 PyObject
* obj0
= 0 ;
4247 (char *) "variant", NULL
4250 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Choice_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
4253 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
4254 if (SWIG_arg_fail(1)) SWIG_fail
;
4258 if (!wxPyCheckForApp()) SWIG_fail
;
4259 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4260 result
= wxChoice::GetClassDefaultAttributes(arg1
);
4262 wxPyEndAllowThreads(__tstate
);
4263 if (PyErr_Occurred()) SWIG_fail
;
4266 wxVisualAttributes
* resultptr
;
4267 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
4268 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
4276 static PyObject
* Choice_swigregister(PyObject
*, PyObject
*args
) {
4278 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
4279 SWIG_TypeClientData(SWIGTYPE_p_wxChoice
, obj
);
4281 return Py_BuildValue((char *)"");
4283 static int _wrap_ComboBoxNameStr_set(PyObject
*) {
4284 PyErr_SetString(PyExc_TypeError
,"Variable ComboBoxNameStr is read-only.");
4289 static PyObject
*_wrap_ComboBoxNameStr_get(void) {
4290 PyObject
*pyobj
= NULL
;
4294 pyobj
= PyUnicode_FromWideChar((&wxPyComboBoxNameStr
)->c_str(), (&wxPyComboBoxNameStr
)->Len());
4296 pyobj
= PyString_FromStringAndSize((&wxPyComboBoxNameStr
)->c_str(), (&wxPyComboBoxNameStr
)->Len());
4303 static PyObject
*_wrap_new_ComboBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4304 PyObject
*resultobj
= NULL
;
4305 wxWindow
*arg1
= (wxWindow
*) 0 ;
4306 int arg2
= (int) -1 ;
4307 wxString
const &arg3_defvalue
= wxPyEmptyString
;
4308 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
4309 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
4310 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
4311 wxSize
const &arg5_defvalue
= wxDefaultSize
;
4312 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
4313 wxArrayString
const &arg6_defvalue
= wxPyEmptyStringArray
;
4314 wxArrayString
*arg6
= (wxArrayString
*) &arg6_defvalue
;
4315 long arg7
= (long) 0 ;
4316 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
4317 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
4318 wxString
const &arg9_defvalue
= wxPyComboBoxNameStr
;
4319 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
4321 bool temp3
= false ;
4324 bool temp6
= false ;
4325 bool temp9
= false ;
4326 PyObject
* obj0
= 0 ;
4327 PyObject
* obj1
= 0 ;
4328 PyObject
* obj2
= 0 ;
4329 PyObject
* obj3
= 0 ;
4330 PyObject
* obj4
= 0 ;
4331 PyObject
* obj5
= 0 ;
4332 PyObject
* obj6
= 0 ;
4333 PyObject
* obj7
= 0 ;
4334 PyObject
* obj8
= 0 ;
4336 (char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
4339 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOOO:new_ComboBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
4340 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
4341 if (SWIG_arg_fail(1)) SWIG_fail
;
4344 arg2
= static_cast<int >(SWIG_As_int(obj1
));
4345 if (SWIG_arg_fail(2)) SWIG_fail
;
4350 arg3
= wxString_in_helper(obj2
);
4351 if (arg3
== NULL
) SWIG_fail
;
4358 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
4364 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
4369 if (! PySequence_Check(obj5
)) {
4370 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
4373 arg6
= new wxArrayString
;
4375 int i
, len
=PySequence_Length(obj5
);
4376 for (i
=0; i
<len
; i
++) {
4377 PyObject
* item
= PySequence_GetItem(obj5
, i
);
4378 wxString
* s
= wxString_in_helper(item
);
4379 if (PyErr_Occurred()) SWIG_fail
;
4388 arg7
= static_cast<long >(SWIG_As_long(obj6
));
4389 if (SWIG_arg_fail(7)) SWIG_fail
;
4394 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
4395 if (SWIG_arg_fail(8)) SWIG_fail
;
4397 SWIG_null_ref("wxValidator");
4399 if (SWIG_arg_fail(8)) SWIG_fail
;
4404 arg9
= wxString_in_helper(obj8
);
4405 if (arg9
== NULL
) SWIG_fail
;
4410 if (!wxPyCheckForApp()) SWIG_fail
;
4411 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4412 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
);
4414 wxPyEndAllowThreads(__tstate
);
4415 if (PyErr_Occurred()) SWIG_fail
;
4417 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxComboBox
, 1);
4423 if (temp6
) delete arg6
;
4436 if (temp6
) delete arg6
;
4446 static PyObject
*_wrap_new_PreComboBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4447 PyObject
*resultobj
= NULL
;
4453 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreComboBox",kwnames
)) goto fail
;
4455 if (!wxPyCheckForApp()) SWIG_fail
;
4456 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4457 result
= (wxComboBox
*)new wxComboBox();
4459 wxPyEndAllowThreads(__tstate
);
4460 if (PyErr_Occurred()) SWIG_fail
;
4462 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxComboBox
, 1);
4469 static PyObject
*_wrap_ComboBox_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4470 PyObject
*resultobj
= NULL
;
4471 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4472 wxWindow
*arg2
= (wxWindow
*) 0 ;
4473 int arg3
= (int) -1 ;
4474 wxString
const &arg4_defvalue
= wxPyEmptyString
;
4475 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
4476 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
4477 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
4478 wxSize
const &arg6_defvalue
= wxDefaultSize
;
4479 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
4480 wxArrayString
const &arg7_defvalue
= wxPyEmptyStringArray
;
4481 wxArrayString
*arg7
= (wxArrayString
*) &arg7_defvalue
;
4482 long arg8
= (long) 0 ;
4483 wxValidator
const &arg9_defvalue
= wxDefaultValidator
;
4484 wxValidator
*arg9
= (wxValidator
*) &arg9_defvalue
;
4485 wxString
const &arg10_defvalue
= wxPyChoiceNameStr
;
4486 wxString
*arg10
= (wxString
*) &arg10_defvalue
;
4488 bool temp4
= false ;
4491 bool temp7
= false ;
4492 bool temp10
= false ;
4493 PyObject
* obj0
= 0 ;
4494 PyObject
* obj1
= 0 ;
4495 PyObject
* obj2
= 0 ;
4496 PyObject
* obj3
= 0 ;
4497 PyObject
* obj4
= 0 ;
4498 PyObject
* obj5
= 0 ;
4499 PyObject
* obj6
= 0 ;
4500 PyObject
* obj7
= 0 ;
4501 PyObject
* obj8
= 0 ;
4502 PyObject
* obj9
= 0 ;
4504 (char *) "self",(char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
4507 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOOO:ComboBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) goto fail
;
4508 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4509 if (SWIG_arg_fail(1)) SWIG_fail
;
4510 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
4511 if (SWIG_arg_fail(2)) SWIG_fail
;
4514 arg3
= static_cast<int >(SWIG_As_int(obj2
));
4515 if (SWIG_arg_fail(3)) SWIG_fail
;
4520 arg4
= wxString_in_helper(obj3
);
4521 if (arg4
== NULL
) SWIG_fail
;
4528 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
4534 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
4539 if (! PySequence_Check(obj6
)) {
4540 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
4543 arg7
= new wxArrayString
;
4545 int i
, len
=PySequence_Length(obj6
);
4546 for (i
=0; i
<len
; i
++) {
4547 PyObject
* item
= PySequence_GetItem(obj6
, i
);
4548 wxString
* s
= wxString_in_helper(item
);
4549 if (PyErr_Occurred()) SWIG_fail
;
4558 arg8
= static_cast<long >(SWIG_As_long(obj7
));
4559 if (SWIG_arg_fail(8)) SWIG_fail
;
4564 SWIG_Python_ConvertPtr(obj8
, (void **)&arg9
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
4565 if (SWIG_arg_fail(9)) SWIG_fail
;
4567 SWIG_null_ref("wxValidator");
4569 if (SWIG_arg_fail(9)) SWIG_fail
;
4574 arg10
= wxString_in_helper(obj9
);
4575 if (arg10
== NULL
) SWIG_fail
;
4580 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4581 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
);
4583 wxPyEndAllowThreads(__tstate
);
4584 if (PyErr_Occurred()) SWIG_fail
;
4587 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4594 if (temp7
) delete arg7
;
4607 if (temp7
) delete arg7
;
4617 static PyObject
*_wrap_ComboBox_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4618 PyObject
*resultobj
= NULL
;
4619 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4621 PyObject
* obj0
= 0 ;
4623 (char *) "self", NULL
4626 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_GetValue",kwnames
,&obj0
)) goto fail
;
4627 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4628 if (SWIG_arg_fail(1)) SWIG_fail
;
4630 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4631 result
= ((wxComboBox
const *)arg1
)->GetValue();
4633 wxPyEndAllowThreads(__tstate
);
4634 if (PyErr_Occurred()) SWIG_fail
;
4638 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
4640 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
4649 static PyObject
*_wrap_ComboBox_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4650 PyObject
*resultobj
= NULL
;
4651 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4652 wxString
*arg2
= 0 ;
4653 bool temp2
= false ;
4654 PyObject
* obj0
= 0 ;
4655 PyObject
* obj1
= 0 ;
4657 (char *) "self",(char *) "value", NULL
4660 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ComboBox_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
4661 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4662 if (SWIG_arg_fail(1)) SWIG_fail
;
4664 arg2
= wxString_in_helper(obj1
);
4665 if (arg2
== NULL
) SWIG_fail
;
4669 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4670 (arg1
)->SetValue((wxString
const &)*arg2
);
4672 wxPyEndAllowThreads(__tstate
);
4673 if (PyErr_Occurred()) SWIG_fail
;
4675 Py_INCREF(Py_None
); resultobj
= Py_None
;
4690 static PyObject
*_wrap_ComboBox_Copy(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4691 PyObject
*resultobj
= NULL
;
4692 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4693 PyObject
* obj0
= 0 ;
4695 (char *) "self", NULL
4698 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_Copy",kwnames
,&obj0
)) goto fail
;
4699 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4700 if (SWIG_arg_fail(1)) SWIG_fail
;
4702 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4705 wxPyEndAllowThreads(__tstate
);
4706 if (PyErr_Occurred()) SWIG_fail
;
4708 Py_INCREF(Py_None
); resultobj
= Py_None
;
4715 static PyObject
*_wrap_ComboBox_Cut(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4716 PyObject
*resultobj
= NULL
;
4717 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4718 PyObject
* obj0
= 0 ;
4720 (char *) "self", NULL
4723 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_Cut",kwnames
,&obj0
)) goto fail
;
4724 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4725 if (SWIG_arg_fail(1)) SWIG_fail
;
4727 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4730 wxPyEndAllowThreads(__tstate
);
4731 if (PyErr_Occurred()) SWIG_fail
;
4733 Py_INCREF(Py_None
); resultobj
= Py_None
;
4740 static PyObject
*_wrap_ComboBox_Paste(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4741 PyObject
*resultobj
= NULL
;
4742 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4743 PyObject
* obj0
= 0 ;
4745 (char *) "self", NULL
4748 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_Paste",kwnames
,&obj0
)) goto fail
;
4749 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4750 if (SWIG_arg_fail(1)) SWIG_fail
;
4752 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4755 wxPyEndAllowThreads(__tstate
);
4756 if (PyErr_Occurred()) SWIG_fail
;
4758 Py_INCREF(Py_None
); resultobj
= Py_None
;
4765 static PyObject
*_wrap_ComboBox_SetInsertionPoint(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4766 PyObject
*resultobj
= NULL
;
4767 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4769 PyObject
* obj0
= 0 ;
4770 PyObject
* obj1
= 0 ;
4772 (char *) "self",(char *) "pos", NULL
4775 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ComboBox_SetInsertionPoint",kwnames
,&obj0
,&obj1
)) goto fail
;
4776 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4777 if (SWIG_arg_fail(1)) SWIG_fail
;
4779 arg2
= static_cast<long >(SWIG_As_long(obj1
));
4780 if (SWIG_arg_fail(2)) SWIG_fail
;
4783 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4784 (arg1
)->SetInsertionPoint(arg2
);
4786 wxPyEndAllowThreads(__tstate
);
4787 if (PyErr_Occurred()) SWIG_fail
;
4789 Py_INCREF(Py_None
); resultobj
= Py_None
;
4796 static PyObject
*_wrap_ComboBox_GetInsertionPoint(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4797 PyObject
*resultobj
= NULL
;
4798 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4800 PyObject
* obj0
= 0 ;
4802 (char *) "self", NULL
4805 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_GetInsertionPoint",kwnames
,&obj0
)) goto fail
;
4806 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4807 if (SWIG_arg_fail(1)) SWIG_fail
;
4809 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4810 result
= (long)((wxComboBox
const *)arg1
)->GetInsertionPoint();
4812 wxPyEndAllowThreads(__tstate
);
4813 if (PyErr_Occurred()) SWIG_fail
;
4816 resultobj
= SWIG_From_long(static_cast<long >(result
));
4824 static PyObject
*_wrap_ComboBox_GetLastPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4825 PyObject
*resultobj
= NULL
;
4826 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4828 PyObject
* obj0
= 0 ;
4830 (char *) "self", NULL
4833 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_GetLastPosition",kwnames
,&obj0
)) goto fail
;
4834 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4835 if (SWIG_arg_fail(1)) SWIG_fail
;
4837 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4838 result
= (long)((wxComboBox
const *)arg1
)->GetLastPosition();
4840 wxPyEndAllowThreads(__tstate
);
4841 if (PyErr_Occurred()) SWIG_fail
;
4844 resultobj
= SWIG_From_long(static_cast<long >(result
));
4852 static PyObject
*_wrap_ComboBox_Replace(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4853 PyObject
*resultobj
= NULL
;
4854 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4857 wxString
*arg4
= 0 ;
4858 bool temp4
= false ;
4859 PyObject
* obj0
= 0 ;
4860 PyObject
* obj1
= 0 ;
4861 PyObject
* obj2
= 0 ;
4862 PyObject
* obj3
= 0 ;
4864 (char *) "self",(char *) "from",(char *) "to",(char *) "value", NULL
4867 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:ComboBox_Replace",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
4868 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4869 if (SWIG_arg_fail(1)) SWIG_fail
;
4871 arg2
= static_cast<long >(SWIG_As_long(obj1
));
4872 if (SWIG_arg_fail(2)) SWIG_fail
;
4875 arg3
= static_cast<long >(SWIG_As_long(obj2
));
4876 if (SWIG_arg_fail(3)) SWIG_fail
;
4879 arg4
= wxString_in_helper(obj3
);
4880 if (arg4
== NULL
) SWIG_fail
;
4884 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4885 (arg1
)->Replace(arg2
,arg3
,(wxString
const &)*arg4
);
4887 wxPyEndAllowThreads(__tstate
);
4888 if (PyErr_Occurred()) SWIG_fail
;
4890 Py_INCREF(Py_None
); resultobj
= Py_None
;
4905 static PyObject
*_wrap_ComboBox_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4906 PyObject
*resultobj
= NULL
;
4907 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4909 PyObject
* obj0
= 0 ;
4910 PyObject
* obj1
= 0 ;
4912 (char *) "self",(char *) "n", NULL
4915 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ComboBox_SetSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
4916 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4917 if (SWIG_arg_fail(1)) SWIG_fail
;
4919 arg2
= static_cast<int >(SWIG_As_int(obj1
));
4920 if (SWIG_arg_fail(2)) SWIG_fail
;
4923 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4924 (arg1
)->SetSelection(arg2
);
4926 wxPyEndAllowThreads(__tstate
);
4927 if (PyErr_Occurred()) SWIG_fail
;
4929 Py_INCREF(Py_None
); resultobj
= Py_None
;
4936 static PyObject
*_wrap_ComboBox_SetMark(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4937 PyObject
*resultobj
= NULL
;
4938 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4941 PyObject
* obj0
= 0 ;
4942 PyObject
* obj1
= 0 ;
4943 PyObject
* obj2
= 0 ;
4945 (char *) "self",(char *) "from",(char *) "to", NULL
4948 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ComboBox_SetMark",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
4949 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4950 if (SWIG_arg_fail(1)) SWIG_fail
;
4952 arg2
= static_cast<long >(SWIG_As_long(obj1
));
4953 if (SWIG_arg_fail(2)) SWIG_fail
;
4956 arg3
= static_cast<long >(SWIG_As_long(obj2
));
4957 if (SWIG_arg_fail(3)) SWIG_fail
;
4960 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4961 (arg1
)->SetSelection(arg2
,arg3
);
4963 wxPyEndAllowThreads(__tstate
);
4964 if (PyErr_Occurred()) SWIG_fail
;
4966 Py_INCREF(Py_None
); resultobj
= Py_None
;
4973 static PyObject
*_wrap_ComboBox_GetMark(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
4974 PyObject
*resultobj
= NULL
;
4975 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
4976 long *arg2
= (long *) 0 ;
4977 long *arg3
= (long *) 0 ;
4982 PyObject
* obj0
= 0 ;
4984 (char *) "self", NULL
4987 arg2
= &temp2
; res2
= SWIG_NEWOBJ
;
4988 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
4989 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_GetMark",kwnames
,&obj0
)) goto fail
;
4990 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
4991 if (SWIG_arg_fail(1)) SWIG_fail
;
4993 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4994 (arg1
)->GetSelection(arg2
,arg3
);
4996 wxPyEndAllowThreads(__tstate
);
4997 if (PyErr_Occurred()) SWIG_fail
;
4999 Py_INCREF(Py_None
); resultobj
= Py_None
;
5000 resultobj
= t_output_helper(resultobj
, ((res2
== SWIG_NEWOBJ
) ?
5001 SWIG_From_long((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_long
, 0)));
5002 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
5003 SWIG_From_long((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_long
, 0)));
5010 static PyObject
*_wrap_ComboBox_GetCurrentSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5011 PyObject
*resultobj
= NULL
;
5012 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5014 PyObject
* obj0
= 0 ;
5016 (char *) "self", NULL
5019 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_GetCurrentSelection",kwnames
,&obj0
)) goto fail
;
5020 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5021 if (SWIG_arg_fail(1)) SWIG_fail
;
5023 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5024 result
= (int)((wxComboBox
const *)arg1
)->GetCurrentSelection();
5026 wxPyEndAllowThreads(__tstate
);
5027 if (PyErr_Occurred()) SWIG_fail
;
5030 resultobj
= SWIG_From_int(static_cast<int >(result
));
5038 static PyObject
*_wrap_ComboBox_SetStringSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5039 PyObject
*resultobj
= NULL
;
5040 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5041 wxString
*arg2
= 0 ;
5043 bool temp2
= false ;
5044 PyObject
* obj0
= 0 ;
5045 PyObject
* obj1
= 0 ;
5047 (char *) "self",(char *) "string", NULL
5050 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ComboBox_SetStringSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
5051 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5052 if (SWIG_arg_fail(1)) SWIG_fail
;
5054 arg2
= wxString_in_helper(obj1
);
5055 if (arg2
== NULL
) SWIG_fail
;
5059 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5060 result
= (bool)(arg1
)->SetStringSelection((wxString
const &)*arg2
);
5062 wxPyEndAllowThreads(__tstate
);
5063 if (PyErr_Occurred()) SWIG_fail
;
5066 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5082 static PyObject
*_wrap_ComboBox_SetString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5083 PyObject
*resultobj
= NULL
;
5084 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5086 wxString
*arg3
= 0 ;
5087 bool temp3
= false ;
5088 PyObject
* obj0
= 0 ;
5089 PyObject
* obj1
= 0 ;
5090 PyObject
* obj2
= 0 ;
5092 (char *) "self",(char *) "n",(char *) "string", NULL
5095 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ComboBox_SetString",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
5096 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5097 if (SWIG_arg_fail(1)) SWIG_fail
;
5099 arg2
= static_cast<int >(SWIG_As_int(obj1
));
5100 if (SWIG_arg_fail(2)) SWIG_fail
;
5103 arg3
= wxString_in_helper(obj2
);
5104 if (arg3
== NULL
) SWIG_fail
;
5108 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5109 (arg1
)->SetString(arg2
,(wxString
const &)*arg3
);
5111 wxPyEndAllowThreads(__tstate
);
5112 if (PyErr_Occurred()) SWIG_fail
;
5114 Py_INCREF(Py_None
); resultobj
= Py_None
;
5129 static PyObject
*_wrap_ComboBox_SetEditable(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5130 PyObject
*resultobj
= NULL
;
5131 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5133 PyObject
* obj0
= 0 ;
5134 PyObject
* obj1
= 0 ;
5136 (char *) "self",(char *) "editable", NULL
5139 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ComboBox_SetEditable",kwnames
,&obj0
,&obj1
)) goto fail
;
5140 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5141 if (SWIG_arg_fail(1)) SWIG_fail
;
5143 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
5144 if (SWIG_arg_fail(2)) SWIG_fail
;
5147 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5148 (arg1
)->SetEditable(arg2
);
5150 wxPyEndAllowThreads(__tstate
);
5151 if (PyErr_Occurred()) SWIG_fail
;
5153 Py_INCREF(Py_None
); resultobj
= Py_None
;
5160 static PyObject
*_wrap_ComboBox_SetInsertionPointEnd(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5161 PyObject
*resultobj
= NULL
;
5162 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5163 PyObject
* obj0
= 0 ;
5165 (char *) "self", NULL
5168 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_SetInsertionPointEnd",kwnames
,&obj0
)) goto fail
;
5169 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5170 if (SWIG_arg_fail(1)) SWIG_fail
;
5172 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5173 (arg1
)->SetInsertionPointEnd();
5175 wxPyEndAllowThreads(__tstate
);
5176 if (PyErr_Occurred()) SWIG_fail
;
5178 Py_INCREF(Py_None
); resultobj
= Py_None
;
5185 static PyObject
*_wrap_ComboBox_Remove(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5186 PyObject
*resultobj
= NULL
;
5187 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5190 PyObject
* obj0
= 0 ;
5191 PyObject
* obj1
= 0 ;
5192 PyObject
* obj2
= 0 ;
5194 (char *) "self",(char *) "from",(char *) "to", NULL
5197 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ComboBox_Remove",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
5198 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5199 if (SWIG_arg_fail(1)) SWIG_fail
;
5201 arg2
= static_cast<long >(SWIG_As_long(obj1
));
5202 if (SWIG_arg_fail(2)) SWIG_fail
;
5205 arg3
= static_cast<long >(SWIG_As_long(obj2
));
5206 if (SWIG_arg_fail(3)) SWIG_fail
;
5209 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5210 (arg1
)->Remove(arg2
,arg3
);
5212 wxPyEndAllowThreads(__tstate
);
5213 if (PyErr_Occurred()) SWIG_fail
;
5215 Py_INCREF(Py_None
); resultobj
= Py_None
;
5222 static PyObject
*_wrap_ComboBox_IsEditable(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5223 PyObject
*resultobj
= NULL
;
5224 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5226 PyObject
* obj0
= 0 ;
5228 (char *) "self", NULL
5231 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_IsEditable",kwnames
,&obj0
)) goto fail
;
5232 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5233 if (SWIG_arg_fail(1)) SWIG_fail
;
5235 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5236 result
= (bool)((wxComboBox
const *)arg1
)->IsEditable();
5238 wxPyEndAllowThreads(__tstate
);
5239 if (PyErr_Occurred()) SWIG_fail
;
5242 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5250 static PyObject
*_wrap_ComboBox_Undo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5251 PyObject
*resultobj
= NULL
;
5252 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5253 PyObject
* obj0
= 0 ;
5255 (char *) "self", NULL
5258 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_Undo",kwnames
,&obj0
)) goto fail
;
5259 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5260 if (SWIG_arg_fail(1)) SWIG_fail
;
5262 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5265 wxPyEndAllowThreads(__tstate
);
5266 if (PyErr_Occurred()) SWIG_fail
;
5268 Py_INCREF(Py_None
); resultobj
= Py_None
;
5275 static PyObject
*_wrap_ComboBox_Redo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5276 PyObject
*resultobj
= NULL
;
5277 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5278 PyObject
* obj0
= 0 ;
5280 (char *) "self", NULL
5283 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_Redo",kwnames
,&obj0
)) goto fail
;
5284 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5285 if (SWIG_arg_fail(1)) SWIG_fail
;
5287 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5290 wxPyEndAllowThreads(__tstate
);
5291 if (PyErr_Occurred()) SWIG_fail
;
5293 Py_INCREF(Py_None
); resultobj
= Py_None
;
5300 static PyObject
*_wrap_ComboBox_SelectAll(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5301 PyObject
*resultobj
= NULL
;
5302 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5303 PyObject
* obj0
= 0 ;
5305 (char *) "self", NULL
5308 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_SelectAll",kwnames
,&obj0
)) goto fail
;
5309 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5310 if (SWIG_arg_fail(1)) SWIG_fail
;
5312 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5313 (arg1
)->SelectAll();
5315 wxPyEndAllowThreads(__tstate
);
5316 if (PyErr_Occurred()) SWIG_fail
;
5318 Py_INCREF(Py_None
); resultobj
= Py_None
;
5325 static PyObject
*_wrap_ComboBox_CanCopy(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5326 PyObject
*resultobj
= NULL
;
5327 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5329 PyObject
* obj0
= 0 ;
5331 (char *) "self", NULL
5334 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_CanCopy",kwnames
,&obj0
)) goto fail
;
5335 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5336 if (SWIG_arg_fail(1)) SWIG_fail
;
5338 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5339 result
= (bool)((wxComboBox
const *)arg1
)->CanCopy();
5341 wxPyEndAllowThreads(__tstate
);
5342 if (PyErr_Occurred()) SWIG_fail
;
5345 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5353 static PyObject
*_wrap_ComboBox_CanCut(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5354 PyObject
*resultobj
= NULL
;
5355 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5357 PyObject
* obj0
= 0 ;
5359 (char *) "self", NULL
5362 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_CanCut",kwnames
,&obj0
)) goto fail
;
5363 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5364 if (SWIG_arg_fail(1)) SWIG_fail
;
5366 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5367 result
= (bool)((wxComboBox
const *)arg1
)->CanCut();
5369 wxPyEndAllowThreads(__tstate
);
5370 if (PyErr_Occurred()) SWIG_fail
;
5373 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5381 static PyObject
*_wrap_ComboBox_CanPaste(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5382 PyObject
*resultobj
= NULL
;
5383 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5385 PyObject
* obj0
= 0 ;
5387 (char *) "self", NULL
5390 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_CanPaste",kwnames
,&obj0
)) goto fail
;
5391 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5392 if (SWIG_arg_fail(1)) SWIG_fail
;
5394 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5395 result
= (bool)((wxComboBox
const *)arg1
)->CanPaste();
5397 wxPyEndAllowThreads(__tstate
);
5398 if (PyErr_Occurred()) SWIG_fail
;
5401 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5409 static PyObject
*_wrap_ComboBox_CanUndo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5410 PyObject
*resultobj
= NULL
;
5411 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5413 PyObject
* obj0
= 0 ;
5415 (char *) "self", NULL
5418 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_CanUndo",kwnames
,&obj0
)) goto fail
;
5419 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5420 if (SWIG_arg_fail(1)) SWIG_fail
;
5422 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5423 result
= (bool)((wxComboBox
const *)arg1
)->CanUndo();
5425 wxPyEndAllowThreads(__tstate
);
5426 if (PyErr_Occurred()) SWIG_fail
;
5429 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5437 static PyObject
*_wrap_ComboBox_CanRedo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5438 PyObject
*resultobj
= NULL
;
5439 wxComboBox
*arg1
= (wxComboBox
*) 0 ;
5441 PyObject
* obj0
= 0 ;
5443 (char *) "self", NULL
5446 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ComboBox_CanRedo",kwnames
,&obj0
)) goto fail
;
5447 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxComboBox
, SWIG_POINTER_EXCEPTION
| 0);
5448 if (SWIG_arg_fail(1)) SWIG_fail
;
5450 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5451 result
= (bool)((wxComboBox
const *)arg1
)->CanRedo();
5453 wxPyEndAllowThreads(__tstate
);
5454 if (PyErr_Occurred()) SWIG_fail
;
5457 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5465 static PyObject
*_wrap_ComboBox_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5466 PyObject
*resultobj
= NULL
;
5467 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
5468 wxVisualAttributes result
;
5469 PyObject
* obj0
= 0 ;
5471 (char *) "variant", NULL
5474 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ComboBox_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
5477 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
5478 if (SWIG_arg_fail(1)) SWIG_fail
;
5482 if (!wxPyCheckForApp()) SWIG_fail
;
5483 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5484 result
= wxComboBox::GetClassDefaultAttributes(arg1
);
5486 wxPyEndAllowThreads(__tstate
);
5487 if (PyErr_Occurred()) SWIG_fail
;
5490 wxVisualAttributes
* resultptr
;
5491 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
5492 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
5500 static PyObject
* ComboBox_swigregister(PyObject
*, PyObject
*args
) {
5502 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
5503 SWIG_TypeClientData(SWIGTYPE_p_wxComboBox
, obj
);
5505 return Py_BuildValue((char *)"");
5507 static int _wrap_GaugeNameStr_set(PyObject
*) {
5508 PyErr_SetString(PyExc_TypeError
,"Variable GaugeNameStr is read-only.");
5513 static PyObject
*_wrap_GaugeNameStr_get(void) {
5514 PyObject
*pyobj
= NULL
;
5518 pyobj
= PyUnicode_FromWideChar((&wxPyGaugeNameStr
)->c_str(), (&wxPyGaugeNameStr
)->Len());
5520 pyobj
= PyString_FromStringAndSize((&wxPyGaugeNameStr
)->c_str(), (&wxPyGaugeNameStr
)->Len());
5527 static PyObject
*_wrap_new_Gauge(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5528 PyObject
*resultobj
= NULL
;
5529 wxWindow
*arg1
= (wxWindow
*) 0 ;
5530 int arg2
= (int) -1 ;
5531 int arg3
= (int) 100 ;
5532 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
5533 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
5534 wxSize
const &arg5_defvalue
= wxDefaultSize
;
5535 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
5536 long arg6
= (long) wxGA_HORIZONTAL
;
5537 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
5538 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
5539 wxString
const &arg8_defvalue
= wxPyGaugeNameStr
;
5540 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
5544 bool temp8
= false ;
5545 PyObject
* obj0
= 0 ;
5546 PyObject
* obj1
= 0 ;
5547 PyObject
* obj2
= 0 ;
5548 PyObject
* obj3
= 0 ;
5549 PyObject
* obj4
= 0 ;
5550 PyObject
* obj5
= 0 ;
5551 PyObject
* obj6
= 0 ;
5552 PyObject
* obj7
= 0 ;
5554 (char *) "parent",(char *) "id",(char *) "range",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
5557 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_Gauge",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
5558 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
5559 if (SWIG_arg_fail(1)) SWIG_fail
;
5562 arg2
= static_cast<int >(SWIG_As_int(obj1
));
5563 if (SWIG_arg_fail(2)) SWIG_fail
;
5568 arg3
= static_cast<int >(SWIG_As_int(obj2
));
5569 if (SWIG_arg_fail(3)) SWIG_fail
;
5575 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
5581 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
5586 arg6
= static_cast<long >(SWIG_As_long(obj5
));
5587 if (SWIG_arg_fail(6)) SWIG_fail
;
5592 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
5593 if (SWIG_arg_fail(7)) SWIG_fail
;
5595 SWIG_null_ref("wxValidator");
5597 if (SWIG_arg_fail(7)) SWIG_fail
;
5602 arg8
= wxString_in_helper(obj7
);
5603 if (arg8
== NULL
) SWIG_fail
;
5608 if (!wxPyCheckForApp()) SWIG_fail
;
5609 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5610 result
= (wxGauge
*)new wxGauge(arg1
,arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
5612 wxPyEndAllowThreads(__tstate
);
5613 if (PyErr_Occurred()) SWIG_fail
;
5615 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGauge
, 1);
5630 static PyObject
*_wrap_new_PreGauge(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5631 PyObject
*resultobj
= NULL
;
5637 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreGauge",kwnames
)) goto fail
;
5639 if (!wxPyCheckForApp()) SWIG_fail
;
5640 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5641 result
= (wxGauge
*)new wxGauge();
5643 wxPyEndAllowThreads(__tstate
);
5644 if (PyErr_Occurred()) SWIG_fail
;
5646 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGauge
, 1);
5653 static PyObject
*_wrap_Gauge_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5654 PyObject
*resultobj
= NULL
;
5655 wxGauge
*arg1
= (wxGauge
*) 0 ;
5656 wxWindow
*arg2
= (wxWindow
*) 0 ;
5657 int arg3
= (int) -1 ;
5658 int arg4
= (int) 100 ;
5659 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
5660 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
5661 wxSize
const &arg6_defvalue
= wxDefaultSize
;
5662 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
5663 long arg7
= (long) wxGA_HORIZONTAL
;
5664 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
5665 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
5666 wxString
const &arg9_defvalue
= wxPyGaugeNameStr
;
5667 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
5671 bool temp9
= false ;
5672 PyObject
* obj0
= 0 ;
5673 PyObject
* obj1
= 0 ;
5674 PyObject
* obj2
= 0 ;
5675 PyObject
* obj3
= 0 ;
5676 PyObject
* obj4
= 0 ;
5677 PyObject
* obj5
= 0 ;
5678 PyObject
* obj6
= 0 ;
5679 PyObject
* obj7
= 0 ;
5680 PyObject
* obj8
= 0 ;
5682 (char *) "self",(char *) "parent",(char *) "id",(char *) "range",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
5685 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:Gauge_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
5686 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5687 if (SWIG_arg_fail(1)) SWIG_fail
;
5688 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
5689 if (SWIG_arg_fail(2)) SWIG_fail
;
5692 arg3
= static_cast<int >(SWIG_As_int(obj2
));
5693 if (SWIG_arg_fail(3)) SWIG_fail
;
5698 arg4
= static_cast<int >(SWIG_As_int(obj3
));
5699 if (SWIG_arg_fail(4)) SWIG_fail
;
5705 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
5711 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
5716 arg7
= static_cast<long >(SWIG_As_long(obj6
));
5717 if (SWIG_arg_fail(7)) SWIG_fail
;
5722 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
5723 if (SWIG_arg_fail(8)) SWIG_fail
;
5725 SWIG_null_ref("wxValidator");
5727 if (SWIG_arg_fail(8)) SWIG_fail
;
5732 arg9
= wxString_in_helper(obj8
);
5733 if (arg9
== NULL
) SWIG_fail
;
5738 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5739 result
= (bool)(arg1
)->Create(arg2
,arg3
,arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
5741 wxPyEndAllowThreads(__tstate
);
5742 if (PyErr_Occurred()) SWIG_fail
;
5745 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5761 static PyObject
*_wrap_Gauge_SetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5762 PyObject
*resultobj
= NULL
;
5763 wxGauge
*arg1
= (wxGauge
*) 0 ;
5765 PyObject
* obj0
= 0 ;
5766 PyObject
* obj1
= 0 ;
5768 (char *) "self",(char *) "range", NULL
5771 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Gauge_SetRange",kwnames
,&obj0
,&obj1
)) goto fail
;
5772 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5773 if (SWIG_arg_fail(1)) SWIG_fail
;
5775 arg2
= static_cast<int >(SWIG_As_int(obj1
));
5776 if (SWIG_arg_fail(2)) SWIG_fail
;
5779 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5780 (arg1
)->SetRange(arg2
);
5782 wxPyEndAllowThreads(__tstate
);
5783 if (PyErr_Occurred()) SWIG_fail
;
5785 Py_INCREF(Py_None
); resultobj
= Py_None
;
5792 static PyObject
*_wrap_Gauge_GetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5793 PyObject
*resultobj
= NULL
;
5794 wxGauge
*arg1
= (wxGauge
*) 0 ;
5796 PyObject
* obj0
= 0 ;
5798 (char *) "self", NULL
5801 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Gauge_GetRange",kwnames
,&obj0
)) goto fail
;
5802 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5803 if (SWIG_arg_fail(1)) SWIG_fail
;
5805 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5806 result
= (int)((wxGauge
const *)arg1
)->GetRange();
5808 wxPyEndAllowThreads(__tstate
);
5809 if (PyErr_Occurred()) SWIG_fail
;
5812 resultobj
= SWIG_From_int(static_cast<int >(result
));
5820 static PyObject
*_wrap_Gauge_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5821 PyObject
*resultobj
= NULL
;
5822 wxGauge
*arg1
= (wxGauge
*) 0 ;
5824 PyObject
* obj0
= 0 ;
5825 PyObject
* obj1
= 0 ;
5827 (char *) "self",(char *) "pos", NULL
5830 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Gauge_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
5831 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5832 if (SWIG_arg_fail(1)) SWIG_fail
;
5834 arg2
= static_cast<int >(SWIG_As_int(obj1
));
5835 if (SWIG_arg_fail(2)) SWIG_fail
;
5838 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5839 (arg1
)->SetValue(arg2
);
5841 wxPyEndAllowThreads(__tstate
);
5842 if (PyErr_Occurred()) SWIG_fail
;
5844 Py_INCREF(Py_None
); resultobj
= Py_None
;
5851 static PyObject
*_wrap_Gauge_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5852 PyObject
*resultobj
= NULL
;
5853 wxGauge
*arg1
= (wxGauge
*) 0 ;
5855 PyObject
* obj0
= 0 ;
5857 (char *) "self", NULL
5860 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Gauge_GetValue",kwnames
,&obj0
)) goto fail
;
5861 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5862 if (SWIG_arg_fail(1)) SWIG_fail
;
5864 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5865 result
= (int)((wxGauge
const *)arg1
)->GetValue();
5867 wxPyEndAllowThreads(__tstate
);
5868 if (PyErr_Occurred()) SWIG_fail
;
5871 resultobj
= SWIG_From_int(static_cast<int >(result
));
5879 static PyObject
*_wrap_Gauge_IsVertical(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5880 PyObject
*resultobj
= NULL
;
5881 wxGauge
*arg1
= (wxGauge
*) 0 ;
5883 PyObject
* obj0
= 0 ;
5885 (char *) "self", NULL
5888 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Gauge_IsVertical",kwnames
,&obj0
)) goto fail
;
5889 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5890 if (SWIG_arg_fail(1)) SWIG_fail
;
5892 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5893 result
= (bool)((wxGauge
const *)arg1
)->IsVertical();
5895 wxPyEndAllowThreads(__tstate
);
5896 if (PyErr_Occurred()) SWIG_fail
;
5899 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5907 static PyObject
*_wrap_Gauge_SetShadowWidth(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5908 PyObject
*resultobj
= NULL
;
5909 wxGauge
*arg1
= (wxGauge
*) 0 ;
5911 PyObject
* obj0
= 0 ;
5912 PyObject
* obj1
= 0 ;
5914 (char *) "self",(char *) "w", NULL
5917 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Gauge_SetShadowWidth",kwnames
,&obj0
,&obj1
)) goto fail
;
5918 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5919 if (SWIG_arg_fail(1)) SWIG_fail
;
5921 arg2
= static_cast<int >(SWIG_As_int(obj1
));
5922 if (SWIG_arg_fail(2)) SWIG_fail
;
5925 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5926 (arg1
)->SetShadowWidth(arg2
);
5928 wxPyEndAllowThreads(__tstate
);
5929 if (PyErr_Occurred()) SWIG_fail
;
5931 Py_INCREF(Py_None
); resultobj
= Py_None
;
5938 static PyObject
*_wrap_Gauge_GetShadowWidth(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5939 PyObject
*resultobj
= NULL
;
5940 wxGauge
*arg1
= (wxGauge
*) 0 ;
5942 PyObject
* obj0
= 0 ;
5944 (char *) "self", NULL
5947 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Gauge_GetShadowWidth",kwnames
,&obj0
)) goto fail
;
5948 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5949 if (SWIG_arg_fail(1)) SWIG_fail
;
5951 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5952 result
= (int)((wxGauge
const *)arg1
)->GetShadowWidth();
5954 wxPyEndAllowThreads(__tstate
);
5955 if (PyErr_Occurred()) SWIG_fail
;
5958 resultobj
= SWIG_From_int(static_cast<int >(result
));
5966 static PyObject
*_wrap_Gauge_SetBezelFace(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5967 PyObject
*resultobj
= NULL
;
5968 wxGauge
*arg1
= (wxGauge
*) 0 ;
5970 PyObject
* obj0
= 0 ;
5971 PyObject
* obj1
= 0 ;
5973 (char *) "self",(char *) "w", NULL
5976 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Gauge_SetBezelFace",kwnames
,&obj0
,&obj1
)) goto fail
;
5977 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
5978 if (SWIG_arg_fail(1)) SWIG_fail
;
5980 arg2
= static_cast<int >(SWIG_As_int(obj1
));
5981 if (SWIG_arg_fail(2)) SWIG_fail
;
5984 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5985 (arg1
)->SetBezelFace(arg2
);
5987 wxPyEndAllowThreads(__tstate
);
5988 if (PyErr_Occurred()) SWIG_fail
;
5990 Py_INCREF(Py_None
); resultobj
= Py_None
;
5997 static PyObject
*_wrap_Gauge_GetBezelFace(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
5998 PyObject
*resultobj
= NULL
;
5999 wxGauge
*arg1
= (wxGauge
*) 0 ;
6001 PyObject
* obj0
= 0 ;
6003 (char *) "self", NULL
6006 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Gauge_GetBezelFace",kwnames
,&obj0
)) goto fail
;
6007 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGauge
, SWIG_POINTER_EXCEPTION
| 0);
6008 if (SWIG_arg_fail(1)) SWIG_fail
;
6010 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6011 result
= (int)((wxGauge
const *)arg1
)->GetBezelFace();
6013 wxPyEndAllowThreads(__tstate
);
6014 if (PyErr_Occurred()) SWIG_fail
;
6017 resultobj
= SWIG_From_int(static_cast<int >(result
));
6025 static PyObject
*_wrap_Gauge_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6026 PyObject
*resultobj
= NULL
;
6027 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
6028 wxVisualAttributes result
;
6029 PyObject
* obj0
= 0 ;
6031 (char *) "variant", NULL
6034 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Gauge_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
6037 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
6038 if (SWIG_arg_fail(1)) SWIG_fail
;
6042 if (!wxPyCheckForApp()) SWIG_fail
;
6043 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6044 result
= wxGauge::GetClassDefaultAttributes(arg1
);
6046 wxPyEndAllowThreads(__tstate
);
6047 if (PyErr_Occurred()) SWIG_fail
;
6050 wxVisualAttributes
* resultptr
;
6051 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
6052 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
6060 static PyObject
* Gauge_swigregister(PyObject
*, PyObject
*args
) {
6062 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6063 SWIG_TypeClientData(SWIGTYPE_p_wxGauge
, obj
);
6065 return Py_BuildValue((char *)"");
6067 static int _wrap_StaticBitmapNameStr_set(PyObject
*) {
6068 PyErr_SetString(PyExc_TypeError
,"Variable StaticBitmapNameStr is read-only.");
6073 static PyObject
*_wrap_StaticBitmapNameStr_get(void) {
6074 PyObject
*pyobj
= NULL
;
6078 pyobj
= PyUnicode_FromWideChar((&wxPyStaticBitmapNameStr
)->c_str(), (&wxPyStaticBitmapNameStr
)->Len());
6080 pyobj
= PyString_FromStringAndSize((&wxPyStaticBitmapNameStr
)->c_str(), (&wxPyStaticBitmapNameStr
)->Len());
6087 static int _wrap_StaticBoxNameStr_set(PyObject
*) {
6088 PyErr_SetString(PyExc_TypeError
,"Variable StaticBoxNameStr is read-only.");
6093 static PyObject
*_wrap_StaticBoxNameStr_get(void) {
6094 PyObject
*pyobj
= NULL
;
6098 pyobj
= PyUnicode_FromWideChar((&wxPyStaticBoxNameStr
)->c_str(), (&wxPyStaticBoxNameStr
)->Len());
6100 pyobj
= PyString_FromStringAndSize((&wxPyStaticBoxNameStr
)->c_str(), (&wxPyStaticBoxNameStr
)->Len());
6107 static int _wrap_StaticTextNameStr_set(PyObject
*) {
6108 PyErr_SetString(PyExc_TypeError
,"Variable StaticTextNameStr is read-only.");
6113 static PyObject
*_wrap_StaticTextNameStr_get(void) {
6114 PyObject
*pyobj
= NULL
;
6118 pyobj
= PyUnicode_FromWideChar((&wxPyStaticTextNameStr
)->c_str(), (&wxPyStaticTextNameStr
)->Len());
6120 pyobj
= PyString_FromStringAndSize((&wxPyStaticTextNameStr
)->c_str(), (&wxPyStaticTextNameStr
)->Len());
6127 static PyObject
*_wrap_new_StaticBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6128 PyObject
*resultobj
= NULL
;
6129 wxWindow
*arg1
= (wxWindow
*) 0 ;
6130 int arg2
= (int) -1 ;
6131 wxString
const &arg3_defvalue
= wxPyEmptyString
;
6132 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
6133 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
6134 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
6135 wxSize
const &arg5_defvalue
= wxDefaultSize
;
6136 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
6137 long arg6
= (long) 0 ;
6138 wxString
const &arg7_defvalue
= wxPyStaticBoxNameStr
;
6139 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
6140 wxStaticBox
*result
;
6141 bool temp3
= false ;
6144 bool temp7
= false ;
6145 PyObject
* obj0
= 0 ;
6146 PyObject
* obj1
= 0 ;
6147 PyObject
* obj2
= 0 ;
6148 PyObject
* obj3
= 0 ;
6149 PyObject
* obj4
= 0 ;
6150 PyObject
* obj5
= 0 ;
6151 PyObject
* obj6
= 0 ;
6153 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6156 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_StaticBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
6157 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
6158 if (SWIG_arg_fail(1)) SWIG_fail
;
6161 arg2
= static_cast<int >(SWIG_As_int(obj1
));
6162 if (SWIG_arg_fail(2)) SWIG_fail
;
6167 arg3
= wxString_in_helper(obj2
);
6168 if (arg3
== NULL
) SWIG_fail
;
6175 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
6181 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
6186 arg6
= static_cast<long >(SWIG_As_long(obj5
));
6187 if (SWIG_arg_fail(6)) SWIG_fail
;
6192 arg7
= wxString_in_helper(obj6
);
6193 if (arg7
== NULL
) SWIG_fail
;
6198 if (!wxPyCheckForApp()) SWIG_fail
;
6199 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6200 result
= (wxStaticBox
*)new wxStaticBox(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
6202 wxPyEndAllowThreads(__tstate
);
6203 if (PyErr_Occurred()) SWIG_fail
;
6205 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticBox
, 1);
6228 static PyObject
*_wrap_new_PreStaticBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6229 PyObject
*resultobj
= NULL
;
6230 wxStaticBox
*result
;
6235 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreStaticBox",kwnames
)) goto fail
;
6237 if (!wxPyCheckForApp()) SWIG_fail
;
6238 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6239 result
= (wxStaticBox
*)new wxStaticBox();
6241 wxPyEndAllowThreads(__tstate
);
6242 if (PyErr_Occurred()) SWIG_fail
;
6244 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticBox
, 1);
6251 static PyObject
*_wrap_StaticBox_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6252 PyObject
*resultobj
= NULL
;
6253 wxStaticBox
*arg1
= (wxStaticBox
*) 0 ;
6254 wxWindow
*arg2
= (wxWindow
*) 0 ;
6255 int arg3
= (int) -1 ;
6256 wxString
const &arg4_defvalue
= wxPyEmptyString
;
6257 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
6258 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
6259 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
6260 wxSize
const &arg6_defvalue
= wxDefaultSize
;
6261 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
6262 long arg7
= (long) 0 ;
6263 wxString
const &arg8_defvalue
= wxPyStaticBoxNameStr
;
6264 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
6266 bool temp4
= false ;
6269 bool temp8
= false ;
6270 PyObject
* obj0
= 0 ;
6271 PyObject
* obj1
= 0 ;
6272 PyObject
* obj2
= 0 ;
6273 PyObject
* obj3
= 0 ;
6274 PyObject
* obj4
= 0 ;
6275 PyObject
* obj5
= 0 ;
6276 PyObject
* obj6
= 0 ;
6277 PyObject
* obj7
= 0 ;
6279 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6282 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:StaticBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
6283 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticBox
, SWIG_POINTER_EXCEPTION
| 0);
6284 if (SWIG_arg_fail(1)) SWIG_fail
;
6285 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
6286 if (SWIG_arg_fail(2)) SWIG_fail
;
6289 arg3
= static_cast<int >(SWIG_As_int(obj2
));
6290 if (SWIG_arg_fail(3)) SWIG_fail
;
6295 arg4
= wxString_in_helper(obj3
);
6296 if (arg4
== NULL
) SWIG_fail
;
6303 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
6309 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
6314 arg7
= static_cast<long >(SWIG_As_long(obj6
));
6315 if (SWIG_arg_fail(7)) SWIG_fail
;
6320 arg8
= wxString_in_helper(obj7
);
6321 if (arg8
== NULL
) SWIG_fail
;
6326 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6327 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
6329 wxPyEndAllowThreads(__tstate
);
6330 if (PyErr_Occurred()) SWIG_fail
;
6333 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6357 static PyObject
*_wrap_StaticBox_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6358 PyObject
*resultobj
= NULL
;
6359 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
6360 wxVisualAttributes result
;
6361 PyObject
* obj0
= 0 ;
6363 (char *) "variant", NULL
6366 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:StaticBox_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
6369 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
6370 if (SWIG_arg_fail(1)) SWIG_fail
;
6374 if (!wxPyCheckForApp()) SWIG_fail
;
6375 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6376 result
= wxStaticBox::GetClassDefaultAttributes(arg1
);
6378 wxPyEndAllowThreads(__tstate
);
6379 if (PyErr_Occurred()) SWIG_fail
;
6382 wxVisualAttributes
* resultptr
;
6383 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
6384 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
6392 static PyObject
* StaticBox_swigregister(PyObject
*, PyObject
*args
) {
6394 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6395 SWIG_TypeClientData(SWIGTYPE_p_wxStaticBox
, obj
);
6397 return Py_BuildValue((char *)"");
6399 static PyObject
*_wrap_new_StaticLine(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6400 PyObject
*resultobj
= NULL
;
6401 wxWindow
*arg1
= (wxWindow
*) 0 ;
6402 int arg2
= (int) -1 ;
6403 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
6404 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
6405 wxSize
const &arg4_defvalue
= wxDefaultSize
;
6406 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
6407 long arg5
= (long) wxLI_HORIZONTAL
;
6408 wxString
const &arg6_defvalue
= wxPyStaticTextNameStr
;
6409 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
6410 wxStaticLine
*result
;
6413 bool temp6
= false ;
6414 PyObject
* obj0
= 0 ;
6415 PyObject
* obj1
= 0 ;
6416 PyObject
* obj2
= 0 ;
6417 PyObject
* obj3
= 0 ;
6418 PyObject
* obj4
= 0 ;
6419 PyObject
* obj5
= 0 ;
6421 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6424 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_StaticLine",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
6425 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
6426 if (SWIG_arg_fail(1)) SWIG_fail
;
6429 arg2
= static_cast<int >(SWIG_As_int(obj1
));
6430 if (SWIG_arg_fail(2)) SWIG_fail
;
6436 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
6442 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
6447 arg5
= static_cast<long >(SWIG_As_long(obj4
));
6448 if (SWIG_arg_fail(5)) SWIG_fail
;
6453 arg6
= wxString_in_helper(obj5
);
6454 if (arg6
== NULL
) SWIG_fail
;
6459 if (!wxPyCheckForApp()) SWIG_fail
;
6460 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6461 result
= (wxStaticLine
*)new wxStaticLine(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
6463 wxPyEndAllowThreads(__tstate
);
6464 if (PyErr_Occurred()) SWIG_fail
;
6466 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticLine
, 1);
6481 static PyObject
*_wrap_new_PreStaticLine(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6482 PyObject
*resultobj
= NULL
;
6483 wxStaticLine
*result
;
6488 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreStaticLine",kwnames
)) goto fail
;
6490 if (!wxPyCheckForApp()) SWIG_fail
;
6491 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6492 result
= (wxStaticLine
*)new wxStaticLine();
6494 wxPyEndAllowThreads(__tstate
);
6495 if (PyErr_Occurred()) SWIG_fail
;
6497 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticLine
, 1);
6504 static PyObject
*_wrap_StaticLine_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6505 PyObject
*resultobj
= NULL
;
6506 wxStaticLine
*arg1
= (wxStaticLine
*) 0 ;
6507 wxWindow
*arg2
= (wxWindow
*) 0 ;
6508 int arg3
= (int) -1 ;
6509 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
6510 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
6511 wxSize
const &arg5_defvalue
= wxDefaultSize
;
6512 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
6513 long arg6
= (long) wxLI_HORIZONTAL
;
6514 wxString
const &arg7_defvalue
= wxPyStaticTextNameStr
;
6515 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
6519 bool temp7
= false ;
6520 PyObject
* obj0
= 0 ;
6521 PyObject
* obj1
= 0 ;
6522 PyObject
* obj2
= 0 ;
6523 PyObject
* obj3
= 0 ;
6524 PyObject
* obj4
= 0 ;
6525 PyObject
* obj5
= 0 ;
6526 PyObject
* obj6
= 0 ;
6528 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6531 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:StaticLine_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
6532 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticLine
, SWIG_POINTER_EXCEPTION
| 0);
6533 if (SWIG_arg_fail(1)) SWIG_fail
;
6534 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
6535 if (SWIG_arg_fail(2)) SWIG_fail
;
6538 arg3
= static_cast<int >(SWIG_As_int(obj2
));
6539 if (SWIG_arg_fail(3)) SWIG_fail
;
6545 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
6551 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
6556 arg6
= static_cast<long >(SWIG_As_long(obj5
));
6557 if (SWIG_arg_fail(6)) SWIG_fail
;
6562 arg7
= wxString_in_helper(obj6
);
6563 if (arg7
== NULL
) SWIG_fail
;
6568 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6569 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
6571 wxPyEndAllowThreads(__tstate
);
6572 if (PyErr_Occurred()) SWIG_fail
;
6575 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6591 static PyObject
*_wrap_StaticLine_IsVertical(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6592 PyObject
*resultobj
= NULL
;
6593 wxStaticLine
*arg1
= (wxStaticLine
*) 0 ;
6595 PyObject
* obj0
= 0 ;
6597 (char *) "self", NULL
6600 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:StaticLine_IsVertical",kwnames
,&obj0
)) goto fail
;
6601 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticLine
, SWIG_POINTER_EXCEPTION
| 0);
6602 if (SWIG_arg_fail(1)) SWIG_fail
;
6604 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6605 result
= (bool)((wxStaticLine
const *)arg1
)->IsVertical();
6607 wxPyEndAllowThreads(__tstate
);
6608 if (PyErr_Occurred()) SWIG_fail
;
6611 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6619 static PyObject
*_wrap_StaticLine_GetDefaultSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6620 PyObject
*resultobj
= NULL
;
6626 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":StaticLine_GetDefaultSize",kwnames
)) goto fail
;
6628 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6629 result
= (int)wxStaticLine::GetDefaultSize();
6631 wxPyEndAllowThreads(__tstate
);
6632 if (PyErr_Occurred()) SWIG_fail
;
6635 resultobj
= SWIG_From_int(static_cast<int >(result
));
6643 static PyObject
*_wrap_StaticLine_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6644 PyObject
*resultobj
= NULL
;
6645 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
6646 wxVisualAttributes result
;
6647 PyObject
* obj0
= 0 ;
6649 (char *) "variant", NULL
6652 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:StaticLine_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
6655 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
6656 if (SWIG_arg_fail(1)) SWIG_fail
;
6660 if (!wxPyCheckForApp()) SWIG_fail
;
6661 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6662 result
= wxStaticLine::GetClassDefaultAttributes(arg1
);
6664 wxPyEndAllowThreads(__tstate
);
6665 if (PyErr_Occurred()) SWIG_fail
;
6668 wxVisualAttributes
* resultptr
;
6669 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
6670 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
6678 static PyObject
* StaticLine_swigregister(PyObject
*, PyObject
*args
) {
6680 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6681 SWIG_TypeClientData(SWIGTYPE_p_wxStaticLine
, obj
);
6683 return Py_BuildValue((char *)"");
6685 static PyObject
*_wrap_new_StaticText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6686 PyObject
*resultobj
= NULL
;
6687 wxWindow
*arg1
= (wxWindow
*) 0 ;
6688 int arg2
= (int) -1 ;
6689 wxString
const &arg3_defvalue
= wxPyEmptyString
;
6690 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
6691 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
6692 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
6693 wxSize
const &arg5_defvalue
= wxDefaultSize
;
6694 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
6695 long arg6
= (long) 0 ;
6696 wxString
const &arg7_defvalue
= wxPyStaticTextNameStr
;
6697 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
6698 wxStaticText
*result
;
6699 bool temp3
= false ;
6702 bool temp7
= false ;
6703 PyObject
* obj0
= 0 ;
6704 PyObject
* obj1
= 0 ;
6705 PyObject
* obj2
= 0 ;
6706 PyObject
* obj3
= 0 ;
6707 PyObject
* obj4
= 0 ;
6708 PyObject
* obj5
= 0 ;
6709 PyObject
* obj6
= 0 ;
6711 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6714 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_StaticText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
6715 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
6716 if (SWIG_arg_fail(1)) SWIG_fail
;
6719 arg2
= static_cast<int >(SWIG_As_int(obj1
));
6720 if (SWIG_arg_fail(2)) SWIG_fail
;
6725 arg3
= wxString_in_helper(obj2
);
6726 if (arg3
== NULL
) SWIG_fail
;
6733 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
6739 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
6744 arg6
= static_cast<long >(SWIG_As_long(obj5
));
6745 if (SWIG_arg_fail(6)) SWIG_fail
;
6750 arg7
= wxString_in_helper(obj6
);
6751 if (arg7
== NULL
) SWIG_fail
;
6756 if (!wxPyCheckForApp()) SWIG_fail
;
6757 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6758 result
= (wxStaticText
*)new wxStaticText(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
6760 wxPyEndAllowThreads(__tstate
);
6761 if (PyErr_Occurred()) SWIG_fail
;
6763 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticText
, 1);
6786 static PyObject
*_wrap_new_PreStaticText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6787 PyObject
*resultobj
= NULL
;
6788 wxStaticText
*result
;
6793 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreStaticText",kwnames
)) goto fail
;
6795 if (!wxPyCheckForApp()) SWIG_fail
;
6796 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6797 result
= (wxStaticText
*)new wxStaticText();
6799 wxPyEndAllowThreads(__tstate
);
6800 if (PyErr_Occurred()) SWIG_fail
;
6802 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticText
, 1);
6809 static PyObject
*_wrap_StaticText_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6810 PyObject
*resultobj
= NULL
;
6811 wxStaticText
*arg1
= (wxStaticText
*) 0 ;
6812 wxWindow
*arg2
= (wxWindow
*) 0 ;
6813 int arg3
= (int) -1 ;
6814 wxString
const &arg4_defvalue
= wxPyEmptyString
;
6815 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
6816 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
6817 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
6818 wxSize
const &arg6_defvalue
= wxDefaultSize
;
6819 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
6820 long arg7
= (long) 0 ;
6821 wxString
const &arg8_defvalue
= wxPyStaticTextNameStr
;
6822 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
6824 bool temp4
= false ;
6827 bool temp8
= false ;
6828 PyObject
* obj0
= 0 ;
6829 PyObject
* obj1
= 0 ;
6830 PyObject
* obj2
= 0 ;
6831 PyObject
* obj3
= 0 ;
6832 PyObject
* obj4
= 0 ;
6833 PyObject
* obj5
= 0 ;
6834 PyObject
* obj6
= 0 ;
6835 PyObject
* obj7
= 0 ;
6837 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6840 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:StaticText_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
6841 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticText
, SWIG_POINTER_EXCEPTION
| 0);
6842 if (SWIG_arg_fail(1)) SWIG_fail
;
6843 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
6844 if (SWIG_arg_fail(2)) SWIG_fail
;
6847 arg3
= static_cast<int >(SWIG_As_int(obj2
));
6848 if (SWIG_arg_fail(3)) SWIG_fail
;
6853 arg4
= wxString_in_helper(obj3
);
6854 if (arg4
== NULL
) SWIG_fail
;
6861 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
6867 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
6872 arg7
= static_cast<long >(SWIG_As_long(obj6
));
6873 if (SWIG_arg_fail(7)) SWIG_fail
;
6878 arg8
= wxString_in_helper(obj7
);
6879 if (arg8
== NULL
) SWIG_fail
;
6884 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6885 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
6887 wxPyEndAllowThreads(__tstate
);
6888 if (PyErr_Occurred()) SWIG_fail
;
6891 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6915 static PyObject
*_wrap_StaticText_Wrap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6916 PyObject
*resultobj
= NULL
;
6917 wxStaticText
*arg1
= (wxStaticText
*) 0 ;
6919 PyObject
* obj0
= 0 ;
6920 PyObject
* obj1
= 0 ;
6922 (char *) "self",(char *) "width", NULL
6925 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StaticText_Wrap",kwnames
,&obj0
,&obj1
)) goto fail
;
6926 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticText
, SWIG_POINTER_EXCEPTION
| 0);
6927 if (SWIG_arg_fail(1)) SWIG_fail
;
6929 arg2
= static_cast<int >(SWIG_As_int(obj1
));
6930 if (SWIG_arg_fail(2)) SWIG_fail
;
6933 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6936 wxPyEndAllowThreads(__tstate
);
6937 if (PyErr_Occurred()) SWIG_fail
;
6939 Py_INCREF(Py_None
); resultobj
= Py_None
;
6946 static PyObject
*_wrap_StaticText_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6947 PyObject
*resultobj
= NULL
;
6948 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
6949 wxVisualAttributes result
;
6950 PyObject
* obj0
= 0 ;
6952 (char *) "variant", NULL
6955 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:StaticText_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
6958 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
6959 if (SWIG_arg_fail(1)) SWIG_fail
;
6963 if (!wxPyCheckForApp()) SWIG_fail
;
6964 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6965 result
= wxStaticText::GetClassDefaultAttributes(arg1
);
6967 wxPyEndAllowThreads(__tstate
);
6968 if (PyErr_Occurred()) SWIG_fail
;
6971 wxVisualAttributes
* resultptr
;
6972 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
6973 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
6981 static PyObject
* StaticText_swigregister(PyObject
*, PyObject
*args
) {
6983 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6984 SWIG_TypeClientData(SWIGTYPE_p_wxStaticText
, obj
);
6986 return Py_BuildValue((char *)"");
6988 static PyObject
*_wrap_new_StaticBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
6989 PyObject
*resultobj
= NULL
;
6990 wxWindow
*arg1
= (wxWindow
*) 0 ;
6991 int arg2
= (int) -1 ;
6992 wxBitmap
const &arg3_defvalue
= wxNullBitmap
;
6993 wxBitmap
*arg3
= (wxBitmap
*) &arg3_defvalue
;
6994 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
6995 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
6996 wxSize
const &arg5_defvalue
= wxDefaultSize
;
6997 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
6998 long arg6
= (long) 0 ;
6999 wxString
const &arg7_defvalue
= wxPyStaticBitmapNameStr
;
7000 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
7001 wxStaticBitmap
*result
;
7004 bool temp7
= false ;
7005 PyObject
* obj0
= 0 ;
7006 PyObject
* obj1
= 0 ;
7007 PyObject
* obj2
= 0 ;
7008 PyObject
* obj3
= 0 ;
7009 PyObject
* obj4
= 0 ;
7010 PyObject
* obj5
= 0 ;
7011 PyObject
* obj6
= 0 ;
7013 (char *) "parent",(char *) "id",(char *) "bitmap",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
7016 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_StaticBitmap",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
7017 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
7018 if (SWIG_arg_fail(1)) SWIG_fail
;
7021 arg2
= static_cast<int >(SWIG_As_int(obj1
));
7022 if (SWIG_arg_fail(2)) SWIG_fail
;
7027 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
7028 if (SWIG_arg_fail(3)) SWIG_fail
;
7030 SWIG_null_ref("wxBitmap");
7032 if (SWIG_arg_fail(3)) SWIG_fail
;
7038 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7044 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
7049 arg6
= static_cast<long >(SWIG_As_long(obj5
));
7050 if (SWIG_arg_fail(6)) SWIG_fail
;
7055 arg7
= wxString_in_helper(obj6
);
7056 if (arg7
== NULL
) SWIG_fail
;
7061 if (!wxPyCheckForApp()) SWIG_fail
;
7062 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7063 result
= (wxStaticBitmap
*)new wxStaticBitmap(arg1
,arg2
,(wxBitmap
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
7065 wxPyEndAllowThreads(__tstate
);
7066 if (PyErr_Occurred()) SWIG_fail
;
7068 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticBitmap
, 1);
7083 static PyObject
*_wrap_new_PreStaticBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7084 PyObject
*resultobj
= NULL
;
7085 wxStaticBitmap
*result
;
7090 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreStaticBitmap",kwnames
)) goto fail
;
7092 if (!wxPyCheckForApp()) SWIG_fail
;
7093 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7094 result
= (wxStaticBitmap
*)new wxStaticBitmap();
7096 wxPyEndAllowThreads(__tstate
);
7097 if (PyErr_Occurred()) SWIG_fail
;
7099 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStaticBitmap
, 1);
7106 static PyObject
*_wrap_StaticBitmap_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7107 PyObject
*resultobj
= NULL
;
7108 wxStaticBitmap
*arg1
= (wxStaticBitmap
*) 0 ;
7109 wxWindow
*arg2
= (wxWindow
*) 0 ;
7110 int arg3
= (int) -1 ;
7111 wxBitmap
const &arg4_defvalue
= wxNullBitmap
;
7112 wxBitmap
*arg4
= (wxBitmap
*) &arg4_defvalue
;
7113 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
7114 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
7115 wxSize
const &arg6_defvalue
= wxDefaultSize
;
7116 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
7117 long arg7
= (long) 0 ;
7118 wxString
const &arg8_defvalue
= wxPyStaticBitmapNameStr
;
7119 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
7123 bool temp8
= false ;
7124 PyObject
* obj0
= 0 ;
7125 PyObject
* obj1
= 0 ;
7126 PyObject
* obj2
= 0 ;
7127 PyObject
* obj3
= 0 ;
7128 PyObject
* obj4
= 0 ;
7129 PyObject
* obj5
= 0 ;
7130 PyObject
* obj6
= 0 ;
7131 PyObject
* obj7
= 0 ;
7133 (char *) "self",(char *) "parent",(char *) "id",(char *) "bitmap",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
7136 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:StaticBitmap_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
7137 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticBitmap
, SWIG_POINTER_EXCEPTION
| 0);
7138 if (SWIG_arg_fail(1)) SWIG_fail
;
7139 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
7140 if (SWIG_arg_fail(2)) SWIG_fail
;
7143 arg3
= static_cast<int >(SWIG_As_int(obj2
));
7144 if (SWIG_arg_fail(3)) SWIG_fail
;
7149 SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
7150 if (SWIG_arg_fail(4)) SWIG_fail
;
7152 SWIG_null_ref("wxBitmap");
7154 if (SWIG_arg_fail(4)) SWIG_fail
;
7160 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
7166 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
7171 arg7
= static_cast<long >(SWIG_As_long(obj6
));
7172 if (SWIG_arg_fail(7)) SWIG_fail
;
7177 arg8
= wxString_in_helper(obj7
);
7178 if (arg8
== NULL
) SWIG_fail
;
7183 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7184 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxBitmap
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
7186 wxPyEndAllowThreads(__tstate
);
7187 if (PyErr_Occurred()) SWIG_fail
;
7190 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7206 static PyObject
*_wrap_StaticBitmap_GetBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7207 PyObject
*resultobj
= NULL
;
7208 wxStaticBitmap
*arg1
= (wxStaticBitmap
*) 0 ;
7210 PyObject
* obj0
= 0 ;
7212 (char *) "self", NULL
7215 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:StaticBitmap_GetBitmap",kwnames
,&obj0
)) goto fail
;
7216 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticBitmap
, SWIG_POINTER_EXCEPTION
| 0);
7217 if (SWIG_arg_fail(1)) SWIG_fail
;
7219 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7220 result
= (arg1
)->GetBitmap();
7222 wxPyEndAllowThreads(__tstate
);
7223 if (PyErr_Occurred()) SWIG_fail
;
7226 wxBitmap
* resultptr
;
7227 resultptr
= new wxBitmap(static_cast<wxBitmap
& >(result
));
7228 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
7236 static PyObject
*_wrap_StaticBitmap_SetBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7237 PyObject
*resultobj
= NULL
;
7238 wxStaticBitmap
*arg1
= (wxStaticBitmap
*) 0 ;
7239 wxBitmap
*arg2
= 0 ;
7240 PyObject
* obj0
= 0 ;
7241 PyObject
* obj1
= 0 ;
7243 (char *) "self",(char *) "bitmap", NULL
7246 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StaticBitmap_SetBitmap",kwnames
,&obj0
,&obj1
)) goto fail
;
7247 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticBitmap
, SWIG_POINTER_EXCEPTION
| 0);
7248 if (SWIG_arg_fail(1)) SWIG_fail
;
7250 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
7251 if (SWIG_arg_fail(2)) SWIG_fail
;
7253 SWIG_null_ref("wxBitmap");
7255 if (SWIG_arg_fail(2)) SWIG_fail
;
7258 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7259 (arg1
)->SetBitmap((wxBitmap
const &)*arg2
);
7261 wxPyEndAllowThreads(__tstate
);
7262 if (PyErr_Occurred()) SWIG_fail
;
7264 Py_INCREF(Py_None
); resultobj
= Py_None
;
7271 static PyObject
*_wrap_StaticBitmap_SetIcon(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7272 PyObject
*resultobj
= NULL
;
7273 wxStaticBitmap
*arg1
= (wxStaticBitmap
*) 0 ;
7275 PyObject
* obj0
= 0 ;
7276 PyObject
* obj1
= 0 ;
7278 (char *) "self",(char *) "icon", NULL
7281 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StaticBitmap_SetIcon",kwnames
,&obj0
,&obj1
)) goto fail
;
7282 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStaticBitmap
, SWIG_POINTER_EXCEPTION
| 0);
7283 if (SWIG_arg_fail(1)) SWIG_fail
;
7285 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxIcon
, SWIG_POINTER_EXCEPTION
| 0);
7286 if (SWIG_arg_fail(2)) SWIG_fail
;
7288 SWIG_null_ref("wxIcon");
7290 if (SWIG_arg_fail(2)) SWIG_fail
;
7293 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7294 (arg1
)->SetIcon((wxIcon
const &)*arg2
);
7296 wxPyEndAllowThreads(__tstate
);
7297 if (PyErr_Occurred()) SWIG_fail
;
7299 Py_INCREF(Py_None
); resultobj
= Py_None
;
7306 static PyObject
*_wrap_StaticBitmap_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7307 PyObject
*resultobj
= NULL
;
7308 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
7309 wxVisualAttributes result
;
7310 PyObject
* obj0
= 0 ;
7312 (char *) "variant", NULL
7315 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:StaticBitmap_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
7318 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
7319 if (SWIG_arg_fail(1)) SWIG_fail
;
7323 if (!wxPyCheckForApp()) SWIG_fail
;
7324 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7325 result
= wxStaticBitmap::GetClassDefaultAttributes(arg1
);
7327 wxPyEndAllowThreads(__tstate
);
7328 if (PyErr_Occurred()) SWIG_fail
;
7331 wxVisualAttributes
* resultptr
;
7332 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
7333 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
7341 static PyObject
* StaticBitmap_swigregister(PyObject
*, PyObject
*args
) {
7343 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
7344 SWIG_TypeClientData(SWIGTYPE_p_wxStaticBitmap
, obj
);
7346 return Py_BuildValue((char *)"");
7348 static int _wrap_ListBoxNameStr_set(PyObject
*) {
7349 PyErr_SetString(PyExc_TypeError
,"Variable ListBoxNameStr is read-only.");
7354 static PyObject
*_wrap_ListBoxNameStr_get(void) {
7355 PyObject
*pyobj
= NULL
;
7359 pyobj
= PyUnicode_FromWideChar((&wxPyListBoxNameStr
)->c_str(), (&wxPyListBoxNameStr
)->Len());
7361 pyobj
= PyString_FromStringAndSize((&wxPyListBoxNameStr
)->c_str(), (&wxPyListBoxNameStr
)->Len());
7368 static PyObject
*_wrap_new_ListBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7369 PyObject
*resultobj
= NULL
;
7370 wxWindow
*arg1
= (wxWindow
*) 0 ;
7371 int arg2
= (int) -1 ;
7372 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
7373 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
7374 wxSize
const &arg4_defvalue
= wxDefaultSize
;
7375 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
7376 wxArrayString
const &arg5_defvalue
= wxPyEmptyStringArray
;
7377 wxArrayString
*arg5
= (wxArrayString
*) &arg5_defvalue
;
7378 long arg6
= (long) 0 ;
7379 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
7380 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
7381 wxString
const &arg8_defvalue
= wxPyListBoxNameStr
;
7382 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
7386 bool temp5
= false ;
7387 bool temp8
= false ;
7388 PyObject
* obj0
= 0 ;
7389 PyObject
* obj1
= 0 ;
7390 PyObject
* obj2
= 0 ;
7391 PyObject
* obj3
= 0 ;
7392 PyObject
* obj4
= 0 ;
7393 PyObject
* obj5
= 0 ;
7394 PyObject
* obj6
= 0 ;
7395 PyObject
* obj7
= 0 ;
7397 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
7400 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_ListBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
7401 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
7402 if (SWIG_arg_fail(1)) SWIG_fail
;
7405 arg2
= static_cast<int >(SWIG_As_int(obj1
));
7406 if (SWIG_arg_fail(2)) SWIG_fail
;
7412 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
7418 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
7423 if (! PySequence_Check(obj4
)) {
7424 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
7427 arg5
= new wxArrayString
;
7429 int i
, len
=PySequence_Length(obj4
);
7430 for (i
=0; i
<len
; i
++) {
7431 PyObject
* item
= PySequence_GetItem(obj4
, i
);
7432 wxString
* s
= wxString_in_helper(item
);
7433 if (PyErr_Occurred()) SWIG_fail
;
7442 arg6
= static_cast<long >(SWIG_As_long(obj5
));
7443 if (SWIG_arg_fail(6)) SWIG_fail
;
7448 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
7449 if (SWIG_arg_fail(7)) SWIG_fail
;
7451 SWIG_null_ref("wxValidator");
7453 if (SWIG_arg_fail(7)) SWIG_fail
;
7458 arg8
= wxString_in_helper(obj7
);
7459 if (arg8
== NULL
) SWIG_fail
;
7464 if (!wxPyCheckForApp()) SWIG_fail
;
7465 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7466 result
= (wxListBox
*)new wxListBox(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,(wxArrayString
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
7468 wxPyEndAllowThreads(__tstate
);
7469 if (PyErr_Occurred()) SWIG_fail
;
7471 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListBox
, 1);
7473 if (temp5
) delete arg5
;
7482 if (temp5
) delete arg5
;
7492 static PyObject
*_wrap_new_PreListBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7493 PyObject
*resultobj
= NULL
;
7499 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreListBox",kwnames
)) goto fail
;
7501 if (!wxPyCheckForApp()) SWIG_fail
;
7502 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7503 result
= (wxListBox
*)new wxListBox();
7505 wxPyEndAllowThreads(__tstate
);
7506 if (PyErr_Occurred()) SWIG_fail
;
7508 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListBox
, 1);
7515 static PyObject
*_wrap_ListBox_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7516 PyObject
*resultobj
= NULL
;
7517 wxListBox
*arg1
= (wxListBox
*) 0 ;
7518 wxWindow
*arg2
= (wxWindow
*) 0 ;
7519 int arg3
= (int) -1 ;
7520 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
7521 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
7522 wxSize
const &arg5_defvalue
= wxDefaultSize
;
7523 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
7524 wxArrayString
const &arg6_defvalue
= wxPyEmptyStringArray
;
7525 wxArrayString
*arg6
= (wxArrayString
*) &arg6_defvalue
;
7526 long arg7
= (long) 0 ;
7527 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
7528 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
7529 wxString
const &arg9_defvalue
= wxPyListBoxNameStr
;
7530 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
7534 bool temp6
= false ;
7535 bool temp9
= false ;
7536 PyObject
* obj0
= 0 ;
7537 PyObject
* obj1
= 0 ;
7538 PyObject
* obj2
= 0 ;
7539 PyObject
* obj3
= 0 ;
7540 PyObject
* obj4
= 0 ;
7541 PyObject
* obj5
= 0 ;
7542 PyObject
* obj6
= 0 ;
7543 PyObject
* obj7
= 0 ;
7544 PyObject
* obj8
= 0 ;
7546 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
7549 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:ListBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
7550 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7551 if (SWIG_arg_fail(1)) SWIG_fail
;
7552 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
7553 if (SWIG_arg_fail(2)) SWIG_fail
;
7556 arg3
= static_cast<int >(SWIG_As_int(obj2
));
7557 if (SWIG_arg_fail(3)) SWIG_fail
;
7563 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7569 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
7574 if (! PySequence_Check(obj5
)) {
7575 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
7578 arg6
= new wxArrayString
;
7580 int i
, len
=PySequence_Length(obj5
);
7581 for (i
=0; i
<len
; i
++) {
7582 PyObject
* item
= PySequence_GetItem(obj5
, i
);
7583 wxString
* s
= wxString_in_helper(item
);
7584 if (PyErr_Occurred()) SWIG_fail
;
7593 arg7
= static_cast<long >(SWIG_As_long(obj6
));
7594 if (SWIG_arg_fail(7)) SWIG_fail
;
7599 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
7600 if (SWIG_arg_fail(8)) SWIG_fail
;
7602 SWIG_null_ref("wxValidator");
7604 if (SWIG_arg_fail(8)) SWIG_fail
;
7609 arg9
= wxString_in_helper(obj8
);
7610 if (arg9
== NULL
) SWIG_fail
;
7615 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7616 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,(wxArrayString
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
7618 wxPyEndAllowThreads(__tstate
);
7619 if (PyErr_Occurred()) SWIG_fail
;
7622 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7625 if (temp6
) delete arg6
;
7634 if (temp6
) delete arg6
;
7644 static PyObject
*_wrap_ListBox_Insert(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7645 PyObject
*resultobj
= NULL
;
7646 wxListBox
*arg1
= (wxListBox
*) 0 ;
7647 wxString
*arg2
= 0 ;
7649 PyObject
*arg4
= (PyObject
*) NULL
;
7650 bool temp2
= false ;
7651 PyObject
* obj0
= 0 ;
7652 PyObject
* obj1
= 0 ;
7653 PyObject
* obj2
= 0 ;
7654 PyObject
* obj3
= 0 ;
7656 (char *) "self",(char *) "item",(char *) "pos",(char *) "clientData", NULL
7659 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:ListBox_Insert",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
7660 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7661 if (SWIG_arg_fail(1)) SWIG_fail
;
7663 arg2
= wxString_in_helper(obj1
);
7664 if (arg2
== NULL
) SWIG_fail
;
7668 arg3
= static_cast<int >(SWIG_As_int(obj2
));
7669 if (SWIG_arg_fail(3)) SWIG_fail
;
7675 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7676 wxListBox_Insert(arg1
,(wxString
const &)*arg2
,arg3
,arg4
);
7678 wxPyEndAllowThreads(__tstate
);
7679 if (PyErr_Occurred()) SWIG_fail
;
7681 Py_INCREF(Py_None
); resultobj
= Py_None
;
7696 static PyObject
*_wrap_ListBox_InsertItems(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7697 PyObject
*resultobj
= NULL
;
7698 wxListBox
*arg1
= (wxListBox
*) 0 ;
7699 wxArrayString
*arg2
= 0 ;
7701 bool temp2
= false ;
7702 PyObject
* obj0
= 0 ;
7703 PyObject
* obj1
= 0 ;
7704 PyObject
* obj2
= 0 ;
7706 (char *) "self",(char *) "items",(char *) "pos", NULL
7709 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListBox_InsertItems",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
7710 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7711 if (SWIG_arg_fail(1)) SWIG_fail
;
7713 if (! PySequence_Check(obj1
)) {
7714 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
7717 arg2
= new wxArrayString
;
7719 int i
, len
=PySequence_Length(obj1
);
7720 for (i
=0; i
<len
; i
++) {
7721 PyObject
* item
= PySequence_GetItem(obj1
, i
);
7722 wxString
* s
= wxString_in_helper(item
);
7723 if (PyErr_Occurred()) SWIG_fail
;
7730 arg3
= static_cast<int >(SWIG_As_int(obj2
));
7731 if (SWIG_arg_fail(3)) SWIG_fail
;
7734 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7735 (arg1
)->InsertItems((wxArrayString
const &)*arg2
,arg3
);
7737 wxPyEndAllowThreads(__tstate
);
7738 if (PyErr_Occurred()) SWIG_fail
;
7740 Py_INCREF(Py_None
); resultobj
= Py_None
;
7742 if (temp2
) delete arg2
;
7747 if (temp2
) delete arg2
;
7753 static PyObject
*_wrap_ListBox_Set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7754 PyObject
*resultobj
= NULL
;
7755 wxListBox
*arg1
= (wxListBox
*) 0 ;
7756 wxArrayString
*arg2
= 0 ;
7757 bool temp2
= false ;
7758 PyObject
* obj0
= 0 ;
7759 PyObject
* obj1
= 0 ;
7761 (char *) "self",(char *) "items", NULL
7764 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_Set",kwnames
,&obj0
,&obj1
)) goto fail
;
7765 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7766 if (SWIG_arg_fail(1)) SWIG_fail
;
7768 if (! PySequence_Check(obj1
)) {
7769 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
7772 arg2
= new wxArrayString
;
7774 int i
, len
=PySequence_Length(obj1
);
7775 for (i
=0; i
<len
; i
++) {
7776 PyObject
* item
= PySequence_GetItem(obj1
, i
);
7777 wxString
* s
= wxString_in_helper(item
);
7778 if (PyErr_Occurred()) SWIG_fail
;
7785 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7786 (arg1
)->Set((wxArrayString
const &)*arg2
);
7788 wxPyEndAllowThreads(__tstate
);
7789 if (PyErr_Occurred()) SWIG_fail
;
7791 Py_INCREF(Py_None
); resultobj
= Py_None
;
7793 if (temp2
) delete arg2
;
7798 if (temp2
) delete arg2
;
7804 static PyObject
*_wrap_ListBox_IsSelected(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7805 PyObject
*resultobj
= NULL
;
7806 wxListBox
*arg1
= (wxListBox
*) 0 ;
7809 PyObject
* obj0
= 0 ;
7810 PyObject
* obj1
= 0 ;
7812 (char *) "self",(char *) "n", NULL
7815 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_IsSelected",kwnames
,&obj0
,&obj1
)) goto fail
;
7816 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7817 if (SWIG_arg_fail(1)) SWIG_fail
;
7819 arg2
= static_cast<int >(SWIG_As_int(obj1
));
7820 if (SWIG_arg_fail(2)) SWIG_fail
;
7823 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7824 result
= (bool)((wxListBox
const *)arg1
)->IsSelected(arg2
);
7826 wxPyEndAllowThreads(__tstate
);
7827 if (PyErr_Occurred()) SWIG_fail
;
7830 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7838 static PyObject
*_wrap_ListBox_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7839 PyObject
*resultobj
= NULL
;
7840 wxListBox
*arg1
= (wxListBox
*) 0 ;
7842 bool arg3
= (bool) true ;
7843 PyObject
* obj0
= 0 ;
7844 PyObject
* obj1
= 0 ;
7845 PyObject
* obj2
= 0 ;
7847 (char *) "self",(char *) "n",(char *) "select", NULL
7850 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ListBox_SetSelection",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
7851 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7852 if (SWIG_arg_fail(1)) SWIG_fail
;
7854 arg2
= static_cast<int >(SWIG_As_int(obj1
));
7855 if (SWIG_arg_fail(2)) SWIG_fail
;
7859 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
7860 if (SWIG_arg_fail(3)) SWIG_fail
;
7864 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7865 (arg1
)->SetSelection(arg2
,arg3
);
7867 wxPyEndAllowThreads(__tstate
);
7868 if (PyErr_Occurred()) SWIG_fail
;
7870 Py_INCREF(Py_None
); resultobj
= Py_None
;
7877 static PyObject
*_wrap_ListBox_Select(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7878 PyObject
*resultobj
= NULL
;
7879 wxListBox
*arg1
= (wxListBox
*) 0 ;
7881 PyObject
* obj0
= 0 ;
7882 PyObject
* obj1
= 0 ;
7884 (char *) "self",(char *) "n", NULL
7887 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_Select",kwnames
,&obj0
,&obj1
)) goto fail
;
7888 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7889 if (SWIG_arg_fail(1)) SWIG_fail
;
7891 arg2
= static_cast<int >(SWIG_As_int(obj1
));
7892 if (SWIG_arg_fail(2)) SWIG_fail
;
7895 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7896 (arg1
)->Select(arg2
);
7898 wxPyEndAllowThreads(__tstate
);
7899 if (PyErr_Occurred()) SWIG_fail
;
7901 Py_INCREF(Py_None
); resultobj
= Py_None
;
7908 static PyObject
*_wrap_ListBox_Deselect(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7909 PyObject
*resultobj
= NULL
;
7910 wxListBox
*arg1
= (wxListBox
*) 0 ;
7912 PyObject
* obj0
= 0 ;
7913 PyObject
* obj1
= 0 ;
7915 (char *) "self",(char *) "n", NULL
7918 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_Deselect",kwnames
,&obj0
,&obj1
)) goto fail
;
7919 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7920 if (SWIG_arg_fail(1)) SWIG_fail
;
7922 arg2
= static_cast<int >(SWIG_As_int(obj1
));
7923 if (SWIG_arg_fail(2)) SWIG_fail
;
7926 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7927 (arg1
)->Deselect(arg2
);
7929 wxPyEndAllowThreads(__tstate
);
7930 if (PyErr_Occurred()) SWIG_fail
;
7932 Py_INCREF(Py_None
); resultobj
= Py_None
;
7939 static PyObject
*_wrap_ListBox_DeselectAll(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7940 PyObject
*resultobj
= NULL
;
7941 wxListBox
*arg1
= (wxListBox
*) 0 ;
7942 int arg2
= (int) -1 ;
7943 PyObject
* obj0
= 0 ;
7944 PyObject
* obj1
= 0 ;
7946 (char *) "self",(char *) "itemToLeaveSelected", NULL
7949 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:ListBox_DeselectAll",kwnames
,&obj0
,&obj1
)) goto fail
;
7950 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7951 if (SWIG_arg_fail(1)) SWIG_fail
;
7954 arg2
= static_cast<int >(SWIG_As_int(obj1
));
7955 if (SWIG_arg_fail(2)) SWIG_fail
;
7959 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7960 (arg1
)->DeselectAll(arg2
);
7962 wxPyEndAllowThreads(__tstate
);
7963 if (PyErr_Occurred()) SWIG_fail
;
7965 Py_INCREF(Py_None
); resultobj
= Py_None
;
7972 static PyObject
*_wrap_ListBox_SetStringSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
7973 PyObject
*resultobj
= NULL
;
7974 wxListBox
*arg1
= (wxListBox
*) 0 ;
7975 wxString
*arg2
= 0 ;
7976 bool arg3
= (bool) true ;
7978 bool temp2
= false ;
7979 PyObject
* obj0
= 0 ;
7980 PyObject
* obj1
= 0 ;
7981 PyObject
* obj2
= 0 ;
7983 (char *) "self",(char *) "s",(char *) "select", NULL
7986 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ListBox_SetStringSelection",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
7987 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
7988 if (SWIG_arg_fail(1)) SWIG_fail
;
7990 arg2
= wxString_in_helper(obj1
);
7991 if (arg2
== NULL
) SWIG_fail
;
7996 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
7997 if (SWIG_arg_fail(3)) SWIG_fail
;
8001 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8002 result
= (bool)(arg1
)->SetStringSelection((wxString
const &)*arg2
,arg3
);
8004 wxPyEndAllowThreads(__tstate
);
8005 if (PyErr_Occurred()) SWIG_fail
;
8008 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8024 static PyObject
*_wrap_ListBox_GetSelections(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8025 PyObject
*resultobj
= NULL
;
8026 wxListBox
*arg1
= (wxListBox
*) 0 ;
8028 PyObject
* obj0
= 0 ;
8030 (char *) "self", NULL
8033 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListBox_GetSelections",kwnames
,&obj0
)) goto fail
;
8034 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8035 if (SWIG_arg_fail(1)) SWIG_fail
;
8037 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8038 result
= (PyObject
*)wxListBox_GetSelections(arg1
);
8040 wxPyEndAllowThreads(__tstate
);
8041 if (PyErr_Occurred()) SWIG_fail
;
8050 static PyObject
*_wrap_ListBox_SetFirstItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8051 PyObject
*resultobj
= NULL
;
8052 wxListBox
*arg1
= (wxListBox
*) 0 ;
8054 PyObject
* obj0
= 0 ;
8055 PyObject
* obj1
= 0 ;
8057 (char *) "self",(char *) "n", NULL
8060 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_SetFirstItem",kwnames
,&obj0
,&obj1
)) goto fail
;
8061 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8062 if (SWIG_arg_fail(1)) SWIG_fail
;
8064 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8065 if (SWIG_arg_fail(2)) SWIG_fail
;
8068 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8069 (arg1
)->SetFirstItem(arg2
);
8071 wxPyEndAllowThreads(__tstate
);
8072 if (PyErr_Occurred()) SWIG_fail
;
8074 Py_INCREF(Py_None
); resultobj
= Py_None
;
8081 static PyObject
*_wrap_ListBox_SetFirstItemStr(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8082 PyObject
*resultobj
= NULL
;
8083 wxListBox
*arg1
= (wxListBox
*) 0 ;
8084 wxString
*arg2
= 0 ;
8085 bool temp2
= false ;
8086 PyObject
* obj0
= 0 ;
8087 PyObject
* obj1
= 0 ;
8089 (char *) "self",(char *) "s", NULL
8092 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_SetFirstItemStr",kwnames
,&obj0
,&obj1
)) goto fail
;
8093 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8094 if (SWIG_arg_fail(1)) SWIG_fail
;
8096 arg2
= wxString_in_helper(obj1
);
8097 if (arg2
== NULL
) SWIG_fail
;
8101 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8102 (arg1
)->SetFirstItem((wxString
const &)*arg2
);
8104 wxPyEndAllowThreads(__tstate
);
8105 if (PyErr_Occurred()) SWIG_fail
;
8107 Py_INCREF(Py_None
); resultobj
= Py_None
;
8122 static PyObject
*_wrap_ListBox_EnsureVisible(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8123 PyObject
*resultobj
= NULL
;
8124 wxListBox
*arg1
= (wxListBox
*) 0 ;
8126 PyObject
* obj0
= 0 ;
8127 PyObject
* obj1
= 0 ;
8129 (char *) "self",(char *) "n", NULL
8132 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_EnsureVisible",kwnames
,&obj0
,&obj1
)) goto fail
;
8133 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8134 if (SWIG_arg_fail(1)) SWIG_fail
;
8136 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8137 if (SWIG_arg_fail(2)) SWIG_fail
;
8140 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8141 (arg1
)->EnsureVisible(arg2
);
8143 wxPyEndAllowThreads(__tstate
);
8144 if (PyErr_Occurred()) SWIG_fail
;
8146 Py_INCREF(Py_None
); resultobj
= Py_None
;
8153 static PyObject
*_wrap_ListBox_AppendAndEnsureVisible(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8154 PyObject
*resultobj
= NULL
;
8155 wxListBox
*arg1
= (wxListBox
*) 0 ;
8156 wxString
*arg2
= 0 ;
8157 bool temp2
= false ;
8158 PyObject
* obj0
= 0 ;
8159 PyObject
* obj1
= 0 ;
8161 (char *) "self",(char *) "s", NULL
8164 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListBox_AppendAndEnsureVisible",kwnames
,&obj0
,&obj1
)) goto fail
;
8165 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8166 if (SWIG_arg_fail(1)) SWIG_fail
;
8168 arg2
= wxString_in_helper(obj1
);
8169 if (arg2
== NULL
) SWIG_fail
;
8173 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8174 (arg1
)->AppendAndEnsureVisible((wxString
const &)*arg2
);
8176 wxPyEndAllowThreads(__tstate
);
8177 if (PyErr_Occurred()) SWIG_fail
;
8179 Py_INCREF(Py_None
); resultobj
= Py_None
;
8194 static PyObject
*_wrap_ListBox_IsSorted(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8195 PyObject
*resultobj
= NULL
;
8196 wxListBox
*arg1
= (wxListBox
*) 0 ;
8198 PyObject
* obj0
= 0 ;
8200 (char *) "self", NULL
8203 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListBox_IsSorted",kwnames
,&obj0
)) goto fail
;
8204 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8205 if (SWIG_arg_fail(1)) SWIG_fail
;
8207 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8208 result
= (bool)((wxListBox
const *)arg1
)->IsSorted();
8210 wxPyEndAllowThreads(__tstate
);
8211 if (PyErr_Occurred()) SWIG_fail
;
8214 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8222 static PyObject
*_wrap_ListBox_SetItemForegroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8223 PyObject
*resultobj
= NULL
;
8224 wxListBox
*arg1
= (wxListBox
*) 0 ;
8226 wxColour
*arg3
= 0 ;
8228 PyObject
* obj0
= 0 ;
8229 PyObject
* obj1
= 0 ;
8230 PyObject
* obj2
= 0 ;
8232 (char *) "self",(char *) "item",(char *) "c", NULL
8235 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListBox_SetItemForegroundColour",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
8236 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8237 if (SWIG_arg_fail(1)) SWIG_fail
;
8239 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8240 if (SWIG_arg_fail(2)) SWIG_fail
;
8244 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
8247 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8248 wxListBox_SetItemForegroundColour(arg1
,arg2
,(wxColour
const &)*arg3
);
8250 wxPyEndAllowThreads(__tstate
);
8251 if (PyErr_Occurred()) SWIG_fail
;
8253 Py_INCREF(Py_None
); resultobj
= Py_None
;
8260 static PyObject
*_wrap_ListBox_SetItemBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8261 PyObject
*resultobj
= NULL
;
8262 wxListBox
*arg1
= (wxListBox
*) 0 ;
8264 wxColour
*arg3
= 0 ;
8266 PyObject
* obj0
= 0 ;
8267 PyObject
* obj1
= 0 ;
8268 PyObject
* obj2
= 0 ;
8270 (char *) "self",(char *) "item",(char *) "c", NULL
8273 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListBox_SetItemBackgroundColour",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
8274 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8275 if (SWIG_arg_fail(1)) SWIG_fail
;
8277 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8278 if (SWIG_arg_fail(2)) SWIG_fail
;
8282 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
8285 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8286 wxListBox_SetItemBackgroundColour(arg1
,arg2
,(wxColour
const &)*arg3
);
8288 wxPyEndAllowThreads(__tstate
);
8289 if (PyErr_Occurred()) SWIG_fail
;
8291 Py_INCREF(Py_None
); resultobj
= Py_None
;
8298 static PyObject
*_wrap_ListBox_SetItemFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8299 PyObject
*resultobj
= NULL
;
8300 wxListBox
*arg1
= (wxListBox
*) 0 ;
8303 PyObject
* obj0
= 0 ;
8304 PyObject
* obj1
= 0 ;
8305 PyObject
* obj2
= 0 ;
8307 (char *) "self",(char *) "item",(char *) "f", NULL
8310 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListBox_SetItemFont",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
8311 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListBox
, SWIG_POINTER_EXCEPTION
| 0);
8312 if (SWIG_arg_fail(1)) SWIG_fail
;
8314 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8315 if (SWIG_arg_fail(2)) SWIG_fail
;
8318 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
8319 if (SWIG_arg_fail(3)) SWIG_fail
;
8321 SWIG_null_ref("wxFont");
8323 if (SWIG_arg_fail(3)) SWIG_fail
;
8326 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8327 wxListBox_SetItemFont(arg1
,arg2
,(wxFont
const &)*arg3
);
8329 wxPyEndAllowThreads(__tstate
);
8330 if (PyErr_Occurred()) SWIG_fail
;
8332 Py_INCREF(Py_None
); resultobj
= Py_None
;
8339 static PyObject
*_wrap_ListBox_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8340 PyObject
*resultobj
= NULL
;
8341 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
8342 wxVisualAttributes result
;
8343 PyObject
* obj0
= 0 ;
8345 (char *) "variant", NULL
8348 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ListBox_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
8351 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
8352 if (SWIG_arg_fail(1)) SWIG_fail
;
8356 if (!wxPyCheckForApp()) SWIG_fail
;
8357 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8358 result
= wxListBox::GetClassDefaultAttributes(arg1
);
8360 wxPyEndAllowThreads(__tstate
);
8361 if (PyErr_Occurred()) SWIG_fail
;
8364 wxVisualAttributes
* resultptr
;
8365 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
8366 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
8374 static PyObject
* ListBox_swigregister(PyObject
*, PyObject
*args
) {
8376 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
8377 SWIG_TypeClientData(SWIGTYPE_p_wxListBox
, obj
);
8379 return Py_BuildValue((char *)"");
8381 static PyObject
*_wrap_new_CheckListBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8382 PyObject
*resultobj
= NULL
;
8383 wxWindow
*arg1
= (wxWindow
*) 0 ;
8384 int arg2
= (int) -1 ;
8385 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
8386 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
8387 wxSize
const &arg4_defvalue
= wxDefaultSize
;
8388 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
8389 wxArrayString
const &arg5_defvalue
= wxPyEmptyStringArray
;
8390 wxArrayString
*arg5
= (wxArrayString
*) &arg5_defvalue
;
8391 long arg6
= (long) 0 ;
8392 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
8393 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
8394 wxString
const &arg8_defvalue
= wxPyListBoxNameStr
;
8395 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
8396 wxCheckListBox
*result
;
8399 bool temp5
= false ;
8400 bool temp8
= false ;
8401 PyObject
* obj0
= 0 ;
8402 PyObject
* obj1
= 0 ;
8403 PyObject
* obj2
= 0 ;
8404 PyObject
* obj3
= 0 ;
8405 PyObject
* obj4
= 0 ;
8406 PyObject
* obj5
= 0 ;
8407 PyObject
* obj6
= 0 ;
8408 PyObject
* obj7
= 0 ;
8410 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
8413 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_CheckListBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
8414 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
8415 if (SWIG_arg_fail(1)) SWIG_fail
;
8418 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8419 if (SWIG_arg_fail(2)) SWIG_fail
;
8425 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
8431 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
8436 if (! PySequence_Check(obj4
)) {
8437 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
8440 arg5
= new wxArrayString
;
8442 int i
, len
=PySequence_Length(obj4
);
8443 for (i
=0; i
<len
; i
++) {
8444 PyObject
* item
= PySequence_GetItem(obj4
, i
);
8445 wxString
* s
= wxString_in_helper(item
);
8446 if (PyErr_Occurred()) SWIG_fail
;
8455 arg6
= static_cast<long >(SWIG_As_long(obj5
));
8456 if (SWIG_arg_fail(6)) SWIG_fail
;
8461 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
8462 if (SWIG_arg_fail(7)) SWIG_fail
;
8464 SWIG_null_ref("wxValidator");
8466 if (SWIG_arg_fail(7)) SWIG_fail
;
8471 arg8
= wxString_in_helper(obj7
);
8472 if (arg8
== NULL
) SWIG_fail
;
8477 if (!wxPyCheckForApp()) SWIG_fail
;
8478 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8479 result
= (wxCheckListBox
*)new wxCheckListBox(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,(wxArrayString
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
8481 wxPyEndAllowThreads(__tstate
);
8482 if (PyErr_Occurred()) SWIG_fail
;
8484 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxCheckListBox
, 1);
8486 if (temp5
) delete arg5
;
8495 if (temp5
) delete arg5
;
8505 static PyObject
*_wrap_new_PreCheckListBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8506 PyObject
*resultobj
= NULL
;
8507 wxCheckListBox
*result
;
8512 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreCheckListBox",kwnames
)) goto fail
;
8514 if (!wxPyCheckForApp()) SWIG_fail
;
8515 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8516 result
= (wxCheckListBox
*)new wxCheckListBox();
8518 wxPyEndAllowThreads(__tstate
);
8519 if (PyErr_Occurred()) SWIG_fail
;
8521 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxCheckListBox
, 1);
8528 static PyObject
*_wrap_CheckListBox_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8529 PyObject
*resultobj
= NULL
;
8530 wxCheckListBox
*arg1
= (wxCheckListBox
*) 0 ;
8531 wxWindow
*arg2
= (wxWindow
*) 0 ;
8532 int arg3
= (int) -1 ;
8533 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
8534 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
8535 wxSize
const &arg5_defvalue
= wxDefaultSize
;
8536 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
8537 wxArrayString
const &arg6_defvalue
= wxPyEmptyStringArray
;
8538 wxArrayString
*arg6
= (wxArrayString
*) &arg6_defvalue
;
8539 long arg7
= (long) 0 ;
8540 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
8541 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
8542 wxString
const &arg9_defvalue
= wxPyListBoxNameStr
;
8543 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
8547 bool temp6
= false ;
8548 bool temp9
= false ;
8549 PyObject
* obj0
= 0 ;
8550 PyObject
* obj1
= 0 ;
8551 PyObject
* obj2
= 0 ;
8552 PyObject
* obj3
= 0 ;
8553 PyObject
* obj4
= 0 ;
8554 PyObject
* obj5
= 0 ;
8555 PyObject
* obj6
= 0 ;
8556 PyObject
* obj7
= 0 ;
8557 PyObject
* obj8
= 0 ;
8559 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "choices",(char *) "style",(char *) "validator",(char *) "name", NULL
8562 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:CheckListBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
8563 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckListBox
, SWIG_POINTER_EXCEPTION
| 0);
8564 if (SWIG_arg_fail(1)) SWIG_fail
;
8565 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
8566 if (SWIG_arg_fail(2)) SWIG_fail
;
8569 arg3
= static_cast<int >(SWIG_As_int(obj2
));
8570 if (SWIG_arg_fail(3)) SWIG_fail
;
8576 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
8582 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
8587 if (! PySequence_Check(obj5
)) {
8588 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
8591 arg6
= new wxArrayString
;
8593 int i
, len
=PySequence_Length(obj5
);
8594 for (i
=0; i
<len
; i
++) {
8595 PyObject
* item
= PySequence_GetItem(obj5
, i
);
8596 wxString
* s
= wxString_in_helper(item
);
8597 if (PyErr_Occurred()) SWIG_fail
;
8606 arg7
= static_cast<long >(SWIG_As_long(obj6
));
8607 if (SWIG_arg_fail(7)) SWIG_fail
;
8612 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
8613 if (SWIG_arg_fail(8)) SWIG_fail
;
8615 SWIG_null_ref("wxValidator");
8617 if (SWIG_arg_fail(8)) SWIG_fail
;
8622 arg9
= wxString_in_helper(obj8
);
8623 if (arg9
== NULL
) SWIG_fail
;
8628 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8629 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,(wxArrayString
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
8631 wxPyEndAllowThreads(__tstate
);
8632 if (PyErr_Occurred()) SWIG_fail
;
8635 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8638 if (temp6
) delete arg6
;
8647 if (temp6
) delete arg6
;
8657 static PyObject
*_wrap_CheckListBox_IsChecked(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8658 PyObject
*resultobj
= NULL
;
8659 wxCheckListBox
*arg1
= (wxCheckListBox
*) 0 ;
8662 PyObject
* obj0
= 0 ;
8663 PyObject
* obj1
= 0 ;
8665 (char *) "self",(char *) "index", NULL
8668 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CheckListBox_IsChecked",kwnames
,&obj0
,&obj1
)) goto fail
;
8669 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckListBox
, SWIG_POINTER_EXCEPTION
| 0);
8670 if (SWIG_arg_fail(1)) SWIG_fail
;
8672 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8673 if (SWIG_arg_fail(2)) SWIG_fail
;
8676 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8677 result
= (bool)(arg1
)->IsChecked(arg2
);
8679 wxPyEndAllowThreads(__tstate
);
8680 if (PyErr_Occurred()) SWIG_fail
;
8683 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8691 static PyObject
*_wrap_CheckListBox_Check(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8692 PyObject
*resultobj
= NULL
;
8693 wxCheckListBox
*arg1
= (wxCheckListBox
*) 0 ;
8695 int arg3
= (int) true ;
8696 PyObject
* obj0
= 0 ;
8697 PyObject
* obj1
= 0 ;
8698 PyObject
* obj2
= 0 ;
8700 (char *) "self",(char *) "index",(char *) "check", NULL
8703 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:CheckListBox_Check",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
8704 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckListBox
, SWIG_POINTER_EXCEPTION
| 0);
8705 if (SWIG_arg_fail(1)) SWIG_fail
;
8707 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8708 if (SWIG_arg_fail(2)) SWIG_fail
;
8712 arg3
= static_cast<int >(SWIG_As_int(obj2
));
8713 if (SWIG_arg_fail(3)) SWIG_fail
;
8717 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8718 (arg1
)->Check(arg2
,arg3
);
8720 wxPyEndAllowThreads(__tstate
);
8721 if (PyErr_Occurred()) SWIG_fail
;
8723 Py_INCREF(Py_None
); resultobj
= Py_None
;
8730 static PyObject
*_wrap_CheckListBox_GetItemHeight(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8731 PyObject
*resultobj
= NULL
;
8732 wxCheckListBox
*arg1
= (wxCheckListBox
*) 0 ;
8734 PyObject
* obj0
= 0 ;
8736 (char *) "self", NULL
8739 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CheckListBox_GetItemHeight",kwnames
,&obj0
)) goto fail
;
8740 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckListBox
, SWIG_POINTER_EXCEPTION
| 0);
8741 if (SWIG_arg_fail(1)) SWIG_fail
;
8743 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8744 result
= (int)(arg1
)->GetItemHeight();
8746 wxPyEndAllowThreads(__tstate
);
8747 if (PyErr_Occurred()) SWIG_fail
;
8750 resultobj
= SWIG_From_int(static_cast<int >(result
));
8758 static PyObject
*_wrap_CheckListBox_HitTest(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8759 PyObject
*resultobj
= NULL
;
8760 wxCheckListBox
*arg1
= (wxCheckListBox
*) 0 ;
8764 PyObject
* obj0
= 0 ;
8765 PyObject
* obj1
= 0 ;
8767 (char *) "self",(char *) "pt", NULL
8770 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CheckListBox_HitTest",kwnames
,&obj0
,&obj1
)) goto fail
;
8771 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckListBox
, SWIG_POINTER_EXCEPTION
| 0);
8772 if (SWIG_arg_fail(1)) SWIG_fail
;
8775 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
8778 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8779 result
= (int)((wxCheckListBox
const *)arg1
)->HitTest((wxPoint
const &)*arg2
);
8781 wxPyEndAllowThreads(__tstate
);
8782 if (PyErr_Occurred()) SWIG_fail
;
8785 resultobj
= SWIG_From_int(static_cast<int >(result
));
8793 static PyObject
*_wrap_CheckListBox_HitTestXY(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8794 PyObject
*resultobj
= NULL
;
8795 wxCheckListBox
*arg1
= (wxCheckListBox
*) 0 ;
8799 PyObject
* obj0
= 0 ;
8800 PyObject
* obj1
= 0 ;
8801 PyObject
* obj2
= 0 ;
8803 (char *) "self",(char *) "x",(char *) "y", NULL
8806 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:CheckListBox_HitTestXY",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
8807 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCheckListBox
, SWIG_POINTER_EXCEPTION
| 0);
8808 if (SWIG_arg_fail(1)) SWIG_fail
;
8810 arg2
= static_cast<int >(SWIG_As_int(obj1
));
8811 if (SWIG_arg_fail(2)) SWIG_fail
;
8814 arg3
= static_cast<int >(SWIG_As_int(obj2
));
8815 if (SWIG_arg_fail(3)) SWIG_fail
;
8818 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8819 result
= (int)((wxCheckListBox
const *)arg1
)->HitTest(arg2
,arg3
);
8821 wxPyEndAllowThreads(__tstate
);
8822 if (PyErr_Occurred()) SWIG_fail
;
8825 resultobj
= SWIG_From_int(static_cast<int >(result
));
8833 static PyObject
* CheckListBox_swigregister(PyObject
*, PyObject
*args
) {
8835 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
8836 SWIG_TypeClientData(SWIGTYPE_p_wxCheckListBox
, obj
);
8838 return Py_BuildValue((char *)"");
8840 static int _wrap_TextCtrlNameStr_set(PyObject
*) {
8841 PyErr_SetString(PyExc_TypeError
,"Variable TextCtrlNameStr is read-only.");
8846 static PyObject
*_wrap_TextCtrlNameStr_get(void) {
8847 PyObject
*pyobj
= NULL
;
8851 pyobj
= PyUnicode_FromWideChar((&wxPyTextCtrlNameStr
)->c_str(), (&wxPyTextCtrlNameStr
)->Len());
8853 pyobj
= PyString_FromStringAndSize((&wxPyTextCtrlNameStr
)->c_str(), (&wxPyTextCtrlNameStr
)->Len());
8860 static PyObject
*_wrap_new_TextAttr(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8861 PyObject
*resultobj
= NULL
;
8862 wxColour
const &arg1_defvalue
= wxNullColour
;
8863 wxColour
*arg1
= (wxColour
*) &arg1_defvalue
;
8864 wxColour
const &arg2_defvalue
= wxNullColour
;
8865 wxColour
*arg2
= (wxColour
*) &arg2_defvalue
;
8866 wxFont
const &arg3_defvalue
= wxNullFont
;
8867 wxFont
*arg3
= (wxFont
*) &arg3_defvalue
;
8868 wxTextAttrAlignment arg4
= (wxTextAttrAlignment
) wxTEXT_ALIGNMENT_DEFAULT
;
8872 PyObject
* obj0
= 0 ;
8873 PyObject
* obj1
= 0 ;
8874 PyObject
* obj2
= 0 ;
8875 PyObject
* obj3
= 0 ;
8877 (char *) "colText",(char *) "colBack",(char *) "font",(char *) "alignment", NULL
8880 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_TextAttr",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
8884 if ( ! wxColour_helper(obj0
, &arg1
)) SWIG_fail
;
8890 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
8895 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
8896 if (SWIG_arg_fail(3)) SWIG_fail
;
8898 SWIG_null_ref("wxFont");
8900 if (SWIG_arg_fail(3)) SWIG_fail
;
8905 arg4
= static_cast<wxTextAttrAlignment
>(SWIG_As_int(obj3
));
8906 if (SWIG_arg_fail(4)) SWIG_fail
;
8910 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8911 result
= (wxTextAttr
*)new wxTextAttr((wxColour
const &)*arg1
,(wxColour
const &)*arg2
,(wxFont
const &)*arg3
,arg4
);
8913 wxPyEndAllowThreads(__tstate
);
8914 if (PyErr_Occurred()) SWIG_fail
;
8916 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTextAttr
, 1);
8923 static PyObject
*_wrap_delete_TextAttr(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8924 PyObject
*resultobj
= NULL
;
8925 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
8926 PyObject
* obj0
= 0 ;
8928 (char *) "self", NULL
8931 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_TextAttr",kwnames
,&obj0
)) goto fail
;
8932 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
8933 if (SWIG_arg_fail(1)) SWIG_fail
;
8935 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8938 wxPyEndAllowThreads(__tstate
);
8939 if (PyErr_Occurred()) SWIG_fail
;
8941 Py_INCREF(Py_None
); resultobj
= Py_None
;
8948 static PyObject
*_wrap_TextAttr_Init(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8949 PyObject
*resultobj
= NULL
;
8950 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
8951 PyObject
* obj0
= 0 ;
8953 (char *) "self", NULL
8956 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_Init",kwnames
,&obj0
)) goto fail
;
8957 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
8958 if (SWIG_arg_fail(1)) SWIG_fail
;
8960 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8963 wxPyEndAllowThreads(__tstate
);
8964 if (PyErr_Occurred()) SWIG_fail
;
8966 Py_INCREF(Py_None
); resultobj
= Py_None
;
8973 static PyObject
*_wrap_TextAttr_SetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
8974 PyObject
*resultobj
= NULL
;
8975 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
8976 wxColour
*arg2
= 0 ;
8978 PyObject
* obj0
= 0 ;
8979 PyObject
* obj1
= 0 ;
8981 (char *) "self",(char *) "colText", NULL
8984 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextAttr_SetTextColour",kwnames
,&obj0
,&obj1
)) goto fail
;
8985 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
8986 if (SWIG_arg_fail(1)) SWIG_fail
;
8989 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
8992 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8993 (arg1
)->SetTextColour((wxColour
const &)*arg2
);
8995 wxPyEndAllowThreads(__tstate
);
8996 if (PyErr_Occurred()) SWIG_fail
;
8998 Py_INCREF(Py_None
); resultobj
= Py_None
;
9005 static PyObject
*_wrap_TextAttr_SetBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9006 PyObject
*resultobj
= NULL
;
9007 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9008 wxColour
*arg2
= 0 ;
9010 PyObject
* obj0
= 0 ;
9011 PyObject
* obj1
= 0 ;
9013 (char *) "self",(char *) "colBack", NULL
9016 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextAttr_SetBackgroundColour",kwnames
,&obj0
,&obj1
)) goto fail
;
9017 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9018 if (SWIG_arg_fail(1)) SWIG_fail
;
9021 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
9024 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9025 (arg1
)->SetBackgroundColour((wxColour
const &)*arg2
);
9027 wxPyEndAllowThreads(__tstate
);
9028 if (PyErr_Occurred()) SWIG_fail
;
9030 Py_INCREF(Py_None
); resultobj
= Py_None
;
9037 static PyObject
*_wrap_TextAttr_SetFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9038 PyObject
*resultobj
= NULL
;
9039 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9041 long arg3
= (long) wxTEXT_ATTR_FONT
;
9042 PyObject
* obj0
= 0 ;
9043 PyObject
* obj1
= 0 ;
9044 PyObject
* obj2
= 0 ;
9046 (char *) "self",(char *) "font",(char *) "flags", NULL
9049 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TextAttr_SetFont",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
9050 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9051 if (SWIG_arg_fail(1)) SWIG_fail
;
9053 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
9054 if (SWIG_arg_fail(2)) SWIG_fail
;
9056 SWIG_null_ref("wxFont");
9058 if (SWIG_arg_fail(2)) SWIG_fail
;
9062 arg3
= static_cast<long >(SWIG_As_long(obj2
));
9063 if (SWIG_arg_fail(3)) SWIG_fail
;
9067 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9068 (arg1
)->SetFont((wxFont
const &)*arg2
,arg3
);
9070 wxPyEndAllowThreads(__tstate
);
9071 if (PyErr_Occurred()) SWIG_fail
;
9073 Py_INCREF(Py_None
); resultobj
= Py_None
;
9080 static PyObject
*_wrap_TextAttr_SetAlignment(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9081 PyObject
*resultobj
= NULL
;
9082 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9083 wxTextAttrAlignment arg2
;
9084 PyObject
* obj0
= 0 ;
9085 PyObject
* obj1
= 0 ;
9087 (char *) "self",(char *) "alignment", NULL
9090 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextAttr_SetAlignment",kwnames
,&obj0
,&obj1
)) goto fail
;
9091 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9092 if (SWIG_arg_fail(1)) SWIG_fail
;
9094 arg2
= static_cast<wxTextAttrAlignment
>(SWIG_As_int(obj1
));
9095 if (SWIG_arg_fail(2)) SWIG_fail
;
9098 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9099 (arg1
)->SetAlignment(arg2
);
9101 wxPyEndAllowThreads(__tstate
);
9102 if (PyErr_Occurred()) SWIG_fail
;
9104 Py_INCREF(Py_None
); resultobj
= Py_None
;
9111 static PyObject
*_wrap_TextAttr_SetTabs(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9112 PyObject
*resultobj
= NULL
;
9113 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9114 wxArrayInt
*arg2
= 0 ;
9115 bool temp2
= false ;
9116 PyObject
* obj0
= 0 ;
9117 PyObject
* obj1
= 0 ;
9119 (char *) "self",(char *) "tabs", NULL
9122 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextAttr_SetTabs",kwnames
,&obj0
,&obj1
)) goto fail
;
9123 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9124 if (SWIG_arg_fail(1)) SWIG_fail
;
9126 if (! PySequence_Check(obj1
)) {
9127 PyErr_SetString(PyExc_TypeError
, "Sequence of integers expected.");
9130 arg2
= new wxArrayInt
;
9132 int i
, len
=PySequence_Length(obj1
);
9133 for (i
=0; i
<len
; i
++) {
9134 PyObject
* item
= PySequence_GetItem(obj1
, i
);
9135 PyObject
* number
= PyNumber_Int(item
);
9136 arg2
->Add(PyInt_AS_LONG(number
));
9142 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9143 (arg1
)->SetTabs((wxArrayInt
const &)*arg2
);
9145 wxPyEndAllowThreads(__tstate
);
9146 if (PyErr_Occurred()) SWIG_fail
;
9148 Py_INCREF(Py_None
); resultobj
= Py_None
;
9150 if (temp2
) delete arg2
;
9155 if (temp2
) delete arg2
;
9161 static PyObject
*_wrap_TextAttr_SetLeftIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9162 PyObject
*resultobj
= NULL
;
9163 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9165 int arg3
= (int) 0 ;
9166 PyObject
* obj0
= 0 ;
9167 PyObject
* obj1
= 0 ;
9168 PyObject
* obj2
= 0 ;
9170 (char *) "self",(char *) "indent",(char *) "subIndent", NULL
9173 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TextAttr_SetLeftIndent",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
9174 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9175 if (SWIG_arg_fail(1)) SWIG_fail
;
9177 arg2
= static_cast<int >(SWIG_As_int(obj1
));
9178 if (SWIG_arg_fail(2)) SWIG_fail
;
9182 arg3
= static_cast<int >(SWIG_As_int(obj2
));
9183 if (SWIG_arg_fail(3)) SWIG_fail
;
9187 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9188 (arg1
)->SetLeftIndent(arg2
,arg3
);
9190 wxPyEndAllowThreads(__tstate
);
9191 if (PyErr_Occurred()) SWIG_fail
;
9193 Py_INCREF(Py_None
); resultobj
= Py_None
;
9200 static PyObject
*_wrap_TextAttr_SetRightIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9201 PyObject
*resultobj
= NULL
;
9202 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9204 PyObject
* obj0
= 0 ;
9205 PyObject
* obj1
= 0 ;
9207 (char *) "self",(char *) "indent", NULL
9210 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextAttr_SetRightIndent",kwnames
,&obj0
,&obj1
)) goto fail
;
9211 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9212 if (SWIG_arg_fail(1)) SWIG_fail
;
9214 arg2
= static_cast<int >(SWIG_As_int(obj1
));
9215 if (SWIG_arg_fail(2)) SWIG_fail
;
9218 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9219 (arg1
)->SetRightIndent(arg2
);
9221 wxPyEndAllowThreads(__tstate
);
9222 if (PyErr_Occurred()) SWIG_fail
;
9224 Py_INCREF(Py_None
); resultobj
= Py_None
;
9231 static PyObject
*_wrap_TextAttr_SetFlags(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9232 PyObject
*resultobj
= NULL
;
9233 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9235 PyObject
* obj0
= 0 ;
9236 PyObject
* obj1
= 0 ;
9238 (char *) "self",(char *) "flags", NULL
9241 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextAttr_SetFlags",kwnames
,&obj0
,&obj1
)) goto fail
;
9242 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9243 if (SWIG_arg_fail(1)) SWIG_fail
;
9245 arg2
= static_cast<long >(SWIG_As_long(obj1
));
9246 if (SWIG_arg_fail(2)) SWIG_fail
;
9249 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9250 (arg1
)->SetFlags(arg2
);
9252 wxPyEndAllowThreads(__tstate
);
9253 if (PyErr_Occurred()) SWIG_fail
;
9255 Py_INCREF(Py_None
); resultobj
= Py_None
;
9262 static PyObject
*_wrap_TextAttr_HasTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9263 PyObject
*resultobj
= NULL
;
9264 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9266 PyObject
* obj0
= 0 ;
9268 (char *) "self", NULL
9271 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_HasTextColour",kwnames
,&obj0
)) goto fail
;
9272 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9273 if (SWIG_arg_fail(1)) SWIG_fail
;
9275 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9276 result
= (bool)((wxTextAttr
const *)arg1
)->HasTextColour();
9278 wxPyEndAllowThreads(__tstate
);
9279 if (PyErr_Occurred()) SWIG_fail
;
9282 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9290 static PyObject
*_wrap_TextAttr_HasBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9291 PyObject
*resultobj
= NULL
;
9292 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9294 PyObject
* obj0
= 0 ;
9296 (char *) "self", NULL
9299 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_HasBackgroundColour",kwnames
,&obj0
)) goto fail
;
9300 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9301 if (SWIG_arg_fail(1)) SWIG_fail
;
9303 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9304 result
= (bool)((wxTextAttr
const *)arg1
)->HasBackgroundColour();
9306 wxPyEndAllowThreads(__tstate
);
9307 if (PyErr_Occurred()) SWIG_fail
;
9310 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9318 static PyObject
*_wrap_TextAttr_HasFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9319 PyObject
*resultobj
= NULL
;
9320 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9322 PyObject
* obj0
= 0 ;
9324 (char *) "self", NULL
9327 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_HasFont",kwnames
,&obj0
)) goto fail
;
9328 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9329 if (SWIG_arg_fail(1)) SWIG_fail
;
9331 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9332 result
= (bool)((wxTextAttr
const *)arg1
)->HasFont();
9334 wxPyEndAllowThreads(__tstate
);
9335 if (PyErr_Occurred()) SWIG_fail
;
9338 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9346 static PyObject
*_wrap_TextAttr_HasAlignment(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9347 PyObject
*resultobj
= NULL
;
9348 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9350 PyObject
* obj0
= 0 ;
9352 (char *) "self", NULL
9355 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_HasAlignment",kwnames
,&obj0
)) goto fail
;
9356 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9357 if (SWIG_arg_fail(1)) SWIG_fail
;
9359 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9360 result
= (bool)((wxTextAttr
const *)arg1
)->HasAlignment();
9362 wxPyEndAllowThreads(__tstate
);
9363 if (PyErr_Occurred()) SWIG_fail
;
9366 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9374 static PyObject
*_wrap_TextAttr_HasTabs(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9375 PyObject
*resultobj
= NULL
;
9376 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9378 PyObject
* obj0
= 0 ;
9380 (char *) "self", NULL
9383 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_HasTabs",kwnames
,&obj0
)) goto fail
;
9384 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9385 if (SWIG_arg_fail(1)) SWIG_fail
;
9387 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9388 result
= (bool)((wxTextAttr
const *)arg1
)->HasTabs();
9390 wxPyEndAllowThreads(__tstate
);
9391 if (PyErr_Occurred()) SWIG_fail
;
9394 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9402 static PyObject
*_wrap_TextAttr_HasLeftIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9403 PyObject
*resultobj
= NULL
;
9404 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9406 PyObject
* obj0
= 0 ;
9408 (char *) "self", NULL
9411 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_HasLeftIndent",kwnames
,&obj0
)) goto fail
;
9412 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9413 if (SWIG_arg_fail(1)) SWIG_fail
;
9415 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9416 result
= (bool)((wxTextAttr
const *)arg1
)->HasLeftIndent();
9418 wxPyEndAllowThreads(__tstate
);
9419 if (PyErr_Occurred()) SWIG_fail
;
9422 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9430 static PyObject
*_wrap_TextAttr_HasRightIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9431 PyObject
*resultobj
= NULL
;
9432 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9434 PyObject
* obj0
= 0 ;
9436 (char *) "self", NULL
9439 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_HasRightIndent",kwnames
,&obj0
)) goto fail
;
9440 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9441 if (SWIG_arg_fail(1)) SWIG_fail
;
9443 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9444 result
= (bool)((wxTextAttr
const *)arg1
)->HasRightIndent();
9446 wxPyEndAllowThreads(__tstate
);
9447 if (PyErr_Occurred()) SWIG_fail
;
9450 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9458 static PyObject
*_wrap_TextAttr_HasFlag(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9459 PyObject
*resultobj
= NULL
;
9460 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9463 PyObject
* obj0
= 0 ;
9464 PyObject
* obj1
= 0 ;
9466 (char *) "self",(char *) "flag", NULL
9469 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextAttr_HasFlag",kwnames
,&obj0
,&obj1
)) goto fail
;
9470 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9471 if (SWIG_arg_fail(1)) SWIG_fail
;
9473 arg2
= static_cast<long >(SWIG_As_long(obj1
));
9474 if (SWIG_arg_fail(2)) SWIG_fail
;
9477 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9478 result
= (bool)((wxTextAttr
const *)arg1
)->HasFlag(arg2
);
9480 wxPyEndAllowThreads(__tstate
);
9481 if (PyErr_Occurred()) SWIG_fail
;
9484 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9492 static PyObject
*_wrap_TextAttr_GetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9493 PyObject
*resultobj
= NULL
;
9494 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9496 PyObject
* obj0
= 0 ;
9498 (char *) "self", NULL
9501 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetTextColour",kwnames
,&obj0
)) goto fail
;
9502 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9503 if (SWIG_arg_fail(1)) SWIG_fail
;
9505 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9507 wxColour
const &_result_ref
= ((wxTextAttr
const *)arg1
)->GetTextColour();
9508 result
= (wxColour
*) &_result_ref
;
9511 wxPyEndAllowThreads(__tstate
);
9512 if (PyErr_Occurred()) SWIG_fail
;
9514 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxColour
, 0);
9521 static PyObject
*_wrap_TextAttr_GetBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9522 PyObject
*resultobj
= NULL
;
9523 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9525 PyObject
* obj0
= 0 ;
9527 (char *) "self", NULL
9530 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetBackgroundColour",kwnames
,&obj0
)) goto fail
;
9531 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9532 if (SWIG_arg_fail(1)) SWIG_fail
;
9534 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9536 wxColour
const &_result_ref
= ((wxTextAttr
const *)arg1
)->GetBackgroundColour();
9537 result
= (wxColour
*) &_result_ref
;
9540 wxPyEndAllowThreads(__tstate
);
9541 if (PyErr_Occurred()) SWIG_fail
;
9543 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxColour
, 0);
9550 static PyObject
*_wrap_TextAttr_GetFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9551 PyObject
*resultobj
= NULL
;
9552 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9554 PyObject
* obj0
= 0 ;
9556 (char *) "self", NULL
9559 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetFont",kwnames
,&obj0
)) goto fail
;
9560 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9561 if (SWIG_arg_fail(1)) SWIG_fail
;
9563 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9565 wxFont
const &_result_ref
= ((wxTextAttr
const *)arg1
)->GetFont();
9566 result
= (wxFont
*) &_result_ref
;
9569 wxPyEndAllowThreads(__tstate
);
9570 if (PyErr_Occurred()) SWIG_fail
;
9573 wxFont
* resultptr
= new wxFont(*result
);
9574 resultobj
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxFont
, 1);
9582 static PyObject
*_wrap_TextAttr_GetAlignment(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9583 PyObject
*resultobj
= NULL
;
9584 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9585 wxTextAttrAlignment result
;
9586 PyObject
* obj0
= 0 ;
9588 (char *) "self", NULL
9591 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetAlignment",kwnames
,&obj0
)) goto fail
;
9592 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9593 if (SWIG_arg_fail(1)) SWIG_fail
;
9595 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9596 result
= (wxTextAttrAlignment
)((wxTextAttr
const *)arg1
)->GetAlignment();
9598 wxPyEndAllowThreads(__tstate
);
9599 if (PyErr_Occurred()) SWIG_fail
;
9601 resultobj
= SWIG_From_int((result
));
9608 static PyObject
*_wrap_TextAttr_GetTabs(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9609 PyObject
*resultobj
= NULL
;
9610 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9612 PyObject
* obj0
= 0 ;
9614 (char *) "self", NULL
9617 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetTabs",kwnames
,&obj0
)) goto fail
;
9618 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9619 if (SWIG_arg_fail(1)) SWIG_fail
;
9621 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9623 wxArrayInt
const &_result_ref
= ((wxTextAttr
const *)arg1
)->GetTabs();
9624 result
= (wxArrayInt
*) &_result_ref
;
9627 wxPyEndAllowThreads(__tstate
);
9628 if (PyErr_Occurred()) SWIG_fail
;
9631 resultobj
= PyList_New(0);
9633 for (idx
= 0; idx
< result
->GetCount(); idx
+= 1) {
9634 PyObject
* val
= PyInt_FromLong( result
->Item(idx
) );
9635 PyList_Append(resultobj
, val
);
9645 static PyObject
*_wrap_TextAttr_GetLeftIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9646 PyObject
*resultobj
= NULL
;
9647 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9649 PyObject
* obj0
= 0 ;
9651 (char *) "self", NULL
9654 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetLeftIndent",kwnames
,&obj0
)) goto fail
;
9655 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9656 if (SWIG_arg_fail(1)) SWIG_fail
;
9658 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9659 result
= (long)((wxTextAttr
const *)arg1
)->GetLeftIndent();
9661 wxPyEndAllowThreads(__tstate
);
9662 if (PyErr_Occurred()) SWIG_fail
;
9665 resultobj
= SWIG_From_long(static_cast<long >(result
));
9673 static PyObject
*_wrap_TextAttr_GetLeftSubIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9674 PyObject
*resultobj
= NULL
;
9675 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9677 PyObject
* obj0
= 0 ;
9679 (char *) "self", NULL
9682 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetLeftSubIndent",kwnames
,&obj0
)) goto fail
;
9683 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9684 if (SWIG_arg_fail(1)) SWIG_fail
;
9686 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9687 result
= (long)((wxTextAttr
const *)arg1
)->GetLeftSubIndent();
9689 wxPyEndAllowThreads(__tstate
);
9690 if (PyErr_Occurred()) SWIG_fail
;
9693 resultobj
= SWIG_From_long(static_cast<long >(result
));
9701 static PyObject
*_wrap_TextAttr_GetRightIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9702 PyObject
*resultobj
= NULL
;
9703 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9705 PyObject
* obj0
= 0 ;
9707 (char *) "self", NULL
9710 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetRightIndent",kwnames
,&obj0
)) goto fail
;
9711 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9712 if (SWIG_arg_fail(1)) SWIG_fail
;
9714 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9715 result
= (long)((wxTextAttr
const *)arg1
)->GetRightIndent();
9717 wxPyEndAllowThreads(__tstate
);
9718 if (PyErr_Occurred()) SWIG_fail
;
9721 resultobj
= SWIG_From_long(static_cast<long >(result
));
9729 static PyObject
*_wrap_TextAttr_GetFlags(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9730 PyObject
*resultobj
= NULL
;
9731 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9733 PyObject
* obj0
= 0 ;
9735 (char *) "self", NULL
9738 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_GetFlags",kwnames
,&obj0
)) goto fail
;
9739 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9740 if (SWIG_arg_fail(1)) SWIG_fail
;
9742 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9743 result
= (long)((wxTextAttr
const *)arg1
)->GetFlags();
9745 wxPyEndAllowThreads(__tstate
);
9746 if (PyErr_Occurred()) SWIG_fail
;
9749 resultobj
= SWIG_From_long(static_cast<long >(result
));
9757 static PyObject
*_wrap_TextAttr_IsDefault(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9758 PyObject
*resultobj
= NULL
;
9759 wxTextAttr
*arg1
= (wxTextAttr
*) 0 ;
9761 PyObject
* obj0
= 0 ;
9763 (char *) "self", NULL
9766 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextAttr_IsDefault",kwnames
,&obj0
)) goto fail
;
9767 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9768 if (SWIG_arg_fail(1)) SWIG_fail
;
9770 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9771 result
= (bool)((wxTextAttr
const *)arg1
)->IsDefault();
9773 wxPyEndAllowThreads(__tstate
);
9774 if (PyErr_Occurred()) SWIG_fail
;
9777 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9785 static PyObject
*_wrap_TextAttr_Combine(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9786 PyObject
*resultobj
= NULL
;
9787 wxTextAttr
*arg1
= 0 ;
9788 wxTextAttr
*arg2
= 0 ;
9789 wxTextCtrl
*arg3
= (wxTextCtrl
*) 0 ;
9791 PyObject
* obj0
= 0 ;
9792 PyObject
* obj1
= 0 ;
9793 PyObject
* obj2
= 0 ;
9795 (char *) "attr",(char *) "attrDef",(char *) "text", NULL
9798 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextAttr_Combine",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
9800 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9801 if (SWIG_arg_fail(1)) SWIG_fail
;
9803 SWIG_null_ref("wxTextAttr");
9805 if (SWIG_arg_fail(1)) SWIG_fail
;
9808 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
9809 if (SWIG_arg_fail(2)) SWIG_fail
;
9811 SWIG_null_ref("wxTextAttr");
9813 if (SWIG_arg_fail(2)) SWIG_fail
;
9815 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
9816 if (SWIG_arg_fail(3)) SWIG_fail
;
9818 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9819 result
= wxTextAttr::Combine((wxTextAttr
const &)*arg1
,(wxTextAttr
const &)*arg2
,(wxTextCtrl
const *)arg3
);
9821 wxPyEndAllowThreads(__tstate
);
9822 if (PyErr_Occurred()) SWIG_fail
;
9825 wxTextAttr
* resultptr
;
9826 resultptr
= new wxTextAttr(static_cast<wxTextAttr
& >(result
));
9827 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTextAttr
, 1);
9835 static PyObject
* TextAttr_swigregister(PyObject
*, PyObject
*args
) {
9837 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
9838 SWIG_TypeClientData(SWIGTYPE_p_wxTextAttr
, obj
);
9840 return Py_BuildValue((char *)"");
9842 static PyObject
*_wrap_new_TextCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9843 PyObject
*resultobj
= NULL
;
9844 wxWindow
*arg1
= (wxWindow
*) 0 ;
9845 int arg2
= (int) -1 ;
9846 wxString
const &arg3_defvalue
= wxPyEmptyString
;
9847 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
9848 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
9849 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
9850 wxSize
const &arg5_defvalue
= wxDefaultSize
;
9851 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
9852 long arg6
= (long) 0 ;
9853 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
9854 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
9855 wxString
const &arg8_defvalue
= wxPyTextCtrlNameStr
;
9856 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
9858 bool temp3
= false ;
9861 bool temp8
= false ;
9862 PyObject
* obj0
= 0 ;
9863 PyObject
* obj1
= 0 ;
9864 PyObject
* obj2
= 0 ;
9865 PyObject
* obj3
= 0 ;
9866 PyObject
* obj4
= 0 ;
9867 PyObject
* obj5
= 0 ;
9868 PyObject
* obj6
= 0 ;
9869 PyObject
* obj7
= 0 ;
9871 (char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
9874 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_TextCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
9875 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
9876 if (SWIG_arg_fail(1)) SWIG_fail
;
9879 arg2
= static_cast<int >(SWIG_As_int(obj1
));
9880 if (SWIG_arg_fail(2)) SWIG_fail
;
9885 arg3
= wxString_in_helper(obj2
);
9886 if (arg3
== NULL
) SWIG_fail
;
9893 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
9899 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
9904 arg6
= static_cast<long >(SWIG_As_long(obj5
));
9905 if (SWIG_arg_fail(6)) SWIG_fail
;
9910 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
9911 if (SWIG_arg_fail(7)) SWIG_fail
;
9913 SWIG_null_ref("wxValidator");
9915 if (SWIG_arg_fail(7)) SWIG_fail
;
9920 arg8
= wxString_in_helper(obj7
);
9921 if (arg8
== NULL
) SWIG_fail
;
9926 if (!wxPyCheckForApp()) SWIG_fail
;
9927 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9928 result
= (wxTextCtrl
*)new wxTextCtrl(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
9930 wxPyEndAllowThreads(__tstate
);
9931 if (PyErr_Occurred()) SWIG_fail
;
9933 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTextCtrl
, 1);
9956 static PyObject
*_wrap_new_PreTextCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9957 PyObject
*resultobj
= NULL
;
9963 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreTextCtrl",kwnames
)) goto fail
;
9965 if (!wxPyCheckForApp()) SWIG_fail
;
9966 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9967 result
= (wxTextCtrl
*)new wxTextCtrl();
9969 wxPyEndAllowThreads(__tstate
);
9970 if (PyErr_Occurred()) SWIG_fail
;
9972 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTextCtrl
, 1);
9979 static PyObject
*_wrap_TextCtrl_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
9980 PyObject
*resultobj
= NULL
;
9981 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
9982 wxWindow
*arg2
= (wxWindow
*) 0 ;
9983 int arg3
= (int) -1 ;
9984 wxString
const &arg4_defvalue
= wxPyEmptyString
;
9985 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
9986 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
9987 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
9988 wxSize
const &arg6_defvalue
= wxDefaultSize
;
9989 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
9990 long arg7
= (long) 0 ;
9991 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
9992 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
9993 wxString
const &arg9_defvalue
= wxPyTextCtrlNameStr
;
9994 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
9996 bool temp4
= false ;
9999 bool temp9
= false ;
10000 PyObject
* obj0
= 0 ;
10001 PyObject
* obj1
= 0 ;
10002 PyObject
* obj2
= 0 ;
10003 PyObject
* obj3
= 0 ;
10004 PyObject
* obj4
= 0 ;
10005 PyObject
* obj5
= 0 ;
10006 PyObject
* obj6
= 0 ;
10007 PyObject
* obj7
= 0 ;
10008 PyObject
* obj8
= 0 ;
10009 char *kwnames
[] = {
10010 (char *) "self",(char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
10013 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:TextCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
10014 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10015 if (SWIG_arg_fail(1)) SWIG_fail
;
10016 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
10017 if (SWIG_arg_fail(2)) SWIG_fail
;
10020 arg3
= static_cast<int >(SWIG_As_int(obj2
));
10021 if (SWIG_arg_fail(3)) SWIG_fail
;
10026 arg4
= wxString_in_helper(obj3
);
10027 if (arg4
== NULL
) SWIG_fail
;
10034 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
10040 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
10045 arg7
= static_cast<long >(SWIG_As_long(obj6
));
10046 if (SWIG_arg_fail(7)) SWIG_fail
;
10051 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
10052 if (SWIG_arg_fail(8)) SWIG_fail
;
10053 if (arg8
== NULL
) {
10054 SWIG_null_ref("wxValidator");
10056 if (SWIG_arg_fail(8)) SWIG_fail
;
10061 arg9
= wxString_in_helper(obj8
);
10062 if (arg9
== NULL
) SWIG_fail
;
10067 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10068 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
10070 wxPyEndAllowThreads(__tstate
);
10071 if (PyErr_Occurred()) SWIG_fail
;
10074 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10098 static PyObject
*_wrap_TextCtrl_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10099 PyObject
*resultobj
= NULL
;
10100 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10102 PyObject
* obj0
= 0 ;
10103 char *kwnames
[] = {
10104 (char *) "self", NULL
10107 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_GetValue",kwnames
,&obj0
)) goto fail
;
10108 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10109 if (SWIG_arg_fail(1)) SWIG_fail
;
10111 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10112 result
= ((wxTextCtrl
const *)arg1
)->GetValue();
10114 wxPyEndAllowThreads(__tstate
);
10115 if (PyErr_Occurred()) SWIG_fail
;
10119 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
10121 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
10130 static PyObject
*_wrap_TextCtrl_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10131 PyObject
*resultobj
= NULL
;
10132 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10133 wxString
*arg2
= 0 ;
10134 bool temp2
= false ;
10135 PyObject
* obj0
= 0 ;
10136 PyObject
* obj1
= 0 ;
10137 char *kwnames
[] = {
10138 (char *) "self",(char *) "value", NULL
10141 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
10142 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10143 if (SWIG_arg_fail(1)) SWIG_fail
;
10145 arg2
= wxString_in_helper(obj1
);
10146 if (arg2
== NULL
) SWIG_fail
;
10150 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10151 (arg1
)->SetValue((wxString
const &)*arg2
);
10153 wxPyEndAllowThreads(__tstate
);
10154 if (PyErr_Occurred()) SWIG_fail
;
10156 Py_INCREF(Py_None
); resultobj
= Py_None
;
10171 static PyObject
*_wrap_TextCtrl_GetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10172 PyObject
*resultobj
= NULL
;
10173 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10177 PyObject
* obj0
= 0 ;
10178 PyObject
* obj1
= 0 ;
10179 PyObject
* obj2
= 0 ;
10180 char *kwnames
[] = {
10181 (char *) "self",(char *) "from",(char *) "to", NULL
10184 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextCtrl_GetRange",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
10185 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10186 if (SWIG_arg_fail(1)) SWIG_fail
;
10188 arg2
= static_cast<long >(SWIG_As_long(obj1
));
10189 if (SWIG_arg_fail(2)) SWIG_fail
;
10192 arg3
= static_cast<long >(SWIG_As_long(obj2
));
10193 if (SWIG_arg_fail(3)) SWIG_fail
;
10196 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10197 result
= ((wxTextCtrl
const *)arg1
)->GetRange(arg2
,arg3
);
10199 wxPyEndAllowThreads(__tstate
);
10200 if (PyErr_Occurred()) SWIG_fail
;
10204 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
10206 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
10215 static PyObject
*_wrap_TextCtrl_GetLineLength(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10216 PyObject
*resultobj
= NULL
;
10217 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10220 PyObject
* obj0
= 0 ;
10221 PyObject
* obj1
= 0 ;
10222 char *kwnames
[] = {
10223 (char *) "self",(char *) "lineNo", NULL
10226 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_GetLineLength",kwnames
,&obj0
,&obj1
)) goto fail
;
10227 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10228 if (SWIG_arg_fail(1)) SWIG_fail
;
10230 arg2
= static_cast<long >(SWIG_As_long(obj1
));
10231 if (SWIG_arg_fail(2)) SWIG_fail
;
10234 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10235 result
= (int)((wxTextCtrl
const *)arg1
)->GetLineLength(arg2
);
10237 wxPyEndAllowThreads(__tstate
);
10238 if (PyErr_Occurred()) SWIG_fail
;
10241 resultobj
= SWIG_From_int(static_cast<int >(result
));
10249 static PyObject
*_wrap_TextCtrl_GetLineText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10250 PyObject
*resultobj
= NULL
;
10251 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10254 PyObject
* obj0
= 0 ;
10255 PyObject
* obj1
= 0 ;
10256 char *kwnames
[] = {
10257 (char *) "self",(char *) "lineNo", NULL
10260 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_GetLineText",kwnames
,&obj0
,&obj1
)) goto fail
;
10261 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10262 if (SWIG_arg_fail(1)) SWIG_fail
;
10264 arg2
= static_cast<long >(SWIG_As_long(obj1
));
10265 if (SWIG_arg_fail(2)) SWIG_fail
;
10268 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10269 result
= ((wxTextCtrl
const *)arg1
)->GetLineText(arg2
);
10271 wxPyEndAllowThreads(__tstate
);
10272 if (PyErr_Occurred()) SWIG_fail
;
10276 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
10278 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
10287 static PyObject
*_wrap_TextCtrl_GetNumberOfLines(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10288 PyObject
*resultobj
= NULL
;
10289 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10291 PyObject
* obj0
= 0 ;
10292 char *kwnames
[] = {
10293 (char *) "self", NULL
10296 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_GetNumberOfLines",kwnames
,&obj0
)) goto fail
;
10297 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10298 if (SWIG_arg_fail(1)) SWIG_fail
;
10300 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10301 result
= (int)((wxTextCtrl
const *)arg1
)->GetNumberOfLines();
10303 wxPyEndAllowThreads(__tstate
);
10304 if (PyErr_Occurred()) SWIG_fail
;
10307 resultobj
= SWIG_From_int(static_cast<int >(result
));
10315 static PyObject
*_wrap_TextCtrl_IsModified(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10316 PyObject
*resultobj
= NULL
;
10317 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10319 PyObject
* obj0
= 0 ;
10320 char *kwnames
[] = {
10321 (char *) "self", NULL
10324 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_IsModified",kwnames
,&obj0
)) goto fail
;
10325 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10326 if (SWIG_arg_fail(1)) SWIG_fail
;
10328 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10329 result
= (bool)((wxTextCtrl
const *)arg1
)->IsModified();
10331 wxPyEndAllowThreads(__tstate
);
10332 if (PyErr_Occurred()) SWIG_fail
;
10335 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10343 static PyObject
*_wrap_TextCtrl_IsEditable(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10344 PyObject
*resultobj
= NULL
;
10345 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10347 PyObject
* obj0
= 0 ;
10348 char *kwnames
[] = {
10349 (char *) "self", NULL
10352 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_IsEditable",kwnames
,&obj0
)) goto fail
;
10353 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10354 if (SWIG_arg_fail(1)) SWIG_fail
;
10356 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10357 result
= (bool)((wxTextCtrl
const *)arg1
)->IsEditable();
10359 wxPyEndAllowThreads(__tstate
);
10360 if (PyErr_Occurred()) SWIG_fail
;
10363 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10371 static PyObject
*_wrap_TextCtrl_IsSingleLine(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10372 PyObject
*resultobj
= NULL
;
10373 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10375 PyObject
* obj0
= 0 ;
10376 char *kwnames
[] = {
10377 (char *) "self", NULL
10380 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_IsSingleLine",kwnames
,&obj0
)) goto fail
;
10381 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10382 if (SWIG_arg_fail(1)) SWIG_fail
;
10384 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10385 result
= (bool)((wxTextCtrl
const *)arg1
)->IsSingleLine();
10387 wxPyEndAllowThreads(__tstate
);
10388 if (PyErr_Occurred()) SWIG_fail
;
10391 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10399 static PyObject
*_wrap_TextCtrl_IsMultiLine(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10400 PyObject
*resultobj
= NULL
;
10401 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10403 PyObject
* obj0
= 0 ;
10404 char *kwnames
[] = {
10405 (char *) "self", NULL
10408 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_IsMultiLine",kwnames
,&obj0
)) goto fail
;
10409 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10410 if (SWIG_arg_fail(1)) SWIG_fail
;
10412 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10413 result
= (bool)((wxTextCtrl
const *)arg1
)->IsMultiLine();
10415 wxPyEndAllowThreads(__tstate
);
10416 if (PyErr_Occurred()) SWIG_fail
;
10419 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10427 static PyObject
*_wrap_TextCtrl_GetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10428 PyObject
*resultobj
= NULL
;
10429 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10430 long *arg2
= (long *) 0 ;
10431 long *arg3
= (long *) 0 ;
10436 PyObject
* obj0
= 0 ;
10437 char *kwnames
[] = {
10438 (char *) "self", NULL
10441 arg2
= &temp2
; res2
= SWIG_NEWOBJ
;
10442 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
10443 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_GetSelection",kwnames
,&obj0
)) goto fail
;
10444 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10445 if (SWIG_arg_fail(1)) SWIG_fail
;
10447 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10448 ((wxTextCtrl
const *)arg1
)->GetSelection(arg2
,arg3
);
10450 wxPyEndAllowThreads(__tstate
);
10451 if (PyErr_Occurred()) SWIG_fail
;
10453 Py_INCREF(Py_None
); resultobj
= Py_None
;
10454 resultobj
= t_output_helper(resultobj
, ((res2
== SWIG_NEWOBJ
) ?
10455 SWIG_From_long((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_long
, 0)));
10456 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
10457 SWIG_From_long((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_long
, 0)));
10464 static PyObject
*_wrap_TextCtrl_GetStringSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10465 PyObject
*resultobj
= NULL
;
10466 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10468 PyObject
* obj0
= 0 ;
10469 char *kwnames
[] = {
10470 (char *) "self", NULL
10473 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_GetStringSelection",kwnames
,&obj0
)) goto fail
;
10474 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10475 if (SWIG_arg_fail(1)) SWIG_fail
;
10477 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10478 result
= ((wxTextCtrl
const *)arg1
)->GetStringSelection();
10480 wxPyEndAllowThreads(__tstate
);
10481 if (PyErr_Occurred()) SWIG_fail
;
10485 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
10487 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
10496 static PyObject
*_wrap_TextCtrl_Clear(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10497 PyObject
*resultobj
= NULL
;
10498 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10499 PyObject
* obj0
= 0 ;
10500 char *kwnames
[] = {
10501 (char *) "self", NULL
10504 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_Clear",kwnames
,&obj0
)) goto fail
;
10505 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10506 if (SWIG_arg_fail(1)) SWIG_fail
;
10508 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10511 wxPyEndAllowThreads(__tstate
);
10512 if (PyErr_Occurred()) SWIG_fail
;
10514 Py_INCREF(Py_None
); resultobj
= Py_None
;
10521 static PyObject
*_wrap_TextCtrl_Replace(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10522 PyObject
*resultobj
= NULL
;
10523 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10526 wxString
*arg4
= 0 ;
10527 bool temp4
= false ;
10528 PyObject
* obj0
= 0 ;
10529 PyObject
* obj1
= 0 ;
10530 PyObject
* obj2
= 0 ;
10531 PyObject
* obj3
= 0 ;
10532 char *kwnames
[] = {
10533 (char *) "self",(char *) "from",(char *) "to",(char *) "value", NULL
10536 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:TextCtrl_Replace",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
10537 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10538 if (SWIG_arg_fail(1)) SWIG_fail
;
10540 arg2
= static_cast<long >(SWIG_As_long(obj1
));
10541 if (SWIG_arg_fail(2)) SWIG_fail
;
10544 arg3
= static_cast<long >(SWIG_As_long(obj2
));
10545 if (SWIG_arg_fail(3)) SWIG_fail
;
10548 arg4
= wxString_in_helper(obj3
);
10549 if (arg4
== NULL
) SWIG_fail
;
10553 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10554 (arg1
)->Replace(arg2
,arg3
,(wxString
const &)*arg4
);
10556 wxPyEndAllowThreads(__tstate
);
10557 if (PyErr_Occurred()) SWIG_fail
;
10559 Py_INCREF(Py_None
); resultobj
= Py_None
;
10574 static PyObject
*_wrap_TextCtrl_Remove(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10575 PyObject
*resultobj
= NULL
;
10576 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10579 PyObject
* obj0
= 0 ;
10580 PyObject
* obj1
= 0 ;
10581 PyObject
* obj2
= 0 ;
10582 char *kwnames
[] = {
10583 (char *) "self",(char *) "from",(char *) "to", NULL
10586 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextCtrl_Remove",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
10587 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10588 if (SWIG_arg_fail(1)) SWIG_fail
;
10590 arg2
= static_cast<long >(SWIG_As_long(obj1
));
10591 if (SWIG_arg_fail(2)) SWIG_fail
;
10594 arg3
= static_cast<long >(SWIG_As_long(obj2
));
10595 if (SWIG_arg_fail(3)) SWIG_fail
;
10598 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10599 (arg1
)->Remove(arg2
,arg3
);
10601 wxPyEndAllowThreads(__tstate
);
10602 if (PyErr_Occurred()) SWIG_fail
;
10604 Py_INCREF(Py_None
); resultobj
= Py_None
;
10611 static PyObject
*_wrap_TextCtrl_LoadFile(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10612 PyObject
*resultobj
= NULL
;
10613 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10614 wxString
*arg2
= 0 ;
10616 bool temp2
= false ;
10617 PyObject
* obj0
= 0 ;
10618 PyObject
* obj1
= 0 ;
10619 char *kwnames
[] = {
10620 (char *) "self",(char *) "file", NULL
10623 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_LoadFile",kwnames
,&obj0
,&obj1
)) goto fail
;
10624 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10625 if (SWIG_arg_fail(1)) SWIG_fail
;
10627 arg2
= wxString_in_helper(obj1
);
10628 if (arg2
== NULL
) SWIG_fail
;
10632 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10633 result
= (bool)(arg1
)->LoadFile((wxString
const &)*arg2
);
10635 wxPyEndAllowThreads(__tstate
);
10636 if (PyErr_Occurred()) SWIG_fail
;
10639 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10655 static PyObject
*_wrap_TextCtrl_SaveFile(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10656 PyObject
*resultobj
= NULL
;
10657 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10658 wxString
const &arg2_defvalue
= wxPyEmptyString
;
10659 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
10661 bool temp2
= false ;
10662 PyObject
* obj0
= 0 ;
10663 PyObject
* obj1
= 0 ;
10664 char *kwnames
[] = {
10665 (char *) "self",(char *) "file", NULL
10668 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:TextCtrl_SaveFile",kwnames
,&obj0
,&obj1
)) goto fail
;
10669 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10670 if (SWIG_arg_fail(1)) SWIG_fail
;
10673 arg2
= wxString_in_helper(obj1
);
10674 if (arg2
== NULL
) SWIG_fail
;
10679 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10680 result
= (bool)(arg1
)->SaveFile((wxString
const &)*arg2
);
10682 wxPyEndAllowThreads(__tstate
);
10683 if (PyErr_Occurred()) SWIG_fail
;
10686 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10702 static PyObject
*_wrap_TextCtrl_MarkDirty(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10703 PyObject
*resultobj
= NULL
;
10704 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10705 PyObject
* obj0
= 0 ;
10706 char *kwnames
[] = {
10707 (char *) "self", NULL
10710 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_MarkDirty",kwnames
,&obj0
)) goto fail
;
10711 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10712 if (SWIG_arg_fail(1)) SWIG_fail
;
10714 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10715 (arg1
)->MarkDirty();
10717 wxPyEndAllowThreads(__tstate
);
10718 if (PyErr_Occurred()) SWIG_fail
;
10720 Py_INCREF(Py_None
); resultobj
= Py_None
;
10727 static PyObject
*_wrap_TextCtrl_DiscardEdits(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10728 PyObject
*resultobj
= NULL
;
10729 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10730 PyObject
* obj0
= 0 ;
10731 char *kwnames
[] = {
10732 (char *) "self", NULL
10735 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_DiscardEdits",kwnames
,&obj0
)) goto fail
;
10736 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10737 if (SWIG_arg_fail(1)) SWIG_fail
;
10739 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10740 (arg1
)->DiscardEdits();
10742 wxPyEndAllowThreads(__tstate
);
10743 if (PyErr_Occurred()) SWIG_fail
;
10745 Py_INCREF(Py_None
); resultobj
= Py_None
;
10752 static PyObject
*_wrap_TextCtrl_SetMaxLength(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10753 PyObject
*resultobj
= NULL
;
10754 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10755 unsigned long arg2
;
10756 PyObject
* obj0
= 0 ;
10757 PyObject
* obj1
= 0 ;
10758 char *kwnames
[] = {
10759 (char *) "self",(char *) "len", NULL
10762 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_SetMaxLength",kwnames
,&obj0
,&obj1
)) goto fail
;
10763 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10764 if (SWIG_arg_fail(1)) SWIG_fail
;
10766 arg2
= static_cast<unsigned long >(SWIG_As_unsigned_SS_long(obj1
));
10767 if (SWIG_arg_fail(2)) SWIG_fail
;
10770 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10771 (arg1
)->SetMaxLength(arg2
);
10773 wxPyEndAllowThreads(__tstate
);
10774 if (PyErr_Occurred()) SWIG_fail
;
10776 Py_INCREF(Py_None
); resultobj
= Py_None
;
10783 static PyObject
*_wrap_TextCtrl_WriteText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10784 PyObject
*resultobj
= NULL
;
10785 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10786 wxString
*arg2
= 0 ;
10787 bool temp2
= false ;
10788 PyObject
* obj0
= 0 ;
10789 PyObject
* obj1
= 0 ;
10790 char *kwnames
[] = {
10791 (char *) "self",(char *) "text", NULL
10794 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_WriteText",kwnames
,&obj0
,&obj1
)) goto fail
;
10795 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10796 if (SWIG_arg_fail(1)) SWIG_fail
;
10798 arg2
= wxString_in_helper(obj1
);
10799 if (arg2
== NULL
) SWIG_fail
;
10803 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10804 (arg1
)->WriteText((wxString
const &)*arg2
);
10806 wxPyEndAllowThreads(__tstate
);
10807 if (PyErr_Occurred()) SWIG_fail
;
10809 Py_INCREF(Py_None
); resultobj
= Py_None
;
10824 static PyObject
*_wrap_TextCtrl_AppendText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10825 PyObject
*resultobj
= NULL
;
10826 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10827 wxString
*arg2
= 0 ;
10828 bool temp2
= false ;
10829 PyObject
* obj0
= 0 ;
10830 PyObject
* obj1
= 0 ;
10831 char *kwnames
[] = {
10832 (char *) "self",(char *) "text", NULL
10835 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_AppendText",kwnames
,&obj0
,&obj1
)) goto fail
;
10836 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10837 if (SWIG_arg_fail(1)) SWIG_fail
;
10839 arg2
= wxString_in_helper(obj1
);
10840 if (arg2
== NULL
) SWIG_fail
;
10844 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10845 (arg1
)->AppendText((wxString
const &)*arg2
);
10847 wxPyEndAllowThreads(__tstate
);
10848 if (PyErr_Occurred()) SWIG_fail
;
10850 Py_INCREF(Py_None
); resultobj
= Py_None
;
10865 static PyObject
*_wrap_TextCtrl_EmulateKeyPress(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10866 PyObject
*resultobj
= NULL
;
10867 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10868 wxKeyEvent
*arg2
= 0 ;
10870 PyObject
* obj0
= 0 ;
10871 PyObject
* obj1
= 0 ;
10872 char *kwnames
[] = {
10873 (char *) "self",(char *) "event", NULL
10876 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_EmulateKeyPress",kwnames
,&obj0
,&obj1
)) goto fail
;
10877 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10878 if (SWIG_arg_fail(1)) SWIG_fail
;
10880 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxKeyEvent
, SWIG_POINTER_EXCEPTION
| 0);
10881 if (SWIG_arg_fail(2)) SWIG_fail
;
10882 if (arg2
== NULL
) {
10883 SWIG_null_ref("wxKeyEvent");
10885 if (SWIG_arg_fail(2)) SWIG_fail
;
10888 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10889 result
= (bool)(arg1
)->EmulateKeyPress((wxKeyEvent
const &)*arg2
);
10891 wxPyEndAllowThreads(__tstate
);
10892 if (PyErr_Occurred()) SWIG_fail
;
10895 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10903 static PyObject
*_wrap_TextCtrl_SetStyle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10904 PyObject
*resultobj
= NULL
;
10905 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10908 wxTextAttr
*arg4
= 0 ;
10910 PyObject
* obj0
= 0 ;
10911 PyObject
* obj1
= 0 ;
10912 PyObject
* obj2
= 0 ;
10913 PyObject
* obj3
= 0 ;
10914 char *kwnames
[] = {
10915 (char *) "self",(char *) "start",(char *) "end",(char *) "style", NULL
10918 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:TextCtrl_SetStyle",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
10919 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10920 if (SWIG_arg_fail(1)) SWIG_fail
;
10922 arg2
= static_cast<long >(SWIG_As_long(obj1
));
10923 if (SWIG_arg_fail(2)) SWIG_fail
;
10926 arg3
= static_cast<long >(SWIG_As_long(obj2
));
10927 if (SWIG_arg_fail(3)) SWIG_fail
;
10930 SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
10931 if (SWIG_arg_fail(4)) SWIG_fail
;
10932 if (arg4
== NULL
) {
10933 SWIG_null_ref("wxTextAttr");
10935 if (SWIG_arg_fail(4)) SWIG_fail
;
10938 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10939 result
= (bool)(arg1
)->SetStyle(arg2
,arg3
,(wxTextAttr
const &)*arg4
);
10941 wxPyEndAllowThreads(__tstate
);
10942 if (PyErr_Occurred()) SWIG_fail
;
10945 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10953 static PyObject
*_wrap_TextCtrl_GetStyle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10954 PyObject
*resultobj
= NULL
;
10955 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
10957 wxTextAttr
*arg3
= 0 ;
10959 PyObject
* obj0
= 0 ;
10960 PyObject
* obj1
= 0 ;
10961 PyObject
* obj2
= 0 ;
10962 char *kwnames
[] = {
10963 (char *) "self",(char *) "position",(char *) "style", NULL
10966 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextCtrl_GetStyle",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
10967 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
10968 if (SWIG_arg_fail(1)) SWIG_fail
;
10970 arg2
= static_cast<long >(SWIG_As_long(obj1
));
10971 if (SWIG_arg_fail(2)) SWIG_fail
;
10974 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
10975 if (SWIG_arg_fail(3)) SWIG_fail
;
10976 if (arg3
== NULL
) {
10977 SWIG_null_ref("wxTextAttr");
10979 if (SWIG_arg_fail(3)) SWIG_fail
;
10982 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10983 result
= (bool)(arg1
)->GetStyle(arg2
,*arg3
);
10985 wxPyEndAllowThreads(__tstate
);
10986 if (PyErr_Occurred()) SWIG_fail
;
10989 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10997 static PyObject
*_wrap_TextCtrl_SetDefaultStyle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
10998 PyObject
*resultobj
= NULL
;
10999 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11000 wxTextAttr
*arg2
= 0 ;
11002 PyObject
* obj0
= 0 ;
11003 PyObject
* obj1
= 0 ;
11004 char *kwnames
[] = {
11005 (char *) "self",(char *) "style", NULL
11008 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_SetDefaultStyle",kwnames
,&obj0
,&obj1
)) goto fail
;
11009 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11010 if (SWIG_arg_fail(1)) SWIG_fail
;
11012 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTextAttr
, SWIG_POINTER_EXCEPTION
| 0);
11013 if (SWIG_arg_fail(2)) SWIG_fail
;
11014 if (arg2
== NULL
) {
11015 SWIG_null_ref("wxTextAttr");
11017 if (SWIG_arg_fail(2)) SWIG_fail
;
11020 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11021 result
= (bool)(arg1
)->SetDefaultStyle((wxTextAttr
const &)*arg2
);
11023 wxPyEndAllowThreads(__tstate
);
11024 if (PyErr_Occurred()) SWIG_fail
;
11027 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11035 static PyObject
*_wrap_TextCtrl_GetDefaultStyle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11036 PyObject
*resultobj
= NULL
;
11037 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11038 wxTextAttr
*result
;
11039 PyObject
* obj0
= 0 ;
11040 char *kwnames
[] = {
11041 (char *) "self", NULL
11044 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_GetDefaultStyle",kwnames
,&obj0
)) goto fail
;
11045 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11046 if (SWIG_arg_fail(1)) SWIG_fail
;
11048 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11050 wxTextAttr
const &_result_ref
= ((wxTextCtrl
const *)arg1
)->GetDefaultStyle();
11051 result
= (wxTextAttr
*) &_result_ref
;
11054 wxPyEndAllowThreads(__tstate
);
11055 if (PyErr_Occurred()) SWIG_fail
;
11057 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTextAttr
, 0);
11064 static PyObject
*_wrap_TextCtrl_XYToPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11065 PyObject
*resultobj
= NULL
;
11066 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11070 PyObject
* obj0
= 0 ;
11071 PyObject
* obj1
= 0 ;
11072 PyObject
* obj2
= 0 ;
11073 char *kwnames
[] = {
11074 (char *) "self",(char *) "x",(char *) "y", NULL
11077 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextCtrl_XYToPosition",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
11078 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11079 if (SWIG_arg_fail(1)) SWIG_fail
;
11081 arg2
= static_cast<long >(SWIG_As_long(obj1
));
11082 if (SWIG_arg_fail(2)) SWIG_fail
;
11085 arg3
= static_cast<long >(SWIG_As_long(obj2
));
11086 if (SWIG_arg_fail(3)) SWIG_fail
;
11089 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11090 result
= (long)((wxTextCtrl
const *)arg1
)->XYToPosition(arg2
,arg3
);
11092 wxPyEndAllowThreads(__tstate
);
11093 if (PyErr_Occurred()) SWIG_fail
;
11096 resultobj
= SWIG_From_long(static_cast<long >(result
));
11104 static PyObject
*_wrap_TextCtrl_PositionToXY(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11105 PyObject
*resultobj
= NULL
;
11106 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11108 long *arg3
= (long *) 0 ;
11109 long *arg4
= (long *) 0 ;
11114 PyObject
* obj0
= 0 ;
11115 PyObject
* obj1
= 0 ;
11116 char *kwnames
[] = {
11117 (char *) "self",(char *) "pos", NULL
11120 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
11121 arg4
= &temp4
; res4
= SWIG_NEWOBJ
;
11122 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_PositionToXY",kwnames
,&obj0
,&obj1
)) goto fail
;
11123 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11124 if (SWIG_arg_fail(1)) SWIG_fail
;
11126 arg2
= static_cast<long >(SWIG_As_long(obj1
));
11127 if (SWIG_arg_fail(2)) SWIG_fail
;
11130 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11131 ((wxTextCtrl
const *)arg1
)->PositionToXY(arg2
,arg3
,arg4
);
11133 wxPyEndAllowThreads(__tstate
);
11134 if (PyErr_Occurred()) SWIG_fail
;
11136 Py_INCREF(Py_None
); resultobj
= Py_None
;
11137 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
11138 SWIG_From_long((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_long
, 0)));
11139 resultobj
= t_output_helper(resultobj
, ((res4
== SWIG_NEWOBJ
) ?
11140 SWIG_From_long((*arg4
)) : SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_long
, 0)));
11147 static PyObject
*_wrap_TextCtrl_ShowPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11148 PyObject
*resultobj
= NULL
;
11149 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11151 PyObject
* obj0
= 0 ;
11152 PyObject
* obj1
= 0 ;
11153 char *kwnames
[] = {
11154 (char *) "self",(char *) "pos", NULL
11157 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_ShowPosition",kwnames
,&obj0
,&obj1
)) goto fail
;
11158 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11159 if (SWIG_arg_fail(1)) SWIG_fail
;
11161 arg2
= static_cast<long >(SWIG_As_long(obj1
));
11162 if (SWIG_arg_fail(2)) SWIG_fail
;
11165 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11166 (arg1
)->ShowPosition(arg2
);
11168 wxPyEndAllowThreads(__tstate
);
11169 if (PyErr_Occurred()) SWIG_fail
;
11171 Py_INCREF(Py_None
); resultobj
= Py_None
;
11178 static PyObject
*_wrap_TextCtrl_HitTest(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11179 PyObject
*resultobj
= NULL
;
11180 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11181 wxPoint
*arg2
= 0 ;
11182 long *arg3
= (long *) 0 ;
11183 long *arg4
= (long *) 0 ;
11184 wxTextCtrlHitTestResult result
;
11190 PyObject
* obj0
= 0 ;
11191 PyObject
* obj1
= 0 ;
11192 char *kwnames
[] = {
11193 (char *) "self",(char *) "pt", NULL
11196 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
11197 arg4
= &temp4
; res4
= SWIG_NEWOBJ
;
11198 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_HitTest",kwnames
,&obj0
,&obj1
)) goto fail
;
11199 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11200 if (SWIG_arg_fail(1)) SWIG_fail
;
11203 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
11206 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11207 result
= (wxTextCtrlHitTestResult
)((wxTextCtrl
const *)arg1
)->HitTest((wxPoint
const &)*arg2
,arg3
,arg4
);
11209 wxPyEndAllowThreads(__tstate
);
11210 if (PyErr_Occurred()) SWIG_fail
;
11212 resultobj
= SWIG_From_int((result
));
11213 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
11214 SWIG_From_long((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_long
, 0)));
11215 resultobj
= t_output_helper(resultobj
, ((res4
== SWIG_NEWOBJ
) ?
11216 SWIG_From_long((*arg4
)) : SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_long
, 0)));
11223 static PyObject
*_wrap_TextCtrl_HitTestPos(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11224 PyObject
*resultobj
= NULL
;
11225 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11226 wxPoint
*arg2
= 0 ;
11227 long *arg3
= (long *) 0 ;
11228 wxTextCtrlHitTestResult result
;
11232 PyObject
* obj0
= 0 ;
11233 PyObject
* obj1
= 0 ;
11234 char *kwnames
[] = {
11235 (char *) "self",(char *) "pt", NULL
11238 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
11239 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_HitTestPos",kwnames
,&obj0
,&obj1
)) goto fail
;
11240 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11241 if (SWIG_arg_fail(1)) SWIG_fail
;
11244 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
11247 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11248 result
= (wxTextCtrlHitTestResult
)((wxTextCtrl
const *)arg1
)->HitTest((wxPoint
const &)*arg2
,arg3
);
11250 wxPyEndAllowThreads(__tstate
);
11251 if (PyErr_Occurred()) SWIG_fail
;
11253 resultobj
= SWIG_From_int((result
));
11254 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
11255 SWIG_From_long((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_long
, 0)));
11262 static PyObject
*_wrap_TextCtrl_Copy(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11263 PyObject
*resultobj
= NULL
;
11264 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11265 PyObject
* obj0
= 0 ;
11266 char *kwnames
[] = {
11267 (char *) "self", NULL
11270 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_Copy",kwnames
,&obj0
)) goto fail
;
11271 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11272 if (SWIG_arg_fail(1)) SWIG_fail
;
11274 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11277 wxPyEndAllowThreads(__tstate
);
11278 if (PyErr_Occurred()) SWIG_fail
;
11280 Py_INCREF(Py_None
); resultobj
= Py_None
;
11287 static PyObject
*_wrap_TextCtrl_Cut(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11288 PyObject
*resultobj
= NULL
;
11289 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11290 PyObject
* obj0
= 0 ;
11291 char *kwnames
[] = {
11292 (char *) "self", NULL
11295 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_Cut",kwnames
,&obj0
)) goto fail
;
11296 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11297 if (SWIG_arg_fail(1)) SWIG_fail
;
11299 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11302 wxPyEndAllowThreads(__tstate
);
11303 if (PyErr_Occurred()) SWIG_fail
;
11305 Py_INCREF(Py_None
); resultobj
= Py_None
;
11312 static PyObject
*_wrap_TextCtrl_Paste(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11313 PyObject
*resultobj
= NULL
;
11314 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11315 PyObject
* obj0
= 0 ;
11316 char *kwnames
[] = {
11317 (char *) "self", NULL
11320 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_Paste",kwnames
,&obj0
)) goto fail
;
11321 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11322 if (SWIG_arg_fail(1)) SWIG_fail
;
11324 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11327 wxPyEndAllowThreads(__tstate
);
11328 if (PyErr_Occurred()) SWIG_fail
;
11330 Py_INCREF(Py_None
); resultobj
= Py_None
;
11337 static PyObject
*_wrap_TextCtrl_CanCopy(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11338 PyObject
*resultobj
= NULL
;
11339 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11341 PyObject
* obj0
= 0 ;
11342 char *kwnames
[] = {
11343 (char *) "self", NULL
11346 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_CanCopy",kwnames
,&obj0
)) goto fail
;
11347 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11348 if (SWIG_arg_fail(1)) SWIG_fail
;
11350 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11351 result
= (bool)((wxTextCtrl
const *)arg1
)->CanCopy();
11353 wxPyEndAllowThreads(__tstate
);
11354 if (PyErr_Occurred()) SWIG_fail
;
11357 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11365 static PyObject
*_wrap_TextCtrl_CanCut(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11366 PyObject
*resultobj
= NULL
;
11367 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11369 PyObject
* obj0
= 0 ;
11370 char *kwnames
[] = {
11371 (char *) "self", NULL
11374 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_CanCut",kwnames
,&obj0
)) goto fail
;
11375 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11376 if (SWIG_arg_fail(1)) SWIG_fail
;
11378 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11379 result
= (bool)((wxTextCtrl
const *)arg1
)->CanCut();
11381 wxPyEndAllowThreads(__tstate
);
11382 if (PyErr_Occurred()) SWIG_fail
;
11385 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11393 static PyObject
*_wrap_TextCtrl_CanPaste(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11394 PyObject
*resultobj
= NULL
;
11395 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11397 PyObject
* obj0
= 0 ;
11398 char *kwnames
[] = {
11399 (char *) "self", NULL
11402 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_CanPaste",kwnames
,&obj0
)) goto fail
;
11403 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11404 if (SWIG_arg_fail(1)) SWIG_fail
;
11406 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11407 result
= (bool)((wxTextCtrl
const *)arg1
)->CanPaste();
11409 wxPyEndAllowThreads(__tstate
);
11410 if (PyErr_Occurred()) SWIG_fail
;
11413 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11421 static PyObject
*_wrap_TextCtrl_Undo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11422 PyObject
*resultobj
= NULL
;
11423 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11424 PyObject
* obj0
= 0 ;
11425 char *kwnames
[] = {
11426 (char *) "self", NULL
11429 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_Undo",kwnames
,&obj0
)) goto fail
;
11430 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11431 if (SWIG_arg_fail(1)) SWIG_fail
;
11433 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11436 wxPyEndAllowThreads(__tstate
);
11437 if (PyErr_Occurred()) SWIG_fail
;
11439 Py_INCREF(Py_None
); resultobj
= Py_None
;
11446 static PyObject
*_wrap_TextCtrl_Redo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11447 PyObject
*resultobj
= NULL
;
11448 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11449 PyObject
* obj0
= 0 ;
11450 char *kwnames
[] = {
11451 (char *) "self", NULL
11454 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_Redo",kwnames
,&obj0
)) goto fail
;
11455 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11456 if (SWIG_arg_fail(1)) SWIG_fail
;
11458 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11461 wxPyEndAllowThreads(__tstate
);
11462 if (PyErr_Occurred()) SWIG_fail
;
11464 Py_INCREF(Py_None
); resultobj
= Py_None
;
11471 static PyObject
*_wrap_TextCtrl_CanUndo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11472 PyObject
*resultobj
= NULL
;
11473 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11475 PyObject
* obj0
= 0 ;
11476 char *kwnames
[] = {
11477 (char *) "self", NULL
11480 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_CanUndo",kwnames
,&obj0
)) goto fail
;
11481 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11482 if (SWIG_arg_fail(1)) SWIG_fail
;
11484 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11485 result
= (bool)((wxTextCtrl
const *)arg1
)->CanUndo();
11487 wxPyEndAllowThreads(__tstate
);
11488 if (PyErr_Occurred()) SWIG_fail
;
11491 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11499 static PyObject
*_wrap_TextCtrl_CanRedo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11500 PyObject
*resultobj
= NULL
;
11501 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11503 PyObject
* obj0
= 0 ;
11504 char *kwnames
[] = {
11505 (char *) "self", NULL
11508 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_CanRedo",kwnames
,&obj0
)) goto fail
;
11509 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11510 if (SWIG_arg_fail(1)) SWIG_fail
;
11512 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11513 result
= (bool)((wxTextCtrl
const *)arg1
)->CanRedo();
11515 wxPyEndAllowThreads(__tstate
);
11516 if (PyErr_Occurred()) SWIG_fail
;
11519 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11527 static PyObject
*_wrap_TextCtrl_SetInsertionPoint(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11528 PyObject
*resultobj
= NULL
;
11529 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11531 PyObject
* obj0
= 0 ;
11532 PyObject
* obj1
= 0 ;
11533 char *kwnames
[] = {
11534 (char *) "self",(char *) "pos", NULL
11537 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_SetInsertionPoint",kwnames
,&obj0
,&obj1
)) goto fail
;
11538 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11539 if (SWIG_arg_fail(1)) SWIG_fail
;
11541 arg2
= static_cast<long >(SWIG_As_long(obj1
));
11542 if (SWIG_arg_fail(2)) SWIG_fail
;
11545 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11546 (arg1
)->SetInsertionPoint(arg2
);
11548 wxPyEndAllowThreads(__tstate
);
11549 if (PyErr_Occurred()) SWIG_fail
;
11551 Py_INCREF(Py_None
); resultobj
= Py_None
;
11558 static PyObject
*_wrap_TextCtrl_SetInsertionPointEnd(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11559 PyObject
*resultobj
= NULL
;
11560 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11561 PyObject
* obj0
= 0 ;
11562 char *kwnames
[] = {
11563 (char *) "self", NULL
11566 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_SetInsertionPointEnd",kwnames
,&obj0
)) goto fail
;
11567 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11568 if (SWIG_arg_fail(1)) SWIG_fail
;
11570 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11571 (arg1
)->SetInsertionPointEnd();
11573 wxPyEndAllowThreads(__tstate
);
11574 if (PyErr_Occurred()) SWIG_fail
;
11576 Py_INCREF(Py_None
); resultobj
= Py_None
;
11583 static PyObject
*_wrap_TextCtrl_GetInsertionPoint(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11584 PyObject
*resultobj
= NULL
;
11585 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11587 PyObject
* obj0
= 0 ;
11588 char *kwnames
[] = {
11589 (char *) "self", NULL
11592 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_GetInsertionPoint",kwnames
,&obj0
)) goto fail
;
11593 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11594 if (SWIG_arg_fail(1)) SWIG_fail
;
11596 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11597 result
= (long)((wxTextCtrl
const *)arg1
)->GetInsertionPoint();
11599 wxPyEndAllowThreads(__tstate
);
11600 if (PyErr_Occurred()) SWIG_fail
;
11603 resultobj
= SWIG_From_long(static_cast<long >(result
));
11611 static PyObject
*_wrap_TextCtrl_GetLastPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11612 PyObject
*resultobj
= NULL
;
11613 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11615 PyObject
* obj0
= 0 ;
11616 char *kwnames
[] = {
11617 (char *) "self", NULL
11620 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_GetLastPosition",kwnames
,&obj0
)) goto fail
;
11621 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11622 if (SWIG_arg_fail(1)) SWIG_fail
;
11624 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11625 result
= (long)((wxTextCtrl
const *)arg1
)->GetLastPosition();
11627 wxPyEndAllowThreads(__tstate
);
11628 if (PyErr_Occurred()) SWIG_fail
;
11631 resultobj
= SWIG_From_long(static_cast<long >(result
));
11639 static PyObject
*_wrap_TextCtrl_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11640 PyObject
*resultobj
= NULL
;
11641 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11644 PyObject
* obj0
= 0 ;
11645 PyObject
* obj1
= 0 ;
11646 PyObject
* obj2
= 0 ;
11647 char *kwnames
[] = {
11648 (char *) "self",(char *) "from",(char *) "to", NULL
11651 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextCtrl_SetSelection",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
11652 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11653 if (SWIG_arg_fail(1)) SWIG_fail
;
11655 arg2
= static_cast<long >(SWIG_As_long(obj1
));
11656 if (SWIG_arg_fail(2)) SWIG_fail
;
11659 arg3
= static_cast<long >(SWIG_As_long(obj2
));
11660 if (SWIG_arg_fail(3)) SWIG_fail
;
11663 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11664 (arg1
)->SetSelection(arg2
,arg3
);
11666 wxPyEndAllowThreads(__tstate
);
11667 if (PyErr_Occurred()) SWIG_fail
;
11669 Py_INCREF(Py_None
); resultobj
= Py_None
;
11676 static PyObject
*_wrap_TextCtrl_SelectAll(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11677 PyObject
*resultobj
= NULL
;
11678 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11679 PyObject
* obj0
= 0 ;
11680 char *kwnames
[] = {
11681 (char *) "self", NULL
11684 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextCtrl_SelectAll",kwnames
,&obj0
)) goto fail
;
11685 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11686 if (SWIG_arg_fail(1)) SWIG_fail
;
11688 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11689 (arg1
)->SelectAll();
11691 wxPyEndAllowThreads(__tstate
);
11692 if (PyErr_Occurred()) SWIG_fail
;
11694 Py_INCREF(Py_None
); resultobj
= Py_None
;
11701 static PyObject
*_wrap_TextCtrl_SetEditable(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11702 PyObject
*resultobj
= NULL
;
11703 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11705 PyObject
* obj0
= 0 ;
11706 PyObject
* obj1
= 0 ;
11707 char *kwnames
[] = {
11708 (char *) "self",(char *) "editable", NULL
11711 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_SetEditable",kwnames
,&obj0
,&obj1
)) goto fail
;
11712 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11713 if (SWIG_arg_fail(1)) SWIG_fail
;
11715 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
11716 if (SWIG_arg_fail(2)) SWIG_fail
;
11719 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11720 (arg1
)->SetEditable(arg2
);
11722 wxPyEndAllowThreads(__tstate
);
11723 if (PyErr_Occurred()) SWIG_fail
;
11725 Py_INCREF(Py_None
); resultobj
= Py_None
;
11732 static PyObject
*_wrap_TextCtrl_write(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11733 PyObject
*resultobj
= NULL
;
11734 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11735 wxString
*arg2
= 0 ;
11736 bool temp2
= false ;
11737 PyObject
* obj0
= 0 ;
11738 PyObject
* obj1
= 0 ;
11739 char *kwnames
[] = {
11740 (char *) "self",(char *) "text", NULL
11743 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextCtrl_write",kwnames
,&obj0
,&obj1
)) goto fail
;
11744 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11745 if (SWIG_arg_fail(1)) SWIG_fail
;
11747 arg2
= wxString_in_helper(obj1
);
11748 if (arg2
== NULL
) SWIG_fail
;
11752 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11753 wxTextCtrl_write(arg1
,(wxString
const &)*arg2
);
11755 wxPyEndAllowThreads(__tstate
);
11756 if (PyErr_Occurred()) SWIG_fail
;
11758 Py_INCREF(Py_None
); resultobj
= Py_None
;
11773 static PyObject
*_wrap_TextCtrl_GetString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11774 PyObject
*resultobj
= NULL
;
11775 wxTextCtrl
*arg1
= (wxTextCtrl
*) 0 ;
11779 PyObject
* obj0
= 0 ;
11780 PyObject
* obj1
= 0 ;
11781 PyObject
* obj2
= 0 ;
11782 char *kwnames
[] = {
11783 (char *) "self",(char *) "from",(char *) "to", NULL
11786 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TextCtrl_GetString",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
11787 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextCtrl
, SWIG_POINTER_EXCEPTION
| 0);
11788 if (SWIG_arg_fail(1)) SWIG_fail
;
11790 arg2
= static_cast<long >(SWIG_As_long(obj1
));
11791 if (SWIG_arg_fail(2)) SWIG_fail
;
11794 arg3
= static_cast<long >(SWIG_As_long(obj2
));
11795 if (SWIG_arg_fail(3)) SWIG_fail
;
11798 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11799 result
= wxTextCtrl_GetString(arg1
,arg2
,arg3
);
11801 wxPyEndAllowThreads(__tstate
);
11802 if (PyErr_Occurred()) SWIG_fail
;
11806 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
11808 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
11817 static PyObject
*_wrap_TextCtrl_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11818 PyObject
*resultobj
= NULL
;
11819 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
11820 wxVisualAttributes result
;
11821 PyObject
* obj0
= 0 ;
11822 char *kwnames
[] = {
11823 (char *) "variant", NULL
11826 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:TextCtrl_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
11829 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
11830 if (SWIG_arg_fail(1)) SWIG_fail
;
11834 if (!wxPyCheckForApp()) SWIG_fail
;
11835 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11836 result
= wxTextCtrl::GetClassDefaultAttributes(arg1
);
11838 wxPyEndAllowThreads(__tstate
);
11839 if (PyErr_Occurred()) SWIG_fail
;
11842 wxVisualAttributes
* resultptr
;
11843 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
11844 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
11852 static PyObject
* TextCtrl_swigregister(PyObject
*, PyObject
*args
) {
11854 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
11855 SWIG_TypeClientData(SWIGTYPE_p_wxTextCtrl
, obj
);
11857 return Py_BuildValue((char *)"");
11859 static PyObject
*_wrap_new_TextUrlEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11860 PyObject
*resultobj
= NULL
;
11862 wxMouseEvent
*arg2
= 0 ;
11865 wxTextUrlEvent
*result
;
11866 PyObject
* obj0
= 0 ;
11867 PyObject
* obj1
= 0 ;
11868 PyObject
* obj2
= 0 ;
11869 PyObject
* obj3
= 0 ;
11870 char *kwnames
[] = {
11871 (char *) "winid",(char *) "evtMouse",(char *) "start",(char *) "end", NULL
11874 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:new_TextUrlEvent",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
11876 arg1
= static_cast<int >(SWIG_As_int(obj0
));
11877 if (SWIG_arg_fail(1)) SWIG_fail
;
11880 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxMouseEvent
, SWIG_POINTER_EXCEPTION
| 0);
11881 if (SWIG_arg_fail(2)) SWIG_fail
;
11882 if (arg2
== NULL
) {
11883 SWIG_null_ref("wxMouseEvent");
11885 if (SWIG_arg_fail(2)) SWIG_fail
;
11888 arg3
= static_cast<long >(SWIG_As_long(obj2
));
11889 if (SWIG_arg_fail(3)) SWIG_fail
;
11892 arg4
= static_cast<long >(SWIG_As_long(obj3
));
11893 if (SWIG_arg_fail(4)) SWIG_fail
;
11896 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11897 result
= (wxTextUrlEvent
*)new wxTextUrlEvent(arg1
,(wxMouseEvent
const &)*arg2
,arg3
,arg4
);
11899 wxPyEndAllowThreads(__tstate
);
11900 if (PyErr_Occurred()) SWIG_fail
;
11902 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTextUrlEvent
, 1);
11909 static PyObject
*_wrap_TextUrlEvent_GetMouseEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11910 PyObject
*resultobj
= NULL
;
11911 wxTextUrlEvent
*arg1
= (wxTextUrlEvent
*) 0 ;
11912 wxMouseEvent
*result
;
11913 PyObject
* obj0
= 0 ;
11914 char *kwnames
[] = {
11915 (char *) "self", NULL
11918 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextUrlEvent_GetMouseEvent",kwnames
,&obj0
)) goto fail
;
11919 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextUrlEvent
, SWIG_POINTER_EXCEPTION
| 0);
11920 if (SWIG_arg_fail(1)) SWIG_fail
;
11922 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11924 wxMouseEvent
const &_result_ref
= (arg1
)->GetMouseEvent();
11925 result
= (wxMouseEvent
*) &_result_ref
;
11928 wxPyEndAllowThreads(__tstate
);
11929 if (PyErr_Occurred()) SWIG_fail
;
11931 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxMouseEvent
, 0);
11938 static PyObject
*_wrap_TextUrlEvent_GetURLStart(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11939 PyObject
*resultobj
= NULL
;
11940 wxTextUrlEvent
*arg1
= (wxTextUrlEvent
*) 0 ;
11942 PyObject
* obj0
= 0 ;
11943 char *kwnames
[] = {
11944 (char *) "self", NULL
11947 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextUrlEvent_GetURLStart",kwnames
,&obj0
)) goto fail
;
11948 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextUrlEvent
, SWIG_POINTER_EXCEPTION
| 0);
11949 if (SWIG_arg_fail(1)) SWIG_fail
;
11951 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11952 result
= (long)((wxTextUrlEvent
const *)arg1
)->GetURLStart();
11954 wxPyEndAllowThreads(__tstate
);
11955 if (PyErr_Occurred()) SWIG_fail
;
11958 resultobj
= SWIG_From_long(static_cast<long >(result
));
11966 static PyObject
*_wrap_TextUrlEvent_GetURLEnd(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
11967 PyObject
*resultobj
= NULL
;
11968 wxTextUrlEvent
*arg1
= (wxTextUrlEvent
*) 0 ;
11970 PyObject
* obj0
= 0 ;
11971 char *kwnames
[] = {
11972 (char *) "self", NULL
11975 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextUrlEvent_GetURLEnd",kwnames
,&obj0
)) goto fail
;
11976 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextUrlEvent
, SWIG_POINTER_EXCEPTION
| 0);
11977 if (SWIG_arg_fail(1)) SWIG_fail
;
11979 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11980 result
= (long)((wxTextUrlEvent
const *)arg1
)->GetURLEnd();
11982 wxPyEndAllowThreads(__tstate
);
11983 if (PyErr_Occurred()) SWIG_fail
;
11986 resultobj
= SWIG_From_long(static_cast<long >(result
));
11994 static PyObject
* TextUrlEvent_swigregister(PyObject
*, PyObject
*args
) {
11996 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
11997 SWIG_TypeClientData(SWIGTYPE_p_wxTextUrlEvent
, obj
);
11999 return Py_BuildValue((char *)"");
12001 static int _wrap_ScrollBarNameStr_set(PyObject
*) {
12002 PyErr_SetString(PyExc_TypeError
,"Variable ScrollBarNameStr is read-only.");
12007 static PyObject
*_wrap_ScrollBarNameStr_get(void) {
12008 PyObject
*pyobj
= NULL
;
12012 pyobj
= PyUnicode_FromWideChar((&wxPyScrollBarNameStr
)->c_str(), (&wxPyScrollBarNameStr
)->Len());
12014 pyobj
= PyString_FromStringAndSize((&wxPyScrollBarNameStr
)->c_str(), (&wxPyScrollBarNameStr
)->Len());
12021 static PyObject
*_wrap_new_ScrollBar(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12022 PyObject
*resultobj
= NULL
;
12023 wxWindow
*arg1
= (wxWindow
*) 0 ;
12024 int arg2
= (int) -1 ;
12025 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
12026 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
12027 wxSize
const &arg4_defvalue
= wxDefaultSize
;
12028 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
12029 long arg5
= (long) wxSB_HORIZONTAL
;
12030 wxValidator
const &arg6_defvalue
= wxDefaultValidator
;
12031 wxValidator
*arg6
= (wxValidator
*) &arg6_defvalue
;
12032 wxString
const &arg7_defvalue
= wxPyScrollBarNameStr
;
12033 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
12034 wxScrollBar
*result
;
12037 bool temp7
= false ;
12038 PyObject
* obj0
= 0 ;
12039 PyObject
* obj1
= 0 ;
12040 PyObject
* obj2
= 0 ;
12041 PyObject
* obj3
= 0 ;
12042 PyObject
* obj4
= 0 ;
12043 PyObject
* obj5
= 0 ;
12044 PyObject
* obj6
= 0 ;
12045 char *kwnames
[] = {
12046 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
12049 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_ScrollBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
12050 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
12051 if (SWIG_arg_fail(1)) SWIG_fail
;
12054 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12055 if (SWIG_arg_fail(2)) SWIG_fail
;
12061 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
12067 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
12072 arg5
= static_cast<long >(SWIG_As_long(obj4
));
12073 if (SWIG_arg_fail(5)) SWIG_fail
;
12078 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
12079 if (SWIG_arg_fail(6)) SWIG_fail
;
12080 if (arg6
== NULL
) {
12081 SWIG_null_ref("wxValidator");
12083 if (SWIG_arg_fail(6)) SWIG_fail
;
12088 arg7
= wxString_in_helper(obj6
);
12089 if (arg7
== NULL
) SWIG_fail
;
12094 if (!wxPyCheckForApp()) SWIG_fail
;
12095 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12096 result
= (wxScrollBar
*)new wxScrollBar(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxValidator
const &)*arg6
,(wxString
const &)*arg7
);
12098 wxPyEndAllowThreads(__tstate
);
12099 if (PyErr_Occurred()) SWIG_fail
;
12101 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxScrollBar
, 1);
12116 static PyObject
*_wrap_new_PreScrollBar(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12117 PyObject
*resultobj
= NULL
;
12118 wxScrollBar
*result
;
12119 char *kwnames
[] = {
12123 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreScrollBar",kwnames
)) goto fail
;
12125 if (!wxPyCheckForApp()) SWIG_fail
;
12126 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12127 result
= (wxScrollBar
*)new wxScrollBar();
12129 wxPyEndAllowThreads(__tstate
);
12130 if (PyErr_Occurred()) SWIG_fail
;
12132 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxScrollBar
, 1);
12139 static PyObject
*_wrap_ScrollBar_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12140 PyObject
*resultobj
= NULL
;
12141 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12142 wxWindow
*arg2
= (wxWindow
*) 0 ;
12143 int arg3
= (int) -1 ;
12144 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
12145 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
12146 wxSize
const &arg5_defvalue
= wxDefaultSize
;
12147 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
12148 long arg6
= (long) wxSB_HORIZONTAL
;
12149 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
12150 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
12151 wxString
const &arg8_defvalue
= wxPyScrollBarNameStr
;
12152 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
12156 bool temp8
= false ;
12157 PyObject
* obj0
= 0 ;
12158 PyObject
* obj1
= 0 ;
12159 PyObject
* obj2
= 0 ;
12160 PyObject
* obj3
= 0 ;
12161 PyObject
* obj4
= 0 ;
12162 PyObject
* obj5
= 0 ;
12163 PyObject
* obj6
= 0 ;
12164 PyObject
* obj7
= 0 ;
12165 char *kwnames
[] = {
12166 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
12169 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:ScrollBar_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
12170 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12171 if (SWIG_arg_fail(1)) SWIG_fail
;
12172 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
12173 if (SWIG_arg_fail(2)) SWIG_fail
;
12176 arg3
= static_cast<int >(SWIG_As_int(obj2
));
12177 if (SWIG_arg_fail(3)) SWIG_fail
;
12183 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
12189 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
12194 arg6
= static_cast<long >(SWIG_As_long(obj5
));
12195 if (SWIG_arg_fail(6)) SWIG_fail
;
12200 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
12201 if (SWIG_arg_fail(7)) SWIG_fail
;
12202 if (arg7
== NULL
) {
12203 SWIG_null_ref("wxValidator");
12205 if (SWIG_arg_fail(7)) SWIG_fail
;
12210 arg8
= wxString_in_helper(obj7
);
12211 if (arg8
== NULL
) SWIG_fail
;
12216 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12217 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
12219 wxPyEndAllowThreads(__tstate
);
12220 if (PyErr_Occurred()) SWIG_fail
;
12223 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12239 static PyObject
*_wrap_ScrollBar_GetThumbPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12240 PyObject
*resultobj
= NULL
;
12241 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12243 PyObject
* obj0
= 0 ;
12244 char *kwnames
[] = {
12245 (char *) "self", NULL
12248 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrollBar_GetThumbPosition",kwnames
,&obj0
)) goto fail
;
12249 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12250 if (SWIG_arg_fail(1)) SWIG_fail
;
12252 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12253 result
= (int)((wxScrollBar
const *)arg1
)->GetThumbPosition();
12255 wxPyEndAllowThreads(__tstate
);
12256 if (PyErr_Occurred()) SWIG_fail
;
12259 resultobj
= SWIG_From_int(static_cast<int >(result
));
12267 static PyObject
*_wrap_ScrollBar_GetThumbSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12268 PyObject
*resultobj
= NULL
;
12269 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12271 PyObject
* obj0
= 0 ;
12272 char *kwnames
[] = {
12273 (char *) "self", NULL
12276 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrollBar_GetThumbSize",kwnames
,&obj0
)) goto fail
;
12277 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12278 if (SWIG_arg_fail(1)) SWIG_fail
;
12280 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12281 result
= (int)((wxScrollBar
const *)arg1
)->GetThumbSize();
12283 wxPyEndAllowThreads(__tstate
);
12284 if (PyErr_Occurred()) SWIG_fail
;
12287 resultobj
= SWIG_From_int(static_cast<int >(result
));
12295 static PyObject
*_wrap_ScrollBar_GetPageSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12296 PyObject
*resultobj
= NULL
;
12297 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12299 PyObject
* obj0
= 0 ;
12300 char *kwnames
[] = {
12301 (char *) "self", NULL
12304 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrollBar_GetPageSize",kwnames
,&obj0
)) goto fail
;
12305 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12306 if (SWIG_arg_fail(1)) SWIG_fail
;
12308 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12309 result
= (int)((wxScrollBar
const *)arg1
)->GetPageSize();
12311 wxPyEndAllowThreads(__tstate
);
12312 if (PyErr_Occurred()) SWIG_fail
;
12315 resultobj
= SWIG_From_int(static_cast<int >(result
));
12323 static PyObject
*_wrap_ScrollBar_GetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12324 PyObject
*resultobj
= NULL
;
12325 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12327 PyObject
* obj0
= 0 ;
12328 char *kwnames
[] = {
12329 (char *) "self", NULL
12332 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrollBar_GetRange",kwnames
,&obj0
)) goto fail
;
12333 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12334 if (SWIG_arg_fail(1)) SWIG_fail
;
12336 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12337 result
= (int)((wxScrollBar
const *)arg1
)->GetRange();
12339 wxPyEndAllowThreads(__tstate
);
12340 if (PyErr_Occurred()) SWIG_fail
;
12343 resultobj
= SWIG_From_int(static_cast<int >(result
));
12351 static PyObject
*_wrap_ScrollBar_IsVertical(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12352 PyObject
*resultobj
= NULL
;
12353 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12355 PyObject
* obj0
= 0 ;
12356 char *kwnames
[] = {
12357 (char *) "self", NULL
12360 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrollBar_IsVertical",kwnames
,&obj0
)) goto fail
;
12361 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12362 if (SWIG_arg_fail(1)) SWIG_fail
;
12364 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12365 result
= (bool)((wxScrollBar
const *)arg1
)->IsVertical();
12367 wxPyEndAllowThreads(__tstate
);
12368 if (PyErr_Occurred()) SWIG_fail
;
12371 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12379 static PyObject
*_wrap_ScrollBar_SetThumbPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12380 PyObject
*resultobj
= NULL
;
12381 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12383 PyObject
* obj0
= 0 ;
12384 PyObject
* obj1
= 0 ;
12385 char *kwnames
[] = {
12386 (char *) "self",(char *) "viewStart", NULL
12389 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScrollBar_SetThumbPosition",kwnames
,&obj0
,&obj1
)) goto fail
;
12390 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12391 if (SWIG_arg_fail(1)) SWIG_fail
;
12393 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12394 if (SWIG_arg_fail(2)) SWIG_fail
;
12397 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12398 (arg1
)->SetThumbPosition(arg2
);
12400 wxPyEndAllowThreads(__tstate
);
12401 if (PyErr_Occurred()) SWIG_fail
;
12403 Py_INCREF(Py_None
); resultobj
= Py_None
;
12410 static PyObject
*_wrap_ScrollBar_SetScrollbar(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12411 PyObject
*resultobj
= NULL
;
12412 wxScrollBar
*arg1
= (wxScrollBar
*) 0 ;
12417 bool arg6
= (bool) true ;
12418 PyObject
* obj0
= 0 ;
12419 PyObject
* obj1
= 0 ;
12420 PyObject
* obj2
= 0 ;
12421 PyObject
* obj3
= 0 ;
12422 PyObject
* obj4
= 0 ;
12423 PyObject
* obj5
= 0 ;
12424 char *kwnames
[] = {
12425 (char *) "self",(char *) "position",(char *) "thumbSize",(char *) "range",(char *) "pageSize",(char *) "refresh", NULL
12428 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|O:ScrollBar_SetScrollbar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
12429 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrollBar
, SWIG_POINTER_EXCEPTION
| 0);
12430 if (SWIG_arg_fail(1)) SWIG_fail
;
12432 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12433 if (SWIG_arg_fail(2)) SWIG_fail
;
12436 arg3
= static_cast<int >(SWIG_As_int(obj2
));
12437 if (SWIG_arg_fail(3)) SWIG_fail
;
12440 arg4
= static_cast<int >(SWIG_As_int(obj3
));
12441 if (SWIG_arg_fail(4)) SWIG_fail
;
12444 arg5
= static_cast<int >(SWIG_As_int(obj4
));
12445 if (SWIG_arg_fail(5)) SWIG_fail
;
12449 arg6
= static_cast<bool >(SWIG_As_bool(obj5
));
12450 if (SWIG_arg_fail(6)) SWIG_fail
;
12454 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12455 (arg1
)->SetScrollbar(arg2
,arg3
,arg4
,arg5
,arg6
);
12457 wxPyEndAllowThreads(__tstate
);
12458 if (PyErr_Occurred()) SWIG_fail
;
12460 Py_INCREF(Py_None
); resultobj
= Py_None
;
12467 static PyObject
*_wrap_ScrollBar_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12468 PyObject
*resultobj
= NULL
;
12469 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
12470 wxVisualAttributes result
;
12471 PyObject
* obj0
= 0 ;
12472 char *kwnames
[] = {
12473 (char *) "variant", NULL
12476 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ScrollBar_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
12479 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
12480 if (SWIG_arg_fail(1)) SWIG_fail
;
12484 if (!wxPyCheckForApp()) SWIG_fail
;
12485 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12486 result
= wxScrollBar::GetClassDefaultAttributes(arg1
);
12488 wxPyEndAllowThreads(__tstate
);
12489 if (PyErr_Occurred()) SWIG_fail
;
12492 wxVisualAttributes
* resultptr
;
12493 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
12494 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
12502 static PyObject
* ScrollBar_swigregister(PyObject
*, PyObject
*args
) {
12504 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
12505 SWIG_TypeClientData(SWIGTYPE_p_wxScrollBar
, obj
);
12507 return Py_BuildValue((char *)"");
12509 static int _wrap_SPIN_BUTTON_NAME_set(PyObject
*) {
12510 PyErr_SetString(PyExc_TypeError
,"Variable SPIN_BUTTON_NAME is read-only.");
12515 static PyObject
*_wrap_SPIN_BUTTON_NAME_get(void) {
12516 PyObject
*pyobj
= NULL
;
12520 pyobj
= PyUnicode_FromWideChar((&wxPySPIN_BUTTON_NAME
)->c_str(), (&wxPySPIN_BUTTON_NAME
)->Len());
12522 pyobj
= PyString_FromStringAndSize((&wxPySPIN_BUTTON_NAME
)->c_str(), (&wxPySPIN_BUTTON_NAME
)->Len());
12529 static int _wrap_SpinCtrlNameStr_set(PyObject
*) {
12530 PyErr_SetString(PyExc_TypeError
,"Variable SpinCtrlNameStr is read-only.");
12535 static PyObject
*_wrap_SpinCtrlNameStr_get(void) {
12536 PyObject
*pyobj
= NULL
;
12540 pyobj
= PyUnicode_FromWideChar((&wxPySpinCtrlNameStr
)->c_str(), (&wxPySpinCtrlNameStr
)->Len());
12542 pyobj
= PyString_FromStringAndSize((&wxPySpinCtrlNameStr
)->c_str(), (&wxPySpinCtrlNameStr
)->Len());
12549 static PyObject
*_wrap_new_SpinButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12550 PyObject
*resultobj
= NULL
;
12551 wxWindow
*arg1
= (wxWindow
*) 0 ;
12552 int arg2
= (int) -1 ;
12553 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
12554 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
12555 wxSize
const &arg4_defvalue
= wxDefaultSize
;
12556 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
12557 long arg5
= (long) wxSP_HORIZONTAL
;
12558 wxString
const &arg6_defvalue
= wxPySPIN_BUTTON_NAME
;
12559 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
12560 wxSpinButton
*result
;
12563 bool temp6
= false ;
12564 PyObject
* obj0
= 0 ;
12565 PyObject
* obj1
= 0 ;
12566 PyObject
* obj2
= 0 ;
12567 PyObject
* obj3
= 0 ;
12568 PyObject
* obj4
= 0 ;
12569 PyObject
* obj5
= 0 ;
12570 char *kwnames
[] = {
12571 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
12574 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_SpinButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
12575 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
12576 if (SWIG_arg_fail(1)) SWIG_fail
;
12579 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12580 if (SWIG_arg_fail(2)) SWIG_fail
;
12586 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
12592 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
12597 arg5
= static_cast<long >(SWIG_As_long(obj4
));
12598 if (SWIG_arg_fail(5)) SWIG_fail
;
12603 arg6
= wxString_in_helper(obj5
);
12604 if (arg6
== NULL
) SWIG_fail
;
12609 if (!wxPyCheckForApp()) SWIG_fail
;
12610 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12611 result
= (wxSpinButton
*)new wxSpinButton(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
12613 wxPyEndAllowThreads(__tstate
);
12614 if (PyErr_Occurred()) SWIG_fail
;
12616 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSpinButton
, 1);
12631 static PyObject
*_wrap_new_PreSpinButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12632 PyObject
*resultobj
= NULL
;
12633 wxSpinButton
*result
;
12634 char *kwnames
[] = {
12638 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreSpinButton",kwnames
)) goto fail
;
12640 if (!wxPyCheckForApp()) SWIG_fail
;
12641 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12642 result
= (wxSpinButton
*)new wxSpinButton();
12644 wxPyEndAllowThreads(__tstate
);
12645 if (PyErr_Occurred()) SWIG_fail
;
12647 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSpinButton
, 1);
12654 static PyObject
*_wrap_SpinButton_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12655 PyObject
*resultobj
= NULL
;
12656 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12657 wxWindow
*arg2
= (wxWindow
*) 0 ;
12658 int arg3
= (int) -1 ;
12659 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
12660 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
12661 wxSize
const &arg5_defvalue
= wxDefaultSize
;
12662 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
12663 long arg6
= (long) wxSP_HORIZONTAL
;
12664 wxString
const &arg7_defvalue
= wxPySPIN_BUTTON_NAME
;
12665 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
12669 bool temp7
= false ;
12670 PyObject
* obj0
= 0 ;
12671 PyObject
* obj1
= 0 ;
12672 PyObject
* obj2
= 0 ;
12673 PyObject
* obj3
= 0 ;
12674 PyObject
* obj4
= 0 ;
12675 PyObject
* obj5
= 0 ;
12676 PyObject
* obj6
= 0 ;
12677 char *kwnames
[] = {
12678 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
12681 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:SpinButton_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
12682 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12683 if (SWIG_arg_fail(1)) SWIG_fail
;
12684 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
12685 if (SWIG_arg_fail(2)) SWIG_fail
;
12688 arg3
= static_cast<int >(SWIG_As_int(obj2
));
12689 if (SWIG_arg_fail(3)) SWIG_fail
;
12695 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
12701 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
12706 arg6
= static_cast<long >(SWIG_As_long(obj5
));
12707 if (SWIG_arg_fail(6)) SWIG_fail
;
12712 arg7
= wxString_in_helper(obj6
);
12713 if (arg7
== NULL
) SWIG_fail
;
12718 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12719 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
12721 wxPyEndAllowThreads(__tstate
);
12722 if (PyErr_Occurred()) SWIG_fail
;
12725 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12741 static PyObject
*_wrap_SpinButton_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12742 PyObject
*resultobj
= NULL
;
12743 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12745 PyObject
* obj0
= 0 ;
12746 char *kwnames
[] = {
12747 (char *) "self", NULL
12750 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinButton_GetValue",kwnames
,&obj0
)) goto fail
;
12751 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12752 if (SWIG_arg_fail(1)) SWIG_fail
;
12754 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12755 result
= (int)((wxSpinButton
const *)arg1
)->GetValue();
12757 wxPyEndAllowThreads(__tstate
);
12758 if (PyErr_Occurred()) SWIG_fail
;
12761 resultobj
= SWIG_From_int(static_cast<int >(result
));
12769 static PyObject
*_wrap_SpinButton_GetMin(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12770 PyObject
*resultobj
= NULL
;
12771 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12773 PyObject
* obj0
= 0 ;
12774 char *kwnames
[] = {
12775 (char *) "self", NULL
12778 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinButton_GetMin",kwnames
,&obj0
)) goto fail
;
12779 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12780 if (SWIG_arg_fail(1)) SWIG_fail
;
12782 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12783 result
= (int)((wxSpinButton
const *)arg1
)->GetMin();
12785 wxPyEndAllowThreads(__tstate
);
12786 if (PyErr_Occurred()) SWIG_fail
;
12789 resultobj
= SWIG_From_int(static_cast<int >(result
));
12797 static PyObject
*_wrap_SpinButton_GetMax(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12798 PyObject
*resultobj
= NULL
;
12799 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12801 PyObject
* obj0
= 0 ;
12802 char *kwnames
[] = {
12803 (char *) "self", NULL
12806 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinButton_GetMax",kwnames
,&obj0
)) goto fail
;
12807 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12808 if (SWIG_arg_fail(1)) SWIG_fail
;
12810 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12811 result
= (int)((wxSpinButton
const *)arg1
)->GetMax();
12813 wxPyEndAllowThreads(__tstate
);
12814 if (PyErr_Occurred()) SWIG_fail
;
12817 resultobj
= SWIG_From_int(static_cast<int >(result
));
12825 static PyObject
*_wrap_SpinButton_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12826 PyObject
*resultobj
= NULL
;
12827 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12829 PyObject
* obj0
= 0 ;
12830 PyObject
* obj1
= 0 ;
12831 char *kwnames
[] = {
12832 (char *) "self",(char *) "val", NULL
12835 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SpinButton_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
12836 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12837 if (SWIG_arg_fail(1)) SWIG_fail
;
12839 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12840 if (SWIG_arg_fail(2)) SWIG_fail
;
12843 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12844 (arg1
)->SetValue(arg2
);
12846 wxPyEndAllowThreads(__tstate
);
12847 if (PyErr_Occurred()) SWIG_fail
;
12849 Py_INCREF(Py_None
); resultobj
= Py_None
;
12856 static PyObject
*_wrap_SpinButton_SetMin(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12857 PyObject
*resultobj
= NULL
;
12858 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12860 PyObject
* obj0
= 0 ;
12861 PyObject
* obj1
= 0 ;
12862 char *kwnames
[] = {
12863 (char *) "self",(char *) "minVal", NULL
12866 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SpinButton_SetMin",kwnames
,&obj0
,&obj1
)) goto fail
;
12867 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12868 if (SWIG_arg_fail(1)) SWIG_fail
;
12870 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12871 if (SWIG_arg_fail(2)) SWIG_fail
;
12874 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12875 (arg1
)->SetMin(arg2
);
12877 wxPyEndAllowThreads(__tstate
);
12878 if (PyErr_Occurred()) SWIG_fail
;
12880 Py_INCREF(Py_None
); resultobj
= Py_None
;
12887 static PyObject
*_wrap_SpinButton_SetMax(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12888 PyObject
*resultobj
= NULL
;
12889 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12891 PyObject
* obj0
= 0 ;
12892 PyObject
* obj1
= 0 ;
12893 char *kwnames
[] = {
12894 (char *) "self",(char *) "maxVal", NULL
12897 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SpinButton_SetMax",kwnames
,&obj0
,&obj1
)) goto fail
;
12898 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12899 if (SWIG_arg_fail(1)) SWIG_fail
;
12901 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12902 if (SWIG_arg_fail(2)) SWIG_fail
;
12905 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12906 (arg1
)->SetMax(arg2
);
12908 wxPyEndAllowThreads(__tstate
);
12909 if (PyErr_Occurred()) SWIG_fail
;
12911 Py_INCREF(Py_None
); resultobj
= Py_None
;
12918 static PyObject
*_wrap_SpinButton_SetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12919 PyObject
*resultobj
= NULL
;
12920 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12923 PyObject
* obj0
= 0 ;
12924 PyObject
* obj1
= 0 ;
12925 PyObject
* obj2
= 0 ;
12926 char *kwnames
[] = {
12927 (char *) "self",(char *) "minVal",(char *) "maxVal", NULL
12930 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:SpinButton_SetRange",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
12931 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12932 if (SWIG_arg_fail(1)) SWIG_fail
;
12934 arg2
= static_cast<int >(SWIG_As_int(obj1
));
12935 if (SWIG_arg_fail(2)) SWIG_fail
;
12938 arg3
= static_cast<int >(SWIG_As_int(obj2
));
12939 if (SWIG_arg_fail(3)) SWIG_fail
;
12942 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12943 (arg1
)->SetRange(arg2
,arg3
);
12945 wxPyEndAllowThreads(__tstate
);
12946 if (PyErr_Occurred()) SWIG_fail
;
12948 Py_INCREF(Py_None
); resultobj
= Py_None
;
12955 static PyObject
*_wrap_SpinButton_IsVertical(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12956 PyObject
*resultobj
= NULL
;
12957 wxSpinButton
*arg1
= (wxSpinButton
*) 0 ;
12959 PyObject
* obj0
= 0 ;
12960 char *kwnames
[] = {
12961 (char *) "self", NULL
12964 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinButton_IsVertical",kwnames
,&obj0
)) goto fail
;
12965 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinButton
, SWIG_POINTER_EXCEPTION
| 0);
12966 if (SWIG_arg_fail(1)) SWIG_fail
;
12968 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12969 result
= (bool)((wxSpinButton
const *)arg1
)->IsVertical();
12971 wxPyEndAllowThreads(__tstate
);
12972 if (PyErr_Occurred()) SWIG_fail
;
12975 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12983 static PyObject
*_wrap_SpinButton_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
12984 PyObject
*resultobj
= NULL
;
12985 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
12986 wxVisualAttributes result
;
12987 PyObject
* obj0
= 0 ;
12988 char *kwnames
[] = {
12989 (char *) "variant", NULL
12992 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:SpinButton_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
12995 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
12996 if (SWIG_arg_fail(1)) SWIG_fail
;
13000 if (!wxPyCheckForApp()) SWIG_fail
;
13001 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13002 result
= wxSpinButton::GetClassDefaultAttributes(arg1
);
13004 wxPyEndAllowThreads(__tstate
);
13005 if (PyErr_Occurred()) SWIG_fail
;
13008 wxVisualAttributes
* resultptr
;
13009 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
13010 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
13018 static PyObject
* SpinButton_swigregister(PyObject
*, PyObject
*args
) {
13020 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
13021 SWIG_TypeClientData(SWIGTYPE_p_wxSpinButton
, obj
);
13023 return Py_BuildValue((char *)"");
13025 static PyObject
*_wrap_new_SpinCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13026 PyObject
*resultobj
= NULL
;
13027 wxWindow
*arg1
= (wxWindow
*) 0 ;
13028 int arg2
= (int) -1 ;
13029 wxString
const &arg3_defvalue
= wxPyEmptyString
;
13030 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
13031 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
13032 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
13033 wxSize
const &arg5_defvalue
= wxDefaultSize
;
13034 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
13035 long arg6
= (long) wxSP_ARROW_KEYS
;
13036 int arg7
= (int) 0 ;
13037 int arg8
= (int) 100 ;
13038 int arg9
= (int) 0 ;
13039 wxString
const &arg10_defvalue
= wxPySpinCtrlNameStr
;
13040 wxString
*arg10
= (wxString
*) &arg10_defvalue
;
13041 wxSpinCtrl
*result
;
13042 bool temp3
= false ;
13045 bool temp10
= false ;
13046 PyObject
* obj0
= 0 ;
13047 PyObject
* obj1
= 0 ;
13048 PyObject
* obj2
= 0 ;
13049 PyObject
* obj3
= 0 ;
13050 PyObject
* obj4
= 0 ;
13051 PyObject
* obj5
= 0 ;
13052 PyObject
* obj6
= 0 ;
13053 PyObject
* obj7
= 0 ;
13054 PyObject
* obj8
= 0 ;
13055 PyObject
* obj9
= 0 ;
13056 char *kwnames
[] = {
13057 (char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "style",(char *) "min",(char *) "max",(char *) "initial",(char *) "name", NULL
13060 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOOOO:new_SpinCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) goto fail
;
13061 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
13062 if (SWIG_arg_fail(1)) SWIG_fail
;
13065 arg2
= static_cast<int >(SWIG_As_int(obj1
));
13066 if (SWIG_arg_fail(2)) SWIG_fail
;
13071 arg3
= wxString_in_helper(obj2
);
13072 if (arg3
== NULL
) SWIG_fail
;
13079 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
13085 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
13090 arg6
= static_cast<long >(SWIG_As_long(obj5
));
13091 if (SWIG_arg_fail(6)) SWIG_fail
;
13096 arg7
= static_cast<int >(SWIG_As_int(obj6
));
13097 if (SWIG_arg_fail(7)) SWIG_fail
;
13102 arg8
= static_cast<int >(SWIG_As_int(obj7
));
13103 if (SWIG_arg_fail(8)) SWIG_fail
;
13108 arg9
= static_cast<int >(SWIG_As_int(obj8
));
13109 if (SWIG_arg_fail(9)) SWIG_fail
;
13114 arg10
= wxString_in_helper(obj9
);
13115 if (arg10
== NULL
) SWIG_fail
;
13120 if (!wxPyCheckForApp()) SWIG_fail
;
13121 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13122 result
= (wxSpinCtrl
*)new wxSpinCtrl(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,arg7
,arg8
,arg9
,(wxString
const &)*arg10
);
13124 wxPyEndAllowThreads(__tstate
);
13125 if (PyErr_Occurred()) SWIG_fail
;
13127 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSpinCtrl
, 1);
13150 static PyObject
*_wrap_new_PreSpinCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13151 PyObject
*resultobj
= NULL
;
13152 wxSpinCtrl
*result
;
13153 char *kwnames
[] = {
13157 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreSpinCtrl",kwnames
)) goto fail
;
13159 if (!wxPyCheckForApp()) SWIG_fail
;
13160 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13161 result
= (wxSpinCtrl
*)new wxSpinCtrl();
13163 wxPyEndAllowThreads(__tstate
);
13164 if (PyErr_Occurred()) SWIG_fail
;
13166 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSpinCtrl
, 1);
13173 static PyObject
*_wrap_SpinCtrl_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13174 PyObject
*resultobj
= NULL
;
13175 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13176 wxWindow
*arg2
= (wxWindow
*) 0 ;
13177 int arg3
= (int) -1 ;
13178 wxString
const &arg4_defvalue
= wxPyEmptyString
;
13179 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
13180 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
13181 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
13182 wxSize
const &arg6_defvalue
= wxDefaultSize
;
13183 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
13184 long arg7
= (long) wxSP_ARROW_KEYS
;
13185 int arg8
= (int) 0 ;
13186 int arg9
= (int) 100 ;
13187 int arg10
= (int) 0 ;
13188 wxString
const &arg11_defvalue
= wxPySpinCtrlNameStr
;
13189 wxString
*arg11
= (wxString
*) &arg11_defvalue
;
13191 bool temp4
= false ;
13194 bool temp11
= false ;
13195 PyObject
* obj0
= 0 ;
13196 PyObject
* obj1
= 0 ;
13197 PyObject
* obj2
= 0 ;
13198 PyObject
* obj3
= 0 ;
13199 PyObject
* obj4
= 0 ;
13200 PyObject
* obj5
= 0 ;
13201 PyObject
* obj6
= 0 ;
13202 PyObject
* obj7
= 0 ;
13203 PyObject
* obj8
= 0 ;
13204 PyObject
* obj9
= 0 ;
13205 PyObject
* obj10
= 0 ;
13206 char *kwnames
[] = {
13207 (char *) "self",(char *) "parent",(char *) "id",(char *) "value",(char *) "pos",(char *) "size",(char *) "style",(char *) "min",(char *) "max",(char *) "initial",(char *) "name", NULL
13210 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOOOO:SpinCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
,&obj10
)) goto fail
;
13211 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13212 if (SWIG_arg_fail(1)) SWIG_fail
;
13213 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
13214 if (SWIG_arg_fail(2)) SWIG_fail
;
13217 arg3
= static_cast<int >(SWIG_As_int(obj2
));
13218 if (SWIG_arg_fail(3)) SWIG_fail
;
13223 arg4
= wxString_in_helper(obj3
);
13224 if (arg4
== NULL
) SWIG_fail
;
13231 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
13237 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
13242 arg7
= static_cast<long >(SWIG_As_long(obj6
));
13243 if (SWIG_arg_fail(7)) SWIG_fail
;
13248 arg8
= static_cast<int >(SWIG_As_int(obj7
));
13249 if (SWIG_arg_fail(8)) SWIG_fail
;
13254 arg9
= static_cast<int >(SWIG_As_int(obj8
));
13255 if (SWIG_arg_fail(9)) SWIG_fail
;
13260 arg10
= static_cast<int >(SWIG_As_int(obj9
));
13261 if (SWIG_arg_fail(10)) SWIG_fail
;
13266 arg11
= wxString_in_helper(obj10
);
13267 if (arg11
== NULL
) SWIG_fail
;
13272 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13273 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,arg8
,arg9
,arg10
,(wxString
const &)*arg11
);
13275 wxPyEndAllowThreads(__tstate
);
13276 if (PyErr_Occurred()) SWIG_fail
;
13279 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13303 static PyObject
*_wrap_SpinCtrl_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13304 PyObject
*resultobj
= NULL
;
13305 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13307 PyObject
* obj0
= 0 ;
13308 char *kwnames
[] = {
13309 (char *) "self", NULL
13312 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinCtrl_GetValue",kwnames
,&obj0
)) goto fail
;
13313 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13314 if (SWIG_arg_fail(1)) SWIG_fail
;
13316 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13317 result
= (int)((wxSpinCtrl
const *)arg1
)->GetValue();
13319 wxPyEndAllowThreads(__tstate
);
13320 if (PyErr_Occurred()) SWIG_fail
;
13323 resultobj
= SWIG_From_int(static_cast<int >(result
));
13331 static PyObject
*_wrap_SpinCtrl_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13332 PyObject
*resultobj
= NULL
;
13333 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13335 PyObject
* obj0
= 0 ;
13336 PyObject
* obj1
= 0 ;
13337 char *kwnames
[] = {
13338 (char *) "self",(char *) "value", NULL
13341 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SpinCtrl_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
13342 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13343 if (SWIG_arg_fail(1)) SWIG_fail
;
13345 arg2
= static_cast<int >(SWIG_As_int(obj1
));
13346 if (SWIG_arg_fail(2)) SWIG_fail
;
13349 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13350 (arg1
)->SetValue(arg2
);
13352 wxPyEndAllowThreads(__tstate
);
13353 if (PyErr_Occurred()) SWIG_fail
;
13355 Py_INCREF(Py_None
); resultobj
= Py_None
;
13362 static PyObject
*_wrap_SpinCtrl_SetValueString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13363 PyObject
*resultobj
= NULL
;
13364 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13365 wxString
*arg2
= 0 ;
13366 bool temp2
= false ;
13367 PyObject
* obj0
= 0 ;
13368 PyObject
* obj1
= 0 ;
13369 char *kwnames
[] = {
13370 (char *) "self",(char *) "text", NULL
13373 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SpinCtrl_SetValueString",kwnames
,&obj0
,&obj1
)) goto fail
;
13374 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13375 if (SWIG_arg_fail(1)) SWIG_fail
;
13377 arg2
= wxString_in_helper(obj1
);
13378 if (arg2
== NULL
) SWIG_fail
;
13382 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13383 (arg1
)->SetValue((wxString
const &)*arg2
);
13385 wxPyEndAllowThreads(__tstate
);
13386 if (PyErr_Occurred()) SWIG_fail
;
13388 Py_INCREF(Py_None
); resultobj
= Py_None
;
13403 static PyObject
*_wrap_SpinCtrl_SetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13404 PyObject
*resultobj
= NULL
;
13405 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13408 PyObject
* obj0
= 0 ;
13409 PyObject
* obj1
= 0 ;
13410 PyObject
* obj2
= 0 ;
13411 char *kwnames
[] = {
13412 (char *) "self",(char *) "minVal",(char *) "maxVal", NULL
13415 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:SpinCtrl_SetRange",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
13416 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13417 if (SWIG_arg_fail(1)) SWIG_fail
;
13419 arg2
= static_cast<int >(SWIG_As_int(obj1
));
13420 if (SWIG_arg_fail(2)) SWIG_fail
;
13423 arg3
= static_cast<int >(SWIG_As_int(obj2
));
13424 if (SWIG_arg_fail(3)) SWIG_fail
;
13427 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13428 (arg1
)->SetRange(arg2
,arg3
);
13430 wxPyEndAllowThreads(__tstate
);
13431 if (PyErr_Occurred()) SWIG_fail
;
13433 Py_INCREF(Py_None
); resultobj
= Py_None
;
13440 static PyObject
*_wrap_SpinCtrl_GetMin(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13441 PyObject
*resultobj
= NULL
;
13442 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13444 PyObject
* obj0
= 0 ;
13445 char *kwnames
[] = {
13446 (char *) "self", NULL
13449 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinCtrl_GetMin",kwnames
,&obj0
)) goto fail
;
13450 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13451 if (SWIG_arg_fail(1)) SWIG_fail
;
13453 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13454 result
= (int)((wxSpinCtrl
const *)arg1
)->GetMin();
13456 wxPyEndAllowThreads(__tstate
);
13457 if (PyErr_Occurred()) SWIG_fail
;
13460 resultobj
= SWIG_From_int(static_cast<int >(result
));
13468 static PyObject
*_wrap_SpinCtrl_GetMax(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13469 PyObject
*resultobj
= NULL
;
13470 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13472 PyObject
* obj0
= 0 ;
13473 char *kwnames
[] = {
13474 (char *) "self", NULL
13477 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinCtrl_GetMax",kwnames
,&obj0
)) goto fail
;
13478 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13479 if (SWIG_arg_fail(1)) SWIG_fail
;
13481 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13482 result
= (int)((wxSpinCtrl
const *)arg1
)->GetMax();
13484 wxPyEndAllowThreads(__tstate
);
13485 if (PyErr_Occurred()) SWIG_fail
;
13488 resultobj
= SWIG_From_int(static_cast<int >(result
));
13496 static PyObject
*_wrap_SpinCtrl_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13497 PyObject
*resultobj
= NULL
;
13498 wxSpinCtrl
*arg1
= (wxSpinCtrl
*) 0 ;
13501 PyObject
* obj0
= 0 ;
13502 PyObject
* obj1
= 0 ;
13503 PyObject
* obj2
= 0 ;
13504 char *kwnames
[] = {
13505 (char *) "self",(char *) "from",(char *) "to", NULL
13508 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:SpinCtrl_SetSelection",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
13509 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinCtrl
, SWIG_POINTER_EXCEPTION
| 0);
13510 if (SWIG_arg_fail(1)) SWIG_fail
;
13512 arg2
= static_cast<long >(SWIG_As_long(obj1
));
13513 if (SWIG_arg_fail(2)) SWIG_fail
;
13516 arg3
= static_cast<long >(SWIG_As_long(obj2
));
13517 if (SWIG_arg_fail(3)) SWIG_fail
;
13520 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13521 (arg1
)->SetSelection(arg2
,arg3
);
13523 wxPyEndAllowThreads(__tstate
);
13524 if (PyErr_Occurred()) SWIG_fail
;
13526 Py_INCREF(Py_None
); resultobj
= Py_None
;
13533 static PyObject
*_wrap_SpinCtrl_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13534 PyObject
*resultobj
= NULL
;
13535 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
13536 wxVisualAttributes result
;
13537 PyObject
* obj0
= 0 ;
13538 char *kwnames
[] = {
13539 (char *) "variant", NULL
13542 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:SpinCtrl_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
13545 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
13546 if (SWIG_arg_fail(1)) SWIG_fail
;
13550 if (!wxPyCheckForApp()) SWIG_fail
;
13551 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13552 result
= wxSpinCtrl::GetClassDefaultAttributes(arg1
);
13554 wxPyEndAllowThreads(__tstate
);
13555 if (PyErr_Occurred()) SWIG_fail
;
13558 wxVisualAttributes
* resultptr
;
13559 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
13560 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
13568 static PyObject
* SpinCtrl_swigregister(PyObject
*, PyObject
*args
) {
13570 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
13571 SWIG_TypeClientData(SWIGTYPE_p_wxSpinCtrl
, obj
);
13573 return Py_BuildValue((char *)"");
13575 static PyObject
*_wrap_new_SpinEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13576 PyObject
*resultobj
= NULL
;
13577 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
13578 int arg2
= (int) 0 ;
13579 wxSpinEvent
*result
;
13580 PyObject
* obj0
= 0 ;
13581 PyObject
* obj1
= 0 ;
13582 char *kwnames
[] = {
13583 (char *) "commandType",(char *) "winid", NULL
13586 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_SpinEvent",kwnames
,&obj0
,&obj1
)) goto fail
;
13589 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
13590 if (SWIG_arg_fail(1)) SWIG_fail
;
13595 arg2
= static_cast<int >(SWIG_As_int(obj1
));
13596 if (SWIG_arg_fail(2)) SWIG_fail
;
13600 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13601 result
= (wxSpinEvent
*)new wxSpinEvent(arg1
,arg2
);
13603 wxPyEndAllowThreads(__tstate
);
13604 if (PyErr_Occurred()) SWIG_fail
;
13606 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSpinEvent
, 1);
13613 static PyObject
*_wrap_SpinEvent_GetPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13614 PyObject
*resultobj
= NULL
;
13615 wxSpinEvent
*arg1
= (wxSpinEvent
*) 0 ;
13617 PyObject
* obj0
= 0 ;
13618 char *kwnames
[] = {
13619 (char *) "self", NULL
13622 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SpinEvent_GetPosition",kwnames
,&obj0
)) goto fail
;
13623 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinEvent
, SWIG_POINTER_EXCEPTION
| 0);
13624 if (SWIG_arg_fail(1)) SWIG_fail
;
13626 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13627 result
= (int)((wxSpinEvent
const *)arg1
)->GetPosition();
13629 wxPyEndAllowThreads(__tstate
);
13630 if (PyErr_Occurred()) SWIG_fail
;
13633 resultobj
= SWIG_From_int(static_cast<int >(result
));
13641 static PyObject
*_wrap_SpinEvent_SetPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13642 PyObject
*resultobj
= NULL
;
13643 wxSpinEvent
*arg1
= (wxSpinEvent
*) 0 ;
13645 PyObject
* obj0
= 0 ;
13646 PyObject
* obj1
= 0 ;
13647 char *kwnames
[] = {
13648 (char *) "self",(char *) "pos", NULL
13651 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SpinEvent_SetPosition",kwnames
,&obj0
,&obj1
)) goto fail
;
13652 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSpinEvent
, SWIG_POINTER_EXCEPTION
| 0);
13653 if (SWIG_arg_fail(1)) SWIG_fail
;
13655 arg2
= static_cast<int >(SWIG_As_int(obj1
));
13656 if (SWIG_arg_fail(2)) SWIG_fail
;
13659 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13660 (arg1
)->SetPosition(arg2
);
13662 wxPyEndAllowThreads(__tstate
);
13663 if (PyErr_Occurred()) SWIG_fail
;
13665 Py_INCREF(Py_None
); resultobj
= Py_None
;
13672 static PyObject
* SpinEvent_swigregister(PyObject
*, PyObject
*args
) {
13674 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
13675 SWIG_TypeClientData(SWIGTYPE_p_wxSpinEvent
, obj
);
13677 return Py_BuildValue((char *)"");
13679 static int _wrap_RadioBoxNameStr_set(PyObject
*) {
13680 PyErr_SetString(PyExc_TypeError
,"Variable RadioBoxNameStr is read-only.");
13685 static PyObject
*_wrap_RadioBoxNameStr_get(void) {
13686 PyObject
*pyobj
= NULL
;
13690 pyobj
= PyUnicode_FromWideChar((&wxPyRadioBoxNameStr
)->c_str(), (&wxPyRadioBoxNameStr
)->Len());
13692 pyobj
= PyString_FromStringAndSize((&wxPyRadioBoxNameStr
)->c_str(), (&wxPyRadioBoxNameStr
)->Len());
13699 static int _wrap_RadioButtonNameStr_set(PyObject
*) {
13700 PyErr_SetString(PyExc_TypeError
,"Variable RadioButtonNameStr is read-only.");
13705 static PyObject
*_wrap_RadioButtonNameStr_get(void) {
13706 PyObject
*pyobj
= NULL
;
13710 pyobj
= PyUnicode_FromWideChar((&wxPyRadioButtonNameStr
)->c_str(), (&wxPyRadioButtonNameStr
)->Len());
13712 pyobj
= PyString_FromStringAndSize((&wxPyRadioButtonNameStr
)->c_str(), (&wxPyRadioButtonNameStr
)->Len());
13719 static PyObject
*_wrap_new_RadioBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13720 PyObject
*resultobj
= NULL
;
13721 wxWindow
*arg1
= (wxWindow
*) 0 ;
13722 int arg2
= (int) -1 ;
13723 wxString
const &arg3_defvalue
= wxPyEmptyString
;
13724 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
13725 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
13726 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
13727 wxSize
const &arg5_defvalue
= wxDefaultSize
;
13728 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
13729 wxArrayString
const &arg6_defvalue
= wxPyEmptyStringArray
;
13730 wxArrayString
*arg6
= (wxArrayString
*) &arg6_defvalue
;
13731 int arg7
= (int) 0 ;
13732 long arg8
= (long) wxRA_HORIZONTAL
;
13733 wxValidator
const &arg9_defvalue
= wxDefaultValidator
;
13734 wxValidator
*arg9
= (wxValidator
*) &arg9_defvalue
;
13735 wxString
const &arg10_defvalue
= wxPyRadioBoxNameStr
;
13736 wxString
*arg10
= (wxString
*) &arg10_defvalue
;
13737 wxRadioBox
*result
;
13738 bool temp3
= false ;
13741 bool temp6
= false ;
13742 bool temp10
= false ;
13743 PyObject
* obj0
= 0 ;
13744 PyObject
* obj1
= 0 ;
13745 PyObject
* obj2
= 0 ;
13746 PyObject
* obj3
= 0 ;
13747 PyObject
* obj4
= 0 ;
13748 PyObject
* obj5
= 0 ;
13749 PyObject
* obj6
= 0 ;
13750 PyObject
* obj7
= 0 ;
13751 PyObject
* obj8
= 0 ;
13752 PyObject
* obj9
= 0 ;
13753 char *kwnames
[] = {
13754 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "choices",(char *) "majorDimension",(char *) "style",(char *) "validator",(char *) "name", NULL
13757 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOOOO:new_RadioBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) goto fail
;
13758 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
13759 if (SWIG_arg_fail(1)) SWIG_fail
;
13762 arg2
= static_cast<int >(SWIG_As_int(obj1
));
13763 if (SWIG_arg_fail(2)) SWIG_fail
;
13768 arg3
= wxString_in_helper(obj2
);
13769 if (arg3
== NULL
) SWIG_fail
;
13776 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
13782 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
13787 if (! PySequence_Check(obj5
)) {
13788 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
13791 arg6
= new wxArrayString
;
13793 int i
, len
=PySequence_Length(obj5
);
13794 for (i
=0; i
<len
; i
++) {
13795 PyObject
* item
= PySequence_GetItem(obj5
, i
);
13796 wxString
* s
= wxString_in_helper(item
);
13797 if (PyErr_Occurred()) SWIG_fail
;
13806 arg7
= static_cast<int >(SWIG_As_int(obj6
));
13807 if (SWIG_arg_fail(7)) SWIG_fail
;
13812 arg8
= static_cast<long >(SWIG_As_long(obj7
));
13813 if (SWIG_arg_fail(8)) SWIG_fail
;
13818 SWIG_Python_ConvertPtr(obj8
, (void **)&arg9
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
13819 if (SWIG_arg_fail(9)) SWIG_fail
;
13820 if (arg9
== NULL
) {
13821 SWIG_null_ref("wxValidator");
13823 if (SWIG_arg_fail(9)) SWIG_fail
;
13828 arg10
= wxString_in_helper(obj9
);
13829 if (arg10
== NULL
) SWIG_fail
;
13834 if (!wxPyCheckForApp()) SWIG_fail
;
13835 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13836 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
);
13838 wxPyEndAllowThreads(__tstate
);
13839 if (PyErr_Occurred()) SWIG_fail
;
13841 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxRadioBox
, 1);
13847 if (temp6
) delete arg6
;
13860 if (temp6
) delete arg6
;
13870 static PyObject
*_wrap_new_PreRadioBox(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13871 PyObject
*resultobj
= NULL
;
13872 wxRadioBox
*result
;
13873 char *kwnames
[] = {
13877 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreRadioBox",kwnames
)) goto fail
;
13879 if (!wxPyCheckForApp()) SWIG_fail
;
13880 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13881 result
= (wxRadioBox
*)new wxRadioBox();
13883 wxPyEndAllowThreads(__tstate
);
13884 if (PyErr_Occurred()) SWIG_fail
;
13886 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxRadioBox
, 1);
13893 static PyObject
*_wrap_RadioBox_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
13894 PyObject
*resultobj
= NULL
;
13895 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
13896 wxWindow
*arg2
= (wxWindow
*) 0 ;
13897 int arg3
= (int) -1 ;
13898 wxString
const &arg4_defvalue
= wxPyEmptyString
;
13899 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
13900 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
13901 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
13902 wxSize
const &arg6_defvalue
= wxDefaultSize
;
13903 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
13904 wxArrayString
const &arg7_defvalue
= wxPyEmptyStringArray
;
13905 wxArrayString
*arg7
= (wxArrayString
*) &arg7_defvalue
;
13906 int arg8
= (int) 0 ;
13907 long arg9
= (long) wxRA_HORIZONTAL
;
13908 wxValidator
const &arg10_defvalue
= wxDefaultValidator
;
13909 wxValidator
*arg10
= (wxValidator
*) &arg10_defvalue
;
13910 wxString
const &arg11_defvalue
= wxPyRadioBoxNameStr
;
13911 wxString
*arg11
= (wxString
*) &arg11_defvalue
;
13913 bool temp4
= false ;
13916 bool temp7
= false ;
13917 bool temp11
= false ;
13918 PyObject
* obj0
= 0 ;
13919 PyObject
* obj1
= 0 ;
13920 PyObject
* obj2
= 0 ;
13921 PyObject
* obj3
= 0 ;
13922 PyObject
* obj4
= 0 ;
13923 PyObject
* obj5
= 0 ;
13924 PyObject
* obj6
= 0 ;
13925 PyObject
* obj7
= 0 ;
13926 PyObject
* obj8
= 0 ;
13927 PyObject
* obj9
= 0 ;
13928 PyObject
* obj10
= 0 ;
13929 char *kwnames
[] = {
13930 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "choices",(char *) "majorDimension",(char *) "style",(char *) "validator",(char *) "name", NULL
13933 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOOOO:RadioBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
,&obj10
)) goto fail
;
13934 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
13935 if (SWIG_arg_fail(1)) SWIG_fail
;
13936 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
13937 if (SWIG_arg_fail(2)) SWIG_fail
;
13940 arg3
= static_cast<int >(SWIG_As_int(obj2
));
13941 if (SWIG_arg_fail(3)) SWIG_fail
;
13946 arg4
= wxString_in_helper(obj3
);
13947 if (arg4
== NULL
) SWIG_fail
;
13954 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
13960 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
13965 if (! PySequence_Check(obj6
)) {
13966 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
13969 arg7
= new wxArrayString
;
13971 int i
, len
=PySequence_Length(obj6
);
13972 for (i
=0; i
<len
; i
++) {
13973 PyObject
* item
= PySequence_GetItem(obj6
, i
);
13974 wxString
* s
= wxString_in_helper(item
);
13975 if (PyErr_Occurred()) SWIG_fail
;
13984 arg8
= static_cast<int >(SWIG_As_int(obj7
));
13985 if (SWIG_arg_fail(8)) SWIG_fail
;
13990 arg9
= static_cast<long >(SWIG_As_long(obj8
));
13991 if (SWIG_arg_fail(9)) SWIG_fail
;
13996 SWIG_Python_ConvertPtr(obj9
, (void **)&arg10
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
13997 if (SWIG_arg_fail(10)) SWIG_fail
;
13998 if (arg10
== NULL
) {
13999 SWIG_null_ref("wxValidator");
14001 if (SWIG_arg_fail(10)) SWIG_fail
;
14006 arg11
= wxString_in_helper(obj10
);
14007 if (arg11
== NULL
) SWIG_fail
;
14012 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14013 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
);
14015 wxPyEndAllowThreads(__tstate
);
14016 if (PyErr_Occurred()) SWIG_fail
;
14019 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14026 if (temp7
) delete arg7
;
14039 if (temp7
) delete arg7
;
14049 static PyObject
*_wrap_RadioBox_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14050 PyObject
*resultobj
= NULL
;
14051 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14053 PyObject
* obj0
= 0 ;
14054 PyObject
* obj1
= 0 ;
14055 char *kwnames
[] = {
14056 (char *) "self",(char *) "n", NULL
14059 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:RadioBox_SetSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
14060 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14061 if (SWIG_arg_fail(1)) SWIG_fail
;
14063 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14064 if (SWIG_arg_fail(2)) SWIG_fail
;
14067 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14068 (arg1
)->SetSelection(arg2
);
14070 wxPyEndAllowThreads(__tstate
);
14071 if (PyErr_Occurred()) SWIG_fail
;
14073 Py_INCREF(Py_None
); resultobj
= Py_None
;
14080 static PyObject
*_wrap_RadioBox_GetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14081 PyObject
*resultobj
= NULL
;
14082 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14084 PyObject
* obj0
= 0 ;
14085 char *kwnames
[] = {
14086 (char *) "self", NULL
14089 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RadioBox_GetSelection",kwnames
,&obj0
)) goto fail
;
14090 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14091 if (SWIG_arg_fail(1)) SWIG_fail
;
14093 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14094 result
= (int)((wxRadioBox
const *)arg1
)->GetSelection();
14096 wxPyEndAllowThreads(__tstate
);
14097 if (PyErr_Occurred()) SWIG_fail
;
14100 resultobj
= SWIG_From_int(static_cast<int >(result
));
14108 static PyObject
*_wrap_RadioBox_GetStringSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14109 PyObject
*resultobj
= NULL
;
14110 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14112 PyObject
* obj0
= 0 ;
14113 char *kwnames
[] = {
14114 (char *) "self", NULL
14117 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RadioBox_GetStringSelection",kwnames
,&obj0
)) goto fail
;
14118 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14119 if (SWIG_arg_fail(1)) SWIG_fail
;
14121 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14122 result
= ((wxRadioBox
const *)arg1
)->GetStringSelection();
14124 wxPyEndAllowThreads(__tstate
);
14125 if (PyErr_Occurred()) SWIG_fail
;
14129 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
14131 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
14140 static PyObject
*_wrap_RadioBox_SetStringSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14141 PyObject
*resultobj
= NULL
;
14142 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14143 wxString
*arg2
= 0 ;
14145 bool temp2
= false ;
14146 PyObject
* obj0
= 0 ;
14147 PyObject
* obj1
= 0 ;
14148 char *kwnames
[] = {
14149 (char *) "self",(char *) "s", NULL
14152 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:RadioBox_SetStringSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
14153 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14154 if (SWIG_arg_fail(1)) SWIG_fail
;
14156 arg2
= wxString_in_helper(obj1
);
14157 if (arg2
== NULL
) SWIG_fail
;
14161 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14162 result
= (bool)(arg1
)->SetStringSelection((wxString
const &)*arg2
);
14164 wxPyEndAllowThreads(__tstate
);
14165 if (PyErr_Occurred()) SWIG_fail
;
14168 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14184 static PyObject
*_wrap_RadioBox_GetCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14185 PyObject
*resultobj
= NULL
;
14186 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14188 PyObject
* obj0
= 0 ;
14189 char *kwnames
[] = {
14190 (char *) "self", NULL
14193 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RadioBox_GetCount",kwnames
,&obj0
)) goto fail
;
14194 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14195 if (SWIG_arg_fail(1)) SWIG_fail
;
14197 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14198 result
= (int)((wxRadioBox
const *)arg1
)->GetCount();
14200 wxPyEndAllowThreads(__tstate
);
14201 if (PyErr_Occurred()) SWIG_fail
;
14204 resultobj
= SWIG_From_int(static_cast<int >(result
));
14212 static PyObject
*_wrap_RadioBox_FindString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14213 PyObject
*resultobj
= NULL
;
14214 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14215 wxString
*arg2
= 0 ;
14217 bool temp2
= false ;
14218 PyObject
* obj0
= 0 ;
14219 PyObject
* obj1
= 0 ;
14220 char *kwnames
[] = {
14221 (char *) "self",(char *) "s", NULL
14224 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:RadioBox_FindString",kwnames
,&obj0
,&obj1
)) goto fail
;
14225 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14226 if (SWIG_arg_fail(1)) SWIG_fail
;
14228 arg2
= wxString_in_helper(obj1
);
14229 if (arg2
== NULL
) SWIG_fail
;
14233 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14234 result
= (int)((wxRadioBox
const *)arg1
)->FindString((wxString
const &)*arg2
);
14236 wxPyEndAllowThreads(__tstate
);
14237 if (PyErr_Occurred()) SWIG_fail
;
14240 resultobj
= SWIG_From_int(static_cast<int >(result
));
14256 static PyObject
*_wrap_RadioBox_GetString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14257 PyObject
*resultobj
= NULL
;
14258 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14261 PyObject
* obj0
= 0 ;
14262 PyObject
* obj1
= 0 ;
14263 char *kwnames
[] = {
14264 (char *) "self",(char *) "n", NULL
14267 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:RadioBox_GetString",kwnames
,&obj0
,&obj1
)) goto fail
;
14268 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14269 if (SWIG_arg_fail(1)) SWIG_fail
;
14271 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14272 if (SWIG_arg_fail(2)) SWIG_fail
;
14275 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14276 result
= ((wxRadioBox
const *)arg1
)->GetString(arg2
);
14278 wxPyEndAllowThreads(__tstate
);
14279 if (PyErr_Occurred()) SWIG_fail
;
14283 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
14285 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
14294 static PyObject
*_wrap_RadioBox_SetString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14295 PyObject
*resultobj
= NULL
;
14296 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14298 wxString
*arg3
= 0 ;
14299 bool temp3
= false ;
14300 PyObject
* obj0
= 0 ;
14301 PyObject
* obj1
= 0 ;
14302 PyObject
* obj2
= 0 ;
14303 char *kwnames
[] = {
14304 (char *) "self",(char *) "n",(char *) "label", NULL
14307 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:RadioBox_SetString",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
14308 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14309 if (SWIG_arg_fail(1)) SWIG_fail
;
14311 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14312 if (SWIG_arg_fail(2)) SWIG_fail
;
14315 arg3
= wxString_in_helper(obj2
);
14316 if (arg3
== NULL
) SWIG_fail
;
14320 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14321 (arg1
)->SetString(arg2
,(wxString
const &)*arg3
);
14323 wxPyEndAllowThreads(__tstate
);
14324 if (PyErr_Occurred()) SWIG_fail
;
14326 Py_INCREF(Py_None
); resultobj
= Py_None
;
14341 static PyObject
*_wrap_RadioBox_EnableItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14342 PyObject
*resultobj
= NULL
;
14343 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14345 bool arg3
= (bool) true ;
14346 PyObject
* obj0
= 0 ;
14347 PyObject
* obj1
= 0 ;
14348 PyObject
* obj2
= 0 ;
14349 char *kwnames
[] = {
14350 (char *) "self",(char *) "n",(char *) "enable", NULL
14353 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:RadioBox_EnableItem",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
14354 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14355 if (SWIG_arg_fail(1)) SWIG_fail
;
14357 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14358 if (SWIG_arg_fail(2)) SWIG_fail
;
14362 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
14363 if (SWIG_arg_fail(3)) SWIG_fail
;
14367 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14368 (arg1
)->Enable(arg2
,arg3
);
14370 wxPyEndAllowThreads(__tstate
);
14371 if (PyErr_Occurred()) SWIG_fail
;
14373 Py_INCREF(Py_None
); resultobj
= Py_None
;
14380 static PyObject
*_wrap_RadioBox_ShowItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14381 PyObject
*resultobj
= NULL
;
14382 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14384 bool arg3
= (bool) true ;
14385 PyObject
* obj0
= 0 ;
14386 PyObject
* obj1
= 0 ;
14387 PyObject
* obj2
= 0 ;
14388 char *kwnames
[] = {
14389 (char *) "self",(char *) "n",(char *) "show", NULL
14392 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:RadioBox_ShowItem",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
14393 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14394 if (SWIG_arg_fail(1)) SWIG_fail
;
14396 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14397 if (SWIG_arg_fail(2)) SWIG_fail
;
14401 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
14402 if (SWIG_arg_fail(3)) SWIG_fail
;
14406 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14407 (arg1
)->Show(arg2
,arg3
);
14409 wxPyEndAllowThreads(__tstate
);
14410 if (PyErr_Occurred()) SWIG_fail
;
14412 Py_INCREF(Py_None
); resultobj
= Py_None
;
14419 static PyObject
*_wrap_RadioBox_GetColumnCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14420 PyObject
*resultobj
= NULL
;
14421 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14423 PyObject
* obj0
= 0 ;
14424 char *kwnames
[] = {
14425 (char *) "self", NULL
14428 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RadioBox_GetColumnCount",kwnames
,&obj0
)) goto fail
;
14429 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14430 if (SWIG_arg_fail(1)) SWIG_fail
;
14432 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14433 result
= (int)wxRadioBox_GetColumnCount((wxRadioBox
const *)arg1
);
14435 wxPyEndAllowThreads(__tstate
);
14436 if (PyErr_Occurred()) SWIG_fail
;
14439 resultobj
= SWIG_From_int(static_cast<int >(result
));
14447 static PyObject
*_wrap_RadioBox_GetRowCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14448 PyObject
*resultobj
= NULL
;
14449 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14451 PyObject
* obj0
= 0 ;
14452 char *kwnames
[] = {
14453 (char *) "self", NULL
14456 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RadioBox_GetRowCount",kwnames
,&obj0
)) goto fail
;
14457 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14458 if (SWIG_arg_fail(1)) SWIG_fail
;
14460 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14461 result
= (int)wxRadioBox_GetRowCount((wxRadioBox
const *)arg1
);
14463 wxPyEndAllowThreads(__tstate
);
14464 if (PyErr_Occurred()) SWIG_fail
;
14467 resultobj
= SWIG_From_int(static_cast<int >(result
));
14475 static PyObject
*_wrap_RadioBox_GetNextItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14476 PyObject
*resultobj
= NULL
;
14477 wxRadioBox
*arg1
= (wxRadioBox
*) 0 ;
14482 PyObject
* obj0
= 0 ;
14483 PyObject
* obj1
= 0 ;
14484 PyObject
* obj2
= 0 ;
14485 PyObject
* obj3
= 0 ;
14486 char *kwnames
[] = {
14487 (char *) "self",(char *) "item",(char *) "dir",(char *) "style", NULL
14490 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:RadioBox_GetNextItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
14491 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioBox
, SWIG_POINTER_EXCEPTION
| 0);
14492 if (SWIG_arg_fail(1)) SWIG_fail
;
14494 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14495 if (SWIG_arg_fail(2)) SWIG_fail
;
14498 arg3
= static_cast<wxDirection
>(SWIG_As_int(obj2
));
14499 if (SWIG_arg_fail(3)) SWIG_fail
;
14502 arg4
= static_cast<long >(SWIG_As_long(obj3
));
14503 if (SWIG_arg_fail(4)) SWIG_fail
;
14506 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14507 result
= (int)wxRadioBox_GetNextItem((wxRadioBox
const *)arg1
,arg2
,arg3
,arg4
);
14509 wxPyEndAllowThreads(__tstate
);
14510 if (PyErr_Occurred()) SWIG_fail
;
14513 resultobj
= SWIG_From_int(static_cast<int >(result
));
14521 static PyObject
*_wrap_RadioBox_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14522 PyObject
*resultobj
= NULL
;
14523 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
14524 wxVisualAttributes result
;
14525 PyObject
* obj0
= 0 ;
14526 char *kwnames
[] = {
14527 (char *) "variant", NULL
14530 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:RadioBox_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
14533 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
14534 if (SWIG_arg_fail(1)) SWIG_fail
;
14538 if (!wxPyCheckForApp()) SWIG_fail
;
14539 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14540 result
= wxRadioBox::GetClassDefaultAttributes(arg1
);
14542 wxPyEndAllowThreads(__tstate
);
14543 if (PyErr_Occurred()) SWIG_fail
;
14546 wxVisualAttributes
* resultptr
;
14547 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
14548 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
14556 static PyObject
* RadioBox_swigregister(PyObject
*, PyObject
*args
) {
14558 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
14559 SWIG_TypeClientData(SWIGTYPE_p_wxRadioBox
, obj
);
14561 return Py_BuildValue((char *)"");
14563 static PyObject
*_wrap_new_RadioButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14564 PyObject
*resultobj
= NULL
;
14565 wxWindow
*arg1
= (wxWindow
*) 0 ;
14566 int arg2
= (int) -1 ;
14567 wxString
const &arg3_defvalue
= wxPyEmptyString
;
14568 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
14569 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
14570 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
14571 wxSize
const &arg5_defvalue
= wxDefaultSize
;
14572 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
14573 long arg6
= (long) 0 ;
14574 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
14575 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
14576 wxString
const &arg8_defvalue
= wxPyRadioButtonNameStr
;
14577 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
14578 wxRadioButton
*result
;
14579 bool temp3
= false ;
14582 bool temp8
= false ;
14583 PyObject
* obj0
= 0 ;
14584 PyObject
* obj1
= 0 ;
14585 PyObject
* obj2
= 0 ;
14586 PyObject
* obj3
= 0 ;
14587 PyObject
* obj4
= 0 ;
14588 PyObject
* obj5
= 0 ;
14589 PyObject
* obj6
= 0 ;
14590 PyObject
* obj7
= 0 ;
14591 char *kwnames
[] = {
14592 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
14595 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_RadioButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
14596 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
14597 if (SWIG_arg_fail(1)) SWIG_fail
;
14600 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14601 if (SWIG_arg_fail(2)) SWIG_fail
;
14606 arg3
= wxString_in_helper(obj2
);
14607 if (arg3
== NULL
) SWIG_fail
;
14614 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
14620 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
14625 arg6
= static_cast<long >(SWIG_As_long(obj5
));
14626 if (SWIG_arg_fail(6)) SWIG_fail
;
14631 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
14632 if (SWIG_arg_fail(7)) SWIG_fail
;
14633 if (arg7
== NULL
) {
14634 SWIG_null_ref("wxValidator");
14636 if (SWIG_arg_fail(7)) SWIG_fail
;
14641 arg8
= wxString_in_helper(obj7
);
14642 if (arg8
== NULL
) SWIG_fail
;
14647 if (!wxPyCheckForApp()) SWIG_fail
;
14648 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14649 result
= (wxRadioButton
*)new wxRadioButton(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
14651 wxPyEndAllowThreads(__tstate
);
14652 if (PyErr_Occurred()) SWIG_fail
;
14654 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxRadioButton
, 1);
14677 static PyObject
*_wrap_new_PreRadioButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14678 PyObject
*resultobj
= NULL
;
14679 wxRadioButton
*result
;
14680 char *kwnames
[] = {
14684 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreRadioButton",kwnames
)) goto fail
;
14686 if (!wxPyCheckForApp()) SWIG_fail
;
14687 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14688 result
= (wxRadioButton
*)new wxRadioButton();
14690 wxPyEndAllowThreads(__tstate
);
14691 if (PyErr_Occurred()) SWIG_fail
;
14693 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxRadioButton
, 1);
14700 static PyObject
*_wrap_RadioButton_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14701 PyObject
*resultobj
= NULL
;
14702 wxRadioButton
*arg1
= (wxRadioButton
*) 0 ;
14703 wxWindow
*arg2
= (wxWindow
*) 0 ;
14704 int arg3
= (int) -1 ;
14705 wxString
const &arg4_defvalue
= wxPyEmptyString
;
14706 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
14707 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
14708 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
14709 wxSize
const &arg6_defvalue
= wxDefaultSize
;
14710 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
14711 long arg7
= (long) 0 ;
14712 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
14713 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
14714 wxString
const &arg9_defvalue
= wxPyRadioButtonNameStr
;
14715 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
14717 bool temp4
= false ;
14720 bool temp9
= false ;
14721 PyObject
* obj0
= 0 ;
14722 PyObject
* obj1
= 0 ;
14723 PyObject
* obj2
= 0 ;
14724 PyObject
* obj3
= 0 ;
14725 PyObject
* obj4
= 0 ;
14726 PyObject
* obj5
= 0 ;
14727 PyObject
* obj6
= 0 ;
14728 PyObject
* obj7
= 0 ;
14729 PyObject
* obj8
= 0 ;
14730 char *kwnames
[] = {
14731 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
14734 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:RadioButton_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
14735 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioButton
, SWIG_POINTER_EXCEPTION
| 0);
14736 if (SWIG_arg_fail(1)) SWIG_fail
;
14737 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
14738 if (SWIG_arg_fail(2)) SWIG_fail
;
14741 arg3
= static_cast<int >(SWIG_As_int(obj2
));
14742 if (SWIG_arg_fail(3)) SWIG_fail
;
14747 arg4
= wxString_in_helper(obj3
);
14748 if (arg4
== NULL
) SWIG_fail
;
14755 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
14761 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
14766 arg7
= static_cast<long >(SWIG_As_long(obj6
));
14767 if (SWIG_arg_fail(7)) SWIG_fail
;
14772 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
14773 if (SWIG_arg_fail(8)) SWIG_fail
;
14774 if (arg8
== NULL
) {
14775 SWIG_null_ref("wxValidator");
14777 if (SWIG_arg_fail(8)) SWIG_fail
;
14782 arg9
= wxString_in_helper(obj8
);
14783 if (arg9
== NULL
) SWIG_fail
;
14788 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14789 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
14791 wxPyEndAllowThreads(__tstate
);
14792 if (PyErr_Occurred()) SWIG_fail
;
14795 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14819 static PyObject
*_wrap_RadioButton_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14820 PyObject
*resultobj
= NULL
;
14821 wxRadioButton
*arg1
= (wxRadioButton
*) 0 ;
14823 PyObject
* obj0
= 0 ;
14824 char *kwnames
[] = {
14825 (char *) "self", NULL
14828 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:RadioButton_GetValue",kwnames
,&obj0
)) goto fail
;
14829 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioButton
, SWIG_POINTER_EXCEPTION
| 0);
14830 if (SWIG_arg_fail(1)) SWIG_fail
;
14832 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14833 result
= (bool)(arg1
)->GetValue();
14835 wxPyEndAllowThreads(__tstate
);
14836 if (PyErr_Occurred()) SWIG_fail
;
14839 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14847 static PyObject
*_wrap_RadioButton_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14848 PyObject
*resultobj
= NULL
;
14849 wxRadioButton
*arg1
= (wxRadioButton
*) 0 ;
14851 PyObject
* obj0
= 0 ;
14852 PyObject
* obj1
= 0 ;
14853 char *kwnames
[] = {
14854 (char *) "self",(char *) "value", NULL
14857 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:RadioButton_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
14858 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxRadioButton
, SWIG_POINTER_EXCEPTION
| 0);
14859 if (SWIG_arg_fail(1)) SWIG_fail
;
14861 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
14862 if (SWIG_arg_fail(2)) SWIG_fail
;
14865 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14866 (arg1
)->SetValue(arg2
);
14868 wxPyEndAllowThreads(__tstate
);
14869 if (PyErr_Occurred()) SWIG_fail
;
14871 Py_INCREF(Py_None
); resultobj
= Py_None
;
14878 static PyObject
*_wrap_RadioButton_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14879 PyObject
*resultobj
= NULL
;
14880 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
14881 wxVisualAttributes result
;
14882 PyObject
* obj0
= 0 ;
14883 char *kwnames
[] = {
14884 (char *) "variant", NULL
14887 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:RadioButton_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
14890 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
14891 if (SWIG_arg_fail(1)) SWIG_fail
;
14895 if (!wxPyCheckForApp()) SWIG_fail
;
14896 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14897 result
= wxRadioButton::GetClassDefaultAttributes(arg1
);
14899 wxPyEndAllowThreads(__tstate
);
14900 if (PyErr_Occurred()) SWIG_fail
;
14903 wxVisualAttributes
* resultptr
;
14904 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
14905 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
14913 static PyObject
* RadioButton_swigregister(PyObject
*, PyObject
*args
) {
14915 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
14916 SWIG_TypeClientData(SWIGTYPE_p_wxRadioButton
, obj
);
14918 return Py_BuildValue((char *)"");
14920 static int _wrap_SliderNameStr_set(PyObject
*) {
14921 PyErr_SetString(PyExc_TypeError
,"Variable SliderNameStr is read-only.");
14926 static PyObject
*_wrap_SliderNameStr_get(void) {
14927 PyObject
*pyobj
= NULL
;
14931 pyobj
= PyUnicode_FromWideChar((&wxPySliderNameStr
)->c_str(), (&wxPySliderNameStr
)->Len());
14933 pyobj
= PyString_FromStringAndSize((&wxPySliderNameStr
)->c_str(), (&wxPySliderNameStr
)->Len());
14940 static PyObject
*_wrap_new_Slider(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
14941 PyObject
*resultobj
= NULL
;
14942 wxWindow
*arg1
= (wxWindow
*) 0 ;
14943 int arg2
= (int) -1 ;
14944 int arg3
= (int) 0 ;
14945 int arg4
= (int) 0 ;
14946 int arg5
= (int) 100 ;
14947 wxPoint
const &arg6_defvalue
= wxDefaultPosition
;
14948 wxPoint
*arg6
= (wxPoint
*) &arg6_defvalue
;
14949 wxSize
const &arg7_defvalue
= wxDefaultSize
;
14950 wxSize
*arg7
= (wxSize
*) &arg7_defvalue
;
14951 long arg8
= (long) wxSL_HORIZONTAL
;
14952 wxValidator
const &arg9_defvalue
= wxDefaultValidator
;
14953 wxValidator
*arg9
= (wxValidator
*) &arg9_defvalue
;
14954 wxString
const &arg10_defvalue
= wxPySliderNameStr
;
14955 wxString
*arg10
= (wxString
*) &arg10_defvalue
;
14959 bool temp10
= false ;
14960 PyObject
* obj0
= 0 ;
14961 PyObject
* obj1
= 0 ;
14962 PyObject
* obj2
= 0 ;
14963 PyObject
* obj3
= 0 ;
14964 PyObject
* obj4
= 0 ;
14965 PyObject
* obj5
= 0 ;
14966 PyObject
* obj6
= 0 ;
14967 PyObject
* obj7
= 0 ;
14968 PyObject
* obj8
= 0 ;
14969 PyObject
* obj9
= 0 ;
14970 char *kwnames
[] = {
14971 (char *) "parent",(char *) "id",(char *) "value",(char *) "minValue",(char *) "maxValue",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
14974 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOOOO:new_Slider",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) goto fail
;
14975 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
14976 if (SWIG_arg_fail(1)) SWIG_fail
;
14979 arg2
= static_cast<int >(SWIG_As_int(obj1
));
14980 if (SWIG_arg_fail(2)) SWIG_fail
;
14985 arg3
= static_cast<int >(SWIG_As_int(obj2
));
14986 if (SWIG_arg_fail(3)) SWIG_fail
;
14991 arg4
= static_cast<int >(SWIG_As_int(obj3
));
14992 if (SWIG_arg_fail(4)) SWIG_fail
;
14997 arg5
= static_cast<int >(SWIG_As_int(obj4
));
14998 if (SWIG_arg_fail(5)) SWIG_fail
;
15004 if ( ! wxPoint_helper(obj5
, &arg6
)) SWIG_fail
;
15010 if ( ! wxSize_helper(obj6
, &arg7
)) SWIG_fail
;
15015 arg8
= static_cast<long >(SWIG_As_long(obj7
));
15016 if (SWIG_arg_fail(8)) SWIG_fail
;
15021 SWIG_Python_ConvertPtr(obj8
, (void **)&arg9
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
15022 if (SWIG_arg_fail(9)) SWIG_fail
;
15023 if (arg9
== NULL
) {
15024 SWIG_null_ref("wxValidator");
15026 if (SWIG_arg_fail(9)) SWIG_fail
;
15031 arg10
= wxString_in_helper(obj9
);
15032 if (arg10
== NULL
) SWIG_fail
;
15037 if (!wxPyCheckForApp()) SWIG_fail
;
15038 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15039 result
= (wxSlider
*)new wxSlider(arg1
,arg2
,arg3
,arg4
,arg5
,(wxPoint
const &)*arg6
,(wxSize
const &)*arg7
,arg8
,(wxValidator
const &)*arg9
,(wxString
const &)*arg10
);
15041 wxPyEndAllowThreads(__tstate
);
15042 if (PyErr_Occurred()) SWIG_fail
;
15044 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSlider
, 1);
15059 static PyObject
*_wrap_new_PreSlider(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15060 PyObject
*resultobj
= NULL
;
15062 char *kwnames
[] = {
15066 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreSlider",kwnames
)) goto fail
;
15068 if (!wxPyCheckForApp()) SWIG_fail
;
15069 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15070 result
= (wxSlider
*)new wxSlider();
15072 wxPyEndAllowThreads(__tstate
);
15073 if (PyErr_Occurred()) SWIG_fail
;
15075 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSlider
, 1);
15082 static PyObject
*_wrap_Slider_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15083 PyObject
*resultobj
= NULL
;
15084 wxSlider
*arg1
= (wxSlider
*) 0 ;
15085 wxWindow
*arg2
= (wxWindow
*) 0 ;
15086 int arg3
= (int) -1 ;
15087 int arg4
= (int) 0 ;
15088 int arg5
= (int) 0 ;
15089 int arg6
= (int) 100 ;
15090 wxPoint
const &arg7_defvalue
= wxDefaultPosition
;
15091 wxPoint
*arg7
= (wxPoint
*) &arg7_defvalue
;
15092 wxSize
const &arg8_defvalue
= wxDefaultSize
;
15093 wxSize
*arg8
= (wxSize
*) &arg8_defvalue
;
15094 long arg9
= (long) wxSL_HORIZONTAL
;
15095 wxValidator
const &arg10_defvalue
= wxDefaultValidator
;
15096 wxValidator
*arg10
= (wxValidator
*) &arg10_defvalue
;
15097 wxString
const &arg11_defvalue
= wxPySliderNameStr
;
15098 wxString
*arg11
= (wxString
*) &arg11_defvalue
;
15102 bool temp11
= false ;
15103 PyObject
* obj0
= 0 ;
15104 PyObject
* obj1
= 0 ;
15105 PyObject
* obj2
= 0 ;
15106 PyObject
* obj3
= 0 ;
15107 PyObject
* obj4
= 0 ;
15108 PyObject
* obj5
= 0 ;
15109 PyObject
* obj6
= 0 ;
15110 PyObject
* obj7
= 0 ;
15111 PyObject
* obj8
= 0 ;
15112 PyObject
* obj9
= 0 ;
15113 PyObject
* obj10
= 0 ;
15114 char *kwnames
[] = {
15115 (char *) "self",(char *) "parent",(char *) "id",(char *) "value",(char *) "minValue",(char *) "maxValue",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
15118 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOOOO:Slider_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
,&obj10
)) goto fail
;
15119 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15120 if (SWIG_arg_fail(1)) SWIG_fail
;
15121 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
15122 if (SWIG_arg_fail(2)) SWIG_fail
;
15125 arg3
= static_cast<int >(SWIG_As_int(obj2
));
15126 if (SWIG_arg_fail(3)) SWIG_fail
;
15131 arg4
= static_cast<int >(SWIG_As_int(obj3
));
15132 if (SWIG_arg_fail(4)) SWIG_fail
;
15137 arg5
= static_cast<int >(SWIG_As_int(obj4
));
15138 if (SWIG_arg_fail(5)) SWIG_fail
;
15143 arg6
= static_cast<int >(SWIG_As_int(obj5
));
15144 if (SWIG_arg_fail(6)) SWIG_fail
;
15150 if ( ! wxPoint_helper(obj6
, &arg7
)) SWIG_fail
;
15156 if ( ! wxSize_helper(obj7
, &arg8
)) SWIG_fail
;
15161 arg9
= static_cast<long >(SWIG_As_long(obj8
));
15162 if (SWIG_arg_fail(9)) SWIG_fail
;
15167 SWIG_Python_ConvertPtr(obj9
, (void **)&arg10
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
15168 if (SWIG_arg_fail(10)) SWIG_fail
;
15169 if (arg10
== NULL
) {
15170 SWIG_null_ref("wxValidator");
15172 if (SWIG_arg_fail(10)) SWIG_fail
;
15177 arg11
= wxString_in_helper(obj10
);
15178 if (arg11
== NULL
) SWIG_fail
;
15183 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15184 result
= (bool)(arg1
)->Create(arg2
,arg3
,arg4
,arg5
,arg6
,(wxPoint
const &)*arg7
,(wxSize
const &)*arg8
,arg9
,(wxValidator
const &)*arg10
,(wxString
const &)*arg11
);
15186 wxPyEndAllowThreads(__tstate
);
15187 if (PyErr_Occurred()) SWIG_fail
;
15190 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15206 static PyObject
*_wrap_Slider_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15207 PyObject
*resultobj
= NULL
;
15208 wxSlider
*arg1
= (wxSlider
*) 0 ;
15210 PyObject
* obj0
= 0 ;
15211 char *kwnames
[] = {
15212 (char *) "self", NULL
15215 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetValue",kwnames
,&obj0
)) goto fail
;
15216 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15217 if (SWIG_arg_fail(1)) SWIG_fail
;
15219 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15220 result
= (int)((wxSlider
const *)arg1
)->GetValue();
15222 wxPyEndAllowThreads(__tstate
);
15223 if (PyErr_Occurred()) SWIG_fail
;
15226 resultobj
= SWIG_From_int(static_cast<int >(result
));
15234 static PyObject
*_wrap_Slider_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15235 PyObject
*resultobj
= NULL
;
15236 wxSlider
*arg1
= (wxSlider
*) 0 ;
15238 PyObject
* obj0
= 0 ;
15239 PyObject
* obj1
= 0 ;
15240 char *kwnames
[] = {
15241 (char *) "self",(char *) "value", NULL
15244 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Slider_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
15245 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15246 if (SWIG_arg_fail(1)) SWIG_fail
;
15248 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15249 if (SWIG_arg_fail(2)) SWIG_fail
;
15252 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15253 (arg1
)->SetValue(arg2
);
15255 wxPyEndAllowThreads(__tstate
);
15256 if (PyErr_Occurred()) SWIG_fail
;
15258 Py_INCREF(Py_None
); resultobj
= Py_None
;
15265 static PyObject
*_wrap_Slider_SetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15266 PyObject
*resultobj
= NULL
;
15267 wxSlider
*arg1
= (wxSlider
*) 0 ;
15270 PyObject
* obj0
= 0 ;
15271 PyObject
* obj1
= 0 ;
15272 PyObject
* obj2
= 0 ;
15273 char *kwnames
[] = {
15274 (char *) "self",(char *) "minValue",(char *) "maxValue", NULL
15277 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Slider_SetRange",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
15278 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15279 if (SWIG_arg_fail(1)) SWIG_fail
;
15281 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15282 if (SWIG_arg_fail(2)) SWIG_fail
;
15285 arg3
= static_cast<int >(SWIG_As_int(obj2
));
15286 if (SWIG_arg_fail(3)) SWIG_fail
;
15289 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15290 (arg1
)->SetRange(arg2
,arg3
);
15292 wxPyEndAllowThreads(__tstate
);
15293 if (PyErr_Occurred()) SWIG_fail
;
15295 Py_INCREF(Py_None
); resultobj
= Py_None
;
15302 static PyObject
*_wrap_Slider_GetMin(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15303 PyObject
*resultobj
= NULL
;
15304 wxSlider
*arg1
= (wxSlider
*) 0 ;
15306 PyObject
* obj0
= 0 ;
15307 char *kwnames
[] = {
15308 (char *) "self", NULL
15311 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetMin",kwnames
,&obj0
)) goto fail
;
15312 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15313 if (SWIG_arg_fail(1)) SWIG_fail
;
15315 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15316 result
= (int)((wxSlider
const *)arg1
)->GetMin();
15318 wxPyEndAllowThreads(__tstate
);
15319 if (PyErr_Occurred()) SWIG_fail
;
15322 resultobj
= SWIG_From_int(static_cast<int >(result
));
15330 static PyObject
*_wrap_Slider_GetMax(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15331 PyObject
*resultobj
= NULL
;
15332 wxSlider
*arg1
= (wxSlider
*) 0 ;
15334 PyObject
* obj0
= 0 ;
15335 char *kwnames
[] = {
15336 (char *) "self", NULL
15339 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetMax",kwnames
,&obj0
)) goto fail
;
15340 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15341 if (SWIG_arg_fail(1)) SWIG_fail
;
15343 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15344 result
= (int)((wxSlider
const *)arg1
)->GetMax();
15346 wxPyEndAllowThreads(__tstate
);
15347 if (PyErr_Occurred()) SWIG_fail
;
15350 resultobj
= SWIG_From_int(static_cast<int >(result
));
15358 static PyObject
*_wrap_Slider_SetMin(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15359 PyObject
*resultobj
= NULL
;
15360 wxSlider
*arg1
= (wxSlider
*) 0 ;
15362 PyObject
* obj0
= 0 ;
15363 PyObject
* obj1
= 0 ;
15364 char *kwnames
[] = {
15365 (char *) "self",(char *) "minValue", NULL
15368 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Slider_SetMin",kwnames
,&obj0
,&obj1
)) goto fail
;
15369 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15370 if (SWIG_arg_fail(1)) SWIG_fail
;
15372 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15373 if (SWIG_arg_fail(2)) SWIG_fail
;
15376 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15377 (arg1
)->SetMin(arg2
);
15379 wxPyEndAllowThreads(__tstate
);
15380 if (PyErr_Occurred()) SWIG_fail
;
15382 Py_INCREF(Py_None
); resultobj
= Py_None
;
15389 static PyObject
*_wrap_Slider_SetMax(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15390 PyObject
*resultobj
= NULL
;
15391 wxSlider
*arg1
= (wxSlider
*) 0 ;
15393 PyObject
* obj0
= 0 ;
15394 PyObject
* obj1
= 0 ;
15395 char *kwnames
[] = {
15396 (char *) "self",(char *) "maxValue", NULL
15399 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Slider_SetMax",kwnames
,&obj0
,&obj1
)) goto fail
;
15400 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15401 if (SWIG_arg_fail(1)) SWIG_fail
;
15403 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15404 if (SWIG_arg_fail(2)) SWIG_fail
;
15407 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15408 (arg1
)->SetMax(arg2
);
15410 wxPyEndAllowThreads(__tstate
);
15411 if (PyErr_Occurred()) SWIG_fail
;
15413 Py_INCREF(Py_None
); resultobj
= Py_None
;
15420 static PyObject
*_wrap_Slider_SetLineSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15421 PyObject
*resultobj
= NULL
;
15422 wxSlider
*arg1
= (wxSlider
*) 0 ;
15424 PyObject
* obj0
= 0 ;
15425 PyObject
* obj1
= 0 ;
15426 char *kwnames
[] = {
15427 (char *) "self",(char *) "lineSize", NULL
15430 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Slider_SetLineSize",kwnames
,&obj0
,&obj1
)) goto fail
;
15431 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15432 if (SWIG_arg_fail(1)) SWIG_fail
;
15434 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15435 if (SWIG_arg_fail(2)) SWIG_fail
;
15438 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15439 (arg1
)->SetLineSize(arg2
);
15441 wxPyEndAllowThreads(__tstate
);
15442 if (PyErr_Occurred()) SWIG_fail
;
15444 Py_INCREF(Py_None
); resultobj
= Py_None
;
15451 static PyObject
*_wrap_Slider_SetPageSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15452 PyObject
*resultobj
= NULL
;
15453 wxSlider
*arg1
= (wxSlider
*) 0 ;
15455 PyObject
* obj0
= 0 ;
15456 PyObject
* obj1
= 0 ;
15457 char *kwnames
[] = {
15458 (char *) "self",(char *) "pageSize", NULL
15461 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Slider_SetPageSize",kwnames
,&obj0
,&obj1
)) goto fail
;
15462 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15463 if (SWIG_arg_fail(1)) SWIG_fail
;
15465 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15466 if (SWIG_arg_fail(2)) SWIG_fail
;
15469 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15470 (arg1
)->SetPageSize(arg2
);
15472 wxPyEndAllowThreads(__tstate
);
15473 if (PyErr_Occurred()) SWIG_fail
;
15475 Py_INCREF(Py_None
); resultobj
= Py_None
;
15482 static PyObject
*_wrap_Slider_GetLineSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15483 PyObject
*resultobj
= NULL
;
15484 wxSlider
*arg1
= (wxSlider
*) 0 ;
15486 PyObject
* obj0
= 0 ;
15487 char *kwnames
[] = {
15488 (char *) "self", NULL
15491 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetLineSize",kwnames
,&obj0
)) goto fail
;
15492 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15493 if (SWIG_arg_fail(1)) SWIG_fail
;
15495 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15496 result
= (int)((wxSlider
const *)arg1
)->GetLineSize();
15498 wxPyEndAllowThreads(__tstate
);
15499 if (PyErr_Occurred()) SWIG_fail
;
15502 resultobj
= SWIG_From_int(static_cast<int >(result
));
15510 static PyObject
*_wrap_Slider_GetPageSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15511 PyObject
*resultobj
= NULL
;
15512 wxSlider
*arg1
= (wxSlider
*) 0 ;
15514 PyObject
* obj0
= 0 ;
15515 char *kwnames
[] = {
15516 (char *) "self", NULL
15519 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetPageSize",kwnames
,&obj0
)) goto fail
;
15520 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15521 if (SWIG_arg_fail(1)) SWIG_fail
;
15523 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15524 result
= (int)((wxSlider
const *)arg1
)->GetPageSize();
15526 wxPyEndAllowThreads(__tstate
);
15527 if (PyErr_Occurred()) SWIG_fail
;
15530 resultobj
= SWIG_From_int(static_cast<int >(result
));
15538 static PyObject
*_wrap_Slider_SetThumbLength(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15539 PyObject
*resultobj
= NULL
;
15540 wxSlider
*arg1
= (wxSlider
*) 0 ;
15542 PyObject
* obj0
= 0 ;
15543 PyObject
* obj1
= 0 ;
15544 char *kwnames
[] = {
15545 (char *) "self",(char *) "lenPixels", NULL
15548 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Slider_SetThumbLength",kwnames
,&obj0
,&obj1
)) goto fail
;
15549 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15550 if (SWIG_arg_fail(1)) SWIG_fail
;
15552 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15553 if (SWIG_arg_fail(2)) SWIG_fail
;
15556 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15557 (arg1
)->SetThumbLength(arg2
);
15559 wxPyEndAllowThreads(__tstate
);
15560 if (PyErr_Occurred()) SWIG_fail
;
15562 Py_INCREF(Py_None
); resultobj
= Py_None
;
15569 static PyObject
*_wrap_Slider_GetThumbLength(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15570 PyObject
*resultobj
= NULL
;
15571 wxSlider
*arg1
= (wxSlider
*) 0 ;
15573 PyObject
* obj0
= 0 ;
15574 char *kwnames
[] = {
15575 (char *) "self", NULL
15578 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetThumbLength",kwnames
,&obj0
)) goto fail
;
15579 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15580 if (SWIG_arg_fail(1)) SWIG_fail
;
15582 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15583 result
= (int)((wxSlider
const *)arg1
)->GetThumbLength();
15585 wxPyEndAllowThreads(__tstate
);
15586 if (PyErr_Occurred()) SWIG_fail
;
15589 resultobj
= SWIG_From_int(static_cast<int >(result
));
15597 static PyObject
*_wrap_Slider_SetTickFreq(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15598 PyObject
*resultobj
= NULL
;
15599 wxSlider
*arg1
= (wxSlider
*) 0 ;
15601 int arg3
= (int) 1 ;
15602 PyObject
* obj0
= 0 ;
15603 PyObject
* obj1
= 0 ;
15604 PyObject
* obj2
= 0 ;
15605 char *kwnames
[] = {
15606 (char *) "self",(char *) "n",(char *) "pos", NULL
15609 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:Slider_SetTickFreq",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
15610 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15611 if (SWIG_arg_fail(1)) SWIG_fail
;
15613 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15614 if (SWIG_arg_fail(2)) SWIG_fail
;
15618 arg3
= static_cast<int >(SWIG_As_int(obj2
));
15619 if (SWIG_arg_fail(3)) SWIG_fail
;
15623 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15624 (arg1
)->SetTickFreq(arg2
,arg3
);
15626 wxPyEndAllowThreads(__tstate
);
15627 if (PyErr_Occurred()) SWIG_fail
;
15629 Py_INCREF(Py_None
); resultobj
= Py_None
;
15636 static PyObject
*_wrap_Slider_GetTickFreq(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15637 PyObject
*resultobj
= NULL
;
15638 wxSlider
*arg1
= (wxSlider
*) 0 ;
15640 PyObject
* obj0
= 0 ;
15641 char *kwnames
[] = {
15642 (char *) "self", NULL
15645 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetTickFreq",kwnames
,&obj0
)) goto fail
;
15646 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15647 if (SWIG_arg_fail(1)) SWIG_fail
;
15649 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15650 result
= (int)((wxSlider
const *)arg1
)->GetTickFreq();
15652 wxPyEndAllowThreads(__tstate
);
15653 if (PyErr_Occurred()) SWIG_fail
;
15656 resultobj
= SWIG_From_int(static_cast<int >(result
));
15664 static PyObject
*_wrap_Slider_ClearTicks(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15665 PyObject
*resultobj
= NULL
;
15666 wxSlider
*arg1
= (wxSlider
*) 0 ;
15667 PyObject
* obj0
= 0 ;
15668 char *kwnames
[] = {
15669 (char *) "self", NULL
15672 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_ClearTicks",kwnames
,&obj0
)) goto fail
;
15673 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15674 if (SWIG_arg_fail(1)) SWIG_fail
;
15676 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15677 (arg1
)->ClearTicks();
15679 wxPyEndAllowThreads(__tstate
);
15680 if (PyErr_Occurred()) SWIG_fail
;
15682 Py_INCREF(Py_None
); resultobj
= Py_None
;
15689 static PyObject
*_wrap_Slider_SetTick(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15690 PyObject
*resultobj
= NULL
;
15691 wxSlider
*arg1
= (wxSlider
*) 0 ;
15693 PyObject
* obj0
= 0 ;
15694 PyObject
* obj1
= 0 ;
15695 char *kwnames
[] = {
15696 (char *) "self",(char *) "tickPos", NULL
15699 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Slider_SetTick",kwnames
,&obj0
,&obj1
)) goto fail
;
15700 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15701 if (SWIG_arg_fail(1)) SWIG_fail
;
15703 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15704 if (SWIG_arg_fail(2)) SWIG_fail
;
15707 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15708 (arg1
)->SetTick(arg2
);
15710 wxPyEndAllowThreads(__tstate
);
15711 if (PyErr_Occurred()) SWIG_fail
;
15713 Py_INCREF(Py_None
); resultobj
= Py_None
;
15720 static PyObject
*_wrap_Slider_ClearSel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15721 PyObject
*resultobj
= NULL
;
15722 wxSlider
*arg1
= (wxSlider
*) 0 ;
15723 PyObject
* obj0
= 0 ;
15724 char *kwnames
[] = {
15725 (char *) "self", NULL
15728 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_ClearSel",kwnames
,&obj0
)) goto fail
;
15729 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15730 if (SWIG_arg_fail(1)) SWIG_fail
;
15732 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15733 (arg1
)->ClearSel();
15735 wxPyEndAllowThreads(__tstate
);
15736 if (PyErr_Occurred()) SWIG_fail
;
15738 Py_INCREF(Py_None
); resultobj
= Py_None
;
15745 static PyObject
*_wrap_Slider_GetSelEnd(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15746 PyObject
*resultobj
= NULL
;
15747 wxSlider
*arg1
= (wxSlider
*) 0 ;
15749 PyObject
* obj0
= 0 ;
15750 char *kwnames
[] = {
15751 (char *) "self", NULL
15754 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetSelEnd",kwnames
,&obj0
)) goto fail
;
15755 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15756 if (SWIG_arg_fail(1)) SWIG_fail
;
15758 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15759 result
= (int)((wxSlider
const *)arg1
)->GetSelEnd();
15761 wxPyEndAllowThreads(__tstate
);
15762 if (PyErr_Occurred()) SWIG_fail
;
15765 resultobj
= SWIG_From_int(static_cast<int >(result
));
15773 static PyObject
*_wrap_Slider_GetSelStart(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15774 PyObject
*resultobj
= NULL
;
15775 wxSlider
*arg1
= (wxSlider
*) 0 ;
15777 PyObject
* obj0
= 0 ;
15778 char *kwnames
[] = {
15779 (char *) "self", NULL
15782 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Slider_GetSelStart",kwnames
,&obj0
)) goto fail
;
15783 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15784 if (SWIG_arg_fail(1)) SWIG_fail
;
15786 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15787 result
= (int)((wxSlider
const *)arg1
)->GetSelStart();
15789 wxPyEndAllowThreads(__tstate
);
15790 if (PyErr_Occurred()) SWIG_fail
;
15793 resultobj
= SWIG_From_int(static_cast<int >(result
));
15801 static PyObject
*_wrap_Slider_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15802 PyObject
*resultobj
= NULL
;
15803 wxSlider
*arg1
= (wxSlider
*) 0 ;
15806 PyObject
* obj0
= 0 ;
15807 PyObject
* obj1
= 0 ;
15808 PyObject
* obj2
= 0 ;
15809 char *kwnames
[] = {
15810 (char *) "self",(char *) "min",(char *) "max", NULL
15813 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Slider_SetSelection",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
15814 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSlider
, SWIG_POINTER_EXCEPTION
| 0);
15815 if (SWIG_arg_fail(1)) SWIG_fail
;
15817 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15818 if (SWIG_arg_fail(2)) SWIG_fail
;
15821 arg3
= static_cast<int >(SWIG_As_int(obj2
));
15822 if (SWIG_arg_fail(3)) SWIG_fail
;
15825 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15826 (arg1
)->SetSelection(arg2
,arg3
);
15828 wxPyEndAllowThreads(__tstate
);
15829 if (PyErr_Occurred()) SWIG_fail
;
15831 Py_INCREF(Py_None
); resultobj
= Py_None
;
15838 static PyObject
*_wrap_Slider_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15839 PyObject
*resultobj
= NULL
;
15840 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
15841 wxVisualAttributes result
;
15842 PyObject
* obj0
= 0 ;
15843 char *kwnames
[] = {
15844 (char *) "variant", NULL
15847 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Slider_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
15850 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
15851 if (SWIG_arg_fail(1)) SWIG_fail
;
15855 if (!wxPyCheckForApp()) SWIG_fail
;
15856 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15857 result
= wxSlider::GetClassDefaultAttributes(arg1
);
15859 wxPyEndAllowThreads(__tstate
);
15860 if (PyErr_Occurred()) SWIG_fail
;
15863 wxVisualAttributes
* resultptr
;
15864 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
15865 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
15873 static PyObject
* Slider_swigregister(PyObject
*, PyObject
*args
) {
15875 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
15876 SWIG_TypeClientData(SWIGTYPE_p_wxSlider
, obj
);
15878 return Py_BuildValue((char *)"");
15880 static int _wrap_ToggleButtonNameStr_set(PyObject
*) {
15881 PyErr_SetString(PyExc_TypeError
,"Variable ToggleButtonNameStr is read-only.");
15886 static PyObject
*_wrap_ToggleButtonNameStr_get(void) {
15887 PyObject
*pyobj
= NULL
;
15891 pyobj
= PyUnicode_FromWideChar((&wxPyToggleButtonNameStr
)->c_str(), (&wxPyToggleButtonNameStr
)->Len());
15893 pyobj
= PyString_FromStringAndSize((&wxPyToggleButtonNameStr
)->c_str(), (&wxPyToggleButtonNameStr
)->Len());
15900 static PyObject
*_wrap_new_ToggleButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
15901 PyObject
*resultobj
= NULL
;
15902 wxWindow
*arg1
= (wxWindow
*) 0 ;
15903 int arg2
= (int) -1 ;
15904 wxString
const &arg3_defvalue
= wxPyEmptyString
;
15905 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
15906 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
15907 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
15908 wxSize
const &arg5_defvalue
= wxDefaultSize
;
15909 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
15910 long arg6
= (long) 0 ;
15911 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
15912 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
15913 wxString
const &arg8_defvalue
= wxPyToggleButtonNameStr
;
15914 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
15915 wxToggleButton
*result
;
15916 bool temp3
= false ;
15919 bool temp8
= false ;
15920 PyObject
* obj0
= 0 ;
15921 PyObject
* obj1
= 0 ;
15922 PyObject
* obj2
= 0 ;
15923 PyObject
* obj3
= 0 ;
15924 PyObject
* obj4
= 0 ;
15925 PyObject
* obj5
= 0 ;
15926 PyObject
* obj6
= 0 ;
15927 PyObject
* obj7
= 0 ;
15928 char *kwnames
[] = {
15929 (char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
15932 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_ToggleButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
15933 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
15934 if (SWIG_arg_fail(1)) SWIG_fail
;
15937 arg2
= static_cast<int >(SWIG_As_int(obj1
));
15938 if (SWIG_arg_fail(2)) SWIG_fail
;
15943 arg3
= wxString_in_helper(obj2
);
15944 if (arg3
== NULL
) SWIG_fail
;
15951 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
15957 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
15962 arg6
= static_cast<long >(SWIG_As_long(obj5
));
15963 if (SWIG_arg_fail(6)) SWIG_fail
;
15968 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
15969 if (SWIG_arg_fail(7)) SWIG_fail
;
15970 if (arg7
== NULL
) {
15971 SWIG_null_ref("wxValidator");
15973 if (SWIG_arg_fail(7)) SWIG_fail
;
15978 arg8
= wxString_in_helper(obj7
);
15979 if (arg8
== NULL
) SWIG_fail
;
15984 if (!wxPyCheckForApp()) SWIG_fail
;
15985 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15986 result
= (wxToggleButton
*)new wxToggleButton(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
15988 wxPyEndAllowThreads(__tstate
);
15989 if (PyErr_Occurred()) SWIG_fail
;
15991 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxToggleButton
, 1);
16014 static PyObject
*_wrap_new_PreToggleButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16015 PyObject
*resultobj
= NULL
;
16016 wxToggleButton
*result
;
16017 char *kwnames
[] = {
16021 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreToggleButton",kwnames
)) goto fail
;
16023 if (!wxPyCheckForApp()) SWIG_fail
;
16024 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16025 result
= (wxToggleButton
*)new wxToggleButton();
16027 wxPyEndAllowThreads(__tstate
);
16028 if (PyErr_Occurred()) SWIG_fail
;
16030 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxToggleButton
, 1);
16037 static PyObject
*_wrap_ToggleButton_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16038 PyObject
*resultobj
= NULL
;
16039 wxToggleButton
*arg1
= (wxToggleButton
*) 0 ;
16040 wxWindow
*arg2
= (wxWindow
*) 0 ;
16041 int arg3
= (int) -1 ;
16042 wxString
const &arg4_defvalue
= wxPyEmptyString
;
16043 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
16044 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
16045 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
16046 wxSize
const &arg6_defvalue
= wxDefaultSize
;
16047 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
16048 long arg7
= (long) 0 ;
16049 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
16050 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
16051 wxString
const &arg9_defvalue
= wxPyToggleButtonNameStr
;
16052 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
16054 bool temp4
= false ;
16057 bool temp9
= false ;
16058 PyObject
* obj0
= 0 ;
16059 PyObject
* obj1
= 0 ;
16060 PyObject
* obj2
= 0 ;
16061 PyObject
* obj3
= 0 ;
16062 PyObject
* obj4
= 0 ;
16063 PyObject
* obj5
= 0 ;
16064 PyObject
* obj6
= 0 ;
16065 PyObject
* obj7
= 0 ;
16066 PyObject
* obj8
= 0 ;
16067 char *kwnames
[] = {
16068 (char *) "self",(char *) "parent",(char *) "id",(char *) "label",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
16071 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:ToggleButton_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
16072 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToggleButton
, SWIG_POINTER_EXCEPTION
| 0);
16073 if (SWIG_arg_fail(1)) SWIG_fail
;
16074 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
16075 if (SWIG_arg_fail(2)) SWIG_fail
;
16078 arg3
= static_cast<int >(SWIG_As_int(obj2
));
16079 if (SWIG_arg_fail(3)) SWIG_fail
;
16084 arg4
= wxString_in_helper(obj3
);
16085 if (arg4
== NULL
) SWIG_fail
;
16092 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
16098 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
16103 arg7
= static_cast<long >(SWIG_As_long(obj6
));
16104 if (SWIG_arg_fail(7)) SWIG_fail
;
16109 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
16110 if (SWIG_arg_fail(8)) SWIG_fail
;
16111 if (arg8
== NULL
) {
16112 SWIG_null_ref("wxValidator");
16114 if (SWIG_arg_fail(8)) SWIG_fail
;
16119 arg9
= wxString_in_helper(obj8
);
16120 if (arg9
== NULL
) SWIG_fail
;
16125 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16126 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
16128 wxPyEndAllowThreads(__tstate
);
16129 if (PyErr_Occurred()) SWIG_fail
;
16132 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16156 static PyObject
*_wrap_ToggleButton_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16157 PyObject
*resultobj
= NULL
;
16158 wxToggleButton
*arg1
= (wxToggleButton
*) 0 ;
16160 PyObject
* obj0
= 0 ;
16161 PyObject
* obj1
= 0 ;
16162 char *kwnames
[] = {
16163 (char *) "self",(char *) "value", NULL
16166 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToggleButton_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
16167 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToggleButton
, SWIG_POINTER_EXCEPTION
| 0);
16168 if (SWIG_arg_fail(1)) SWIG_fail
;
16170 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
16171 if (SWIG_arg_fail(2)) SWIG_fail
;
16174 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16175 (arg1
)->SetValue(arg2
);
16177 wxPyEndAllowThreads(__tstate
);
16178 if (PyErr_Occurred()) SWIG_fail
;
16180 Py_INCREF(Py_None
); resultobj
= Py_None
;
16187 static PyObject
*_wrap_ToggleButton_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16188 PyObject
*resultobj
= NULL
;
16189 wxToggleButton
*arg1
= (wxToggleButton
*) 0 ;
16191 PyObject
* obj0
= 0 ;
16192 char *kwnames
[] = {
16193 (char *) "self", NULL
16196 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToggleButton_GetValue",kwnames
,&obj0
)) goto fail
;
16197 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToggleButton
, SWIG_POINTER_EXCEPTION
| 0);
16198 if (SWIG_arg_fail(1)) SWIG_fail
;
16200 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16201 result
= (bool)((wxToggleButton
const *)arg1
)->GetValue();
16203 wxPyEndAllowThreads(__tstate
);
16204 if (PyErr_Occurred()) SWIG_fail
;
16207 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16215 static PyObject
*_wrap_ToggleButton_SetLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16216 PyObject
*resultobj
= NULL
;
16217 wxToggleButton
*arg1
= (wxToggleButton
*) 0 ;
16218 wxString
*arg2
= 0 ;
16219 bool temp2
= false ;
16220 PyObject
* obj0
= 0 ;
16221 PyObject
* obj1
= 0 ;
16222 char *kwnames
[] = {
16223 (char *) "self",(char *) "label", NULL
16226 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToggleButton_SetLabel",kwnames
,&obj0
,&obj1
)) goto fail
;
16227 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToggleButton
, SWIG_POINTER_EXCEPTION
| 0);
16228 if (SWIG_arg_fail(1)) SWIG_fail
;
16230 arg2
= wxString_in_helper(obj1
);
16231 if (arg2
== NULL
) SWIG_fail
;
16235 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16236 (arg1
)->SetLabel((wxString
const &)*arg2
);
16238 wxPyEndAllowThreads(__tstate
);
16239 if (PyErr_Occurred()) SWIG_fail
;
16241 Py_INCREF(Py_None
); resultobj
= Py_None
;
16256 static PyObject
*_wrap_ToggleButton_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16257 PyObject
*resultobj
= NULL
;
16258 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
16259 wxVisualAttributes result
;
16260 PyObject
* obj0
= 0 ;
16261 char *kwnames
[] = {
16262 (char *) "variant", NULL
16265 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ToggleButton_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
16268 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
16269 if (SWIG_arg_fail(1)) SWIG_fail
;
16273 if (!wxPyCheckForApp()) SWIG_fail
;
16274 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16275 result
= wxToggleButton::GetClassDefaultAttributes(arg1
);
16277 wxPyEndAllowThreads(__tstate
);
16278 if (PyErr_Occurred()) SWIG_fail
;
16281 wxVisualAttributes
* resultptr
;
16282 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
16283 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
16291 static PyObject
* ToggleButton_swigregister(PyObject
*, PyObject
*args
) {
16293 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
16294 SWIG_TypeClientData(SWIGTYPE_p_wxToggleButton
, obj
);
16296 return Py_BuildValue((char *)"");
16298 static int _wrap_NotebookNameStr_set(PyObject
*) {
16299 PyErr_SetString(PyExc_TypeError
,"Variable NotebookNameStr is read-only.");
16304 static PyObject
*_wrap_NotebookNameStr_get(void) {
16305 PyObject
*pyobj
= NULL
;
16309 pyobj
= PyUnicode_FromWideChar((&wxPyNotebookNameStr
)->c_str(), (&wxPyNotebookNameStr
)->Len());
16311 pyobj
= PyString_FromStringAndSize((&wxPyNotebookNameStr
)->c_str(), (&wxPyNotebookNameStr
)->Len());
16318 static PyObject
*_wrap_BookCtrlBase_GetPageCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16319 PyObject
*resultobj
= NULL
;
16320 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16322 PyObject
* obj0
= 0 ;
16323 char *kwnames
[] = {
16324 (char *) "self", NULL
16327 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBase_GetPageCount",kwnames
,&obj0
)) goto fail
;
16328 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16329 if (SWIG_arg_fail(1)) SWIG_fail
;
16331 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16332 result
= (size_t)((wxBookCtrlBase
const *)arg1
)->GetPageCount();
16334 wxPyEndAllowThreads(__tstate
);
16335 if (PyErr_Occurred()) SWIG_fail
;
16338 resultobj
= SWIG_From_unsigned_SS_long(static_cast<unsigned long >(result
));
16346 static PyObject
*_wrap_BookCtrlBase_GetPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16347 PyObject
*resultobj
= NULL
;
16348 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16351 PyObject
* obj0
= 0 ;
16352 PyObject
* obj1
= 0 ;
16353 char *kwnames
[] = {
16354 (char *) "self",(char *) "n", NULL
16357 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_GetPage",kwnames
,&obj0
,&obj1
)) goto fail
;
16358 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16359 if (SWIG_arg_fail(1)) SWIG_fail
;
16361 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16362 if (SWIG_arg_fail(2)) SWIG_fail
;
16365 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16366 result
= (wxWindow
*)(arg1
)->GetPage(arg2
);
16368 wxPyEndAllowThreads(__tstate
);
16369 if (PyErr_Occurred()) SWIG_fail
;
16372 resultobj
= wxPyMake_wxObject(result
, 0);
16380 static PyObject
*_wrap_BookCtrlBase_GetCurrentPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16381 PyObject
*resultobj
= NULL
;
16382 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16384 PyObject
* obj0
= 0 ;
16385 char *kwnames
[] = {
16386 (char *) "self", NULL
16389 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBase_GetCurrentPage",kwnames
,&obj0
)) goto fail
;
16390 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16391 if (SWIG_arg_fail(1)) SWIG_fail
;
16393 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16394 result
= (wxWindow
*)((wxBookCtrlBase
const *)arg1
)->GetCurrentPage();
16396 wxPyEndAllowThreads(__tstate
);
16397 if (PyErr_Occurred()) SWIG_fail
;
16400 resultobj
= wxPyMake_wxObject(result
, 0);
16408 static PyObject
*_wrap_BookCtrlBase_GetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16409 PyObject
*resultobj
= NULL
;
16410 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16412 PyObject
* obj0
= 0 ;
16413 char *kwnames
[] = {
16414 (char *) "self", NULL
16417 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBase_GetSelection",kwnames
,&obj0
)) goto fail
;
16418 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16419 if (SWIG_arg_fail(1)) SWIG_fail
;
16421 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16422 result
= (int)((wxBookCtrlBase
const *)arg1
)->GetSelection();
16424 wxPyEndAllowThreads(__tstate
);
16425 if (PyErr_Occurred()) SWIG_fail
;
16428 resultobj
= SWIG_From_int(static_cast<int >(result
));
16436 static PyObject
*_wrap_BookCtrlBase_SetPageText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16437 PyObject
*resultobj
= NULL
;
16438 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16440 wxString
*arg3
= 0 ;
16442 bool temp3
= false ;
16443 PyObject
* obj0
= 0 ;
16444 PyObject
* obj1
= 0 ;
16445 PyObject
* obj2
= 0 ;
16446 char *kwnames
[] = {
16447 (char *) "self",(char *) "n",(char *) "strText", NULL
16450 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:BookCtrlBase_SetPageText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
16451 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16452 if (SWIG_arg_fail(1)) SWIG_fail
;
16454 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16455 if (SWIG_arg_fail(2)) SWIG_fail
;
16458 arg3
= wxString_in_helper(obj2
);
16459 if (arg3
== NULL
) SWIG_fail
;
16463 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16464 result
= (bool)(arg1
)->SetPageText(arg2
,(wxString
const &)*arg3
);
16466 wxPyEndAllowThreads(__tstate
);
16467 if (PyErr_Occurred()) SWIG_fail
;
16470 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16486 static PyObject
*_wrap_BookCtrlBase_GetPageText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16487 PyObject
*resultobj
= NULL
;
16488 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16491 PyObject
* obj0
= 0 ;
16492 PyObject
* obj1
= 0 ;
16493 char *kwnames
[] = {
16494 (char *) "self",(char *) "n", NULL
16497 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_GetPageText",kwnames
,&obj0
,&obj1
)) goto fail
;
16498 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16499 if (SWIG_arg_fail(1)) SWIG_fail
;
16501 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16502 if (SWIG_arg_fail(2)) SWIG_fail
;
16505 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16506 result
= ((wxBookCtrlBase
const *)arg1
)->GetPageText(arg2
);
16508 wxPyEndAllowThreads(__tstate
);
16509 if (PyErr_Occurred()) SWIG_fail
;
16513 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
16515 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
16524 static PyObject
*_wrap_BookCtrlBase_SetImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16525 PyObject
*resultobj
= NULL
;
16526 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16527 wxImageList
*arg2
= (wxImageList
*) 0 ;
16528 PyObject
* obj0
= 0 ;
16529 PyObject
* obj1
= 0 ;
16530 char *kwnames
[] = {
16531 (char *) "self",(char *) "imageList", NULL
16534 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_SetImageList",kwnames
,&obj0
,&obj1
)) goto fail
;
16535 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16536 if (SWIG_arg_fail(1)) SWIG_fail
;
16537 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| 0);
16538 if (SWIG_arg_fail(2)) SWIG_fail
;
16540 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16541 (arg1
)->SetImageList(arg2
);
16543 wxPyEndAllowThreads(__tstate
);
16544 if (PyErr_Occurred()) SWIG_fail
;
16546 Py_INCREF(Py_None
); resultobj
= Py_None
;
16553 static PyObject
*_wrap_BookCtrlBase_AssignImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16554 PyObject
*resultobj
= NULL
;
16555 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16556 wxImageList
*arg2
= (wxImageList
*) 0 ;
16557 PyObject
* obj0
= 0 ;
16558 PyObject
* obj1
= 0 ;
16559 char *kwnames
[] = {
16560 (char *) "self",(char *) "imageList", NULL
16563 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_AssignImageList",kwnames
,&obj0
,&obj1
)) goto fail
;
16564 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16565 if (SWIG_arg_fail(1)) SWIG_fail
;
16566 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
);
16567 if (SWIG_arg_fail(2)) SWIG_fail
;
16569 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16570 (arg1
)->AssignImageList(arg2
);
16572 wxPyEndAllowThreads(__tstate
);
16573 if (PyErr_Occurred()) SWIG_fail
;
16575 Py_INCREF(Py_None
); resultobj
= Py_None
;
16582 static PyObject
*_wrap_BookCtrlBase_GetImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16583 PyObject
*resultobj
= NULL
;
16584 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16585 wxImageList
*result
;
16586 PyObject
* obj0
= 0 ;
16587 char *kwnames
[] = {
16588 (char *) "self", NULL
16591 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBase_GetImageList",kwnames
,&obj0
)) goto fail
;
16592 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16593 if (SWIG_arg_fail(1)) SWIG_fail
;
16595 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16596 result
= (wxImageList
*)((wxBookCtrlBase
const *)arg1
)->GetImageList();
16598 wxPyEndAllowThreads(__tstate
);
16599 if (PyErr_Occurred()) SWIG_fail
;
16602 resultobj
= wxPyMake_wxObject(result
, 0);
16610 static PyObject
*_wrap_BookCtrlBase_GetPageImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16611 PyObject
*resultobj
= NULL
;
16612 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16615 PyObject
* obj0
= 0 ;
16616 PyObject
* obj1
= 0 ;
16617 char *kwnames
[] = {
16618 (char *) "self",(char *) "n", NULL
16621 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_GetPageImage",kwnames
,&obj0
,&obj1
)) goto fail
;
16622 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16623 if (SWIG_arg_fail(1)) SWIG_fail
;
16625 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16626 if (SWIG_arg_fail(2)) SWIG_fail
;
16629 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16630 result
= (int)((wxBookCtrlBase
const *)arg1
)->GetPageImage(arg2
);
16632 wxPyEndAllowThreads(__tstate
);
16633 if (PyErr_Occurred()) SWIG_fail
;
16636 resultobj
= SWIG_From_int(static_cast<int >(result
));
16644 static PyObject
*_wrap_BookCtrlBase_SetPageImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16645 PyObject
*resultobj
= NULL
;
16646 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16650 PyObject
* obj0
= 0 ;
16651 PyObject
* obj1
= 0 ;
16652 PyObject
* obj2
= 0 ;
16653 char *kwnames
[] = {
16654 (char *) "self",(char *) "n",(char *) "imageId", NULL
16657 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:BookCtrlBase_SetPageImage",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
16658 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16659 if (SWIG_arg_fail(1)) SWIG_fail
;
16661 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16662 if (SWIG_arg_fail(2)) SWIG_fail
;
16665 arg3
= static_cast<int >(SWIG_As_int(obj2
));
16666 if (SWIG_arg_fail(3)) SWIG_fail
;
16669 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16670 result
= (bool)(arg1
)->SetPageImage(arg2
,arg3
);
16672 wxPyEndAllowThreads(__tstate
);
16673 if (PyErr_Occurred()) SWIG_fail
;
16676 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16684 static PyObject
*_wrap_BookCtrlBase_SetPageSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16685 PyObject
*resultobj
= NULL
;
16686 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16689 PyObject
* obj0
= 0 ;
16690 PyObject
* obj1
= 0 ;
16691 char *kwnames
[] = {
16692 (char *) "self",(char *) "size", NULL
16695 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_SetPageSize",kwnames
,&obj0
,&obj1
)) goto fail
;
16696 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16697 if (SWIG_arg_fail(1)) SWIG_fail
;
16700 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
16703 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16704 (arg1
)->SetPageSize((wxSize
const &)*arg2
);
16706 wxPyEndAllowThreads(__tstate
);
16707 if (PyErr_Occurred()) SWIG_fail
;
16709 Py_INCREF(Py_None
); resultobj
= Py_None
;
16716 static PyObject
*_wrap_BookCtrlBase_CalcSizeFromPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16717 PyObject
*resultobj
= NULL
;
16718 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16722 PyObject
* obj0
= 0 ;
16723 PyObject
* obj1
= 0 ;
16724 char *kwnames
[] = {
16725 (char *) "self",(char *) "sizePage", NULL
16728 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_CalcSizeFromPage",kwnames
,&obj0
,&obj1
)) goto fail
;
16729 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16730 if (SWIG_arg_fail(1)) SWIG_fail
;
16733 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
16736 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16737 result
= ((wxBookCtrlBase
const *)arg1
)->CalcSizeFromPage((wxSize
const &)*arg2
);
16739 wxPyEndAllowThreads(__tstate
);
16740 if (PyErr_Occurred()) SWIG_fail
;
16743 wxSize
* resultptr
;
16744 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
16745 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
16753 static PyObject
*_wrap_BookCtrlBase_DeletePage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16754 PyObject
*resultobj
= NULL
;
16755 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16758 PyObject
* obj0
= 0 ;
16759 PyObject
* obj1
= 0 ;
16760 char *kwnames
[] = {
16761 (char *) "self",(char *) "n", NULL
16764 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_DeletePage",kwnames
,&obj0
,&obj1
)) goto fail
;
16765 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16766 if (SWIG_arg_fail(1)) SWIG_fail
;
16768 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16769 if (SWIG_arg_fail(2)) SWIG_fail
;
16772 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16773 result
= (bool)(arg1
)->DeletePage(arg2
);
16775 wxPyEndAllowThreads(__tstate
);
16776 if (PyErr_Occurred()) SWIG_fail
;
16779 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16787 static PyObject
*_wrap_BookCtrlBase_RemovePage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16788 PyObject
*resultobj
= NULL
;
16789 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16792 PyObject
* obj0
= 0 ;
16793 PyObject
* obj1
= 0 ;
16794 char *kwnames
[] = {
16795 (char *) "self",(char *) "n", NULL
16798 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_RemovePage",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<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16803 if (SWIG_arg_fail(2)) SWIG_fail
;
16806 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16807 result
= (bool)(arg1
)->RemovePage(arg2
);
16809 wxPyEndAllowThreads(__tstate
);
16810 if (PyErr_Occurred()) SWIG_fail
;
16813 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16821 static PyObject
*_wrap_BookCtrlBase_DeleteAllPages(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16822 PyObject
*resultobj
= NULL
;
16823 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16825 PyObject
* obj0
= 0 ;
16826 char *kwnames
[] = {
16827 (char *) "self", NULL
16830 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBase_DeleteAllPages",kwnames
,&obj0
)) goto fail
;
16831 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16832 if (SWIG_arg_fail(1)) SWIG_fail
;
16834 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16835 result
= (bool)(arg1
)->DeleteAllPages();
16837 wxPyEndAllowThreads(__tstate
);
16838 if (PyErr_Occurred()) SWIG_fail
;
16841 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16849 static PyObject
*_wrap_BookCtrlBase_AddPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16850 PyObject
*resultobj
= NULL
;
16851 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16852 wxWindow
*arg2
= (wxWindow
*) 0 ;
16853 wxString
*arg3
= 0 ;
16854 bool arg4
= (bool) false ;
16855 int arg5
= (int) -1 ;
16857 bool temp3
= false ;
16858 PyObject
* obj0
= 0 ;
16859 PyObject
* obj1
= 0 ;
16860 PyObject
* obj2
= 0 ;
16861 PyObject
* obj3
= 0 ;
16862 PyObject
* obj4
= 0 ;
16863 char *kwnames
[] = {
16864 (char *) "self",(char *) "page",(char *) "text",(char *) "select",(char *) "imageId", NULL
16867 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:BookCtrlBase_AddPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
16868 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16869 if (SWIG_arg_fail(1)) SWIG_fail
;
16870 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
16871 if (SWIG_arg_fail(2)) SWIG_fail
;
16873 arg3
= wxString_in_helper(obj2
);
16874 if (arg3
== NULL
) SWIG_fail
;
16879 arg4
= static_cast<bool >(SWIG_As_bool(obj3
));
16880 if (SWIG_arg_fail(4)) SWIG_fail
;
16885 arg5
= static_cast<int >(SWIG_As_int(obj4
));
16886 if (SWIG_arg_fail(5)) SWIG_fail
;
16890 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16891 result
= (bool)(arg1
)->AddPage(arg2
,(wxString
const &)*arg3
,arg4
,arg5
);
16893 wxPyEndAllowThreads(__tstate
);
16894 if (PyErr_Occurred()) SWIG_fail
;
16897 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16913 static PyObject
*_wrap_BookCtrlBase_InsertPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16914 PyObject
*resultobj
= NULL
;
16915 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16917 wxWindow
*arg3
= (wxWindow
*) 0 ;
16918 wxString
*arg4
= 0 ;
16919 bool arg5
= (bool) false ;
16920 int arg6
= (int) -1 ;
16922 bool temp4
= false ;
16923 PyObject
* obj0
= 0 ;
16924 PyObject
* obj1
= 0 ;
16925 PyObject
* obj2
= 0 ;
16926 PyObject
* obj3
= 0 ;
16927 PyObject
* obj4
= 0 ;
16928 PyObject
* obj5
= 0 ;
16929 char *kwnames
[] = {
16930 (char *) "self",(char *) "n",(char *) "page",(char *) "text",(char *) "select",(char *) "imageId", NULL
16933 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:BookCtrlBase_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
16934 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16935 if (SWIG_arg_fail(1)) SWIG_fail
;
16937 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16938 if (SWIG_arg_fail(2)) SWIG_fail
;
16940 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
16941 if (SWIG_arg_fail(3)) SWIG_fail
;
16943 arg4
= wxString_in_helper(obj3
);
16944 if (arg4
== NULL
) SWIG_fail
;
16949 arg5
= static_cast<bool >(SWIG_As_bool(obj4
));
16950 if (SWIG_arg_fail(5)) SWIG_fail
;
16955 arg6
= static_cast<int >(SWIG_As_int(obj5
));
16956 if (SWIG_arg_fail(6)) SWIG_fail
;
16960 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16961 result
= (bool)(arg1
)->InsertPage(arg2
,arg3
,(wxString
const &)*arg4
,arg5
,arg6
);
16963 wxPyEndAllowThreads(__tstate
);
16964 if (PyErr_Occurred()) SWIG_fail
;
16967 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16983 static PyObject
*_wrap_BookCtrlBase_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
16984 PyObject
*resultobj
= NULL
;
16985 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
16988 PyObject
* obj0
= 0 ;
16989 PyObject
* obj1
= 0 ;
16990 char *kwnames
[] = {
16991 (char *) "self",(char *) "n", NULL
16994 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBase_SetSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
16995 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
16996 if (SWIG_arg_fail(1)) SWIG_fail
;
16998 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
16999 if (SWIG_arg_fail(2)) SWIG_fail
;
17002 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17003 result
= (int)(arg1
)->SetSelection(arg2
);
17005 wxPyEndAllowThreads(__tstate
);
17006 if (PyErr_Occurred()) SWIG_fail
;
17009 resultobj
= SWIG_From_int(static_cast<int >(result
));
17017 static PyObject
*_wrap_BookCtrlBase_AdvanceSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17018 PyObject
*resultobj
= NULL
;
17019 wxBookCtrlBase
*arg1
= (wxBookCtrlBase
*) 0 ;
17020 bool arg2
= (bool) true ;
17021 PyObject
* obj0
= 0 ;
17022 PyObject
* obj1
= 0 ;
17023 char *kwnames
[] = {
17024 (char *) "self",(char *) "forward", NULL
17027 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:BookCtrlBase_AdvanceSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
17028 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBase
, SWIG_POINTER_EXCEPTION
| 0);
17029 if (SWIG_arg_fail(1)) SWIG_fail
;
17032 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
17033 if (SWIG_arg_fail(2)) SWIG_fail
;
17037 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17038 (arg1
)->AdvanceSelection(arg2
);
17040 wxPyEndAllowThreads(__tstate
);
17041 if (PyErr_Occurred()) SWIG_fail
;
17043 Py_INCREF(Py_None
); resultobj
= Py_None
;
17050 static PyObject
*_wrap_BookCtrlBase_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17051 PyObject
*resultobj
= NULL
;
17052 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
17053 wxVisualAttributes result
;
17054 PyObject
* obj0
= 0 ;
17055 char *kwnames
[] = {
17056 (char *) "variant", NULL
17059 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:BookCtrlBase_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
17062 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
17063 if (SWIG_arg_fail(1)) SWIG_fail
;
17067 if (!wxPyCheckForApp()) SWIG_fail
;
17068 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17069 result
= wxBookCtrlBase::GetClassDefaultAttributes(arg1
);
17071 wxPyEndAllowThreads(__tstate
);
17072 if (PyErr_Occurred()) SWIG_fail
;
17075 wxVisualAttributes
* resultptr
;
17076 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
17077 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
17085 static PyObject
* BookCtrlBase_swigregister(PyObject
*, PyObject
*args
) {
17087 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
17088 SWIG_TypeClientData(SWIGTYPE_p_wxBookCtrlBase
, obj
);
17090 return Py_BuildValue((char *)"");
17092 static PyObject
*_wrap_new_BookCtrlBaseEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17093 PyObject
*resultobj
= NULL
;
17094 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
17095 int arg2
= (int) 0 ;
17096 int arg3
= (int) -1 ;
17097 int arg4
= (int) -1 ;
17098 wxBookCtrlBaseEvent
*result
;
17099 PyObject
* obj0
= 0 ;
17100 PyObject
* obj1
= 0 ;
17101 PyObject
* obj2
= 0 ;
17102 PyObject
* obj3
= 0 ;
17103 char *kwnames
[] = {
17104 (char *) "commandType",(char *) "id",(char *) "nSel",(char *) "nOldSel", NULL
17107 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_BookCtrlBaseEvent",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
17110 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
17111 if (SWIG_arg_fail(1)) SWIG_fail
;
17116 arg2
= static_cast<int >(SWIG_As_int(obj1
));
17117 if (SWIG_arg_fail(2)) SWIG_fail
;
17122 arg3
= static_cast<int >(SWIG_As_int(obj2
));
17123 if (SWIG_arg_fail(3)) SWIG_fail
;
17128 arg4
= static_cast<int >(SWIG_As_int(obj3
));
17129 if (SWIG_arg_fail(4)) SWIG_fail
;
17133 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17134 result
= (wxBookCtrlBaseEvent
*)new wxBookCtrlBaseEvent(arg1
,arg2
,arg3
,arg4
);
17136 wxPyEndAllowThreads(__tstate
);
17137 if (PyErr_Occurred()) SWIG_fail
;
17139 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxBookCtrlBaseEvent
, 1);
17146 static PyObject
*_wrap_BookCtrlBaseEvent_GetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17147 PyObject
*resultobj
= NULL
;
17148 wxBookCtrlBaseEvent
*arg1
= (wxBookCtrlBaseEvent
*) 0 ;
17150 PyObject
* obj0
= 0 ;
17151 char *kwnames
[] = {
17152 (char *) "self", NULL
17155 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBaseEvent_GetSelection",kwnames
,&obj0
)) goto fail
;
17156 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBaseEvent
, SWIG_POINTER_EXCEPTION
| 0);
17157 if (SWIG_arg_fail(1)) SWIG_fail
;
17159 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17160 result
= (int)((wxBookCtrlBaseEvent
const *)arg1
)->GetSelection();
17162 wxPyEndAllowThreads(__tstate
);
17163 if (PyErr_Occurred()) SWIG_fail
;
17166 resultobj
= SWIG_From_int(static_cast<int >(result
));
17174 static PyObject
*_wrap_BookCtrlBaseEvent_SetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17175 PyObject
*resultobj
= NULL
;
17176 wxBookCtrlBaseEvent
*arg1
= (wxBookCtrlBaseEvent
*) 0 ;
17178 PyObject
* obj0
= 0 ;
17179 PyObject
* obj1
= 0 ;
17180 char *kwnames
[] = {
17181 (char *) "self",(char *) "nSel", NULL
17184 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBaseEvent_SetSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
17185 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBaseEvent
, SWIG_POINTER_EXCEPTION
| 0);
17186 if (SWIG_arg_fail(1)) SWIG_fail
;
17188 arg2
= static_cast<int >(SWIG_As_int(obj1
));
17189 if (SWIG_arg_fail(2)) SWIG_fail
;
17192 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17193 (arg1
)->SetSelection(arg2
);
17195 wxPyEndAllowThreads(__tstate
);
17196 if (PyErr_Occurred()) SWIG_fail
;
17198 Py_INCREF(Py_None
); resultobj
= Py_None
;
17205 static PyObject
*_wrap_BookCtrlBaseEvent_GetOldSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17206 PyObject
*resultobj
= NULL
;
17207 wxBookCtrlBaseEvent
*arg1
= (wxBookCtrlBaseEvent
*) 0 ;
17209 PyObject
* obj0
= 0 ;
17210 char *kwnames
[] = {
17211 (char *) "self", NULL
17214 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:BookCtrlBaseEvent_GetOldSelection",kwnames
,&obj0
)) goto fail
;
17215 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBaseEvent
, SWIG_POINTER_EXCEPTION
| 0);
17216 if (SWIG_arg_fail(1)) SWIG_fail
;
17218 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17219 result
= (int)((wxBookCtrlBaseEvent
const *)arg1
)->GetOldSelection();
17221 wxPyEndAllowThreads(__tstate
);
17222 if (PyErr_Occurred()) SWIG_fail
;
17225 resultobj
= SWIG_From_int(static_cast<int >(result
));
17233 static PyObject
*_wrap_BookCtrlBaseEvent_SetOldSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17234 PyObject
*resultobj
= NULL
;
17235 wxBookCtrlBaseEvent
*arg1
= (wxBookCtrlBaseEvent
*) 0 ;
17237 PyObject
* obj0
= 0 ;
17238 PyObject
* obj1
= 0 ;
17239 char *kwnames
[] = {
17240 (char *) "self",(char *) "nOldSel", NULL
17243 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:BookCtrlBaseEvent_SetOldSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
17244 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBookCtrlBaseEvent
, SWIG_POINTER_EXCEPTION
| 0);
17245 if (SWIG_arg_fail(1)) SWIG_fail
;
17247 arg2
= static_cast<int >(SWIG_As_int(obj1
));
17248 if (SWIG_arg_fail(2)) SWIG_fail
;
17251 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17252 (arg1
)->SetOldSelection(arg2
);
17254 wxPyEndAllowThreads(__tstate
);
17255 if (PyErr_Occurred()) SWIG_fail
;
17257 Py_INCREF(Py_None
); resultobj
= Py_None
;
17264 static PyObject
* BookCtrlBaseEvent_swigregister(PyObject
*, PyObject
*args
) {
17266 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
17267 SWIG_TypeClientData(SWIGTYPE_p_wxBookCtrlBaseEvent
, obj
);
17269 return Py_BuildValue((char *)"");
17271 static PyObject
*_wrap_new_Notebook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17272 PyObject
*resultobj
= NULL
;
17273 wxWindow
*arg1
= (wxWindow
*) 0 ;
17274 int arg2
= (int) -1 ;
17275 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
17276 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
17277 wxSize
const &arg4_defvalue
= wxDefaultSize
;
17278 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
17279 long arg5
= (long) 0 ;
17280 wxString
const &arg6_defvalue
= wxPyNotebookNameStr
;
17281 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
17282 wxNotebook
*result
;
17285 bool temp6
= false ;
17286 PyObject
* obj0
= 0 ;
17287 PyObject
* obj1
= 0 ;
17288 PyObject
* obj2
= 0 ;
17289 PyObject
* obj3
= 0 ;
17290 PyObject
* obj4
= 0 ;
17291 PyObject
* obj5
= 0 ;
17292 char *kwnames
[] = {
17293 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
17296 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_Notebook",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
17297 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
17298 if (SWIG_arg_fail(1)) SWIG_fail
;
17301 arg2
= static_cast<int >(SWIG_As_int(obj1
));
17302 if (SWIG_arg_fail(2)) SWIG_fail
;
17308 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
17314 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
17319 arg5
= static_cast<long >(SWIG_As_long(obj4
));
17320 if (SWIG_arg_fail(5)) SWIG_fail
;
17325 arg6
= wxString_in_helper(obj5
);
17326 if (arg6
== NULL
) SWIG_fail
;
17331 if (!wxPyCheckForApp()) SWIG_fail
;
17332 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17333 result
= (wxNotebook
*)new wxNotebook(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
17335 wxPyEndAllowThreads(__tstate
);
17336 if (PyErr_Occurred()) SWIG_fail
;
17338 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxNotebook
, 1);
17353 static PyObject
*_wrap_new_PreNotebook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17354 PyObject
*resultobj
= NULL
;
17355 wxNotebook
*result
;
17356 char *kwnames
[] = {
17360 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreNotebook",kwnames
)) goto fail
;
17362 if (!wxPyCheckForApp()) SWIG_fail
;
17363 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17364 result
= (wxNotebook
*)new wxNotebook();
17366 wxPyEndAllowThreads(__tstate
);
17367 if (PyErr_Occurred()) SWIG_fail
;
17369 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxNotebook
, 1);
17376 static PyObject
*_wrap_Notebook_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17377 PyObject
*resultobj
= NULL
;
17378 wxNotebook
*arg1
= (wxNotebook
*) 0 ;
17379 wxWindow
*arg2
= (wxWindow
*) 0 ;
17380 int arg3
= (int) -1 ;
17381 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
17382 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
17383 wxSize
const &arg5_defvalue
= wxDefaultSize
;
17384 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
17385 long arg6
= (long) 0 ;
17386 wxString
const &arg7_defvalue
= wxPyNotebookNameStr
;
17387 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
17391 bool temp7
= false ;
17392 PyObject
* obj0
= 0 ;
17393 PyObject
* obj1
= 0 ;
17394 PyObject
* obj2
= 0 ;
17395 PyObject
* obj3
= 0 ;
17396 PyObject
* obj4
= 0 ;
17397 PyObject
* obj5
= 0 ;
17398 PyObject
* obj6
= 0 ;
17399 char *kwnames
[] = {
17400 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
17403 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:Notebook_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
17404 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxNotebook
, SWIG_POINTER_EXCEPTION
| 0);
17405 if (SWIG_arg_fail(1)) SWIG_fail
;
17406 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
17407 if (SWIG_arg_fail(2)) SWIG_fail
;
17410 arg3
= static_cast<int >(SWIG_As_int(obj2
));
17411 if (SWIG_arg_fail(3)) SWIG_fail
;
17417 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
17423 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
17428 arg6
= static_cast<long >(SWIG_As_long(obj5
));
17429 if (SWIG_arg_fail(6)) SWIG_fail
;
17434 arg7
= wxString_in_helper(obj6
);
17435 if (arg7
== NULL
) SWIG_fail
;
17440 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17441 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
17443 wxPyEndAllowThreads(__tstate
);
17444 if (PyErr_Occurred()) SWIG_fail
;
17447 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17463 static PyObject
*_wrap_Notebook_GetRowCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17464 PyObject
*resultobj
= NULL
;
17465 wxNotebook
*arg1
= (wxNotebook
*) 0 ;
17467 PyObject
* obj0
= 0 ;
17468 char *kwnames
[] = {
17469 (char *) "self", NULL
17472 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Notebook_GetRowCount",kwnames
,&obj0
)) goto fail
;
17473 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxNotebook
, SWIG_POINTER_EXCEPTION
| 0);
17474 if (SWIG_arg_fail(1)) SWIG_fail
;
17476 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17477 result
= (int)((wxNotebook
const *)arg1
)->GetRowCount();
17479 wxPyEndAllowThreads(__tstate
);
17480 if (PyErr_Occurred()) SWIG_fail
;
17483 resultobj
= SWIG_From_int(static_cast<int >(result
));
17491 static PyObject
*_wrap_Notebook_SetPadding(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17492 PyObject
*resultobj
= NULL
;
17493 wxNotebook
*arg1
= (wxNotebook
*) 0 ;
17496 PyObject
* obj0
= 0 ;
17497 PyObject
* obj1
= 0 ;
17498 char *kwnames
[] = {
17499 (char *) "self",(char *) "padding", NULL
17502 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Notebook_SetPadding",kwnames
,&obj0
,&obj1
)) goto fail
;
17503 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxNotebook
, SWIG_POINTER_EXCEPTION
| 0);
17504 if (SWIG_arg_fail(1)) SWIG_fail
;
17507 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
17510 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17511 (arg1
)->SetPadding((wxSize
const &)*arg2
);
17513 wxPyEndAllowThreads(__tstate
);
17514 if (PyErr_Occurred()) SWIG_fail
;
17516 Py_INCREF(Py_None
); resultobj
= Py_None
;
17523 static PyObject
*_wrap_Notebook_SetTabSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17524 PyObject
*resultobj
= NULL
;
17525 wxNotebook
*arg1
= (wxNotebook
*) 0 ;
17528 PyObject
* obj0
= 0 ;
17529 PyObject
* obj1
= 0 ;
17530 char *kwnames
[] = {
17531 (char *) "self",(char *) "sz", NULL
17534 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Notebook_SetTabSize",kwnames
,&obj0
,&obj1
)) goto fail
;
17535 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxNotebook
, SWIG_POINTER_EXCEPTION
| 0);
17536 if (SWIG_arg_fail(1)) SWIG_fail
;
17539 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
17542 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17543 (arg1
)->SetTabSize((wxSize
const &)*arg2
);
17545 wxPyEndAllowThreads(__tstate
);
17546 if (PyErr_Occurred()) SWIG_fail
;
17548 Py_INCREF(Py_None
); resultobj
= Py_None
;
17555 static PyObject
*_wrap_Notebook_HitTest(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17556 PyObject
*resultobj
= NULL
;
17557 wxNotebook
*arg1
= (wxNotebook
*) 0 ;
17558 wxPoint
*arg2
= 0 ;
17559 long *arg3
= (long *) 0 ;
17564 PyObject
* obj0
= 0 ;
17565 PyObject
* obj1
= 0 ;
17566 char *kwnames
[] = {
17567 (char *) "self",(char *) "pt", NULL
17570 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
17571 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Notebook_HitTest",kwnames
,&obj0
,&obj1
)) goto fail
;
17572 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxNotebook
, SWIG_POINTER_EXCEPTION
| 0);
17573 if (SWIG_arg_fail(1)) SWIG_fail
;
17576 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
17579 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17580 result
= (int)((wxNotebook
const *)arg1
)->HitTest((wxPoint
const &)*arg2
,arg3
);
17582 wxPyEndAllowThreads(__tstate
);
17583 if (PyErr_Occurred()) SWIG_fail
;
17586 resultobj
= SWIG_From_int(static_cast<int >(result
));
17588 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
17589 SWIG_From_long((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_long
, 0)));
17596 static PyObject
*_wrap_Notebook_CalcSizeFromPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17597 PyObject
*resultobj
= NULL
;
17598 wxNotebook
*arg1
= (wxNotebook
*) 0 ;
17602 PyObject
* obj0
= 0 ;
17603 PyObject
* obj1
= 0 ;
17604 char *kwnames
[] = {
17605 (char *) "self",(char *) "sizePage", NULL
17608 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Notebook_CalcSizeFromPage",kwnames
,&obj0
,&obj1
)) goto fail
;
17609 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxNotebook
, SWIG_POINTER_EXCEPTION
| 0);
17610 if (SWIG_arg_fail(1)) SWIG_fail
;
17613 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
17616 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17617 result
= ((wxNotebook
const *)arg1
)->CalcSizeFromPage((wxSize
const &)*arg2
);
17619 wxPyEndAllowThreads(__tstate
);
17620 if (PyErr_Occurred()) SWIG_fail
;
17623 wxSize
* resultptr
;
17624 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
17625 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
17633 static PyObject
*_wrap_Notebook_GetThemeBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17634 PyObject
*resultobj
= NULL
;
17635 wxNotebook
*arg1
= (wxNotebook
*) 0 ;
17637 PyObject
* obj0
= 0 ;
17638 char *kwnames
[] = {
17639 (char *) "self", NULL
17642 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Notebook_GetThemeBackgroundColour",kwnames
,&obj0
)) goto fail
;
17643 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxNotebook
, SWIG_POINTER_EXCEPTION
| 0);
17644 if (SWIG_arg_fail(1)) SWIG_fail
;
17646 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17647 result
= ((wxNotebook
const *)arg1
)->GetThemeBackgroundColour();
17649 wxPyEndAllowThreads(__tstate
);
17650 if (PyErr_Occurred()) SWIG_fail
;
17653 wxColour
* resultptr
;
17654 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
17655 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
17663 static PyObject
*_wrap_Notebook_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17664 PyObject
*resultobj
= NULL
;
17665 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
17666 wxVisualAttributes result
;
17667 PyObject
* obj0
= 0 ;
17668 char *kwnames
[] = {
17669 (char *) "variant", NULL
17672 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Notebook_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
17675 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
17676 if (SWIG_arg_fail(1)) SWIG_fail
;
17680 if (!wxPyCheckForApp()) SWIG_fail
;
17681 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17682 result
= wxNotebook::GetClassDefaultAttributes(arg1
);
17684 wxPyEndAllowThreads(__tstate
);
17685 if (PyErr_Occurred()) SWIG_fail
;
17688 wxVisualAttributes
* resultptr
;
17689 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
17690 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
17698 static PyObject
* Notebook_swigregister(PyObject
*, PyObject
*args
) {
17700 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
17701 SWIG_TypeClientData(SWIGTYPE_p_wxNotebook
, obj
);
17703 return Py_BuildValue((char *)"");
17705 static PyObject
*_wrap_new_NotebookEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17706 PyObject
*resultobj
= NULL
;
17707 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
17708 int arg2
= (int) 0 ;
17709 int arg3
= (int) -1 ;
17710 int arg4
= (int) -1 ;
17711 wxNotebookEvent
*result
;
17712 PyObject
* obj0
= 0 ;
17713 PyObject
* obj1
= 0 ;
17714 PyObject
* obj2
= 0 ;
17715 PyObject
* obj3
= 0 ;
17716 char *kwnames
[] = {
17717 (char *) "commandType",(char *) "id",(char *) "nSel",(char *) "nOldSel", NULL
17720 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_NotebookEvent",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
17723 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
17724 if (SWIG_arg_fail(1)) SWIG_fail
;
17729 arg2
= static_cast<int >(SWIG_As_int(obj1
));
17730 if (SWIG_arg_fail(2)) SWIG_fail
;
17735 arg3
= static_cast<int >(SWIG_As_int(obj2
));
17736 if (SWIG_arg_fail(3)) SWIG_fail
;
17741 arg4
= static_cast<int >(SWIG_As_int(obj3
));
17742 if (SWIG_arg_fail(4)) SWIG_fail
;
17746 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17747 result
= (wxNotebookEvent
*)new wxNotebookEvent(arg1
,arg2
,arg3
,arg4
);
17749 wxPyEndAllowThreads(__tstate
);
17750 if (PyErr_Occurred()) SWIG_fail
;
17752 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxNotebookEvent
, 1);
17759 static PyObject
* NotebookEvent_swigregister(PyObject
*, PyObject
*args
) {
17761 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
17762 SWIG_TypeClientData(SWIGTYPE_p_wxNotebookEvent
, obj
);
17764 return Py_BuildValue((char *)"");
17766 static PyObject
*_wrap_new_Listbook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17767 PyObject
*resultobj
= NULL
;
17768 wxWindow
*arg1
= (wxWindow
*) 0 ;
17769 int arg2
= (int) -1 ;
17770 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
17771 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
17772 wxSize
const &arg4_defvalue
= wxDefaultSize
;
17773 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
17774 long arg5
= (long) 0 ;
17775 wxString
const &arg6_defvalue
= wxPyEmptyString
;
17776 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
17777 wxListbook
*result
;
17780 bool temp6
= false ;
17781 PyObject
* obj0
= 0 ;
17782 PyObject
* obj1
= 0 ;
17783 PyObject
* obj2
= 0 ;
17784 PyObject
* obj3
= 0 ;
17785 PyObject
* obj4
= 0 ;
17786 PyObject
* obj5
= 0 ;
17787 char *kwnames
[] = {
17788 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
17791 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_Listbook",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
17792 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
17793 if (SWIG_arg_fail(1)) SWIG_fail
;
17796 arg2
= static_cast<int >(SWIG_As_int(obj1
));
17797 if (SWIG_arg_fail(2)) SWIG_fail
;
17803 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
17809 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
17814 arg5
= static_cast<long >(SWIG_As_long(obj4
));
17815 if (SWIG_arg_fail(5)) SWIG_fail
;
17820 arg6
= wxString_in_helper(obj5
);
17821 if (arg6
== NULL
) SWIG_fail
;
17826 if (!wxPyCheckForApp()) SWIG_fail
;
17827 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17828 result
= (wxListbook
*)new wxListbook(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
17830 wxPyEndAllowThreads(__tstate
);
17831 if (PyErr_Occurred()) SWIG_fail
;
17833 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListbook
, 1);
17848 static PyObject
*_wrap_new_PreListbook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17849 PyObject
*resultobj
= NULL
;
17850 wxListbook
*result
;
17851 char *kwnames
[] = {
17855 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreListbook",kwnames
)) goto fail
;
17857 if (!wxPyCheckForApp()) SWIG_fail
;
17858 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17859 result
= (wxListbook
*)new wxListbook();
17861 wxPyEndAllowThreads(__tstate
);
17862 if (PyErr_Occurred()) SWIG_fail
;
17864 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListbook
, 1);
17871 static PyObject
*_wrap_Listbook_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17872 PyObject
*resultobj
= NULL
;
17873 wxListbook
*arg1
= (wxListbook
*) 0 ;
17874 wxWindow
*arg2
= (wxWindow
*) 0 ;
17875 int arg3
= (int) -1 ;
17876 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
17877 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
17878 wxSize
const &arg5_defvalue
= wxDefaultSize
;
17879 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
17880 long arg6
= (long) 0 ;
17881 wxString
const &arg7_defvalue
= wxPyEmptyString
;
17882 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
17886 bool temp7
= false ;
17887 PyObject
* obj0
= 0 ;
17888 PyObject
* obj1
= 0 ;
17889 PyObject
* obj2
= 0 ;
17890 PyObject
* obj3
= 0 ;
17891 PyObject
* obj4
= 0 ;
17892 PyObject
* obj5
= 0 ;
17893 PyObject
* obj6
= 0 ;
17894 char *kwnames
[] = {
17895 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
17898 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:Listbook_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
17899 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListbook
, SWIG_POINTER_EXCEPTION
| 0);
17900 if (SWIG_arg_fail(1)) SWIG_fail
;
17901 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
17902 if (SWIG_arg_fail(2)) SWIG_fail
;
17905 arg3
= static_cast<int >(SWIG_As_int(obj2
));
17906 if (SWIG_arg_fail(3)) SWIG_fail
;
17912 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
17918 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
17923 arg6
= static_cast<long >(SWIG_As_long(obj5
));
17924 if (SWIG_arg_fail(6)) SWIG_fail
;
17929 arg7
= wxString_in_helper(obj6
);
17930 if (arg7
== NULL
) SWIG_fail
;
17935 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17936 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
17938 wxPyEndAllowThreads(__tstate
);
17939 if (PyErr_Occurred()) SWIG_fail
;
17942 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17958 static PyObject
*_wrap_Listbook_IsVertical(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17959 PyObject
*resultobj
= NULL
;
17960 wxListbook
*arg1
= (wxListbook
*) 0 ;
17962 PyObject
* obj0
= 0 ;
17963 char *kwnames
[] = {
17964 (char *) "self", NULL
17967 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Listbook_IsVertical",kwnames
,&obj0
)) goto fail
;
17968 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListbook
, SWIG_POINTER_EXCEPTION
| 0);
17969 if (SWIG_arg_fail(1)) SWIG_fail
;
17971 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17972 result
= (bool)((wxListbook
const *)arg1
)->IsVertical();
17974 wxPyEndAllowThreads(__tstate
);
17975 if (PyErr_Occurred()) SWIG_fail
;
17978 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17986 static PyObject
*_wrap_Listbook_GetListView(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
17987 PyObject
*resultobj
= NULL
;
17988 wxListbook
*arg1
= (wxListbook
*) 0 ;
17989 wxListView
*result
;
17990 PyObject
* obj0
= 0 ;
17991 char *kwnames
[] = {
17992 (char *) "self", NULL
17995 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Listbook_GetListView",kwnames
,&obj0
)) goto fail
;
17996 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListbook
, SWIG_POINTER_EXCEPTION
| 0);
17997 if (SWIG_arg_fail(1)) SWIG_fail
;
17999 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18000 result
= (wxListView
*)(arg1
)->GetListView();
18002 wxPyEndAllowThreads(__tstate
);
18003 if (PyErr_Occurred()) SWIG_fail
;
18005 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListView
, 0);
18012 static PyObject
* Listbook_swigregister(PyObject
*, PyObject
*args
) {
18014 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
18015 SWIG_TypeClientData(SWIGTYPE_p_wxListbook
, obj
);
18017 return Py_BuildValue((char *)"");
18019 static PyObject
*_wrap_new_ListbookEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18020 PyObject
*resultobj
= NULL
;
18021 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
18022 int arg2
= (int) 0 ;
18023 int arg3
= (int) -1 ;
18024 int arg4
= (int) -1 ;
18025 wxListbookEvent
*result
;
18026 PyObject
* obj0
= 0 ;
18027 PyObject
* obj1
= 0 ;
18028 PyObject
* obj2
= 0 ;
18029 PyObject
* obj3
= 0 ;
18030 char *kwnames
[] = {
18031 (char *) "commandType",(char *) "id",(char *) "nSel",(char *) "nOldSel", NULL
18034 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_ListbookEvent",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
18037 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
18038 if (SWIG_arg_fail(1)) SWIG_fail
;
18043 arg2
= static_cast<int >(SWIG_As_int(obj1
));
18044 if (SWIG_arg_fail(2)) SWIG_fail
;
18049 arg3
= static_cast<int >(SWIG_As_int(obj2
));
18050 if (SWIG_arg_fail(3)) SWIG_fail
;
18055 arg4
= static_cast<int >(SWIG_As_int(obj3
));
18056 if (SWIG_arg_fail(4)) SWIG_fail
;
18060 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18061 result
= (wxListbookEvent
*)new wxListbookEvent(arg1
,arg2
,arg3
,arg4
);
18063 wxPyEndAllowThreads(__tstate
);
18064 if (PyErr_Occurred()) SWIG_fail
;
18066 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListbookEvent
, 1);
18073 static PyObject
* ListbookEvent_swigregister(PyObject
*, PyObject
*args
) {
18075 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
18076 SWIG_TypeClientData(SWIGTYPE_p_wxListbookEvent
, obj
);
18078 return Py_BuildValue((char *)"");
18080 static PyObject
*_wrap_new_Choicebook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18081 PyObject
*resultobj
= NULL
;
18082 wxWindow
*arg1
= (wxWindow
*) 0 ;
18084 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
18085 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
18086 wxSize
const &arg4_defvalue
= wxDefaultSize
;
18087 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
18088 long arg5
= (long) 0 ;
18089 wxString
const &arg6_defvalue
= wxPyEmptyString
;
18090 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
18091 wxChoicebook
*result
;
18094 bool temp6
= false ;
18095 PyObject
* obj0
= 0 ;
18096 PyObject
* obj1
= 0 ;
18097 PyObject
* obj2
= 0 ;
18098 PyObject
* obj3
= 0 ;
18099 PyObject
* obj4
= 0 ;
18100 PyObject
* obj5
= 0 ;
18101 char *kwnames
[] = {
18102 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
18105 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:new_Choicebook",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
18106 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
18107 if (SWIG_arg_fail(1)) SWIG_fail
;
18109 arg2
= static_cast<int >(SWIG_As_int(obj1
));
18110 if (SWIG_arg_fail(2)) SWIG_fail
;
18115 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
18121 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
18126 arg5
= static_cast<long >(SWIG_As_long(obj4
));
18127 if (SWIG_arg_fail(5)) SWIG_fail
;
18132 arg6
= wxString_in_helper(obj5
);
18133 if (arg6
== NULL
) SWIG_fail
;
18138 if (!wxPyCheckForApp()) SWIG_fail
;
18139 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18140 result
= (wxChoicebook
*)new wxChoicebook(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
18142 wxPyEndAllowThreads(__tstate
);
18143 if (PyErr_Occurred()) SWIG_fail
;
18145 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxChoicebook
, 1);
18160 static PyObject
*_wrap_new_PreChoicebook(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18161 PyObject
*resultobj
= NULL
;
18162 wxChoicebook
*result
;
18163 char *kwnames
[] = {
18167 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreChoicebook",kwnames
)) goto fail
;
18169 if (!wxPyCheckForApp()) SWIG_fail
;
18170 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18171 result
= (wxChoicebook
*)new wxChoicebook();
18173 wxPyEndAllowThreads(__tstate
);
18174 if (PyErr_Occurred()) SWIG_fail
;
18176 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxChoicebook
, 1);
18183 static PyObject
*_wrap_Choicebook_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18184 PyObject
*resultobj
= NULL
;
18185 wxChoicebook
*arg1
= (wxChoicebook
*) 0 ;
18186 wxWindow
*arg2
= (wxWindow
*) 0 ;
18188 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
18189 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
18190 wxSize
const &arg5_defvalue
= wxDefaultSize
;
18191 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
18192 long arg6
= (long) 0 ;
18193 wxString
const &arg7_defvalue
= wxPyEmptyString
;
18194 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
18198 bool temp7
= false ;
18199 PyObject
* obj0
= 0 ;
18200 PyObject
* obj1
= 0 ;
18201 PyObject
* obj2
= 0 ;
18202 PyObject
* obj3
= 0 ;
18203 PyObject
* obj4
= 0 ;
18204 PyObject
* obj5
= 0 ;
18205 PyObject
* obj6
= 0 ;
18206 char *kwnames
[] = {
18207 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
18210 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:Choicebook_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
18211 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxChoicebook
, SWIG_POINTER_EXCEPTION
| 0);
18212 if (SWIG_arg_fail(1)) SWIG_fail
;
18213 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
18214 if (SWIG_arg_fail(2)) SWIG_fail
;
18216 arg3
= static_cast<int >(SWIG_As_int(obj2
));
18217 if (SWIG_arg_fail(3)) SWIG_fail
;
18222 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
18228 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
18233 arg6
= static_cast<long >(SWIG_As_long(obj5
));
18234 if (SWIG_arg_fail(6)) SWIG_fail
;
18239 arg7
= wxString_in_helper(obj6
);
18240 if (arg7
== NULL
) SWIG_fail
;
18245 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18246 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
18248 wxPyEndAllowThreads(__tstate
);
18249 if (PyErr_Occurred()) SWIG_fail
;
18252 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18268 static PyObject
*_wrap_Choicebook_IsVertical(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18269 PyObject
*resultobj
= NULL
;
18270 wxChoicebook
*arg1
= (wxChoicebook
*) 0 ;
18272 PyObject
* obj0
= 0 ;
18273 char *kwnames
[] = {
18274 (char *) "self", NULL
18277 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Choicebook_IsVertical",kwnames
,&obj0
)) goto fail
;
18278 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxChoicebook
, SWIG_POINTER_EXCEPTION
| 0);
18279 if (SWIG_arg_fail(1)) SWIG_fail
;
18281 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18282 result
= (bool)((wxChoicebook
const *)arg1
)->IsVertical();
18284 wxPyEndAllowThreads(__tstate
);
18285 if (PyErr_Occurred()) SWIG_fail
;
18288 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18296 static PyObject
*_wrap_Choicebook_GetChoiceCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18297 PyObject
*resultobj
= NULL
;
18298 wxChoicebook
*arg1
= (wxChoicebook
*) 0 ;
18300 PyObject
* obj0
= 0 ;
18301 char *kwnames
[] = {
18302 (char *) "self", NULL
18305 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Choicebook_GetChoiceCtrl",kwnames
,&obj0
)) goto fail
;
18306 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxChoicebook
, SWIG_POINTER_EXCEPTION
| 0);
18307 if (SWIG_arg_fail(1)) SWIG_fail
;
18309 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18310 result
= (wxChoice
*)((wxChoicebook
const *)arg1
)->GetChoiceCtrl();
18312 wxPyEndAllowThreads(__tstate
);
18313 if (PyErr_Occurred()) SWIG_fail
;
18315 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxChoice
, 0);
18322 static PyObject
*_wrap_Choicebook_DeleteAllPages(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18323 PyObject
*resultobj
= NULL
;
18324 wxChoicebook
*arg1
= (wxChoicebook
*) 0 ;
18326 PyObject
* obj0
= 0 ;
18327 char *kwnames
[] = {
18328 (char *) "self", NULL
18331 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Choicebook_DeleteAllPages",kwnames
,&obj0
)) goto fail
;
18332 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxChoicebook
, SWIG_POINTER_EXCEPTION
| 0);
18333 if (SWIG_arg_fail(1)) SWIG_fail
;
18335 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18336 result
= (bool)(arg1
)->DeleteAllPages();
18338 wxPyEndAllowThreads(__tstate
);
18339 if (PyErr_Occurred()) SWIG_fail
;
18342 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18350 static PyObject
* Choicebook_swigregister(PyObject
*, PyObject
*args
) {
18352 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
18353 SWIG_TypeClientData(SWIGTYPE_p_wxChoicebook
, obj
);
18355 return Py_BuildValue((char *)"");
18357 static PyObject
*_wrap_new_ChoicebookEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18358 PyObject
*resultobj
= NULL
;
18359 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
18360 int arg2
= (int) 0 ;
18361 int arg3
= (int) -1 ;
18362 int arg4
= (int) -1 ;
18363 wxChoicebookEvent
*result
;
18364 PyObject
* obj0
= 0 ;
18365 PyObject
* obj1
= 0 ;
18366 PyObject
* obj2
= 0 ;
18367 PyObject
* obj3
= 0 ;
18368 char *kwnames
[] = {
18369 (char *) "commandType",(char *) "id",(char *) "nSel",(char *) "nOldSel", NULL
18372 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOOO:new_ChoicebookEvent",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
18375 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
18376 if (SWIG_arg_fail(1)) SWIG_fail
;
18381 arg2
= static_cast<int >(SWIG_As_int(obj1
));
18382 if (SWIG_arg_fail(2)) SWIG_fail
;
18387 arg3
= static_cast<int >(SWIG_As_int(obj2
));
18388 if (SWIG_arg_fail(3)) SWIG_fail
;
18393 arg4
= static_cast<int >(SWIG_As_int(obj3
));
18394 if (SWIG_arg_fail(4)) SWIG_fail
;
18398 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18399 result
= (wxChoicebookEvent
*)new wxChoicebookEvent(arg1
,arg2
,arg3
,arg4
);
18401 wxPyEndAllowThreads(__tstate
);
18402 if (PyErr_Occurred()) SWIG_fail
;
18404 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxChoicebookEvent
, 1);
18411 static PyObject
* ChoicebookEvent_swigregister(PyObject
*, PyObject
*args
) {
18413 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
18414 SWIG_TypeClientData(SWIGTYPE_p_wxChoicebookEvent
, obj
);
18416 return Py_BuildValue((char *)"");
18418 static PyObject
*_wrap_ToolBarToolBase_GetId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18419 PyObject
*resultobj
= NULL
;
18420 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18422 PyObject
* obj0
= 0 ;
18423 char *kwnames
[] = {
18424 (char *) "self", NULL
18427 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetId",kwnames
,&obj0
)) goto fail
;
18428 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18429 if (SWIG_arg_fail(1)) SWIG_fail
;
18431 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18432 result
= (int)(arg1
)->GetId();
18434 wxPyEndAllowThreads(__tstate
);
18435 if (PyErr_Occurred()) SWIG_fail
;
18438 resultobj
= SWIG_From_int(static_cast<int >(result
));
18446 static PyObject
*_wrap_ToolBarToolBase_GetControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18447 PyObject
*resultobj
= NULL
;
18448 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18450 PyObject
* obj0
= 0 ;
18451 char *kwnames
[] = {
18452 (char *) "self", NULL
18455 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetControl",kwnames
,&obj0
)) goto fail
;
18456 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18457 if (SWIG_arg_fail(1)) SWIG_fail
;
18459 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18460 result
= (wxControl
*)(arg1
)->GetControl();
18462 wxPyEndAllowThreads(__tstate
);
18463 if (PyErr_Occurred()) SWIG_fail
;
18466 resultobj
= wxPyMake_wxObject(result
, 0);
18474 static PyObject
*_wrap_ToolBarToolBase_GetToolBar(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18475 PyObject
*resultobj
= NULL
;
18476 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18477 wxToolBarBase
*result
;
18478 PyObject
* obj0
= 0 ;
18479 char *kwnames
[] = {
18480 (char *) "self", NULL
18483 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetToolBar",kwnames
,&obj0
)) goto fail
;
18484 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18485 if (SWIG_arg_fail(1)) SWIG_fail
;
18487 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18488 result
= (wxToolBarBase
*)(arg1
)->GetToolBar();
18490 wxPyEndAllowThreads(__tstate
);
18491 if (PyErr_Occurred()) SWIG_fail
;
18494 resultobj
= wxPyMake_wxObject(result
, 0);
18502 static PyObject
*_wrap_ToolBarToolBase_IsButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18503 PyObject
*resultobj
= NULL
;
18504 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18506 PyObject
* obj0
= 0 ;
18507 char *kwnames
[] = {
18508 (char *) "self", NULL
18511 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_IsButton",kwnames
,&obj0
)) goto fail
;
18512 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18513 if (SWIG_arg_fail(1)) SWIG_fail
;
18515 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18516 result
= (int)(arg1
)->IsButton();
18518 wxPyEndAllowThreads(__tstate
);
18519 if (PyErr_Occurred()) SWIG_fail
;
18522 resultobj
= SWIG_From_int(static_cast<int >(result
));
18530 static PyObject
*_wrap_ToolBarToolBase_IsControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18531 PyObject
*resultobj
= NULL
;
18532 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18534 PyObject
* obj0
= 0 ;
18535 char *kwnames
[] = {
18536 (char *) "self", NULL
18539 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_IsControl",kwnames
,&obj0
)) goto fail
;
18540 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18541 if (SWIG_arg_fail(1)) SWIG_fail
;
18543 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18544 result
= (int)(arg1
)->IsControl();
18546 wxPyEndAllowThreads(__tstate
);
18547 if (PyErr_Occurred()) SWIG_fail
;
18550 resultobj
= SWIG_From_int(static_cast<int >(result
));
18558 static PyObject
*_wrap_ToolBarToolBase_IsSeparator(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18559 PyObject
*resultobj
= NULL
;
18560 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18562 PyObject
* obj0
= 0 ;
18563 char *kwnames
[] = {
18564 (char *) "self", NULL
18567 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_IsSeparator",kwnames
,&obj0
)) goto fail
;
18568 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18569 if (SWIG_arg_fail(1)) SWIG_fail
;
18571 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18572 result
= (int)(arg1
)->IsSeparator();
18574 wxPyEndAllowThreads(__tstate
);
18575 if (PyErr_Occurred()) SWIG_fail
;
18578 resultobj
= SWIG_From_int(static_cast<int >(result
));
18586 static PyObject
*_wrap_ToolBarToolBase_GetStyle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18587 PyObject
*resultobj
= NULL
;
18588 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18590 PyObject
* obj0
= 0 ;
18591 char *kwnames
[] = {
18592 (char *) "self", NULL
18595 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetStyle",kwnames
,&obj0
)) goto fail
;
18596 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18597 if (SWIG_arg_fail(1)) SWIG_fail
;
18599 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18600 result
= (int)(arg1
)->GetStyle();
18602 wxPyEndAllowThreads(__tstate
);
18603 if (PyErr_Occurred()) SWIG_fail
;
18606 resultobj
= SWIG_From_int(static_cast<int >(result
));
18614 static PyObject
*_wrap_ToolBarToolBase_GetKind(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18615 PyObject
*resultobj
= NULL
;
18616 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18618 PyObject
* obj0
= 0 ;
18619 char *kwnames
[] = {
18620 (char *) "self", NULL
18623 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetKind",kwnames
,&obj0
)) goto fail
;
18624 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18625 if (SWIG_arg_fail(1)) SWIG_fail
;
18627 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18628 result
= (wxItemKind
)(arg1
)->GetKind();
18630 wxPyEndAllowThreads(__tstate
);
18631 if (PyErr_Occurred()) SWIG_fail
;
18633 resultobj
= SWIG_From_int((result
));
18640 static PyObject
*_wrap_ToolBarToolBase_IsEnabled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18641 PyObject
*resultobj
= NULL
;
18642 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18644 PyObject
* obj0
= 0 ;
18645 char *kwnames
[] = {
18646 (char *) "self", NULL
18649 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_IsEnabled",kwnames
,&obj0
)) goto fail
;
18650 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18651 if (SWIG_arg_fail(1)) SWIG_fail
;
18653 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18654 result
= (bool)(arg1
)->IsEnabled();
18656 wxPyEndAllowThreads(__tstate
);
18657 if (PyErr_Occurred()) SWIG_fail
;
18660 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18668 static PyObject
*_wrap_ToolBarToolBase_IsToggled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18669 PyObject
*resultobj
= NULL
;
18670 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18672 PyObject
* obj0
= 0 ;
18673 char *kwnames
[] = {
18674 (char *) "self", NULL
18677 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_IsToggled",kwnames
,&obj0
)) goto fail
;
18678 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18679 if (SWIG_arg_fail(1)) SWIG_fail
;
18681 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18682 result
= (bool)(arg1
)->IsToggled();
18684 wxPyEndAllowThreads(__tstate
);
18685 if (PyErr_Occurred()) SWIG_fail
;
18688 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18696 static PyObject
*_wrap_ToolBarToolBase_CanBeToggled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18697 PyObject
*resultobj
= NULL
;
18698 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18700 PyObject
* obj0
= 0 ;
18701 char *kwnames
[] = {
18702 (char *) "self", NULL
18705 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_CanBeToggled",kwnames
,&obj0
)) goto fail
;
18706 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18707 if (SWIG_arg_fail(1)) SWIG_fail
;
18709 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18710 result
= (bool)(arg1
)->CanBeToggled();
18712 wxPyEndAllowThreads(__tstate
);
18713 if (PyErr_Occurred()) SWIG_fail
;
18716 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18724 static PyObject
*_wrap_ToolBarToolBase_GetNormalBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18725 PyObject
*resultobj
= NULL
;
18726 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18728 PyObject
* obj0
= 0 ;
18729 char *kwnames
[] = {
18730 (char *) "self", NULL
18733 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetNormalBitmap",kwnames
,&obj0
)) goto fail
;
18734 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18735 if (SWIG_arg_fail(1)) SWIG_fail
;
18737 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18739 wxBitmap
const &_result_ref
= (arg1
)->GetNormalBitmap();
18740 result
= (wxBitmap
*) &_result_ref
;
18743 wxPyEndAllowThreads(__tstate
);
18744 if (PyErr_Occurred()) SWIG_fail
;
18747 wxBitmap
* resultptr
= new wxBitmap(*result
);
18748 resultobj
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
18756 static PyObject
*_wrap_ToolBarToolBase_GetDisabledBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18757 PyObject
*resultobj
= NULL
;
18758 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18760 PyObject
* obj0
= 0 ;
18761 char *kwnames
[] = {
18762 (char *) "self", NULL
18765 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetDisabledBitmap",kwnames
,&obj0
)) goto fail
;
18766 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18767 if (SWIG_arg_fail(1)) SWIG_fail
;
18769 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18771 wxBitmap
const &_result_ref
= (arg1
)->GetDisabledBitmap();
18772 result
= (wxBitmap
*) &_result_ref
;
18775 wxPyEndAllowThreads(__tstate
);
18776 if (PyErr_Occurred()) SWIG_fail
;
18779 wxBitmap
* resultptr
= new wxBitmap(*result
);
18780 resultobj
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
18788 static PyObject
*_wrap_ToolBarToolBase_GetBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18789 PyObject
*resultobj
= NULL
;
18790 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18792 PyObject
* obj0
= 0 ;
18793 char *kwnames
[] = {
18794 (char *) "self", NULL
18797 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetBitmap",kwnames
,&obj0
)) goto fail
;
18798 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18799 if (SWIG_arg_fail(1)) SWIG_fail
;
18801 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18802 result
= (arg1
)->GetBitmap();
18804 wxPyEndAllowThreads(__tstate
);
18805 if (PyErr_Occurred()) SWIG_fail
;
18808 wxBitmap
* resultptr
;
18809 resultptr
= new wxBitmap(static_cast<wxBitmap
& >(result
));
18810 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
18818 static PyObject
*_wrap_ToolBarToolBase_GetLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18819 PyObject
*resultobj
= NULL
;
18820 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18822 PyObject
* obj0
= 0 ;
18823 char *kwnames
[] = {
18824 (char *) "self", NULL
18827 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetLabel",kwnames
,&obj0
)) goto fail
;
18828 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18829 if (SWIG_arg_fail(1)) SWIG_fail
;
18831 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18832 result
= (arg1
)->GetLabel();
18834 wxPyEndAllowThreads(__tstate
);
18835 if (PyErr_Occurred()) SWIG_fail
;
18839 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
18841 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
18850 static PyObject
*_wrap_ToolBarToolBase_GetShortHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18851 PyObject
*resultobj
= NULL
;
18852 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18854 PyObject
* obj0
= 0 ;
18855 char *kwnames
[] = {
18856 (char *) "self", NULL
18859 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetShortHelp",kwnames
,&obj0
)) goto fail
;
18860 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18861 if (SWIG_arg_fail(1)) SWIG_fail
;
18863 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18864 result
= (arg1
)->GetShortHelp();
18866 wxPyEndAllowThreads(__tstate
);
18867 if (PyErr_Occurred()) SWIG_fail
;
18871 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
18873 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
18882 static PyObject
*_wrap_ToolBarToolBase_GetLongHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18883 PyObject
*resultobj
= NULL
;
18884 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18886 PyObject
* obj0
= 0 ;
18887 char *kwnames
[] = {
18888 (char *) "self", NULL
18891 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetLongHelp",kwnames
,&obj0
)) goto fail
;
18892 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18893 if (SWIG_arg_fail(1)) SWIG_fail
;
18895 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18896 result
= (arg1
)->GetLongHelp();
18898 wxPyEndAllowThreads(__tstate
);
18899 if (PyErr_Occurred()) SWIG_fail
;
18903 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
18905 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
18914 static PyObject
*_wrap_ToolBarToolBase_Enable(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18915 PyObject
*resultobj
= NULL
;
18916 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18919 PyObject
* obj0
= 0 ;
18920 PyObject
* obj1
= 0 ;
18921 char *kwnames
[] = {
18922 (char *) "self",(char *) "enable", NULL
18925 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_Enable",kwnames
,&obj0
,&obj1
)) goto fail
;
18926 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18927 if (SWIG_arg_fail(1)) SWIG_fail
;
18929 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
18930 if (SWIG_arg_fail(2)) SWIG_fail
;
18933 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18934 result
= (bool)(arg1
)->Enable(arg2
);
18936 wxPyEndAllowThreads(__tstate
);
18937 if (PyErr_Occurred()) SWIG_fail
;
18940 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18948 static PyObject
*_wrap_ToolBarToolBase_Toggle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18949 PyObject
*resultobj
= NULL
;
18950 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18951 PyObject
* obj0
= 0 ;
18952 char *kwnames
[] = {
18953 (char *) "self", NULL
18956 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_Toggle",kwnames
,&obj0
)) goto fail
;
18957 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18958 if (SWIG_arg_fail(1)) SWIG_fail
;
18960 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18963 wxPyEndAllowThreads(__tstate
);
18964 if (PyErr_Occurred()) SWIG_fail
;
18966 Py_INCREF(Py_None
); resultobj
= Py_None
;
18973 static PyObject
*_wrap_ToolBarToolBase_SetToggle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
18974 PyObject
*resultobj
= NULL
;
18975 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
18978 PyObject
* obj0
= 0 ;
18979 PyObject
* obj1
= 0 ;
18980 char *kwnames
[] = {
18981 (char *) "self",(char *) "toggle", NULL
18984 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_SetToggle",kwnames
,&obj0
,&obj1
)) goto fail
;
18985 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
18986 if (SWIG_arg_fail(1)) SWIG_fail
;
18988 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
18989 if (SWIG_arg_fail(2)) SWIG_fail
;
18992 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18993 result
= (bool)(arg1
)->SetToggle(arg2
);
18995 wxPyEndAllowThreads(__tstate
);
18996 if (PyErr_Occurred()) SWIG_fail
;
18999 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19007 static PyObject
*_wrap_ToolBarToolBase_SetShortHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19008 PyObject
*resultobj
= NULL
;
19009 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19010 wxString
*arg2
= 0 ;
19012 bool temp2
= false ;
19013 PyObject
* obj0
= 0 ;
19014 PyObject
* obj1
= 0 ;
19015 char *kwnames
[] = {
19016 (char *) "self",(char *) "help", NULL
19019 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_SetShortHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
19020 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19021 if (SWIG_arg_fail(1)) SWIG_fail
;
19023 arg2
= wxString_in_helper(obj1
);
19024 if (arg2
== NULL
) SWIG_fail
;
19028 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19029 result
= (bool)(arg1
)->SetShortHelp((wxString
const &)*arg2
);
19031 wxPyEndAllowThreads(__tstate
);
19032 if (PyErr_Occurred()) SWIG_fail
;
19035 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19051 static PyObject
*_wrap_ToolBarToolBase_SetLongHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19052 PyObject
*resultobj
= NULL
;
19053 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19054 wxString
*arg2
= 0 ;
19056 bool temp2
= false ;
19057 PyObject
* obj0
= 0 ;
19058 PyObject
* obj1
= 0 ;
19059 char *kwnames
[] = {
19060 (char *) "self",(char *) "help", NULL
19063 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_SetLongHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
19064 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19065 if (SWIG_arg_fail(1)) SWIG_fail
;
19067 arg2
= wxString_in_helper(obj1
);
19068 if (arg2
== NULL
) SWIG_fail
;
19072 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19073 result
= (bool)(arg1
)->SetLongHelp((wxString
const &)*arg2
);
19075 wxPyEndAllowThreads(__tstate
);
19076 if (PyErr_Occurred()) SWIG_fail
;
19079 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19095 static PyObject
*_wrap_ToolBarToolBase_SetNormalBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19096 PyObject
*resultobj
= NULL
;
19097 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19098 wxBitmap
*arg2
= 0 ;
19099 PyObject
* obj0
= 0 ;
19100 PyObject
* obj1
= 0 ;
19101 char *kwnames
[] = {
19102 (char *) "self",(char *) "bmp", NULL
19105 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_SetNormalBitmap",kwnames
,&obj0
,&obj1
)) goto fail
;
19106 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19107 if (SWIG_arg_fail(1)) SWIG_fail
;
19109 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
19110 if (SWIG_arg_fail(2)) SWIG_fail
;
19111 if (arg2
== NULL
) {
19112 SWIG_null_ref("wxBitmap");
19114 if (SWIG_arg_fail(2)) SWIG_fail
;
19117 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19118 (arg1
)->SetNormalBitmap((wxBitmap
const &)*arg2
);
19120 wxPyEndAllowThreads(__tstate
);
19121 if (PyErr_Occurred()) SWIG_fail
;
19123 Py_INCREF(Py_None
); resultobj
= Py_None
;
19130 static PyObject
*_wrap_ToolBarToolBase_SetDisabledBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19131 PyObject
*resultobj
= NULL
;
19132 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19133 wxBitmap
*arg2
= 0 ;
19134 PyObject
* obj0
= 0 ;
19135 PyObject
* obj1
= 0 ;
19136 char *kwnames
[] = {
19137 (char *) "self",(char *) "bmp", NULL
19140 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_SetDisabledBitmap",kwnames
,&obj0
,&obj1
)) goto fail
;
19141 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19142 if (SWIG_arg_fail(1)) SWIG_fail
;
19144 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
19145 if (SWIG_arg_fail(2)) SWIG_fail
;
19146 if (arg2
== NULL
) {
19147 SWIG_null_ref("wxBitmap");
19149 if (SWIG_arg_fail(2)) SWIG_fail
;
19152 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19153 (arg1
)->SetDisabledBitmap((wxBitmap
const &)*arg2
);
19155 wxPyEndAllowThreads(__tstate
);
19156 if (PyErr_Occurred()) SWIG_fail
;
19158 Py_INCREF(Py_None
); resultobj
= Py_None
;
19165 static PyObject
*_wrap_ToolBarToolBase_SetLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19166 PyObject
*resultobj
= NULL
;
19167 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19168 wxString
*arg2
= 0 ;
19169 bool temp2
= false ;
19170 PyObject
* obj0
= 0 ;
19171 PyObject
* obj1
= 0 ;
19172 char *kwnames
[] = {
19173 (char *) "self",(char *) "label", NULL
19176 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_SetLabel",kwnames
,&obj0
,&obj1
)) goto fail
;
19177 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19178 if (SWIG_arg_fail(1)) SWIG_fail
;
19180 arg2
= wxString_in_helper(obj1
);
19181 if (arg2
== NULL
) SWIG_fail
;
19185 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19186 (arg1
)->SetLabel((wxString
const &)*arg2
);
19188 wxPyEndAllowThreads(__tstate
);
19189 if (PyErr_Occurred()) SWIG_fail
;
19191 Py_INCREF(Py_None
); resultobj
= Py_None
;
19206 static PyObject
*_wrap_ToolBarToolBase_Detach(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19207 PyObject
*resultobj
= NULL
;
19208 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19209 PyObject
* obj0
= 0 ;
19210 char *kwnames
[] = {
19211 (char *) "self", NULL
19214 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_Detach",kwnames
,&obj0
)) goto fail
;
19215 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19216 if (SWIG_arg_fail(1)) SWIG_fail
;
19218 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19221 wxPyEndAllowThreads(__tstate
);
19222 if (PyErr_Occurred()) SWIG_fail
;
19224 Py_INCREF(Py_None
); resultobj
= Py_None
;
19231 static PyObject
*_wrap_ToolBarToolBase_Attach(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19232 PyObject
*resultobj
= NULL
;
19233 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19234 wxToolBarBase
*arg2
= (wxToolBarBase
*) 0 ;
19235 PyObject
* obj0
= 0 ;
19236 PyObject
* obj1
= 0 ;
19237 char *kwnames
[] = {
19238 (char *) "self",(char *) "tbar", NULL
19241 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_Attach",kwnames
,&obj0
,&obj1
)) goto fail
;
19242 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19243 if (SWIG_arg_fail(1)) SWIG_fail
;
19244 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19245 if (SWIG_arg_fail(2)) SWIG_fail
;
19247 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19248 (arg1
)->Attach(arg2
);
19250 wxPyEndAllowThreads(__tstate
);
19251 if (PyErr_Occurred()) SWIG_fail
;
19253 Py_INCREF(Py_None
); resultobj
= Py_None
;
19260 static PyObject
*_wrap_ToolBarToolBase_GetClientData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19261 PyObject
*resultobj
= NULL
;
19262 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19264 PyObject
* obj0
= 0 ;
19265 char *kwnames
[] = {
19266 (char *) "self", NULL
19269 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarToolBase_GetClientData",kwnames
,&obj0
)) goto fail
;
19270 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19271 if (SWIG_arg_fail(1)) SWIG_fail
;
19273 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19274 result
= (PyObject
*)wxToolBarToolBase_GetClientData(arg1
);
19276 wxPyEndAllowThreads(__tstate
);
19277 if (PyErr_Occurred()) SWIG_fail
;
19279 resultobj
= result
;
19286 static PyObject
*_wrap_ToolBarToolBase_SetClientData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19287 PyObject
*resultobj
= NULL
;
19288 wxToolBarToolBase
*arg1
= (wxToolBarToolBase
*) 0 ;
19289 PyObject
*arg2
= (PyObject
*) 0 ;
19290 PyObject
* obj0
= 0 ;
19291 PyObject
* obj1
= 0 ;
19292 char *kwnames
[] = {
19293 (char *) "self",(char *) "clientData", NULL
19296 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarToolBase_SetClientData",kwnames
,&obj0
,&obj1
)) goto fail
;
19297 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19298 if (SWIG_arg_fail(1)) SWIG_fail
;
19301 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19302 wxToolBarToolBase_SetClientData(arg1
,arg2
);
19304 wxPyEndAllowThreads(__tstate
);
19305 if (PyErr_Occurred()) SWIG_fail
;
19307 Py_INCREF(Py_None
); resultobj
= Py_None
;
19314 static PyObject
* ToolBarToolBase_swigregister(PyObject
*, PyObject
*args
) {
19316 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
19317 SWIG_TypeClientData(SWIGTYPE_p_wxToolBarToolBase
, obj
);
19319 return Py_BuildValue((char *)"");
19321 static PyObject
*_wrap_ToolBarBase_DoAddTool(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19322 PyObject
*resultobj
= NULL
;
19323 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
19325 wxString
*arg3
= 0 ;
19326 wxBitmap
*arg4
= 0 ;
19327 wxBitmap
const &arg5_defvalue
= wxNullBitmap
;
19328 wxBitmap
*arg5
= (wxBitmap
*) &arg5_defvalue
;
19329 wxItemKind arg6
= (wxItemKind
) wxITEM_NORMAL
;
19330 wxString
const &arg7_defvalue
= wxPyEmptyString
;
19331 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
19332 wxString
const &arg8_defvalue
= wxPyEmptyString
;
19333 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
19334 PyObject
*arg9
= (PyObject
*) NULL
;
19335 wxToolBarToolBase
*result
;
19336 bool temp3
= false ;
19337 bool temp7
= false ;
19338 bool temp8
= false ;
19339 PyObject
* obj0
= 0 ;
19340 PyObject
* obj1
= 0 ;
19341 PyObject
* obj2
= 0 ;
19342 PyObject
* obj3
= 0 ;
19343 PyObject
* obj4
= 0 ;
19344 PyObject
* obj5
= 0 ;
19345 PyObject
* obj6
= 0 ;
19346 PyObject
* obj7
= 0 ;
19347 PyObject
* obj8
= 0 ;
19348 char *kwnames
[] = {
19349 (char *) "self",(char *) "id",(char *) "label",(char *) "bitmap",(char *) "bmpDisabled",(char *) "kind",(char *) "shortHelp",(char *) "longHelp",(char *) "clientData", NULL
19352 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOOOO:ToolBarBase_DoAddTool",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
19353 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19354 if (SWIG_arg_fail(1)) SWIG_fail
;
19356 arg2
= static_cast<int >(SWIG_As_int(obj1
));
19357 if (SWIG_arg_fail(2)) SWIG_fail
;
19360 arg3
= wxString_in_helper(obj2
);
19361 if (arg3
== NULL
) SWIG_fail
;
19365 SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
19366 if (SWIG_arg_fail(4)) SWIG_fail
;
19367 if (arg4
== NULL
) {
19368 SWIG_null_ref("wxBitmap");
19370 if (SWIG_arg_fail(4)) SWIG_fail
;
19374 SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
19375 if (SWIG_arg_fail(5)) SWIG_fail
;
19376 if (arg5
== NULL
) {
19377 SWIG_null_ref("wxBitmap");
19379 if (SWIG_arg_fail(5)) SWIG_fail
;
19384 arg6
= static_cast<wxItemKind
>(SWIG_As_int(obj5
));
19385 if (SWIG_arg_fail(6)) SWIG_fail
;
19390 arg7
= wxString_in_helper(obj6
);
19391 if (arg7
== NULL
) SWIG_fail
;
19397 arg8
= wxString_in_helper(obj7
);
19398 if (arg8
== NULL
) SWIG_fail
;
19406 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19407 result
= (wxToolBarToolBase
*)wxToolBarBase_DoAddTool(arg1
,arg2
,(wxString
const &)*arg3
,(wxBitmap
const &)*arg4
,(wxBitmap
const &)*arg5
,arg6
,(wxString
const &)*arg7
,(wxString
const &)*arg8
,arg9
);
19409 wxPyEndAllowThreads(__tstate
);
19410 if (PyErr_Occurred()) SWIG_fail
;
19413 resultobj
= wxPyMake_wxObject(result
, 0);
19445 static PyObject
*_wrap_ToolBarBase_DoInsertTool(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19446 PyObject
*resultobj
= NULL
;
19447 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
19450 wxString
*arg4
= 0 ;
19451 wxBitmap
*arg5
= 0 ;
19452 wxBitmap
const &arg6_defvalue
= wxNullBitmap
;
19453 wxBitmap
*arg6
= (wxBitmap
*) &arg6_defvalue
;
19454 wxItemKind arg7
= (wxItemKind
) wxITEM_NORMAL
;
19455 wxString
const &arg8_defvalue
= wxPyEmptyString
;
19456 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
19457 wxString
const &arg9_defvalue
= wxPyEmptyString
;
19458 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
19459 PyObject
*arg10
= (PyObject
*) NULL
;
19460 wxToolBarToolBase
*result
;
19461 bool temp4
= false ;
19462 bool temp8
= false ;
19463 bool temp9
= false ;
19464 PyObject
* obj0
= 0 ;
19465 PyObject
* obj1
= 0 ;
19466 PyObject
* obj2
= 0 ;
19467 PyObject
* obj3
= 0 ;
19468 PyObject
* obj4
= 0 ;
19469 PyObject
* obj5
= 0 ;
19470 PyObject
* obj6
= 0 ;
19471 PyObject
* obj7
= 0 ;
19472 PyObject
* obj8
= 0 ;
19473 PyObject
* obj9
= 0 ;
19474 char *kwnames
[] = {
19475 (char *) "self",(char *) "pos",(char *) "id",(char *) "label",(char *) "bitmap",(char *) "bmpDisabled",(char *) "kind",(char *) "shortHelp",(char *) "longHelp",(char *) "clientData", NULL
19478 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|OOOOO:ToolBarBase_DoInsertTool",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) goto fail
;
19479 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19480 if (SWIG_arg_fail(1)) SWIG_fail
;
19482 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
19483 if (SWIG_arg_fail(2)) SWIG_fail
;
19486 arg3
= static_cast<int >(SWIG_As_int(obj2
));
19487 if (SWIG_arg_fail(3)) SWIG_fail
;
19490 arg4
= wxString_in_helper(obj3
);
19491 if (arg4
== NULL
) SWIG_fail
;
19495 SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
19496 if (SWIG_arg_fail(5)) SWIG_fail
;
19497 if (arg5
== NULL
) {
19498 SWIG_null_ref("wxBitmap");
19500 if (SWIG_arg_fail(5)) SWIG_fail
;
19504 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
19505 if (SWIG_arg_fail(6)) SWIG_fail
;
19506 if (arg6
== NULL
) {
19507 SWIG_null_ref("wxBitmap");
19509 if (SWIG_arg_fail(6)) SWIG_fail
;
19514 arg7
= static_cast<wxItemKind
>(SWIG_As_int(obj6
));
19515 if (SWIG_arg_fail(7)) SWIG_fail
;
19520 arg8
= wxString_in_helper(obj7
);
19521 if (arg8
== NULL
) SWIG_fail
;
19527 arg9
= wxString_in_helper(obj8
);
19528 if (arg9
== NULL
) SWIG_fail
;
19536 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19537 result
= (wxToolBarToolBase
*)wxToolBarBase_DoInsertTool(arg1
,arg2
,arg3
,(wxString
const &)*arg4
,(wxBitmap
const &)*arg5
,(wxBitmap
const &)*arg6
,arg7
,(wxString
const &)*arg8
,(wxString
const &)*arg9
,arg10
);
19539 wxPyEndAllowThreads(__tstate
);
19540 if (PyErr_Occurred()) SWIG_fail
;
19543 resultobj
= wxPyMake_wxObject(result
, 0);
19575 static PyObject
*_wrap_ToolBarBase_AddToolItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19576 PyObject
*resultobj
= NULL
;
19577 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
19578 wxToolBarToolBase
*arg2
= (wxToolBarToolBase
*) 0 ;
19579 wxToolBarToolBase
*result
;
19580 PyObject
* obj0
= 0 ;
19581 PyObject
* obj1
= 0 ;
19582 char *kwnames
[] = {
19583 (char *) "self",(char *) "tool", NULL
19586 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_AddToolItem",kwnames
,&obj0
,&obj1
)) goto fail
;
19587 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19588 if (SWIG_arg_fail(1)) SWIG_fail
;
19589 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19590 if (SWIG_arg_fail(2)) SWIG_fail
;
19592 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19593 result
= (wxToolBarToolBase
*)(arg1
)->AddTool(arg2
);
19595 wxPyEndAllowThreads(__tstate
);
19596 if (PyErr_Occurred()) SWIG_fail
;
19599 resultobj
= wxPyMake_wxObject(result
, 0);
19607 static PyObject
*_wrap_ToolBarBase_InsertToolItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19608 PyObject
*resultobj
= NULL
;
19609 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
19611 wxToolBarToolBase
*arg3
= (wxToolBarToolBase
*) 0 ;
19612 wxToolBarToolBase
*result
;
19613 PyObject
* obj0
= 0 ;
19614 PyObject
* obj1
= 0 ;
19615 PyObject
* obj2
= 0 ;
19616 char *kwnames
[] = {
19617 (char *) "self",(char *) "pos",(char *) "tool", NULL
19620 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_InsertToolItem",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
19621 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19622 if (SWIG_arg_fail(1)) SWIG_fail
;
19624 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
19625 if (SWIG_arg_fail(2)) SWIG_fail
;
19627 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxToolBarToolBase
, SWIG_POINTER_EXCEPTION
| 0);
19628 if (SWIG_arg_fail(3)) SWIG_fail
;
19630 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19631 result
= (wxToolBarToolBase
*)(arg1
)->InsertTool(arg2
,arg3
);
19633 wxPyEndAllowThreads(__tstate
);
19634 if (PyErr_Occurred()) SWIG_fail
;
19637 resultobj
= wxPyMake_wxObject(result
, 0);
19645 static PyObject
*_wrap_ToolBarBase_AddControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19646 PyObject
*resultobj
= NULL
;
19647 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
19648 wxControl
*arg2
= (wxControl
*) 0 ;
19649 wxToolBarToolBase
*result
;
19650 PyObject
* obj0
= 0 ;
19651 PyObject
* obj1
= 0 ;
19652 char *kwnames
[] = {
19653 (char *) "self",(char *) "control", NULL
19656 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_AddControl",kwnames
,&obj0
,&obj1
)) goto fail
;
19657 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19658 if (SWIG_arg_fail(1)) SWIG_fail
;
19659 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxControl
, SWIG_POINTER_EXCEPTION
| 0);
19660 if (SWIG_arg_fail(2)) SWIG_fail
;
19662 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19663 result
= (wxToolBarToolBase
*)(arg1
)->AddControl(arg2
);
19665 wxPyEndAllowThreads(__tstate
);
19666 if (PyErr_Occurred()) SWIG_fail
;
19669 resultobj
= wxPyMake_wxObject(result
, 0);
19677 static PyObject
*_wrap_ToolBarBase_InsertControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19678 PyObject
*resultobj
= NULL
;
19679 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
19681 wxControl
*arg3
= (wxControl
*) 0 ;
19682 wxToolBarToolBase
*result
;
19683 PyObject
* obj0
= 0 ;
19684 PyObject
* obj1
= 0 ;
19685 PyObject
* obj2
= 0 ;
19686 char *kwnames
[] = {
19687 (char *) "self",(char *) "pos",(char *) "control", NULL
19690 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_InsertControl",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
19691 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19692 if (SWIG_arg_fail(1)) SWIG_fail
;
19694 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
19695 if (SWIG_arg_fail(2)) SWIG_fail
;
19697 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxControl
, SWIG_POINTER_EXCEPTION
| 0);
19698 if (SWIG_arg_fail(3)) SWIG_fail
;
19700 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19701 result
= (wxToolBarToolBase
*)(arg1
)->InsertControl(arg2
,arg3
);
19703 wxPyEndAllowThreads(__tstate
);
19704 if (PyErr_Occurred()) SWIG_fail
;
19707 resultobj
= wxPyMake_wxObject(result
, 0);
19715 static PyObject
*_wrap_ToolBarBase_FindControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19716 PyObject
*resultobj
= NULL
;
19717 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
19720 PyObject
* obj0
= 0 ;
19721 PyObject
* obj1
= 0 ;
19722 char *kwnames
[] = {
19723 (char *) "self",(char *) "id", NULL
19726 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_FindControl",kwnames
,&obj0
,&obj1
)) goto fail
;
19727 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19728 if (SWIG_arg_fail(1)) SWIG_fail
;
19730 arg2
= static_cast<int >(SWIG_As_int(obj1
));
19731 if (SWIG_arg_fail(2)) SWIG_fail
;
19734 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19735 result
= (wxControl
*)(arg1
)->FindControl(arg2
);
19737 wxPyEndAllowThreads(__tstate
);
19738 if (PyErr_Occurred()) SWIG_fail
;
19741 resultobj
= wxPyMake_wxObject(result
, 0);
19749 static PyObject
*_wrap_ToolBarBase_AddSeparator(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19750 PyObject
*resultobj
= NULL
;
19751 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
19752 wxToolBarToolBase
*result
;
19753 PyObject
* obj0
= 0 ;
19754 char *kwnames
[] = {
19755 (char *) "self", NULL
19758 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_AddSeparator",kwnames
,&obj0
)) goto fail
;
19759 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19760 if (SWIG_arg_fail(1)) SWIG_fail
;
19762 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19763 result
= (wxToolBarToolBase
*)(arg1
)->AddSeparator();
19765 wxPyEndAllowThreads(__tstate
);
19766 if (PyErr_Occurred()) SWIG_fail
;
19769 resultobj
= wxPyMake_wxObject(result
, 0);
19777 static PyObject
*_wrap_ToolBarBase_InsertSeparator(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19778 PyObject
*resultobj
= NULL
;
19779 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
19781 wxToolBarToolBase
*result
;
19782 PyObject
* obj0
= 0 ;
19783 PyObject
* obj1
= 0 ;
19784 char *kwnames
[] = {
19785 (char *) "self",(char *) "pos", NULL
19788 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_InsertSeparator",kwnames
,&obj0
,&obj1
)) goto fail
;
19789 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19790 if (SWIG_arg_fail(1)) SWIG_fail
;
19792 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
19793 if (SWIG_arg_fail(2)) SWIG_fail
;
19796 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19797 result
= (wxToolBarToolBase
*)(arg1
)->InsertSeparator(arg2
);
19799 wxPyEndAllowThreads(__tstate
);
19800 if (PyErr_Occurred()) SWIG_fail
;
19803 resultobj
= wxPyMake_wxObject(result
, 0);
19811 static PyObject
*_wrap_ToolBarBase_RemoveTool(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19812 PyObject
*resultobj
= NULL
;
19813 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
19815 wxToolBarToolBase
*result
;
19816 PyObject
* obj0
= 0 ;
19817 PyObject
* obj1
= 0 ;
19818 char *kwnames
[] = {
19819 (char *) "self",(char *) "id", NULL
19822 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_RemoveTool",kwnames
,&obj0
,&obj1
)) goto fail
;
19823 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19824 if (SWIG_arg_fail(1)) SWIG_fail
;
19826 arg2
= static_cast<int >(SWIG_As_int(obj1
));
19827 if (SWIG_arg_fail(2)) SWIG_fail
;
19830 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19831 result
= (wxToolBarToolBase
*)(arg1
)->RemoveTool(arg2
);
19833 wxPyEndAllowThreads(__tstate
);
19834 if (PyErr_Occurred()) SWIG_fail
;
19837 resultobj
= wxPyMake_wxObject(result
, 0);
19845 static PyObject
*_wrap_ToolBarBase_DeleteToolByPos(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19846 PyObject
*resultobj
= NULL
;
19847 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
19850 PyObject
* obj0
= 0 ;
19851 PyObject
* obj1
= 0 ;
19852 char *kwnames
[] = {
19853 (char *) "self",(char *) "pos", NULL
19856 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_DeleteToolByPos",kwnames
,&obj0
,&obj1
)) goto fail
;
19857 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19858 if (SWIG_arg_fail(1)) SWIG_fail
;
19860 arg2
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj1
));
19861 if (SWIG_arg_fail(2)) SWIG_fail
;
19864 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19865 result
= (bool)(arg1
)->DeleteToolByPos(arg2
);
19867 wxPyEndAllowThreads(__tstate
);
19868 if (PyErr_Occurred()) SWIG_fail
;
19871 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19879 static PyObject
*_wrap_ToolBarBase_DeleteTool(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19880 PyObject
*resultobj
= NULL
;
19881 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
19884 PyObject
* obj0
= 0 ;
19885 PyObject
* obj1
= 0 ;
19886 char *kwnames
[] = {
19887 (char *) "self",(char *) "id", NULL
19890 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_DeleteTool",kwnames
,&obj0
,&obj1
)) goto fail
;
19891 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19892 if (SWIG_arg_fail(1)) SWIG_fail
;
19894 arg2
= static_cast<int >(SWIG_As_int(obj1
));
19895 if (SWIG_arg_fail(2)) SWIG_fail
;
19898 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19899 result
= (bool)(arg1
)->DeleteTool(arg2
);
19901 wxPyEndAllowThreads(__tstate
);
19902 if (PyErr_Occurred()) SWIG_fail
;
19905 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19913 static PyObject
*_wrap_ToolBarBase_ClearTools(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19914 PyObject
*resultobj
= NULL
;
19915 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
19916 PyObject
* obj0
= 0 ;
19917 char *kwnames
[] = {
19918 (char *) "self", NULL
19921 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_ClearTools",kwnames
,&obj0
)) goto fail
;
19922 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19923 if (SWIG_arg_fail(1)) SWIG_fail
;
19925 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19926 (arg1
)->ClearTools();
19928 wxPyEndAllowThreads(__tstate
);
19929 if (PyErr_Occurred()) SWIG_fail
;
19931 Py_INCREF(Py_None
); resultobj
= Py_None
;
19938 static PyObject
*_wrap_ToolBarBase_Realize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19939 PyObject
*resultobj
= NULL
;
19940 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
19942 PyObject
* obj0
= 0 ;
19943 char *kwnames
[] = {
19944 (char *) "self", NULL
19947 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_Realize",kwnames
,&obj0
)) goto fail
;
19948 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19949 if (SWIG_arg_fail(1)) SWIG_fail
;
19951 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19952 result
= (bool)(arg1
)->Realize();
19954 wxPyEndAllowThreads(__tstate
);
19955 if (PyErr_Occurred()) SWIG_fail
;
19958 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19966 static PyObject
*_wrap_ToolBarBase_EnableTool(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
19967 PyObject
*resultobj
= NULL
;
19968 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
19971 PyObject
* obj0
= 0 ;
19972 PyObject
* obj1
= 0 ;
19973 PyObject
* obj2
= 0 ;
19974 char *kwnames
[] = {
19975 (char *) "self",(char *) "id",(char *) "enable", NULL
19978 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_EnableTool",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
19979 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
19980 if (SWIG_arg_fail(1)) SWIG_fail
;
19982 arg2
= static_cast<int >(SWIG_As_int(obj1
));
19983 if (SWIG_arg_fail(2)) SWIG_fail
;
19986 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
19987 if (SWIG_arg_fail(3)) SWIG_fail
;
19990 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19991 (arg1
)->EnableTool(arg2
,arg3
);
19993 wxPyEndAllowThreads(__tstate
);
19994 if (PyErr_Occurred()) SWIG_fail
;
19996 Py_INCREF(Py_None
); resultobj
= Py_None
;
20003 static PyObject
*_wrap_ToolBarBase_ToggleTool(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20004 PyObject
*resultobj
= NULL
;
20005 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20008 PyObject
* obj0
= 0 ;
20009 PyObject
* obj1
= 0 ;
20010 PyObject
* obj2
= 0 ;
20011 char *kwnames
[] = {
20012 (char *) "self",(char *) "id",(char *) "toggle", NULL
20015 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_ToggleTool",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
20016 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20017 if (SWIG_arg_fail(1)) SWIG_fail
;
20019 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20020 if (SWIG_arg_fail(2)) SWIG_fail
;
20023 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
20024 if (SWIG_arg_fail(3)) SWIG_fail
;
20027 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20028 (arg1
)->ToggleTool(arg2
,arg3
);
20030 wxPyEndAllowThreads(__tstate
);
20031 if (PyErr_Occurred()) SWIG_fail
;
20033 Py_INCREF(Py_None
); resultobj
= Py_None
;
20040 static PyObject
*_wrap_ToolBarBase_SetToggle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20041 PyObject
*resultobj
= NULL
;
20042 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20045 PyObject
* obj0
= 0 ;
20046 PyObject
* obj1
= 0 ;
20047 PyObject
* obj2
= 0 ;
20048 char *kwnames
[] = {
20049 (char *) "self",(char *) "id",(char *) "toggle", NULL
20052 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_SetToggle",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
20053 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20054 if (SWIG_arg_fail(1)) SWIG_fail
;
20056 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20057 if (SWIG_arg_fail(2)) SWIG_fail
;
20060 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
20061 if (SWIG_arg_fail(3)) SWIG_fail
;
20064 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20065 (arg1
)->SetToggle(arg2
,arg3
);
20067 wxPyEndAllowThreads(__tstate
);
20068 if (PyErr_Occurred()) SWIG_fail
;
20070 Py_INCREF(Py_None
); resultobj
= Py_None
;
20077 static PyObject
*_wrap_ToolBarBase_GetToolClientData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20078 PyObject
*resultobj
= NULL
;
20079 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20082 PyObject
* obj0
= 0 ;
20083 PyObject
* obj1
= 0 ;
20084 char *kwnames
[] = {
20085 (char *) "self",(char *) "id", NULL
20088 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_GetToolClientData",kwnames
,&obj0
,&obj1
)) goto fail
;
20089 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20090 if (SWIG_arg_fail(1)) SWIG_fail
;
20092 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20093 if (SWIG_arg_fail(2)) SWIG_fail
;
20096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20097 result
= (PyObject
*)wxToolBarBase_GetToolClientData(arg1
,arg2
);
20099 wxPyEndAllowThreads(__tstate
);
20100 if (PyErr_Occurred()) SWIG_fail
;
20102 resultobj
= result
;
20109 static PyObject
*_wrap_ToolBarBase_SetToolClientData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20110 PyObject
*resultobj
= NULL
;
20111 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20113 PyObject
*arg3
= (PyObject
*) 0 ;
20114 PyObject
* obj0
= 0 ;
20115 PyObject
* obj1
= 0 ;
20116 PyObject
* obj2
= 0 ;
20117 char *kwnames
[] = {
20118 (char *) "self",(char *) "id",(char *) "clientData", NULL
20121 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_SetToolClientData",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
20122 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20123 if (SWIG_arg_fail(1)) SWIG_fail
;
20125 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20126 if (SWIG_arg_fail(2)) SWIG_fail
;
20130 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20131 wxToolBarBase_SetToolClientData(arg1
,arg2
,arg3
);
20133 wxPyEndAllowThreads(__tstate
);
20134 if (PyErr_Occurred()) SWIG_fail
;
20136 Py_INCREF(Py_None
); resultobj
= Py_None
;
20143 static PyObject
*_wrap_ToolBarBase_GetToolPos(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20144 PyObject
*resultobj
= NULL
;
20145 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20148 PyObject
* obj0
= 0 ;
20149 PyObject
* obj1
= 0 ;
20150 char *kwnames
[] = {
20151 (char *) "self",(char *) "id", NULL
20154 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_GetToolPos",kwnames
,&obj0
,&obj1
)) goto fail
;
20155 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20156 if (SWIG_arg_fail(1)) SWIG_fail
;
20158 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20159 if (SWIG_arg_fail(2)) SWIG_fail
;
20162 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20163 result
= (int)((wxToolBarBase
const *)arg1
)->GetToolPos(arg2
);
20165 wxPyEndAllowThreads(__tstate
);
20166 if (PyErr_Occurred()) SWIG_fail
;
20169 resultobj
= SWIG_From_int(static_cast<int >(result
));
20177 static PyObject
*_wrap_ToolBarBase_GetToolState(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20178 PyObject
*resultobj
= NULL
;
20179 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20182 PyObject
* obj0
= 0 ;
20183 PyObject
* obj1
= 0 ;
20184 char *kwnames
[] = {
20185 (char *) "self",(char *) "id", NULL
20188 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_GetToolState",kwnames
,&obj0
,&obj1
)) goto fail
;
20189 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20190 if (SWIG_arg_fail(1)) SWIG_fail
;
20192 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20193 if (SWIG_arg_fail(2)) SWIG_fail
;
20196 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20197 result
= (bool)(arg1
)->GetToolState(arg2
);
20199 wxPyEndAllowThreads(__tstate
);
20200 if (PyErr_Occurred()) SWIG_fail
;
20203 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20211 static PyObject
*_wrap_ToolBarBase_GetToolEnabled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20212 PyObject
*resultobj
= NULL
;
20213 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20216 PyObject
* obj0
= 0 ;
20217 PyObject
* obj1
= 0 ;
20218 char *kwnames
[] = {
20219 (char *) "self",(char *) "id", NULL
20222 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_GetToolEnabled",kwnames
,&obj0
,&obj1
)) goto fail
;
20223 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20224 if (SWIG_arg_fail(1)) SWIG_fail
;
20226 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20227 if (SWIG_arg_fail(2)) SWIG_fail
;
20230 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20231 result
= (bool)(arg1
)->GetToolEnabled(arg2
);
20233 wxPyEndAllowThreads(__tstate
);
20234 if (PyErr_Occurred()) SWIG_fail
;
20237 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20245 static PyObject
*_wrap_ToolBarBase_SetToolShortHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20246 PyObject
*resultobj
= NULL
;
20247 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20249 wxString
*arg3
= 0 ;
20250 bool temp3
= false ;
20251 PyObject
* obj0
= 0 ;
20252 PyObject
* obj1
= 0 ;
20253 PyObject
* obj2
= 0 ;
20254 char *kwnames
[] = {
20255 (char *) "self",(char *) "id",(char *) "helpString", NULL
20258 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_SetToolShortHelp",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
20259 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20260 if (SWIG_arg_fail(1)) SWIG_fail
;
20262 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20263 if (SWIG_arg_fail(2)) SWIG_fail
;
20266 arg3
= wxString_in_helper(obj2
);
20267 if (arg3
== NULL
) SWIG_fail
;
20271 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20272 (arg1
)->SetToolShortHelp(arg2
,(wxString
const &)*arg3
);
20274 wxPyEndAllowThreads(__tstate
);
20275 if (PyErr_Occurred()) SWIG_fail
;
20277 Py_INCREF(Py_None
); resultobj
= Py_None
;
20292 static PyObject
*_wrap_ToolBarBase_GetToolShortHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20293 PyObject
*resultobj
= NULL
;
20294 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20297 PyObject
* obj0
= 0 ;
20298 PyObject
* obj1
= 0 ;
20299 char *kwnames
[] = {
20300 (char *) "self",(char *) "id", NULL
20303 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_GetToolShortHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
20304 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20305 if (SWIG_arg_fail(1)) SWIG_fail
;
20307 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20308 if (SWIG_arg_fail(2)) SWIG_fail
;
20311 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20312 result
= (arg1
)->GetToolShortHelp(arg2
);
20314 wxPyEndAllowThreads(__tstate
);
20315 if (PyErr_Occurred()) SWIG_fail
;
20319 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
20321 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
20330 static PyObject
*_wrap_ToolBarBase_SetToolLongHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20331 PyObject
*resultobj
= NULL
;
20332 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20334 wxString
*arg3
= 0 ;
20335 bool temp3
= false ;
20336 PyObject
* obj0
= 0 ;
20337 PyObject
* obj1
= 0 ;
20338 PyObject
* obj2
= 0 ;
20339 char *kwnames
[] = {
20340 (char *) "self",(char *) "id",(char *) "helpString", NULL
20343 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_SetToolLongHelp",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
20344 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20345 if (SWIG_arg_fail(1)) SWIG_fail
;
20347 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20348 if (SWIG_arg_fail(2)) SWIG_fail
;
20351 arg3
= wxString_in_helper(obj2
);
20352 if (arg3
== NULL
) SWIG_fail
;
20356 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20357 (arg1
)->SetToolLongHelp(arg2
,(wxString
const &)*arg3
);
20359 wxPyEndAllowThreads(__tstate
);
20360 if (PyErr_Occurred()) SWIG_fail
;
20362 Py_INCREF(Py_None
); resultobj
= Py_None
;
20377 static PyObject
*_wrap_ToolBarBase_GetToolLongHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20378 PyObject
*resultobj
= NULL
;
20379 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20382 PyObject
* obj0
= 0 ;
20383 PyObject
* obj1
= 0 ;
20384 char *kwnames
[] = {
20385 (char *) "self",(char *) "id", NULL
20388 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_GetToolLongHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
20389 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20390 if (SWIG_arg_fail(1)) SWIG_fail
;
20392 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20393 if (SWIG_arg_fail(2)) SWIG_fail
;
20396 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20397 result
= (arg1
)->GetToolLongHelp(arg2
);
20399 wxPyEndAllowThreads(__tstate
);
20400 if (PyErr_Occurred()) SWIG_fail
;
20404 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
20406 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
20415 static PyObject
*_wrap_ToolBarBase_SetMarginsXY(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20416 PyObject
*resultobj
= NULL
;
20417 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20420 PyObject
* obj0
= 0 ;
20421 PyObject
* obj1
= 0 ;
20422 PyObject
* obj2
= 0 ;
20423 char *kwnames
[] = {
20424 (char *) "self",(char *) "x",(char *) "y", NULL
20427 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_SetMarginsXY",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
20428 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20429 if (SWIG_arg_fail(1)) SWIG_fail
;
20431 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20432 if (SWIG_arg_fail(2)) SWIG_fail
;
20435 arg3
= static_cast<int >(SWIG_As_int(obj2
));
20436 if (SWIG_arg_fail(3)) SWIG_fail
;
20439 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20440 (arg1
)->SetMargins(arg2
,arg3
);
20442 wxPyEndAllowThreads(__tstate
);
20443 if (PyErr_Occurred()) SWIG_fail
;
20445 Py_INCREF(Py_None
); resultobj
= Py_None
;
20452 static PyObject
*_wrap_ToolBarBase_SetMargins(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20453 PyObject
*resultobj
= NULL
;
20454 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20457 PyObject
* obj0
= 0 ;
20458 PyObject
* obj1
= 0 ;
20459 char *kwnames
[] = {
20460 (char *) "self",(char *) "size", NULL
20463 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_SetMargins",kwnames
,&obj0
,&obj1
)) goto fail
;
20464 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20465 if (SWIG_arg_fail(1)) SWIG_fail
;
20468 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
20471 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20472 (arg1
)->SetMargins((wxSize
const &)*arg2
);
20474 wxPyEndAllowThreads(__tstate
);
20475 if (PyErr_Occurred()) SWIG_fail
;
20477 Py_INCREF(Py_None
); resultobj
= Py_None
;
20484 static PyObject
*_wrap_ToolBarBase_SetToolPacking(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20485 PyObject
*resultobj
= NULL
;
20486 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20488 PyObject
* obj0
= 0 ;
20489 PyObject
* obj1
= 0 ;
20490 char *kwnames
[] = {
20491 (char *) "self",(char *) "packing", NULL
20494 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_SetToolPacking",kwnames
,&obj0
,&obj1
)) goto fail
;
20495 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20496 if (SWIG_arg_fail(1)) SWIG_fail
;
20498 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20499 if (SWIG_arg_fail(2)) SWIG_fail
;
20502 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20503 (arg1
)->SetToolPacking(arg2
);
20505 wxPyEndAllowThreads(__tstate
);
20506 if (PyErr_Occurred()) SWIG_fail
;
20508 Py_INCREF(Py_None
); resultobj
= Py_None
;
20515 static PyObject
*_wrap_ToolBarBase_SetToolSeparation(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20516 PyObject
*resultobj
= NULL
;
20517 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20519 PyObject
* obj0
= 0 ;
20520 PyObject
* obj1
= 0 ;
20521 char *kwnames
[] = {
20522 (char *) "self",(char *) "separation", NULL
20525 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_SetToolSeparation",kwnames
,&obj0
,&obj1
)) goto fail
;
20526 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20527 if (SWIG_arg_fail(1)) SWIG_fail
;
20529 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20530 if (SWIG_arg_fail(2)) SWIG_fail
;
20533 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20534 (arg1
)->SetToolSeparation(arg2
);
20536 wxPyEndAllowThreads(__tstate
);
20537 if (PyErr_Occurred()) SWIG_fail
;
20539 Py_INCREF(Py_None
); resultobj
= Py_None
;
20546 static PyObject
*_wrap_ToolBarBase_GetToolMargins(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20547 PyObject
*resultobj
= NULL
;
20548 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20550 PyObject
* obj0
= 0 ;
20551 char *kwnames
[] = {
20552 (char *) "self", NULL
20555 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetToolMargins",kwnames
,&obj0
)) goto fail
;
20556 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20557 if (SWIG_arg_fail(1)) SWIG_fail
;
20559 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20560 result
= (arg1
)->GetToolMargins();
20562 wxPyEndAllowThreads(__tstate
);
20563 if (PyErr_Occurred()) SWIG_fail
;
20566 wxSize
* resultptr
;
20567 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
20568 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
20576 static PyObject
*_wrap_ToolBarBase_GetMargins(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20577 PyObject
*resultobj
= NULL
;
20578 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20580 PyObject
* obj0
= 0 ;
20581 char *kwnames
[] = {
20582 (char *) "self", NULL
20585 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetMargins",kwnames
,&obj0
)) goto fail
;
20586 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20587 if (SWIG_arg_fail(1)) SWIG_fail
;
20589 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20590 result
= (arg1
)->GetMargins();
20592 wxPyEndAllowThreads(__tstate
);
20593 if (PyErr_Occurred()) SWIG_fail
;
20596 wxSize
* resultptr
;
20597 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
20598 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
20606 static PyObject
*_wrap_ToolBarBase_GetToolPacking(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20607 PyObject
*resultobj
= NULL
;
20608 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20610 PyObject
* obj0
= 0 ;
20611 char *kwnames
[] = {
20612 (char *) "self", NULL
20615 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetToolPacking",kwnames
,&obj0
)) goto fail
;
20616 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20617 if (SWIG_arg_fail(1)) SWIG_fail
;
20619 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20620 result
= (int)(arg1
)->GetToolPacking();
20622 wxPyEndAllowThreads(__tstate
);
20623 if (PyErr_Occurred()) SWIG_fail
;
20626 resultobj
= SWIG_From_int(static_cast<int >(result
));
20634 static PyObject
*_wrap_ToolBarBase_GetToolSeparation(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20635 PyObject
*resultobj
= NULL
;
20636 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20638 PyObject
* obj0
= 0 ;
20639 char *kwnames
[] = {
20640 (char *) "self", NULL
20643 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetToolSeparation",kwnames
,&obj0
)) goto fail
;
20644 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20645 if (SWIG_arg_fail(1)) SWIG_fail
;
20647 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20648 result
= (int)(arg1
)->GetToolSeparation();
20650 wxPyEndAllowThreads(__tstate
);
20651 if (PyErr_Occurred()) SWIG_fail
;
20654 resultobj
= SWIG_From_int(static_cast<int >(result
));
20662 static PyObject
*_wrap_ToolBarBase_SetRows(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20663 PyObject
*resultobj
= NULL
;
20664 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20666 PyObject
* obj0
= 0 ;
20667 PyObject
* obj1
= 0 ;
20668 char *kwnames
[] = {
20669 (char *) "self",(char *) "nRows", NULL
20672 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_SetRows",kwnames
,&obj0
,&obj1
)) goto fail
;
20673 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20674 if (SWIG_arg_fail(1)) SWIG_fail
;
20676 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20677 if (SWIG_arg_fail(2)) SWIG_fail
;
20680 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20681 (arg1
)->SetRows(arg2
);
20683 wxPyEndAllowThreads(__tstate
);
20684 if (PyErr_Occurred()) SWIG_fail
;
20686 Py_INCREF(Py_None
); resultobj
= Py_None
;
20693 static PyObject
*_wrap_ToolBarBase_SetMaxRowsCols(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20694 PyObject
*resultobj
= NULL
;
20695 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20698 PyObject
* obj0
= 0 ;
20699 PyObject
* obj1
= 0 ;
20700 PyObject
* obj2
= 0 ;
20701 char *kwnames
[] = {
20702 (char *) "self",(char *) "rows",(char *) "cols", NULL
20705 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_SetMaxRowsCols",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
20706 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20707 if (SWIG_arg_fail(1)) SWIG_fail
;
20709 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20710 if (SWIG_arg_fail(2)) SWIG_fail
;
20713 arg3
= static_cast<int >(SWIG_As_int(obj2
));
20714 if (SWIG_arg_fail(3)) SWIG_fail
;
20717 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20718 (arg1
)->SetMaxRowsCols(arg2
,arg3
);
20720 wxPyEndAllowThreads(__tstate
);
20721 if (PyErr_Occurred()) SWIG_fail
;
20723 Py_INCREF(Py_None
); resultobj
= Py_None
;
20730 static PyObject
*_wrap_ToolBarBase_GetMaxRows(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20731 PyObject
*resultobj
= NULL
;
20732 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20734 PyObject
* obj0
= 0 ;
20735 char *kwnames
[] = {
20736 (char *) "self", NULL
20739 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetMaxRows",kwnames
,&obj0
)) goto fail
;
20740 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20741 if (SWIG_arg_fail(1)) SWIG_fail
;
20743 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20744 result
= (int)(arg1
)->GetMaxRows();
20746 wxPyEndAllowThreads(__tstate
);
20747 if (PyErr_Occurred()) SWIG_fail
;
20750 resultobj
= SWIG_From_int(static_cast<int >(result
));
20758 static PyObject
*_wrap_ToolBarBase_GetMaxCols(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20759 PyObject
*resultobj
= NULL
;
20760 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20762 PyObject
* obj0
= 0 ;
20763 char *kwnames
[] = {
20764 (char *) "self", NULL
20767 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetMaxCols",kwnames
,&obj0
)) goto fail
;
20768 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20769 if (SWIG_arg_fail(1)) SWIG_fail
;
20771 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20772 result
= (int)(arg1
)->GetMaxCols();
20774 wxPyEndAllowThreads(__tstate
);
20775 if (PyErr_Occurred()) SWIG_fail
;
20778 resultobj
= SWIG_From_int(static_cast<int >(result
));
20786 static PyObject
*_wrap_ToolBarBase_SetToolBitmapSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20787 PyObject
*resultobj
= NULL
;
20788 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20791 PyObject
* obj0
= 0 ;
20792 PyObject
* obj1
= 0 ;
20793 char *kwnames
[] = {
20794 (char *) "self",(char *) "size", NULL
20797 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_SetToolBitmapSize",kwnames
,&obj0
,&obj1
)) goto fail
;
20798 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20799 if (SWIG_arg_fail(1)) SWIG_fail
;
20802 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
20805 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20806 (arg1
)->SetToolBitmapSize((wxSize
const &)*arg2
);
20808 wxPyEndAllowThreads(__tstate
);
20809 if (PyErr_Occurred()) SWIG_fail
;
20811 Py_INCREF(Py_None
); resultobj
= Py_None
;
20818 static PyObject
*_wrap_ToolBarBase_GetToolBitmapSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20819 PyObject
*resultobj
= NULL
;
20820 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20822 PyObject
* obj0
= 0 ;
20823 char *kwnames
[] = {
20824 (char *) "self", NULL
20827 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetToolBitmapSize",kwnames
,&obj0
)) goto fail
;
20828 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20829 if (SWIG_arg_fail(1)) SWIG_fail
;
20831 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20832 result
= (arg1
)->GetToolBitmapSize();
20834 wxPyEndAllowThreads(__tstate
);
20835 if (PyErr_Occurred()) SWIG_fail
;
20838 wxSize
* resultptr
;
20839 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
20840 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
20848 static PyObject
*_wrap_ToolBarBase_GetToolSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20849 PyObject
*resultobj
= NULL
;
20850 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20852 PyObject
* obj0
= 0 ;
20853 char *kwnames
[] = {
20854 (char *) "self", NULL
20857 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_GetToolSize",kwnames
,&obj0
)) goto fail
;
20858 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20859 if (SWIG_arg_fail(1)) SWIG_fail
;
20861 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20862 result
= (arg1
)->GetToolSize();
20864 wxPyEndAllowThreads(__tstate
);
20865 if (PyErr_Occurred()) SWIG_fail
;
20868 wxSize
* resultptr
;
20869 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
20870 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
20878 static PyObject
*_wrap_ToolBarBase_FindToolForPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20879 PyObject
*resultobj
= NULL
;
20880 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20883 wxToolBarToolBase
*result
;
20884 PyObject
* obj0
= 0 ;
20885 PyObject
* obj1
= 0 ;
20886 PyObject
* obj2
= 0 ;
20887 char *kwnames
[] = {
20888 (char *) "self",(char *) "x",(char *) "y", NULL
20891 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBarBase_FindToolForPosition",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
20892 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20893 if (SWIG_arg_fail(1)) SWIG_fail
;
20895 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20896 if (SWIG_arg_fail(2)) SWIG_fail
;
20899 arg3
= static_cast<int >(SWIG_As_int(obj2
));
20900 if (SWIG_arg_fail(3)) SWIG_fail
;
20903 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20904 result
= (wxToolBarToolBase
*)(arg1
)->FindToolForPosition(arg2
,arg3
);
20906 wxPyEndAllowThreads(__tstate
);
20907 if (PyErr_Occurred()) SWIG_fail
;
20910 resultobj
= wxPyMake_wxObject(result
, 0);
20918 static PyObject
*_wrap_ToolBarBase_FindById(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20919 PyObject
*resultobj
= NULL
;
20920 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20922 wxToolBarToolBase
*result
;
20923 PyObject
* obj0
= 0 ;
20924 PyObject
* obj1
= 0 ;
20925 char *kwnames
[] = {
20926 (char *) "self",(char *) "toolid", NULL
20929 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ToolBarBase_FindById",kwnames
,&obj0
,&obj1
)) goto fail
;
20930 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20931 if (SWIG_arg_fail(1)) SWIG_fail
;
20933 arg2
= static_cast<int >(SWIG_As_int(obj1
));
20934 if (SWIG_arg_fail(2)) SWIG_fail
;
20937 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20938 result
= (wxToolBarToolBase
*)((wxToolBarBase
const *)arg1
)->FindById(arg2
);
20940 wxPyEndAllowThreads(__tstate
);
20941 if (PyErr_Occurred()) SWIG_fail
;
20944 resultobj
= wxPyMake_wxObject(result
, 0);
20952 static PyObject
*_wrap_ToolBarBase_IsVertical(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20953 PyObject
*resultobj
= NULL
;
20954 wxToolBarBase
*arg1
= (wxToolBarBase
*) 0 ;
20956 PyObject
* obj0
= 0 ;
20957 char *kwnames
[] = {
20958 (char *) "self", NULL
20961 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ToolBarBase_IsVertical",kwnames
,&obj0
)) goto fail
;
20962 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBarBase
, SWIG_POINTER_EXCEPTION
| 0);
20963 if (SWIG_arg_fail(1)) SWIG_fail
;
20965 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20966 result
= (bool)(arg1
)->IsVertical();
20968 wxPyEndAllowThreads(__tstate
);
20969 if (PyErr_Occurred()) SWIG_fail
;
20972 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20980 static PyObject
* ToolBarBase_swigregister(PyObject
*, PyObject
*args
) {
20982 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
20983 SWIG_TypeClientData(SWIGTYPE_p_wxToolBarBase
, obj
);
20985 return Py_BuildValue((char *)"");
20987 static PyObject
*_wrap_new_ToolBar(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
20988 PyObject
*resultobj
= NULL
;
20989 wxWindow
*arg1
= (wxWindow
*) 0 ;
20990 int arg2
= (int) -1 ;
20991 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
20992 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
20993 wxSize
const &arg4_defvalue
= wxDefaultSize
;
20994 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
20995 long arg5
= (long) wxNO_BORDER
|wxTB_HORIZONTAL
;
20996 wxString
const &arg6_defvalue
= wxPyToolBarNameStr
;
20997 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
21001 bool temp6
= false ;
21002 PyObject
* obj0
= 0 ;
21003 PyObject
* obj1
= 0 ;
21004 PyObject
* obj2
= 0 ;
21005 PyObject
* obj3
= 0 ;
21006 PyObject
* obj4
= 0 ;
21007 PyObject
* obj5
= 0 ;
21008 char *kwnames
[] = {
21009 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
21012 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_ToolBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
21013 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
21014 if (SWIG_arg_fail(1)) SWIG_fail
;
21017 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21018 if (SWIG_arg_fail(2)) SWIG_fail
;
21024 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
21030 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
21035 arg5
= static_cast<long >(SWIG_As_long(obj4
));
21036 if (SWIG_arg_fail(5)) SWIG_fail
;
21041 arg6
= wxString_in_helper(obj5
);
21042 if (arg6
== NULL
) SWIG_fail
;
21047 if (!wxPyCheckForApp()) SWIG_fail
;
21048 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21049 result
= (wxToolBar
*)new wxToolBar(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
21051 wxPyEndAllowThreads(__tstate
);
21052 if (PyErr_Occurred()) SWIG_fail
;
21054 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxToolBar
, 1);
21069 static PyObject
*_wrap_new_PreToolBar(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21070 PyObject
*resultobj
= NULL
;
21072 char *kwnames
[] = {
21076 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreToolBar",kwnames
)) goto fail
;
21078 if (!wxPyCheckForApp()) SWIG_fail
;
21079 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21080 result
= (wxToolBar
*)new wxToolBar();
21082 wxPyEndAllowThreads(__tstate
);
21083 if (PyErr_Occurred()) SWIG_fail
;
21085 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxToolBar
, 1);
21092 static PyObject
*_wrap_ToolBar_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21093 PyObject
*resultobj
= NULL
;
21094 wxToolBar
*arg1
= (wxToolBar
*) 0 ;
21095 wxWindow
*arg2
= (wxWindow
*) 0 ;
21096 int arg3
= (int) -1 ;
21097 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
21098 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
21099 wxSize
const &arg5_defvalue
= wxDefaultSize
;
21100 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
21101 long arg6
= (long) wxNO_BORDER
|wxTB_HORIZONTAL
;
21102 wxString
const &arg7_defvalue
= wxPyToolBarNameStr
;
21103 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
21107 bool temp7
= false ;
21108 PyObject
* obj0
= 0 ;
21109 PyObject
* obj1
= 0 ;
21110 PyObject
* obj2
= 0 ;
21111 PyObject
* obj3
= 0 ;
21112 PyObject
* obj4
= 0 ;
21113 PyObject
* obj5
= 0 ;
21114 PyObject
* obj6
= 0 ;
21115 char *kwnames
[] = {
21116 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
21119 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:ToolBar_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
21120 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBar
, SWIG_POINTER_EXCEPTION
| 0);
21121 if (SWIG_arg_fail(1)) SWIG_fail
;
21122 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
21123 if (SWIG_arg_fail(2)) SWIG_fail
;
21126 arg3
= static_cast<int >(SWIG_As_int(obj2
));
21127 if (SWIG_arg_fail(3)) SWIG_fail
;
21133 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
21139 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
21144 arg6
= static_cast<long >(SWIG_As_long(obj5
));
21145 if (SWIG_arg_fail(6)) SWIG_fail
;
21150 arg7
= wxString_in_helper(obj6
);
21151 if (arg7
== NULL
) SWIG_fail
;
21156 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21157 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
21159 wxPyEndAllowThreads(__tstate
);
21160 if (PyErr_Occurred()) SWIG_fail
;
21163 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21179 static PyObject
*_wrap_ToolBar_FindToolForPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21180 PyObject
*resultobj
= NULL
;
21181 wxToolBar
*arg1
= (wxToolBar
*) 0 ;
21184 wxToolBarToolBase
*result
;
21185 PyObject
* obj0
= 0 ;
21186 PyObject
* obj1
= 0 ;
21187 PyObject
* obj2
= 0 ;
21188 char *kwnames
[] = {
21189 (char *) "self",(char *) "x",(char *) "y", NULL
21192 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ToolBar_FindToolForPosition",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
21193 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxToolBar
, SWIG_POINTER_EXCEPTION
| 0);
21194 if (SWIG_arg_fail(1)) SWIG_fail
;
21196 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21197 if (SWIG_arg_fail(2)) SWIG_fail
;
21200 arg3
= static_cast<int >(SWIG_As_int(obj2
));
21201 if (SWIG_arg_fail(3)) SWIG_fail
;
21204 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21205 result
= (wxToolBarToolBase
*)(arg1
)->FindToolForPosition(arg2
,arg3
);
21207 wxPyEndAllowThreads(__tstate
);
21208 if (PyErr_Occurred()) SWIG_fail
;
21211 resultobj
= wxPyMake_wxObject(result
, 0);
21219 static PyObject
*_wrap_ToolBar_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21220 PyObject
*resultobj
= NULL
;
21221 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
21222 wxVisualAttributes result
;
21223 PyObject
* obj0
= 0 ;
21224 char *kwnames
[] = {
21225 (char *) "variant", NULL
21228 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ToolBar_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
21231 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
21232 if (SWIG_arg_fail(1)) SWIG_fail
;
21236 if (!wxPyCheckForApp()) SWIG_fail
;
21237 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21238 result
= wxToolBar::GetClassDefaultAttributes(arg1
);
21240 wxPyEndAllowThreads(__tstate
);
21241 if (PyErr_Occurred()) SWIG_fail
;
21244 wxVisualAttributes
* resultptr
;
21245 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
21246 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
21254 static PyObject
* ToolBar_swigregister(PyObject
*, PyObject
*args
) {
21256 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
21257 SWIG_TypeClientData(SWIGTYPE_p_wxToolBar
, obj
);
21259 return Py_BuildValue((char *)"");
21261 static int _wrap_ListCtrlNameStr_set(PyObject
*) {
21262 PyErr_SetString(PyExc_TypeError
,"Variable ListCtrlNameStr is read-only.");
21267 static PyObject
*_wrap_ListCtrlNameStr_get(void) {
21268 PyObject
*pyobj
= NULL
;
21272 pyobj
= PyUnicode_FromWideChar((&wxPyListCtrlNameStr
)->c_str(), (&wxPyListCtrlNameStr
)->Len());
21274 pyobj
= PyString_FromStringAndSize((&wxPyListCtrlNameStr
)->c_str(), (&wxPyListCtrlNameStr
)->Len());
21281 static PyObject
*_wrap_new_ListItemAttr(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21282 PyObject
*resultobj
= NULL
;
21283 wxColour
const &arg1_defvalue
= wxNullColour
;
21284 wxColour
*arg1
= (wxColour
*) &arg1_defvalue
;
21285 wxColour
const &arg2_defvalue
= wxNullColour
;
21286 wxColour
*arg2
= (wxColour
*) &arg2_defvalue
;
21287 wxFont
const &arg3_defvalue
= wxNullFont
;
21288 wxFont
*arg3
= (wxFont
*) &arg3_defvalue
;
21289 wxListItemAttr
*result
;
21292 PyObject
* obj0
= 0 ;
21293 PyObject
* obj1
= 0 ;
21294 PyObject
* obj2
= 0 ;
21295 char *kwnames
[] = {
21296 (char *) "colText",(char *) "colBack",(char *) "font", NULL
21299 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOO:new_ListItemAttr",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
21303 if ( ! wxColour_helper(obj0
, &arg1
)) SWIG_fail
;
21309 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
21314 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
21315 if (SWIG_arg_fail(3)) SWIG_fail
;
21316 if (arg3
== NULL
) {
21317 SWIG_null_ref("wxFont");
21319 if (SWIG_arg_fail(3)) SWIG_fail
;
21323 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21324 result
= (wxListItemAttr
*)new wxListItemAttr((wxColour
const &)*arg1
,(wxColour
const &)*arg2
,(wxFont
const &)*arg3
);
21326 wxPyEndAllowThreads(__tstate
);
21327 if (PyErr_Occurred()) SWIG_fail
;
21329 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListItemAttr
, 1);
21336 static PyObject
*_wrap_ListItemAttr_SetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21337 PyObject
*resultobj
= NULL
;
21338 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
21339 wxColour
*arg2
= 0 ;
21341 PyObject
* obj0
= 0 ;
21342 PyObject
* obj1
= 0 ;
21343 char *kwnames
[] = {
21344 (char *) "self",(char *) "colText", NULL
21347 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItemAttr_SetTextColour",kwnames
,&obj0
,&obj1
)) goto fail
;
21348 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
21349 if (SWIG_arg_fail(1)) SWIG_fail
;
21352 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
21355 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21356 (arg1
)->SetTextColour((wxColour
const &)*arg2
);
21358 wxPyEndAllowThreads(__tstate
);
21359 if (PyErr_Occurred()) SWIG_fail
;
21361 Py_INCREF(Py_None
); resultobj
= Py_None
;
21368 static PyObject
*_wrap_ListItemAttr_SetBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21369 PyObject
*resultobj
= NULL
;
21370 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
21371 wxColour
*arg2
= 0 ;
21373 PyObject
* obj0
= 0 ;
21374 PyObject
* obj1
= 0 ;
21375 char *kwnames
[] = {
21376 (char *) "self",(char *) "colBack", NULL
21379 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItemAttr_SetBackgroundColour",kwnames
,&obj0
,&obj1
)) goto fail
;
21380 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
21381 if (SWIG_arg_fail(1)) SWIG_fail
;
21384 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
21387 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21388 (arg1
)->SetBackgroundColour((wxColour
const &)*arg2
);
21390 wxPyEndAllowThreads(__tstate
);
21391 if (PyErr_Occurred()) SWIG_fail
;
21393 Py_INCREF(Py_None
); resultobj
= Py_None
;
21400 static PyObject
*_wrap_ListItemAttr_SetFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21401 PyObject
*resultobj
= NULL
;
21402 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
21404 PyObject
* obj0
= 0 ;
21405 PyObject
* obj1
= 0 ;
21406 char *kwnames
[] = {
21407 (char *) "self",(char *) "font", NULL
21410 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItemAttr_SetFont",kwnames
,&obj0
,&obj1
)) goto fail
;
21411 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
21412 if (SWIG_arg_fail(1)) SWIG_fail
;
21414 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
21415 if (SWIG_arg_fail(2)) SWIG_fail
;
21416 if (arg2
== NULL
) {
21417 SWIG_null_ref("wxFont");
21419 if (SWIG_arg_fail(2)) SWIG_fail
;
21422 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21423 (arg1
)->SetFont((wxFont
const &)*arg2
);
21425 wxPyEndAllowThreads(__tstate
);
21426 if (PyErr_Occurred()) SWIG_fail
;
21428 Py_INCREF(Py_None
); resultobj
= Py_None
;
21435 static PyObject
*_wrap_ListItemAttr_HasTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21436 PyObject
*resultobj
= NULL
;
21437 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
21439 PyObject
* obj0
= 0 ;
21440 char *kwnames
[] = {
21441 (char *) "self", NULL
21444 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItemAttr_HasTextColour",kwnames
,&obj0
)) goto fail
;
21445 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
21446 if (SWIG_arg_fail(1)) SWIG_fail
;
21448 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21449 result
= (bool)(arg1
)->HasTextColour();
21451 wxPyEndAllowThreads(__tstate
);
21452 if (PyErr_Occurred()) SWIG_fail
;
21455 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21463 static PyObject
*_wrap_ListItemAttr_HasBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21464 PyObject
*resultobj
= NULL
;
21465 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
21467 PyObject
* obj0
= 0 ;
21468 char *kwnames
[] = {
21469 (char *) "self", NULL
21472 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItemAttr_HasBackgroundColour",kwnames
,&obj0
)) goto fail
;
21473 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
21474 if (SWIG_arg_fail(1)) SWIG_fail
;
21476 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21477 result
= (bool)(arg1
)->HasBackgroundColour();
21479 wxPyEndAllowThreads(__tstate
);
21480 if (PyErr_Occurred()) SWIG_fail
;
21483 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21491 static PyObject
*_wrap_ListItemAttr_HasFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21492 PyObject
*resultobj
= NULL
;
21493 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
21495 PyObject
* obj0
= 0 ;
21496 char *kwnames
[] = {
21497 (char *) "self", NULL
21500 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItemAttr_HasFont",kwnames
,&obj0
)) goto fail
;
21501 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
21502 if (SWIG_arg_fail(1)) SWIG_fail
;
21504 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21505 result
= (bool)(arg1
)->HasFont();
21507 wxPyEndAllowThreads(__tstate
);
21508 if (PyErr_Occurred()) SWIG_fail
;
21511 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21519 static PyObject
*_wrap_ListItemAttr_GetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21520 PyObject
*resultobj
= NULL
;
21521 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
21523 PyObject
* obj0
= 0 ;
21524 char *kwnames
[] = {
21525 (char *) "self", NULL
21528 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItemAttr_GetTextColour",kwnames
,&obj0
)) goto fail
;
21529 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
21530 if (SWIG_arg_fail(1)) SWIG_fail
;
21532 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21533 result
= (arg1
)->GetTextColour();
21535 wxPyEndAllowThreads(__tstate
);
21536 if (PyErr_Occurred()) SWIG_fail
;
21539 wxColour
* resultptr
;
21540 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
21541 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
21549 static PyObject
*_wrap_ListItemAttr_GetBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21550 PyObject
*resultobj
= NULL
;
21551 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
21553 PyObject
* obj0
= 0 ;
21554 char *kwnames
[] = {
21555 (char *) "self", NULL
21558 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItemAttr_GetBackgroundColour",kwnames
,&obj0
)) goto fail
;
21559 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
21560 if (SWIG_arg_fail(1)) SWIG_fail
;
21562 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21563 result
= (arg1
)->GetBackgroundColour();
21565 wxPyEndAllowThreads(__tstate
);
21566 if (PyErr_Occurred()) SWIG_fail
;
21569 wxColour
* resultptr
;
21570 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
21571 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
21579 static PyObject
*_wrap_ListItemAttr_GetFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21580 PyObject
*resultobj
= NULL
;
21581 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
21583 PyObject
* obj0
= 0 ;
21584 char *kwnames
[] = {
21585 (char *) "self", NULL
21588 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItemAttr_GetFont",kwnames
,&obj0
)) goto fail
;
21589 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
21590 if (SWIG_arg_fail(1)) SWIG_fail
;
21592 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21593 result
= (arg1
)->GetFont();
21595 wxPyEndAllowThreads(__tstate
);
21596 if (PyErr_Occurred()) SWIG_fail
;
21599 wxFont
* resultptr
;
21600 resultptr
= new wxFont(static_cast<wxFont
& >(result
));
21601 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxFont
, 1);
21609 static PyObject
*_wrap_ListItemAttr_Destroy(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21610 PyObject
*resultobj
= NULL
;
21611 wxListItemAttr
*arg1
= (wxListItemAttr
*) 0 ;
21612 PyObject
* obj0
= 0 ;
21613 char *kwnames
[] = {
21614 (char *) "self", NULL
21617 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItemAttr_Destroy",kwnames
,&obj0
)) goto fail
;
21618 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItemAttr
, SWIG_POINTER_EXCEPTION
| 0);
21619 if (SWIG_arg_fail(1)) SWIG_fail
;
21621 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21622 wxListItemAttr_Destroy(arg1
);
21624 wxPyEndAllowThreads(__tstate
);
21625 if (PyErr_Occurred()) SWIG_fail
;
21627 Py_INCREF(Py_None
); resultobj
= Py_None
;
21634 static PyObject
* ListItemAttr_swigregister(PyObject
*, PyObject
*args
) {
21636 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
21637 SWIG_TypeClientData(SWIGTYPE_p_wxListItemAttr
, obj
);
21639 return Py_BuildValue((char *)"");
21641 static PyObject
*_wrap_new_ListItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21642 PyObject
*resultobj
= NULL
;
21643 wxListItem
*result
;
21644 char *kwnames
[] = {
21648 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_ListItem",kwnames
)) goto fail
;
21650 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21651 result
= (wxListItem
*)new wxListItem();
21653 wxPyEndAllowThreads(__tstate
);
21654 if (PyErr_Occurred()) SWIG_fail
;
21657 resultobj
= wxPyMake_wxObject(result
, 1);
21665 static PyObject
*_wrap_delete_ListItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21666 PyObject
*resultobj
= NULL
;
21667 wxListItem
*arg1
= (wxListItem
*) 0 ;
21668 PyObject
* obj0
= 0 ;
21669 char *kwnames
[] = {
21670 (char *) "self", NULL
21673 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_ListItem",kwnames
,&obj0
)) goto fail
;
21674 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
21675 if (SWIG_arg_fail(1)) SWIG_fail
;
21677 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21680 wxPyEndAllowThreads(__tstate
);
21681 if (PyErr_Occurred()) SWIG_fail
;
21683 Py_INCREF(Py_None
); resultobj
= Py_None
;
21690 static PyObject
*_wrap_ListItem_Clear(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21691 PyObject
*resultobj
= NULL
;
21692 wxListItem
*arg1
= (wxListItem
*) 0 ;
21693 PyObject
* obj0
= 0 ;
21694 char *kwnames
[] = {
21695 (char *) "self", NULL
21698 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_Clear",kwnames
,&obj0
)) goto fail
;
21699 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
21700 if (SWIG_arg_fail(1)) SWIG_fail
;
21702 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21705 wxPyEndAllowThreads(__tstate
);
21706 if (PyErr_Occurred()) SWIG_fail
;
21708 Py_INCREF(Py_None
); resultobj
= Py_None
;
21715 static PyObject
*_wrap_ListItem_ClearAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21716 PyObject
*resultobj
= NULL
;
21717 wxListItem
*arg1
= (wxListItem
*) 0 ;
21718 PyObject
* obj0
= 0 ;
21719 char *kwnames
[] = {
21720 (char *) "self", NULL
21723 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_ClearAttributes",kwnames
,&obj0
)) goto fail
;
21724 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
21725 if (SWIG_arg_fail(1)) SWIG_fail
;
21727 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21728 (arg1
)->ClearAttributes();
21730 wxPyEndAllowThreads(__tstate
);
21731 if (PyErr_Occurred()) SWIG_fail
;
21733 Py_INCREF(Py_None
); resultobj
= Py_None
;
21740 static PyObject
*_wrap_ListItem_SetMask(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21741 PyObject
*resultobj
= NULL
;
21742 wxListItem
*arg1
= (wxListItem
*) 0 ;
21744 PyObject
* obj0
= 0 ;
21745 PyObject
* obj1
= 0 ;
21746 char *kwnames
[] = {
21747 (char *) "self",(char *) "mask", NULL
21750 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetMask",kwnames
,&obj0
,&obj1
)) goto fail
;
21751 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
21752 if (SWIG_arg_fail(1)) SWIG_fail
;
21754 arg2
= static_cast<long >(SWIG_As_long(obj1
));
21755 if (SWIG_arg_fail(2)) SWIG_fail
;
21758 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21759 (arg1
)->SetMask(arg2
);
21761 wxPyEndAllowThreads(__tstate
);
21762 if (PyErr_Occurred()) SWIG_fail
;
21764 Py_INCREF(Py_None
); resultobj
= Py_None
;
21771 static PyObject
*_wrap_ListItem_SetId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21772 PyObject
*resultobj
= NULL
;
21773 wxListItem
*arg1
= (wxListItem
*) 0 ;
21775 PyObject
* obj0
= 0 ;
21776 PyObject
* obj1
= 0 ;
21777 char *kwnames
[] = {
21778 (char *) "self",(char *) "id", NULL
21781 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetId",kwnames
,&obj0
,&obj1
)) goto fail
;
21782 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
21783 if (SWIG_arg_fail(1)) SWIG_fail
;
21785 arg2
= static_cast<long >(SWIG_As_long(obj1
));
21786 if (SWIG_arg_fail(2)) SWIG_fail
;
21789 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21790 (arg1
)->SetId(arg2
);
21792 wxPyEndAllowThreads(__tstate
);
21793 if (PyErr_Occurred()) SWIG_fail
;
21795 Py_INCREF(Py_None
); resultobj
= Py_None
;
21802 static PyObject
*_wrap_ListItem_SetColumn(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21803 PyObject
*resultobj
= NULL
;
21804 wxListItem
*arg1
= (wxListItem
*) 0 ;
21806 PyObject
* obj0
= 0 ;
21807 PyObject
* obj1
= 0 ;
21808 char *kwnames
[] = {
21809 (char *) "self",(char *) "col", NULL
21812 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetColumn",kwnames
,&obj0
,&obj1
)) goto fail
;
21813 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
21814 if (SWIG_arg_fail(1)) SWIG_fail
;
21816 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21817 if (SWIG_arg_fail(2)) SWIG_fail
;
21820 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21821 (arg1
)->SetColumn(arg2
);
21823 wxPyEndAllowThreads(__tstate
);
21824 if (PyErr_Occurred()) SWIG_fail
;
21826 Py_INCREF(Py_None
); resultobj
= Py_None
;
21833 static PyObject
*_wrap_ListItem_SetState(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21834 PyObject
*resultobj
= NULL
;
21835 wxListItem
*arg1
= (wxListItem
*) 0 ;
21837 PyObject
* obj0
= 0 ;
21838 PyObject
* obj1
= 0 ;
21839 char *kwnames
[] = {
21840 (char *) "self",(char *) "state", NULL
21843 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetState",kwnames
,&obj0
,&obj1
)) goto fail
;
21844 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
21845 if (SWIG_arg_fail(1)) SWIG_fail
;
21847 arg2
= static_cast<long >(SWIG_As_long(obj1
));
21848 if (SWIG_arg_fail(2)) SWIG_fail
;
21851 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21852 (arg1
)->SetState(arg2
);
21854 wxPyEndAllowThreads(__tstate
);
21855 if (PyErr_Occurred()) SWIG_fail
;
21857 Py_INCREF(Py_None
); resultobj
= Py_None
;
21864 static PyObject
*_wrap_ListItem_SetStateMask(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21865 PyObject
*resultobj
= NULL
;
21866 wxListItem
*arg1
= (wxListItem
*) 0 ;
21868 PyObject
* obj0
= 0 ;
21869 PyObject
* obj1
= 0 ;
21870 char *kwnames
[] = {
21871 (char *) "self",(char *) "stateMask", NULL
21874 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetStateMask",kwnames
,&obj0
,&obj1
)) goto fail
;
21875 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
21876 if (SWIG_arg_fail(1)) SWIG_fail
;
21878 arg2
= static_cast<long >(SWIG_As_long(obj1
));
21879 if (SWIG_arg_fail(2)) SWIG_fail
;
21882 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21883 (arg1
)->SetStateMask(arg2
);
21885 wxPyEndAllowThreads(__tstate
);
21886 if (PyErr_Occurred()) SWIG_fail
;
21888 Py_INCREF(Py_None
); resultobj
= Py_None
;
21895 static PyObject
*_wrap_ListItem_SetText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21896 PyObject
*resultobj
= NULL
;
21897 wxListItem
*arg1
= (wxListItem
*) 0 ;
21898 wxString
*arg2
= 0 ;
21899 bool temp2
= false ;
21900 PyObject
* obj0
= 0 ;
21901 PyObject
* obj1
= 0 ;
21902 char *kwnames
[] = {
21903 (char *) "self",(char *) "text", NULL
21906 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetText",kwnames
,&obj0
,&obj1
)) goto fail
;
21907 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
21908 if (SWIG_arg_fail(1)) SWIG_fail
;
21910 arg2
= wxString_in_helper(obj1
);
21911 if (arg2
== NULL
) SWIG_fail
;
21915 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21916 (arg1
)->SetText((wxString
const &)*arg2
);
21918 wxPyEndAllowThreads(__tstate
);
21919 if (PyErr_Occurred()) SWIG_fail
;
21921 Py_INCREF(Py_None
); resultobj
= Py_None
;
21936 static PyObject
*_wrap_ListItem_SetImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21937 PyObject
*resultobj
= NULL
;
21938 wxListItem
*arg1
= (wxListItem
*) 0 ;
21940 PyObject
* obj0
= 0 ;
21941 PyObject
* obj1
= 0 ;
21942 char *kwnames
[] = {
21943 (char *) "self",(char *) "image", NULL
21946 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetImage",kwnames
,&obj0
,&obj1
)) goto fail
;
21947 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
21948 if (SWIG_arg_fail(1)) SWIG_fail
;
21950 arg2
= static_cast<int >(SWIG_As_int(obj1
));
21951 if (SWIG_arg_fail(2)) SWIG_fail
;
21954 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21955 (arg1
)->SetImage(arg2
);
21957 wxPyEndAllowThreads(__tstate
);
21958 if (PyErr_Occurred()) SWIG_fail
;
21960 Py_INCREF(Py_None
); resultobj
= Py_None
;
21967 static PyObject
*_wrap_ListItem_SetData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21968 PyObject
*resultobj
= NULL
;
21969 wxListItem
*arg1
= (wxListItem
*) 0 ;
21971 PyObject
* obj0
= 0 ;
21972 PyObject
* obj1
= 0 ;
21973 char *kwnames
[] = {
21974 (char *) "self",(char *) "data", NULL
21977 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetData",kwnames
,&obj0
,&obj1
)) goto fail
;
21978 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
21979 if (SWIG_arg_fail(1)) SWIG_fail
;
21981 arg2
= static_cast<long >(SWIG_As_long(obj1
));
21982 if (SWIG_arg_fail(2)) SWIG_fail
;
21985 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21986 (arg1
)->SetData(arg2
);
21988 wxPyEndAllowThreads(__tstate
);
21989 if (PyErr_Occurred()) SWIG_fail
;
21991 Py_INCREF(Py_None
); resultobj
= Py_None
;
21998 static PyObject
*_wrap_ListItem_SetWidth(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
21999 PyObject
*resultobj
= NULL
;
22000 wxListItem
*arg1
= (wxListItem
*) 0 ;
22002 PyObject
* obj0
= 0 ;
22003 PyObject
* obj1
= 0 ;
22004 char *kwnames
[] = {
22005 (char *) "self",(char *) "width", NULL
22008 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetWidth",kwnames
,&obj0
,&obj1
)) goto fail
;
22009 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22010 if (SWIG_arg_fail(1)) SWIG_fail
;
22012 arg2
= static_cast<int >(SWIG_As_int(obj1
));
22013 if (SWIG_arg_fail(2)) SWIG_fail
;
22016 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22017 (arg1
)->SetWidth(arg2
);
22019 wxPyEndAllowThreads(__tstate
);
22020 if (PyErr_Occurred()) SWIG_fail
;
22022 Py_INCREF(Py_None
); resultobj
= Py_None
;
22029 static PyObject
*_wrap_ListItem_SetAlign(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22030 PyObject
*resultobj
= NULL
;
22031 wxListItem
*arg1
= (wxListItem
*) 0 ;
22032 wxListColumnFormat arg2
;
22033 PyObject
* obj0
= 0 ;
22034 PyObject
* obj1
= 0 ;
22035 char *kwnames
[] = {
22036 (char *) "self",(char *) "align", NULL
22039 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetAlign",kwnames
,&obj0
,&obj1
)) goto fail
;
22040 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22041 if (SWIG_arg_fail(1)) SWIG_fail
;
22043 arg2
= static_cast<wxListColumnFormat
>(SWIG_As_int(obj1
));
22044 if (SWIG_arg_fail(2)) SWIG_fail
;
22047 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22048 (arg1
)->SetAlign(arg2
);
22050 wxPyEndAllowThreads(__tstate
);
22051 if (PyErr_Occurred()) SWIG_fail
;
22053 Py_INCREF(Py_None
); resultobj
= Py_None
;
22060 static PyObject
*_wrap_ListItem_SetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22061 PyObject
*resultobj
= NULL
;
22062 wxListItem
*arg1
= (wxListItem
*) 0 ;
22063 wxColour
*arg2
= 0 ;
22065 PyObject
* obj0
= 0 ;
22066 PyObject
* obj1
= 0 ;
22067 char *kwnames
[] = {
22068 (char *) "self",(char *) "colText", NULL
22071 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetTextColour",kwnames
,&obj0
,&obj1
)) goto fail
;
22072 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22073 if (SWIG_arg_fail(1)) SWIG_fail
;
22076 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
22079 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22080 (arg1
)->SetTextColour((wxColour
const &)*arg2
);
22082 wxPyEndAllowThreads(__tstate
);
22083 if (PyErr_Occurred()) SWIG_fail
;
22085 Py_INCREF(Py_None
); resultobj
= Py_None
;
22092 static PyObject
*_wrap_ListItem_SetBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22093 PyObject
*resultobj
= NULL
;
22094 wxListItem
*arg1
= (wxListItem
*) 0 ;
22095 wxColour
*arg2
= 0 ;
22097 PyObject
* obj0
= 0 ;
22098 PyObject
* obj1
= 0 ;
22099 char *kwnames
[] = {
22100 (char *) "self",(char *) "colBack", NULL
22103 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetBackgroundColour",kwnames
,&obj0
,&obj1
)) goto fail
;
22104 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22105 if (SWIG_arg_fail(1)) SWIG_fail
;
22108 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
22111 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22112 (arg1
)->SetBackgroundColour((wxColour
const &)*arg2
);
22114 wxPyEndAllowThreads(__tstate
);
22115 if (PyErr_Occurred()) SWIG_fail
;
22117 Py_INCREF(Py_None
); resultobj
= Py_None
;
22124 static PyObject
*_wrap_ListItem_SetFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22125 PyObject
*resultobj
= NULL
;
22126 wxListItem
*arg1
= (wxListItem
*) 0 ;
22128 PyObject
* obj0
= 0 ;
22129 PyObject
* obj1
= 0 ;
22130 char *kwnames
[] = {
22131 (char *) "self",(char *) "font", NULL
22134 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_SetFont",kwnames
,&obj0
,&obj1
)) goto fail
;
22135 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22136 if (SWIG_arg_fail(1)) SWIG_fail
;
22138 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
22139 if (SWIG_arg_fail(2)) SWIG_fail
;
22140 if (arg2
== NULL
) {
22141 SWIG_null_ref("wxFont");
22143 if (SWIG_arg_fail(2)) SWIG_fail
;
22146 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22147 (arg1
)->SetFont((wxFont
const &)*arg2
);
22149 wxPyEndAllowThreads(__tstate
);
22150 if (PyErr_Occurred()) SWIG_fail
;
22152 Py_INCREF(Py_None
); resultobj
= Py_None
;
22159 static PyObject
*_wrap_ListItem_GetMask(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22160 PyObject
*resultobj
= NULL
;
22161 wxListItem
*arg1
= (wxListItem
*) 0 ;
22163 PyObject
* obj0
= 0 ;
22164 char *kwnames
[] = {
22165 (char *) "self", NULL
22168 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetMask",kwnames
,&obj0
)) goto fail
;
22169 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22170 if (SWIG_arg_fail(1)) SWIG_fail
;
22172 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22173 result
= (long)(arg1
)->GetMask();
22175 wxPyEndAllowThreads(__tstate
);
22176 if (PyErr_Occurred()) SWIG_fail
;
22179 resultobj
= SWIG_From_long(static_cast<long >(result
));
22187 static PyObject
*_wrap_ListItem_GetId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22188 PyObject
*resultobj
= NULL
;
22189 wxListItem
*arg1
= (wxListItem
*) 0 ;
22191 PyObject
* obj0
= 0 ;
22192 char *kwnames
[] = {
22193 (char *) "self", NULL
22196 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetId",kwnames
,&obj0
)) goto fail
;
22197 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22198 if (SWIG_arg_fail(1)) SWIG_fail
;
22200 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22201 result
= (long)(arg1
)->GetId();
22203 wxPyEndAllowThreads(__tstate
);
22204 if (PyErr_Occurred()) SWIG_fail
;
22207 resultobj
= SWIG_From_long(static_cast<long >(result
));
22215 static PyObject
*_wrap_ListItem_GetColumn(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22216 PyObject
*resultobj
= NULL
;
22217 wxListItem
*arg1
= (wxListItem
*) 0 ;
22219 PyObject
* obj0
= 0 ;
22220 char *kwnames
[] = {
22221 (char *) "self", NULL
22224 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetColumn",kwnames
,&obj0
)) goto fail
;
22225 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22226 if (SWIG_arg_fail(1)) SWIG_fail
;
22228 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22229 result
= (int)(arg1
)->GetColumn();
22231 wxPyEndAllowThreads(__tstate
);
22232 if (PyErr_Occurred()) SWIG_fail
;
22235 resultobj
= SWIG_From_int(static_cast<int >(result
));
22243 static PyObject
*_wrap_ListItem_GetState(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22244 PyObject
*resultobj
= NULL
;
22245 wxListItem
*arg1
= (wxListItem
*) 0 ;
22247 PyObject
* obj0
= 0 ;
22248 char *kwnames
[] = {
22249 (char *) "self", NULL
22252 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetState",kwnames
,&obj0
)) goto fail
;
22253 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22254 if (SWIG_arg_fail(1)) SWIG_fail
;
22256 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22257 result
= (long)(arg1
)->GetState();
22259 wxPyEndAllowThreads(__tstate
);
22260 if (PyErr_Occurred()) SWIG_fail
;
22263 resultobj
= SWIG_From_long(static_cast<long >(result
));
22271 static PyObject
*_wrap_ListItem_GetText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22272 PyObject
*resultobj
= NULL
;
22273 wxListItem
*arg1
= (wxListItem
*) 0 ;
22275 PyObject
* obj0
= 0 ;
22276 char *kwnames
[] = {
22277 (char *) "self", NULL
22280 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetText",kwnames
,&obj0
)) goto fail
;
22281 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22282 if (SWIG_arg_fail(1)) SWIG_fail
;
22284 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22286 wxString
const &_result_ref
= (arg1
)->GetText();
22287 result
= (wxString
*) &_result_ref
;
22290 wxPyEndAllowThreads(__tstate
);
22291 if (PyErr_Occurred()) SWIG_fail
;
22295 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
22297 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
22306 static PyObject
*_wrap_ListItem_GetImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22307 PyObject
*resultobj
= NULL
;
22308 wxListItem
*arg1
= (wxListItem
*) 0 ;
22310 PyObject
* obj0
= 0 ;
22311 char *kwnames
[] = {
22312 (char *) "self", NULL
22315 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetImage",kwnames
,&obj0
)) goto fail
;
22316 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22317 if (SWIG_arg_fail(1)) SWIG_fail
;
22319 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22320 result
= (int)(arg1
)->GetImage();
22322 wxPyEndAllowThreads(__tstate
);
22323 if (PyErr_Occurred()) SWIG_fail
;
22326 resultobj
= SWIG_From_int(static_cast<int >(result
));
22334 static PyObject
*_wrap_ListItem_GetData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22335 PyObject
*resultobj
= NULL
;
22336 wxListItem
*arg1
= (wxListItem
*) 0 ;
22338 PyObject
* obj0
= 0 ;
22339 char *kwnames
[] = {
22340 (char *) "self", NULL
22343 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetData",kwnames
,&obj0
)) goto fail
;
22344 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22345 if (SWIG_arg_fail(1)) SWIG_fail
;
22347 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22348 result
= (long)(arg1
)->GetData();
22350 wxPyEndAllowThreads(__tstate
);
22351 if (PyErr_Occurred()) SWIG_fail
;
22354 resultobj
= SWIG_From_long(static_cast<long >(result
));
22362 static PyObject
*_wrap_ListItem_GetWidth(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22363 PyObject
*resultobj
= NULL
;
22364 wxListItem
*arg1
= (wxListItem
*) 0 ;
22366 PyObject
* obj0
= 0 ;
22367 char *kwnames
[] = {
22368 (char *) "self", NULL
22371 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetWidth",kwnames
,&obj0
)) goto fail
;
22372 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22373 if (SWIG_arg_fail(1)) SWIG_fail
;
22375 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22376 result
= (int)(arg1
)->GetWidth();
22378 wxPyEndAllowThreads(__tstate
);
22379 if (PyErr_Occurred()) SWIG_fail
;
22382 resultobj
= SWIG_From_int(static_cast<int >(result
));
22390 static PyObject
*_wrap_ListItem_GetAlign(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22391 PyObject
*resultobj
= NULL
;
22392 wxListItem
*arg1
= (wxListItem
*) 0 ;
22393 wxListColumnFormat result
;
22394 PyObject
* obj0
= 0 ;
22395 char *kwnames
[] = {
22396 (char *) "self", NULL
22399 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetAlign",kwnames
,&obj0
)) goto fail
;
22400 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22401 if (SWIG_arg_fail(1)) SWIG_fail
;
22403 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22404 result
= (wxListColumnFormat
)(arg1
)->GetAlign();
22406 wxPyEndAllowThreads(__tstate
);
22407 if (PyErr_Occurred()) SWIG_fail
;
22409 resultobj
= SWIG_From_int((result
));
22416 static PyObject
*_wrap_ListItem_GetAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22417 PyObject
*resultobj
= NULL
;
22418 wxListItem
*arg1
= (wxListItem
*) 0 ;
22419 wxListItemAttr
*result
;
22420 PyObject
* obj0
= 0 ;
22421 char *kwnames
[] = {
22422 (char *) "self", NULL
22425 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetAttributes",kwnames
,&obj0
)) goto fail
;
22426 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22427 if (SWIG_arg_fail(1)) SWIG_fail
;
22429 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22430 result
= (wxListItemAttr
*)(arg1
)->GetAttributes();
22432 wxPyEndAllowThreads(__tstate
);
22433 if (PyErr_Occurred()) SWIG_fail
;
22435 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListItemAttr
, 0);
22442 static PyObject
*_wrap_ListItem_HasAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22443 PyObject
*resultobj
= NULL
;
22444 wxListItem
*arg1
= (wxListItem
*) 0 ;
22446 PyObject
* obj0
= 0 ;
22447 char *kwnames
[] = {
22448 (char *) "self", NULL
22451 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_HasAttributes",kwnames
,&obj0
)) goto fail
;
22452 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22453 if (SWIG_arg_fail(1)) SWIG_fail
;
22455 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22456 result
= (bool)(arg1
)->HasAttributes();
22458 wxPyEndAllowThreads(__tstate
);
22459 if (PyErr_Occurred()) SWIG_fail
;
22462 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
22470 static PyObject
*_wrap_ListItem_GetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22471 PyObject
*resultobj
= NULL
;
22472 wxListItem
*arg1
= (wxListItem
*) 0 ;
22474 PyObject
* obj0
= 0 ;
22475 char *kwnames
[] = {
22476 (char *) "self", NULL
22479 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetTextColour",kwnames
,&obj0
)) goto fail
;
22480 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22481 if (SWIG_arg_fail(1)) SWIG_fail
;
22483 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22484 result
= ((wxListItem
const *)arg1
)->GetTextColour();
22486 wxPyEndAllowThreads(__tstate
);
22487 if (PyErr_Occurred()) SWIG_fail
;
22490 wxColour
* resultptr
;
22491 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
22492 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
22500 static PyObject
*_wrap_ListItem_GetBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22501 PyObject
*resultobj
= NULL
;
22502 wxListItem
*arg1
= (wxListItem
*) 0 ;
22504 PyObject
* obj0
= 0 ;
22505 char *kwnames
[] = {
22506 (char *) "self", NULL
22509 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetBackgroundColour",kwnames
,&obj0
)) goto fail
;
22510 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22511 if (SWIG_arg_fail(1)) SWIG_fail
;
22513 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22514 result
= ((wxListItem
const *)arg1
)->GetBackgroundColour();
22516 wxPyEndAllowThreads(__tstate
);
22517 if (PyErr_Occurred()) SWIG_fail
;
22520 wxColour
* resultptr
;
22521 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
22522 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
22530 static PyObject
*_wrap_ListItem_GetFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22531 PyObject
*resultobj
= NULL
;
22532 wxListItem
*arg1
= (wxListItem
*) 0 ;
22534 PyObject
* obj0
= 0 ;
22535 char *kwnames
[] = {
22536 (char *) "self", NULL
22539 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_GetFont",kwnames
,&obj0
)) goto fail
;
22540 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22541 if (SWIG_arg_fail(1)) SWIG_fail
;
22543 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22544 result
= ((wxListItem
const *)arg1
)->GetFont();
22546 wxPyEndAllowThreads(__tstate
);
22547 if (PyErr_Occurred()) SWIG_fail
;
22550 wxFont
* resultptr
;
22551 resultptr
= new wxFont(static_cast<wxFont
& >(result
));
22552 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxFont
, 1);
22560 static PyObject
*_wrap_ListItem_m_mask_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22561 PyObject
*resultobj
= NULL
;
22562 wxListItem
*arg1
= (wxListItem
*) 0 ;
22564 PyObject
* obj0
= 0 ;
22565 PyObject
* obj1
= 0 ;
22566 char *kwnames
[] = {
22567 (char *) "self",(char *) "m_mask", NULL
22570 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_mask_set",kwnames
,&obj0
,&obj1
)) goto fail
;
22571 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22572 if (SWIG_arg_fail(1)) SWIG_fail
;
22574 arg2
= static_cast<long >(SWIG_As_long(obj1
));
22575 if (SWIG_arg_fail(2)) SWIG_fail
;
22577 if (arg1
) (arg1
)->m_mask
= arg2
;
22579 Py_INCREF(Py_None
); resultobj
= Py_None
;
22586 static PyObject
*_wrap_ListItem_m_mask_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22587 PyObject
*resultobj
= NULL
;
22588 wxListItem
*arg1
= (wxListItem
*) 0 ;
22590 PyObject
* obj0
= 0 ;
22591 char *kwnames
[] = {
22592 (char *) "self", NULL
22595 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_mask_get",kwnames
,&obj0
)) goto fail
;
22596 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22597 if (SWIG_arg_fail(1)) SWIG_fail
;
22598 result
= (long) ((arg1
)->m_mask
);
22601 resultobj
= SWIG_From_long(static_cast<long >(result
));
22609 static PyObject
*_wrap_ListItem_m_itemId_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22610 PyObject
*resultobj
= NULL
;
22611 wxListItem
*arg1
= (wxListItem
*) 0 ;
22613 PyObject
* obj0
= 0 ;
22614 PyObject
* obj1
= 0 ;
22615 char *kwnames
[] = {
22616 (char *) "self",(char *) "m_itemId", NULL
22619 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_itemId_set",kwnames
,&obj0
,&obj1
)) goto fail
;
22620 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22621 if (SWIG_arg_fail(1)) SWIG_fail
;
22623 arg2
= static_cast<long >(SWIG_As_long(obj1
));
22624 if (SWIG_arg_fail(2)) SWIG_fail
;
22626 if (arg1
) (arg1
)->m_itemId
= arg2
;
22628 Py_INCREF(Py_None
); resultobj
= Py_None
;
22635 static PyObject
*_wrap_ListItem_m_itemId_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22636 PyObject
*resultobj
= NULL
;
22637 wxListItem
*arg1
= (wxListItem
*) 0 ;
22639 PyObject
* obj0
= 0 ;
22640 char *kwnames
[] = {
22641 (char *) "self", NULL
22644 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_itemId_get",kwnames
,&obj0
)) goto fail
;
22645 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22646 if (SWIG_arg_fail(1)) SWIG_fail
;
22647 result
= (long) ((arg1
)->m_itemId
);
22650 resultobj
= SWIG_From_long(static_cast<long >(result
));
22658 static PyObject
*_wrap_ListItem_m_col_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22659 PyObject
*resultobj
= NULL
;
22660 wxListItem
*arg1
= (wxListItem
*) 0 ;
22662 PyObject
* obj0
= 0 ;
22663 PyObject
* obj1
= 0 ;
22664 char *kwnames
[] = {
22665 (char *) "self",(char *) "m_col", NULL
22668 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_col_set",kwnames
,&obj0
,&obj1
)) goto fail
;
22669 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22670 if (SWIG_arg_fail(1)) SWIG_fail
;
22672 arg2
= static_cast<int >(SWIG_As_int(obj1
));
22673 if (SWIG_arg_fail(2)) SWIG_fail
;
22675 if (arg1
) (arg1
)->m_col
= arg2
;
22677 Py_INCREF(Py_None
); resultobj
= Py_None
;
22684 static PyObject
*_wrap_ListItem_m_col_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22685 PyObject
*resultobj
= NULL
;
22686 wxListItem
*arg1
= (wxListItem
*) 0 ;
22688 PyObject
* obj0
= 0 ;
22689 char *kwnames
[] = {
22690 (char *) "self", NULL
22693 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_col_get",kwnames
,&obj0
)) goto fail
;
22694 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22695 if (SWIG_arg_fail(1)) SWIG_fail
;
22696 result
= (int) ((arg1
)->m_col
);
22699 resultobj
= SWIG_From_int(static_cast<int >(result
));
22707 static PyObject
*_wrap_ListItem_m_state_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22708 PyObject
*resultobj
= NULL
;
22709 wxListItem
*arg1
= (wxListItem
*) 0 ;
22711 PyObject
* obj0
= 0 ;
22712 PyObject
* obj1
= 0 ;
22713 char *kwnames
[] = {
22714 (char *) "self",(char *) "m_state", NULL
22717 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_state_set",kwnames
,&obj0
,&obj1
)) goto fail
;
22718 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22719 if (SWIG_arg_fail(1)) SWIG_fail
;
22721 arg2
= static_cast<long >(SWIG_As_long(obj1
));
22722 if (SWIG_arg_fail(2)) SWIG_fail
;
22724 if (arg1
) (arg1
)->m_state
= arg2
;
22726 Py_INCREF(Py_None
); resultobj
= Py_None
;
22733 static PyObject
*_wrap_ListItem_m_state_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22734 PyObject
*resultobj
= NULL
;
22735 wxListItem
*arg1
= (wxListItem
*) 0 ;
22737 PyObject
* obj0
= 0 ;
22738 char *kwnames
[] = {
22739 (char *) "self", NULL
22742 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_state_get",kwnames
,&obj0
)) goto fail
;
22743 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22744 if (SWIG_arg_fail(1)) SWIG_fail
;
22745 result
= (long) ((arg1
)->m_state
);
22748 resultobj
= SWIG_From_long(static_cast<long >(result
));
22756 static PyObject
*_wrap_ListItem_m_stateMask_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22757 PyObject
*resultobj
= NULL
;
22758 wxListItem
*arg1
= (wxListItem
*) 0 ;
22760 PyObject
* obj0
= 0 ;
22761 PyObject
* obj1
= 0 ;
22762 char *kwnames
[] = {
22763 (char *) "self",(char *) "m_stateMask", NULL
22766 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_stateMask_set",kwnames
,&obj0
,&obj1
)) goto fail
;
22767 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22768 if (SWIG_arg_fail(1)) SWIG_fail
;
22770 arg2
= static_cast<long >(SWIG_As_long(obj1
));
22771 if (SWIG_arg_fail(2)) SWIG_fail
;
22773 if (arg1
) (arg1
)->m_stateMask
= arg2
;
22775 Py_INCREF(Py_None
); resultobj
= Py_None
;
22782 static PyObject
*_wrap_ListItem_m_stateMask_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22783 PyObject
*resultobj
= NULL
;
22784 wxListItem
*arg1
= (wxListItem
*) 0 ;
22786 PyObject
* obj0
= 0 ;
22787 char *kwnames
[] = {
22788 (char *) "self", NULL
22791 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_stateMask_get",kwnames
,&obj0
)) goto fail
;
22792 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22793 if (SWIG_arg_fail(1)) SWIG_fail
;
22794 result
= (long) ((arg1
)->m_stateMask
);
22797 resultobj
= SWIG_From_long(static_cast<long >(result
));
22805 static PyObject
*_wrap_ListItem_m_text_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22806 PyObject
*resultobj
= NULL
;
22807 wxListItem
*arg1
= (wxListItem
*) 0 ;
22808 wxString
*arg2
= (wxString
*) 0 ;
22809 bool temp2
= false ;
22810 PyObject
* obj0
= 0 ;
22811 PyObject
* obj1
= 0 ;
22812 char *kwnames
[] = {
22813 (char *) "self",(char *) "m_text", NULL
22816 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_text_set",kwnames
,&obj0
,&obj1
)) goto fail
;
22817 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22818 if (SWIG_arg_fail(1)) SWIG_fail
;
22820 arg2
= wxString_in_helper(obj1
);
22821 if (arg2
== NULL
) SWIG_fail
;
22824 if (arg1
) (arg1
)->m_text
= *arg2
;
22826 Py_INCREF(Py_None
); resultobj
= Py_None
;
22841 static PyObject
*_wrap_ListItem_m_text_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22842 PyObject
*resultobj
= NULL
;
22843 wxListItem
*arg1
= (wxListItem
*) 0 ;
22845 PyObject
* obj0
= 0 ;
22846 char *kwnames
[] = {
22847 (char *) "self", NULL
22850 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_text_get",kwnames
,&obj0
)) goto fail
;
22851 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22852 if (SWIG_arg_fail(1)) SWIG_fail
;
22853 result
= (wxString
*)& ((arg1
)->m_text
);
22857 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
22859 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
22868 static PyObject
*_wrap_ListItem_m_image_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22869 PyObject
*resultobj
= NULL
;
22870 wxListItem
*arg1
= (wxListItem
*) 0 ;
22872 PyObject
* obj0
= 0 ;
22873 PyObject
* obj1
= 0 ;
22874 char *kwnames
[] = {
22875 (char *) "self",(char *) "m_image", NULL
22878 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_image_set",kwnames
,&obj0
,&obj1
)) goto fail
;
22879 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22880 if (SWIG_arg_fail(1)) SWIG_fail
;
22882 arg2
= static_cast<int >(SWIG_As_int(obj1
));
22883 if (SWIG_arg_fail(2)) SWIG_fail
;
22885 if (arg1
) (arg1
)->m_image
= arg2
;
22887 Py_INCREF(Py_None
); resultobj
= Py_None
;
22894 static PyObject
*_wrap_ListItem_m_image_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22895 PyObject
*resultobj
= NULL
;
22896 wxListItem
*arg1
= (wxListItem
*) 0 ;
22898 PyObject
* obj0
= 0 ;
22899 char *kwnames
[] = {
22900 (char *) "self", NULL
22903 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_image_get",kwnames
,&obj0
)) goto fail
;
22904 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22905 if (SWIG_arg_fail(1)) SWIG_fail
;
22906 result
= (int) ((arg1
)->m_image
);
22909 resultobj
= SWIG_From_int(static_cast<int >(result
));
22917 static PyObject
*_wrap_ListItem_m_data_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22918 PyObject
*resultobj
= NULL
;
22919 wxListItem
*arg1
= (wxListItem
*) 0 ;
22921 PyObject
* obj0
= 0 ;
22922 PyObject
* obj1
= 0 ;
22923 char *kwnames
[] = {
22924 (char *) "self",(char *) "m_data", NULL
22927 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_data_set",kwnames
,&obj0
,&obj1
)) goto fail
;
22928 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22929 if (SWIG_arg_fail(1)) SWIG_fail
;
22931 arg2
= static_cast<long >(SWIG_As_long(obj1
));
22932 if (SWIG_arg_fail(2)) SWIG_fail
;
22934 if (arg1
) (arg1
)->m_data
= arg2
;
22936 Py_INCREF(Py_None
); resultobj
= Py_None
;
22943 static PyObject
*_wrap_ListItem_m_data_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22944 PyObject
*resultobj
= NULL
;
22945 wxListItem
*arg1
= (wxListItem
*) 0 ;
22947 PyObject
* obj0
= 0 ;
22948 char *kwnames
[] = {
22949 (char *) "self", NULL
22952 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_data_get",kwnames
,&obj0
)) goto fail
;
22953 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22954 if (SWIG_arg_fail(1)) SWIG_fail
;
22955 result
= (long) ((arg1
)->m_data
);
22958 resultobj
= SWIG_From_long(static_cast<long >(result
));
22966 static PyObject
*_wrap_ListItem_m_format_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22967 PyObject
*resultobj
= NULL
;
22968 wxListItem
*arg1
= (wxListItem
*) 0 ;
22970 PyObject
* obj0
= 0 ;
22971 PyObject
* obj1
= 0 ;
22972 char *kwnames
[] = {
22973 (char *) "self",(char *) "m_format", NULL
22976 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_format_set",kwnames
,&obj0
,&obj1
)) goto fail
;
22977 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
22978 if (SWIG_arg_fail(1)) SWIG_fail
;
22980 arg2
= static_cast<int >(SWIG_As_int(obj1
));
22981 if (SWIG_arg_fail(2)) SWIG_fail
;
22983 if (arg1
) (arg1
)->m_format
= arg2
;
22985 Py_INCREF(Py_None
); resultobj
= Py_None
;
22992 static PyObject
*_wrap_ListItem_m_format_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
22993 PyObject
*resultobj
= NULL
;
22994 wxListItem
*arg1
= (wxListItem
*) 0 ;
22996 PyObject
* obj0
= 0 ;
22997 char *kwnames
[] = {
22998 (char *) "self", NULL
23001 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_format_get",kwnames
,&obj0
)) goto fail
;
23002 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23003 if (SWIG_arg_fail(1)) SWIG_fail
;
23004 result
= (int) ((arg1
)->m_format
);
23007 resultobj
= SWIG_From_int(static_cast<int >(result
));
23015 static PyObject
*_wrap_ListItem_m_width_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23016 PyObject
*resultobj
= NULL
;
23017 wxListItem
*arg1
= (wxListItem
*) 0 ;
23019 PyObject
* obj0
= 0 ;
23020 PyObject
* obj1
= 0 ;
23021 char *kwnames
[] = {
23022 (char *) "self",(char *) "m_width", NULL
23025 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListItem_m_width_set",kwnames
,&obj0
,&obj1
)) goto fail
;
23026 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23027 if (SWIG_arg_fail(1)) SWIG_fail
;
23029 arg2
= static_cast<int >(SWIG_As_int(obj1
));
23030 if (SWIG_arg_fail(2)) SWIG_fail
;
23032 if (arg1
) (arg1
)->m_width
= arg2
;
23034 Py_INCREF(Py_None
); resultobj
= Py_None
;
23041 static PyObject
*_wrap_ListItem_m_width_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23042 PyObject
*resultobj
= NULL
;
23043 wxListItem
*arg1
= (wxListItem
*) 0 ;
23045 PyObject
* obj0
= 0 ;
23046 char *kwnames
[] = {
23047 (char *) "self", NULL
23050 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListItem_m_width_get",kwnames
,&obj0
)) goto fail
;
23051 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
23052 if (SWIG_arg_fail(1)) SWIG_fail
;
23053 result
= (int) ((arg1
)->m_width
);
23056 resultobj
= SWIG_From_int(static_cast<int >(result
));
23064 static PyObject
* ListItem_swigregister(PyObject
*, PyObject
*args
) {
23066 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
23067 SWIG_TypeClientData(SWIGTYPE_p_wxListItem
, obj
);
23069 return Py_BuildValue((char *)"");
23071 static PyObject
*_wrap_new_ListEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23072 PyObject
*resultobj
= NULL
;
23073 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
23074 int arg2
= (int) 0 ;
23075 wxListEvent
*result
;
23076 PyObject
* obj0
= 0 ;
23077 PyObject
* obj1
= 0 ;
23078 char *kwnames
[] = {
23079 (char *) "commandType",(char *) "id", NULL
23082 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_ListEvent",kwnames
,&obj0
,&obj1
)) goto fail
;
23085 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
23086 if (SWIG_arg_fail(1)) SWIG_fail
;
23091 arg2
= static_cast<int >(SWIG_As_int(obj1
));
23092 if (SWIG_arg_fail(2)) SWIG_fail
;
23096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23097 result
= (wxListEvent
*)new wxListEvent(arg1
,arg2
);
23099 wxPyEndAllowThreads(__tstate
);
23100 if (PyErr_Occurred()) SWIG_fail
;
23102 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListEvent
, 1);
23109 static PyObject
*_wrap_ListEvent_m_code_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23110 PyObject
*resultobj
= NULL
;
23111 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23113 PyObject
* obj0
= 0 ;
23114 PyObject
* obj1
= 0 ;
23115 char *kwnames
[] = {
23116 (char *) "self",(char *) "m_code", NULL
23119 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListEvent_m_code_set",kwnames
,&obj0
,&obj1
)) goto fail
;
23120 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23121 if (SWIG_arg_fail(1)) SWIG_fail
;
23123 arg2
= static_cast<int >(SWIG_As_int(obj1
));
23124 if (SWIG_arg_fail(2)) SWIG_fail
;
23126 if (arg1
) (arg1
)->m_code
= arg2
;
23128 Py_INCREF(Py_None
); resultobj
= Py_None
;
23135 static PyObject
*_wrap_ListEvent_m_code_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23136 PyObject
*resultobj
= NULL
;
23137 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23139 PyObject
* obj0
= 0 ;
23140 char *kwnames
[] = {
23141 (char *) "self", NULL
23144 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_m_code_get",kwnames
,&obj0
)) goto fail
;
23145 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23146 if (SWIG_arg_fail(1)) SWIG_fail
;
23147 result
= (int) ((arg1
)->m_code
);
23150 resultobj
= SWIG_From_int(static_cast<int >(result
));
23158 static PyObject
*_wrap_ListEvent_m_oldItemIndex_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23159 PyObject
*resultobj
= NULL
;
23160 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23162 PyObject
* obj0
= 0 ;
23163 PyObject
* obj1
= 0 ;
23164 char *kwnames
[] = {
23165 (char *) "self",(char *) "m_oldItemIndex", NULL
23168 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListEvent_m_oldItemIndex_set",kwnames
,&obj0
,&obj1
)) goto fail
;
23169 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23170 if (SWIG_arg_fail(1)) SWIG_fail
;
23172 arg2
= static_cast<long >(SWIG_As_long(obj1
));
23173 if (SWIG_arg_fail(2)) SWIG_fail
;
23175 if (arg1
) (arg1
)->m_oldItemIndex
= arg2
;
23177 Py_INCREF(Py_None
); resultobj
= Py_None
;
23184 static PyObject
*_wrap_ListEvent_m_oldItemIndex_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23185 PyObject
*resultobj
= NULL
;
23186 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23188 PyObject
* obj0
= 0 ;
23189 char *kwnames
[] = {
23190 (char *) "self", NULL
23193 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_m_oldItemIndex_get",kwnames
,&obj0
)) goto fail
;
23194 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23195 if (SWIG_arg_fail(1)) SWIG_fail
;
23196 result
= (long) ((arg1
)->m_oldItemIndex
);
23199 resultobj
= SWIG_From_long(static_cast<long >(result
));
23207 static PyObject
*_wrap_ListEvent_m_itemIndex_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23208 PyObject
*resultobj
= NULL
;
23209 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23211 PyObject
* obj0
= 0 ;
23212 PyObject
* obj1
= 0 ;
23213 char *kwnames
[] = {
23214 (char *) "self",(char *) "m_itemIndex", NULL
23217 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListEvent_m_itemIndex_set",kwnames
,&obj0
,&obj1
)) goto fail
;
23218 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23219 if (SWIG_arg_fail(1)) SWIG_fail
;
23221 arg2
= static_cast<long >(SWIG_As_long(obj1
));
23222 if (SWIG_arg_fail(2)) SWIG_fail
;
23224 if (arg1
) (arg1
)->m_itemIndex
= arg2
;
23226 Py_INCREF(Py_None
); resultobj
= Py_None
;
23233 static PyObject
*_wrap_ListEvent_m_itemIndex_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23234 PyObject
*resultobj
= NULL
;
23235 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23237 PyObject
* obj0
= 0 ;
23238 char *kwnames
[] = {
23239 (char *) "self", NULL
23242 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_m_itemIndex_get",kwnames
,&obj0
)) goto fail
;
23243 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23244 if (SWIG_arg_fail(1)) SWIG_fail
;
23245 result
= (long) ((arg1
)->m_itemIndex
);
23248 resultobj
= SWIG_From_long(static_cast<long >(result
));
23256 static PyObject
*_wrap_ListEvent_m_col_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23257 PyObject
*resultobj
= NULL
;
23258 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23260 PyObject
* obj0
= 0 ;
23261 PyObject
* obj1
= 0 ;
23262 char *kwnames
[] = {
23263 (char *) "self",(char *) "m_col", NULL
23266 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListEvent_m_col_set",kwnames
,&obj0
,&obj1
)) goto fail
;
23267 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23268 if (SWIG_arg_fail(1)) SWIG_fail
;
23270 arg2
= static_cast<int >(SWIG_As_int(obj1
));
23271 if (SWIG_arg_fail(2)) SWIG_fail
;
23273 if (arg1
) (arg1
)->m_col
= arg2
;
23275 Py_INCREF(Py_None
); resultobj
= Py_None
;
23282 static PyObject
*_wrap_ListEvent_m_col_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23283 PyObject
*resultobj
= NULL
;
23284 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23286 PyObject
* obj0
= 0 ;
23287 char *kwnames
[] = {
23288 (char *) "self", NULL
23291 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_m_col_get",kwnames
,&obj0
)) goto fail
;
23292 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23293 if (SWIG_arg_fail(1)) SWIG_fail
;
23294 result
= (int) ((arg1
)->m_col
);
23297 resultobj
= SWIG_From_int(static_cast<int >(result
));
23305 static PyObject
*_wrap_ListEvent_m_pointDrag_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23306 PyObject
*resultobj
= NULL
;
23307 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23308 wxPoint
*arg2
= (wxPoint
*) 0 ;
23309 PyObject
* obj0
= 0 ;
23310 PyObject
* obj1
= 0 ;
23311 char *kwnames
[] = {
23312 (char *) "self",(char *) "m_pointDrag", NULL
23315 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListEvent_m_pointDrag_set",kwnames
,&obj0
,&obj1
)) goto fail
;
23316 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23317 if (SWIG_arg_fail(1)) SWIG_fail
;
23318 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPoint
, SWIG_POINTER_EXCEPTION
| 0);
23319 if (SWIG_arg_fail(2)) SWIG_fail
;
23320 if (arg1
) (arg1
)->m_pointDrag
= *arg2
;
23322 Py_INCREF(Py_None
); resultobj
= Py_None
;
23329 static PyObject
*_wrap_ListEvent_m_pointDrag_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23330 PyObject
*resultobj
= NULL
;
23331 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23333 PyObject
* obj0
= 0 ;
23334 char *kwnames
[] = {
23335 (char *) "self", NULL
23338 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_m_pointDrag_get",kwnames
,&obj0
)) goto fail
;
23339 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23340 if (SWIG_arg_fail(1)) SWIG_fail
;
23341 result
= (wxPoint
*)& ((arg1
)->m_pointDrag
);
23343 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPoint
, 0);
23350 static PyObject
*_wrap_ListEvent_m_item_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23351 PyObject
*resultobj
= NULL
;
23352 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23353 wxListItem
*result
;
23354 PyObject
* obj0
= 0 ;
23355 char *kwnames
[] = {
23356 (char *) "self", NULL
23359 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_m_item_get",kwnames
,&obj0
)) goto fail
;
23360 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23361 if (SWIG_arg_fail(1)) SWIG_fail
;
23362 result
= (wxListItem
*)& ((arg1
)->m_item
);
23365 resultobj
= wxPyMake_wxObject(result
, 0);
23373 static PyObject
*_wrap_ListEvent_GetKeyCode(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23374 PyObject
*resultobj
= NULL
;
23375 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23377 PyObject
* obj0
= 0 ;
23378 char *kwnames
[] = {
23379 (char *) "self", NULL
23382 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetKeyCode",kwnames
,&obj0
)) goto fail
;
23383 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23384 if (SWIG_arg_fail(1)) SWIG_fail
;
23386 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23387 result
= (int)(arg1
)->GetKeyCode();
23389 wxPyEndAllowThreads(__tstate
);
23390 if (PyErr_Occurred()) SWIG_fail
;
23393 resultobj
= SWIG_From_int(static_cast<int >(result
));
23401 static PyObject
*_wrap_ListEvent_GetIndex(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23402 PyObject
*resultobj
= NULL
;
23403 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23405 PyObject
* obj0
= 0 ;
23406 char *kwnames
[] = {
23407 (char *) "self", NULL
23410 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetIndex",kwnames
,&obj0
)) goto fail
;
23411 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23412 if (SWIG_arg_fail(1)) SWIG_fail
;
23414 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23415 result
= (long)(arg1
)->GetIndex();
23417 wxPyEndAllowThreads(__tstate
);
23418 if (PyErr_Occurred()) SWIG_fail
;
23421 resultobj
= SWIG_From_long(static_cast<long >(result
));
23429 static PyObject
*_wrap_ListEvent_GetColumn(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23430 PyObject
*resultobj
= NULL
;
23431 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23433 PyObject
* obj0
= 0 ;
23434 char *kwnames
[] = {
23435 (char *) "self", NULL
23438 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetColumn",kwnames
,&obj0
)) goto fail
;
23439 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23440 if (SWIG_arg_fail(1)) SWIG_fail
;
23442 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23443 result
= (int)(arg1
)->GetColumn();
23445 wxPyEndAllowThreads(__tstate
);
23446 if (PyErr_Occurred()) SWIG_fail
;
23449 resultobj
= SWIG_From_int(static_cast<int >(result
));
23457 static PyObject
*_wrap_ListEvent_GetPoint(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23458 PyObject
*resultobj
= NULL
;
23459 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23461 PyObject
* obj0
= 0 ;
23462 char *kwnames
[] = {
23463 (char *) "self", NULL
23466 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetPoint",kwnames
,&obj0
)) goto fail
;
23467 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23468 if (SWIG_arg_fail(1)) SWIG_fail
;
23470 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23471 result
= (arg1
)->GetPoint();
23473 wxPyEndAllowThreads(__tstate
);
23474 if (PyErr_Occurred()) SWIG_fail
;
23477 wxPoint
* resultptr
;
23478 resultptr
= new wxPoint(static_cast<wxPoint
& >(result
));
23479 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1);
23487 static PyObject
*_wrap_ListEvent_GetLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23488 PyObject
*resultobj
= NULL
;
23489 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23491 PyObject
* obj0
= 0 ;
23492 char *kwnames
[] = {
23493 (char *) "self", NULL
23496 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetLabel",kwnames
,&obj0
)) goto fail
;
23497 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23498 if (SWIG_arg_fail(1)) SWIG_fail
;
23500 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23502 wxString
const &_result_ref
= (arg1
)->GetLabel();
23503 result
= (wxString
*) &_result_ref
;
23506 wxPyEndAllowThreads(__tstate
);
23507 if (PyErr_Occurred()) SWIG_fail
;
23511 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
23513 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
23522 static PyObject
*_wrap_ListEvent_GetText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23523 PyObject
*resultobj
= NULL
;
23524 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23526 PyObject
* obj0
= 0 ;
23527 char *kwnames
[] = {
23528 (char *) "self", NULL
23531 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetText",kwnames
,&obj0
)) goto fail
;
23532 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23533 if (SWIG_arg_fail(1)) SWIG_fail
;
23535 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23537 wxString
const &_result_ref
= (arg1
)->GetText();
23538 result
= (wxString
*) &_result_ref
;
23541 wxPyEndAllowThreads(__tstate
);
23542 if (PyErr_Occurred()) SWIG_fail
;
23546 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
23548 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
23557 static PyObject
*_wrap_ListEvent_GetImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23558 PyObject
*resultobj
= NULL
;
23559 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23561 PyObject
* obj0
= 0 ;
23562 char *kwnames
[] = {
23563 (char *) "self", NULL
23566 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetImage",kwnames
,&obj0
)) goto fail
;
23567 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23568 if (SWIG_arg_fail(1)) SWIG_fail
;
23570 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23571 result
= (int)(arg1
)->GetImage();
23573 wxPyEndAllowThreads(__tstate
);
23574 if (PyErr_Occurred()) SWIG_fail
;
23577 resultobj
= SWIG_From_int(static_cast<int >(result
));
23585 static PyObject
*_wrap_ListEvent_GetData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23586 PyObject
*resultobj
= NULL
;
23587 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23589 PyObject
* obj0
= 0 ;
23590 char *kwnames
[] = {
23591 (char *) "self", NULL
23594 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetData",kwnames
,&obj0
)) goto fail
;
23595 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23596 if (SWIG_arg_fail(1)) SWIG_fail
;
23598 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23599 result
= (long)(arg1
)->GetData();
23601 wxPyEndAllowThreads(__tstate
);
23602 if (PyErr_Occurred()) SWIG_fail
;
23605 resultobj
= SWIG_From_long(static_cast<long >(result
));
23613 static PyObject
*_wrap_ListEvent_GetMask(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23614 PyObject
*resultobj
= NULL
;
23615 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23617 PyObject
* obj0
= 0 ;
23618 char *kwnames
[] = {
23619 (char *) "self", NULL
23622 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetMask",kwnames
,&obj0
)) goto fail
;
23623 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23624 if (SWIG_arg_fail(1)) SWIG_fail
;
23626 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23627 result
= (long)(arg1
)->GetMask();
23629 wxPyEndAllowThreads(__tstate
);
23630 if (PyErr_Occurred()) SWIG_fail
;
23633 resultobj
= SWIG_From_long(static_cast<long >(result
));
23641 static PyObject
*_wrap_ListEvent_GetItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23642 PyObject
*resultobj
= NULL
;
23643 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23644 wxListItem
*result
;
23645 PyObject
* obj0
= 0 ;
23646 char *kwnames
[] = {
23647 (char *) "self", NULL
23650 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetItem",kwnames
,&obj0
)) goto fail
;
23651 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23652 if (SWIG_arg_fail(1)) SWIG_fail
;
23654 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23656 wxListItem
const &_result_ref
= (arg1
)->GetItem();
23657 result
= (wxListItem
*) &_result_ref
;
23660 wxPyEndAllowThreads(__tstate
);
23661 if (PyErr_Occurred()) SWIG_fail
;
23663 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListItem
, 0);
23670 static PyObject
*_wrap_ListEvent_GetCacheFrom(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23671 PyObject
*resultobj
= NULL
;
23672 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23674 PyObject
* obj0
= 0 ;
23675 char *kwnames
[] = {
23676 (char *) "self", NULL
23679 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetCacheFrom",kwnames
,&obj0
)) goto fail
;
23680 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23681 if (SWIG_arg_fail(1)) SWIG_fail
;
23683 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23684 result
= (long)(arg1
)->GetCacheFrom();
23686 wxPyEndAllowThreads(__tstate
);
23687 if (PyErr_Occurred()) SWIG_fail
;
23690 resultobj
= SWIG_From_long(static_cast<long >(result
));
23698 static PyObject
*_wrap_ListEvent_GetCacheTo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23699 PyObject
*resultobj
= NULL
;
23700 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23702 PyObject
* obj0
= 0 ;
23703 char *kwnames
[] = {
23704 (char *) "self", NULL
23707 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_GetCacheTo",kwnames
,&obj0
)) goto fail
;
23708 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23709 if (SWIG_arg_fail(1)) SWIG_fail
;
23711 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23712 result
= (long)(arg1
)->GetCacheTo();
23714 wxPyEndAllowThreads(__tstate
);
23715 if (PyErr_Occurred()) SWIG_fail
;
23718 resultobj
= SWIG_From_long(static_cast<long >(result
));
23726 static PyObject
*_wrap_ListEvent_IsEditCancelled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23727 PyObject
*resultobj
= NULL
;
23728 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23730 PyObject
* obj0
= 0 ;
23731 char *kwnames
[] = {
23732 (char *) "self", NULL
23735 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListEvent_IsEditCancelled",kwnames
,&obj0
)) goto fail
;
23736 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23737 if (SWIG_arg_fail(1)) SWIG_fail
;
23739 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23740 result
= (bool)((wxListEvent
const *)arg1
)->IsEditCancelled();
23742 wxPyEndAllowThreads(__tstate
);
23743 if (PyErr_Occurred()) SWIG_fail
;
23746 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
23754 static PyObject
*_wrap_ListEvent_SetEditCanceled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23755 PyObject
*resultobj
= NULL
;
23756 wxListEvent
*arg1
= (wxListEvent
*) 0 ;
23758 PyObject
* obj0
= 0 ;
23759 PyObject
* obj1
= 0 ;
23760 char *kwnames
[] = {
23761 (char *) "self",(char *) "editCancelled", NULL
23764 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListEvent_SetEditCanceled",kwnames
,&obj0
,&obj1
)) goto fail
;
23765 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListEvent
, SWIG_POINTER_EXCEPTION
| 0);
23766 if (SWIG_arg_fail(1)) SWIG_fail
;
23768 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
23769 if (SWIG_arg_fail(2)) SWIG_fail
;
23772 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23773 (arg1
)->SetEditCanceled(arg2
);
23775 wxPyEndAllowThreads(__tstate
);
23776 if (PyErr_Occurred()) SWIG_fail
;
23778 Py_INCREF(Py_None
); resultobj
= Py_None
;
23785 static PyObject
* ListEvent_swigregister(PyObject
*, PyObject
*args
) {
23787 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
23788 SWIG_TypeClientData(SWIGTYPE_p_wxListEvent
, obj
);
23790 return Py_BuildValue((char *)"");
23792 static PyObject
*_wrap_new_ListCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23793 PyObject
*resultobj
= NULL
;
23794 wxWindow
*arg1
= (wxWindow
*) 0 ;
23795 int arg2
= (int) -1 ;
23796 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
23797 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
23798 wxSize
const &arg4_defvalue
= wxDefaultSize
;
23799 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
23800 long arg5
= (long) wxLC_ICON
;
23801 wxValidator
const &arg6_defvalue
= wxDefaultValidator
;
23802 wxValidator
*arg6
= (wxValidator
*) &arg6_defvalue
;
23803 wxString
const &arg7_defvalue
= wxPyListCtrlNameStr
;
23804 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
23805 wxPyListCtrl
*result
;
23808 bool temp7
= false ;
23809 PyObject
* obj0
= 0 ;
23810 PyObject
* obj1
= 0 ;
23811 PyObject
* obj2
= 0 ;
23812 PyObject
* obj3
= 0 ;
23813 PyObject
* obj4
= 0 ;
23814 PyObject
* obj5
= 0 ;
23815 PyObject
* obj6
= 0 ;
23816 char *kwnames
[] = {
23817 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
23820 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_ListCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
23821 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
23822 if (SWIG_arg_fail(1)) SWIG_fail
;
23825 arg2
= static_cast<int >(SWIG_As_int(obj1
));
23826 if (SWIG_arg_fail(2)) SWIG_fail
;
23832 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
23838 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
23843 arg5
= static_cast<long >(SWIG_As_long(obj4
));
23844 if (SWIG_arg_fail(5)) SWIG_fail
;
23849 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
23850 if (SWIG_arg_fail(6)) SWIG_fail
;
23851 if (arg6
== NULL
) {
23852 SWIG_null_ref("wxValidator");
23854 if (SWIG_arg_fail(6)) SWIG_fail
;
23859 arg7
= wxString_in_helper(obj6
);
23860 if (arg7
== NULL
) SWIG_fail
;
23865 if (!wxPyCheckForApp()) SWIG_fail
;
23866 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23867 result
= (wxPyListCtrl
*)new wxPyListCtrl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxValidator
const &)*arg6
,(wxString
const &)*arg7
);
23869 wxPyEndAllowThreads(__tstate
);
23870 if (PyErr_Occurred()) SWIG_fail
;
23872 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyListCtrl
, 1);
23887 static PyObject
*_wrap_new_PreListCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23888 PyObject
*resultobj
= NULL
;
23889 wxPyListCtrl
*result
;
23890 char *kwnames
[] = {
23894 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreListCtrl",kwnames
)) goto fail
;
23896 if (!wxPyCheckForApp()) SWIG_fail
;
23897 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23898 result
= (wxPyListCtrl
*)new wxPyListCtrl();
23900 wxPyEndAllowThreads(__tstate
);
23901 if (PyErr_Occurred()) SWIG_fail
;
23903 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyListCtrl
, 1);
23910 static PyObject
*_wrap_ListCtrl_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
23911 PyObject
*resultobj
= NULL
;
23912 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
23913 wxWindow
*arg2
= (wxWindow
*) 0 ;
23914 int arg3
= (int) -1 ;
23915 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
23916 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
23917 wxSize
const &arg5_defvalue
= wxDefaultSize
;
23918 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
23919 long arg6
= (long) wxLC_ICON
;
23920 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
23921 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
23922 wxString
const &arg8_defvalue
= wxPyListCtrlNameStr
;
23923 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
23927 bool temp8
= false ;
23928 PyObject
* obj0
= 0 ;
23929 PyObject
* obj1
= 0 ;
23930 PyObject
* obj2
= 0 ;
23931 PyObject
* obj3
= 0 ;
23932 PyObject
* obj4
= 0 ;
23933 PyObject
* obj5
= 0 ;
23934 PyObject
* obj6
= 0 ;
23935 PyObject
* obj7
= 0 ;
23936 char *kwnames
[] = {
23937 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
23940 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:ListCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
23941 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
23942 if (SWIG_arg_fail(1)) SWIG_fail
;
23943 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
23944 if (SWIG_arg_fail(2)) SWIG_fail
;
23947 arg3
= static_cast<int >(SWIG_As_int(obj2
));
23948 if (SWIG_arg_fail(3)) SWIG_fail
;
23954 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
23960 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
23965 arg6
= static_cast<long >(SWIG_As_long(obj5
));
23966 if (SWIG_arg_fail(6)) SWIG_fail
;
23971 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
23972 if (SWIG_arg_fail(7)) SWIG_fail
;
23973 if (arg7
== NULL
) {
23974 SWIG_null_ref("wxValidator");
23976 if (SWIG_arg_fail(7)) SWIG_fail
;
23981 arg8
= wxString_in_helper(obj7
);
23982 if (arg8
== NULL
) SWIG_fail
;
23987 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23988 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
23990 wxPyEndAllowThreads(__tstate
);
23991 if (PyErr_Occurred()) SWIG_fail
;
23994 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24010 static PyObject
*_wrap_ListCtrl__setCallbackInfo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24011 PyObject
*resultobj
= NULL
;
24012 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24013 PyObject
*arg2
= (PyObject
*) 0 ;
24014 PyObject
*arg3
= (PyObject
*) 0 ;
24015 PyObject
* obj0
= 0 ;
24016 PyObject
* obj1
= 0 ;
24017 PyObject
* obj2
= 0 ;
24018 char *kwnames
[] = {
24019 (char *) "self",(char *) "self",(char *) "_class", NULL
24022 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
24023 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24024 if (SWIG_arg_fail(1)) SWIG_fail
;
24028 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24029 (arg1
)->_setCallbackInfo(arg2
,arg3
);
24031 wxPyEndAllowThreads(__tstate
);
24032 if (PyErr_Occurred()) SWIG_fail
;
24034 Py_INCREF(Py_None
); resultobj
= Py_None
;
24041 static PyObject
*_wrap_ListCtrl_SetForegroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24042 PyObject
*resultobj
= NULL
;
24043 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24044 wxColour
*arg2
= 0 ;
24047 PyObject
* obj0
= 0 ;
24048 PyObject
* obj1
= 0 ;
24049 char *kwnames
[] = {
24050 (char *) "self",(char *) "col", NULL
24053 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_SetForegroundColour",kwnames
,&obj0
,&obj1
)) goto fail
;
24054 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24055 if (SWIG_arg_fail(1)) SWIG_fail
;
24058 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
24061 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24062 result
= (bool)(arg1
)->SetForegroundColour((wxColour
const &)*arg2
);
24064 wxPyEndAllowThreads(__tstate
);
24065 if (PyErr_Occurred()) SWIG_fail
;
24068 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24076 static PyObject
*_wrap_ListCtrl_SetBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24077 PyObject
*resultobj
= NULL
;
24078 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24079 wxColour
*arg2
= 0 ;
24082 PyObject
* obj0
= 0 ;
24083 PyObject
* obj1
= 0 ;
24084 char *kwnames
[] = {
24085 (char *) "self",(char *) "col", NULL
24088 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_SetBackgroundColour",kwnames
,&obj0
,&obj1
)) goto fail
;
24089 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24090 if (SWIG_arg_fail(1)) SWIG_fail
;
24093 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
24096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24097 result
= (bool)(arg1
)->SetBackgroundColour((wxColour
const &)*arg2
);
24099 wxPyEndAllowThreads(__tstate
);
24100 if (PyErr_Occurred()) SWIG_fail
;
24103 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24111 static PyObject
*_wrap_ListCtrl_GetColumn(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24112 PyObject
*resultobj
= NULL
;
24113 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24115 wxListItem
*result
;
24116 PyObject
* obj0
= 0 ;
24117 PyObject
* obj1
= 0 ;
24118 char *kwnames
[] = {
24119 (char *) "self",(char *) "col", NULL
24122 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetColumn",kwnames
,&obj0
,&obj1
)) goto fail
;
24123 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24124 if (SWIG_arg_fail(1)) SWIG_fail
;
24126 arg2
= static_cast<int >(SWIG_As_int(obj1
));
24127 if (SWIG_arg_fail(2)) SWIG_fail
;
24130 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24131 result
= (wxListItem
*)wxPyListCtrl_GetColumn(arg1
,arg2
);
24133 wxPyEndAllowThreads(__tstate
);
24134 if (PyErr_Occurred()) SWIG_fail
;
24137 resultobj
= wxPyMake_wxObject(result
, 0);
24145 static PyObject
*_wrap_ListCtrl_SetColumn(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24146 PyObject
*resultobj
= NULL
;
24147 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24149 wxListItem
*arg3
= 0 ;
24151 PyObject
* obj0
= 0 ;
24152 PyObject
* obj1
= 0 ;
24153 PyObject
* obj2
= 0 ;
24154 char *kwnames
[] = {
24155 (char *) "self",(char *) "col",(char *) "item", NULL
24158 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetColumn",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
24159 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24160 if (SWIG_arg_fail(1)) SWIG_fail
;
24162 arg2
= static_cast<int >(SWIG_As_int(obj1
));
24163 if (SWIG_arg_fail(2)) SWIG_fail
;
24166 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
24167 if (SWIG_arg_fail(3)) SWIG_fail
;
24168 if (arg3
== NULL
) {
24169 SWIG_null_ref("wxListItem");
24171 if (SWIG_arg_fail(3)) SWIG_fail
;
24174 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24175 result
= (bool)(arg1
)->SetColumn(arg2
,*arg3
);
24177 wxPyEndAllowThreads(__tstate
);
24178 if (PyErr_Occurred()) SWIG_fail
;
24181 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24189 static PyObject
*_wrap_ListCtrl_GetColumnWidth(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24190 PyObject
*resultobj
= NULL
;
24191 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24194 PyObject
* obj0
= 0 ;
24195 PyObject
* obj1
= 0 ;
24196 char *kwnames
[] = {
24197 (char *) "self",(char *) "col", NULL
24200 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetColumnWidth",kwnames
,&obj0
,&obj1
)) goto fail
;
24201 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24202 if (SWIG_arg_fail(1)) SWIG_fail
;
24204 arg2
= static_cast<int >(SWIG_As_int(obj1
));
24205 if (SWIG_arg_fail(2)) SWIG_fail
;
24208 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24209 result
= (int)((wxPyListCtrl
const *)arg1
)->GetColumnWidth(arg2
);
24211 wxPyEndAllowThreads(__tstate
);
24212 if (PyErr_Occurred()) SWIG_fail
;
24215 resultobj
= SWIG_From_int(static_cast<int >(result
));
24223 static PyObject
*_wrap_ListCtrl_SetColumnWidth(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24224 PyObject
*resultobj
= NULL
;
24225 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24229 PyObject
* obj0
= 0 ;
24230 PyObject
* obj1
= 0 ;
24231 PyObject
* obj2
= 0 ;
24232 char *kwnames
[] = {
24233 (char *) "self",(char *) "col",(char *) "width", NULL
24236 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetColumnWidth",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
24237 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24238 if (SWIG_arg_fail(1)) SWIG_fail
;
24240 arg2
= static_cast<int >(SWIG_As_int(obj1
));
24241 if (SWIG_arg_fail(2)) SWIG_fail
;
24244 arg3
= static_cast<int >(SWIG_As_int(obj2
));
24245 if (SWIG_arg_fail(3)) SWIG_fail
;
24248 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24249 result
= (bool)(arg1
)->SetColumnWidth(arg2
,arg3
);
24251 wxPyEndAllowThreads(__tstate
);
24252 if (PyErr_Occurred()) SWIG_fail
;
24255 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24263 static PyObject
*_wrap_ListCtrl_GetCountPerPage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24264 PyObject
*resultobj
= NULL
;
24265 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24267 PyObject
* obj0
= 0 ;
24268 char *kwnames
[] = {
24269 (char *) "self", NULL
24272 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetCountPerPage",kwnames
,&obj0
)) goto fail
;
24273 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24274 if (SWIG_arg_fail(1)) SWIG_fail
;
24276 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24277 result
= (int)((wxPyListCtrl
const *)arg1
)->GetCountPerPage();
24279 wxPyEndAllowThreads(__tstate
);
24280 if (PyErr_Occurred()) SWIG_fail
;
24283 resultobj
= SWIG_From_int(static_cast<int >(result
));
24291 static PyObject
*_wrap_ListCtrl_GetViewRect(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24292 PyObject
*resultobj
= NULL
;
24293 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24295 PyObject
* obj0
= 0 ;
24296 char *kwnames
[] = {
24297 (char *) "self", NULL
24300 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetViewRect",kwnames
,&obj0
)) goto fail
;
24301 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24302 if (SWIG_arg_fail(1)) SWIG_fail
;
24304 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24305 result
= ((wxPyListCtrl
const *)arg1
)->GetViewRect();
24307 wxPyEndAllowThreads(__tstate
);
24308 if (PyErr_Occurred()) SWIG_fail
;
24311 wxRect
* resultptr
;
24312 resultptr
= new wxRect(static_cast<wxRect
& >(result
));
24313 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxRect
, 1);
24321 static PyObject
*_wrap_ListCtrl_GetItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24322 PyObject
*resultobj
= NULL
;
24323 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24325 int arg3
= (int) 0 ;
24326 wxListItem
*result
;
24327 PyObject
* obj0
= 0 ;
24328 PyObject
* obj1
= 0 ;
24329 PyObject
* obj2
= 0 ;
24330 char *kwnames
[] = {
24331 (char *) "self",(char *) "itemId",(char *) "col", NULL
24334 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ListCtrl_GetItem",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
24335 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24336 if (SWIG_arg_fail(1)) SWIG_fail
;
24338 arg2
= static_cast<long >(SWIG_As_long(obj1
));
24339 if (SWIG_arg_fail(2)) SWIG_fail
;
24343 arg3
= static_cast<int >(SWIG_As_int(obj2
));
24344 if (SWIG_arg_fail(3)) SWIG_fail
;
24348 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24349 result
= (wxListItem
*)wxPyListCtrl_GetItem(arg1
,arg2
,arg3
);
24351 wxPyEndAllowThreads(__tstate
);
24352 if (PyErr_Occurred()) SWIG_fail
;
24355 resultobj
= wxPyMake_wxObject(result
, 0);
24363 static PyObject
*_wrap_ListCtrl_SetItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24364 PyObject
*resultobj
= NULL
;
24365 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24366 wxListItem
*arg2
= 0 ;
24368 PyObject
* obj0
= 0 ;
24369 PyObject
* obj1
= 0 ;
24370 char *kwnames
[] = {
24371 (char *) "self",(char *) "info", NULL
24374 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_SetItem",kwnames
,&obj0
,&obj1
)) goto fail
;
24375 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24376 if (SWIG_arg_fail(1)) SWIG_fail
;
24378 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
24379 if (SWIG_arg_fail(2)) SWIG_fail
;
24380 if (arg2
== NULL
) {
24381 SWIG_null_ref("wxListItem");
24383 if (SWIG_arg_fail(2)) SWIG_fail
;
24386 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24387 result
= (bool)(arg1
)->SetItem(*arg2
);
24389 wxPyEndAllowThreads(__tstate
);
24390 if (PyErr_Occurred()) SWIG_fail
;
24393 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24401 static PyObject
*_wrap_ListCtrl_SetStringItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24402 PyObject
*resultobj
= NULL
;
24403 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24406 wxString
*arg4
= 0 ;
24407 int arg5
= (int) -1 ;
24409 bool temp4
= false ;
24410 PyObject
* obj0
= 0 ;
24411 PyObject
* obj1
= 0 ;
24412 PyObject
* obj2
= 0 ;
24413 PyObject
* obj3
= 0 ;
24414 PyObject
* obj4
= 0 ;
24415 char *kwnames
[] = {
24416 (char *) "self",(char *) "index",(char *) "col",(char *) "label",(char *) "imageId", NULL
24419 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:ListCtrl_SetStringItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
24420 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24421 if (SWIG_arg_fail(1)) SWIG_fail
;
24423 arg2
= static_cast<long >(SWIG_As_long(obj1
));
24424 if (SWIG_arg_fail(2)) SWIG_fail
;
24427 arg3
= static_cast<int >(SWIG_As_int(obj2
));
24428 if (SWIG_arg_fail(3)) SWIG_fail
;
24431 arg4
= wxString_in_helper(obj3
);
24432 if (arg4
== NULL
) SWIG_fail
;
24437 arg5
= static_cast<int >(SWIG_As_int(obj4
));
24438 if (SWIG_arg_fail(5)) SWIG_fail
;
24442 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24443 result
= (long)(arg1
)->SetItem(arg2
,arg3
,(wxString
const &)*arg4
,arg5
);
24445 wxPyEndAllowThreads(__tstate
);
24446 if (PyErr_Occurred()) SWIG_fail
;
24449 resultobj
= SWIG_From_long(static_cast<long >(result
));
24465 static PyObject
*_wrap_ListCtrl_GetItemState(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24466 PyObject
*resultobj
= NULL
;
24467 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24471 PyObject
* obj0
= 0 ;
24472 PyObject
* obj1
= 0 ;
24473 PyObject
* obj2
= 0 ;
24474 char *kwnames
[] = {
24475 (char *) "self",(char *) "item",(char *) "stateMask", NULL
24478 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_GetItemState",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
24479 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24480 if (SWIG_arg_fail(1)) SWIG_fail
;
24482 arg2
= static_cast<long >(SWIG_As_long(obj1
));
24483 if (SWIG_arg_fail(2)) SWIG_fail
;
24486 arg3
= static_cast<long >(SWIG_As_long(obj2
));
24487 if (SWIG_arg_fail(3)) SWIG_fail
;
24490 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24491 result
= (int)((wxPyListCtrl
const *)arg1
)->GetItemState(arg2
,arg3
);
24493 wxPyEndAllowThreads(__tstate
);
24494 if (PyErr_Occurred()) SWIG_fail
;
24497 resultobj
= SWIG_From_int(static_cast<int >(result
));
24505 static PyObject
*_wrap_ListCtrl_SetItemState(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24506 PyObject
*resultobj
= NULL
;
24507 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24512 PyObject
* obj0
= 0 ;
24513 PyObject
* obj1
= 0 ;
24514 PyObject
* obj2
= 0 ;
24515 PyObject
* obj3
= 0 ;
24516 char *kwnames
[] = {
24517 (char *) "self",(char *) "item",(char *) "state",(char *) "stateMask", NULL
24520 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:ListCtrl_SetItemState",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
24521 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24522 if (SWIG_arg_fail(1)) SWIG_fail
;
24524 arg2
= static_cast<long >(SWIG_As_long(obj1
));
24525 if (SWIG_arg_fail(2)) SWIG_fail
;
24528 arg3
= static_cast<long >(SWIG_As_long(obj2
));
24529 if (SWIG_arg_fail(3)) SWIG_fail
;
24532 arg4
= static_cast<long >(SWIG_As_long(obj3
));
24533 if (SWIG_arg_fail(4)) SWIG_fail
;
24536 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24537 result
= (bool)(arg1
)->SetItemState(arg2
,arg3
,arg4
);
24539 wxPyEndAllowThreads(__tstate
);
24540 if (PyErr_Occurred()) SWIG_fail
;
24543 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24551 static PyObject
*_wrap_ListCtrl_SetItemImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24552 PyObject
*resultobj
= NULL
;
24553 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24556 int arg4
= (int) -1 ;
24558 PyObject
* obj0
= 0 ;
24559 PyObject
* obj1
= 0 ;
24560 PyObject
* obj2
= 0 ;
24561 PyObject
* obj3
= 0 ;
24562 char *kwnames
[] = {
24563 (char *) "self",(char *) "item",(char *) "image",(char *) "selImage", NULL
24566 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:ListCtrl_SetItemImage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
24567 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24568 if (SWIG_arg_fail(1)) SWIG_fail
;
24570 arg2
= static_cast<long >(SWIG_As_long(obj1
));
24571 if (SWIG_arg_fail(2)) SWIG_fail
;
24574 arg3
= static_cast<int >(SWIG_As_int(obj2
));
24575 if (SWIG_arg_fail(3)) SWIG_fail
;
24579 arg4
= static_cast<int >(SWIG_As_int(obj3
));
24580 if (SWIG_arg_fail(4)) SWIG_fail
;
24584 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24585 result
= (bool)(arg1
)->SetItemImage(arg2
,arg3
,arg4
);
24587 wxPyEndAllowThreads(__tstate
);
24588 if (PyErr_Occurred()) SWIG_fail
;
24591 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24599 static PyObject
*_wrap_ListCtrl_GetItemText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24600 PyObject
*resultobj
= NULL
;
24601 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24604 PyObject
* obj0
= 0 ;
24605 PyObject
* obj1
= 0 ;
24606 char *kwnames
[] = {
24607 (char *) "self",(char *) "item", NULL
24610 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetItemText",kwnames
,&obj0
,&obj1
)) goto fail
;
24611 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24612 if (SWIG_arg_fail(1)) SWIG_fail
;
24614 arg2
= static_cast<long >(SWIG_As_long(obj1
));
24615 if (SWIG_arg_fail(2)) SWIG_fail
;
24618 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24619 result
= ((wxPyListCtrl
const *)arg1
)->GetItemText(arg2
);
24621 wxPyEndAllowThreads(__tstate
);
24622 if (PyErr_Occurred()) SWIG_fail
;
24626 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
24628 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
24637 static PyObject
*_wrap_ListCtrl_SetItemText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24638 PyObject
*resultobj
= NULL
;
24639 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24641 wxString
*arg3
= 0 ;
24642 bool temp3
= false ;
24643 PyObject
* obj0
= 0 ;
24644 PyObject
* obj1
= 0 ;
24645 PyObject
* obj2
= 0 ;
24646 char *kwnames
[] = {
24647 (char *) "self",(char *) "item",(char *) "str", NULL
24650 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetItemText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
24651 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24652 if (SWIG_arg_fail(1)) SWIG_fail
;
24654 arg2
= static_cast<long >(SWIG_As_long(obj1
));
24655 if (SWIG_arg_fail(2)) SWIG_fail
;
24658 arg3
= wxString_in_helper(obj2
);
24659 if (arg3
== NULL
) SWIG_fail
;
24663 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24664 (arg1
)->SetItemText(arg2
,(wxString
const &)*arg3
);
24666 wxPyEndAllowThreads(__tstate
);
24667 if (PyErr_Occurred()) SWIG_fail
;
24669 Py_INCREF(Py_None
); resultobj
= Py_None
;
24684 static PyObject
*_wrap_ListCtrl_GetItemData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24685 PyObject
*resultobj
= NULL
;
24686 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24689 PyObject
* obj0
= 0 ;
24690 PyObject
* obj1
= 0 ;
24691 char *kwnames
[] = {
24692 (char *) "self",(char *) "item", NULL
24695 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetItemData",kwnames
,&obj0
,&obj1
)) goto fail
;
24696 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24697 if (SWIG_arg_fail(1)) SWIG_fail
;
24699 arg2
= static_cast<long >(SWIG_As_long(obj1
));
24700 if (SWIG_arg_fail(2)) SWIG_fail
;
24703 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24704 result
= (long)((wxPyListCtrl
const *)arg1
)->GetItemData(arg2
);
24706 wxPyEndAllowThreads(__tstate
);
24707 if (PyErr_Occurred()) SWIG_fail
;
24710 resultobj
= SWIG_From_long(static_cast<long >(result
));
24718 static PyObject
*_wrap_ListCtrl_SetItemData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24719 PyObject
*resultobj
= NULL
;
24720 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24724 PyObject
* obj0
= 0 ;
24725 PyObject
* obj1
= 0 ;
24726 PyObject
* obj2
= 0 ;
24727 char *kwnames
[] = {
24728 (char *) "self",(char *) "item",(char *) "data", NULL
24731 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetItemData",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
24732 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24733 if (SWIG_arg_fail(1)) SWIG_fail
;
24735 arg2
= static_cast<long >(SWIG_As_long(obj1
));
24736 if (SWIG_arg_fail(2)) SWIG_fail
;
24739 arg3
= static_cast<long >(SWIG_As_long(obj2
));
24740 if (SWIG_arg_fail(3)) SWIG_fail
;
24743 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24744 result
= (bool)(arg1
)->SetItemData(arg2
,arg3
);
24746 wxPyEndAllowThreads(__tstate
);
24747 if (PyErr_Occurred()) SWIG_fail
;
24750 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24758 static PyObject
*_wrap_ListCtrl_GetItemPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24759 PyObject
*resultobj
= NULL
;
24760 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24763 PyObject
* obj0
= 0 ;
24764 PyObject
* obj1
= 0 ;
24765 char *kwnames
[] = {
24766 (char *) "self",(char *) "item", NULL
24769 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetItemPosition",kwnames
,&obj0
,&obj1
)) goto fail
;
24770 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24771 if (SWIG_arg_fail(1)) SWIG_fail
;
24773 arg2
= static_cast<long >(SWIG_As_long(obj1
));
24774 if (SWIG_arg_fail(2)) SWIG_fail
;
24777 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24778 result
= wxPyListCtrl_GetItemPosition(arg1
,arg2
);
24780 wxPyEndAllowThreads(__tstate
);
24781 if (PyErr_Occurred()) SWIG_fail
;
24784 wxPoint
* resultptr
;
24785 resultptr
= new wxPoint(static_cast<wxPoint
& >(result
));
24786 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1);
24794 static PyObject
*_wrap_ListCtrl_GetItemRect(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24795 PyObject
*resultobj
= NULL
;
24796 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24798 int arg3
= (int) wxLIST_RECT_BOUNDS
;
24800 PyObject
* obj0
= 0 ;
24801 PyObject
* obj1
= 0 ;
24802 PyObject
* obj2
= 0 ;
24803 char *kwnames
[] = {
24804 (char *) "self",(char *) "item",(char *) "code", NULL
24807 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ListCtrl_GetItemRect",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
24808 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24809 if (SWIG_arg_fail(1)) SWIG_fail
;
24811 arg2
= static_cast<long >(SWIG_As_long(obj1
));
24812 if (SWIG_arg_fail(2)) SWIG_fail
;
24816 arg3
= static_cast<int >(SWIG_As_int(obj2
));
24817 if (SWIG_arg_fail(3)) SWIG_fail
;
24821 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24822 result
= wxPyListCtrl_GetItemRect(arg1
,arg2
,arg3
);
24824 wxPyEndAllowThreads(__tstate
);
24825 if (PyErr_Occurred()) SWIG_fail
;
24828 wxRect
* resultptr
;
24829 resultptr
= new wxRect(static_cast<wxRect
& >(result
));
24830 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxRect
, 1);
24838 static PyObject
*_wrap_ListCtrl_SetItemPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24839 PyObject
*resultobj
= NULL
;
24840 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24842 wxPoint
*arg3
= 0 ;
24845 PyObject
* obj0
= 0 ;
24846 PyObject
* obj1
= 0 ;
24847 PyObject
* obj2
= 0 ;
24848 char *kwnames
[] = {
24849 (char *) "self",(char *) "item",(char *) "pos", NULL
24852 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetItemPosition",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
24853 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24854 if (SWIG_arg_fail(1)) SWIG_fail
;
24856 arg2
= static_cast<long >(SWIG_As_long(obj1
));
24857 if (SWIG_arg_fail(2)) SWIG_fail
;
24861 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
24864 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24865 result
= (bool)(arg1
)->SetItemPosition(arg2
,(wxPoint
const &)*arg3
);
24867 wxPyEndAllowThreads(__tstate
);
24868 if (PyErr_Occurred()) SWIG_fail
;
24871 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24879 static PyObject
*_wrap_ListCtrl_GetItemCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24880 PyObject
*resultobj
= NULL
;
24881 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24883 PyObject
* obj0
= 0 ;
24884 char *kwnames
[] = {
24885 (char *) "self", NULL
24888 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetItemCount",kwnames
,&obj0
)) goto fail
;
24889 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24890 if (SWIG_arg_fail(1)) SWIG_fail
;
24892 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24893 result
= (int)((wxPyListCtrl
const *)arg1
)->GetItemCount();
24895 wxPyEndAllowThreads(__tstate
);
24896 if (PyErr_Occurred()) SWIG_fail
;
24899 resultobj
= SWIG_From_int(static_cast<int >(result
));
24907 static PyObject
*_wrap_ListCtrl_GetColumnCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24908 PyObject
*resultobj
= NULL
;
24909 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24911 PyObject
* obj0
= 0 ;
24912 char *kwnames
[] = {
24913 (char *) "self", NULL
24916 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetColumnCount",kwnames
,&obj0
)) goto fail
;
24917 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24918 if (SWIG_arg_fail(1)) SWIG_fail
;
24920 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24921 result
= (int)((wxPyListCtrl
const *)arg1
)->GetColumnCount();
24923 wxPyEndAllowThreads(__tstate
);
24924 if (PyErr_Occurred()) SWIG_fail
;
24927 resultobj
= SWIG_From_int(static_cast<int >(result
));
24935 static PyObject
*_wrap_ListCtrl_GetItemSpacing(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24936 PyObject
*resultobj
= NULL
;
24937 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24939 PyObject
* obj0
= 0 ;
24940 char *kwnames
[] = {
24941 (char *) "self", NULL
24944 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetItemSpacing",kwnames
,&obj0
)) goto fail
;
24945 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24946 if (SWIG_arg_fail(1)) SWIG_fail
;
24948 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24949 result
= ((wxPyListCtrl
const *)arg1
)->GetItemSpacing();
24951 wxPyEndAllowThreads(__tstate
);
24952 if (PyErr_Occurred()) SWIG_fail
;
24955 wxSize
* resultptr
;
24956 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
24957 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
24965 static PyObject
*_wrap_ListCtrl_SetItemSpacing(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
24966 PyObject
*resultobj
= NULL
;
24967 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
24969 bool arg3
= (bool) false ;
24970 PyObject
* obj0
= 0 ;
24971 PyObject
* obj1
= 0 ;
24972 PyObject
* obj2
= 0 ;
24973 char *kwnames
[] = {
24974 (char *) "self",(char *) "spacing",(char *) "isSmall", NULL
24977 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ListCtrl_SetItemSpacing",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
24978 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
24979 if (SWIG_arg_fail(1)) SWIG_fail
;
24981 arg2
= static_cast<int >(SWIG_As_int(obj1
));
24982 if (SWIG_arg_fail(2)) SWIG_fail
;
24986 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
24987 if (SWIG_arg_fail(3)) SWIG_fail
;
24991 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24992 (arg1
)->SetItemSpacing(arg2
,arg3
);
24994 wxPyEndAllowThreads(__tstate
);
24995 if (PyErr_Occurred()) SWIG_fail
;
24997 Py_INCREF(Py_None
); resultobj
= Py_None
;
25004 static PyObject
*_wrap_ListCtrl_GetSelectedItemCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25005 PyObject
*resultobj
= NULL
;
25006 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25008 PyObject
* obj0
= 0 ;
25009 char *kwnames
[] = {
25010 (char *) "self", NULL
25013 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetSelectedItemCount",kwnames
,&obj0
)) goto fail
;
25014 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25015 if (SWIG_arg_fail(1)) SWIG_fail
;
25017 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25018 result
= (int)((wxPyListCtrl
const *)arg1
)->GetSelectedItemCount();
25020 wxPyEndAllowThreads(__tstate
);
25021 if (PyErr_Occurred()) SWIG_fail
;
25024 resultobj
= SWIG_From_int(static_cast<int >(result
));
25032 static PyObject
*_wrap_ListCtrl_GetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25033 PyObject
*resultobj
= NULL
;
25034 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25036 PyObject
* obj0
= 0 ;
25037 char *kwnames
[] = {
25038 (char *) "self", NULL
25041 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetTextColour",kwnames
,&obj0
)) goto fail
;
25042 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25043 if (SWIG_arg_fail(1)) SWIG_fail
;
25045 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25046 result
= ((wxPyListCtrl
const *)arg1
)->GetTextColour();
25048 wxPyEndAllowThreads(__tstate
);
25049 if (PyErr_Occurred()) SWIG_fail
;
25052 wxColour
* resultptr
;
25053 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
25054 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
25062 static PyObject
*_wrap_ListCtrl_SetTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25063 PyObject
*resultobj
= NULL
;
25064 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25065 wxColour
*arg2
= 0 ;
25067 PyObject
* obj0
= 0 ;
25068 PyObject
* obj1
= 0 ;
25069 char *kwnames
[] = {
25070 (char *) "self",(char *) "col", NULL
25073 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_SetTextColour",kwnames
,&obj0
,&obj1
)) goto fail
;
25074 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25075 if (SWIG_arg_fail(1)) SWIG_fail
;
25078 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
25081 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25082 (arg1
)->SetTextColour((wxColour
const &)*arg2
);
25084 wxPyEndAllowThreads(__tstate
);
25085 if (PyErr_Occurred()) SWIG_fail
;
25087 Py_INCREF(Py_None
); resultobj
= Py_None
;
25094 static PyObject
*_wrap_ListCtrl_GetTopItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25095 PyObject
*resultobj
= NULL
;
25096 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25098 PyObject
* obj0
= 0 ;
25099 char *kwnames
[] = {
25100 (char *) "self", NULL
25103 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetTopItem",kwnames
,&obj0
)) goto fail
;
25104 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25105 if (SWIG_arg_fail(1)) SWIG_fail
;
25107 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25108 result
= (long)((wxPyListCtrl
const *)arg1
)->GetTopItem();
25110 wxPyEndAllowThreads(__tstate
);
25111 if (PyErr_Occurred()) SWIG_fail
;
25114 resultobj
= SWIG_From_long(static_cast<long >(result
));
25122 static PyObject
*_wrap_ListCtrl_SetSingleStyle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25123 PyObject
*resultobj
= NULL
;
25124 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25126 bool arg3
= (bool) true ;
25127 PyObject
* obj0
= 0 ;
25128 PyObject
* obj1
= 0 ;
25129 PyObject
* obj2
= 0 ;
25130 char *kwnames
[] = {
25131 (char *) "self",(char *) "style",(char *) "add", NULL
25134 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ListCtrl_SetSingleStyle",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
25135 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25136 if (SWIG_arg_fail(1)) SWIG_fail
;
25138 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25139 if (SWIG_arg_fail(2)) SWIG_fail
;
25143 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
25144 if (SWIG_arg_fail(3)) SWIG_fail
;
25148 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25149 (arg1
)->SetSingleStyle(arg2
,arg3
);
25151 wxPyEndAllowThreads(__tstate
);
25152 if (PyErr_Occurred()) SWIG_fail
;
25154 Py_INCREF(Py_None
); resultobj
= Py_None
;
25161 static PyObject
*_wrap_ListCtrl_SetWindowStyleFlag(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25162 PyObject
*resultobj
= NULL
;
25163 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25165 PyObject
* obj0
= 0 ;
25166 PyObject
* obj1
= 0 ;
25167 char *kwnames
[] = {
25168 (char *) "self",(char *) "style", NULL
25171 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_SetWindowStyleFlag",kwnames
,&obj0
,&obj1
)) goto fail
;
25172 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25173 if (SWIG_arg_fail(1)) SWIG_fail
;
25175 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25176 if (SWIG_arg_fail(2)) SWIG_fail
;
25179 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25180 (arg1
)->SetWindowStyleFlag(arg2
);
25182 wxPyEndAllowThreads(__tstate
);
25183 if (PyErr_Occurred()) SWIG_fail
;
25185 Py_INCREF(Py_None
); resultobj
= Py_None
;
25192 static PyObject
*_wrap_ListCtrl_GetNextItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25193 PyObject
*resultobj
= NULL
;
25194 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25196 int arg3
= (int) wxLIST_NEXT_ALL
;
25197 int arg4
= (int) wxLIST_STATE_DONTCARE
;
25199 PyObject
* obj0
= 0 ;
25200 PyObject
* obj1
= 0 ;
25201 PyObject
* obj2
= 0 ;
25202 PyObject
* obj3
= 0 ;
25203 char *kwnames
[] = {
25204 (char *) "self",(char *) "item",(char *) "geometry",(char *) "state", NULL
25207 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:ListCtrl_GetNextItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
25208 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25209 if (SWIG_arg_fail(1)) SWIG_fail
;
25211 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25212 if (SWIG_arg_fail(2)) SWIG_fail
;
25216 arg3
= static_cast<int >(SWIG_As_int(obj2
));
25217 if (SWIG_arg_fail(3)) SWIG_fail
;
25222 arg4
= static_cast<int >(SWIG_As_int(obj3
));
25223 if (SWIG_arg_fail(4)) SWIG_fail
;
25227 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25228 result
= (long)((wxPyListCtrl
const *)arg1
)->GetNextItem(arg2
,arg3
,arg4
);
25230 wxPyEndAllowThreads(__tstate
);
25231 if (PyErr_Occurred()) SWIG_fail
;
25234 resultobj
= SWIG_From_long(static_cast<long >(result
));
25242 static PyObject
*_wrap_ListCtrl_GetImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25243 PyObject
*resultobj
= NULL
;
25244 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25246 wxImageList
*result
;
25247 PyObject
* obj0
= 0 ;
25248 PyObject
* obj1
= 0 ;
25249 char *kwnames
[] = {
25250 (char *) "self",(char *) "which", NULL
25253 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetImageList",kwnames
,&obj0
,&obj1
)) goto fail
;
25254 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25255 if (SWIG_arg_fail(1)) SWIG_fail
;
25257 arg2
= static_cast<int >(SWIG_As_int(obj1
));
25258 if (SWIG_arg_fail(2)) SWIG_fail
;
25261 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25262 result
= (wxImageList
*)((wxPyListCtrl
const *)arg1
)->GetImageList(arg2
);
25264 wxPyEndAllowThreads(__tstate
);
25265 if (PyErr_Occurred()) SWIG_fail
;
25268 resultobj
= wxPyMake_wxObject(result
, 0);
25276 static PyObject
*_wrap_ListCtrl_SetImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25277 PyObject
*resultobj
= NULL
;
25278 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25279 wxImageList
*arg2
= (wxImageList
*) 0 ;
25281 PyObject
* obj0
= 0 ;
25282 PyObject
* obj1
= 0 ;
25283 PyObject
* obj2
= 0 ;
25284 char *kwnames
[] = {
25285 (char *) "self",(char *) "imageList",(char *) "which", NULL
25288 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetImageList",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
25289 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25290 if (SWIG_arg_fail(1)) SWIG_fail
;
25291 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| 0);
25292 if (SWIG_arg_fail(2)) SWIG_fail
;
25294 arg3
= static_cast<int >(SWIG_As_int(obj2
));
25295 if (SWIG_arg_fail(3)) SWIG_fail
;
25298 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25299 (arg1
)->SetImageList(arg2
,arg3
);
25301 wxPyEndAllowThreads(__tstate
);
25302 if (PyErr_Occurred()) SWIG_fail
;
25304 Py_INCREF(Py_None
); resultobj
= Py_None
;
25311 static PyObject
*_wrap_ListCtrl_AssignImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25312 PyObject
*resultobj
= NULL
;
25313 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25314 wxImageList
*arg2
= (wxImageList
*) 0 ;
25316 PyObject
* obj0
= 0 ;
25317 PyObject
* obj1
= 0 ;
25318 PyObject
* obj2
= 0 ;
25319 char *kwnames
[] = {
25320 (char *) "self",(char *) "imageList",(char *) "which", NULL
25323 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_AssignImageList",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
25324 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25325 if (SWIG_arg_fail(1)) SWIG_fail
;
25326 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
);
25327 if (SWIG_arg_fail(2)) SWIG_fail
;
25329 arg3
= static_cast<int >(SWIG_As_int(obj2
));
25330 if (SWIG_arg_fail(3)) SWIG_fail
;
25333 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25334 (arg1
)->AssignImageList(arg2
,arg3
);
25336 wxPyEndAllowThreads(__tstate
);
25337 if (PyErr_Occurred()) SWIG_fail
;
25339 Py_INCREF(Py_None
); resultobj
= Py_None
;
25346 static PyObject
*_wrap_ListCtrl_InReportView(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25347 PyObject
*resultobj
= NULL
;
25348 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25350 PyObject
* obj0
= 0 ;
25351 char *kwnames
[] = {
25352 (char *) "self", NULL
25355 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_InReportView",kwnames
,&obj0
)) goto fail
;
25356 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25357 if (SWIG_arg_fail(1)) SWIG_fail
;
25359 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25360 result
= (bool)((wxPyListCtrl
const *)arg1
)->InReportView();
25362 wxPyEndAllowThreads(__tstate
);
25363 if (PyErr_Occurred()) SWIG_fail
;
25366 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25374 static PyObject
*_wrap_ListCtrl_IsVirtual(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25375 PyObject
*resultobj
= NULL
;
25376 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25378 PyObject
* obj0
= 0 ;
25379 char *kwnames
[] = {
25380 (char *) "self", NULL
25383 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_IsVirtual",kwnames
,&obj0
)) goto fail
;
25384 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25385 if (SWIG_arg_fail(1)) SWIG_fail
;
25387 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25388 result
= (bool)((wxPyListCtrl
const *)arg1
)->IsVirtual();
25390 wxPyEndAllowThreads(__tstate
);
25391 if (PyErr_Occurred()) SWIG_fail
;
25394 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25402 static PyObject
*_wrap_ListCtrl_RefreshItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25403 PyObject
*resultobj
= NULL
;
25404 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25406 PyObject
* obj0
= 0 ;
25407 PyObject
* obj1
= 0 ;
25408 char *kwnames
[] = {
25409 (char *) "self",(char *) "item", NULL
25412 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_RefreshItem",kwnames
,&obj0
,&obj1
)) goto fail
;
25413 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25414 if (SWIG_arg_fail(1)) SWIG_fail
;
25416 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25417 if (SWIG_arg_fail(2)) SWIG_fail
;
25420 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25421 (arg1
)->RefreshItem(arg2
);
25423 wxPyEndAllowThreads(__tstate
);
25424 if (PyErr_Occurred()) SWIG_fail
;
25426 Py_INCREF(Py_None
); resultobj
= Py_None
;
25433 static PyObject
*_wrap_ListCtrl_RefreshItems(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25434 PyObject
*resultobj
= NULL
;
25435 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25438 PyObject
* obj0
= 0 ;
25439 PyObject
* obj1
= 0 ;
25440 PyObject
* obj2
= 0 ;
25441 char *kwnames
[] = {
25442 (char *) "self",(char *) "itemFrom",(char *) "itemTo", NULL
25445 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_RefreshItems",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
25446 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25447 if (SWIG_arg_fail(1)) SWIG_fail
;
25449 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25450 if (SWIG_arg_fail(2)) SWIG_fail
;
25453 arg3
= static_cast<long >(SWIG_As_long(obj2
));
25454 if (SWIG_arg_fail(3)) SWIG_fail
;
25457 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25458 (arg1
)->RefreshItems(arg2
,arg3
);
25460 wxPyEndAllowThreads(__tstate
);
25461 if (PyErr_Occurred()) SWIG_fail
;
25463 Py_INCREF(Py_None
); resultobj
= Py_None
;
25470 static PyObject
*_wrap_ListCtrl_Arrange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25471 PyObject
*resultobj
= NULL
;
25472 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25473 int arg2
= (int) wxLIST_ALIGN_DEFAULT
;
25475 PyObject
* obj0
= 0 ;
25476 PyObject
* obj1
= 0 ;
25477 char *kwnames
[] = {
25478 (char *) "self",(char *) "flag", NULL
25481 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:ListCtrl_Arrange",kwnames
,&obj0
,&obj1
)) goto fail
;
25482 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25483 if (SWIG_arg_fail(1)) SWIG_fail
;
25486 arg2
= static_cast<int >(SWIG_As_int(obj1
));
25487 if (SWIG_arg_fail(2)) SWIG_fail
;
25491 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25492 result
= (bool)(arg1
)->Arrange(arg2
);
25494 wxPyEndAllowThreads(__tstate
);
25495 if (PyErr_Occurred()) SWIG_fail
;
25498 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25506 static PyObject
*_wrap_ListCtrl_DeleteItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25507 PyObject
*resultobj
= NULL
;
25508 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25511 PyObject
* obj0
= 0 ;
25512 PyObject
* obj1
= 0 ;
25513 char *kwnames
[] = {
25514 (char *) "self",(char *) "item", NULL
25517 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_DeleteItem",kwnames
,&obj0
,&obj1
)) goto fail
;
25518 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25519 if (SWIG_arg_fail(1)) SWIG_fail
;
25521 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25522 if (SWIG_arg_fail(2)) SWIG_fail
;
25525 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25526 result
= (bool)(arg1
)->DeleteItem(arg2
);
25528 wxPyEndAllowThreads(__tstate
);
25529 if (PyErr_Occurred()) SWIG_fail
;
25532 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25540 static PyObject
*_wrap_ListCtrl_DeleteAllItems(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25541 PyObject
*resultobj
= NULL
;
25542 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25544 PyObject
* obj0
= 0 ;
25545 char *kwnames
[] = {
25546 (char *) "self", NULL
25549 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_DeleteAllItems",kwnames
,&obj0
)) goto fail
;
25550 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25551 if (SWIG_arg_fail(1)) SWIG_fail
;
25553 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25554 result
= (bool)(arg1
)->DeleteAllItems();
25556 wxPyEndAllowThreads(__tstate
);
25557 if (PyErr_Occurred()) SWIG_fail
;
25560 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25568 static PyObject
*_wrap_ListCtrl_DeleteColumn(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25569 PyObject
*resultobj
= NULL
;
25570 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25573 PyObject
* obj0
= 0 ;
25574 PyObject
* obj1
= 0 ;
25575 char *kwnames
[] = {
25576 (char *) "self",(char *) "col", NULL
25579 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_DeleteColumn",kwnames
,&obj0
,&obj1
)) goto fail
;
25580 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25581 if (SWIG_arg_fail(1)) SWIG_fail
;
25583 arg2
= static_cast<int >(SWIG_As_int(obj1
));
25584 if (SWIG_arg_fail(2)) SWIG_fail
;
25587 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25588 result
= (bool)(arg1
)->DeleteColumn(arg2
);
25590 wxPyEndAllowThreads(__tstate
);
25591 if (PyErr_Occurred()) SWIG_fail
;
25594 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25602 static PyObject
*_wrap_ListCtrl_DeleteAllColumns(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25603 PyObject
*resultobj
= NULL
;
25604 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25606 PyObject
* obj0
= 0 ;
25607 char *kwnames
[] = {
25608 (char *) "self", NULL
25611 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_DeleteAllColumns",kwnames
,&obj0
)) 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 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25616 result
= (bool)(arg1
)->DeleteAllColumns();
25618 wxPyEndAllowThreads(__tstate
);
25619 if (PyErr_Occurred()) SWIG_fail
;
25622 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25630 static PyObject
*_wrap_ListCtrl_ClearAll(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25631 PyObject
*resultobj
= NULL
;
25632 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25633 PyObject
* obj0
= 0 ;
25634 char *kwnames
[] = {
25635 (char *) "self", NULL
25638 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_ClearAll",kwnames
,&obj0
)) goto fail
;
25639 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25640 if (SWIG_arg_fail(1)) SWIG_fail
;
25642 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25643 (arg1
)->ClearAll();
25645 wxPyEndAllowThreads(__tstate
);
25646 if (PyErr_Occurred()) SWIG_fail
;
25648 Py_INCREF(Py_None
); resultobj
= Py_None
;
25655 static PyObject
*_wrap_ListCtrl_EditLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25656 PyObject
*resultobj
= NULL
;
25657 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25659 PyObject
* obj0
= 0 ;
25660 PyObject
* obj1
= 0 ;
25661 char *kwnames
[] = {
25662 (char *) "self",(char *) "item", NULL
25665 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_EditLabel",kwnames
,&obj0
,&obj1
)) goto fail
;
25666 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25667 if (SWIG_arg_fail(1)) SWIG_fail
;
25669 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25670 if (SWIG_arg_fail(2)) SWIG_fail
;
25673 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25674 (arg1
)->EditLabel(arg2
);
25676 wxPyEndAllowThreads(__tstate
);
25677 if (PyErr_Occurred()) SWIG_fail
;
25679 Py_INCREF(Py_None
); resultobj
= Py_None
;
25686 static PyObject
*_wrap_ListCtrl_EnsureVisible(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25687 PyObject
*resultobj
= NULL
;
25688 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25691 PyObject
* obj0
= 0 ;
25692 PyObject
* obj1
= 0 ;
25693 char *kwnames
[] = {
25694 (char *) "self",(char *) "item", NULL
25697 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_EnsureVisible",kwnames
,&obj0
,&obj1
)) goto fail
;
25698 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25699 if (SWIG_arg_fail(1)) SWIG_fail
;
25701 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25702 if (SWIG_arg_fail(2)) SWIG_fail
;
25705 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25706 result
= (bool)(arg1
)->EnsureVisible(arg2
);
25708 wxPyEndAllowThreads(__tstate
);
25709 if (PyErr_Occurred()) SWIG_fail
;
25712 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25720 static PyObject
*_wrap_ListCtrl_FindItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25721 PyObject
*resultobj
= NULL
;
25722 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25724 wxString
*arg3
= 0 ;
25725 bool arg4
= (bool) false ;
25727 bool temp3
= false ;
25728 PyObject
* obj0
= 0 ;
25729 PyObject
* obj1
= 0 ;
25730 PyObject
* obj2
= 0 ;
25731 PyObject
* obj3
= 0 ;
25732 char *kwnames
[] = {
25733 (char *) "self",(char *) "start",(char *) "str",(char *) "partial", NULL
25736 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:ListCtrl_FindItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
25737 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25738 if (SWIG_arg_fail(1)) SWIG_fail
;
25740 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25741 if (SWIG_arg_fail(2)) SWIG_fail
;
25744 arg3
= wxString_in_helper(obj2
);
25745 if (arg3
== NULL
) SWIG_fail
;
25750 arg4
= static_cast<bool >(SWIG_As_bool(obj3
));
25751 if (SWIG_arg_fail(4)) SWIG_fail
;
25755 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25756 result
= (long)(arg1
)->FindItem(arg2
,(wxString
const &)*arg3
,arg4
);
25758 wxPyEndAllowThreads(__tstate
);
25759 if (PyErr_Occurred()) SWIG_fail
;
25762 resultobj
= SWIG_From_long(static_cast<long >(result
));
25778 static PyObject
*_wrap_ListCtrl_FindItemData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25779 PyObject
*resultobj
= NULL
;
25780 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25784 PyObject
* obj0
= 0 ;
25785 PyObject
* obj1
= 0 ;
25786 PyObject
* obj2
= 0 ;
25787 char *kwnames
[] = {
25788 (char *) "self",(char *) "start",(char *) "data", NULL
25791 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_FindItemData",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
25792 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25793 if (SWIG_arg_fail(1)) SWIG_fail
;
25795 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25796 if (SWIG_arg_fail(2)) SWIG_fail
;
25799 arg3
= static_cast<long >(SWIG_As_long(obj2
));
25800 if (SWIG_arg_fail(3)) SWIG_fail
;
25803 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25804 result
= (long)(arg1
)->FindItem(arg2
,arg3
);
25806 wxPyEndAllowThreads(__tstate
);
25807 if (PyErr_Occurred()) SWIG_fail
;
25810 resultobj
= SWIG_From_long(static_cast<long >(result
));
25818 static PyObject
*_wrap_ListCtrl_FindItemAtPos(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25819 PyObject
*resultobj
= NULL
;
25820 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25822 wxPoint
*arg3
= 0 ;
25826 PyObject
* obj0
= 0 ;
25827 PyObject
* obj1
= 0 ;
25828 PyObject
* obj2
= 0 ;
25829 PyObject
* obj3
= 0 ;
25830 char *kwnames
[] = {
25831 (char *) "self",(char *) "start",(char *) "pt",(char *) "direction", NULL
25834 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:ListCtrl_FindItemAtPos",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
25835 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25836 if (SWIG_arg_fail(1)) SWIG_fail
;
25838 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25839 if (SWIG_arg_fail(2)) SWIG_fail
;
25843 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
25846 arg4
= static_cast<int >(SWIG_As_int(obj3
));
25847 if (SWIG_arg_fail(4)) SWIG_fail
;
25850 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25851 result
= (long)(arg1
)->FindItem(arg2
,(wxPoint
const &)*arg3
,arg4
);
25853 wxPyEndAllowThreads(__tstate
);
25854 if (PyErr_Occurred()) SWIG_fail
;
25857 resultobj
= SWIG_From_long(static_cast<long >(result
));
25865 static PyObject
*_wrap_ListCtrl_HitTest(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25866 PyObject
*resultobj
= NULL
;
25867 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25868 wxPoint
*arg2
= 0 ;
25874 PyObject
* obj0
= 0 ;
25875 PyObject
* obj1
= 0 ;
25876 char *kwnames
[] = {
25877 (char *) "self",(char *) "point", NULL
25880 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
25881 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_HitTest",kwnames
,&obj0
,&obj1
)) goto fail
;
25882 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25883 if (SWIG_arg_fail(1)) SWIG_fail
;
25886 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
25889 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25890 result
= (long)(arg1
)->HitTest((wxPoint
const &)*arg2
,*arg3
);
25892 wxPyEndAllowThreads(__tstate
);
25893 if (PyErr_Occurred()) SWIG_fail
;
25896 resultobj
= SWIG_From_long(static_cast<long >(result
));
25898 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
25899 SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0)));
25906 static PyObject
*_wrap_ListCtrl_InsertItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25907 PyObject
*resultobj
= NULL
;
25908 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25909 wxListItem
*arg2
= 0 ;
25911 PyObject
* obj0
= 0 ;
25912 PyObject
* obj1
= 0 ;
25913 char *kwnames
[] = {
25914 (char *) "self",(char *) "info", NULL
25917 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_InsertItem",kwnames
,&obj0
,&obj1
)) goto fail
;
25918 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25919 if (SWIG_arg_fail(1)) SWIG_fail
;
25921 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
25922 if (SWIG_arg_fail(2)) SWIG_fail
;
25923 if (arg2
== NULL
) {
25924 SWIG_null_ref("wxListItem");
25926 if (SWIG_arg_fail(2)) SWIG_fail
;
25929 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25930 result
= (long)(arg1
)->InsertItem(*arg2
);
25932 wxPyEndAllowThreads(__tstate
);
25933 if (PyErr_Occurred()) SWIG_fail
;
25936 resultobj
= SWIG_From_long(static_cast<long >(result
));
25944 static PyObject
*_wrap_ListCtrl_InsertStringItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
25945 PyObject
*resultobj
= NULL
;
25946 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
25948 wxString
*arg3
= 0 ;
25949 int arg4
= (int) -1 ;
25951 bool temp3
= false ;
25952 PyObject
* obj0
= 0 ;
25953 PyObject
* obj1
= 0 ;
25954 PyObject
* obj2
= 0 ;
25955 PyObject
* obj3
= 0 ;
25956 char *kwnames
[] = {
25957 (char *) "self",(char *) "index",(char *) "label",(char *) "imageIndex", NULL
25960 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:ListCtrl_InsertStringItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
25961 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
25962 if (SWIG_arg_fail(1)) SWIG_fail
;
25964 arg2
= static_cast<long >(SWIG_As_long(obj1
));
25965 if (SWIG_arg_fail(2)) SWIG_fail
;
25968 arg3
= wxString_in_helper(obj2
);
25969 if (arg3
== NULL
) SWIG_fail
;
25974 arg4
= static_cast<int >(SWIG_As_int(obj3
));
25975 if (SWIG_arg_fail(4)) SWIG_fail
;
25979 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25980 result
= (long)(arg1
)->InsertItem(arg2
,(wxString
const &)*arg3
,arg4
);
25982 wxPyEndAllowThreads(__tstate
);
25983 if (PyErr_Occurred()) SWIG_fail
;
25986 resultobj
= SWIG_From_long(static_cast<long >(result
));
26002 static PyObject
*_wrap_ListCtrl_InsertImageItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26003 PyObject
*resultobj
= NULL
;
26004 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26008 PyObject
* obj0
= 0 ;
26009 PyObject
* obj1
= 0 ;
26010 PyObject
* obj2
= 0 ;
26011 char *kwnames
[] = {
26012 (char *) "self",(char *) "index",(char *) "imageIndex", NULL
26015 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_InsertImageItem",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
26016 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26017 if (SWIG_arg_fail(1)) SWIG_fail
;
26019 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26020 if (SWIG_arg_fail(2)) SWIG_fail
;
26023 arg3
= static_cast<int >(SWIG_As_int(obj2
));
26024 if (SWIG_arg_fail(3)) SWIG_fail
;
26027 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26028 result
= (long)(arg1
)->InsertItem(arg2
,arg3
);
26030 wxPyEndAllowThreads(__tstate
);
26031 if (PyErr_Occurred()) SWIG_fail
;
26034 resultobj
= SWIG_From_long(static_cast<long >(result
));
26042 static PyObject
*_wrap_ListCtrl_InsertImageStringItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26043 PyObject
*resultobj
= NULL
;
26044 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26046 wxString
*arg3
= 0 ;
26049 bool temp3
= false ;
26050 PyObject
* obj0
= 0 ;
26051 PyObject
* obj1
= 0 ;
26052 PyObject
* obj2
= 0 ;
26053 PyObject
* obj3
= 0 ;
26054 char *kwnames
[] = {
26055 (char *) "self",(char *) "index",(char *) "label",(char *) "imageIndex", NULL
26058 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:ListCtrl_InsertImageStringItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
26059 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26060 if (SWIG_arg_fail(1)) SWIG_fail
;
26062 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26063 if (SWIG_arg_fail(2)) SWIG_fail
;
26066 arg3
= wxString_in_helper(obj2
);
26067 if (arg3
== NULL
) SWIG_fail
;
26071 arg4
= static_cast<int >(SWIG_As_int(obj3
));
26072 if (SWIG_arg_fail(4)) SWIG_fail
;
26075 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26076 result
= (long)(arg1
)->InsertItem(arg2
,(wxString
const &)*arg3
,arg4
);
26078 wxPyEndAllowThreads(__tstate
);
26079 if (PyErr_Occurred()) SWIG_fail
;
26082 resultobj
= SWIG_From_long(static_cast<long >(result
));
26098 static PyObject
*_wrap_ListCtrl_InsertColumnItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26099 PyObject
*resultobj
= NULL
;
26100 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26102 wxListItem
*arg3
= 0 ;
26104 PyObject
* obj0
= 0 ;
26105 PyObject
* obj1
= 0 ;
26106 PyObject
* obj2
= 0 ;
26107 char *kwnames
[] = {
26108 (char *) "self",(char *) "col",(char *) "info", NULL
26111 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_InsertColumnItem",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
26112 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26113 if (SWIG_arg_fail(1)) SWIG_fail
;
26115 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26116 if (SWIG_arg_fail(2)) SWIG_fail
;
26119 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxListItem
, SWIG_POINTER_EXCEPTION
| 0);
26120 if (SWIG_arg_fail(3)) SWIG_fail
;
26121 if (arg3
== NULL
) {
26122 SWIG_null_ref("wxListItem");
26124 if (SWIG_arg_fail(3)) SWIG_fail
;
26127 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26128 result
= (long)(arg1
)->InsertColumn(arg2
,*arg3
);
26130 wxPyEndAllowThreads(__tstate
);
26131 if (PyErr_Occurred()) SWIG_fail
;
26134 resultobj
= SWIG_From_long(static_cast<long >(result
));
26142 static PyObject
*_wrap_ListCtrl_InsertColumn(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26143 PyObject
*resultobj
= NULL
;
26144 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26146 wxString
*arg3
= 0 ;
26147 int arg4
= (int) wxLIST_FORMAT_LEFT
;
26148 int arg5
= (int) -1 ;
26150 bool temp3
= false ;
26151 PyObject
* obj0
= 0 ;
26152 PyObject
* obj1
= 0 ;
26153 PyObject
* obj2
= 0 ;
26154 PyObject
* obj3
= 0 ;
26155 PyObject
* obj4
= 0 ;
26156 char *kwnames
[] = {
26157 (char *) "self",(char *) "col",(char *) "heading",(char *) "format",(char *) "width", NULL
26160 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:ListCtrl_InsertColumn",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
26161 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26162 if (SWIG_arg_fail(1)) SWIG_fail
;
26164 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26165 if (SWIG_arg_fail(2)) SWIG_fail
;
26168 arg3
= wxString_in_helper(obj2
);
26169 if (arg3
== NULL
) SWIG_fail
;
26174 arg4
= static_cast<int >(SWIG_As_int(obj3
));
26175 if (SWIG_arg_fail(4)) SWIG_fail
;
26180 arg5
= static_cast<int >(SWIG_As_int(obj4
));
26181 if (SWIG_arg_fail(5)) SWIG_fail
;
26185 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26186 result
= (long)(arg1
)->InsertColumn(arg2
,(wxString
const &)*arg3
,arg4
,arg5
);
26188 wxPyEndAllowThreads(__tstate
);
26189 if (PyErr_Occurred()) SWIG_fail
;
26192 resultobj
= SWIG_From_long(static_cast<long >(result
));
26208 static PyObject
*_wrap_ListCtrl_SetItemCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26209 PyObject
*resultobj
= NULL
;
26210 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26212 PyObject
* obj0
= 0 ;
26213 PyObject
* obj1
= 0 ;
26214 char *kwnames
[] = {
26215 (char *) "self",(char *) "count", NULL
26218 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_SetItemCount",kwnames
,&obj0
,&obj1
)) goto fail
;
26219 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26220 if (SWIG_arg_fail(1)) SWIG_fail
;
26222 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26223 if (SWIG_arg_fail(2)) SWIG_fail
;
26226 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26227 (arg1
)->SetItemCount(arg2
);
26229 wxPyEndAllowThreads(__tstate
);
26230 if (PyErr_Occurred()) SWIG_fail
;
26232 Py_INCREF(Py_None
); resultobj
= Py_None
;
26239 static PyObject
*_wrap_ListCtrl_ScrollList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26240 PyObject
*resultobj
= NULL
;
26241 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26245 PyObject
* obj0
= 0 ;
26246 PyObject
* obj1
= 0 ;
26247 PyObject
* obj2
= 0 ;
26248 char *kwnames
[] = {
26249 (char *) "self",(char *) "dx",(char *) "dy", NULL
26252 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_ScrollList",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
26253 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26254 if (SWIG_arg_fail(1)) SWIG_fail
;
26256 arg2
= static_cast<int >(SWIG_As_int(obj1
));
26257 if (SWIG_arg_fail(2)) SWIG_fail
;
26260 arg3
= static_cast<int >(SWIG_As_int(obj2
));
26261 if (SWIG_arg_fail(3)) SWIG_fail
;
26264 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26265 result
= (bool)(arg1
)->ScrollList(arg2
,arg3
);
26267 wxPyEndAllowThreads(__tstate
);
26268 if (PyErr_Occurred()) SWIG_fail
;
26271 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26279 static PyObject
*_wrap_ListCtrl_SetItemTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26280 PyObject
*resultobj
= NULL
;
26281 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26283 wxColour
*arg3
= 0 ;
26285 PyObject
* obj0
= 0 ;
26286 PyObject
* obj1
= 0 ;
26287 PyObject
* obj2
= 0 ;
26288 char *kwnames
[] = {
26289 (char *) "self",(char *) "item",(char *) "col", NULL
26292 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetItemTextColour",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
26293 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26294 if (SWIG_arg_fail(1)) SWIG_fail
;
26296 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26297 if (SWIG_arg_fail(2)) SWIG_fail
;
26301 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
26304 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26305 (arg1
)->SetItemTextColour(arg2
,(wxColour
const &)*arg3
);
26307 wxPyEndAllowThreads(__tstate
);
26308 if (PyErr_Occurred()) SWIG_fail
;
26310 Py_INCREF(Py_None
); resultobj
= Py_None
;
26317 static PyObject
*_wrap_ListCtrl_GetItemTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26318 PyObject
*resultobj
= NULL
;
26319 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26322 PyObject
* obj0
= 0 ;
26323 PyObject
* obj1
= 0 ;
26324 char *kwnames
[] = {
26325 (char *) "self",(char *) "item", NULL
26328 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetItemTextColour",kwnames
,&obj0
,&obj1
)) goto fail
;
26329 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26330 if (SWIG_arg_fail(1)) SWIG_fail
;
26332 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26333 if (SWIG_arg_fail(2)) SWIG_fail
;
26336 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26337 result
= ((wxPyListCtrl
const *)arg1
)->GetItemTextColour(arg2
);
26339 wxPyEndAllowThreads(__tstate
);
26340 if (PyErr_Occurred()) SWIG_fail
;
26343 wxColour
* resultptr
;
26344 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
26345 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
26353 static PyObject
*_wrap_ListCtrl_SetItemBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26354 PyObject
*resultobj
= NULL
;
26355 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26357 wxColour
*arg3
= 0 ;
26359 PyObject
* obj0
= 0 ;
26360 PyObject
* obj1
= 0 ;
26361 PyObject
* obj2
= 0 ;
26362 char *kwnames
[] = {
26363 (char *) "self",(char *) "item",(char *) "col", NULL
26366 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetItemBackgroundColour",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
26367 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26368 if (SWIG_arg_fail(1)) SWIG_fail
;
26370 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26371 if (SWIG_arg_fail(2)) SWIG_fail
;
26375 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
26378 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26379 (arg1
)->SetItemBackgroundColour(arg2
,(wxColour
const &)*arg3
);
26381 wxPyEndAllowThreads(__tstate
);
26382 if (PyErr_Occurred()) SWIG_fail
;
26384 Py_INCREF(Py_None
); resultobj
= Py_None
;
26391 static PyObject
*_wrap_ListCtrl_GetItemBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26392 PyObject
*resultobj
= NULL
;
26393 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26396 PyObject
* obj0
= 0 ;
26397 PyObject
* obj1
= 0 ;
26398 char *kwnames
[] = {
26399 (char *) "self",(char *) "item", NULL
26402 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetItemBackgroundColour",kwnames
,&obj0
,&obj1
)) goto fail
;
26403 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26404 if (SWIG_arg_fail(1)) SWIG_fail
;
26406 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26407 if (SWIG_arg_fail(2)) SWIG_fail
;
26410 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26411 result
= ((wxPyListCtrl
const *)arg1
)->GetItemBackgroundColour(arg2
);
26413 wxPyEndAllowThreads(__tstate
);
26414 if (PyErr_Occurred()) SWIG_fail
;
26417 wxColour
* resultptr
;
26418 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
26419 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
26427 static PyObject
*_wrap_ListCtrl_SetItemFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26428 PyObject
*resultobj
= NULL
;
26429 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26432 PyObject
* obj0
= 0 ;
26433 PyObject
* obj1
= 0 ;
26434 PyObject
* obj2
= 0 ;
26435 char *kwnames
[] = {
26436 (char *) "self",(char *) "item",(char *) "f", NULL
26439 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListCtrl_SetItemFont",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
26440 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26441 if (SWIG_arg_fail(1)) SWIG_fail
;
26443 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26444 if (SWIG_arg_fail(2)) SWIG_fail
;
26447 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
26448 if (SWIG_arg_fail(3)) SWIG_fail
;
26449 if (arg3
== NULL
) {
26450 SWIG_null_ref("wxFont");
26452 if (SWIG_arg_fail(3)) SWIG_fail
;
26455 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26456 (arg1
)->SetItemFont(arg2
,(wxFont
const &)*arg3
);
26458 wxPyEndAllowThreads(__tstate
);
26459 if (PyErr_Occurred()) SWIG_fail
;
26461 Py_INCREF(Py_None
); resultobj
= Py_None
;
26468 static PyObject
*_wrap_ListCtrl_GetItemFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26469 PyObject
*resultobj
= NULL
;
26470 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26473 PyObject
* obj0
= 0 ;
26474 PyObject
* obj1
= 0 ;
26475 char *kwnames
[] = {
26476 (char *) "self",(char *) "item", NULL
26479 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_GetItemFont",kwnames
,&obj0
,&obj1
)) goto fail
;
26480 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26481 if (SWIG_arg_fail(1)) SWIG_fail
;
26483 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26484 if (SWIG_arg_fail(2)) SWIG_fail
;
26487 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26488 result
= ((wxPyListCtrl
const *)arg1
)->GetItemFont(arg2
);
26490 wxPyEndAllowThreads(__tstate
);
26491 if (PyErr_Occurred()) SWIG_fail
;
26494 wxFont
* resultptr
;
26495 resultptr
= new wxFont(static_cast<wxFont
& >(result
));
26496 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxFont
, 1);
26504 static PyObject
*_wrap_ListCtrl_SortItems(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26505 PyObject
*resultobj
= NULL
;
26506 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26507 PyObject
*arg2
= (PyObject
*) 0 ;
26509 PyObject
* obj0
= 0 ;
26510 PyObject
* obj1
= 0 ;
26511 char *kwnames
[] = {
26512 (char *) "self",(char *) "func", NULL
26515 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListCtrl_SortItems",kwnames
,&obj0
,&obj1
)) goto fail
;
26516 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26517 if (SWIG_arg_fail(1)) SWIG_fail
;
26520 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26521 result
= (bool)wxPyListCtrl_SortItems(arg1
,arg2
);
26523 wxPyEndAllowThreads(__tstate
);
26524 if (PyErr_Occurred()) SWIG_fail
;
26527 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26535 static PyObject
*_wrap_ListCtrl_GetMainWindow(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26536 PyObject
*resultobj
= NULL
;
26537 wxPyListCtrl
*arg1
= (wxPyListCtrl
*) 0 ;
26539 PyObject
* obj0
= 0 ;
26540 char *kwnames
[] = {
26541 (char *) "self", NULL
26544 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListCtrl_GetMainWindow",kwnames
,&obj0
)) goto fail
;
26545 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
26546 if (SWIG_arg_fail(1)) SWIG_fail
;
26548 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26549 result
= (wxWindow
*)wxPyListCtrl_GetMainWindow(arg1
);
26551 wxPyEndAllowThreads(__tstate
);
26552 if (PyErr_Occurred()) SWIG_fail
;
26555 resultobj
= wxPyMake_wxObject(result
, 0);
26563 static PyObject
*_wrap_ListCtrl_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26564 PyObject
*resultobj
= NULL
;
26565 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
26566 wxVisualAttributes result
;
26567 PyObject
* obj0
= 0 ;
26568 char *kwnames
[] = {
26569 (char *) "variant", NULL
26572 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ListCtrl_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
26575 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
26576 if (SWIG_arg_fail(1)) SWIG_fail
;
26580 if (!wxPyCheckForApp()) SWIG_fail
;
26581 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26582 result
= wxPyListCtrl::GetClassDefaultAttributes(arg1
);
26584 wxPyEndAllowThreads(__tstate
);
26585 if (PyErr_Occurred()) SWIG_fail
;
26588 wxVisualAttributes
* resultptr
;
26589 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
26590 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
26598 static PyObject
* ListCtrl_swigregister(PyObject
*, PyObject
*args
) {
26600 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
26601 SWIG_TypeClientData(SWIGTYPE_p_wxPyListCtrl
, obj
);
26603 return Py_BuildValue((char *)"");
26605 static PyObject
*_wrap_new_ListView(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26606 PyObject
*resultobj
= NULL
;
26607 wxWindow
*arg1
= (wxWindow
*) 0 ;
26608 int arg2
= (int) -1 ;
26609 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
26610 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
26611 wxSize
const &arg4_defvalue
= wxDefaultSize
;
26612 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
26613 long arg5
= (long) wxLC_REPORT
;
26614 wxValidator
const &arg6_defvalue
= wxDefaultValidator
;
26615 wxValidator
*arg6
= (wxValidator
*) &arg6_defvalue
;
26616 wxString
const &arg7_defvalue
= wxPyListCtrlNameStr
;
26617 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
26618 wxListView
*result
;
26621 bool temp7
= false ;
26622 PyObject
* obj0
= 0 ;
26623 PyObject
* obj1
= 0 ;
26624 PyObject
* obj2
= 0 ;
26625 PyObject
* obj3
= 0 ;
26626 PyObject
* obj4
= 0 ;
26627 PyObject
* obj5
= 0 ;
26628 PyObject
* obj6
= 0 ;
26629 char *kwnames
[] = {
26630 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
26633 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_ListView",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
26634 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
26635 if (SWIG_arg_fail(1)) SWIG_fail
;
26638 arg2
= static_cast<int >(SWIG_As_int(obj1
));
26639 if (SWIG_arg_fail(2)) SWIG_fail
;
26645 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
26651 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
26656 arg5
= static_cast<long >(SWIG_As_long(obj4
));
26657 if (SWIG_arg_fail(5)) SWIG_fail
;
26662 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
26663 if (SWIG_arg_fail(6)) SWIG_fail
;
26664 if (arg6
== NULL
) {
26665 SWIG_null_ref("wxValidator");
26667 if (SWIG_arg_fail(6)) SWIG_fail
;
26672 arg7
= wxString_in_helper(obj6
);
26673 if (arg7
== NULL
) SWIG_fail
;
26678 if (!wxPyCheckForApp()) SWIG_fail
;
26679 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26680 result
= (wxListView
*)new wxListView(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxValidator
const &)*arg6
,(wxString
const &)*arg7
);
26682 wxPyEndAllowThreads(__tstate
);
26683 if (PyErr_Occurred()) SWIG_fail
;
26685 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListView
, 1);
26700 static PyObject
*_wrap_new_PreListView(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26701 PyObject
*resultobj
= NULL
;
26702 wxListView
*result
;
26703 char *kwnames
[] = {
26707 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreListView",kwnames
)) goto fail
;
26709 if (!wxPyCheckForApp()) SWIG_fail
;
26710 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26711 result
= (wxListView
*)new wxListView();
26713 wxPyEndAllowThreads(__tstate
);
26714 if (PyErr_Occurred()) SWIG_fail
;
26716 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxListView
, 1);
26723 static PyObject
*_wrap_ListView_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26724 PyObject
*resultobj
= NULL
;
26725 wxListView
*arg1
= (wxListView
*) 0 ;
26726 wxWindow
*arg2
= (wxWindow
*) 0 ;
26727 int arg3
= (int) -1 ;
26728 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
26729 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
26730 wxSize
const &arg5_defvalue
= wxDefaultSize
;
26731 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
26732 long arg6
= (long) wxLC_REPORT
;
26733 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
26734 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
26735 wxString
const &arg8_defvalue
= wxPyListCtrlNameStr
;
26736 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
26740 bool temp8
= false ;
26741 PyObject
* obj0
= 0 ;
26742 PyObject
* obj1
= 0 ;
26743 PyObject
* obj2
= 0 ;
26744 PyObject
* obj3
= 0 ;
26745 PyObject
* obj4
= 0 ;
26746 PyObject
* obj5
= 0 ;
26747 PyObject
* obj6
= 0 ;
26748 PyObject
* obj7
= 0 ;
26749 char *kwnames
[] = {
26750 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
26753 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:ListView_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
26754 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
26755 if (SWIG_arg_fail(1)) SWIG_fail
;
26756 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
26757 if (SWIG_arg_fail(2)) SWIG_fail
;
26760 arg3
= static_cast<int >(SWIG_As_int(obj2
));
26761 if (SWIG_arg_fail(3)) SWIG_fail
;
26767 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
26773 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
26778 arg6
= static_cast<long >(SWIG_As_long(obj5
));
26779 if (SWIG_arg_fail(6)) SWIG_fail
;
26784 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
26785 if (SWIG_arg_fail(7)) SWIG_fail
;
26786 if (arg7
== NULL
) {
26787 SWIG_null_ref("wxValidator");
26789 if (SWIG_arg_fail(7)) SWIG_fail
;
26794 arg8
= wxString_in_helper(obj7
);
26795 if (arg8
== NULL
) SWIG_fail
;
26800 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26801 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
26803 wxPyEndAllowThreads(__tstate
);
26804 if (PyErr_Occurred()) SWIG_fail
;
26807 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26823 static PyObject
*_wrap_ListView_Select(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26824 PyObject
*resultobj
= NULL
;
26825 wxListView
*arg1
= (wxListView
*) 0 ;
26827 bool arg3
= (bool) true ;
26828 PyObject
* obj0
= 0 ;
26829 PyObject
* obj1
= 0 ;
26830 PyObject
* obj2
= 0 ;
26831 char *kwnames
[] = {
26832 (char *) "self",(char *) "n",(char *) "on", NULL
26835 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ListView_Select",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
26836 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
26837 if (SWIG_arg_fail(1)) SWIG_fail
;
26839 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26840 if (SWIG_arg_fail(2)) SWIG_fail
;
26844 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
26845 if (SWIG_arg_fail(3)) SWIG_fail
;
26849 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26850 (arg1
)->Select(arg2
,arg3
);
26852 wxPyEndAllowThreads(__tstate
);
26853 if (PyErr_Occurred()) SWIG_fail
;
26855 Py_INCREF(Py_None
); resultobj
= Py_None
;
26862 static PyObject
*_wrap_ListView_Focus(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26863 PyObject
*resultobj
= NULL
;
26864 wxListView
*arg1
= (wxListView
*) 0 ;
26866 PyObject
* obj0
= 0 ;
26867 PyObject
* obj1
= 0 ;
26868 char *kwnames
[] = {
26869 (char *) "self",(char *) "index", NULL
26872 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListView_Focus",kwnames
,&obj0
,&obj1
)) goto fail
;
26873 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
26874 if (SWIG_arg_fail(1)) SWIG_fail
;
26876 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26877 if (SWIG_arg_fail(2)) SWIG_fail
;
26880 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26881 (arg1
)->Focus(arg2
);
26883 wxPyEndAllowThreads(__tstate
);
26884 if (PyErr_Occurred()) SWIG_fail
;
26886 Py_INCREF(Py_None
); resultobj
= Py_None
;
26893 static PyObject
*_wrap_ListView_GetFocusedItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26894 PyObject
*resultobj
= NULL
;
26895 wxListView
*arg1
= (wxListView
*) 0 ;
26897 PyObject
* obj0
= 0 ;
26898 char *kwnames
[] = {
26899 (char *) "self", NULL
26902 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListView_GetFocusedItem",kwnames
,&obj0
)) goto fail
;
26903 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
26904 if (SWIG_arg_fail(1)) SWIG_fail
;
26906 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26907 result
= (long)((wxListView
const *)arg1
)->GetFocusedItem();
26909 wxPyEndAllowThreads(__tstate
);
26910 if (PyErr_Occurred()) SWIG_fail
;
26913 resultobj
= SWIG_From_long(static_cast<long >(result
));
26921 static PyObject
*_wrap_ListView_GetNextSelected(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26922 PyObject
*resultobj
= NULL
;
26923 wxListView
*arg1
= (wxListView
*) 0 ;
26926 PyObject
* obj0
= 0 ;
26927 PyObject
* obj1
= 0 ;
26928 char *kwnames
[] = {
26929 (char *) "self",(char *) "item", NULL
26932 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListView_GetNextSelected",kwnames
,&obj0
,&obj1
)) goto fail
;
26933 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
26934 if (SWIG_arg_fail(1)) SWIG_fail
;
26936 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26937 if (SWIG_arg_fail(2)) SWIG_fail
;
26940 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26941 result
= (long)((wxListView
const *)arg1
)->GetNextSelected(arg2
);
26943 wxPyEndAllowThreads(__tstate
);
26944 if (PyErr_Occurred()) SWIG_fail
;
26947 resultobj
= SWIG_From_long(static_cast<long >(result
));
26955 static PyObject
*_wrap_ListView_GetFirstSelected(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26956 PyObject
*resultobj
= NULL
;
26957 wxListView
*arg1
= (wxListView
*) 0 ;
26959 PyObject
* obj0
= 0 ;
26960 char *kwnames
[] = {
26961 (char *) "self", NULL
26964 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ListView_GetFirstSelected",kwnames
,&obj0
)) goto fail
;
26965 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
26966 if (SWIG_arg_fail(1)) SWIG_fail
;
26968 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26969 result
= (long)((wxListView
const *)arg1
)->GetFirstSelected();
26971 wxPyEndAllowThreads(__tstate
);
26972 if (PyErr_Occurred()) SWIG_fail
;
26975 resultobj
= SWIG_From_long(static_cast<long >(result
));
26983 static PyObject
*_wrap_ListView_IsSelected(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
26984 PyObject
*resultobj
= NULL
;
26985 wxListView
*arg1
= (wxListView
*) 0 ;
26988 PyObject
* obj0
= 0 ;
26989 PyObject
* obj1
= 0 ;
26990 char *kwnames
[] = {
26991 (char *) "self",(char *) "index", NULL
26994 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListView_IsSelected",kwnames
,&obj0
,&obj1
)) goto fail
;
26995 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
26996 if (SWIG_arg_fail(1)) SWIG_fail
;
26998 arg2
= static_cast<long >(SWIG_As_long(obj1
));
26999 if (SWIG_arg_fail(2)) SWIG_fail
;
27002 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27003 result
= (bool)(arg1
)->IsSelected(arg2
);
27005 wxPyEndAllowThreads(__tstate
);
27006 if (PyErr_Occurred()) SWIG_fail
;
27009 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27017 static PyObject
*_wrap_ListView_SetColumnImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27018 PyObject
*resultobj
= NULL
;
27019 wxListView
*arg1
= (wxListView
*) 0 ;
27022 PyObject
* obj0
= 0 ;
27023 PyObject
* obj1
= 0 ;
27024 PyObject
* obj2
= 0 ;
27025 char *kwnames
[] = {
27026 (char *) "self",(char *) "col",(char *) "image", NULL
27029 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ListView_SetColumnImage",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
27030 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
27031 if (SWIG_arg_fail(1)) SWIG_fail
;
27033 arg2
= static_cast<int >(SWIG_As_int(obj1
));
27034 if (SWIG_arg_fail(2)) SWIG_fail
;
27037 arg3
= static_cast<int >(SWIG_As_int(obj2
));
27038 if (SWIG_arg_fail(3)) SWIG_fail
;
27041 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27042 (arg1
)->SetColumnImage(arg2
,arg3
);
27044 wxPyEndAllowThreads(__tstate
);
27045 if (PyErr_Occurred()) SWIG_fail
;
27047 Py_INCREF(Py_None
); resultobj
= Py_None
;
27054 static PyObject
*_wrap_ListView_ClearColumnImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27055 PyObject
*resultobj
= NULL
;
27056 wxListView
*arg1
= (wxListView
*) 0 ;
27058 PyObject
* obj0
= 0 ;
27059 PyObject
* obj1
= 0 ;
27060 char *kwnames
[] = {
27061 (char *) "self",(char *) "col", NULL
27064 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ListView_ClearColumnImage",kwnames
,&obj0
,&obj1
)) goto fail
;
27065 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxListView
, SWIG_POINTER_EXCEPTION
| 0);
27066 if (SWIG_arg_fail(1)) SWIG_fail
;
27068 arg2
= static_cast<int >(SWIG_As_int(obj1
));
27069 if (SWIG_arg_fail(2)) SWIG_fail
;
27072 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27073 (arg1
)->ClearColumnImage(arg2
);
27075 wxPyEndAllowThreads(__tstate
);
27076 if (PyErr_Occurred()) SWIG_fail
;
27078 Py_INCREF(Py_None
); resultobj
= Py_None
;
27085 static PyObject
* ListView_swigregister(PyObject
*, PyObject
*args
) {
27087 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
27088 SWIG_TypeClientData(SWIGTYPE_p_wxListView
, obj
);
27090 return Py_BuildValue((char *)"");
27092 static int _wrap_TreeCtrlNameStr_set(PyObject
*) {
27093 PyErr_SetString(PyExc_TypeError
,"Variable TreeCtrlNameStr is read-only.");
27098 static PyObject
*_wrap_TreeCtrlNameStr_get(void) {
27099 PyObject
*pyobj
= NULL
;
27103 pyobj
= PyUnicode_FromWideChar((&wxPyTreeCtrlNameStr
)->c_str(), (&wxPyTreeCtrlNameStr
)->Len());
27105 pyobj
= PyString_FromStringAndSize((&wxPyTreeCtrlNameStr
)->c_str(), (&wxPyTreeCtrlNameStr
)->Len());
27112 static PyObject
*_wrap_new_TreeItemId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27113 PyObject
*resultobj
= NULL
;
27114 wxTreeItemId
*result
;
27115 char *kwnames
[] = {
27119 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_TreeItemId",kwnames
)) goto fail
;
27121 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27122 result
= (wxTreeItemId
*)new wxTreeItemId();
27124 wxPyEndAllowThreads(__tstate
);
27125 if (PyErr_Occurred()) SWIG_fail
;
27127 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTreeItemId
, 1);
27134 static PyObject
*_wrap_delete_TreeItemId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27135 PyObject
*resultobj
= NULL
;
27136 wxTreeItemId
*arg1
= (wxTreeItemId
*) 0 ;
27137 PyObject
* obj0
= 0 ;
27138 char *kwnames
[] = {
27139 (char *) "self", NULL
27142 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_TreeItemId",kwnames
,&obj0
)) goto fail
;
27143 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
27144 if (SWIG_arg_fail(1)) SWIG_fail
;
27146 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27149 wxPyEndAllowThreads(__tstate
);
27150 if (PyErr_Occurred()) SWIG_fail
;
27152 Py_INCREF(Py_None
); resultobj
= Py_None
;
27159 static PyObject
*_wrap_TreeItemId_IsOk(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27160 PyObject
*resultobj
= NULL
;
27161 wxTreeItemId
*arg1
= (wxTreeItemId
*) 0 ;
27163 PyObject
* obj0
= 0 ;
27164 char *kwnames
[] = {
27165 (char *) "self", NULL
27168 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeItemId_IsOk",kwnames
,&obj0
)) goto fail
;
27169 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
27170 if (SWIG_arg_fail(1)) SWIG_fail
;
27172 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27173 result
= (bool)((wxTreeItemId
const *)arg1
)->IsOk();
27175 wxPyEndAllowThreads(__tstate
);
27176 if (PyErr_Occurred()) SWIG_fail
;
27179 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27187 static PyObject
*_wrap_TreeItemId___eq__(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27188 PyObject
*resultobj
= NULL
;
27189 wxTreeItemId
*arg1
= (wxTreeItemId
*) 0 ;
27190 wxTreeItemId
*arg2
= (wxTreeItemId
*) 0 ;
27192 PyObject
* obj0
= 0 ;
27193 PyObject
* obj1
= 0 ;
27194 char *kwnames
[] = {
27195 (char *) "self",(char *) "other", NULL
27198 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeItemId___eq__",kwnames
,&obj0
,&obj1
)) goto fail
;
27199 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
27200 if (SWIG_arg_fail(1)) SWIG_fail
;
27201 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
27202 if (SWIG_arg_fail(2)) SWIG_fail
;
27204 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27205 result
= (bool)wxTreeItemId___eq__(arg1
,(wxTreeItemId
const *)arg2
);
27207 wxPyEndAllowThreads(__tstate
);
27208 if (PyErr_Occurred()) SWIG_fail
;
27211 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27219 static PyObject
*_wrap_TreeItemId___ne__(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27220 PyObject
*resultobj
= NULL
;
27221 wxTreeItemId
*arg1
= (wxTreeItemId
*) 0 ;
27222 wxTreeItemId
*arg2
= (wxTreeItemId
*) 0 ;
27224 PyObject
* obj0
= 0 ;
27225 PyObject
* obj1
= 0 ;
27226 char *kwnames
[] = {
27227 (char *) "self",(char *) "other", NULL
27230 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeItemId___ne__",kwnames
,&obj0
,&obj1
)) goto fail
;
27231 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
27232 if (SWIG_arg_fail(1)) SWIG_fail
;
27233 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
27234 if (SWIG_arg_fail(2)) SWIG_fail
;
27236 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27237 result
= (bool)wxTreeItemId___ne__(arg1
,(wxTreeItemId
const *)arg2
);
27239 wxPyEndAllowThreads(__tstate
);
27240 if (PyErr_Occurred()) SWIG_fail
;
27243 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27251 static PyObject
*_wrap_TreeItemId_m_pItem_set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27252 PyObject
*resultobj
= NULL
;
27253 wxTreeItemId
*arg1
= (wxTreeItemId
*) 0 ;
27254 void *arg2
= (void *) 0 ;
27255 PyObject
* obj0
= 0 ;
27256 PyObject
* obj1
= 0 ;
27257 char *kwnames
[] = {
27258 (char *) "self",(char *) "m_pItem", NULL
27261 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeItemId_m_pItem_set",kwnames
,&obj0
,&obj1
)) goto fail
;
27262 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
27263 if (SWIG_arg_fail(1)) SWIG_fail
;
27265 if ((SWIG_ConvertPtr(obj1
,reinterpret_cast<void ** >(&arg2
),0,SWIG_POINTER_EXCEPTION
|SWIG_POINTER_DISOWN
))== -1) {
27266 SWIG_arg_fail(2);SWIG_fail
;
27269 if (arg1
) (arg1
)->m_pItem
= arg2
;
27271 Py_INCREF(Py_None
); resultobj
= Py_None
;
27278 static PyObject
*_wrap_TreeItemId_m_pItem_get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27279 PyObject
*resultobj
= NULL
;
27280 wxTreeItemId
*arg1
= (wxTreeItemId
*) 0 ;
27282 PyObject
* obj0
= 0 ;
27283 char *kwnames
[] = {
27284 (char *) "self", NULL
27287 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeItemId_m_pItem_get",kwnames
,&obj0
)) goto fail
;
27288 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
27289 if (SWIG_arg_fail(1)) SWIG_fail
;
27290 result
= (void *) ((arg1
)->m_pItem
);
27292 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_void
, 0);
27299 static PyObject
* TreeItemId_swigregister(PyObject
*, PyObject
*args
) {
27301 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
27302 SWIG_TypeClientData(SWIGTYPE_p_wxTreeItemId
, obj
);
27304 return Py_BuildValue((char *)"");
27306 static PyObject
*_wrap_new_TreeItemData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27307 PyObject
*resultobj
= NULL
;
27308 PyObject
*arg1
= (PyObject
*) NULL
;
27309 wxPyTreeItemData
*result
;
27310 PyObject
* obj0
= 0 ;
27311 char *kwnames
[] = {
27312 (char *) "obj", NULL
27315 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_TreeItemData",kwnames
,&obj0
)) goto fail
;
27320 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27321 result
= (wxPyTreeItemData
*)new wxPyTreeItemData(arg1
);
27323 wxPyEndAllowThreads(__tstate
);
27324 if (PyErr_Occurred()) SWIG_fail
;
27326 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyTreeItemData
, 1);
27333 static PyObject
*_wrap_TreeItemData_GetData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27334 PyObject
*resultobj
= NULL
;
27335 wxPyTreeItemData
*arg1
= (wxPyTreeItemData
*) 0 ;
27337 PyObject
* obj0
= 0 ;
27338 char *kwnames
[] = {
27339 (char *) "self", NULL
27342 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeItemData_GetData",kwnames
,&obj0
)) goto fail
;
27343 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
27344 if (SWIG_arg_fail(1)) SWIG_fail
;
27346 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27347 result
= (PyObject
*)(arg1
)->GetData();
27349 wxPyEndAllowThreads(__tstate
);
27350 if (PyErr_Occurred()) SWIG_fail
;
27352 resultobj
= result
;
27359 static PyObject
*_wrap_TreeItemData_SetData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27360 PyObject
*resultobj
= NULL
;
27361 wxPyTreeItemData
*arg1
= (wxPyTreeItemData
*) 0 ;
27362 PyObject
*arg2
= (PyObject
*) 0 ;
27363 PyObject
* obj0
= 0 ;
27364 PyObject
* obj1
= 0 ;
27365 char *kwnames
[] = {
27366 (char *) "self",(char *) "obj", NULL
27369 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeItemData_SetData",kwnames
,&obj0
,&obj1
)) goto fail
;
27370 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
27371 if (SWIG_arg_fail(1)) SWIG_fail
;
27374 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27375 (arg1
)->SetData(arg2
);
27377 wxPyEndAllowThreads(__tstate
);
27378 if (PyErr_Occurred()) SWIG_fail
;
27380 Py_INCREF(Py_None
); resultobj
= Py_None
;
27387 static PyObject
*_wrap_TreeItemData_GetId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27388 PyObject
*resultobj
= NULL
;
27389 wxPyTreeItemData
*arg1
= (wxPyTreeItemData
*) 0 ;
27390 wxTreeItemId
*result
;
27391 PyObject
* obj0
= 0 ;
27392 char *kwnames
[] = {
27393 (char *) "self", NULL
27396 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeItemData_GetId",kwnames
,&obj0
)) goto fail
;
27397 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
27398 if (SWIG_arg_fail(1)) SWIG_fail
;
27400 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27402 wxTreeItemId
const &_result_ref
= (arg1
)->GetId();
27403 result
= (wxTreeItemId
*) &_result_ref
;
27406 wxPyEndAllowThreads(__tstate
);
27407 if (PyErr_Occurred()) SWIG_fail
;
27409 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTreeItemId
, 0);
27416 static PyObject
*_wrap_TreeItemData_SetId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27417 PyObject
*resultobj
= NULL
;
27418 wxPyTreeItemData
*arg1
= (wxPyTreeItemData
*) 0 ;
27419 wxTreeItemId
*arg2
= 0 ;
27420 PyObject
* obj0
= 0 ;
27421 PyObject
* obj1
= 0 ;
27422 char *kwnames
[] = {
27423 (char *) "self",(char *) "id", NULL
27426 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeItemData_SetId",kwnames
,&obj0
,&obj1
)) goto fail
;
27427 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
27428 if (SWIG_arg_fail(1)) SWIG_fail
;
27430 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
27431 if (SWIG_arg_fail(2)) SWIG_fail
;
27432 if (arg2
== NULL
) {
27433 SWIG_null_ref("wxTreeItemId");
27435 if (SWIG_arg_fail(2)) SWIG_fail
;
27438 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27439 (arg1
)->SetId((wxTreeItemId
const &)*arg2
);
27441 wxPyEndAllowThreads(__tstate
);
27442 if (PyErr_Occurred()) SWIG_fail
;
27444 Py_INCREF(Py_None
); resultobj
= Py_None
;
27451 static PyObject
*_wrap_TreeItemData_Destroy(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27452 PyObject
*resultobj
= NULL
;
27453 wxPyTreeItemData
*arg1
= (wxPyTreeItemData
*) 0 ;
27454 PyObject
* obj0
= 0 ;
27455 char *kwnames
[] = {
27456 (char *) "self", NULL
27459 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeItemData_Destroy",kwnames
,&obj0
)) goto fail
;
27460 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
27461 if (SWIG_arg_fail(1)) SWIG_fail
;
27463 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27464 wxPyTreeItemData_Destroy(arg1
);
27466 wxPyEndAllowThreads(__tstate
);
27467 if (PyErr_Occurred()) SWIG_fail
;
27469 Py_INCREF(Py_None
); resultobj
= Py_None
;
27476 static PyObject
* TreeItemData_swigregister(PyObject
*, PyObject
*args
) {
27478 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
27479 SWIG_TypeClientData(SWIGTYPE_p_wxPyTreeItemData
, obj
);
27481 return Py_BuildValue((char *)"");
27483 static PyObject
*_wrap_new_TreeEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27484 PyObject
*resultobj
= NULL
;
27485 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
27486 int arg2
= (int) 0 ;
27487 wxTreeEvent
*result
;
27488 PyObject
* obj0
= 0 ;
27489 PyObject
* obj1
= 0 ;
27490 char *kwnames
[] = {
27491 (char *) "commandType",(char *) "id", NULL
27494 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_TreeEvent",kwnames
,&obj0
,&obj1
)) goto fail
;
27497 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
27498 if (SWIG_arg_fail(1)) SWIG_fail
;
27503 arg2
= static_cast<int >(SWIG_As_int(obj1
));
27504 if (SWIG_arg_fail(2)) SWIG_fail
;
27508 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27509 result
= (wxTreeEvent
*)new wxTreeEvent(arg1
,arg2
);
27511 wxPyEndAllowThreads(__tstate
);
27512 if (PyErr_Occurred()) SWIG_fail
;
27514 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTreeEvent
, 1);
27521 static PyObject
*_wrap_TreeEvent_GetItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27522 PyObject
*resultobj
= NULL
;
27523 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
27524 wxTreeItemId result
;
27525 PyObject
* obj0
= 0 ;
27526 char *kwnames
[] = {
27527 (char *) "self", NULL
27530 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_GetItem",kwnames
,&obj0
)) goto fail
;
27531 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
27532 if (SWIG_arg_fail(1)) SWIG_fail
;
27534 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27535 result
= ((wxTreeEvent
const *)arg1
)->GetItem();
27537 wxPyEndAllowThreads(__tstate
);
27538 if (PyErr_Occurred()) SWIG_fail
;
27541 wxTreeItemId
* resultptr
;
27542 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
27543 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
27551 static PyObject
*_wrap_TreeEvent_SetItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27552 PyObject
*resultobj
= NULL
;
27553 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
27554 wxTreeItemId
*arg2
= 0 ;
27555 PyObject
* obj0
= 0 ;
27556 PyObject
* obj1
= 0 ;
27557 char *kwnames
[] = {
27558 (char *) "self",(char *) "item", NULL
27561 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeEvent_SetItem",kwnames
,&obj0
,&obj1
)) goto fail
;
27562 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
27563 if (SWIG_arg_fail(1)) SWIG_fail
;
27565 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
27566 if (SWIG_arg_fail(2)) SWIG_fail
;
27567 if (arg2
== NULL
) {
27568 SWIG_null_ref("wxTreeItemId");
27570 if (SWIG_arg_fail(2)) SWIG_fail
;
27573 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27574 (arg1
)->SetItem((wxTreeItemId
const &)*arg2
);
27576 wxPyEndAllowThreads(__tstate
);
27577 if (PyErr_Occurred()) SWIG_fail
;
27579 Py_INCREF(Py_None
); resultobj
= Py_None
;
27586 static PyObject
*_wrap_TreeEvent_GetOldItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27587 PyObject
*resultobj
= NULL
;
27588 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
27589 wxTreeItemId result
;
27590 PyObject
* obj0
= 0 ;
27591 char *kwnames
[] = {
27592 (char *) "self", NULL
27595 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_GetOldItem",kwnames
,&obj0
)) goto fail
;
27596 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
27597 if (SWIG_arg_fail(1)) SWIG_fail
;
27599 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27600 result
= ((wxTreeEvent
const *)arg1
)->GetOldItem();
27602 wxPyEndAllowThreads(__tstate
);
27603 if (PyErr_Occurred()) SWIG_fail
;
27606 wxTreeItemId
* resultptr
;
27607 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
27608 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
27616 static PyObject
*_wrap_TreeEvent_SetOldItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27617 PyObject
*resultobj
= NULL
;
27618 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
27619 wxTreeItemId
*arg2
= 0 ;
27620 PyObject
* obj0
= 0 ;
27621 PyObject
* obj1
= 0 ;
27622 char *kwnames
[] = {
27623 (char *) "self",(char *) "item", NULL
27626 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeEvent_SetOldItem",kwnames
,&obj0
,&obj1
)) goto fail
;
27627 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
27628 if (SWIG_arg_fail(1)) SWIG_fail
;
27630 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
27631 if (SWIG_arg_fail(2)) SWIG_fail
;
27632 if (arg2
== NULL
) {
27633 SWIG_null_ref("wxTreeItemId");
27635 if (SWIG_arg_fail(2)) SWIG_fail
;
27638 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27639 (arg1
)->SetOldItem((wxTreeItemId
const &)*arg2
);
27641 wxPyEndAllowThreads(__tstate
);
27642 if (PyErr_Occurred()) SWIG_fail
;
27644 Py_INCREF(Py_None
); resultobj
= Py_None
;
27651 static PyObject
*_wrap_TreeEvent_GetPoint(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27652 PyObject
*resultobj
= NULL
;
27653 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
27655 PyObject
* obj0
= 0 ;
27656 char *kwnames
[] = {
27657 (char *) "self", NULL
27660 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_GetPoint",kwnames
,&obj0
)) goto fail
;
27661 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
27662 if (SWIG_arg_fail(1)) SWIG_fail
;
27664 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27665 result
= ((wxTreeEvent
const *)arg1
)->GetPoint();
27667 wxPyEndAllowThreads(__tstate
);
27668 if (PyErr_Occurred()) SWIG_fail
;
27671 wxPoint
* resultptr
;
27672 resultptr
= new wxPoint(static_cast<wxPoint
& >(result
));
27673 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1);
27681 static PyObject
*_wrap_TreeEvent_SetPoint(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27682 PyObject
*resultobj
= NULL
;
27683 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
27684 wxPoint
*arg2
= 0 ;
27686 PyObject
* obj0
= 0 ;
27687 PyObject
* obj1
= 0 ;
27688 char *kwnames
[] = {
27689 (char *) "self",(char *) "pt", NULL
27692 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeEvent_SetPoint",kwnames
,&obj0
,&obj1
)) goto fail
;
27693 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
27694 if (SWIG_arg_fail(1)) SWIG_fail
;
27697 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
27700 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27701 (arg1
)->SetPoint((wxPoint
const &)*arg2
);
27703 wxPyEndAllowThreads(__tstate
);
27704 if (PyErr_Occurred()) SWIG_fail
;
27706 Py_INCREF(Py_None
); resultobj
= Py_None
;
27713 static PyObject
*_wrap_TreeEvent_GetKeyEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27714 PyObject
*resultobj
= NULL
;
27715 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
27716 wxKeyEvent
*result
;
27717 PyObject
* obj0
= 0 ;
27718 char *kwnames
[] = {
27719 (char *) "self", NULL
27722 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_GetKeyEvent",kwnames
,&obj0
)) goto fail
;
27723 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
27724 if (SWIG_arg_fail(1)) SWIG_fail
;
27726 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27728 wxKeyEvent
const &_result_ref
= ((wxTreeEvent
const *)arg1
)->GetKeyEvent();
27729 result
= (wxKeyEvent
*) &_result_ref
;
27732 wxPyEndAllowThreads(__tstate
);
27733 if (PyErr_Occurred()) SWIG_fail
;
27735 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxKeyEvent
, 0);
27742 static PyObject
*_wrap_TreeEvent_GetKeyCode(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27743 PyObject
*resultobj
= NULL
;
27744 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
27746 PyObject
* obj0
= 0 ;
27747 char *kwnames
[] = {
27748 (char *) "self", NULL
27751 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_GetKeyCode",kwnames
,&obj0
)) goto fail
;
27752 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
27753 if (SWIG_arg_fail(1)) SWIG_fail
;
27755 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27756 result
= (int)((wxTreeEvent
const *)arg1
)->GetKeyCode();
27758 wxPyEndAllowThreads(__tstate
);
27759 if (PyErr_Occurred()) SWIG_fail
;
27762 resultobj
= SWIG_From_int(static_cast<int >(result
));
27770 static PyObject
*_wrap_TreeEvent_SetKeyEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27771 PyObject
*resultobj
= NULL
;
27772 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
27773 wxKeyEvent
*arg2
= 0 ;
27774 PyObject
* obj0
= 0 ;
27775 PyObject
* obj1
= 0 ;
27776 char *kwnames
[] = {
27777 (char *) "self",(char *) "evt", NULL
27780 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeEvent_SetKeyEvent",kwnames
,&obj0
,&obj1
)) goto fail
;
27781 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
27782 if (SWIG_arg_fail(1)) SWIG_fail
;
27784 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxKeyEvent
, SWIG_POINTER_EXCEPTION
| 0);
27785 if (SWIG_arg_fail(2)) SWIG_fail
;
27786 if (arg2
== NULL
) {
27787 SWIG_null_ref("wxKeyEvent");
27789 if (SWIG_arg_fail(2)) SWIG_fail
;
27792 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27793 (arg1
)->SetKeyEvent((wxKeyEvent
const &)*arg2
);
27795 wxPyEndAllowThreads(__tstate
);
27796 if (PyErr_Occurred()) SWIG_fail
;
27798 Py_INCREF(Py_None
); resultobj
= Py_None
;
27805 static PyObject
*_wrap_TreeEvent_GetLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27806 PyObject
*resultobj
= NULL
;
27807 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
27809 PyObject
* obj0
= 0 ;
27810 char *kwnames
[] = {
27811 (char *) "self", NULL
27814 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_GetLabel",kwnames
,&obj0
)) goto fail
;
27815 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
27816 if (SWIG_arg_fail(1)) SWIG_fail
;
27818 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27820 wxString
const &_result_ref
= ((wxTreeEvent
const *)arg1
)->GetLabel();
27821 result
= (wxString
*) &_result_ref
;
27824 wxPyEndAllowThreads(__tstate
);
27825 if (PyErr_Occurred()) SWIG_fail
;
27829 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
27831 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
27840 static PyObject
*_wrap_TreeEvent_SetLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27841 PyObject
*resultobj
= NULL
;
27842 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
27843 wxString
*arg2
= 0 ;
27844 bool temp2
= false ;
27845 PyObject
* obj0
= 0 ;
27846 PyObject
* obj1
= 0 ;
27847 char *kwnames
[] = {
27848 (char *) "self",(char *) "label", NULL
27851 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeEvent_SetLabel",kwnames
,&obj0
,&obj1
)) goto fail
;
27852 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
27853 if (SWIG_arg_fail(1)) SWIG_fail
;
27855 arg2
= wxString_in_helper(obj1
);
27856 if (arg2
== NULL
) SWIG_fail
;
27860 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27861 (arg1
)->SetLabel((wxString
const &)*arg2
);
27863 wxPyEndAllowThreads(__tstate
);
27864 if (PyErr_Occurred()) SWIG_fail
;
27866 Py_INCREF(Py_None
); resultobj
= Py_None
;
27881 static PyObject
*_wrap_TreeEvent_IsEditCancelled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27882 PyObject
*resultobj
= NULL
;
27883 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
27885 PyObject
* obj0
= 0 ;
27886 char *kwnames
[] = {
27887 (char *) "self", NULL
27890 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_IsEditCancelled",kwnames
,&obj0
)) goto fail
;
27891 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
27892 if (SWIG_arg_fail(1)) SWIG_fail
;
27894 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27895 result
= (bool)((wxTreeEvent
const *)arg1
)->IsEditCancelled();
27897 wxPyEndAllowThreads(__tstate
);
27898 if (PyErr_Occurred()) SWIG_fail
;
27901 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27909 static PyObject
*_wrap_TreeEvent_SetEditCanceled(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27910 PyObject
*resultobj
= NULL
;
27911 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
27913 PyObject
* obj0
= 0 ;
27914 PyObject
* obj1
= 0 ;
27915 char *kwnames
[] = {
27916 (char *) "self",(char *) "editCancelled", NULL
27919 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeEvent_SetEditCanceled",kwnames
,&obj0
,&obj1
)) goto fail
;
27920 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
27921 if (SWIG_arg_fail(1)) SWIG_fail
;
27923 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
27924 if (SWIG_arg_fail(2)) SWIG_fail
;
27927 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27928 (arg1
)->SetEditCanceled(arg2
);
27930 wxPyEndAllowThreads(__tstate
);
27931 if (PyErr_Occurred()) SWIG_fail
;
27933 Py_INCREF(Py_None
); resultobj
= Py_None
;
27940 static PyObject
*_wrap_TreeEvent_SetToolTip(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27941 PyObject
*resultobj
= NULL
;
27942 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
27943 wxString
*arg2
= 0 ;
27944 bool temp2
= false ;
27945 PyObject
* obj0
= 0 ;
27946 PyObject
* obj1
= 0 ;
27947 char *kwnames
[] = {
27948 (char *) "self",(char *) "toolTip", NULL
27951 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeEvent_SetToolTip",kwnames
,&obj0
,&obj1
)) goto fail
;
27952 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
27953 if (SWIG_arg_fail(1)) SWIG_fail
;
27955 arg2
= wxString_in_helper(obj1
);
27956 if (arg2
== NULL
) SWIG_fail
;
27960 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27961 (arg1
)->SetToolTip((wxString
const &)*arg2
);
27963 wxPyEndAllowThreads(__tstate
);
27964 if (PyErr_Occurred()) SWIG_fail
;
27966 Py_INCREF(Py_None
); resultobj
= Py_None
;
27981 static PyObject
*_wrap_TreeEvent_GetToolTip(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
27982 PyObject
*resultobj
= NULL
;
27983 wxTreeEvent
*arg1
= (wxTreeEvent
*) 0 ;
27985 PyObject
* obj0
= 0 ;
27986 char *kwnames
[] = {
27987 (char *) "self", NULL
27990 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeEvent_GetToolTip",kwnames
,&obj0
)) goto fail
;
27991 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTreeEvent
, SWIG_POINTER_EXCEPTION
| 0);
27992 if (SWIG_arg_fail(1)) SWIG_fail
;
27994 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27995 result
= (arg1
)->GetToolTip();
27997 wxPyEndAllowThreads(__tstate
);
27998 if (PyErr_Occurred()) SWIG_fail
;
28002 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
28004 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
28013 static PyObject
* TreeEvent_swigregister(PyObject
*, PyObject
*args
) {
28015 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
28016 SWIG_TypeClientData(SWIGTYPE_p_wxTreeEvent
, obj
);
28018 return Py_BuildValue((char *)"");
28020 static PyObject
*_wrap_new_TreeCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28021 PyObject
*resultobj
= NULL
;
28022 wxWindow
*arg1
= (wxWindow
*) 0 ;
28023 int arg2
= (int) -1 ;
28024 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
28025 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
28026 wxSize
const &arg4_defvalue
= wxDefaultSize
;
28027 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
28028 long arg5
= (long) wxTR_DEFAULT_STYLE
;
28029 wxValidator
const &arg6_defvalue
= wxDefaultValidator
;
28030 wxValidator
*arg6
= (wxValidator
*) &arg6_defvalue
;
28031 wxString
const &arg7_defvalue
= wxPyTreeCtrlNameStr
;
28032 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
28033 wxPyTreeCtrl
*result
;
28036 bool temp7
= false ;
28037 PyObject
* obj0
= 0 ;
28038 PyObject
* obj1
= 0 ;
28039 PyObject
* obj2
= 0 ;
28040 PyObject
* obj3
= 0 ;
28041 PyObject
* obj4
= 0 ;
28042 PyObject
* obj5
= 0 ;
28043 PyObject
* obj6
= 0 ;
28044 char *kwnames
[] = {
28045 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
28048 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_TreeCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
28049 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
28050 if (SWIG_arg_fail(1)) SWIG_fail
;
28053 arg2
= static_cast<int >(SWIG_As_int(obj1
));
28054 if (SWIG_arg_fail(2)) SWIG_fail
;
28060 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
28066 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
28071 arg5
= static_cast<long >(SWIG_As_long(obj4
));
28072 if (SWIG_arg_fail(5)) SWIG_fail
;
28077 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
28078 if (SWIG_arg_fail(6)) SWIG_fail
;
28079 if (arg6
== NULL
) {
28080 SWIG_null_ref("wxValidator");
28082 if (SWIG_arg_fail(6)) SWIG_fail
;
28087 arg7
= wxString_in_helper(obj6
);
28088 if (arg7
== NULL
) SWIG_fail
;
28093 if (!wxPyCheckForApp()) SWIG_fail
;
28094 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28095 result
= (wxPyTreeCtrl
*)new wxPyTreeCtrl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxValidator
const &)*arg6
,(wxString
const &)*arg7
);
28097 wxPyEndAllowThreads(__tstate
);
28098 if (PyErr_Occurred()) SWIG_fail
;
28100 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyTreeCtrl
, 1);
28115 static PyObject
*_wrap_new_PreTreeCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28116 PyObject
*resultobj
= NULL
;
28117 wxPyTreeCtrl
*result
;
28118 char *kwnames
[] = {
28122 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreTreeCtrl",kwnames
)) goto fail
;
28124 if (!wxPyCheckForApp()) SWIG_fail
;
28125 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28126 result
= (wxPyTreeCtrl
*)new wxPyTreeCtrl();
28128 wxPyEndAllowThreads(__tstate
);
28129 if (PyErr_Occurred()) SWIG_fail
;
28131 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyTreeCtrl
, 1);
28138 static PyObject
*_wrap_TreeCtrl_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28139 PyObject
*resultobj
= NULL
;
28140 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28141 wxWindow
*arg2
= (wxWindow
*) 0 ;
28142 int arg3
= (int) -1 ;
28143 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
28144 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
28145 wxSize
const &arg5_defvalue
= wxDefaultSize
;
28146 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
28147 long arg6
= (long) wxTR_DEFAULT_STYLE
;
28148 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
28149 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
28150 wxString
const &arg8_defvalue
= wxPyTreeCtrlNameStr
;
28151 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
28155 bool temp8
= false ;
28156 PyObject
* obj0
= 0 ;
28157 PyObject
* obj1
= 0 ;
28158 PyObject
* obj2
= 0 ;
28159 PyObject
* obj3
= 0 ;
28160 PyObject
* obj4
= 0 ;
28161 PyObject
* obj5
= 0 ;
28162 PyObject
* obj6
= 0 ;
28163 PyObject
* obj7
= 0 ;
28164 char *kwnames
[] = {
28165 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
28168 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:TreeCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
28169 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28170 if (SWIG_arg_fail(1)) SWIG_fail
;
28171 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
28172 if (SWIG_arg_fail(2)) SWIG_fail
;
28175 arg3
= static_cast<int >(SWIG_As_int(obj2
));
28176 if (SWIG_arg_fail(3)) SWIG_fail
;
28182 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
28188 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
28193 arg6
= static_cast<long >(SWIG_As_long(obj5
));
28194 if (SWIG_arg_fail(6)) SWIG_fail
;
28199 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
28200 if (SWIG_arg_fail(7)) SWIG_fail
;
28201 if (arg7
== NULL
) {
28202 SWIG_null_ref("wxValidator");
28204 if (SWIG_arg_fail(7)) SWIG_fail
;
28209 arg8
= wxString_in_helper(obj7
);
28210 if (arg8
== NULL
) SWIG_fail
;
28215 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28216 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
28218 wxPyEndAllowThreads(__tstate
);
28219 if (PyErr_Occurred()) SWIG_fail
;
28222 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28238 static PyObject
*_wrap_TreeCtrl__setCallbackInfo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28239 PyObject
*resultobj
= NULL
;
28240 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28241 PyObject
*arg2
= (PyObject
*) 0 ;
28242 PyObject
*arg3
= (PyObject
*) 0 ;
28243 PyObject
* obj0
= 0 ;
28244 PyObject
* obj1
= 0 ;
28245 PyObject
* obj2
= 0 ;
28246 char *kwnames
[] = {
28247 (char *) "self",(char *) "self",(char *) "_class", NULL
28250 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
28251 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28252 if (SWIG_arg_fail(1)) SWIG_fail
;
28256 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28257 (arg1
)->_setCallbackInfo(arg2
,arg3
);
28259 wxPyEndAllowThreads(__tstate
);
28260 if (PyErr_Occurred()) SWIG_fail
;
28262 Py_INCREF(Py_None
); resultobj
= Py_None
;
28269 static PyObject
*_wrap_TreeCtrl_GetCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28270 PyObject
*resultobj
= NULL
;
28271 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28273 PyObject
* obj0
= 0 ;
28274 char *kwnames
[] = {
28275 (char *) "self", NULL
28278 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetCount",kwnames
,&obj0
)) goto fail
;
28279 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28280 if (SWIG_arg_fail(1)) SWIG_fail
;
28282 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28283 result
= (size_t)((wxPyTreeCtrl
const *)arg1
)->GetCount();
28285 wxPyEndAllowThreads(__tstate
);
28286 if (PyErr_Occurred()) SWIG_fail
;
28289 resultobj
= SWIG_From_unsigned_SS_long(static_cast<unsigned long >(result
));
28297 static PyObject
*_wrap_TreeCtrl_GetIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28298 PyObject
*resultobj
= NULL
;
28299 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28300 unsigned int result
;
28301 PyObject
* obj0
= 0 ;
28302 char *kwnames
[] = {
28303 (char *) "self", NULL
28306 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetIndent",kwnames
,&obj0
)) goto fail
;
28307 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28308 if (SWIG_arg_fail(1)) SWIG_fail
;
28310 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28311 result
= (unsigned int)((wxPyTreeCtrl
const *)arg1
)->GetIndent();
28313 wxPyEndAllowThreads(__tstate
);
28314 if (PyErr_Occurred()) SWIG_fail
;
28317 resultobj
= SWIG_From_unsigned_SS_int(static_cast<unsigned int >(result
));
28325 static PyObject
*_wrap_TreeCtrl_SetIndent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28326 PyObject
*resultobj
= NULL
;
28327 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28328 unsigned int arg2
;
28329 PyObject
* obj0
= 0 ;
28330 PyObject
* obj1
= 0 ;
28331 char *kwnames
[] = {
28332 (char *) "self",(char *) "indent", NULL
28335 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_SetIndent",kwnames
,&obj0
,&obj1
)) goto fail
;
28336 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28337 if (SWIG_arg_fail(1)) SWIG_fail
;
28339 arg2
= static_cast<unsigned int >(SWIG_As_unsigned_SS_int(obj1
));
28340 if (SWIG_arg_fail(2)) SWIG_fail
;
28343 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28344 (arg1
)->SetIndent(arg2
);
28346 wxPyEndAllowThreads(__tstate
);
28347 if (PyErr_Occurred()) SWIG_fail
;
28349 Py_INCREF(Py_None
); resultobj
= Py_None
;
28356 static PyObject
*_wrap_TreeCtrl_GetSpacing(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28357 PyObject
*resultobj
= NULL
;
28358 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28359 unsigned int result
;
28360 PyObject
* obj0
= 0 ;
28361 char *kwnames
[] = {
28362 (char *) "self", NULL
28365 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetSpacing",kwnames
,&obj0
)) goto fail
;
28366 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28367 if (SWIG_arg_fail(1)) SWIG_fail
;
28369 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28370 result
= (unsigned int)((wxPyTreeCtrl
const *)arg1
)->GetSpacing();
28372 wxPyEndAllowThreads(__tstate
);
28373 if (PyErr_Occurred()) SWIG_fail
;
28376 resultobj
= SWIG_From_unsigned_SS_int(static_cast<unsigned int >(result
));
28384 static PyObject
*_wrap_TreeCtrl_SetSpacing(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28385 PyObject
*resultobj
= NULL
;
28386 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28387 unsigned int arg2
;
28388 PyObject
* obj0
= 0 ;
28389 PyObject
* obj1
= 0 ;
28390 char *kwnames
[] = {
28391 (char *) "self",(char *) "spacing", NULL
28394 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_SetSpacing",kwnames
,&obj0
,&obj1
)) goto fail
;
28395 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28396 if (SWIG_arg_fail(1)) SWIG_fail
;
28398 arg2
= static_cast<unsigned int >(SWIG_As_unsigned_SS_int(obj1
));
28399 if (SWIG_arg_fail(2)) SWIG_fail
;
28402 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28403 (arg1
)->SetSpacing(arg2
);
28405 wxPyEndAllowThreads(__tstate
);
28406 if (PyErr_Occurred()) SWIG_fail
;
28408 Py_INCREF(Py_None
); resultobj
= Py_None
;
28415 static PyObject
*_wrap_TreeCtrl_GetImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28416 PyObject
*resultobj
= NULL
;
28417 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28418 wxImageList
*result
;
28419 PyObject
* obj0
= 0 ;
28420 char *kwnames
[] = {
28421 (char *) "self", NULL
28424 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetImageList",kwnames
,&obj0
)) goto fail
;
28425 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28426 if (SWIG_arg_fail(1)) SWIG_fail
;
28428 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28429 result
= (wxImageList
*)((wxPyTreeCtrl
const *)arg1
)->GetImageList();
28431 wxPyEndAllowThreads(__tstate
);
28432 if (PyErr_Occurred()) SWIG_fail
;
28435 resultobj
= wxPyMake_wxObject(result
, 0);
28443 static PyObject
*_wrap_TreeCtrl_GetStateImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28444 PyObject
*resultobj
= NULL
;
28445 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28446 wxImageList
*result
;
28447 PyObject
* obj0
= 0 ;
28448 char *kwnames
[] = {
28449 (char *) "self", NULL
28452 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetStateImageList",kwnames
,&obj0
)) goto fail
;
28453 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28454 if (SWIG_arg_fail(1)) SWIG_fail
;
28456 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28457 result
= (wxImageList
*)((wxPyTreeCtrl
const *)arg1
)->GetStateImageList();
28459 wxPyEndAllowThreads(__tstate
);
28460 if (PyErr_Occurred()) SWIG_fail
;
28463 resultobj
= wxPyMake_wxObject(result
, 0);
28471 static PyObject
*_wrap_TreeCtrl_SetImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28472 PyObject
*resultobj
= NULL
;
28473 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28474 wxImageList
*arg2
= (wxImageList
*) 0 ;
28475 PyObject
* obj0
= 0 ;
28476 PyObject
* obj1
= 0 ;
28477 char *kwnames
[] = {
28478 (char *) "self",(char *) "imageList", NULL
28481 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_SetImageList",kwnames
,&obj0
,&obj1
)) goto fail
;
28482 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28483 if (SWIG_arg_fail(1)) SWIG_fail
;
28484 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| 0);
28485 if (SWIG_arg_fail(2)) SWIG_fail
;
28487 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28488 (arg1
)->SetImageList(arg2
);
28490 wxPyEndAllowThreads(__tstate
);
28491 if (PyErr_Occurred()) SWIG_fail
;
28493 Py_INCREF(Py_None
); resultobj
= Py_None
;
28500 static PyObject
*_wrap_TreeCtrl_SetStateImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28501 PyObject
*resultobj
= NULL
;
28502 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28503 wxImageList
*arg2
= (wxImageList
*) 0 ;
28504 PyObject
* obj0
= 0 ;
28505 PyObject
* obj1
= 0 ;
28506 char *kwnames
[] = {
28507 (char *) "self",(char *) "imageList", NULL
28510 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_SetStateImageList",kwnames
,&obj0
,&obj1
)) goto fail
;
28511 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28512 if (SWIG_arg_fail(1)) SWIG_fail
;
28513 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| 0);
28514 if (SWIG_arg_fail(2)) SWIG_fail
;
28516 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28517 (arg1
)->SetStateImageList(arg2
);
28519 wxPyEndAllowThreads(__tstate
);
28520 if (PyErr_Occurred()) SWIG_fail
;
28522 Py_INCREF(Py_None
); resultobj
= Py_None
;
28529 static PyObject
*_wrap_TreeCtrl_AssignImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28530 PyObject
*resultobj
= NULL
;
28531 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28532 wxImageList
*arg2
= (wxImageList
*) 0 ;
28533 PyObject
* obj0
= 0 ;
28534 PyObject
* obj1
= 0 ;
28535 char *kwnames
[] = {
28536 (char *) "self",(char *) "imageList", NULL
28539 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_AssignImageList",kwnames
,&obj0
,&obj1
)) goto fail
;
28540 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28541 if (SWIG_arg_fail(1)) SWIG_fail
;
28542 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
);
28543 if (SWIG_arg_fail(2)) SWIG_fail
;
28545 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28546 (arg1
)->AssignImageList(arg2
);
28548 wxPyEndAllowThreads(__tstate
);
28549 if (PyErr_Occurred()) SWIG_fail
;
28551 Py_INCREF(Py_None
); resultobj
= Py_None
;
28558 static PyObject
*_wrap_TreeCtrl_AssignStateImageList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28559 PyObject
*resultobj
= NULL
;
28560 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28561 wxImageList
*arg2
= (wxImageList
*) 0 ;
28562 PyObject
* obj0
= 0 ;
28563 PyObject
* obj1
= 0 ;
28564 char *kwnames
[] = {
28565 (char *) "self",(char *) "imageList", NULL
28568 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_AssignStateImageList",kwnames
,&obj0
,&obj1
)) goto fail
;
28569 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28570 if (SWIG_arg_fail(1)) SWIG_fail
;
28571 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxImageList
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
);
28572 if (SWIG_arg_fail(2)) SWIG_fail
;
28574 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28575 (arg1
)->AssignStateImageList(arg2
);
28577 wxPyEndAllowThreads(__tstate
);
28578 if (PyErr_Occurred()) SWIG_fail
;
28580 Py_INCREF(Py_None
); resultobj
= Py_None
;
28587 static PyObject
*_wrap_TreeCtrl_GetItemText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28588 PyObject
*resultobj
= NULL
;
28589 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28590 wxTreeItemId
*arg2
= 0 ;
28592 PyObject
* obj0
= 0 ;
28593 PyObject
* obj1
= 0 ;
28594 char *kwnames
[] = {
28595 (char *) "self",(char *) "item", NULL
28598 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetItemText",kwnames
,&obj0
,&obj1
)) goto fail
;
28599 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28600 if (SWIG_arg_fail(1)) SWIG_fail
;
28602 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28603 if (SWIG_arg_fail(2)) SWIG_fail
;
28604 if (arg2
== NULL
) {
28605 SWIG_null_ref("wxTreeItemId");
28607 if (SWIG_arg_fail(2)) SWIG_fail
;
28610 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28611 result
= ((wxPyTreeCtrl
const *)arg1
)->GetItemText((wxTreeItemId
const &)*arg2
);
28613 wxPyEndAllowThreads(__tstate
);
28614 if (PyErr_Occurred()) SWIG_fail
;
28618 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
28620 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
28629 static PyObject
*_wrap_TreeCtrl_GetItemImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28630 PyObject
*resultobj
= NULL
;
28631 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28632 wxTreeItemId
*arg2
= 0 ;
28633 wxTreeItemIcon arg3
= (wxTreeItemIcon
) wxTreeItemIcon_Normal
;
28635 PyObject
* obj0
= 0 ;
28636 PyObject
* obj1
= 0 ;
28637 PyObject
* obj2
= 0 ;
28638 char *kwnames
[] = {
28639 (char *) "self",(char *) "item",(char *) "which", NULL
28642 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TreeCtrl_GetItemImage",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
28643 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28644 if (SWIG_arg_fail(1)) SWIG_fail
;
28646 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28647 if (SWIG_arg_fail(2)) SWIG_fail
;
28648 if (arg2
== NULL
) {
28649 SWIG_null_ref("wxTreeItemId");
28651 if (SWIG_arg_fail(2)) SWIG_fail
;
28655 arg3
= static_cast<wxTreeItemIcon
>(SWIG_As_int(obj2
));
28656 if (SWIG_arg_fail(3)) SWIG_fail
;
28660 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28661 result
= (int)((wxPyTreeCtrl
const *)arg1
)->GetItemImage((wxTreeItemId
const &)*arg2
,arg3
);
28663 wxPyEndAllowThreads(__tstate
);
28664 if (PyErr_Occurred()) SWIG_fail
;
28667 resultobj
= SWIG_From_int(static_cast<int >(result
));
28675 static PyObject
*_wrap_TreeCtrl_GetItemData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28676 PyObject
*resultobj
= NULL
;
28677 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28678 wxTreeItemId
*arg2
= 0 ;
28679 wxPyTreeItemData
*result
;
28680 PyObject
* obj0
= 0 ;
28681 PyObject
* obj1
= 0 ;
28682 char *kwnames
[] = {
28683 (char *) "self",(char *) "item", NULL
28686 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetItemData",kwnames
,&obj0
,&obj1
)) goto fail
;
28687 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28688 if (SWIG_arg_fail(1)) SWIG_fail
;
28690 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28691 if (SWIG_arg_fail(2)) SWIG_fail
;
28692 if (arg2
== NULL
) {
28693 SWIG_null_ref("wxTreeItemId");
28695 if (SWIG_arg_fail(2)) SWIG_fail
;
28698 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28699 result
= (wxPyTreeItemData
*)wxPyTreeCtrl_GetItemData(arg1
,(wxTreeItemId
const &)*arg2
);
28701 wxPyEndAllowThreads(__tstate
);
28702 if (PyErr_Occurred()) SWIG_fail
;
28704 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyTreeItemData
, 0);
28711 static PyObject
*_wrap_TreeCtrl_GetItemPyData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28712 PyObject
*resultobj
= NULL
;
28713 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28714 wxTreeItemId
*arg2
= 0 ;
28716 PyObject
* obj0
= 0 ;
28717 PyObject
* obj1
= 0 ;
28718 char *kwnames
[] = {
28719 (char *) "self",(char *) "item", NULL
28722 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetItemPyData",kwnames
,&obj0
,&obj1
)) goto fail
;
28723 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28724 if (SWIG_arg_fail(1)) SWIG_fail
;
28726 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28727 if (SWIG_arg_fail(2)) SWIG_fail
;
28728 if (arg2
== NULL
) {
28729 SWIG_null_ref("wxTreeItemId");
28731 if (SWIG_arg_fail(2)) SWIG_fail
;
28734 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28735 result
= (PyObject
*)wxPyTreeCtrl_GetItemPyData(arg1
,(wxTreeItemId
const &)*arg2
);
28737 wxPyEndAllowThreads(__tstate
);
28738 if (PyErr_Occurred()) SWIG_fail
;
28740 resultobj
= result
;
28747 static PyObject
*_wrap_TreeCtrl_GetItemTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28748 PyObject
*resultobj
= NULL
;
28749 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28750 wxTreeItemId
*arg2
= 0 ;
28752 PyObject
* obj0
= 0 ;
28753 PyObject
* obj1
= 0 ;
28754 char *kwnames
[] = {
28755 (char *) "self",(char *) "item", NULL
28758 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetItemTextColour",kwnames
,&obj0
,&obj1
)) goto fail
;
28759 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28760 if (SWIG_arg_fail(1)) SWIG_fail
;
28762 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28763 if (SWIG_arg_fail(2)) SWIG_fail
;
28764 if (arg2
== NULL
) {
28765 SWIG_null_ref("wxTreeItemId");
28767 if (SWIG_arg_fail(2)) SWIG_fail
;
28770 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28771 result
= ((wxPyTreeCtrl
const *)arg1
)->GetItemTextColour((wxTreeItemId
const &)*arg2
);
28773 wxPyEndAllowThreads(__tstate
);
28774 if (PyErr_Occurred()) SWIG_fail
;
28777 wxColour
* resultptr
;
28778 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
28779 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
28787 static PyObject
*_wrap_TreeCtrl_GetItemBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28788 PyObject
*resultobj
= NULL
;
28789 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28790 wxTreeItemId
*arg2
= 0 ;
28792 PyObject
* obj0
= 0 ;
28793 PyObject
* obj1
= 0 ;
28794 char *kwnames
[] = {
28795 (char *) "self",(char *) "item", NULL
28798 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetItemBackgroundColour",kwnames
,&obj0
,&obj1
)) goto fail
;
28799 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28800 if (SWIG_arg_fail(1)) SWIG_fail
;
28802 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28803 if (SWIG_arg_fail(2)) SWIG_fail
;
28804 if (arg2
== NULL
) {
28805 SWIG_null_ref("wxTreeItemId");
28807 if (SWIG_arg_fail(2)) SWIG_fail
;
28810 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28811 result
= ((wxPyTreeCtrl
const *)arg1
)->GetItemBackgroundColour((wxTreeItemId
const &)*arg2
);
28813 wxPyEndAllowThreads(__tstate
);
28814 if (PyErr_Occurred()) SWIG_fail
;
28817 wxColour
* resultptr
;
28818 resultptr
= new wxColour(static_cast<wxColour
& >(result
));
28819 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1);
28827 static PyObject
*_wrap_TreeCtrl_GetItemFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28828 PyObject
*resultobj
= NULL
;
28829 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28830 wxTreeItemId
*arg2
= 0 ;
28832 PyObject
* obj0
= 0 ;
28833 PyObject
* obj1
= 0 ;
28834 char *kwnames
[] = {
28835 (char *) "self",(char *) "item", NULL
28838 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetItemFont",kwnames
,&obj0
,&obj1
)) goto fail
;
28839 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28840 if (SWIG_arg_fail(1)) SWIG_fail
;
28842 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28843 if (SWIG_arg_fail(2)) SWIG_fail
;
28844 if (arg2
== NULL
) {
28845 SWIG_null_ref("wxTreeItemId");
28847 if (SWIG_arg_fail(2)) SWIG_fail
;
28850 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28851 result
= ((wxPyTreeCtrl
const *)arg1
)->GetItemFont((wxTreeItemId
const &)*arg2
);
28853 wxPyEndAllowThreads(__tstate
);
28854 if (PyErr_Occurred()) SWIG_fail
;
28857 wxFont
* resultptr
;
28858 resultptr
= new wxFont(static_cast<wxFont
& >(result
));
28859 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxFont
, 1);
28867 static PyObject
*_wrap_TreeCtrl_SetItemText(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28868 PyObject
*resultobj
= NULL
;
28869 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28870 wxTreeItemId
*arg2
= 0 ;
28871 wxString
*arg3
= 0 ;
28872 bool temp3
= false ;
28873 PyObject
* obj0
= 0 ;
28874 PyObject
* obj1
= 0 ;
28875 PyObject
* obj2
= 0 ;
28876 char *kwnames
[] = {
28877 (char *) "self",(char *) "item",(char *) "text", NULL
28880 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl_SetItemText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
28881 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28882 if (SWIG_arg_fail(1)) SWIG_fail
;
28884 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28885 if (SWIG_arg_fail(2)) SWIG_fail
;
28886 if (arg2
== NULL
) {
28887 SWIG_null_ref("wxTreeItemId");
28889 if (SWIG_arg_fail(2)) SWIG_fail
;
28892 arg3
= wxString_in_helper(obj2
);
28893 if (arg3
== NULL
) SWIG_fail
;
28897 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28898 (arg1
)->SetItemText((wxTreeItemId
const &)*arg2
,(wxString
const &)*arg3
);
28900 wxPyEndAllowThreads(__tstate
);
28901 if (PyErr_Occurred()) SWIG_fail
;
28903 Py_INCREF(Py_None
); resultobj
= Py_None
;
28918 static PyObject
*_wrap_TreeCtrl_SetItemImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28919 PyObject
*resultobj
= NULL
;
28920 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28921 wxTreeItemId
*arg2
= 0 ;
28923 wxTreeItemIcon arg4
= (wxTreeItemIcon
) wxTreeItemIcon_Normal
;
28924 PyObject
* obj0
= 0 ;
28925 PyObject
* obj1
= 0 ;
28926 PyObject
* obj2
= 0 ;
28927 PyObject
* obj3
= 0 ;
28928 char *kwnames
[] = {
28929 (char *) "self",(char *) "item",(char *) "image",(char *) "which", NULL
28932 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:TreeCtrl_SetItemImage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
28933 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28934 if (SWIG_arg_fail(1)) SWIG_fail
;
28936 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28937 if (SWIG_arg_fail(2)) SWIG_fail
;
28938 if (arg2
== NULL
) {
28939 SWIG_null_ref("wxTreeItemId");
28941 if (SWIG_arg_fail(2)) SWIG_fail
;
28944 arg3
= static_cast<int >(SWIG_As_int(obj2
));
28945 if (SWIG_arg_fail(3)) SWIG_fail
;
28949 arg4
= static_cast<wxTreeItemIcon
>(SWIG_As_int(obj3
));
28950 if (SWIG_arg_fail(4)) SWIG_fail
;
28954 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28955 (arg1
)->SetItemImage((wxTreeItemId
const &)*arg2
,arg3
,arg4
);
28957 wxPyEndAllowThreads(__tstate
);
28958 if (PyErr_Occurred()) SWIG_fail
;
28960 Py_INCREF(Py_None
); resultobj
= Py_None
;
28967 static PyObject
*_wrap_TreeCtrl_SetItemData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
28968 PyObject
*resultobj
= NULL
;
28969 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
28970 wxTreeItemId
*arg2
= 0 ;
28971 wxPyTreeItemData
*arg3
= (wxPyTreeItemData
*) 0 ;
28972 PyObject
* obj0
= 0 ;
28973 PyObject
* obj1
= 0 ;
28974 PyObject
* obj2
= 0 ;
28975 char *kwnames
[] = {
28976 (char *) "self",(char *) "item",(char *) "data", NULL
28979 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl_SetItemData",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
28980 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
28981 if (SWIG_arg_fail(1)) SWIG_fail
;
28983 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
28984 if (SWIG_arg_fail(2)) SWIG_fail
;
28985 if (arg2
== NULL
) {
28986 SWIG_null_ref("wxTreeItemId");
28988 if (SWIG_arg_fail(2)) SWIG_fail
;
28990 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
28991 if (SWIG_arg_fail(3)) SWIG_fail
;
28993 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28994 wxPyTreeCtrl_SetItemData(arg1
,(wxTreeItemId
const &)*arg2
,arg3
);
28996 wxPyEndAllowThreads(__tstate
);
28997 if (PyErr_Occurred()) SWIG_fail
;
28999 Py_INCREF(Py_None
); resultobj
= Py_None
;
29006 static PyObject
*_wrap_TreeCtrl_SetItemPyData(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29007 PyObject
*resultobj
= NULL
;
29008 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29009 wxTreeItemId
*arg2
= 0 ;
29010 PyObject
*arg3
= (PyObject
*) 0 ;
29011 PyObject
* obj0
= 0 ;
29012 PyObject
* obj1
= 0 ;
29013 PyObject
* obj2
= 0 ;
29014 char *kwnames
[] = {
29015 (char *) "self",(char *) "item",(char *) "obj", NULL
29018 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl_SetItemPyData",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
29019 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29020 if (SWIG_arg_fail(1)) SWIG_fail
;
29022 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29023 if (SWIG_arg_fail(2)) SWIG_fail
;
29024 if (arg2
== NULL
) {
29025 SWIG_null_ref("wxTreeItemId");
29027 if (SWIG_arg_fail(2)) SWIG_fail
;
29031 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29032 wxPyTreeCtrl_SetItemPyData(arg1
,(wxTreeItemId
const &)*arg2
,arg3
);
29034 wxPyEndAllowThreads(__tstate
);
29035 if (PyErr_Occurred()) SWIG_fail
;
29037 Py_INCREF(Py_None
); resultobj
= Py_None
;
29044 static PyObject
*_wrap_TreeCtrl_SetItemHasChildren(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29045 PyObject
*resultobj
= NULL
;
29046 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29047 wxTreeItemId
*arg2
= 0 ;
29048 bool arg3
= (bool) true ;
29049 PyObject
* obj0
= 0 ;
29050 PyObject
* obj1
= 0 ;
29051 PyObject
* obj2
= 0 ;
29052 char *kwnames
[] = {
29053 (char *) "self",(char *) "item",(char *) "has", NULL
29056 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TreeCtrl_SetItemHasChildren",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
29057 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29058 if (SWIG_arg_fail(1)) SWIG_fail
;
29060 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29061 if (SWIG_arg_fail(2)) SWIG_fail
;
29062 if (arg2
== NULL
) {
29063 SWIG_null_ref("wxTreeItemId");
29065 if (SWIG_arg_fail(2)) SWIG_fail
;
29069 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
29070 if (SWIG_arg_fail(3)) SWIG_fail
;
29074 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29075 (arg1
)->SetItemHasChildren((wxTreeItemId
const &)*arg2
,arg3
);
29077 wxPyEndAllowThreads(__tstate
);
29078 if (PyErr_Occurred()) SWIG_fail
;
29080 Py_INCREF(Py_None
); resultobj
= Py_None
;
29087 static PyObject
*_wrap_TreeCtrl_SetItemBold(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29088 PyObject
*resultobj
= NULL
;
29089 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29090 wxTreeItemId
*arg2
= 0 ;
29091 bool arg3
= (bool) true ;
29092 PyObject
* obj0
= 0 ;
29093 PyObject
* obj1
= 0 ;
29094 PyObject
* obj2
= 0 ;
29095 char *kwnames
[] = {
29096 (char *) "self",(char *) "item",(char *) "bold", NULL
29099 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TreeCtrl_SetItemBold",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
29100 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29101 if (SWIG_arg_fail(1)) SWIG_fail
;
29103 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29104 if (SWIG_arg_fail(2)) SWIG_fail
;
29105 if (arg2
== NULL
) {
29106 SWIG_null_ref("wxTreeItemId");
29108 if (SWIG_arg_fail(2)) SWIG_fail
;
29112 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
29113 if (SWIG_arg_fail(3)) SWIG_fail
;
29117 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29118 (arg1
)->SetItemBold((wxTreeItemId
const &)*arg2
,arg3
);
29120 wxPyEndAllowThreads(__tstate
);
29121 if (PyErr_Occurred()) SWIG_fail
;
29123 Py_INCREF(Py_None
); resultobj
= Py_None
;
29130 static PyObject
*_wrap_TreeCtrl_SetItemDropHighlight(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29131 PyObject
*resultobj
= NULL
;
29132 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29133 wxTreeItemId
*arg2
= 0 ;
29134 bool arg3
= (bool) true ;
29135 PyObject
* obj0
= 0 ;
29136 PyObject
* obj1
= 0 ;
29137 PyObject
* obj2
= 0 ;
29138 char *kwnames
[] = {
29139 (char *) "self",(char *) "item",(char *) "highlight", NULL
29142 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TreeCtrl_SetItemDropHighlight",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
29143 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29144 if (SWIG_arg_fail(1)) SWIG_fail
;
29146 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29147 if (SWIG_arg_fail(2)) SWIG_fail
;
29148 if (arg2
== NULL
) {
29149 SWIG_null_ref("wxTreeItemId");
29151 if (SWIG_arg_fail(2)) SWIG_fail
;
29155 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
29156 if (SWIG_arg_fail(3)) SWIG_fail
;
29160 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29161 (arg1
)->SetItemDropHighlight((wxTreeItemId
const &)*arg2
,arg3
);
29163 wxPyEndAllowThreads(__tstate
);
29164 if (PyErr_Occurred()) SWIG_fail
;
29166 Py_INCREF(Py_None
); resultobj
= Py_None
;
29173 static PyObject
*_wrap_TreeCtrl_SetItemTextColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29174 PyObject
*resultobj
= NULL
;
29175 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29176 wxTreeItemId
*arg2
= 0 ;
29177 wxColour
*arg3
= 0 ;
29179 PyObject
* obj0
= 0 ;
29180 PyObject
* obj1
= 0 ;
29181 PyObject
* obj2
= 0 ;
29182 char *kwnames
[] = {
29183 (char *) "self",(char *) "item",(char *) "col", NULL
29186 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl_SetItemTextColour",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
29187 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29188 if (SWIG_arg_fail(1)) SWIG_fail
;
29190 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29191 if (SWIG_arg_fail(2)) SWIG_fail
;
29192 if (arg2
== NULL
) {
29193 SWIG_null_ref("wxTreeItemId");
29195 if (SWIG_arg_fail(2)) SWIG_fail
;
29199 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
29202 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29203 (arg1
)->SetItemTextColour((wxTreeItemId
const &)*arg2
,(wxColour
const &)*arg3
);
29205 wxPyEndAllowThreads(__tstate
);
29206 if (PyErr_Occurred()) SWIG_fail
;
29208 Py_INCREF(Py_None
); resultobj
= Py_None
;
29215 static PyObject
*_wrap_TreeCtrl_SetItemBackgroundColour(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29216 PyObject
*resultobj
= NULL
;
29217 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29218 wxTreeItemId
*arg2
= 0 ;
29219 wxColour
*arg3
= 0 ;
29221 PyObject
* obj0
= 0 ;
29222 PyObject
* obj1
= 0 ;
29223 PyObject
* obj2
= 0 ;
29224 char *kwnames
[] = {
29225 (char *) "self",(char *) "item",(char *) "col", NULL
29228 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl_SetItemBackgroundColour",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
29229 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29230 if (SWIG_arg_fail(1)) SWIG_fail
;
29232 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29233 if (SWIG_arg_fail(2)) SWIG_fail
;
29234 if (arg2
== NULL
) {
29235 SWIG_null_ref("wxTreeItemId");
29237 if (SWIG_arg_fail(2)) SWIG_fail
;
29241 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
29244 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29245 (arg1
)->SetItemBackgroundColour((wxTreeItemId
const &)*arg2
,(wxColour
const &)*arg3
);
29247 wxPyEndAllowThreads(__tstate
);
29248 if (PyErr_Occurred()) SWIG_fail
;
29250 Py_INCREF(Py_None
); resultobj
= Py_None
;
29257 static PyObject
*_wrap_TreeCtrl_SetItemFont(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29258 PyObject
*resultobj
= NULL
;
29259 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29260 wxTreeItemId
*arg2
= 0 ;
29262 PyObject
* obj0
= 0 ;
29263 PyObject
* obj1
= 0 ;
29264 PyObject
* obj2
= 0 ;
29265 char *kwnames
[] = {
29266 (char *) "self",(char *) "item",(char *) "font", NULL
29269 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl_SetItemFont",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
29270 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29271 if (SWIG_arg_fail(1)) SWIG_fail
;
29273 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29274 if (SWIG_arg_fail(2)) SWIG_fail
;
29275 if (arg2
== NULL
) {
29276 SWIG_null_ref("wxTreeItemId");
29278 if (SWIG_arg_fail(2)) SWIG_fail
;
29281 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION
| 0);
29282 if (SWIG_arg_fail(3)) SWIG_fail
;
29283 if (arg3
== NULL
) {
29284 SWIG_null_ref("wxFont");
29286 if (SWIG_arg_fail(3)) SWIG_fail
;
29289 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29290 (arg1
)->SetItemFont((wxTreeItemId
const &)*arg2
,(wxFont
const &)*arg3
);
29292 wxPyEndAllowThreads(__tstate
);
29293 if (PyErr_Occurred()) SWIG_fail
;
29295 Py_INCREF(Py_None
); resultobj
= Py_None
;
29302 static PyObject
*_wrap_TreeCtrl_IsVisible(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29303 PyObject
*resultobj
= NULL
;
29304 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29305 wxTreeItemId
*arg2
= 0 ;
29307 PyObject
* obj0
= 0 ;
29308 PyObject
* obj1
= 0 ;
29309 char *kwnames
[] = {
29310 (char *) "self",(char *) "item", NULL
29313 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_IsVisible",kwnames
,&obj0
,&obj1
)) goto fail
;
29314 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29315 if (SWIG_arg_fail(1)) SWIG_fail
;
29317 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29318 if (SWIG_arg_fail(2)) SWIG_fail
;
29319 if (arg2
== NULL
) {
29320 SWIG_null_ref("wxTreeItemId");
29322 if (SWIG_arg_fail(2)) SWIG_fail
;
29325 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29326 result
= (bool)((wxPyTreeCtrl
const *)arg1
)->IsVisible((wxTreeItemId
const &)*arg2
);
29328 wxPyEndAllowThreads(__tstate
);
29329 if (PyErr_Occurred()) SWIG_fail
;
29332 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29340 static PyObject
*_wrap_TreeCtrl_ItemHasChildren(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29341 PyObject
*resultobj
= NULL
;
29342 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29343 wxTreeItemId
*arg2
= 0 ;
29345 PyObject
* obj0
= 0 ;
29346 PyObject
* obj1
= 0 ;
29347 char *kwnames
[] = {
29348 (char *) "self",(char *) "item", NULL
29351 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_ItemHasChildren",kwnames
,&obj0
,&obj1
)) goto fail
;
29352 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29353 if (SWIG_arg_fail(1)) SWIG_fail
;
29355 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29356 if (SWIG_arg_fail(2)) SWIG_fail
;
29357 if (arg2
== NULL
) {
29358 SWIG_null_ref("wxTreeItemId");
29360 if (SWIG_arg_fail(2)) SWIG_fail
;
29363 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29364 result
= (bool)((wxPyTreeCtrl
const *)arg1
)->ItemHasChildren((wxTreeItemId
const &)*arg2
);
29366 wxPyEndAllowThreads(__tstate
);
29367 if (PyErr_Occurred()) SWIG_fail
;
29370 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29378 static PyObject
*_wrap_TreeCtrl_IsExpanded(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29379 PyObject
*resultobj
= NULL
;
29380 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29381 wxTreeItemId
*arg2
= 0 ;
29383 PyObject
* obj0
= 0 ;
29384 PyObject
* obj1
= 0 ;
29385 char *kwnames
[] = {
29386 (char *) "self",(char *) "item", NULL
29389 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_IsExpanded",kwnames
,&obj0
,&obj1
)) goto fail
;
29390 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29391 if (SWIG_arg_fail(1)) SWIG_fail
;
29393 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29394 if (SWIG_arg_fail(2)) SWIG_fail
;
29395 if (arg2
== NULL
) {
29396 SWIG_null_ref("wxTreeItemId");
29398 if (SWIG_arg_fail(2)) SWIG_fail
;
29401 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29402 result
= (bool)((wxPyTreeCtrl
const *)arg1
)->IsExpanded((wxTreeItemId
const &)*arg2
);
29404 wxPyEndAllowThreads(__tstate
);
29405 if (PyErr_Occurred()) SWIG_fail
;
29408 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29416 static PyObject
*_wrap_TreeCtrl_IsSelected(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29417 PyObject
*resultobj
= NULL
;
29418 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29419 wxTreeItemId
*arg2
= 0 ;
29421 PyObject
* obj0
= 0 ;
29422 PyObject
* obj1
= 0 ;
29423 char *kwnames
[] = {
29424 (char *) "self",(char *) "item", NULL
29427 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_IsSelected",kwnames
,&obj0
,&obj1
)) goto fail
;
29428 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29429 if (SWIG_arg_fail(1)) SWIG_fail
;
29431 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29432 if (SWIG_arg_fail(2)) SWIG_fail
;
29433 if (arg2
== NULL
) {
29434 SWIG_null_ref("wxTreeItemId");
29436 if (SWIG_arg_fail(2)) SWIG_fail
;
29439 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29440 result
= (bool)((wxPyTreeCtrl
const *)arg1
)->IsSelected((wxTreeItemId
const &)*arg2
);
29442 wxPyEndAllowThreads(__tstate
);
29443 if (PyErr_Occurred()) SWIG_fail
;
29446 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29454 static PyObject
*_wrap_TreeCtrl_IsBold(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29455 PyObject
*resultobj
= NULL
;
29456 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29457 wxTreeItemId
*arg2
= 0 ;
29459 PyObject
* obj0
= 0 ;
29460 PyObject
* obj1
= 0 ;
29461 char *kwnames
[] = {
29462 (char *) "self",(char *) "item", NULL
29465 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_IsBold",kwnames
,&obj0
,&obj1
)) goto fail
;
29466 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29467 if (SWIG_arg_fail(1)) SWIG_fail
;
29469 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29470 if (SWIG_arg_fail(2)) SWIG_fail
;
29471 if (arg2
== NULL
) {
29472 SWIG_null_ref("wxTreeItemId");
29474 if (SWIG_arg_fail(2)) SWIG_fail
;
29477 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29478 result
= (bool)((wxPyTreeCtrl
const *)arg1
)->IsBold((wxTreeItemId
const &)*arg2
);
29480 wxPyEndAllowThreads(__tstate
);
29481 if (PyErr_Occurred()) SWIG_fail
;
29484 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29492 static PyObject
*_wrap_TreeCtrl_GetChildrenCount(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29493 PyObject
*resultobj
= NULL
;
29494 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29495 wxTreeItemId
*arg2
= 0 ;
29496 bool arg3
= (bool) true ;
29498 PyObject
* obj0
= 0 ;
29499 PyObject
* obj1
= 0 ;
29500 PyObject
* obj2
= 0 ;
29501 char *kwnames
[] = {
29502 (char *) "self",(char *) "item",(char *) "recursively", NULL
29505 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TreeCtrl_GetChildrenCount",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
29506 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29507 if (SWIG_arg_fail(1)) SWIG_fail
;
29509 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29510 if (SWIG_arg_fail(2)) SWIG_fail
;
29511 if (arg2
== NULL
) {
29512 SWIG_null_ref("wxTreeItemId");
29514 if (SWIG_arg_fail(2)) SWIG_fail
;
29518 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
29519 if (SWIG_arg_fail(3)) SWIG_fail
;
29523 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29524 result
= (size_t)(arg1
)->GetChildrenCount((wxTreeItemId
const &)*arg2
,arg3
);
29526 wxPyEndAllowThreads(__tstate
);
29527 if (PyErr_Occurred()) SWIG_fail
;
29530 resultobj
= SWIG_From_unsigned_SS_long(static_cast<unsigned long >(result
));
29538 static PyObject
*_wrap_TreeCtrl_GetRootItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29539 PyObject
*resultobj
= NULL
;
29540 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29541 wxTreeItemId result
;
29542 PyObject
* obj0
= 0 ;
29543 char *kwnames
[] = {
29544 (char *) "self", NULL
29547 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetRootItem",kwnames
,&obj0
)) goto fail
;
29548 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29549 if (SWIG_arg_fail(1)) SWIG_fail
;
29551 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29552 result
= ((wxPyTreeCtrl
const *)arg1
)->GetRootItem();
29554 wxPyEndAllowThreads(__tstate
);
29555 if (PyErr_Occurred()) SWIG_fail
;
29558 wxTreeItemId
* resultptr
;
29559 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
29560 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
29568 static PyObject
*_wrap_TreeCtrl_GetSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29569 PyObject
*resultobj
= NULL
;
29570 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29571 wxTreeItemId result
;
29572 PyObject
* obj0
= 0 ;
29573 char *kwnames
[] = {
29574 (char *) "self", NULL
29577 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetSelection",kwnames
,&obj0
)) goto fail
;
29578 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29579 if (SWIG_arg_fail(1)) SWIG_fail
;
29581 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29582 result
= ((wxPyTreeCtrl
const *)arg1
)->GetSelection();
29584 wxPyEndAllowThreads(__tstate
);
29585 if (PyErr_Occurred()) SWIG_fail
;
29588 wxTreeItemId
* resultptr
;
29589 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
29590 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
29598 static PyObject
*_wrap_TreeCtrl_GetSelections(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29599 PyObject
*resultobj
= NULL
;
29600 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29602 PyObject
* obj0
= 0 ;
29603 char *kwnames
[] = {
29604 (char *) "self", NULL
29607 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetSelections",kwnames
,&obj0
)) goto fail
;
29608 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29609 if (SWIG_arg_fail(1)) SWIG_fail
;
29611 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29612 result
= (PyObject
*)wxPyTreeCtrl_GetSelections(arg1
);
29614 wxPyEndAllowThreads(__tstate
);
29615 if (PyErr_Occurred()) SWIG_fail
;
29617 resultobj
= result
;
29624 static PyObject
*_wrap_TreeCtrl_GetItemParent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29625 PyObject
*resultobj
= NULL
;
29626 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29627 wxTreeItemId
*arg2
= 0 ;
29628 wxTreeItemId result
;
29629 PyObject
* obj0
= 0 ;
29630 PyObject
* obj1
= 0 ;
29631 char *kwnames
[] = {
29632 (char *) "self",(char *) "item", NULL
29635 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetItemParent",kwnames
,&obj0
,&obj1
)) goto fail
;
29636 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29637 if (SWIG_arg_fail(1)) SWIG_fail
;
29639 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29640 if (SWIG_arg_fail(2)) SWIG_fail
;
29641 if (arg2
== NULL
) {
29642 SWIG_null_ref("wxTreeItemId");
29644 if (SWIG_arg_fail(2)) SWIG_fail
;
29647 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29648 result
= ((wxPyTreeCtrl
const *)arg1
)->GetItemParent((wxTreeItemId
const &)*arg2
);
29650 wxPyEndAllowThreads(__tstate
);
29651 if (PyErr_Occurred()) SWIG_fail
;
29654 wxTreeItemId
* resultptr
;
29655 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
29656 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
29664 static PyObject
*_wrap_TreeCtrl_GetFirstChild(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29665 PyObject
*resultobj
= NULL
;
29666 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29667 wxTreeItemId
*arg2
= 0 ;
29669 PyObject
* obj0
= 0 ;
29670 PyObject
* obj1
= 0 ;
29671 char *kwnames
[] = {
29672 (char *) "self",(char *) "item", NULL
29675 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetFirstChild",kwnames
,&obj0
,&obj1
)) goto fail
;
29676 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29677 if (SWIG_arg_fail(1)) SWIG_fail
;
29679 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29680 if (SWIG_arg_fail(2)) SWIG_fail
;
29681 if (arg2
== NULL
) {
29682 SWIG_null_ref("wxTreeItemId");
29684 if (SWIG_arg_fail(2)) SWIG_fail
;
29687 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29688 result
= (PyObject
*)wxPyTreeCtrl_GetFirstChild(arg1
,(wxTreeItemId
const &)*arg2
);
29690 wxPyEndAllowThreads(__tstate
);
29691 if (PyErr_Occurred()) SWIG_fail
;
29693 resultobj
= result
;
29700 static PyObject
*_wrap_TreeCtrl_GetNextChild(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29701 PyObject
*resultobj
= NULL
;
29702 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29703 wxTreeItemId
*arg2
= 0 ;
29704 void *arg3
= (void *) 0 ;
29706 PyObject
* obj0
= 0 ;
29707 PyObject
* obj1
= 0 ;
29708 PyObject
* obj2
= 0 ;
29709 char *kwnames
[] = {
29710 (char *) "self",(char *) "item",(char *) "cookie", NULL
29713 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TreeCtrl_GetNextChild",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
29714 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29715 if (SWIG_arg_fail(1)) SWIG_fail
;
29717 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29718 if (SWIG_arg_fail(2)) SWIG_fail
;
29719 if (arg2
== NULL
) {
29720 SWIG_null_ref("wxTreeItemId");
29722 if (SWIG_arg_fail(2)) SWIG_fail
;
29725 if ((SWIG_ConvertPtr(obj2
,reinterpret_cast<void ** >(&arg3
),0,SWIG_POINTER_EXCEPTION
|0))== -1) {
29726 SWIG_arg_fail(3);SWIG_fail
;
29730 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29731 result
= (PyObject
*)wxPyTreeCtrl_GetNextChild(arg1
,(wxTreeItemId
const &)*arg2
,arg3
);
29733 wxPyEndAllowThreads(__tstate
);
29734 if (PyErr_Occurred()) SWIG_fail
;
29736 resultobj
= result
;
29743 static PyObject
*_wrap_TreeCtrl_GetLastChild(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29744 PyObject
*resultobj
= NULL
;
29745 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29746 wxTreeItemId
*arg2
= 0 ;
29747 wxTreeItemId result
;
29748 PyObject
* obj0
= 0 ;
29749 PyObject
* obj1
= 0 ;
29750 char *kwnames
[] = {
29751 (char *) "self",(char *) "item", NULL
29754 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetLastChild",kwnames
,&obj0
,&obj1
)) goto fail
;
29755 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29756 if (SWIG_arg_fail(1)) SWIG_fail
;
29758 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29759 if (SWIG_arg_fail(2)) SWIG_fail
;
29760 if (arg2
== NULL
) {
29761 SWIG_null_ref("wxTreeItemId");
29763 if (SWIG_arg_fail(2)) SWIG_fail
;
29766 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29767 result
= ((wxPyTreeCtrl
const *)arg1
)->GetLastChild((wxTreeItemId
const &)*arg2
);
29769 wxPyEndAllowThreads(__tstate
);
29770 if (PyErr_Occurred()) SWIG_fail
;
29773 wxTreeItemId
* resultptr
;
29774 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
29775 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
29783 static PyObject
*_wrap_TreeCtrl_GetNextSibling(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29784 PyObject
*resultobj
= NULL
;
29785 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29786 wxTreeItemId
*arg2
= 0 ;
29787 wxTreeItemId result
;
29788 PyObject
* obj0
= 0 ;
29789 PyObject
* obj1
= 0 ;
29790 char *kwnames
[] = {
29791 (char *) "self",(char *) "item", NULL
29794 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetNextSibling",kwnames
,&obj0
,&obj1
)) goto fail
;
29795 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29796 if (SWIG_arg_fail(1)) SWIG_fail
;
29798 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29799 if (SWIG_arg_fail(2)) SWIG_fail
;
29800 if (arg2
== NULL
) {
29801 SWIG_null_ref("wxTreeItemId");
29803 if (SWIG_arg_fail(2)) SWIG_fail
;
29806 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29807 result
= ((wxPyTreeCtrl
const *)arg1
)->GetNextSibling((wxTreeItemId
const &)*arg2
);
29809 wxPyEndAllowThreads(__tstate
);
29810 if (PyErr_Occurred()) SWIG_fail
;
29813 wxTreeItemId
* resultptr
;
29814 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
29815 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
29823 static PyObject
*_wrap_TreeCtrl_GetPrevSibling(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29824 PyObject
*resultobj
= NULL
;
29825 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29826 wxTreeItemId
*arg2
= 0 ;
29827 wxTreeItemId result
;
29828 PyObject
* obj0
= 0 ;
29829 PyObject
* obj1
= 0 ;
29830 char *kwnames
[] = {
29831 (char *) "self",(char *) "item", NULL
29834 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetPrevSibling",kwnames
,&obj0
,&obj1
)) goto fail
;
29835 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29836 if (SWIG_arg_fail(1)) SWIG_fail
;
29838 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29839 if (SWIG_arg_fail(2)) SWIG_fail
;
29840 if (arg2
== NULL
) {
29841 SWIG_null_ref("wxTreeItemId");
29843 if (SWIG_arg_fail(2)) SWIG_fail
;
29846 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29847 result
= ((wxPyTreeCtrl
const *)arg1
)->GetPrevSibling((wxTreeItemId
const &)*arg2
);
29849 wxPyEndAllowThreads(__tstate
);
29850 if (PyErr_Occurred()) SWIG_fail
;
29853 wxTreeItemId
* resultptr
;
29854 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
29855 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
29863 static PyObject
*_wrap_TreeCtrl_GetFirstVisibleItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29864 PyObject
*resultobj
= NULL
;
29865 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29866 wxTreeItemId result
;
29867 PyObject
* obj0
= 0 ;
29868 char *kwnames
[] = {
29869 (char *) "self", NULL
29872 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetFirstVisibleItem",kwnames
,&obj0
)) goto fail
;
29873 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29874 if (SWIG_arg_fail(1)) SWIG_fail
;
29876 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29877 result
= ((wxPyTreeCtrl
const *)arg1
)->GetFirstVisibleItem();
29879 wxPyEndAllowThreads(__tstate
);
29880 if (PyErr_Occurred()) SWIG_fail
;
29883 wxTreeItemId
* resultptr
;
29884 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
29885 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
29893 static PyObject
*_wrap_TreeCtrl_GetNextVisible(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29894 PyObject
*resultobj
= NULL
;
29895 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29896 wxTreeItemId
*arg2
= 0 ;
29897 wxTreeItemId result
;
29898 PyObject
* obj0
= 0 ;
29899 PyObject
* obj1
= 0 ;
29900 char *kwnames
[] = {
29901 (char *) "self",(char *) "item", NULL
29904 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetNextVisible",kwnames
,&obj0
,&obj1
)) goto fail
;
29905 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29906 if (SWIG_arg_fail(1)) SWIG_fail
;
29908 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29909 if (SWIG_arg_fail(2)) SWIG_fail
;
29910 if (arg2
== NULL
) {
29911 SWIG_null_ref("wxTreeItemId");
29913 if (SWIG_arg_fail(2)) SWIG_fail
;
29916 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29917 result
= ((wxPyTreeCtrl
const *)arg1
)->GetNextVisible((wxTreeItemId
const &)*arg2
);
29919 wxPyEndAllowThreads(__tstate
);
29920 if (PyErr_Occurred()) SWIG_fail
;
29923 wxTreeItemId
* resultptr
;
29924 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
29925 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
29933 static PyObject
*_wrap_TreeCtrl_GetPrevVisible(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29934 PyObject
*resultobj
= NULL
;
29935 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29936 wxTreeItemId
*arg2
= 0 ;
29937 wxTreeItemId result
;
29938 PyObject
* obj0
= 0 ;
29939 PyObject
* obj1
= 0 ;
29940 char *kwnames
[] = {
29941 (char *) "self",(char *) "item", NULL
29944 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_GetPrevVisible",kwnames
,&obj0
,&obj1
)) goto fail
;
29945 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29946 if (SWIG_arg_fail(1)) SWIG_fail
;
29948 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
29949 if (SWIG_arg_fail(2)) SWIG_fail
;
29950 if (arg2
== NULL
) {
29951 SWIG_null_ref("wxTreeItemId");
29953 if (SWIG_arg_fail(2)) SWIG_fail
;
29956 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29957 result
= ((wxPyTreeCtrl
const *)arg1
)->GetPrevVisible((wxTreeItemId
const &)*arg2
);
29959 wxPyEndAllowThreads(__tstate
);
29960 if (PyErr_Occurred()) SWIG_fail
;
29963 wxTreeItemId
* resultptr
;
29964 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
29965 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
29973 static PyObject
*_wrap_TreeCtrl_AddRoot(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
29974 PyObject
*resultobj
= NULL
;
29975 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
29976 wxString
*arg2
= 0 ;
29977 int arg3
= (int) -1 ;
29978 int arg4
= (int) -1 ;
29979 wxPyTreeItemData
*arg5
= (wxPyTreeItemData
*) NULL
;
29980 wxTreeItemId result
;
29981 bool temp2
= false ;
29982 PyObject
* obj0
= 0 ;
29983 PyObject
* obj1
= 0 ;
29984 PyObject
* obj2
= 0 ;
29985 PyObject
* obj3
= 0 ;
29986 PyObject
* obj4
= 0 ;
29987 char *kwnames
[] = {
29988 (char *) "self",(char *) "text",(char *) "image",(char *) "selectedImage",(char *) "data", NULL
29991 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:TreeCtrl_AddRoot",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
29992 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
29993 if (SWIG_arg_fail(1)) SWIG_fail
;
29995 arg2
= wxString_in_helper(obj1
);
29996 if (arg2
== NULL
) SWIG_fail
;
30001 arg3
= static_cast<int >(SWIG_As_int(obj2
));
30002 if (SWIG_arg_fail(3)) SWIG_fail
;
30007 arg4
= static_cast<int >(SWIG_As_int(obj3
));
30008 if (SWIG_arg_fail(4)) SWIG_fail
;
30012 SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
30013 if (SWIG_arg_fail(5)) SWIG_fail
;
30016 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30017 result
= (arg1
)->AddRoot((wxString
const &)*arg2
,arg3
,arg4
,arg5
);
30019 wxPyEndAllowThreads(__tstate
);
30020 if (PyErr_Occurred()) SWIG_fail
;
30023 wxTreeItemId
* resultptr
;
30024 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
30025 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
30041 static PyObject
*_wrap_TreeCtrl_PrependItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30042 PyObject
*resultobj
= NULL
;
30043 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30044 wxTreeItemId
*arg2
= 0 ;
30045 wxString
*arg3
= 0 ;
30046 int arg4
= (int) -1 ;
30047 int arg5
= (int) -1 ;
30048 wxPyTreeItemData
*arg6
= (wxPyTreeItemData
*) NULL
;
30049 wxTreeItemId result
;
30050 bool temp3
= false ;
30051 PyObject
* obj0
= 0 ;
30052 PyObject
* obj1
= 0 ;
30053 PyObject
* obj2
= 0 ;
30054 PyObject
* obj3
= 0 ;
30055 PyObject
* obj4
= 0 ;
30056 PyObject
* obj5
= 0 ;
30057 char *kwnames
[] = {
30058 (char *) "self",(char *) "parent",(char *) "text",(char *) "image",(char *) "selectedImage",(char *) "data", NULL
30061 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOO:TreeCtrl_PrependItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
30062 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30063 if (SWIG_arg_fail(1)) SWIG_fail
;
30065 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30066 if (SWIG_arg_fail(2)) SWIG_fail
;
30067 if (arg2
== NULL
) {
30068 SWIG_null_ref("wxTreeItemId");
30070 if (SWIG_arg_fail(2)) SWIG_fail
;
30073 arg3
= wxString_in_helper(obj2
);
30074 if (arg3
== NULL
) SWIG_fail
;
30079 arg4
= static_cast<int >(SWIG_As_int(obj3
));
30080 if (SWIG_arg_fail(4)) SWIG_fail
;
30085 arg5
= static_cast<int >(SWIG_As_int(obj4
));
30086 if (SWIG_arg_fail(5)) SWIG_fail
;
30090 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
30091 if (SWIG_arg_fail(6)) SWIG_fail
;
30094 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30095 result
= (arg1
)->PrependItem((wxTreeItemId
const &)*arg2
,(wxString
const &)*arg3
,arg4
,arg5
,arg6
);
30097 wxPyEndAllowThreads(__tstate
);
30098 if (PyErr_Occurred()) SWIG_fail
;
30101 wxTreeItemId
* resultptr
;
30102 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
30103 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
30119 static PyObject
*_wrap_TreeCtrl_InsertItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30120 PyObject
*resultobj
= NULL
;
30121 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30122 wxTreeItemId
*arg2
= 0 ;
30123 wxTreeItemId
*arg3
= 0 ;
30124 wxString
*arg4
= 0 ;
30125 int arg5
= (int) -1 ;
30126 int arg6
= (int) -1 ;
30127 wxPyTreeItemData
*arg7
= (wxPyTreeItemData
*) NULL
;
30128 wxTreeItemId result
;
30129 bool temp4
= false ;
30130 PyObject
* obj0
= 0 ;
30131 PyObject
* obj1
= 0 ;
30132 PyObject
* obj2
= 0 ;
30133 PyObject
* obj3
= 0 ;
30134 PyObject
* obj4
= 0 ;
30135 PyObject
* obj5
= 0 ;
30136 PyObject
* obj6
= 0 ;
30137 char *kwnames
[] = {
30138 (char *) "self",(char *) "parent",(char *) "idPrevious",(char *) "text",(char *) "image",(char *) "selectedImage",(char *) "data", NULL
30141 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOO:TreeCtrl_InsertItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
30142 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30143 if (SWIG_arg_fail(1)) SWIG_fail
;
30145 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30146 if (SWIG_arg_fail(2)) SWIG_fail
;
30147 if (arg2
== NULL
) {
30148 SWIG_null_ref("wxTreeItemId");
30150 if (SWIG_arg_fail(2)) SWIG_fail
;
30153 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30154 if (SWIG_arg_fail(3)) SWIG_fail
;
30155 if (arg3
== NULL
) {
30156 SWIG_null_ref("wxTreeItemId");
30158 if (SWIG_arg_fail(3)) SWIG_fail
;
30161 arg4
= wxString_in_helper(obj3
);
30162 if (arg4
== NULL
) SWIG_fail
;
30167 arg5
= static_cast<int >(SWIG_As_int(obj4
));
30168 if (SWIG_arg_fail(5)) SWIG_fail
;
30173 arg6
= static_cast<int >(SWIG_As_int(obj5
));
30174 if (SWIG_arg_fail(6)) SWIG_fail
;
30178 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
30179 if (SWIG_arg_fail(7)) SWIG_fail
;
30182 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30183 result
= (arg1
)->InsertItem((wxTreeItemId
const &)*arg2
,(wxTreeItemId
const &)*arg3
,(wxString
const &)*arg4
,arg5
,arg6
,arg7
);
30185 wxPyEndAllowThreads(__tstate
);
30186 if (PyErr_Occurred()) SWIG_fail
;
30189 wxTreeItemId
* resultptr
;
30190 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
30191 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
30207 static PyObject
*_wrap_TreeCtrl_InsertItemBefore(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30208 PyObject
*resultobj
= NULL
;
30209 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30210 wxTreeItemId
*arg2
= 0 ;
30212 wxString
*arg4
= 0 ;
30213 int arg5
= (int) -1 ;
30214 int arg6
= (int) -1 ;
30215 wxPyTreeItemData
*arg7
= (wxPyTreeItemData
*) NULL
;
30216 wxTreeItemId result
;
30217 bool temp4
= false ;
30218 PyObject
* obj0
= 0 ;
30219 PyObject
* obj1
= 0 ;
30220 PyObject
* obj2
= 0 ;
30221 PyObject
* obj3
= 0 ;
30222 PyObject
* obj4
= 0 ;
30223 PyObject
* obj5
= 0 ;
30224 PyObject
* obj6
= 0 ;
30225 char *kwnames
[] = {
30226 (char *) "self",(char *) "parent",(char *) "index",(char *) "text",(char *) "image",(char *) "selectedImage",(char *) "data", NULL
30229 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOO:TreeCtrl_InsertItemBefore",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
30230 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30231 if (SWIG_arg_fail(1)) SWIG_fail
;
30233 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30234 if (SWIG_arg_fail(2)) SWIG_fail
;
30235 if (arg2
== NULL
) {
30236 SWIG_null_ref("wxTreeItemId");
30238 if (SWIG_arg_fail(2)) SWIG_fail
;
30241 arg3
= static_cast<size_t >(SWIG_As_unsigned_SS_long(obj2
));
30242 if (SWIG_arg_fail(3)) SWIG_fail
;
30245 arg4
= wxString_in_helper(obj3
);
30246 if (arg4
== NULL
) SWIG_fail
;
30251 arg5
= static_cast<int >(SWIG_As_int(obj4
));
30252 if (SWIG_arg_fail(5)) SWIG_fail
;
30257 arg6
= static_cast<int >(SWIG_As_int(obj5
));
30258 if (SWIG_arg_fail(6)) SWIG_fail
;
30262 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
30263 if (SWIG_arg_fail(7)) SWIG_fail
;
30266 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30267 result
= (arg1
)->InsertItem((wxTreeItemId
const &)*arg2
,arg3
,(wxString
const &)*arg4
,arg5
,arg6
,arg7
);
30269 wxPyEndAllowThreads(__tstate
);
30270 if (PyErr_Occurred()) SWIG_fail
;
30273 wxTreeItemId
* resultptr
;
30274 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
30275 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
30291 static PyObject
*_wrap_TreeCtrl_AppendItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30292 PyObject
*resultobj
= NULL
;
30293 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30294 wxTreeItemId
*arg2
= 0 ;
30295 wxString
*arg3
= 0 ;
30296 int arg4
= (int) -1 ;
30297 int arg5
= (int) -1 ;
30298 wxPyTreeItemData
*arg6
= (wxPyTreeItemData
*) NULL
;
30299 wxTreeItemId result
;
30300 bool temp3
= false ;
30301 PyObject
* obj0
= 0 ;
30302 PyObject
* obj1
= 0 ;
30303 PyObject
* obj2
= 0 ;
30304 PyObject
* obj3
= 0 ;
30305 PyObject
* obj4
= 0 ;
30306 PyObject
* obj5
= 0 ;
30307 char *kwnames
[] = {
30308 (char *) "self",(char *) "parent",(char *) "text",(char *) "image",(char *) "selectedImage",(char *) "data", NULL
30311 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOO:TreeCtrl_AppendItem",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
30312 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30313 if (SWIG_arg_fail(1)) SWIG_fail
;
30315 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30316 if (SWIG_arg_fail(2)) SWIG_fail
;
30317 if (arg2
== NULL
) {
30318 SWIG_null_ref("wxTreeItemId");
30320 if (SWIG_arg_fail(2)) SWIG_fail
;
30323 arg3
= wxString_in_helper(obj2
);
30324 if (arg3
== NULL
) SWIG_fail
;
30329 arg4
= static_cast<int >(SWIG_As_int(obj3
));
30330 if (SWIG_arg_fail(4)) SWIG_fail
;
30335 arg5
= static_cast<int >(SWIG_As_int(obj4
));
30336 if (SWIG_arg_fail(5)) SWIG_fail
;
30340 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxPyTreeItemData
, SWIG_POINTER_EXCEPTION
| 0);
30341 if (SWIG_arg_fail(6)) SWIG_fail
;
30344 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30345 result
= (arg1
)->AppendItem((wxTreeItemId
const &)*arg2
,(wxString
const &)*arg3
,arg4
,arg5
,arg6
);
30347 wxPyEndAllowThreads(__tstate
);
30348 if (PyErr_Occurred()) SWIG_fail
;
30351 wxTreeItemId
* resultptr
;
30352 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
30353 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
30369 static PyObject
*_wrap_TreeCtrl_Delete(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30370 PyObject
*resultobj
= NULL
;
30371 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30372 wxTreeItemId
*arg2
= 0 ;
30373 PyObject
* obj0
= 0 ;
30374 PyObject
* obj1
= 0 ;
30375 char *kwnames
[] = {
30376 (char *) "self",(char *) "item", NULL
30379 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_Delete",kwnames
,&obj0
,&obj1
)) goto fail
;
30380 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30381 if (SWIG_arg_fail(1)) SWIG_fail
;
30383 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30384 if (SWIG_arg_fail(2)) SWIG_fail
;
30385 if (arg2
== NULL
) {
30386 SWIG_null_ref("wxTreeItemId");
30388 if (SWIG_arg_fail(2)) SWIG_fail
;
30391 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30392 (arg1
)->Delete((wxTreeItemId
const &)*arg2
);
30394 wxPyEndAllowThreads(__tstate
);
30395 if (PyErr_Occurred()) SWIG_fail
;
30397 Py_INCREF(Py_None
); resultobj
= Py_None
;
30404 static PyObject
*_wrap_TreeCtrl_DeleteChildren(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30405 PyObject
*resultobj
= NULL
;
30406 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30407 wxTreeItemId
*arg2
= 0 ;
30408 PyObject
* obj0
= 0 ;
30409 PyObject
* obj1
= 0 ;
30410 char *kwnames
[] = {
30411 (char *) "self",(char *) "item", NULL
30414 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_DeleteChildren",kwnames
,&obj0
,&obj1
)) goto fail
;
30415 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30416 if (SWIG_arg_fail(1)) SWIG_fail
;
30418 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30419 if (SWIG_arg_fail(2)) SWIG_fail
;
30420 if (arg2
== NULL
) {
30421 SWIG_null_ref("wxTreeItemId");
30423 if (SWIG_arg_fail(2)) SWIG_fail
;
30426 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30427 (arg1
)->DeleteChildren((wxTreeItemId
const &)*arg2
);
30429 wxPyEndAllowThreads(__tstate
);
30430 if (PyErr_Occurred()) SWIG_fail
;
30432 Py_INCREF(Py_None
); resultobj
= Py_None
;
30439 static PyObject
*_wrap_TreeCtrl_DeleteAllItems(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30440 PyObject
*resultobj
= NULL
;
30441 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30442 PyObject
* obj0
= 0 ;
30443 char *kwnames
[] = {
30444 (char *) "self", NULL
30447 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_DeleteAllItems",kwnames
,&obj0
)) goto fail
;
30448 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30449 if (SWIG_arg_fail(1)) SWIG_fail
;
30451 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30452 (arg1
)->DeleteAllItems();
30454 wxPyEndAllowThreads(__tstate
);
30455 if (PyErr_Occurred()) SWIG_fail
;
30457 Py_INCREF(Py_None
); resultobj
= Py_None
;
30464 static PyObject
*_wrap_TreeCtrl_Expand(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30465 PyObject
*resultobj
= NULL
;
30466 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30467 wxTreeItemId
*arg2
= 0 ;
30468 PyObject
* obj0
= 0 ;
30469 PyObject
* obj1
= 0 ;
30470 char *kwnames
[] = {
30471 (char *) "self",(char *) "item", NULL
30474 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_Expand",kwnames
,&obj0
,&obj1
)) goto fail
;
30475 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30476 if (SWIG_arg_fail(1)) SWIG_fail
;
30478 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30479 if (SWIG_arg_fail(2)) SWIG_fail
;
30480 if (arg2
== NULL
) {
30481 SWIG_null_ref("wxTreeItemId");
30483 if (SWIG_arg_fail(2)) SWIG_fail
;
30486 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30487 (arg1
)->Expand((wxTreeItemId
const &)*arg2
);
30489 wxPyEndAllowThreads(__tstate
);
30490 if (PyErr_Occurred()) SWIG_fail
;
30492 Py_INCREF(Py_None
); resultobj
= Py_None
;
30499 static PyObject
*_wrap_TreeCtrl_Collapse(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30500 PyObject
*resultobj
= NULL
;
30501 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30502 wxTreeItemId
*arg2
= 0 ;
30503 PyObject
* obj0
= 0 ;
30504 PyObject
* obj1
= 0 ;
30505 char *kwnames
[] = {
30506 (char *) "self",(char *) "item", NULL
30509 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_Collapse",kwnames
,&obj0
,&obj1
)) goto fail
;
30510 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30511 if (SWIG_arg_fail(1)) SWIG_fail
;
30513 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30514 if (SWIG_arg_fail(2)) SWIG_fail
;
30515 if (arg2
== NULL
) {
30516 SWIG_null_ref("wxTreeItemId");
30518 if (SWIG_arg_fail(2)) SWIG_fail
;
30521 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30522 (arg1
)->Collapse((wxTreeItemId
const &)*arg2
);
30524 wxPyEndAllowThreads(__tstate
);
30525 if (PyErr_Occurred()) SWIG_fail
;
30527 Py_INCREF(Py_None
); resultobj
= Py_None
;
30534 static PyObject
*_wrap_TreeCtrl_CollapseAndReset(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30535 PyObject
*resultobj
= NULL
;
30536 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30537 wxTreeItemId
*arg2
= 0 ;
30538 PyObject
* obj0
= 0 ;
30539 PyObject
* obj1
= 0 ;
30540 char *kwnames
[] = {
30541 (char *) "self",(char *) "item", NULL
30544 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_CollapseAndReset",kwnames
,&obj0
,&obj1
)) goto fail
;
30545 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30546 if (SWIG_arg_fail(1)) SWIG_fail
;
30548 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30549 if (SWIG_arg_fail(2)) SWIG_fail
;
30550 if (arg2
== NULL
) {
30551 SWIG_null_ref("wxTreeItemId");
30553 if (SWIG_arg_fail(2)) SWIG_fail
;
30556 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30557 (arg1
)->CollapseAndReset((wxTreeItemId
const &)*arg2
);
30559 wxPyEndAllowThreads(__tstate
);
30560 if (PyErr_Occurred()) SWIG_fail
;
30562 Py_INCREF(Py_None
); resultobj
= Py_None
;
30569 static PyObject
*_wrap_TreeCtrl_Toggle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30570 PyObject
*resultobj
= NULL
;
30571 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30572 wxTreeItemId
*arg2
= 0 ;
30573 PyObject
* obj0
= 0 ;
30574 PyObject
* obj1
= 0 ;
30575 char *kwnames
[] = {
30576 (char *) "self",(char *) "item", NULL
30579 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_Toggle",kwnames
,&obj0
,&obj1
)) goto fail
;
30580 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30581 if (SWIG_arg_fail(1)) SWIG_fail
;
30583 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30584 if (SWIG_arg_fail(2)) SWIG_fail
;
30585 if (arg2
== NULL
) {
30586 SWIG_null_ref("wxTreeItemId");
30588 if (SWIG_arg_fail(2)) SWIG_fail
;
30591 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30592 (arg1
)->Toggle((wxTreeItemId
const &)*arg2
);
30594 wxPyEndAllowThreads(__tstate
);
30595 if (PyErr_Occurred()) SWIG_fail
;
30597 Py_INCREF(Py_None
); resultobj
= Py_None
;
30604 static PyObject
*_wrap_TreeCtrl_Unselect(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30605 PyObject
*resultobj
= NULL
;
30606 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30607 PyObject
* obj0
= 0 ;
30608 char *kwnames
[] = {
30609 (char *) "self", NULL
30612 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_Unselect",kwnames
,&obj0
)) goto fail
;
30613 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30614 if (SWIG_arg_fail(1)) SWIG_fail
;
30616 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30617 (arg1
)->Unselect();
30619 wxPyEndAllowThreads(__tstate
);
30620 if (PyErr_Occurred()) SWIG_fail
;
30622 Py_INCREF(Py_None
); resultobj
= Py_None
;
30629 static PyObject
*_wrap_TreeCtrl_UnselectItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30630 PyObject
*resultobj
= NULL
;
30631 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30632 wxTreeItemId
*arg2
= 0 ;
30633 PyObject
* obj0
= 0 ;
30634 PyObject
* obj1
= 0 ;
30635 char *kwnames
[] = {
30636 (char *) "self",(char *) "item", NULL
30639 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_UnselectItem",kwnames
,&obj0
,&obj1
)) goto fail
;
30640 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30641 if (SWIG_arg_fail(1)) SWIG_fail
;
30643 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30644 if (SWIG_arg_fail(2)) SWIG_fail
;
30645 if (arg2
== NULL
) {
30646 SWIG_null_ref("wxTreeItemId");
30648 if (SWIG_arg_fail(2)) SWIG_fail
;
30651 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30652 (arg1
)->UnselectItem((wxTreeItemId
const &)*arg2
);
30654 wxPyEndAllowThreads(__tstate
);
30655 if (PyErr_Occurred()) SWIG_fail
;
30657 Py_INCREF(Py_None
); resultobj
= Py_None
;
30664 static PyObject
*_wrap_TreeCtrl_UnselectAll(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30665 PyObject
*resultobj
= NULL
;
30666 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30667 PyObject
* obj0
= 0 ;
30668 char *kwnames
[] = {
30669 (char *) "self", NULL
30672 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_UnselectAll",kwnames
,&obj0
)) goto fail
;
30673 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30674 if (SWIG_arg_fail(1)) SWIG_fail
;
30676 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30677 (arg1
)->UnselectAll();
30679 wxPyEndAllowThreads(__tstate
);
30680 if (PyErr_Occurred()) SWIG_fail
;
30682 Py_INCREF(Py_None
); resultobj
= Py_None
;
30689 static PyObject
*_wrap_TreeCtrl_SelectItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30690 PyObject
*resultobj
= NULL
;
30691 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30692 wxTreeItemId
*arg2
= 0 ;
30693 bool arg3
= (bool) true ;
30694 PyObject
* obj0
= 0 ;
30695 PyObject
* obj1
= 0 ;
30696 PyObject
* obj2
= 0 ;
30697 char *kwnames
[] = {
30698 (char *) "self",(char *) "item",(char *) "select", NULL
30701 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TreeCtrl_SelectItem",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
30702 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30703 if (SWIG_arg_fail(1)) SWIG_fail
;
30705 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30706 if (SWIG_arg_fail(2)) SWIG_fail
;
30707 if (arg2
== NULL
) {
30708 SWIG_null_ref("wxTreeItemId");
30710 if (SWIG_arg_fail(2)) SWIG_fail
;
30714 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
30715 if (SWIG_arg_fail(3)) SWIG_fail
;
30719 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30720 (arg1
)->SelectItem((wxTreeItemId
const &)*arg2
,arg3
);
30722 wxPyEndAllowThreads(__tstate
);
30723 if (PyErr_Occurred()) SWIG_fail
;
30725 Py_INCREF(Py_None
); resultobj
= Py_None
;
30732 static PyObject
*_wrap_TreeCtrl_ToggleItemSelection(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30733 PyObject
*resultobj
= NULL
;
30734 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30735 wxTreeItemId
*arg2
= 0 ;
30736 PyObject
* obj0
= 0 ;
30737 PyObject
* obj1
= 0 ;
30738 char *kwnames
[] = {
30739 (char *) "self",(char *) "item", NULL
30742 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_ToggleItemSelection",kwnames
,&obj0
,&obj1
)) goto fail
;
30743 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30744 if (SWIG_arg_fail(1)) SWIG_fail
;
30746 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30747 if (SWIG_arg_fail(2)) SWIG_fail
;
30748 if (arg2
== NULL
) {
30749 SWIG_null_ref("wxTreeItemId");
30751 if (SWIG_arg_fail(2)) SWIG_fail
;
30754 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30755 (arg1
)->ToggleItemSelection((wxTreeItemId
const &)*arg2
);
30757 wxPyEndAllowThreads(__tstate
);
30758 if (PyErr_Occurred()) SWIG_fail
;
30760 Py_INCREF(Py_None
); resultobj
= Py_None
;
30767 static PyObject
*_wrap_TreeCtrl_EnsureVisible(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30768 PyObject
*resultobj
= NULL
;
30769 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30770 wxTreeItemId
*arg2
= 0 ;
30771 PyObject
* obj0
= 0 ;
30772 PyObject
* obj1
= 0 ;
30773 char *kwnames
[] = {
30774 (char *) "self",(char *) "item", NULL
30777 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_EnsureVisible",kwnames
,&obj0
,&obj1
)) goto fail
;
30778 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30779 if (SWIG_arg_fail(1)) SWIG_fail
;
30781 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30782 if (SWIG_arg_fail(2)) SWIG_fail
;
30783 if (arg2
== NULL
) {
30784 SWIG_null_ref("wxTreeItemId");
30786 if (SWIG_arg_fail(2)) SWIG_fail
;
30789 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30790 (arg1
)->EnsureVisible((wxTreeItemId
const &)*arg2
);
30792 wxPyEndAllowThreads(__tstate
);
30793 if (PyErr_Occurred()) SWIG_fail
;
30795 Py_INCREF(Py_None
); resultobj
= Py_None
;
30802 static PyObject
*_wrap_TreeCtrl_ScrollTo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30803 PyObject
*resultobj
= NULL
;
30804 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30805 wxTreeItemId
*arg2
= 0 ;
30806 PyObject
* obj0
= 0 ;
30807 PyObject
* obj1
= 0 ;
30808 char *kwnames
[] = {
30809 (char *) "self",(char *) "item", NULL
30812 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_ScrollTo",kwnames
,&obj0
,&obj1
)) goto fail
;
30813 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30814 if (SWIG_arg_fail(1)) SWIG_fail
;
30816 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30817 if (SWIG_arg_fail(2)) SWIG_fail
;
30818 if (arg2
== NULL
) {
30819 SWIG_null_ref("wxTreeItemId");
30821 if (SWIG_arg_fail(2)) SWIG_fail
;
30824 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30825 (arg1
)->ScrollTo((wxTreeItemId
const &)*arg2
);
30827 wxPyEndAllowThreads(__tstate
);
30828 if (PyErr_Occurred()) SWIG_fail
;
30830 Py_INCREF(Py_None
); resultobj
= Py_None
;
30837 static PyObject
*_wrap_TreeCtrl_EditLabel(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30838 PyObject
*resultobj
= NULL
;
30839 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30840 wxTreeItemId
*arg2
= 0 ;
30841 PyObject
* obj0
= 0 ;
30842 PyObject
* obj1
= 0 ;
30843 char *kwnames
[] = {
30844 (char *) "self",(char *) "item", NULL
30847 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_EditLabel",kwnames
,&obj0
,&obj1
)) goto fail
;
30848 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30849 if (SWIG_arg_fail(1)) SWIG_fail
;
30851 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30852 if (SWIG_arg_fail(2)) SWIG_fail
;
30853 if (arg2
== NULL
) {
30854 SWIG_null_ref("wxTreeItemId");
30856 if (SWIG_arg_fail(2)) SWIG_fail
;
30859 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30860 (arg1
)->EditLabel((wxTreeItemId
const &)*arg2
);
30862 wxPyEndAllowThreads(__tstate
);
30863 if (PyErr_Occurred()) SWIG_fail
;
30865 Py_INCREF(Py_None
); resultobj
= Py_None
;
30872 static PyObject
*_wrap_TreeCtrl_GetEditControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30873 PyObject
*resultobj
= NULL
;
30874 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30875 wxTextCtrl
*result
;
30876 PyObject
* obj0
= 0 ;
30877 char *kwnames
[] = {
30878 (char *) "self", NULL
30881 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TreeCtrl_GetEditControl",kwnames
,&obj0
)) goto fail
;
30882 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30883 if (SWIG_arg_fail(1)) SWIG_fail
;
30885 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30886 result
= (wxTextCtrl
*)((wxPyTreeCtrl
const *)arg1
)->GetEditControl();
30888 wxPyEndAllowThreads(__tstate
);
30889 if (PyErr_Occurred()) SWIG_fail
;
30892 resultobj
= wxPyMake_wxObject(result
, 0);
30900 static PyObject
*_wrap_TreeCtrl_SortChildren(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30901 PyObject
*resultobj
= NULL
;
30902 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30903 wxTreeItemId
*arg2
= 0 ;
30904 PyObject
* obj0
= 0 ;
30905 PyObject
* obj1
= 0 ;
30906 char *kwnames
[] = {
30907 (char *) "self",(char *) "item", NULL
30910 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_SortChildren",kwnames
,&obj0
,&obj1
)) goto fail
;
30911 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30912 if (SWIG_arg_fail(1)) SWIG_fail
;
30914 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30915 if (SWIG_arg_fail(2)) SWIG_fail
;
30916 if (arg2
== NULL
) {
30917 SWIG_null_ref("wxTreeItemId");
30919 if (SWIG_arg_fail(2)) SWIG_fail
;
30922 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30923 (arg1
)->SortChildren((wxTreeItemId
const &)*arg2
);
30925 wxPyEndAllowThreads(__tstate
);
30926 if (PyErr_Occurred()) SWIG_fail
;
30928 Py_INCREF(Py_None
); resultobj
= Py_None
;
30935 static PyObject
*_wrap_TreeCtrl_HitTest(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30936 PyObject
*resultobj
= NULL
;
30937 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30938 wxPoint
*arg2
= 0 ;
30940 wxTreeItemId result
;
30944 PyObject
* obj0
= 0 ;
30945 PyObject
* obj1
= 0 ;
30946 char *kwnames
[] = {
30947 (char *) "self",(char *) "point", NULL
30950 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
30951 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TreeCtrl_HitTest",kwnames
,&obj0
,&obj1
)) goto fail
;
30952 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30953 if (SWIG_arg_fail(1)) SWIG_fail
;
30956 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
30959 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30960 result
= (arg1
)->HitTest((wxPoint
const &)*arg2
,*arg3
);
30962 wxPyEndAllowThreads(__tstate
);
30963 if (PyErr_Occurred()) SWIG_fail
;
30966 wxTreeItemId
* resultptr
;
30967 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
30968 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
30970 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
30971 SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0)));
30978 static PyObject
*_wrap_TreeCtrl_GetBoundingRect(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
30979 PyObject
*resultobj
= NULL
;
30980 wxPyTreeCtrl
*arg1
= (wxPyTreeCtrl
*) 0 ;
30981 wxTreeItemId
*arg2
= 0 ;
30982 bool arg3
= (bool) false ;
30984 PyObject
* obj0
= 0 ;
30985 PyObject
* obj1
= 0 ;
30986 PyObject
* obj2
= 0 ;
30987 char *kwnames
[] = {
30988 (char *) "self",(char *) "item",(char *) "textOnly", NULL
30991 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TreeCtrl_GetBoundingRect",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
30992 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
30993 if (SWIG_arg_fail(1)) SWIG_fail
;
30995 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
30996 if (SWIG_arg_fail(2)) SWIG_fail
;
30997 if (arg2
== NULL
) {
30998 SWIG_null_ref("wxTreeItemId");
31000 if (SWIG_arg_fail(2)) SWIG_fail
;
31004 arg3
= static_cast<bool >(SWIG_As_bool(obj2
));
31005 if (SWIG_arg_fail(3)) SWIG_fail
;
31009 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31010 result
= (PyObject
*)wxPyTreeCtrl_GetBoundingRect(arg1
,(wxTreeItemId
const &)*arg2
,arg3
);
31012 wxPyEndAllowThreads(__tstate
);
31013 if (PyErr_Occurred()) SWIG_fail
;
31015 resultobj
= result
;
31022 static PyObject
*_wrap_TreeCtrl_GetClassDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31023 PyObject
*resultobj
= NULL
;
31024 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
31025 wxVisualAttributes result
;
31026 PyObject
* obj0
= 0 ;
31027 char *kwnames
[] = {
31028 (char *) "variant", NULL
31031 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:TreeCtrl_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
;
31034 arg1
= static_cast<wxWindowVariant
>(SWIG_As_int(obj0
));
31035 if (SWIG_arg_fail(1)) SWIG_fail
;
31039 if (!wxPyCheckForApp()) SWIG_fail
;
31040 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31041 result
= wxPyTreeCtrl::GetClassDefaultAttributes(arg1
);
31043 wxPyEndAllowThreads(__tstate
);
31044 if (PyErr_Occurred()) SWIG_fail
;
31047 wxVisualAttributes
* resultptr
;
31048 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
31049 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
31057 static PyObject
* TreeCtrl_swigregister(PyObject
*, PyObject
*args
) {
31059 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
31060 SWIG_TypeClientData(SWIGTYPE_p_wxPyTreeCtrl
, obj
);
31062 return Py_BuildValue((char *)"");
31064 static int _wrap_DirDialogDefaultFolderStr_set(PyObject
*) {
31065 PyErr_SetString(PyExc_TypeError
,"Variable DirDialogDefaultFolderStr is read-only.");
31070 static PyObject
*_wrap_DirDialogDefaultFolderStr_get(void) {
31071 PyObject
*pyobj
= NULL
;
31075 pyobj
= PyUnicode_FromWideChar((&wxPyDirDialogDefaultFolderStr
)->c_str(), (&wxPyDirDialogDefaultFolderStr
)->Len());
31077 pyobj
= PyString_FromStringAndSize((&wxPyDirDialogDefaultFolderStr
)->c_str(), (&wxPyDirDialogDefaultFolderStr
)->Len());
31084 static PyObject
*_wrap_new_GenericDirCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31085 PyObject
*resultobj
= NULL
;
31086 wxWindow
*arg1
= (wxWindow
*) 0 ;
31087 int arg2
= (int) (int)-1 ;
31088 wxString
const &arg3_defvalue
= wxPyDirDialogDefaultFolderStr
;
31089 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
31090 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
31091 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
31092 wxSize
const &arg5_defvalue
= wxDefaultSize
;
31093 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
31094 long arg6
= (long) wxDIRCTRL_3D_INTERNAL
|wxSUNKEN_BORDER
;
31095 wxString
const &arg7_defvalue
= wxPyEmptyString
;
31096 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
31097 int arg8
= (int) 0 ;
31098 wxString
const &arg9_defvalue
= wxPyTreeCtrlNameStr
;
31099 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
31100 wxGenericDirCtrl
*result
;
31101 bool temp3
= false ;
31104 bool temp7
= false ;
31105 bool temp9
= false ;
31106 PyObject
* obj0
= 0 ;
31107 PyObject
* obj1
= 0 ;
31108 PyObject
* obj2
= 0 ;
31109 PyObject
* obj3
= 0 ;
31110 PyObject
* obj4
= 0 ;
31111 PyObject
* obj5
= 0 ;
31112 PyObject
* obj6
= 0 ;
31113 PyObject
* obj7
= 0 ;
31114 PyObject
* obj8
= 0 ;
31115 char *kwnames
[] = {
31116 (char *) "parent",(char *) "id",(char *) "dir",(char *) "pos",(char *) "size",(char *) "style",(char *) "filter",(char *) "defaultFilter",(char *) "name", NULL
31119 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOOO:new_GenericDirCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
31120 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
31121 if (SWIG_arg_fail(1)) SWIG_fail
;
31124 arg2
= static_cast<int const >(SWIG_As_int(obj1
));
31125 if (SWIG_arg_fail(2)) SWIG_fail
;
31130 arg3
= wxString_in_helper(obj2
);
31131 if (arg3
== NULL
) SWIG_fail
;
31138 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
31144 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
31149 arg6
= static_cast<long >(SWIG_As_long(obj5
));
31150 if (SWIG_arg_fail(6)) SWIG_fail
;
31155 arg7
= wxString_in_helper(obj6
);
31156 if (arg7
== NULL
) SWIG_fail
;
31162 arg8
= static_cast<int >(SWIG_As_int(obj7
));
31163 if (SWIG_arg_fail(8)) SWIG_fail
;
31168 arg9
= wxString_in_helper(obj8
);
31169 if (arg9
== NULL
) SWIG_fail
;
31174 if (!wxPyCheckForApp()) SWIG_fail
;
31175 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31176 result
= (wxGenericDirCtrl
*)new wxGenericDirCtrl(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
,arg8
,(wxString
const &)*arg9
);
31178 wxPyEndAllowThreads(__tstate
);
31179 if (PyErr_Occurred()) SWIG_fail
;
31181 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGenericDirCtrl
, 1);
31212 static PyObject
*_wrap_new_PreGenericDirCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31213 PyObject
*resultobj
= NULL
;
31214 wxGenericDirCtrl
*result
;
31215 char *kwnames
[] = {
31219 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreGenericDirCtrl",kwnames
)) goto fail
;
31221 if (!wxPyCheckForApp()) SWIG_fail
;
31222 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31223 result
= (wxGenericDirCtrl
*)new wxGenericDirCtrl();
31225 wxPyEndAllowThreads(__tstate
);
31226 if (PyErr_Occurred()) SWIG_fail
;
31228 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGenericDirCtrl
, 1);
31235 static PyObject
*_wrap_GenericDirCtrl_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31236 PyObject
*resultobj
= NULL
;
31237 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31238 wxWindow
*arg2
= (wxWindow
*) 0 ;
31239 int arg3
= (int) (int)-1 ;
31240 wxString
const &arg4_defvalue
= wxPyDirDialogDefaultFolderStr
;
31241 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
31242 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
31243 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
31244 wxSize
const &arg6_defvalue
= wxDefaultSize
;
31245 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
31246 long arg7
= (long) wxDIRCTRL_3D_INTERNAL
|wxSUNKEN_BORDER
;
31247 wxString
const &arg8_defvalue
= wxPyEmptyString
;
31248 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
31249 int arg9
= (int) 0 ;
31250 wxString
const &arg10_defvalue
= wxPyTreeCtrlNameStr
;
31251 wxString
*arg10
= (wxString
*) &arg10_defvalue
;
31253 bool temp4
= false ;
31256 bool temp8
= false ;
31257 bool temp10
= false ;
31258 PyObject
* obj0
= 0 ;
31259 PyObject
* obj1
= 0 ;
31260 PyObject
* obj2
= 0 ;
31261 PyObject
* obj3
= 0 ;
31262 PyObject
* obj4
= 0 ;
31263 PyObject
* obj5
= 0 ;
31264 PyObject
* obj6
= 0 ;
31265 PyObject
* obj7
= 0 ;
31266 PyObject
* obj8
= 0 ;
31267 PyObject
* obj9
= 0 ;
31268 char *kwnames
[] = {
31269 (char *) "self",(char *) "parent",(char *) "id",(char *) "dir",(char *) "pos",(char *) "size",(char *) "style",(char *) "filter",(char *) "defaultFilter",(char *) "name", NULL
31272 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOOO:GenericDirCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) goto fail
;
31273 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31274 if (SWIG_arg_fail(1)) SWIG_fail
;
31275 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
31276 if (SWIG_arg_fail(2)) SWIG_fail
;
31279 arg3
= static_cast<int const >(SWIG_As_int(obj2
));
31280 if (SWIG_arg_fail(3)) SWIG_fail
;
31285 arg4
= wxString_in_helper(obj3
);
31286 if (arg4
== NULL
) SWIG_fail
;
31293 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
31299 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
31304 arg7
= static_cast<long >(SWIG_As_long(obj6
));
31305 if (SWIG_arg_fail(7)) SWIG_fail
;
31310 arg8
= wxString_in_helper(obj7
);
31311 if (arg8
== NULL
) SWIG_fail
;
31317 arg9
= static_cast<int >(SWIG_As_int(obj8
));
31318 if (SWIG_arg_fail(9)) SWIG_fail
;
31323 arg10
= wxString_in_helper(obj9
);
31324 if (arg10
== NULL
) SWIG_fail
;
31329 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31330 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
,arg9
,(wxString
const &)*arg10
);
31332 wxPyEndAllowThreads(__tstate
);
31333 if (PyErr_Occurred()) SWIG_fail
;
31336 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
31368 static PyObject
*_wrap_GenericDirCtrl_ExpandPath(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31369 PyObject
*resultobj
= NULL
;
31370 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31371 wxString
*arg2
= 0 ;
31373 bool temp2
= false ;
31374 PyObject
* obj0
= 0 ;
31375 PyObject
* obj1
= 0 ;
31376 char *kwnames
[] = {
31377 (char *) "self",(char *) "path", NULL
31380 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GenericDirCtrl_ExpandPath",kwnames
,&obj0
,&obj1
)) goto fail
;
31381 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31382 if (SWIG_arg_fail(1)) SWIG_fail
;
31384 arg2
= wxString_in_helper(obj1
);
31385 if (arg2
== NULL
) SWIG_fail
;
31389 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31390 result
= (bool)(arg1
)->ExpandPath((wxString
const &)*arg2
);
31392 wxPyEndAllowThreads(__tstate
);
31393 if (PyErr_Occurred()) SWIG_fail
;
31396 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
31412 static PyObject
*_wrap_GenericDirCtrl_GetDefaultPath(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31413 PyObject
*resultobj
= NULL
;
31414 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31416 PyObject
* obj0
= 0 ;
31417 char *kwnames
[] = {
31418 (char *) "self", NULL
31421 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetDefaultPath",kwnames
,&obj0
)) goto fail
;
31422 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31423 if (SWIG_arg_fail(1)) SWIG_fail
;
31425 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31426 result
= ((wxGenericDirCtrl
const *)arg1
)->GetDefaultPath();
31428 wxPyEndAllowThreads(__tstate
);
31429 if (PyErr_Occurred()) SWIG_fail
;
31433 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
31435 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
31444 static PyObject
*_wrap_GenericDirCtrl_SetDefaultPath(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31445 PyObject
*resultobj
= NULL
;
31446 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31447 wxString
*arg2
= 0 ;
31448 bool temp2
= false ;
31449 PyObject
* obj0
= 0 ;
31450 PyObject
* obj1
= 0 ;
31451 char *kwnames
[] = {
31452 (char *) "self",(char *) "path", NULL
31455 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GenericDirCtrl_SetDefaultPath",kwnames
,&obj0
,&obj1
)) goto fail
;
31456 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31457 if (SWIG_arg_fail(1)) SWIG_fail
;
31459 arg2
= wxString_in_helper(obj1
);
31460 if (arg2
== NULL
) SWIG_fail
;
31464 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31465 (arg1
)->SetDefaultPath((wxString
const &)*arg2
);
31467 wxPyEndAllowThreads(__tstate
);
31468 if (PyErr_Occurred()) SWIG_fail
;
31470 Py_INCREF(Py_None
); resultobj
= Py_None
;
31485 static PyObject
*_wrap_GenericDirCtrl_GetPath(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31486 PyObject
*resultobj
= NULL
;
31487 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31489 PyObject
* obj0
= 0 ;
31490 char *kwnames
[] = {
31491 (char *) "self", NULL
31494 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetPath",kwnames
,&obj0
)) goto fail
;
31495 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31496 if (SWIG_arg_fail(1)) SWIG_fail
;
31498 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31499 result
= ((wxGenericDirCtrl
const *)arg1
)->GetPath();
31501 wxPyEndAllowThreads(__tstate
);
31502 if (PyErr_Occurred()) SWIG_fail
;
31506 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
31508 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
31517 static PyObject
*_wrap_GenericDirCtrl_GetFilePath(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31518 PyObject
*resultobj
= NULL
;
31519 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31521 PyObject
* obj0
= 0 ;
31522 char *kwnames
[] = {
31523 (char *) "self", NULL
31526 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetFilePath",kwnames
,&obj0
)) goto fail
;
31527 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31528 if (SWIG_arg_fail(1)) SWIG_fail
;
31530 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31531 result
= ((wxGenericDirCtrl
const *)arg1
)->GetFilePath();
31533 wxPyEndAllowThreads(__tstate
);
31534 if (PyErr_Occurred()) SWIG_fail
;
31538 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
31540 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
31549 static PyObject
*_wrap_GenericDirCtrl_SetPath(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31550 PyObject
*resultobj
= NULL
;
31551 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31552 wxString
*arg2
= 0 ;
31553 bool temp2
= false ;
31554 PyObject
* obj0
= 0 ;
31555 PyObject
* obj1
= 0 ;
31556 char *kwnames
[] = {
31557 (char *) "self",(char *) "path", NULL
31560 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GenericDirCtrl_SetPath",kwnames
,&obj0
,&obj1
)) goto fail
;
31561 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31562 if (SWIG_arg_fail(1)) SWIG_fail
;
31564 arg2
= wxString_in_helper(obj1
);
31565 if (arg2
== NULL
) SWIG_fail
;
31569 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31570 (arg1
)->SetPath((wxString
const &)*arg2
);
31572 wxPyEndAllowThreads(__tstate
);
31573 if (PyErr_Occurred()) SWIG_fail
;
31575 Py_INCREF(Py_None
); resultobj
= Py_None
;
31590 static PyObject
*_wrap_GenericDirCtrl_ShowHidden(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31591 PyObject
*resultobj
= NULL
;
31592 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31594 PyObject
* obj0
= 0 ;
31595 PyObject
* obj1
= 0 ;
31596 char *kwnames
[] = {
31597 (char *) "self",(char *) "show", NULL
31600 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GenericDirCtrl_ShowHidden",kwnames
,&obj0
,&obj1
)) goto fail
;
31601 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31602 if (SWIG_arg_fail(1)) SWIG_fail
;
31604 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
31605 if (SWIG_arg_fail(2)) SWIG_fail
;
31608 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31609 (arg1
)->ShowHidden(arg2
);
31611 wxPyEndAllowThreads(__tstate
);
31612 if (PyErr_Occurred()) SWIG_fail
;
31614 Py_INCREF(Py_None
); resultobj
= Py_None
;
31621 static PyObject
*_wrap_GenericDirCtrl_GetShowHidden(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31622 PyObject
*resultobj
= NULL
;
31623 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31625 PyObject
* obj0
= 0 ;
31626 char *kwnames
[] = {
31627 (char *) "self", NULL
31630 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetShowHidden",kwnames
,&obj0
)) goto fail
;
31631 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31632 if (SWIG_arg_fail(1)) SWIG_fail
;
31634 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31635 result
= (bool)(arg1
)->GetShowHidden();
31637 wxPyEndAllowThreads(__tstate
);
31638 if (PyErr_Occurred()) SWIG_fail
;
31641 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
31649 static PyObject
*_wrap_GenericDirCtrl_GetFilter(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31650 PyObject
*resultobj
= NULL
;
31651 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31653 PyObject
* obj0
= 0 ;
31654 char *kwnames
[] = {
31655 (char *) "self", NULL
31658 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetFilter",kwnames
,&obj0
)) goto fail
;
31659 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31660 if (SWIG_arg_fail(1)) SWIG_fail
;
31662 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31663 result
= ((wxGenericDirCtrl
const *)arg1
)->GetFilter();
31665 wxPyEndAllowThreads(__tstate
);
31666 if (PyErr_Occurred()) SWIG_fail
;
31670 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
31672 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
31681 static PyObject
*_wrap_GenericDirCtrl_SetFilter(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31682 PyObject
*resultobj
= NULL
;
31683 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31684 wxString
*arg2
= 0 ;
31685 bool temp2
= false ;
31686 PyObject
* obj0
= 0 ;
31687 PyObject
* obj1
= 0 ;
31688 char *kwnames
[] = {
31689 (char *) "self",(char *) "filter", NULL
31692 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GenericDirCtrl_SetFilter",kwnames
,&obj0
,&obj1
)) goto fail
;
31693 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31694 if (SWIG_arg_fail(1)) SWIG_fail
;
31696 arg2
= wxString_in_helper(obj1
);
31697 if (arg2
== NULL
) SWIG_fail
;
31701 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31702 (arg1
)->SetFilter((wxString
const &)*arg2
);
31704 wxPyEndAllowThreads(__tstate
);
31705 if (PyErr_Occurred()) SWIG_fail
;
31707 Py_INCREF(Py_None
); resultobj
= Py_None
;
31722 static PyObject
*_wrap_GenericDirCtrl_GetFilterIndex(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31723 PyObject
*resultobj
= NULL
;
31724 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31726 PyObject
* obj0
= 0 ;
31727 char *kwnames
[] = {
31728 (char *) "self", NULL
31731 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetFilterIndex",kwnames
,&obj0
)) goto fail
;
31732 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31733 if (SWIG_arg_fail(1)) SWIG_fail
;
31735 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31736 result
= (int)((wxGenericDirCtrl
const *)arg1
)->GetFilterIndex();
31738 wxPyEndAllowThreads(__tstate
);
31739 if (PyErr_Occurred()) SWIG_fail
;
31742 resultobj
= SWIG_From_int(static_cast<int >(result
));
31750 static PyObject
*_wrap_GenericDirCtrl_SetFilterIndex(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31751 PyObject
*resultobj
= NULL
;
31752 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31754 PyObject
* obj0
= 0 ;
31755 PyObject
* obj1
= 0 ;
31756 char *kwnames
[] = {
31757 (char *) "self",(char *) "n", NULL
31760 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:GenericDirCtrl_SetFilterIndex",kwnames
,&obj0
,&obj1
)) goto fail
;
31761 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31762 if (SWIG_arg_fail(1)) SWIG_fail
;
31764 arg2
= static_cast<int >(SWIG_As_int(obj1
));
31765 if (SWIG_arg_fail(2)) SWIG_fail
;
31768 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31769 (arg1
)->SetFilterIndex(arg2
);
31771 wxPyEndAllowThreads(__tstate
);
31772 if (PyErr_Occurred()) SWIG_fail
;
31774 Py_INCREF(Py_None
); resultobj
= Py_None
;
31781 static PyObject
*_wrap_GenericDirCtrl_GetRootId(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31782 PyObject
*resultobj
= NULL
;
31783 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31784 wxTreeItemId result
;
31785 PyObject
* obj0
= 0 ;
31786 char *kwnames
[] = {
31787 (char *) "self", NULL
31790 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetRootId",kwnames
,&obj0
)) goto fail
;
31791 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31792 if (SWIG_arg_fail(1)) SWIG_fail
;
31794 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31795 result
= (arg1
)->GetRootId();
31797 wxPyEndAllowThreads(__tstate
);
31798 if (PyErr_Occurred()) SWIG_fail
;
31801 wxTreeItemId
* resultptr
;
31802 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
31803 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
31811 static PyObject
*_wrap_GenericDirCtrl_GetTreeCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31812 PyObject
*resultobj
= NULL
;
31813 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31814 wxPyTreeCtrl
*result
;
31815 PyObject
* obj0
= 0 ;
31816 char *kwnames
[] = {
31817 (char *) "self", NULL
31820 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetTreeCtrl",kwnames
,&obj0
)) goto fail
;
31821 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31822 if (SWIG_arg_fail(1)) SWIG_fail
;
31824 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31825 result
= (wxPyTreeCtrl
*)((wxGenericDirCtrl
const *)arg1
)->GetTreeCtrl();
31827 wxPyEndAllowThreads(__tstate
);
31828 if (PyErr_Occurred()) SWIG_fail
;
31831 resultobj
= wxPyMake_wxObject(result
, 0);
31839 static PyObject
*_wrap_GenericDirCtrl_GetFilterListCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31840 PyObject
*resultobj
= NULL
;
31841 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31842 wxDirFilterListCtrl
*result
;
31843 PyObject
* obj0
= 0 ;
31844 char *kwnames
[] = {
31845 (char *) "self", NULL
31848 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_GetFilterListCtrl",kwnames
,&obj0
)) goto fail
;
31849 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31850 if (SWIG_arg_fail(1)) SWIG_fail
;
31852 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31853 result
= (wxDirFilterListCtrl
*)((wxGenericDirCtrl
const *)arg1
)->GetFilterListCtrl();
31855 wxPyEndAllowThreads(__tstate
);
31856 if (PyErr_Occurred()) SWIG_fail
;
31858 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxDirFilterListCtrl
, 0);
31865 static PyObject
*_wrap_GenericDirCtrl_FindChild(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31866 PyObject
*resultobj
= NULL
;
31867 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31868 wxTreeItemId arg2
;
31869 wxString
*arg3
= 0 ;
31871 wxTreeItemId result
;
31872 bool temp3
= false ;
31875 PyObject
* obj0
= 0 ;
31876 PyObject
* obj1
= 0 ;
31877 PyObject
* obj2
= 0 ;
31878 char *kwnames
[] = {
31879 (char *) "self",(char *) "parentId",(char *) "path", NULL
31882 arg4
= &temp4
; res4
= SWIG_NEWOBJ
;
31883 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:GenericDirCtrl_FindChild",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
31884 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31885 if (SWIG_arg_fail(1)) SWIG_fail
;
31887 wxTreeItemId
* argp
;
31888 SWIG_Python_ConvertPtr(obj1
, (void **)&argp
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
);
31889 if (SWIG_arg_fail(2)) SWIG_fail
;
31890 if (argp
== NULL
) {
31891 SWIG_null_ref("wxTreeItemId");
31893 if (SWIG_arg_fail(2)) SWIG_fail
;
31897 arg3
= wxString_in_helper(obj2
);
31898 if (arg3
== NULL
) SWIG_fail
;
31902 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31903 result
= (arg1
)->FindChild(arg2
,(wxString
const &)*arg3
,*arg4
);
31905 wxPyEndAllowThreads(__tstate
);
31906 if (PyErr_Occurred()) SWIG_fail
;
31909 wxTreeItemId
* resultptr
;
31910 resultptr
= new wxTreeItemId(static_cast<wxTreeItemId
& >(result
));
31911 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxTreeItemId
, 1);
31913 resultobj
= t_output_helper(resultobj
, ((res4
== SWIG_NEWOBJ
) ?
31914 SWIG_From_bool((*arg4
)) : SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_bool
, 0)));
31929 static PyObject
*_wrap_GenericDirCtrl_DoResize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31930 PyObject
*resultobj
= NULL
;
31931 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31932 PyObject
* obj0
= 0 ;
31933 char *kwnames
[] = {
31934 (char *) "self", NULL
31937 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_DoResize",kwnames
,&obj0
)) goto fail
;
31938 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31939 if (SWIG_arg_fail(1)) SWIG_fail
;
31941 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31942 (arg1
)->DoResize();
31944 wxPyEndAllowThreads(__tstate
);
31945 if (PyErr_Occurred()) SWIG_fail
;
31947 Py_INCREF(Py_None
); resultobj
= Py_None
;
31954 static PyObject
*_wrap_GenericDirCtrl_ReCreateTree(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31955 PyObject
*resultobj
= NULL
;
31956 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31957 PyObject
* obj0
= 0 ;
31958 char *kwnames
[] = {
31959 (char *) "self", NULL
31962 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:GenericDirCtrl_ReCreateTree",kwnames
,&obj0
)) goto fail
;
31963 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
31964 if (SWIG_arg_fail(1)) SWIG_fail
;
31966 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
31967 (arg1
)->ReCreateTree();
31969 wxPyEndAllowThreads(__tstate
);
31970 if (PyErr_Occurred()) SWIG_fail
;
31972 Py_INCREF(Py_None
); resultobj
= Py_None
;
31979 static PyObject
* GenericDirCtrl_swigregister(PyObject
*, PyObject
*args
) {
31981 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
31982 SWIG_TypeClientData(SWIGTYPE_p_wxGenericDirCtrl
, obj
);
31984 return Py_BuildValue((char *)"");
31986 static PyObject
*_wrap_new_DirFilterListCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
31987 PyObject
*resultobj
= NULL
;
31988 wxGenericDirCtrl
*arg1
= (wxGenericDirCtrl
*) 0 ;
31989 int arg2
= (int) (int)-1 ;
31990 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
31991 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
31992 wxSize
const &arg4_defvalue
= wxDefaultSize
;
31993 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
31994 long arg5
= (long) 0 ;
31995 wxDirFilterListCtrl
*result
;
31998 PyObject
* obj0
= 0 ;
31999 PyObject
* obj1
= 0 ;
32000 PyObject
* obj2
= 0 ;
32001 PyObject
* obj3
= 0 ;
32002 PyObject
* obj4
= 0 ;
32003 char *kwnames
[] = {
32004 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
32007 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_DirFilterListCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
32008 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32009 if (SWIG_arg_fail(1)) SWIG_fail
;
32012 arg2
= static_cast<int const >(SWIG_As_int(obj1
));
32013 if (SWIG_arg_fail(2)) SWIG_fail
;
32019 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
32025 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
32030 arg5
= static_cast<long >(SWIG_As_long(obj4
));
32031 if (SWIG_arg_fail(5)) SWIG_fail
;
32035 if (!wxPyCheckForApp()) SWIG_fail
;
32036 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32037 result
= (wxDirFilterListCtrl
*)new wxDirFilterListCtrl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
32039 wxPyEndAllowThreads(__tstate
);
32040 if (PyErr_Occurred()) SWIG_fail
;
32042 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxDirFilterListCtrl
, 1);
32049 static PyObject
*_wrap_new_PreDirFilterListCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32050 PyObject
*resultobj
= NULL
;
32051 wxDirFilterListCtrl
*result
;
32052 char *kwnames
[] = {
32056 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreDirFilterListCtrl",kwnames
)) goto fail
;
32058 if (!wxPyCheckForApp()) SWIG_fail
;
32059 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32060 result
= (wxDirFilterListCtrl
*)new wxDirFilterListCtrl();
32062 wxPyEndAllowThreads(__tstate
);
32063 if (PyErr_Occurred()) SWIG_fail
;
32065 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxDirFilterListCtrl
, 1);
32072 static PyObject
*_wrap_DirFilterListCtrl_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32073 PyObject
*resultobj
= NULL
;
32074 wxDirFilterListCtrl
*arg1
= (wxDirFilterListCtrl
*) 0 ;
32075 wxGenericDirCtrl
*arg2
= (wxGenericDirCtrl
*) 0 ;
32076 int arg3
= (int) (int)-1 ;
32077 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
32078 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
32079 wxSize
const &arg5_defvalue
= wxDefaultSize
;
32080 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
32081 long arg6
= (long) 0 ;
32085 PyObject
* obj0
= 0 ;
32086 PyObject
* obj1
= 0 ;
32087 PyObject
* obj2
= 0 ;
32088 PyObject
* obj3
= 0 ;
32089 PyObject
* obj4
= 0 ;
32090 PyObject
* obj5
= 0 ;
32091 char *kwnames
[] = {
32092 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
32095 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:DirFilterListCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
32096 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDirFilterListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32097 if (SWIG_arg_fail(1)) SWIG_fail
;
32098 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxGenericDirCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32099 if (SWIG_arg_fail(2)) SWIG_fail
;
32102 arg3
= static_cast<int const >(SWIG_As_int(obj2
));
32103 if (SWIG_arg_fail(3)) SWIG_fail
;
32109 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
32115 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
32120 arg6
= static_cast<long >(SWIG_As_long(obj5
));
32121 if (SWIG_arg_fail(6)) SWIG_fail
;
32125 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32126 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
);
32128 wxPyEndAllowThreads(__tstate
);
32129 if (PyErr_Occurred()) SWIG_fail
;
32132 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
32140 static PyObject
*_wrap_DirFilterListCtrl_FillFilterList(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32141 PyObject
*resultobj
= NULL
;
32142 wxDirFilterListCtrl
*arg1
= (wxDirFilterListCtrl
*) 0 ;
32143 wxString
*arg2
= 0 ;
32145 bool temp2
= false ;
32146 PyObject
* obj0
= 0 ;
32147 PyObject
* obj1
= 0 ;
32148 PyObject
* obj2
= 0 ;
32149 char *kwnames
[] = {
32150 (char *) "self",(char *) "filter",(char *) "defaultFilter", NULL
32153 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DirFilterListCtrl_FillFilterList",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
32154 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDirFilterListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
32155 if (SWIG_arg_fail(1)) SWIG_fail
;
32157 arg2
= wxString_in_helper(obj1
);
32158 if (arg2
== NULL
) SWIG_fail
;
32162 arg3
= static_cast<int >(SWIG_As_int(obj2
));
32163 if (SWIG_arg_fail(3)) SWIG_fail
;
32166 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32167 (arg1
)->FillFilterList((wxString
const &)*arg2
,arg3
);
32169 wxPyEndAllowThreads(__tstate
);
32170 if (PyErr_Occurred()) SWIG_fail
;
32172 Py_INCREF(Py_None
); resultobj
= Py_None
;
32187 static PyObject
* DirFilterListCtrl_swigregister(PyObject
*, PyObject
*args
) {
32189 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
32190 SWIG_TypeClientData(SWIGTYPE_p_wxDirFilterListCtrl
, obj
);
32192 return Py_BuildValue((char *)"");
32194 static PyObject
*_wrap_new_PyControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32195 PyObject
*resultobj
= NULL
;
32196 wxWindow
*arg1
= (wxWindow
*) 0 ;
32197 int arg2
= (int) (int)-1 ;
32198 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
32199 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
32200 wxSize
const &arg4_defvalue
= wxDefaultSize
;
32201 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
32202 long arg5
= (long) 0 ;
32203 wxValidator
const &arg6_defvalue
= wxDefaultValidator
;
32204 wxValidator
*arg6
= (wxValidator
*) &arg6_defvalue
;
32205 wxString
const &arg7_defvalue
= wxPyControlNameStr
;
32206 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
32207 wxPyControl
*result
;
32210 bool temp7
= false ;
32211 PyObject
* obj0
= 0 ;
32212 PyObject
* obj1
= 0 ;
32213 PyObject
* obj2
= 0 ;
32214 PyObject
* obj3
= 0 ;
32215 PyObject
* obj4
= 0 ;
32216 PyObject
* obj5
= 0 ;
32217 PyObject
* obj6
= 0 ;
32218 char *kwnames
[] = {
32219 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
32222 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_PyControl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
;
32223 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
32224 if (SWIG_arg_fail(1)) SWIG_fail
;
32227 arg2
= static_cast<int const >(SWIG_As_int(obj1
));
32228 if (SWIG_arg_fail(2)) SWIG_fail
;
32234 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
32240 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
32245 arg5
= static_cast<long >(SWIG_As_long(obj4
));
32246 if (SWIG_arg_fail(5)) SWIG_fail
;
32251 SWIG_Python_ConvertPtr(obj5
, (void **)&arg6
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
32252 if (SWIG_arg_fail(6)) SWIG_fail
;
32253 if (arg6
== NULL
) {
32254 SWIG_null_ref("wxValidator");
32256 if (SWIG_arg_fail(6)) SWIG_fail
;
32261 arg7
= wxString_in_helper(obj6
);
32262 if (arg7
== NULL
) SWIG_fail
;
32267 if (!wxPyCheckForApp()) SWIG_fail
;
32268 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32269 result
= (wxPyControl
*)new wxPyControl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxValidator
const &)*arg6
,(wxString
const &)*arg7
);
32271 wxPyEndAllowThreads(__tstate
);
32272 if (PyErr_Occurred()) SWIG_fail
;
32274 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyControl
, 1);
32289 static PyObject
*_wrap_new_PrePyControl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32290 PyObject
*resultobj
= NULL
;
32291 wxPyControl
*result
;
32292 char *kwnames
[] = {
32296 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PrePyControl",kwnames
)) goto fail
;
32298 if (!wxPyCheckForApp()) SWIG_fail
;
32299 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32300 result
= (wxPyControl
*)new wxPyControl();
32302 wxPyEndAllowThreads(__tstate
);
32303 if (PyErr_Occurred()) SWIG_fail
;
32305 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyControl
, 1);
32312 static PyObject
*_wrap_PyControl__setCallbackInfo(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32313 PyObject
*resultobj
= NULL
;
32314 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32315 PyObject
*arg2
= (PyObject
*) 0 ;
32316 PyObject
*arg3
= (PyObject
*) 0 ;
32317 PyObject
* obj0
= 0 ;
32318 PyObject
* obj1
= 0 ;
32319 PyObject
* obj2
= 0 ;
32320 char *kwnames
[] = {
32321 (char *) "self",(char *) "self",(char *) "_class", NULL
32324 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyControl__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
32325 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32326 if (SWIG_arg_fail(1)) SWIG_fail
;
32330 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32331 (arg1
)->_setCallbackInfo(arg2
,arg3
);
32333 wxPyEndAllowThreads(__tstate
);
32334 if (PyErr_Occurred()) SWIG_fail
;
32336 Py_INCREF(Py_None
); resultobj
= Py_None
;
32343 static PyObject
*_wrap_PyControl_SetBestSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32344 PyObject
*resultobj
= NULL
;
32345 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32348 PyObject
* obj0
= 0 ;
32349 PyObject
* obj1
= 0 ;
32350 char *kwnames
[] = {
32351 (char *) "self",(char *) "size", NULL
32354 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyControl_SetBestSize",kwnames
,&obj0
,&obj1
)) goto fail
;
32355 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32356 if (SWIG_arg_fail(1)) SWIG_fail
;
32359 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
32362 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32363 (arg1
)->SetBestSize((wxSize
const &)*arg2
);
32365 wxPyEndAllowThreads(__tstate
);
32366 if (PyErr_Occurred()) SWIG_fail
;
32368 Py_INCREF(Py_None
); resultobj
= Py_None
;
32375 static PyObject
*_wrap_PyControl_DoEraseBackground(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32376 PyObject
*resultobj
= NULL
;
32377 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32378 wxDC
*arg2
= (wxDC
*) 0 ;
32380 PyObject
* obj0
= 0 ;
32381 PyObject
* obj1
= 0 ;
32382 char *kwnames
[] = {
32383 (char *) "self",(char *) "dc", NULL
32386 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyControl_DoEraseBackground",kwnames
,&obj0
,&obj1
)) goto fail
;
32387 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32388 if (SWIG_arg_fail(1)) SWIG_fail
;
32389 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION
| 0);
32390 if (SWIG_arg_fail(2)) SWIG_fail
;
32392 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32393 result
= (bool)(arg1
)->DoEraseBackground(arg2
);
32395 wxPyEndAllowThreads(__tstate
);
32396 if (PyErr_Occurred()) SWIG_fail
;
32399 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
32407 static PyObject
*_wrap_PyControl_base_DoMoveWindow(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32408 PyObject
*resultobj
= NULL
;
32409 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32414 PyObject
* obj0
= 0 ;
32415 PyObject
* obj1
= 0 ;
32416 PyObject
* obj2
= 0 ;
32417 PyObject
* obj3
= 0 ;
32418 PyObject
* obj4
= 0 ;
32419 char *kwnames
[] = {
32420 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
32423 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PyControl_base_DoMoveWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
32424 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32425 if (SWIG_arg_fail(1)) SWIG_fail
;
32427 arg2
= static_cast<int >(SWIG_As_int(obj1
));
32428 if (SWIG_arg_fail(2)) SWIG_fail
;
32431 arg3
= static_cast<int >(SWIG_As_int(obj2
));
32432 if (SWIG_arg_fail(3)) SWIG_fail
;
32435 arg4
= static_cast<int >(SWIG_As_int(obj3
));
32436 if (SWIG_arg_fail(4)) SWIG_fail
;
32439 arg5
= static_cast<int >(SWIG_As_int(obj4
));
32440 if (SWIG_arg_fail(5)) SWIG_fail
;
32443 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32444 (arg1
)->base_DoMoveWindow(arg2
,arg3
,arg4
,arg5
);
32446 wxPyEndAllowThreads(__tstate
);
32447 if (PyErr_Occurred()) SWIG_fail
;
32449 Py_INCREF(Py_None
); resultobj
= Py_None
;
32456 static PyObject
*_wrap_PyControl_base_DoSetSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32457 PyObject
*resultobj
= NULL
;
32458 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32463 int arg6
= (int) wxSIZE_AUTO
;
32464 PyObject
* obj0
= 0 ;
32465 PyObject
* obj1
= 0 ;
32466 PyObject
* obj2
= 0 ;
32467 PyObject
* obj3
= 0 ;
32468 PyObject
* obj4
= 0 ;
32469 PyObject
* obj5
= 0 ;
32470 char *kwnames
[] = {
32471 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height",(char *) "sizeFlags", NULL
32474 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|O:PyControl_base_DoSetSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
;
32475 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32476 if (SWIG_arg_fail(1)) SWIG_fail
;
32478 arg2
= static_cast<int >(SWIG_As_int(obj1
));
32479 if (SWIG_arg_fail(2)) SWIG_fail
;
32482 arg3
= static_cast<int >(SWIG_As_int(obj2
));
32483 if (SWIG_arg_fail(3)) SWIG_fail
;
32486 arg4
= static_cast<int >(SWIG_As_int(obj3
));
32487 if (SWIG_arg_fail(4)) SWIG_fail
;
32490 arg5
= static_cast<int >(SWIG_As_int(obj4
));
32491 if (SWIG_arg_fail(5)) SWIG_fail
;
32495 arg6
= static_cast<int >(SWIG_As_int(obj5
));
32496 if (SWIG_arg_fail(6)) SWIG_fail
;
32500 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32501 (arg1
)->base_DoSetSize(arg2
,arg3
,arg4
,arg5
,arg6
);
32503 wxPyEndAllowThreads(__tstate
);
32504 if (PyErr_Occurred()) SWIG_fail
;
32506 Py_INCREF(Py_None
); resultobj
= Py_None
;
32513 static PyObject
*_wrap_PyControl_base_DoSetClientSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32514 PyObject
*resultobj
= NULL
;
32515 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32518 PyObject
* obj0
= 0 ;
32519 PyObject
* obj1
= 0 ;
32520 PyObject
* obj2
= 0 ;
32521 char *kwnames
[] = {
32522 (char *) "self",(char *) "width",(char *) "height", NULL
32525 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyControl_base_DoSetClientSize",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
32526 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32527 if (SWIG_arg_fail(1)) SWIG_fail
;
32529 arg2
= static_cast<int >(SWIG_As_int(obj1
));
32530 if (SWIG_arg_fail(2)) SWIG_fail
;
32533 arg3
= static_cast<int >(SWIG_As_int(obj2
));
32534 if (SWIG_arg_fail(3)) SWIG_fail
;
32537 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32538 (arg1
)->base_DoSetClientSize(arg2
,arg3
);
32540 wxPyEndAllowThreads(__tstate
);
32541 if (PyErr_Occurred()) SWIG_fail
;
32543 Py_INCREF(Py_None
); resultobj
= Py_None
;
32550 static PyObject
*_wrap_PyControl_base_DoSetVirtualSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32551 PyObject
*resultobj
= NULL
;
32552 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32555 PyObject
* obj0
= 0 ;
32556 PyObject
* obj1
= 0 ;
32557 PyObject
* obj2
= 0 ;
32558 char *kwnames
[] = {
32559 (char *) "self",(char *) "x",(char *) "y", NULL
32562 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyControl_base_DoSetVirtualSize",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
32563 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32564 if (SWIG_arg_fail(1)) SWIG_fail
;
32566 arg2
= static_cast<int >(SWIG_As_int(obj1
));
32567 if (SWIG_arg_fail(2)) SWIG_fail
;
32570 arg3
= static_cast<int >(SWIG_As_int(obj2
));
32571 if (SWIG_arg_fail(3)) SWIG_fail
;
32574 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32575 (arg1
)->base_DoSetVirtualSize(arg2
,arg3
);
32577 wxPyEndAllowThreads(__tstate
);
32578 if (PyErr_Occurred()) SWIG_fail
;
32580 Py_INCREF(Py_None
); resultobj
= Py_None
;
32587 static PyObject
*_wrap_PyControl_base_DoGetSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32588 PyObject
*resultobj
= NULL
;
32589 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32590 int *arg2
= (int *) 0 ;
32591 int *arg3
= (int *) 0 ;
32596 PyObject
* obj0
= 0 ;
32597 char *kwnames
[] = {
32598 (char *) "self", NULL
32601 arg2
= &temp2
; res2
= SWIG_NEWOBJ
;
32602 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
32603 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_base_DoGetSize",kwnames
,&obj0
)) goto fail
;
32604 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32605 if (SWIG_arg_fail(1)) SWIG_fail
;
32607 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32608 ((wxPyControl
const *)arg1
)->base_DoGetSize(arg2
,arg3
);
32610 wxPyEndAllowThreads(__tstate
);
32611 if (PyErr_Occurred()) SWIG_fail
;
32613 Py_INCREF(Py_None
); resultobj
= Py_None
;
32614 resultobj
= t_output_helper(resultobj
, ((res2
== SWIG_NEWOBJ
) ?
32615 SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0)));
32616 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
32617 SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0)));
32624 static PyObject
*_wrap_PyControl_base_DoGetClientSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32625 PyObject
*resultobj
= NULL
;
32626 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32627 int *arg2
= (int *) 0 ;
32628 int *arg3
= (int *) 0 ;
32633 PyObject
* obj0
= 0 ;
32634 char *kwnames
[] = {
32635 (char *) "self", NULL
32638 arg2
= &temp2
; res2
= SWIG_NEWOBJ
;
32639 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
32640 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_base_DoGetClientSize",kwnames
,&obj0
)) goto fail
;
32641 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32642 if (SWIG_arg_fail(1)) SWIG_fail
;
32644 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32645 ((wxPyControl
const *)arg1
)->base_DoGetClientSize(arg2
,arg3
);
32647 wxPyEndAllowThreads(__tstate
);
32648 if (PyErr_Occurred()) SWIG_fail
;
32650 Py_INCREF(Py_None
); resultobj
= Py_None
;
32651 resultobj
= t_output_helper(resultobj
, ((res2
== SWIG_NEWOBJ
) ?
32652 SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0)));
32653 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
32654 SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0)));
32661 static PyObject
*_wrap_PyControl_base_DoGetPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32662 PyObject
*resultobj
= NULL
;
32663 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32664 int *arg2
= (int *) 0 ;
32665 int *arg3
= (int *) 0 ;
32670 PyObject
* obj0
= 0 ;
32671 char *kwnames
[] = {
32672 (char *) "self", NULL
32675 arg2
= &temp2
; res2
= SWIG_NEWOBJ
;
32676 arg3
= &temp3
; res3
= SWIG_NEWOBJ
;
32677 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_base_DoGetPosition",kwnames
,&obj0
)) goto fail
;
32678 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32679 if (SWIG_arg_fail(1)) SWIG_fail
;
32681 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32682 ((wxPyControl
const *)arg1
)->base_DoGetPosition(arg2
,arg3
);
32684 wxPyEndAllowThreads(__tstate
);
32685 if (PyErr_Occurred()) SWIG_fail
;
32687 Py_INCREF(Py_None
); resultobj
= Py_None
;
32688 resultobj
= t_output_helper(resultobj
, ((res2
== SWIG_NEWOBJ
) ?
32689 SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0)));
32690 resultobj
= t_output_helper(resultobj
, ((res3
== SWIG_NEWOBJ
) ?
32691 SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0)));
32698 static PyObject
*_wrap_PyControl_base_DoGetVirtualSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32699 PyObject
*resultobj
= NULL
;
32700 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32702 PyObject
* obj0
= 0 ;
32703 char *kwnames
[] = {
32704 (char *) "self", NULL
32707 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_base_DoGetVirtualSize",kwnames
,&obj0
)) goto fail
;
32708 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32709 if (SWIG_arg_fail(1)) SWIG_fail
;
32711 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32712 result
= ((wxPyControl
const *)arg1
)->base_DoGetVirtualSize();
32714 wxPyEndAllowThreads(__tstate
);
32715 if (PyErr_Occurred()) SWIG_fail
;
32718 wxSize
* resultptr
;
32719 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
32720 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
32728 static PyObject
*_wrap_PyControl_base_DoGetBestSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32729 PyObject
*resultobj
= NULL
;
32730 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32732 PyObject
* obj0
= 0 ;
32733 char *kwnames
[] = {
32734 (char *) "self", NULL
32737 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_base_DoGetBestSize",kwnames
,&obj0
)) goto fail
;
32738 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32739 if (SWIG_arg_fail(1)) SWIG_fail
;
32741 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32742 result
= ((wxPyControl
const *)arg1
)->base_DoGetBestSize();
32744 wxPyEndAllowThreads(__tstate
);
32745 if (PyErr_Occurred()) SWIG_fail
;
32748 wxSize
* resultptr
;
32749 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
32750 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
32758 static PyObject
*_wrap_PyControl_base_InitDialog(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32759 PyObject
*resultobj
= NULL
;
32760 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32761 PyObject
* obj0
= 0 ;
32762 char *kwnames
[] = {
32763 (char *) "self", NULL
32766 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_base_InitDialog",kwnames
,&obj0
)) goto fail
;
32767 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32768 if (SWIG_arg_fail(1)) SWIG_fail
;
32770 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32771 (arg1
)->base_InitDialog();
32773 wxPyEndAllowThreads(__tstate
);
32774 if (PyErr_Occurred()) SWIG_fail
;
32776 Py_INCREF(Py_None
); resultobj
= Py_None
;
32783 static PyObject
*_wrap_PyControl_base_TransferDataToWindow(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32784 PyObject
*resultobj
= NULL
;
32785 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32787 PyObject
* obj0
= 0 ;
32788 char *kwnames
[] = {
32789 (char *) "self", NULL
32792 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_base_TransferDataToWindow",kwnames
,&obj0
)) goto fail
;
32793 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32794 if (SWIG_arg_fail(1)) SWIG_fail
;
32796 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32797 result
= (bool)(arg1
)->base_TransferDataToWindow();
32799 wxPyEndAllowThreads(__tstate
);
32800 if (PyErr_Occurred()) SWIG_fail
;
32803 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
32811 static PyObject
*_wrap_PyControl_base_TransferDataFromWindow(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32812 PyObject
*resultobj
= NULL
;
32813 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32815 PyObject
* obj0
= 0 ;
32816 char *kwnames
[] = {
32817 (char *) "self", NULL
32820 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_base_TransferDataFromWindow",kwnames
,&obj0
)) goto fail
;
32821 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32822 if (SWIG_arg_fail(1)) SWIG_fail
;
32824 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32825 result
= (bool)(arg1
)->base_TransferDataFromWindow();
32827 wxPyEndAllowThreads(__tstate
);
32828 if (PyErr_Occurred()) SWIG_fail
;
32831 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
32839 static PyObject
*_wrap_PyControl_base_Validate(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32840 PyObject
*resultobj
= NULL
;
32841 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32843 PyObject
* obj0
= 0 ;
32844 char *kwnames
[] = {
32845 (char *) "self", NULL
32848 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_base_Validate",kwnames
,&obj0
)) goto fail
;
32849 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32850 if (SWIG_arg_fail(1)) SWIG_fail
;
32852 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32853 result
= (bool)(arg1
)->base_Validate();
32855 wxPyEndAllowThreads(__tstate
);
32856 if (PyErr_Occurred()) SWIG_fail
;
32859 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
32867 static PyObject
*_wrap_PyControl_base_AcceptsFocus(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32868 PyObject
*resultobj
= NULL
;
32869 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32871 PyObject
* obj0
= 0 ;
32872 char *kwnames
[] = {
32873 (char *) "self", NULL
32876 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_base_AcceptsFocus",kwnames
,&obj0
)) goto fail
;
32877 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32878 if (SWIG_arg_fail(1)) SWIG_fail
;
32880 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32881 result
= (bool)((wxPyControl
const *)arg1
)->base_AcceptsFocus();
32883 wxPyEndAllowThreads(__tstate
);
32884 if (PyErr_Occurred()) SWIG_fail
;
32887 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
32895 static PyObject
*_wrap_PyControl_base_AcceptsFocusFromKeyboard(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32896 PyObject
*resultobj
= NULL
;
32897 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32899 PyObject
* obj0
= 0 ;
32900 char *kwnames
[] = {
32901 (char *) "self", NULL
32904 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_base_AcceptsFocusFromKeyboard",kwnames
,&obj0
)) goto fail
;
32905 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32906 if (SWIG_arg_fail(1)) SWIG_fail
;
32908 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32909 result
= (bool)((wxPyControl
const *)arg1
)->base_AcceptsFocusFromKeyboard();
32911 wxPyEndAllowThreads(__tstate
);
32912 if (PyErr_Occurred()) SWIG_fail
;
32915 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
32923 static PyObject
*_wrap_PyControl_base_GetMaxSize(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32924 PyObject
*resultobj
= NULL
;
32925 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32927 PyObject
* obj0
= 0 ;
32928 char *kwnames
[] = {
32929 (char *) "self", NULL
32932 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_base_GetMaxSize",kwnames
,&obj0
)) goto fail
;
32933 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32934 if (SWIG_arg_fail(1)) SWIG_fail
;
32936 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32937 result
= ((wxPyControl
const *)arg1
)->base_GetMaxSize();
32939 wxPyEndAllowThreads(__tstate
);
32940 if (PyErr_Occurred()) SWIG_fail
;
32943 wxSize
* resultptr
;
32944 resultptr
= new wxSize(static_cast<wxSize
& >(result
));
32945 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1);
32953 static PyObject
*_wrap_PyControl_base_AddChild(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32954 PyObject
*resultobj
= NULL
;
32955 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32956 wxWindow
*arg2
= (wxWindow
*) 0 ;
32957 PyObject
* obj0
= 0 ;
32958 PyObject
* obj1
= 0 ;
32959 char *kwnames
[] = {
32960 (char *) "self",(char *) "child", NULL
32963 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyControl_base_AddChild",kwnames
,&obj0
,&obj1
)) goto fail
;
32964 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32965 if (SWIG_arg_fail(1)) SWIG_fail
;
32966 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
32967 if (SWIG_arg_fail(2)) SWIG_fail
;
32969 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32970 (arg1
)->base_AddChild(arg2
);
32972 wxPyEndAllowThreads(__tstate
);
32973 if (PyErr_Occurred()) SWIG_fail
;
32975 Py_INCREF(Py_None
); resultobj
= Py_None
;
32982 static PyObject
*_wrap_PyControl_base_RemoveChild(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
32983 PyObject
*resultobj
= NULL
;
32984 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
32985 wxWindow
*arg2
= (wxWindow
*) 0 ;
32986 PyObject
* obj0
= 0 ;
32987 PyObject
* obj1
= 0 ;
32988 char *kwnames
[] = {
32989 (char *) "self",(char *) "child", NULL
32992 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyControl_base_RemoveChild",kwnames
,&obj0
,&obj1
)) goto fail
;
32993 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
32994 if (SWIG_arg_fail(1)) SWIG_fail
;
32995 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
32996 if (SWIG_arg_fail(2)) SWIG_fail
;
32998 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
32999 (arg1
)->base_RemoveChild(arg2
);
33001 wxPyEndAllowThreads(__tstate
);
33002 if (PyErr_Occurred()) SWIG_fail
;
33004 Py_INCREF(Py_None
); resultobj
= Py_None
;
33011 static PyObject
*_wrap_PyControl_base_ShouldInheritColours(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33012 PyObject
*resultobj
= NULL
;
33013 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33015 PyObject
* obj0
= 0 ;
33016 char *kwnames
[] = {
33017 (char *) "self", NULL
33020 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_base_ShouldInheritColours",kwnames
,&obj0
)) goto fail
;
33021 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33022 if (SWIG_arg_fail(1)) SWIG_fail
;
33024 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33025 result
= (bool)((wxPyControl
const *)arg1
)->base_ShouldInheritColours();
33027 wxPyEndAllowThreads(__tstate
);
33028 if (PyErr_Occurred()) SWIG_fail
;
33031 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
33039 static PyObject
*_wrap_PyControl_base_GetDefaultAttributes(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33040 PyObject
*resultobj
= NULL
;
33041 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33042 wxVisualAttributes result
;
33043 PyObject
* obj0
= 0 ;
33044 char *kwnames
[] = {
33045 (char *) "self", NULL
33048 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_base_GetDefaultAttributes",kwnames
,&obj0
)) goto fail
;
33049 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33050 if (SWIG_arg_fail(1)) SWIG_fail
;
33052 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33053 result
= (arg1
)->base_GetDefaultAttributes();
33055 wxPyEndAllowThreads(__tstate
);
33056 if (PyErr_Occurred()) SWIG_fail
;
33059 wxVisualAttributes
* resultptr
;
33060 resultptr
= new wxVisualAttributes(static_cast<wxVisualAttributes
& >(result
));
33061 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1);
33069 static PyObject
*_wrap_PyControl_base_OnInternalIdle(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33070 PyObject
*resultobj
= NULL
;
33071 wxPyControl
*arg1
= (wxPyControl
*) 0 ;
33072 PyObject
* obj0
= 0 ;
33073 char *kwnames
[] = {
33074 (char *) "self", NULL
33077 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyControl_base_OnInternalIdle",kwnames
,&obj0
)) goto fail
;
33078 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyControl
, SWIG_POINTER_EXCEPTION
| 0);
33079 if (SWIG_arg_fail(1)) SWIG_fail
;
33081 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33082 (arg1
)->base_OnInternalIdle();
33084 wxPyEndAllowThreads(__tstate
);
33085 if (PyErr_Occurred()) SWIG_fail
;
33087 Py_INCREF(Py_None
); resultobj
= Py_None
;
33094 static PyObject
* PyControl_swigregister(PyObject
*, PyObject
*args
) {
33096 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
33097 SWIG_TypeClientData(SWIGTYPE_p_wxPyControl
, obj
);
33099 return Py_BuildValue((char *)"");
33101 static PyObject
*_wrap_new_HelpEvent(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33102 PyObject
*resultobj
= NULL
;
33103 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
33104 int arg2
= (int) 0 ;
33105 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
33106 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
33107 wxHelpEvent
*result
;
33109 PyObject
* obj0
= 0 ;
33110 PyObject
* obj1
= 0 ;
33111 PyObject
* obj2
= 0 ;
33112 char *kwnames
[] = {
33113 (char *) "type",(char *) "winid",(char *) "pt", NULL
33116 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOO:new_HelpEvent",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
33119 arg1
= static_cast<wxEventType
>(SWIG_As_int(obj0
));
33120 if (SWIG_arg_fail(1)) SWIG_fail
;
33125 arg2
= static_cast<int >(SWIG_As_int(obj1
));
33126 if (SWIG_arg_fail(2)) SWIG_fail
;
33132 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
33136 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33137 result
= (wxHelpEvent
*)new wxHelpEvent(arg1
,arg2
,(wxPoint
const &)*arg3
);
33139 wxPyEndAllowThreads(__tstate
);
33140 if (PyErr_Occurred()) SWIG_fail
;
33142 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHelpEvent
, 1);
33149 static PyObject
*_wrap_HelpEvent_GetPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33150 PyObject
*resultobj
= NULL
;
33151 wxHelpEvent
*arg1
= (wxHelpEvent
*) 0 ;
33153 PyObject
* obj0
= 0 ;
33154 char *kwnames
[] = {
33155 (char *) "self", NULL
33158 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HelpEvent_GetPosition",kwnames
,&obj0
)) goto fail
;
33159 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpEvent
, SWIG_POINTER_EXCEPTION
| 0);
33160 if (SWIG_arg_fail(1)) SWIG_fail
;
33162 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33163 result
= ((wxHelpEvent
const *)arg1
)->GetPosition();
33165 wxPyEndAllowThreads(__tstate
);
33166 if (PyErr_Occurred()) SWIG_fail
;
33169 wxPoint
* resultptr
;
33170 resultptr
= new wxPoint(static_cast<wxPoint
const & >(result
));
33171 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1);
33179 static PyObject
*_wrap_HelpEvent_SetPosition(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33180 PyObject
*resultobj
= NULL
;
33181 wxHelpEvent
*arg1
= (wxHelpEvent
*) 0 ;
33182 wxPoint
*arg2
= 0 ;
33184 PyObject
* obj0
= 0 ;
33185 PyObject
* obj1
= 0 ;
33186 char *kwnames
[] = {
33187 (char *) "self",(char *) "pos", NULL
33190 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HelpEvent_SetPosition",kwnames
,&obj0
,&obj1
)) goto fail
;
33191 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpEvent
, SWIG_POINTER_EXCEPTION
| 0);
33192 if (SWIG_arg_fail(1)) SWIG_fail
;
33195 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
33198 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33199 (arg1
)->SetPosition((wxPoint
const &)*arg2
);
33201 wxPyEndAllowThreads(__tstate
);
33202 if (PyErr_Occurred()) SWIG_fail
;
33204 Py_INCREF(Py_None
); resultobj
= Py_None
;
33211 static PyObject
*_wrap_HelpEvent_GetLink(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33212 PyObject
*resultobj
= NULL
;
33213 wxHelpEvent
*arg1
= (wxHelpEvent
*) 0 ;
33215 PyObject
* obj0
= 0 ;
33216 char *kwnames
[] = {
33217 (char *) "self", NULL
33220 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HelpEvent_GetLink",kwnames
,&obj0
)) goto fail
;
33221 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpEvent
, SWIG_POINTER_EXCEPTION
| 0);
33222 if (SWIG_arg_fail(1)) SWIG_fail
;
33224 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33226 wxString
const &_result_ref
= ((wxHelpEvent
const *)arg1
)->GetLink();
33227 result
= (wxString
*) &_result_ref
;
33230 wxPyEndAllowThreads(__tstate
);
33231 if (PyErr_Occurred()) SWIG_fail
;
33235 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
33237 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
33246 static PyObject
*_wrap_HelpEvent_SetLink(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33247 PyObject
*resultobj
= NULL
;
33248 wxHelpEvent
*arg1
= (wxHelpEvent
*) 0 ;
33249 wxString
*arg2
= 0 ;
33250 bool temp2
= false ;
33251 PyObject
* obj0
= 0 ;
33252 PyObject
* obj1
= 0 ;
33253 char *kwnames
[] = {
33254 (char *) "self",(char *) "link", NULL
33257 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HelpEvent_SetLink",kwnames
,&obj0
,&obj1
)) goto fail
;
33258 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpEvent
, SWIG_POINTER_EXCEPTION
| 0);
33259 if (SWIG_arg_fail(1)) SWIG_fail
;
33261 arg2
= wxString_in_helper(obj1
);
33262 if (arg2
== NULL
) SWIG_fail
;
33266 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33267 (arg1
)->SetLink((wxString
const &)*arg2
);
33269 wxPyEndAllowThreads(__tstate
);
33270 if (PyErr_Occurred()) SWIG_fail
;
33272 Py_INCREF(Py_None
); resultobj
= Py_None
;
33287 static PyObject
*_wrap_HelpEvent_GetTarget(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33288 PyObject
*resultobj
= NULL
;
33289 wxHelpEvent
*arg1
= (wxHelpEvent
*) 0 ;
33291 PyObject
* obj0
= 0 ;
33292 char *kwnames
[] = {
33293 (char *) "self", NULL
33296 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HelpEvent_GetTarget",kwnames
,&obj0
)) goto fail
;
33297 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpEvent
, SWIG_POINTER_EXCEPTION
| 0);
33298 if (SWIG_arg_fail(1)) SWIG_fail
;
33300 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33302 wxString
const &_result_ref
= ((wxHelpEvent
const *)arg1
)->GetTarget();
33303 result
= (wxString
*) &_result_ref
;
33306 wxPyEndAllowThreads(__tstate
);
33307 if (PyErr_Occurred()) SWIG_fail
;
33311 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
33313 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
33322 static PyObject
*_wrap_HelpEvent_SetTarget(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33323 PyObject
*resultobj
= NULL
;
33324 wxHelpEvent
*arg1
= (wxHelpEvent
*) 0 ;
33325 wxString
*arg2
= 0 ;
33326 bool temp2
= false ;
33327 PyObject
* obj0
= 0 ;
33328 PyObject
* obj1
= 0 ;
33329 char *kwnames
[] = {
33330 (char *) "self",(char *) "target", NULL
33333 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HelpEvent_SetTarget",kwnames
,&obj0
,&obj1
)) goto fail
;
33334 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpEvent
, SWIG_POINTER_EXCEPTION
| 0);
33335 if (SWIG_arg_fail(1)) SWIG_fail
;
33337 arg2
= wxString_in_helper(obj1
);
33338 if (arg2
== NULL
) SWIG_fail
;
33342 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33343 (arg1
)->SetTarget((wxString
const &)*arg2
);
33345 wxPyEndAllowThreads(__tstate
);
33346 if (PyErr_Occurred()) SWIG_fail
;
33348 Py_INCREF(Py_None
); resultobj
= Py_None
;
33363 static PyObject
* HelpEvent_swigregister(PyObject
*, PyObject
*args
) {
33365 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
33366 SWIG_TypeClientData(SWIGTYPE_p_wxHelpEvent
, obj
);
33368 return Py_BuildValue((char *)"");
33370 static PyObject
*_wrap_new_ContextHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33371 PyObject
*resultobj
= NULL
;
33372 wxWindow
*arg1
= (wxWindow
*) NULL
;
33373 bool arg2
= (bool) true ;
33374 wxContextHelp
*result
;
33375 PyObject
* obj0
= 0 ;
33376 PyObject
* obj1
= 0 ;
33377 char *kwnames
[] = {
33378 (char *) "window",(char *) "doNow", NULL
33381 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_ContextHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
33383 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
33384 if (SWIG_arg_fail(1)) SWIG_fail
;
33388 arg2
= static_cast<bool >(SWIG_As_bool(obj1
));
33389 if (SWIG_arg_fail(2)) SWIG_fail
;
33393 if (!wxPyCheckForApp()) SWIG_fail
;
33394 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33395 result
= (wxContextHelp
*)new wxContextHelp(arg1
,arg2
);
33397 wxPyEndAllowThreads(__tstate
);
33398 if (PyErr_Occurred()) SWIG_fail
;
33400 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxContextHelp
, 1);
33407 static PyObject
*_wrap_delete_ContextHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33408 PyObject
*resultobj
= NULL
;
33409 wxContextHelp
*arg1
= (wxContextHelp
*) 0 ;
33410 PyObject
* obj0
= 0 ;
33411 char *kwnames
[] = {
33412 (char *) "self", NULL
33415 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_ContextHelp",kwnames
,&obj0
)) goto fail
;
33416 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxContextHelp
, SWIG_POINTER_EXCEPTION
| 0);
33417 if (SWIG_arg_fail(1)) SWIG_fail
;
33419 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33422 wxPyEndAllowThreads(__tstate
);
33423 if (PyErr_Occurred()) SWIG_fail
;
33425 Py_INCREF(Py_None
); resultobj
= Py_None
;
33432 static PyObject
*_wrap_ContextHelp_BeginContextHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33433 PyObject
*resultobj
= NULL
;
33434 wxContextHelp
*arg1
= (wxContextHelp
*) 0 ;
33435 wxWindow
*arg2
= (wxWindow
*) NULL
;
33437 PyObject
* obj0
= 0 ;
33438 PyObject
* obj1
= 0 ;
33439 char *kwnames
[] = {
33440 (char *) "self",(char *) "window", NULL
33443 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:ContextHelp_BeginContextHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
33444 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxContextHelp
, SWIG_POINTER_EXCEPTION
| 0);
33445 if (SWIG_arg_fail(1)) SWIG_fail
;
33447 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
33448 if (SWIG_arg_fail(2)) SWIG_fail
;
33451 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33452 result
= (bool)(arg1
)->BeginContextHelp(arg2
);
33454 wxPyEndAllowThreads(__tstate
);
33455 if (PyErr_Occurred()) SWIG_fail
;
33458 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
33466 static PyObject
*_wrap_ContextHelp_EndContextHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33467 PyObject
*resultobj
= NULL
;
33468 wxContextHelp
*arg1
= (wxContextHelp
*) 0 ;
33470 PyObject
* obj0
= 0 ;
33471 char *kwnames
[] = {
33472 (char *) "self", NULL
33475 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ContextHelp_EndContextHelp",kwnames
,&obj0
)) goto fail
;
33476 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxContextHelp
, SWIG_POINTER_EXCEPTION
| 0);
33477 if (SWIG_arg_fail(1)) SWIG_fail
;
33479 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33480 result
= (bool)(arg1
)->EndContextHelp();
33482 wxPyEndAllowThreads(__tstate
);
33483 if (PyErr_Occurred()) SWIG_fail
;
33486 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
33494 static PyObject
* ContextHelp_swigregister(PyObject
*, PyObject
*args
) {
33496 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
33497 SWIG_TypeClientData(SWIGTYPE_p_wxContextHelp
, obj
);
33499 return Py_BuildValue((char *)"");
33501 static PyObject
*_wrap_new_ContextHelpButton(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33502 PyObject
*resultobj
= NULL
;
33503 wxWindow
*arg1
= (wxWindow
*) 0 ;
33504 int arg2
= (int) wxID_CONTEXT_HELP
;
33505 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
33506 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
33507 wxSize
const &arg4_defvalue
= wxDefaultSize
;
33508 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
33509 long arg5
= (long) wxBU_AUTODRAW
;
33510 wxContextHelpButton
*result
;
33513 PyObject
* obj0
= 0 ;
33514 PyObject
* obj1
= 0 ;
33515 PyObject
* obj2
= 0 ;
33516 PyObject
* obj3
= 0 ;
33517 PyObject
* obj4
= 0 ;
33518 char *kwnames
[] = {
33519 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
33522 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_ContextHelpButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
33523 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
33524 if (SWIG_arg_fail(1)) SWIG_fail
;
33527 arg2
= static_cast<int >(SWIG_As_int(obj1
));
33528 if (SWIG_arg_fail(2)) SWIG_fail
;
33534 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
33540 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
33545 arg5
= static_cast<long >(SWIG_As_long(obj4
));
33546 if (SWIG_arg_fail(5)) SWIG_fail
;
33550 if (!wxPyCheckForApp()) SWIG_fail
;
33551 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33552 result
= (wxContextHelpButton
*)new wxContextHelpButton(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
33554 wxPyEndAllowThreads(__tstate
);
33555 if (PyErr_Occurred()) SWIG_fail
;
33557 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxContextHelpButton
, 1);
33564 static PyObject
* ContextHelpButton_swigregister(PyObject
*, PyObject
*args
) {
33566 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
33567 SWIG_TypeClientData(SWIGTYPE_p_wxContextHelpButton
, obj
);
33569 return Py_BuildValue((char *)"");
33571 static PyObject
*_wrap_HelpProvider_Set(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33572 PyObject
*resultobj
= NULL
;
33573 wxHelpProvider
*arg1
= (wxHelpProvider
*) 0 ;
33574 wxHelpProvider
*result
;
33575 PyObject
* obj0
= 0 ;
33576 char *kwnames
[] = {
33577 (char *) "helpProvider", NULL
33580 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HelpProvider_Set",kwnames
,&obj0
)) goto fail
;
33581 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpProvider
, SWIG_POINTER_EXCEPTION
| 0);
33582 if (SWIG_arg_fail(1)) SWIG_fail
;
33584 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33585 result
= (wxHelpProvider
*)wxHelpProvider::Set(arg1
);
33587 wxPyEndAllowThreads(__tstate
);
33588 if (PyErr_Occurred()) SWIG_fail
;
33590 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHelpProvider
, 0);
33597 static PyObject
*_wrap_HelpProvider_Get(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33598 PyObject
*resultobj
= NULL
;
33599 wxHelpProvider
*result
;
33600 char *kwnames
[] = {
33604 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":HelpProvider_Get",kwnames
)) goto fail
;
33606 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33607 result
= (wxHelpProvider
*)wxHelpProvider::Get();
33609 wxPyEndAllowThreads(__tstate
);
33610 if (PyErr_Occurred()) SWIG_fail
;
33612 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHelpProvider
, 0);
33619 static PyObject
*_wrap_HelpProvider_GetHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33620 PyObject
*resultobj
= NULL
;
33621 wxHelpProvider
*arg1
= (wxHelpProvider
*) 0 ;
33622 wxWindow
*arg2
= (wxWindow
*) 0 ;
33624 PyObject
* obj0
= 0 ;
33625 PyObject
* obj1
= 0 ;
33626 char *kwnames
[] = {
33627 (char *) "self",(char *) "window", NULL
33630 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HelpProvider_GetHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
33631 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpProvider
, SWIG_POINTER_EXCEPTION
| 0);
33632 if (SWIG_arg_fail(1)) SWIG_fail
;
33633 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
33634 if (SWIG_arg_fail(2)) SWIG_fail
;
33636 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33637 result
= (arg1
)->GetHelp((wxWindow
const *)arg2
);
33639 wxPyEndAllowThreads(__tstate
);
33640 if (PyErr_Occurred()) SWIG_fail
;
33644 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
33646 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
33655 static PyObject
*_wrap_HelpProvider_ShowHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33656 PyObject
*resultobj
= NULL
;
33657 wxHelpProvider
*arg1
= (wxHelpProvider
*) 0 ;
33658 wxWindow
*arg2
= (wxWindow
*) 0 ;
33660 PyObject
* obj0
= 0 ;
33661 PyObject
* obj1
= 0 ;
33662 char *kwnames
[] = {
33663 (char *) "self",(char *) "window", NULL
33666 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HelpProvider_ShowHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
33667 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpProvider
, SWIG_POINTER_EXCEPTION
| 0);
33668 if (SWIG_arg_fail(1)) SWIG_fail
;
33669 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
33670 if (SWIG_arg_fail(2)) SWIG_fail
;
33672 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33673 result
= (bool)(arg1
)->ShowHelp(arg2
);
33675 wxPyEndAllowThreads(__tstate
);
33676 if (PyErr_Occurred()) SWIG_fail
;
33679 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
33687 static PyObject
*_wrap_HelpProvider_AddHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33688 PyObject
*resultobj
= NULL
;
33689 wxHelpProvider
*arg1
= (wxHelpProvider
*) 0 ;
33690 wxWindow
*arg2
= (wxWindow
*) 0 ;
33691 wxString
*arg3
= 0 ;
33692 bool temp3
= false ;
33693 PyObject
* obj0
= 0 ;
33694 PyObject
* obj1
= 0 ;
33695 PyObject
* obj2
= 0 ;
33696 char *kwnames
[] = {
33697 (char *) "self",(char *) "window",(char *) "text", NULL
33700 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HelpProvider_AddHelp",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
33701 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpProvider
, SWIG_POINTER_EXCEPTION
| 0);
33702 if (SWIG_arg_fail(1)) SWIG_fail
;
33703 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
33704 if (SWIG_arg_fail(2)) SWIG_fail
;
33706 arg3
= wxString_in_helper(obj2
);
33707 if (arg3
== NULL
) SWIG_fail
;
33711 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33712 (arg1
)->AddHelp(arg2
,(wxString
const &)*arg3
);
33714 wxPyEndAllowThreads(__tstate
);
33715 if (PyErr_Occurred()) SWIG_fail
;
33717 Py_INCREF(Py_None
); resultobj
= Py_None
;
33732 static PyObject
*_wrap_HelpProvider_AddHelpById(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33733 PyObject
*resultobj
= NULL
;
33734 wxHelpProvider
*arg1
= (wxHelpProvider
*) 0 ;
33736 wxString
*arg3
= 0 ;
33737 bool temp3
= false ;
33738 PyObject
* obj0
= 0 ;
33739 PyObject
* obj1
= 0 ;
33740 PyObject
* obj2
= 0 ;
33741 char *kwnames
[] = {
33742 (char *) "self",(char *) "id",(char *) "text", NULL
33745 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HelpProvider_AddHelpById",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
33746 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpProvider
, SWIG_POINTER_EXCEPTION
| 0);
33747 if (SWIG_arg_fail(1)) SWIG_fail
;
33749 arg2
= static_cast<int >(SWIG_As_int(obj1
));
33750 if (SWIG_arg_fail(2)) SWIG_fail
;
33753 arg3
= wxString_in_helper(obj2
);
33754 if (arg3
== NULL
) SWIG_fail
;
33758 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33759 (arg1
)->AddHelp(arg2
,(wxString
const &)*arg3
);
33761 wxPyEndAllowThreads(__tstate
);
33762 if (PyErr_Occurred()) SWIG_fail
;
33764 Py_INCREF(Py_None
); resultobj
= Py_None
;
33779 static PyObject
*_wrap_HelpProvider_RemoveHelp(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33780 PyObject
*resultobj
= NULL
;
33781 wxHelpProvider
*arg1
= (wxHelpProvider
*) 0 ;
33782 wxWindow
*arg2
= (wxWindow
*) 0 ;
33783 PyObject
* obj0
= 0 ;
33784 PyObject
* obj1
= 0 ;
33785 char *kwnames
[] = {
33786 (char *) "self",(char *) "window", NULL
33789 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HelpProvider_RemoveHelp",kwnames
,&obj0
,&obj1
)) goto fail
;
33790 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpProvider
, SWIG_POINTER_EXCEPTION
| 0);
33791 if (SWIG_arg_fail(1)) SWIG_fail
;
33792 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
33793 if (SWIG_arg_fail(2)) SWIG_fail
;
33795 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33796 (arg1
)->RemoveHelp(arg2
);
33798 wxPyEndAllowThreads(__tstate
);
33799 if (PyErr_Occurred()) SWIG_fail
;
33801 Py_INCREF(Py_None
); resultobj
= Py_None
;
33808 static PyObject
*_wrap_HelpProvider_Destroy(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33809 PyObject
*resultobj
= NULL
;
33810 wxHelpProvider
*arg1
= (wxHelpProvider
*) 0 ;
33811 PyObject
* obj0
= 0 ;
33812 char *kwnames
[] = {
33813 (char *) "self", NULL
33816 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HelpProvider_Destroy",kwnames
,&obj0
)) goto fail
;
33817 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpProvider
, SWIG_POINTER_EXCEPTION
| 0);
33818 if (SWIG_arg_fail(1)) SWIG_fail
;
33820 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33821 wxHelpProvider_Destroy(arg1
);
33823 wxPyEndAllowThreads(__tstate
);
33824 if (PyErr_Occurred()) SWIG_fail
;
33826 Py_INCREF(Py_None
); resultobj
= Py_None
;
33833 static PyObject
* HelpProvider_swigregister(PyObject
*, PyObject
*args
) {
33835 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
33836 SWIG_TypeClientData(SWIGTYPE_p_wxHelpProvider
, obj
);
33838 return Py_BuildValue((char *)"");
33840 static PyObject
*_wrap_new_SimpleHelpProvider(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33841 PyObject
*resultobj
= NULL
;
33842 wxSimpleHelpProvider
*result
;
33843 char *kwnames
[] = {
33847 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_SimpleHelpProvider",kwnames
)) goto fail
;
33849 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33850 result
= (wxSimpleHelpProvider
*)new wxSimpleHelpProvider();
33852 wxPyEndAllowThreads(__tstate
);
33853 if (PyErr_Occurred()) SWIG_fail
;
33855 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSimpleHelpProvider
, 1);
33862 static PyObject
* SimpleHelpProvider_swigregister(PyObject
*, PyObject
*args
) {
33864 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
33865 SWIG_TypeClientData(SWIGTYPE_p_wxSimpleHelpProvider
, obj
);
33867 return Py_BuildValue((char *)"");
33869 static PyObject
*_wrap_new_DragImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33870 PyObject
*resultobj
= NULL
;
33871 wxBitmap
*arg1
= 0 ;
33872 wxCursor
const &arg2_defvalue
= wxNullCursor
;
33873 wxCursor
*arg2
= (wxCursor
*) &arg2_defvalue
;
33874 wxGenericDragImage
*result
;
33875 PyObject
* obj0
= 0 ;
33876 PyObject
* obj1
= 0 ;
33877 char *kwnames
[] = {
33878 (char *) "image",(char *) "cursor", NULL
33881 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_DragImage",kwnames
,&obj0
,&obj1
)) goto fail
;
33883 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
33884 if (SWIG_arg_fail(1)) SWIG_fail
;
33885 if (arg1
== NULL
) {
33886 SWIG_null_ref("wxBitmap");
33888 if (SWIG_arg_fail(1)) SWIG_fail
;
33892 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxCursor
, SWIG_POINTER_EXCEPTION
| 0);
33893 if (SWIG_arg_fail(2)) SWIG_fail
;
33894 if (arg2
== NULL
) {
33895 SWIG_null_ref("wxCursor");
33897 if (SWIG_arg_fail(2)) SWIG_fail
;
33901 if (!wxPyCheckForApp()) SWIG_fail
;
33902 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33903 result
= (wxGenericDragImage
*)new wxGenericDragImage((wxBitmap
const &)*arg1
,(wxCursor
const &)*arg2
);
33905 wxPyEndAllowThreads(__tstate
);
33906 if (PyErr_Occurred()) SWIG_fail
;
33908 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGenericDragImage
, 1);
33915 static PyObject
*_wrap_new_DragIcon(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33916 PyObject
*resultobj
= NULL
;
33918 wxCursor
const &arg2_defvalue
= wxNullCursor
;
33919 wxCursor
*arg2
= (wxCursor
*) &arg2_defvalue
;
33920 wxGenericDragImage
*result
;
33921 PyObject
* obj0
= 0 ;
33922 PyObject
* obj1
= 0 ;
33923 char *kwnames
[] = {
33924 (char *) "image",(char *) "cursor", NULL
33927 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_DragIcon",kwnames
,&obj0
,&obj1
)) goto fail
;
33929 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxIcon
, SWIG_POINTER_EXCEPTION
| 0);
33930 if (SWIG_arg_fail(1)) SWIG_fail
;
33931 if (arg1
== NULL
) {
33932 SWIG_null_ref("wxIcon");
33934 if (SWIG_arg_fail(1)) SWIG_fail
;
33938 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxCursor
, SWIG_POINTER_EXCEPTION
| 0);
33939 if (SWIG_arg_fail(2)) SWIG_fail
;
33940 if (arg2
== NULL
) {
33941 SWIG_null_ref("wxCursor");
33943 if (SWIG_arg_fail(2)) SWIG_fail
;
33947 if (!wxPyCheckForApp()) SWIG_fail
;
33948 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33949 result
= (wxGenericDragImage
*)new wxGenericDragImage((wxIcon
const &)*arg1
,(wxCursor
const &)*arg2
);
33951 wxPyEndAllowThreads(__tstate
);
33952 if (PyErr_Occurred()) SWIG_fail
;
33954 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGenericDragImage
, 1);
33961 static PyObject
*_wrap_new_DragString(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
33962 PyObject
*resultobj
= NULL
;
33963 wxString
*arg1
= 0 ;
33964 wxCursor
const &arg2_defvalue
= wxNullCursor
;
33965 wxCursor
*arg2
= (wxCursor
*) &arg2_defvalue
;
33966 wxGenericDragImage
*result
;
33967 bool temp1
= false ;
33968 PyObject
* obj0
= 0 ;
33969 PyObject
* obj1
= 0 ;
33970 char *kwnames
[] = {
33971 (char *) "str",(char *) "cursor", NULL
33974 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_DragString",kwnames
,&obj0
,&obj1
)) goto fail
;
33976 arg1
= wxString_in_helper(obj0
);
33977 if (arg1
== NULL
) SWIG_fail
;
33982 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxCursor
, SWIG_POINTER_EXCEPTION
| 0);
33983 if (SWIG_arg_fail(2)) SWIG_fail
;
33984 if (arg2
== NULL
) {
33985 SWIG_null_ref("wxCursor");
33987 if (SWIG_arg_fail(2)) SWIG_fail
;
33991 if (!wxPyCheckForApp()) SWIG_fail
;
33992 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
33993 result
= (wxGenericDragImage
*)new wxGenericDragImage((wxString
const &)*arg1
,(wxCursor
const &)*arg2
);
33995 wxPyEndAllowThreads(__tstate
);
33996 if (PyErr_Occurred()) SWIG_fail
;
33998 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGenericDragImage
, 1);
34013 static PyObject
*_wrap_new_DragTreeItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34014 PyObject
*resultobj
= NULL
;
34015 wxPyTreeCtrl
*arg1
= 0 ;
34016 wxTreeItemId
*arg2
= 0 ;
34017 wxGenericDragImage
*result
;
34018 PyObject
* obj0
= 0 ;
34019 PyObject
* obj1
= 0 ;
34020 char *kwnames
[] = {
34021 (char *) "treeCtrl",(char *) "id", NULL
34024 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_DragTreeItem",kwnames
,&obj0
,&obj1
)) goto fail
;
34026 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTreeCtrl
, SWIG_POINTER_EXCEPTION
| 0);
34027 if (SWIG_arg_fail(1)) SWIG_fail
;
34028 if (arg1
== NULL
) {
34029 SWIG_null_ref("wxPyTreeCtrl");
34031 if (SWIG_arg_fail(1)) SWIG_fail
;
34034 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTreeItemId
, SWIG_POINTER_EXCEPTION
| 0);
34035 if (SWIG_arg_fail(2)) SWIG_fail
;
34036 if (arg2
== NULL
) {
34037 SWIG_null_ref("wxTreeItemId");
34039 if (SWIG_arg_fail(2)) SWIG_fail
;
34042 if (!wxPyCheckForApp()) SWIG_fail
;
34043 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34044 result
= (wxGenericDragImage
*)new wxGenericDragImage((wxPyTreeCtrl
const &)*arg1
,*arg2
);
34046 wxPyEndAllowThreads(__tstate
);
34047 if (PyErr_Occurred()) SWIG_fail
;
34049 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGenericDragImage
, 1);
34056 static PyObject
*_wrap_new_DragListItem(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34057 PyObject
*resultobj
= NULL
;
34058 wxPyListCtrl
*arg1
= 0 ;
34060 wxGenericDragImage
*result
;
34061 PyObject
* obj0
= 0 ;
34062 PyObject
* obj1
= 0 ;
34063 char *kwnames
[] = {
34064 (char *) "listCtrl",(char *) "id", NULL
34067 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_DragListItem",kwnames
,&obj0
,&obj1
)) goto fail
;
34069 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyListCtrl
, SWIG_POINTER_EXCEPTION
| 0);
34070 if (SWIG_arg_fail(1)) SWIG_fail
;
34071 if (arg1
== NULL
) {
34072 SWIG_null_ref("wxPyListCtrl");
34074 if (SWIG_arg_fail(1)) SWIG_fail
;
34077 arg2
= static_cast<long >(SWIG_As_long(obj1
));
34078 if (SWIG_arg_fail(2)) SWIG_fail
;
34081 if (!wxPyCheckForApp()) SWIG_fail
;
34082 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34083 result
= (wxGenericDragImage
*)new wxGenericDragImage((wxPyListCtrl
const &)*arg1
,arg2
);
34085 wxPyEndAllowThreads(__tstate
);
34086 if (PyErr_Occurred()) SWIG_fail
;
34088 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxGenericDragImage
, 1);
34095 static PyObject
*_wrap_delete_DragImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34096 PyObject
*resultobj
= NULL
;
34097 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
34098 PyObject
* obj0
= 0 ;
34099 char *kwnames
[] = {
34100 (char *) "self", NULL
34103 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_DragImage",kwnames
,&obj0
)) goto fail
;
34104 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
34105 if (SWIG_arg_fail(1)) SWIG_fail
;
34107 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34110 wxPyEndAllowThreads(__tstate
);
34111 if (PyErr_Occurred()) SWIG_fail
;
34113 Py_INCREF(Py_None
); resultobj
= Py_None
;
34120 static PyObject
*_wrap_DragImage_SetBackingBitmap(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34121 PyObject
*resultobj
= NULL
;
34122 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
34123 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
34124 PyObject
* obj0
= 0 ;
34125 PyObject
* obj1
= 0 ;
34126 char *kwnames
[] = {
34127 (char *) "self",(char *) "bitmap", NULL
34130 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DragImage_SetBackingBitmap",kwnames
,&obj0
,&obj1
)) goto fail
;
34131 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
34132 if (SWIG_arg_fail(1)) SWIG_fail
;
34133 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION
| 0);
34134 if (SWIG_arg_fail(2)) SWIG_fail
;
34136 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34137 (arg1
)->SetBackingBitmap(arg2
);
34139 wxPyEndAllowThreads(__tstate
);
34140 if (PyErr_Occurred()) SWIG_fail
;
34142 Py_INCREF(Py_None
); resultobj
= Py_None
;
34149 static PyObject
*_wrap_DragImage_BeginDrag(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34150 PyObject
*resultobj
= NULL
;
34151 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
34152 wxPoint
*arg2
= 0 ;
34153 wxWindow
*arg3
= (wxWindow
*) 0 ;
34154 bool arg4
= (bool) false ;
34155 wxRect
*arg5
= (wxRect
*) NULL
;
34158 PyObject
* obj0
= 0 ;
34159 PyObject
* obj1
= 0 ;
34160 PyObject
* obj2
= 0 ;
34161 PyObject
* obj3
= 0 ;
34162 PyObject
* obj4
= 0 ;
34163 char *kwnames
[] = {
34164 (char *) "self",(char *) "hotspot",(char *) "window",(char *) "fullScreen",(char *) "rect", NULL
34167 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:DragImage_BeginDrag",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
34168 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
34169 if (SWIG_arg_fail(1)) SWIG_fail
;
34172 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
34174 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
34175 if (SWIG_arg_fail(3)) SWIG_fail
;
34178 arg4
= static_cast<bool >(SWIG_As_bool(obj3
));
34179 if (SWIG_arg_fail(4)) SWIG_fail
;
34183 SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxRect
, SWIG_POINTER_EXCEPTION
| 0);
34184 if (SWIG_arg_fail(5)) SWIG_fail
;
34187 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34188 result
= (bool)(arg1
)->BeginDrag((wxPoint
const &)*arg2
,arg3
,arg4
,arg5
);
34190 wxPyEndAllowThreads(__tstate
);
34191 if (PyErr_Occurred()) SWIG_fail
;
34194 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34202 static PyObject
*_wrap_DragImage_BeginDragBounded(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34203 PyObject
*resultobj
= NULL
;
34204 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
34205 wxPoint
*arg2
= 0 ;
34206 wxWindow
*arg3
= (wxWindow
*) 0 ;
34207 wxWindow
*arg4
= (wxWindow
*) 0 ;
34210 PyObject
* obj0
= 0 ;
34211 PyObject
* obj1
= 0 ;
34212 PyObject
* obj2
= 0 ;
34213 PyObject
* obj3
= 0 ;
34214 char *kwnames
[] = {
34215 (char *) "self",(char *) "hotspot",(char *) "window",(char *) "boundingWindow", NULL
34218 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:DragImage_BeginDragBounded",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
34219 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
34220 if (SWIG_arg_fail(1)) SWIG_fail
;
34223 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
34225 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
34226 if (SWIG_arg_fail(3)) SWIG_fail
;
34227 SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
34228 if (SWIG_arg_fail(4)) SWIG_fail
;
34230 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34231 result
= (bool)(arg1
)->BeginDrag((wxPoint
const &)*arg2
,arg3
,arg4
);
34233 wxPyEndAllowThreads(__tstate
);
34234 if (PyErr_Occurred()) SWIG_fail
;
34237 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34245 static PyObject
*_wrap_DragImage_EndDrag(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34246 PyObject
*resultobj
= NULL
;
34247 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
34249 PyObject
* obj0
= 0 ;
34250 char *kwnames
[] = {
34251 (char *) "self", NULL
34254 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DragImage_EndDrag",kwnames
,&obj0
)) goto fail
;
34255 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
34256 if (SWIG_arg_fail(1)) SWIG_fail
;
34258 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34259 result
= (bool)(arg1
)->EndDrag();
34261 wxPyEndAllowThreads(__tstate
);
34262 if (PyErr_Occurred()) SWIG_fail
;
34265 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34273 static PyObject
*_wrap_DragImage_Move(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34274 PyObject
*resultobj
= NULL
;
34275 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
34276 wxPoint
*arg2
= 0 ;
34279 PyObject
* obj0
= 0 ;
34280 PyObject
* obj1
= 0 ;
34281 char *kwnames
[] = {
34282 (char *) "self",(char *) "pt", NULL
34285 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DragImage_Move",kwnames
,&obj0
,&obj1
)) goto fail
;
34286 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
34287 if (SWIG_arg_fail(1)) SWIG_fail
;
34290 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
34293 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34294 result
= (bool)(arg1
)->Move((wxPoint
const &)*arg2
);
34296 wxPyEndAllowThreads(__tstate
);
34297 if (PyErr_Occurred()) SWIG_fail
;
34300 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34308 static PyObject
*_wrap_DragImage_Show(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34309 PyObject
*resultobj
= NULL
;
34310 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
34312 PyObject
* obj0
= 0 ;
34313 char *kwnames
[] = {
34314 (char *) "self", NULL
34317 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DragImage_Show",kwnames
,&obj0
)) goto fail
;
34318 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
34319 if (SWIG_arg_fail(1)) SWIG_fail
;
34321 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34322 result
= (bool)(arg1
)->Show();
34324 wxPyEndAllowThreads(__tstate
);
34325 if (PyErr_Occurred()) SWIG_fail
;
34328 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34336 static PyObject
*_wrap_DragImage_Hide(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34337 PyObject
*resultobj
= NULL
;
34338 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
34340 PyObject
* obj0
= 0 ;
34341 char *kwnames
[] = {
34342 (char *) "self", NULL
34345 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DragImage_Hide",kwnames
,&obj0
)) goto fail
;
34346 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
34347 if (SWIG_arg_fail(1)) SWIG_fail
;
34349 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34350 result
= (bool)(arg1
)->Hide();
34352 wxPyEndAllowThreads(__tstate
);
34353 if (PyErr_Occurred()) SWIG_fail
;
34356 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34364 static PyObject
*_wrap_DragImage_GetImageRect(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34365 PyObject
*resultobj
= NULL
;
34366 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
34367 wxPoint
*arg2
= 0 ;
34370 PyObject
* obj0
= 0 ;
34371 PyObject
* obj1
= 0 ;
34372 char *kwnames
[] = {
34373 (char *) "self",(char *) "pos", NULL
34376 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DragImage_GetImageRect",kwnames
,&obj0
,&obj1
)) goto fail
;
34377 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
34378 if (SWIG_arg_fail(1)) SWIG_fail
;
34381 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
34384 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34385 result
= ((wxGenericDragImage
const *)arg1
)->GetImageRect((wxPoint
const &)*arg2
);
34387 wxPyEndAllowThreads(__tstate
);
34388 if (PyErr_Occurred()) SWIG_fail
;
34391 wxRect
* resultptr
;
34392 resultptr
= new wxRect(static_cast<wxRect
& >(result
));
34393 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxRect
, 1);
34401 static PyObject
*_wrap_DragImage_DoDrawImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34402 PyObject
*resultobj
= NULL
;
34403 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
34405 wxPoint
*arg3
= 0 ;
34408 PyObject
* obj0
= 0 ;
34409 PyObject
* obj1
= 0 ;
34410 PyObject
* obj2
= 0 ;
34411 char *kwnames
[] = {
34412 (char *) "self",(char *) "dc",(char *) "pos", NULL
34415 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DragImage_DoDrawImage",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
34416 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
34417 if (SWIG_arg_fail(1)) SWIG_fail
;
34419 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION
| 0);
34420 if (SWIG_arg_fail(2)) SWIG_fail
;
34421 if (arg2
== NULL
) {
34422 SWIG_null_ref("wxDC");
34424 if (SWIG_arg_fail(2)) SWIG_fail
;
34428 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
34431 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34432 result
= (bool)((wxGenericDragImage
const *)arg1
)->DoDrawImage(*arg2
,(wxPoint
const &)*arg3
);
34434 wxPyEndAllowThreads(__tstate
);
34435 if (PyErr_Occurred()) SWIG_fail
;
34438 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34446 static PyObject
*_wrap_DragImage_UpdateBackingFromWindow(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34447 PyObject
*resultobj
= NULL
;
34448 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
34450 wxMemoryDC
*arg3
= 0 ;
34456 PyObject
* obj0
= 0 ;
34457 PyObject
* obj1
= 0 ;
34458 PyObject
* obj2
= 0 ;
34459 PyObject
* obj3
= 0 ;
34460 PyObject
* obj4
= 0 ;
34461 char *kwnames
[] = {
34462 (char *) "self",(char *) "windowDC",(char *) "destDC",(char *) "sourceRect",(char *) "destRect", NULL
34465 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DragImage_UpdateBackingFromWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
34466 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
34467 if (SWIG_arg_fail(1)) SWIG_fail
;
34469 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION
| 0);
34470 if (SWIG_arg_fail(2)) SWIG_fail
;
34471 if (arg2
== NULL
) {
34472 SWIG_null_ref("wxDC");
34474 if (SWIG_arg_fail(2)) SWIG_fail
;
34477 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxMemoryDC
, SWIG_POINTER_EXCEPTION
| 0);
34478 if (SWIG_arg_fail(3)) SWIG_fail
;
34479 if (arg3
== NULL
) {
34480 SWIG_null_ref("wxMemoryDC");
34482 if (SWIG_arg_fail(3)) SWIG_fail
;
34486 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
34490 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
34493 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34494 result
= (bool)((wxGenericDragImage
const *)arg1
)->UpdateBackingFromWindow(*arg2
,*arg3
,(wxRect
const &)*arg4
,(wxRect
const &)*arg5
);
34496 wxPyEndAllowThreads(__tstate
);
34497 if (PyErr_Occurred()) SWIG_fail
;
34500 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34508 static PyObject
*_wrap_DragImage_RedrawImage(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34509 PyObject
*resultobj
= NULL
;
34510 wxGenericDragImage
*arg1
= (wxGenericDragImage
*) 0 ;
34511 wxPoint
*arg2
= 0 ;
34512 wxPoint
*arg3
= 0 ;
34518 PyObject
* obj0
= 0 ;
34519 PyObject
* obj1
= 0 ;
34520 PyObject
* obj2
= 0 ;
34521 PyObject
* obj3
= 0 ;
34522 PyObject
* obj4
= 0 ;
34523 char *kwnames
[] = {
34524 (char *) "self",(char *) "oldPos",(char *) "newPos",(char *) "eraseOld",(char *) "drawNew", NULL
34527 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DragImage_RedrawImage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
34528 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxGenericDragImage
, SWIG_POINTER_EXCEPTION
| 0);
34529 if (SWIG_arg_fail(1)) SWIG_fail
;
34532 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
34536 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
34539 arg4
= static_cast<bool >(SWIG_As_bool(obj3
));
34540 if (SWIG_arg_fail(4)) SWIG_fail
;
34543 arg5
= static_cast<bool >(SWIG_As_bool(obj4
));
34544 if (SWIG_arg_fail(5)) SWIG_fail
;
34547 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34548 result
= (bool)(arg1
)->RedrawImage((wxPoint
const &)*arg2
,(wxPoint
const &)*arg3
,arg4
,arg5
);
34550 wxPyEndAllowThreads(__tstate
);
34551 if (PyErr_Occurred()) SWIG_fail
;
34554 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34562 static PyObject
* DragImage_swigregister(PyObject
*, PyObject
*args
) {
34564 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
34565 SWIG_TypeClientData(SWIGTYPE_p_wxGenericDragImage
, obj
);
34567 return Py_BuildValue((char *)"");
34569 static int _wrap_DatePickerCtrlNameStr_set(PyObject
*) {
34570 PyErr_SetString(PyExc_TypeError
,"Variable DatePickerCtrlNameStr is read-only.");
34575 static PyObject
*_wrap_DatePickerCtrlNameStr_get(void) {
34576 PyObject
*pyobj
= NULL
;
34580 pyobj
= PyUnicode_FromWideChar((&wxPyDatePickerCtrlNameStr
)->c_str(), (&wxPyDatePickerCtrlNameStr
)->Len());
34582 pyobj
= PyString_FromStringAndSize((&wxPyDatePickerCtrlNameStr
)->c_str(), (&wxPyDatePickerCtrlNameStr
)->Len());
34589 static PyObject
*_wrap_new_DatePickerCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34590 PyObject
*resultobj
= NULL
;
34591 wxWindow
*arg1
= (wxWindow
*) 0 ;
34592 int arg2
= (int) -1 ;
34593 wxDateTime
const &arg3_defvalue
= wxDefaultDateTime
;
34594 wxDateTime
*arg3
= (wxDateTime
*) &arg3_defvalue
;
34595 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
34596 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
34597 wxSize
const &arg5_defvalue
= wxDefaultSize
;
34598 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
34599 long arg6
= (long) wxDP_DEFAULT
|wxDP_SHOWCENTURY
;
34600 wxValidator
const &arg7_defvalue
= wxDefaultValidator
;
34601 wxValidator
*arg7
= (wxValidator
*) &arg7_defvalue
;
34602 wxString
const &arg8_defvalue
= wxPyDatePickerCtrlNameStr
;
34603 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
34604 wxDatePickerCtrl
*result
;
34607 bool temp8
= false ;
34608 PyObject
* obj0
= 0 ;
34609 PyObject
* obj1
= 0 ;
34610 PyObject
* obj2
= 0 ;
34611 PyObject
* obj3
= 0 ;
34612 PyObject
* obj4
= 0 ;
34613 PyObject
* obj5
= 0 ;
34614 PyObject
* obj6
= 0 ;
34615 PyObject
* obj7
= 0 ;
34616 char *kwnames
[] = {
34617 (char *) "parent",(char *) "id",(char *) "dt",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
34620 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOOO:new_DatePickerCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
;
34621 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
34622 if (SWIG_arg_fail(1)) SWIG_fail
;
34625 arg2
= static_cast<int >(SWIG_As_int(obj1
));
34626 if (SWIG_arg_fail(2)) SWIG_fail
;
34631 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxDateTime
, SWIG_POINTER_EXCEPTION
| 0);
34632 if (SWIG_arg_fail(3)) SWIG_fail
;
34633 if (arg3
== NULL
) {
34634 SWIG_null_ref("wxDateTime");
34636 if (SWIG_arg_fail(3)) SWIG_fail
;
34642 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
34648 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
34653 arg6
= static_cast<long >(SWIG_As_long(obj5
));
34654 if (SWIG_arg_fail(6)) SWIG_fail
;
34659 SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
34660 if (SWIG_arg_fail(7)) SWIG_fail
;
34661 if (arg7
== NULL
) {
34662 SWIG_null_ref("wxValidator");
34664 if (SWIG_arg_fail(7)) SWIG_fail
;
34669 arg8
= wxString_in_helper(obj7
);
34670 if (arg8
== NULL
) SWIG_fail
;
34675 if (!wxPyCheckForApp()) SWIG_fail
;
34676 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34677 result
= (wxDatePickerCtrl
*)new wxDatePickerCtrl(arg1
,arg2
,(wxDateTime
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxValidator
const &)*arg7
,(wxString
const &)*arg8
);
34679 wxPyEndAllowThreads(__tstate
);
34680 if (PyErr_Occurred()) SWIG_fail
;
34682 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxDatePickerCtrl
, 1);
34697 static PyObject
*_wrap_new_PreDatePickerCtrl(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34698 PyObject
*resultobj
= NULL
;
34699 wxDatePickerCtrl
*result
;
34700 char *kwnames
[] = {
34704 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreDatePickerCtrl",kwnames
)) goto fail
;
34706 if (!wxPyCheckForApp()) SWIG_fail
;
34707 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34708 result
= (wxDatePickerCtrl
*)new wxDatePickerCtrl();
34710 wxPyEndAllowThreads(__tstate
);
34711 if (PyErr_Occurred()) SWIG_fail
;
34713 resultobj
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxDatePickerCtrl
, 1);
34720 static PyObject
*_wrap_DatePickerCtrl_Create(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34721 PyObject
*resultobj
= NULL
;
34722 wxDatePickerCtrl
*arg1
= (wxDatePickerCtrl
*) 0 ;
34723 wxWindow
*arg2
= (wxWindow
*) 0 ;
34724 int arg3
= (int) -1 ;
34725 wxDateTime
const &arg4_defvalue
= wxDefaultDateTime
;
34726 wxDateTime
*arg4
= (wxDateTime
*) &arg4_defvalue
;
34727 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
34728 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
34729 wxSize
const &arg6_defvalue
= wxDefaultSize
;
34730 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
34731 long arg7
= (long) wxDP_DEFAULT
|wxDP_SHOWCENTURY
;
34732 wxValidator
const &arg8_defvalue
= wxDefaultValidator
;
34733 wxValidator
*arg8
= (wxValidator
*) &arg8_defvalue
;
34734 wxString
const &arg9_defvalue
= wxPyDatePickerCtrlNameStr
;
34735 wxString
*arg9
= (wxString
*) &arg9_defvalue
;
34739 bool temp9
= false ;
34740 PyObject
* obj0
= 0 ;
34741 PyObject
* obj1
= 0 ;
34742 PyObject
* obj2
= 0 ;
34743 PyObject
* obj3
= 0 ;
34744 PyObject
* obj4
= 0 ;
34745 PyObject
* obj5
= 0 ;
34746 PyObject
* obj6
= 0 ;
34747 PyObject
* obj7
= 0 ;
34748 PyObject
* obj8
= 0 ;
34749 char *kwnames
[] = {
34750 (char *) "self",(char *) "parent",(char *) "id",(char *) "dt",(char *) "pos",(char *) "size",(char *) "style",(char *) "validator",(char *) "name", NULL
34753 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOOO:DatePickerCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) goto fail
;
34754 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDatePickerCtrl
, SWIG_POINTER_EXCEPTION
| 0);
34755 if (SWIG_arg_fail(1)) SWIG_fail
;
34756 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION
| 0);
34757 if (SWIG_arg_fail(2)) SWIG_fail
;
34760 arg3
= static_cast<int >(SWIG_As_int(obj2
));
34761 if (SWIG_arg_fail(3)) SWIG_fail
;
34766 SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_wxDateTime
, SWIG_POINTER_EXCEPTION
| 0);
34767 if (SWIG_arg_fail(4)) SWIG_fail
;
34768 if (arg4
== NULL
) {
34769 SWIG_null_ref("wxDateTime");
34771 if (SWIG_arg_fail(4)) SWIG_fail
;
34777 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
34783 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
34788 arg7
= static_cast<long >(SWIG_As_long(obj6
));
34789 if (SWIG_arg_fail(7)) SWIG_fail
;
34794 SWIG_Python_ConvertPtr(obj7
, (void **)&arg8
, SWIGTYPE_p_wxValidator
, SWIG_POINTER_EXCEPTION
| 0);
34795 if (SWIG_arg_fail(8)) SWIG_fail
;
34796 if (arg8
== NULL
) {
34797 SWIG_null_ref("wxValidator");
34799 if (SWIG_arg_fail(8)) SWIG_fail
;
34804 arg9
= wxString_in_helper(obj8
);
34805 if (arg9
== NULL
) SWIG_fail
;
34810 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34811 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxDateTime
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxValidator
const &)*arg8
,(wxString
const &)*arg9
);
34813 wxPyEndAllowThreads(__tstate
);
34814 if (PyErr_Occurred()) SWIG_fail
;
34817 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
34833 static PyObject
*_wrap_DatePickerCtrl_SetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34834 PyObject
*resultobj
= NULL
;
34835 wxDatePickerCtrl
*arg1
= (wxDatePickerCtrl
*) 0 ;
34836 wxDateTime
*arg2
= 0 ;
34837 PyObject
* obj0
= 0 ;
34838 PyObject
* obj1
= 0 ;
34839 char *kwnames
[] = {
34840 (char *) "self",(char *) "dt", NULL
34843 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DatePickerCtrl_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
;
34844 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDatePickerCtrl
, SWIG_POINTER_EXCEPTION
| 0);
34845 if (SWIG_arg_fail(1)) SWIG_fail
;
34847 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDateTime
, SWIG_POINTER_EXCEPTION
| 0);
34848 if (SWIG_arg_fail(2)) SWIG_fail
;
34849 if (arg2
== NULL
) {
34850 SWIG_null_ref("wxDateTime");
34852 if (SWIG_arg_fail(2)) SWIG_fail
;
34855 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34856 (arg1
)->SetValue((wxDateTime
const &)*arg2
);
34858 wxPyEndAllowThreads(__tstate
);
34859 if (PyErr_Occurred()) SWIG_fail
;
34861 Py_INCREF(Py_None
); resultobj
= Py_None
;
34868 static PyObject
*_wrap_DatePickerCtrl_GetValue(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34869 PyObject
*resultobj
= NULL
;
34870 wxDatePickerCtrl
*arg1
= (wxDatePickerCtrl
*) 0 ;
34872 PyObject
* obj0
= 0 ;
34873 char *kwnames
[] = {
34874 (char *) "self", NULL
34877 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DatePickerCtrl_GetValue",kwnames
,&obj0
)) goto fail
;
34878 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDatePickerCtrl
, SWIG_POINTER_EXCEPTION
| 0);
34879 if (SWIG_arg_fail(1)) SWIG_fail
;
34881 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34882 result
= ((wxDatePickerCtrl
const *)arg1
)->GetValue();
34884 wxPyEndAllowThreads(__tstate
);
34885 if (PyErr_Occurred()) SWIG_fail
;
34888 wxDateTime
* resultptr
;
34889 resultptr
= new wxDateTime(static_cast<wxDateTime
& >(result
));
34890 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxDateTime
, 1);
34898 static PyObject
*_wrap_DatePickerCtrl_SetRange(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34899 PyObject
*resultobj
= NULL
;
34900 wxDatePickerCtrl
*arg1
= (wxDatePickerCtrl
*) 0 ;
34901 wxDateTime
*arg2
= 0 ;
34902 wxDateTime
*arg3
= 0 ;
34903 PyObject
* obj0
= 0 ;
34904 PyObject
* obj1
= 0 ;
34905 PyObject
* obj2
= 0 ;
34906 char *kwnames
[] = {
34907 (char *) "self",(char *) "dt1",(char *) "dt2", NULL
34910 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DatePickerCtrl_SetRange",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
;
34911 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDatePickerCtrl
, SWIG_POINTER_EXCEPTION
| 0);
34912 if (SWIG_arg_fail(1)) SWIG_fail
;
34914 SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDateTime
, SWIG_POINTER_EXCEPTION
| 0);
34915 if (SWIG_arg_fail(2)) SWIG_fail
;
34916 if (arg2
== NULL
) {
34917 SWIG_null_ref("wxDateTime");
34919 if (SWIG_arg_fail(2)) SWIG_fail
;
34922 SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxDateTime
, SWIG_POINTER_EXCEPTION
| 0);
34923 if (SWIG_arg_fail(3)) SWIG_fail
;
34924 if (arg3
== NULL
) {
34925 SWIG_null_ref("wxDateTime");
34927 if (SWIG_arg_fail(3)) SWIG_fail
;
34930 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34931 (arg1
)->SetRange((wxDateTime
const &)*arg2
,(wxDateTime
const &)*arg3
);
34933 wxPyEndAllowThreads(__tstate
);
34934 if (PyErr_Occurred()) SWIG_fail
;
34936 Py_INCREF(Py_None
); resultobj
= Py_None
;
34943 static PyObject
*_wrap_DatePickerCtrl_GetLowerLimit(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34944 PyObject
*resultobj
= NULL
;
34945 wxDatePickerCtrl
*arg1
= (wxDatePickerCtrl
*) 0 ;
34947 PyObject
* obj0
= 0 ;
34948 char *kwnames
[] = {
34949 (char *) "self", NULL
34952 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DatePickerCtrl_GetLowerLimit",kwnames
,&obj0
)) goto fail
;
34953 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDatePickerCtrl
, SWIG_POINTER_EXCEPTION
| 0);
34954 if (SWIG_arg_fail(1)) SWIG_fail
;
34956 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34957 result
= wxDatePickerCtrl_GetLowerLimit(arg1
);
34959 wxPyEndAllowThreads(__tstate
);
34960 if (PyErr_Occurred()) SWIG_fail
;
34963 wxDateTime
* resultptr
;
34964 resultptr
= new wxDateTime(static_cast<wxDateTime
& >(result
));
34965 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxDateTime
, 1);
34973 static PyObject
*_wrap_DatePickerCtrl_GetUpperLimit(PyObject
*, PyObject
*args
, PyObject
*kwargs
) {
34974 PyObject
*resultobj
= NULL
;
34975 wxDatePickerCtrl
*arg1
= (wxDatePickerCtrl
*) 0 ;
34977 PyObject
* obj0
= 0 ;
34978 char *kwnames
[] = {
34979 (char *) "self", NULL
34982 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DatePickerCtrl_GetUpperLimit",kwnames
,&obj0
)) goto fail
;
34983 SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDatePickerCtrl
, SWIG_POINTER_EXCEPTION
| 0);
34984 if (SWIG_arg_fail(1)) SWIG_fail
;
34986 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
34987 result
= wxDatePickerCtrl_GetUpperLimit(arg1
);
34989 wxPyEndAllowThreads(__tstate
);
34990 if (PyErr_Occurred()) SWIG_fail
;
34993 wxDateTime
* resultptr
;
34994 resultptr
= new wxDateTime(static_cast<wxDateTime
& >(result
));
34995 resultobj
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxDateTime
, 1);
35003 static PyObject
* DatePickerCtrl_swigregister(PyObject
*, PyObject
*args
) {
35005 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
35006 SWIG_TypeClientData(SWIGTYPE_p_wxDatePickerCtrl
, obj
);
35008 return Py_BuildValue((char *)"");
35010 static PyMethodDef SwigMethods
[] = {
35011 { (char *)"new_Button", (PyCFunction
) _wrap_new_Button
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35012 { (char *)"new_PreButton", (PyCFunction
) _wrap_new_PreButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35013 { (char *)"Button_Create", (PyCFunction
) _wrap_Button_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35014 { (char *)"Button_SetDefault", (PyCFunction
) _wrap_Button_SetDefault
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35015 { (char *)"Button_GetDefaultSize", (PyCFunction
) _wrap_Button_GetDefaultSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35016 { (char *)"Button_GetClassDefaultAttributes", (PyCFunction
) _wrap_Button_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35017 { (char *)"Button_swigregister", Button_swigregister
, METH_VARARGS
, NULL
},
35018 { (char *)"new_BitmapButton", (PyCFunction
) _wrap_new_BitmapButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35019 { (char *)"new_PreBitmapButton", (PyCFunction
) _wrap_new_PreBitmapButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35020 { (char *)"BitmapButton_Create", (PyCFunction
) _wrap_BitmapButton_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35021 { (char *)"BitmapButton_GetBitmapLabel", (PyCFunction
) _wrap_BitmapButton_GetBitmapLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35022 { (char *)"BitmapButton_GetBitmapDisabled", (PyCFunction
) _wrap_BitmapButton_GetBitmapDisabled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35023 { (char *)"BitmapButton_GetBitmapFocus", (PyCFunction
) _wrap_BitmapButton_GetBitmapFocus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35024 { (char *)"BitmapButton_GetBitmapSelected", (PyCFunction
) _wrap_BitmapButton_GetBitmapSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35025 { (char *)"BitmapButton_SetBitmapDisabled", (PyCFunction
) _wrap_BitmapButton_SetBitmapDisabled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35026 { (char *)"BitmapButton_SetBitmapFocus", (PyCFunction
) _wrap_BitmapButton_SetBitmapFocus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35027 { (char *)"BitmapButton_SetBitmapSelected", (PyCFunction
) _wrap_BitmapButton_SetBitmapSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35028 { (char *)"BitmapButton_SetBitmapLabel", (PyCFunction
) _wrap_BitmapButton_SetBitmapLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35029 { (char *)"BitmapButton_SetMargins", (PyCFunction
) _wrap_BitmapButton_SetMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35030 { (char *)"BitmapButton_GetMarginX", (PyCFunction
) _wrap_BitmapButton_GetMarginX
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35031 { (char *)"BitmapButton_GetMarginY", (PyCFunction
) _wrap_BitmapButton_GetMarginY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35032 { (char *)"BitmapButton_swigregister", BitmapButton_swigregister
, METH_VARARGS
, NULL
},
35033 { (char *)"new_CheckBox", (PyCFunction
) _wrap_new_CheckBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35034 { (char *)"new_PreCheckBox", (PyCFunction
) _wrap_new_PreCheckBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35035 { (char *)"CheckBox_Create", (PyCFunction
) _wrap_CheckBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35036 { (char *)"CheckBox_GetValue", (PyCFunction
) _wrap_CheckBox_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35037 { (char *)"CheckBox_IsChecked", (PyCFunction
) _wrap_CheckBox_IsChecked
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35038 { (char *)"CheckBox_SetValue", (PyCFunction
) _wrap_CheckBox_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35039 { (char *)"CheckBox_Get3StateValue", (PyCFunction
) _wrap_CheckBox_Get3StateValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35040 { (char *)"CheckBox_Set3StateValue", (PyCFunction
) _wrap_CheckBox_Set3StateValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35041 { (char *)"CheckBox_Is3State", (PyCFunction
) _wrap_CheckBox_Is3State
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35042 { (char *)"CheckBox_Is3rdStateAllowedForUser", (PyCFunction
) _wrap_CheckBox_Is3rdStateAllowedForUser
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35043 { (char *)"CheckBox_GetClassDefaultAttributes", (PyCFunction
) _wrap_CheckBox_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35044 { (char *)"CheckBox_swigregister", CheckBox_swigregister
, METH_VARARGS
, NULL
},
35045 { (char *)"new_Choice", (PyCFunction
) _wrap_new_Choice
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35046 { (char *)"new_PreChoice", (PyCFunction
) _wrap_new_PreChoice
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35047 { (char *)"Choice_Create", (PyCFunction
) _wrap_Choice_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35048 { (char *)"Choice_GetCurrentSelection", (PyCFunction
) _wrap_Choice_GetCurrentSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35049 { (char *)"Choice_GetClassDefaultAttributes", (PyCFunction
) _wrap_Choice_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35050 { (char *)"Choice_swigregister", Choice_swigregister
, METH_VARARGS
, NULL
},
35051 { (char *)"new_ComboBox", (PyCFunction
) _wrap_new_ComboBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35052 { (char *)"new_PreComboBox", (PyCFunction
) _wrap_new_PreComboBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35053 { (char *)"ComboBox_Create", (PyCFunction
) _wrap_ComboBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35054 { (char *)"ComboBox_GetValue", (PyCFunction
) _wrap_ComboBox_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35055 { (char *)"ComboBox_SetValue", (PyCFunction
) _wrap_ComboBox_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35056 { (char *)"ComboBox_Copy", (PyCFunction
) _wrap_ComboBox_Copy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35057 { (char *)"ComboBox_Cut", (PyCFunction
) _wrap_ComboBox_Cut
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35058 { (char *)"ComboBox_Paste", (PyCFunction
) _wrap_ComboBox_Paste
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35059 { (char *)"ComboBox_SetInsertionPoint", (PyCFunction
) _wrap_ComboBox_SetInsertionPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35060 { (char *)"ComboBox_GetInsertionPoint", (PyCFunction
) _wrap_ComboBox_GetInsertionPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35061 { (char *)"ComboBox_GetLastPosition", (PyCFunction
) _wrap_ComboBox_GetLastPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35062 { (char *)"ComboBox_Replace", (PyCFunction
) _wrap_ComboBox_Replace
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35063 { (char *)"ComboBox_SetSelection", (PyCFunction
) _wrap_ComboBox_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35064 { (char *)"ComboBox_SetMark", (PyCFunction
) _wrap_ComboBox_SetMark
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35065 { (char *)"ComboBox_GetMark", (PyCFunction
) _wrap_ComboBox_GetMark
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35066 { (char *)"ComboBox_GetCurrentSelection", (PyCFunction
) _wrap_ComboBox_GetCurrentSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35067 { (char *)"ComboBox_SetStringSelection", (PyCFunction
) _wrap_ComboBox_SetStringSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35068 { (char *)"ComboBox_SetString", (PyCFunction
) _wrap_ComboBox_SetString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35069 { (char *)"ComboBox_SetEditable", (PyCFunction
) _wrap_ComboBox_SetEditable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35070 { (char *)"ComboBox_SetInsertionPointEnd", (PyCFunction
) _wrap_ComboBox_SetInsertionPointEnd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35071 { (char *)"ComboBox_Remove", (PyCFunction
) _wrap_ComboBox_Remove
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35072 { (char *)"ComboBox_IsEditable", (PyCFunction
) _wrap_ComboBox_IsEditable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35073 { (char *)"ComboBox_Undo", (PyCFunction
) _wrap_ComboBox_Undo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35074 { (char *)"ComboBox_Redo", (PyCFunction
) _wrap_ComboBox_Redo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35075 { (char *)"ComboBox_SelectAll", (PyCFunction
) _wrap_ComboBox_SelectAll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35076 { (char *)"ComboBox_CanCopy", (PyCFunction
) _wrap_ComboBox_CanCopy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35077 { (char *)"ComboBox_CanCut", (PyCFunction
) _wrap_ComboBox_CanCut
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35078 { (char *)"ComboBox_CanPaste", (PyCFunction
) _wrap_ComboBox_CanPaste
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35079 { (char *)"ComboBox_CanUndo", (PyCFunction
) _wrap_ComboBox_CanUndo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35080 { (char *)"ComboBox_CanRedo", (PyCFunction
) _wrap_ComboBox_CanRedo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35081 { (char *)"ComboBox_GetClassDefaultAttributes", (PyCFunction
) _wrap_ComboBox_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35082 { (char *)"ComboBox_swigregister", ComboBox_swigregister
, METH_VARARGS
, NULL
},
35083 { (char *)"new_Gauge", (PyCFunction
) _wrap_new_Gauge
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35084 { (char *)"new_PreGauge", (PyCFunction
) _wrap_new_PreGauge
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35085 { (char *)"Gauge_Create", (PyCFunction
) _wrap_Gauge_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35086 { (char *)"Gauge_SetRange", (PyCFunction
) _wrap_Gauge_SetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35087 { (char *)"Gauge_GetRange", (PyCFunction
) _wrap_Gauge_GetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35088 { (char *)"Gauge_SetValue", (PyCFunction
) _wrap_Gauge_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35089 { (char *)"Gauge_GetValue", (PyCFunction
) _wrap_Gauge_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35090 { (char *)"Gauge_IsVertical", (PyCFunction
) _wrap_Gauge_IsVertical
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35091 { (char *)"Gauge_SetShadowWidth", (PyCFunction
) _wrap_Gauge_SetShadowWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35092 { (char *)"Gauge_GetShadowWidth", (PyCFunction
) _wrap_Gauge_GetShadowWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35093 { (char *)"Gauge_SetBezelFace", (PyCFunction
) _wrap_Gauge_SetBezelFace
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35094 { (char *)"Gauge_GetBezelFace", (PyCFunction
) _wrap_Gauge_GetBezelFace
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35095 { (char *)"Gauge_GetClassDefaultAttributes", (PyCFunction
) _wrap_Gauge_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35096 { (char *)"Gauge_swigregister", Gauge_swigregister
, METH_VARARGS
, NULL
},
35097 { (char *)"new_StaticBox", (PyCFunction
) _wrap_new_StaticBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35098 { (char *)"new_PreStaticBox", (PyCFunction
) _wrap_new_PreStaticBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35099 { (char *)"StaticBox_Create", (PyCFunction
) _wrap_StaticBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35100 { (char *)"StaticBox_GetClassDefaultAttributes", (PyCFunction
) _wrap_StaticBox_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35101 { (char *)"StaticBox_swigregister", StaticBox_swigregister
, METH_VARARGS
, NULL
},
35102 { (char *)"new_StaticLine", (PyCFunction
) _wrap_new_StaticLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35103 { (char *)"new_PreStaticLine", (PyCFunction
) _wrap_new_PreStaticLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35104 { (char *)"StaticLine_Create", (PyCFunction
) _wrap_StaticLine_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35105 { (char *)"StaticLine_IsVertical", (PyCFunction
) _wrap_StaticLine_IsVertical
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35106 { (char *)"StaticLine_GetDefaultSize", (PyCFunction
) _wrap_StaticLine_GetDefaultSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35107 { (char *)"StaticLine_GetClassDefaultAttributes", (PyCFunction
) _wrap_StaticLine_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35108 { (char *)"StaticLine_swigregister", StaticLine_swigregister
, METH_VARARGS
, NULL
},
35109 { (char *)"new_StaticText", (PyCFunction
) _wrap_new_StaticText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35110 { (char *)"new_PreStaticText", (PyCFunction
) _wrap_new_PreStaticText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35111 { (char *)"StaticText_Create", (PyCFunction
) _wrap_StaticText_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35112 { (char *)"StaticText_Wrap", (PyCFunction
) _wrap_StaticText_Wrap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35113 { (char *)"StaticText_GetClassDefaultAttributes", (PyCFunction
) _wrap_StaticText_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35114 { (char *)"StaticText_swigregister", StaticText_swigregister
, METH_VARARGS
, NULL
},
35115 { (char *)"new_StaticBitmap", (PyCFunction
) _wrap_new_StaticBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35116 { (char *)"new_PreStaticBitmap", (PyCFunction
) _wrap_new_PreStaticBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35117 { (char *)"StaticBitmap_Create", (PyCFunction
) _wrap_StaticBitmap_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35118 { (char *)"StaticBitmap_GetBitmap", (PyCFunction
) _wrap_StaticBitmap_GetBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35119 { (char *)"StaticBitmap_SetBitmap", (PyCFunction
) _wrap_StaticBitmap_SetBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35120 { (char *)"StaticBitmap_SetIcon", (PyCFunction
) _wrap_StaticBitmap_SetIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35121 { (char *)"StaticBitmap_GetClassDefaultAttributes", (PyCFunction
) _wrap_StaticBitmap_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35122 { (char *)"StaticBitmap_swigregister", StaticBitmap_swigregister
, METH_VARARGS
, NULL
},
35123 { (char *)"new_ListBox", (PyCFunction
) _wrap_new_ListBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35124 { (char *)"new_PreListBox", (PyCFunction
) _wrap_new_PreListBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35125 { (char *)"ListBox_Create", (PyCFunction
) _wrap_ListBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35126 { (char *)"ListBox_Insert", (PyCFunction
) _wrap_ListBox_Insert
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35127 { (char *)"ListBox_InsertItems", (PyCFunction
) _wrap_ListBox_InsertItems
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35128 { (char *)"ListBox_Set", (PyCFunction
) _wrap_ListBox_Set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35129 { (char *)"ListBox_IsSelected", (PyCFunction
) _wrap_ListBox_IsSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35130 { (char *)"ListBox_SetSelection", (PyCFunction
) _wrap_ListBox_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35131 { (char *)"ListBox_Select", (PyCFunction
) _wrap_ListBox_Select
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35132 { (char *)"ListBox_Deselect", (PyCFunction
) _wrap_ListBox_Deselect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35133 { (char *)"ListBox_DeselectAll", (PyCFunction
) _wrap_ListBox_DeselectAll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35134 { (char *)"ListBox_SetStringSelection", (PyCFunction
) _wrap_ListBox_SetStringSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35135 { (char *)"ListBox_GetSelections", (PyCFunction
) _wrap_ListBox_GetSelections
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35136 { (char *)"ListBox_SetFirstItem", (PyCFunction
) _wrap_ListBox_SetFirstItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35137 { (char *)"ListBox_SetFirstItemStr", (PyCFunction
) _wrap_ListBox_SetFirstItemStr
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35138 { (char *)"ListBox_EnsureVisible", (PyCFunction
) _wrap_ListBox_EnsureVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35139 { (char *)"ListBox_AppendAndEnsureVisible", (PyCFunction
) _wrap_ListBox_AppendAndEnsureVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35140 { (char *)"ListBox_IsSorted", (PyCFunction
) _wrap_ListBox_IsSorted
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35141 { (char *)"ListBox_SetItemForegroundColour", (PyCFunction
) _wrap_ListBox_SetItemForegroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35142 { (char *)"ListBox_SetItemBackgroundColour", (PyCFunction
) _wrap_ListBox_SetItemBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35143 { (char *)"ListBox_SetItemFont", (PyCFunction
) _wrap_ListBox_SetItemFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35144 { (char *)"ListBox_GetClassDefaultAttributes", (PyCFunction
) _wrap_ListBox_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35145 { (char *)"ListBox_swigregister", ListBox_swigregister
, METH_VARARGS
, NULL
},
35146 { (char *)"new_CheckListBox", (PyCFunction
) _wrap_new_CheckListBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35147 { (char *)"new_PreCheckListBox", (PyCFunction
) _wrap_new_PreCheckListBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35148 { (char *)"CheckListBox_Create", (PyCFunction
) _wrap_CheckListBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35149 { (char *)"CheckListBox_IsChecked", (PyCFunction
) _wrap_CheckListBox_IsChecked
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35150 { (char *)"CheckListBox_Check", (PyCFunction
) _wrap_CheckListBox_Check
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35151 { (char *)"CheckListBox_GetItemHeight", (PyCFunction
) _wrap_CheckListBox_GetItemHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35152 { (char *)"CheckListBox_HitTest", (PyCFunction
) _wrap_CheckListBox_HitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35153 { (char *)"CheckListBox_HitTestXY", (PyCFunction
) _wrap_CheckListBox_HitTestXY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35154 { (char *)"CheckListBox_swigregister", CheckListBox_swigregister
, METH_VARARGS
, NULL
},
35155 { (char *)"new_TextAttr", (PyCFunction
) _wrap_new_TextAttr
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35156 { (char *)"delete_TextAttr", (PyCFunction
) _wrap_delete_TextAttr
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35157 { (char *)"TextAttr_Init", (PyCFunction
) _wrap_TextAttr_Init
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35158 { (char *)"TextAttr_SetTextColour", (PyCFunction
) _wrap_TextAttr_SetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35159 { (char *)"TextAttr_SetBackgroundColour", (PyCFunction
) _wrap_TextAttr_SetBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35160 { (char *)"TextAttr_SetFont", (PyCFunction
) _wrap_TextAttr_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35161 { (char *)"TextAttr_SetAlignment", (PyCFunction
) _wrap_TextAttr_SetAlignment
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35162 { (char *)"TextAttr_SetTabs", (PyCFunction
) _wrap_TextAttr_SetTabs
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35163 { (char *)"TextAttr_SetLeftIndent", (PyCFunction
) _wrap_TextAttr_SetLeftIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35164 { (char *)"TextAttr_SetRightIndent", (PyCFunction
) _wrap_TextAttr_SetRightIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35165 { (char *)"TextAttr_SetFlags", (PyCFunction
) _wrap_TextAttr_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35166 { (char *)"TextAttr_HasTextColour", (PyCFunction
) _wrap_TextAttr_HasTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35167 { (char *)"TextAttr_HasBackgroundColour", (PyCFunction
) _wrap_TextAttr_HasBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35168 { (char *)"TextAttr_HasFont", (PyCFunction
) _wrap_TextAttr_HasFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35169 { (char *)"TextAttr_HasAlignment", (PyCFunction
) _wrap_TextAttr_HasAlignment
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35170 { (char *)"TextAttr_HasTabs", (PyCFunction
) _wrap_TextAttr_HasTabs
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35171 { (char *)"TextAttr_HasLeftIndent", (PyCFunction
) _wrap_TextAttr_HasLeftIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35172 { (char *)"TextAttr_HasRightIndent", (PyCFunction
) _wrap_TextAttr_HasRightIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35173 { (char *)"TextAttr_HasFlag", (PyCFunction
) _wrap_TextAttr_HasFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35174 { (char *)"TextAttr_GetTextColour", (PyCFunction
) _wrap_TextAttr_GetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35175 { (char *)"TextAttr_GetBackgroundColour", (PyCFunction
) _wrap_TextAttr_GetBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35176 { (char *)"TextAttr_GetFont", (PyCFunction
) _wrap_TextAttr_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35177 { (char *)"TextAttr_GetAlignment", (PyCFunction
) _wrap_TextAttr_GetAlignment
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35178 { (char *)"TextAttr_GetTabs", (PyCFunction
) _wrap_TextAttr_GetTabs
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35179 { (char *)"TextAttr_GetLeftIndent", (PyCFunction
) _wrap_TextAttr_GetLeftIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35180 { (char *)"TextAttr_GetLeftSubIndent", (PyCFunction
) _wrap_TextAttr_GetLeftSubIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35181 { (char *)"TextAttr_GetRightIndent", (PyCFunction
) _wrap_TextAttr_GetRightIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35182 { (char *)"TextAttr_GetFlags", (PyCFunction
) _wrap_TextAttr_GetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35183 { (char *)"TextAttr_IsDefault", (PyCFunction
) _wrap_TextAttr_IsDefault
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35184 { (char *)"TextAttr_Combine", (PyCFunction
) _wrap_TextAttr_Combine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35185 { (char *)"TextAttr_swigregister", TextAttr_swigregister
, METH_VARARGS
, NULL
},
35186 { (char *)"new_TextCtrl", (PyCFunction
) _wrap_new_TextCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35187 { (char *)"new_PreTextCtrl", (PyCFunction
) _wrap_new_PreTextCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35188 { (char *)"TextCtrl_Create", (PyCFunction
) _wrap_TextCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35189 { (char *)"TextCtrl_GetValue", (PyCFunction
) _wrap_TextCtrl_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35190 { (char *)"TextCtrl_SetValue", (PyCFunction
) _wrap_TextCtrl_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35191 { (char *)"TextCtrl_GetRange", (PyCFunction
) _wrap_TextCtrl_GetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35192 { (char *)"TextCtrl_GetLineLength", (PyCFunction
) _wrap_TextCtrl_GetLineLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35193 { (char *)"TextCtrl_GetLineText", (PyCFunction
) _wrap_TextCtrl_GetLineText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35194 { (char *)"TextCtrl_GetNumberOfLines", (PyCFunction
) _wrap_TextCtrl_GetNumberOfLines
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35195 { (char *)"TextCtrl_IsModified", (PyCFunction
) _wrap_TextCtrl_IsModified
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35196 { (char *)"TextCtrl_IsEditable", (PyCFunction
) _wrap_TextCtrl_IsEditable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35197 { (char *)"TextCtrl_IsSingleLine", (PyCFunction
) _wrap_TextCtrl_IsSingleLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35198 { (char *)"TextCtrl_IsMultiLine", (PyCFunction
) _wrap_TextCtrl_IsMultiLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35199 { (char *)"TextCtrl_GetSelection", (PyCFunction
) _wrap_TextCtrl_GetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35200 { (char *)"TextCtrl_GetStringSelection", (PyCFunction
) _wrap_TextCtrl_GetStringSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35201 { (char *)"TextCtrl_Clear", (PyCFunction
) _wrap_TextCtrl_Clear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35202 { (char *)"TextCtrl_Replace", (PyCFunction
) _wrap_TextCtrl_Replace
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35203 { (char *)"TextCtrl_Remove", (PyCFunction
) _wrap_TextCtrl_Remove
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35204 { (char *)"TextCtrl_LoadFile", (PyCFunction
) _wrap_TextCtrl_LoadFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35205 { (char *)"TextCtrl_SaveFile", (PyCFunction
) _wrap_TextCtrl_SaveFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35206 { (char *)"TextCtrl_MarkDirty", (PyCFunction
) _wrap_TextCtrl_MarkDirty
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35207 { (char *)"TextCtrl_DiscardEdits", (PyCFunction
) _wrap_TextCtrl_DiscardEdits
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35208 { (char *)"TextCtrl_SetMaxLength", (PyCFunction
) _wrap_TextCtrl_SetMaxLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35209 { (char *)"TextCtrl_WriteText", (PyCFunction
) _wrap_TextCtrl_WriteText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35210 { (char *)"TextCtrl_AppendText", (PyCFunction
) _wrap_TextCtrl_AppendText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35211 { (char *)"TextCtrl_EmulateKeyPress", (PyCFunction
) _wrap_TextCtrl_EmulateKeyPress
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35212 { (char *)"TextCtrl_SetStyle", (PyCFunction
) _wrap_TextCtrl_SetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35213 { (char *)"TextCtrl_GetStyle", (PyCFunction
) _wrap_TextCtrl_GetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35214 { (char *)"TextCtrl_SetDefaultStyle", (PyCFunction
) _wrap_TextCtrl_SetDefaultStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35215 { (char *)"TextCtrl_GetDefaultStyle", (PyCFunction
) _wrap_TextCtrl_GetDefaultStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35216 { (char *)"TextCtrl_XYToPosition", (PyCFunction
) _wrap_TextCtrl_XYToPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35217 { (char *)"TextCtrl_PositionToXY", (PyCFunction
) _wrap_TextCtrl_PositionToXY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35218 { (char *)"TextCtrl_ShowPosition", (PyCFunction
) _wrap_TextCtrl_ShowPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35219 { (char *)"TextCtrl_HitTest", (PyCFunction
) _wrap_TextCtrl_HitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35220 { (char *)"TextCtrl_HitTestPos", (PyCFunction
) _wrap_TextCtrl_HitTestPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35221 { (char *)"TextCtrl_Copy", (PyCFunction
) _wrap_TextCtrl_Copy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35222 { (char *)"TextCtrl_Cut", (PyCFunction
) _wrap_TextCtrl_Cut
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35223 { (char *)"TextCtrl_Paste", (PyCFunction
) _wrap_TextCtrl_Paste
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35224 { (char *)"TextCtrl_CanCopy", (PyCFunction
) _wrap_TextCtrl_CanCopy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35225 { (char *)"TextCtrl_CanCut", (PyCFunction
) _wrap_TextCtrl_CanCut
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35226 { (char *)"TextCtrl_CanPaste", (PyCFunction
) _wrap_TextCtrl_CanPaste
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35227 { (char *)"TextCtrl_Undo", (PyCFunction
) _wrap_TextCtrl_Undo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35228 { (char *)"TextCtrl_Redo", (PyCFunction
) _wrap_TextCtrl_Redo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35229 { (char *)"TextCtrl_CanUndo", (PyCFunction
) _wrap_TextCtrl_CanUndo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35230 { (char *)"TextCtrl_CanRedo", (PyCFunction
) _wrap_TextCtrl_CanRedo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35231 { (char *)"TextCtrl_SetInsertionPoint", (PyCFunction
) _wrap_TextCtrl_SetInsertionPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35232 { (char *)"TextCtrl_SetInsertionPointEnd", (PyCFunction
) _wrap_TextCtrl_SetInsertionPointEnd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35233 { (char *)"TextCtrl_GetInsertionPoint", (PyCFunction
) _wrap_TextCtrl_GetInsertionPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35234 { (char *)"TextCtrl_GetLastPosition", (PyCFunction
) _wrap_TextCtrl_GetLastPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35235 { (char *)"TextCtrl_SetSelection", (PyCFunction
) _wrap_TextCtrl_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35236 { (char *)"TextCtrl_SelectAll", (PyCFunction
) _wrap_TextCtrl_SelectAll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35237 { (char *)"TextCtrl_SetEditable", (PyCFunction
) _wrap_TextCtrl_SetEditable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35238 { (char *)"TextCtrl_write", (PyCFunction
) _wrap_TextCtrl_write
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35239 { (char *)"TextCtrl_GetString", (PyCFunction
) _wrap_TextCtrl_GetString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35240 { (char *)"TextCtrl_GetClassDefaultAttributes", (PyCFunction
) _wrap_TextCtrl_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35241 { (char *)"TextCtrl_swigregister", TextCtrl_swigregister
, METH_VARARGS
, NULL
},
35242 { (char *)"new_TextUrlEvent", (PyCFunction
) _wrap_new_TextUrlEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35243 { (char *)"TextUrlEvent_GetMouseEvent", (PyCFunction
) _wrap_TextUrlEvent_GetMouseEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35244 { (char *)"TextUrlEvent_GetURLStart", (PyCFunction
) _wrap_TextUrlEvent_GetURLStart
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35245 { (char *)"TextUrlEvent_GetURLEnd", (PyCFunction
) _wrap_TextUrlEvent_GetURLEnd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35246 { (char *)"TextUrlEvent_swigregister", TextUrlEvent_swigregister
, METH_VARARGS
, NULL
},
35247 { (char *)"new_ScrollBar", (PyCFunction
) _wrap_new_ScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35248 { (char *)"new_PreScrollBar", (PyCFunction
) _wrap_new_PreScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35249 { (char *)"ScrollBar_Create", (PyCFunction
) _wrap_ScrollBar_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35250 { (char *)"ScrollBar_GetThumbPosition", (PyCFunction
) _wrap_ScrollBar_GetThumbPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35251 { (char *)"ScrollBar_GetThumbSize", (PyCFunction
) _wrap_ScrollBar_GetThumbSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35252 { (char *)"ScrollBar_GetPageSize", (PyCFunction
) _wrap_ScrollBar_GetPageSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35253 { (char *)"ScrollBar_GetRange", (PyCFunction
) _wrap_ScrollBar_GetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35254 { (char *)"ScrollBar_IsVertical", (PyCFunction
) _wrap_ScrollBar_IsVertical
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35255 { (char *)"ScrollBar_SetThumbPosition", (PyCFunction
) _wrap_ScrollBar_SetThumbPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35256 { (char *)"ScrollBar_SetScrollbar", (PyCFunction
) _wrap_ScrollBar_SetScrollbar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35257 { (char *)"ScrollBar_GetClassDefaultAttributes", (PyCFunction
) _wrap_ScrollBar_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35258 { (char *)"ScrollBar_swigregister", ScrollBar_swigregister
, METH_VARARGS
, NULL
},
35259 { (char *)"new_SpinButton", (PyCFunction
) _wrap_new_SpinButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35260 { (char *)"new_PreSpinButton", (PyCFunction
) _wrap_new_PreSpinButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35261 { (char *)"SpinButton_Create", (PyCFunction
) _wrap_SpinButton_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35262 { (char *)"SpinButton_GetValue", (PyCFunction
) _wrap_SpinButton_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35263 { (char *)"SpinButton_GetMin", (PyCFunction
) _wrap_SpinButton_GetMin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35264 { (char *)"SpinButton_GetMax", (PyCFunction
) _wrap_SpinButton_GetMax
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35265 { (char *)"SpinButton_SetValue", (PyCFunction
) _wrap_SpinButton_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35266 { (char *)"SpinButton_SetMin", (PyCFunction
) _wrap_SpinButton_SetMin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35267 { (char *)"SpinButton_SetMax", (PyCFunction
) _wrap_SpinButton_SetMax
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35268 { (char *)"SpinButton_SetRange", (PyCFunction
) _wrap_SpinButton_SetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35269 { (char *)"SpinButton_IsVertical", (PyCFunction
) _wrap_SpinButton_IsVertical
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35270 { (char *)"SpinButton_GetClassDefaultAttributes", (PyCFunction
) _wrap_SpinButton_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35271 { (char *)"SpinButton_swigregister", SpinButton_swigregister
, METH_VARARGS
, NULL
},
35272 { (char *)"new_SpinCtrl", (PyCFunction
) _wrap_new_SpinCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35273 { (char *)"new_PreSpinCtrl", (PyCFunction
) _wrap_new_PreSpinCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35274 { (char *)"SpinCtrl_Create", (PyCFunction
) _wrap_SpinCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35275 { (char *)"SpinCtrl_GetValue", (PyCFunction
) _wrap_SpinCtrl_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35276 { (char *)"SpinCtrl_SetValue", (PyCFunction
) _wrap_SpinCtrl_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35277 { (char *)"SpinCtrl_SetValueString", (PyCFunction
) _wrap_SpinCtrl_SetValueString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35278 { (char *)"SpinCtrl_SetRange", (PyCFunction
) _wrap_SpinCtrl_SetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35279 { (char *)"SpinCtrl_GetMin", (PyCFunction
) _wrap_SpinCtrl_GetMin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35280 { (char *)"SpinCtrl_GetMax", (PyCFunction
) _wrap_SpinCtrl_GetMax
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35281 { (char *)"SpinCtrl_SetSelection", (PyCFunction
) _wrap_SpinCtrl_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35282 { (char *)"SpinCtrl_GetClassDefaultAttributes", (PyCFunction
) _wrap_SpinCtrl_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35283 { (char *)"SpinCtrl_swigregister", SpinCtrl_swigregister
, METH_VARARGS
, NULL
},
35284 { (char *)"new_SpinEvent", (PyCFunction
) _wrap_new_SpinEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35285 { (char *)"SpinEvent_GetPosition", (PyCFunction
) _wrap_SpinEvent_GetPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35286 { (char *)"SpinEvent_SetPosition", (PyCFunction
) _wrap_SpinEvent_SetPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35287 { (char *)"SpinEvent_swigregister", SpinEvent_swigregister
, METH_VARARGS
, NULL
},
35288 { (char *)"new_RadioBox", (PyCFunction
) _wrap_new_RadioBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35289 { (char *)"new_PreRadioBox", (PyCFunction
) _wrap_new_PreRadioBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35290 { (char *)"RadioBox_Create", (PyCFunction
) _wrap_RadioBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35291 { (char *)"RadioBox_SetSelection", (PyCFunction
) _wrap_RadioBox_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35292 { (char *)"RadioBox_GetSelection", (PyCFunction
) _wrap_RadioBox_GetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35293 { (char *)"RadioBox_GetStringSelection", (PyCFunction
) _wrap_RadioBox_GetStringSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35294 { (char *)"RadioBox_SetStringSelection", (PyCFunction
) _wrap_RadioBox_SetStringSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35295 { (char *)"RadioBox_GetCount", (PyCFunction
) _wrap_RadioBox_GetCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35296 { (char *)"RadioBox_FindString", (PyCFunction
) _wrap_RadioBox_FindString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35297 { (char *)"RadioBox_GetString", (PyCFunction
) _wrap_RadioBox_GetString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35298 { (char *)"RadioBox_SetString", (PyCFunction
) _wrap_RadioBox_SetString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35299 { (char *)"RadioBox_EnableItem", (PyCFunction
) _wrap_RadioBox_EnableItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35300 { (char *)"RadioBox_ShowItem", (PyCFunction
) _wrap_RadioBox_ShowItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35301 { (char *)"RadioBox_GetColumnCount", (PyCFunction
) _wrap_RadioBox_GetColumnCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35302 { (char *)"RadioBox_GetRowCount", (PyCFunction
) _wrap_RadioBox_GetRowCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35303 { (char *)"RadioBox_GetNextItem", (PyCFunction
) _wrap_RadioBox_GetNextItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35304 { (char *)"RadioBox_GetClassDefaultAttributes", (PyCFunction
) _wrap_RadioBox_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35305 { (char *)"RadioBox_swigregister", RadioBox_swigregister
, METH_VARARGS
, NULL
},
35306 { (char *)"new_RadioButton", (PyCFunction
) _wrap_new_RadioButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35307 { (char *)"new_PreRadioButton", (PyCFunction
) _wrap_new_PreRadioButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35308 { (char *)"RadioButton_Create", (PyCFunction
) _wrap_RadioButton_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35309 { (char *)"RadioButton_GetValue", (PyCFunction
) _wrap_RadioButton_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35310 { (char *)"RadioButton_SetValue", (PyCFunction
) _wrap_RadioButton_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35311 { (char *)"RadioButton_GetClassDefaultAttributes", (PyCFunction
) _wrap_RadioButton_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35312 { (char *)"RadioButton_swigregister", RadioButton_swigregister
, METH_VARARGS
, NULL
},
35313 { (char *)"new_Slider", (PyCFunction
) _wrap_new_Slider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35314 { (char *)"new_PreSlider", (PyCFunction
) _wrap_new_PreSlider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35315 { (char *)"Slider_Create", (PyCFunction
) _wrap_Slider_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35316 { (char *)"Slider_GetValue", (PyCFunction
) _wrap_Slider_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35317 { (char *)"Slider_SetValue", (PyCFunction
) _wrap_Slider_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35318 { (char *)"Slider_SetRange", (PyCFunction
) _wrap_Slider_SetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35319 { (char *)"Slider_GetMin", (PyCFunction
) _wrap_Slider_GetMin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35320 { (char *)"Slider_GetMax", (PyCFunction
) _wrap_Slider_GetMax
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35321 { (char *)"Slider_SetMin", (PyCFunction
) _wrap_Slider_SetMin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35322 { (char *)"Slider_SetMax", (PyCFunction
) _wrap_Slider_SetMax
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35323 { (char *)"Slider_SetLineSize", (PyCFunction
) _wrap_Slider_SetLineSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35324 { (char *)"Slider_SetPageSize", (PyCFunction
) _wrap_Slider_SetPageSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35325 { (char *)"Slider_GetLineSize", (PyCFunction
) _wrap_Slider_GetLineSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35326 { (char *)"Slider_GetPageSize", (PyCFunction
) _wrap_Slider_GetPageSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35327 { (char *)"Slider_SetThumbLength", (PyCFunction
) _wrap_Slider_SetThumbLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35328 { (char *)"Slider_GetThumbLength", (PyCFunction
) _wrap_Slider_GetThumbLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35329 { (char *)"Slider_SetTickFreq", (PyCFunction
) _wrap_Slider_SetTickFreq
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35330 { (char *)"Slider_GetTickFreq", (PyCFunction
) _wrap_Slider_GetTickFreq
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35331 { (char *)"Slider_ClearTicks", (PyCFunction
) _wrap_Slider_ClearTicks
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35332 { (char *)"Slider_SetTick", (PyCFunction
) _wrap_Slider_SetTick
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35333 { (char *)"Slider_ClearSel", (PyCFunction
) _wrap_Slider_ClearSel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35334 { (char *)"Slider_GetSelEnd", (PyCFunction
) _wrap_Slider_GetSelEnd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35335 { (char *)"Slider_GetSelStart", (PyCFunction
) _wrap_Slider_GetSelStart
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35336 { (char *)"Slider_SetSelection", (PyCFunction
) _wrap_Slider_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35337 { (char *)"Slider_GetClassDefaultAttributes", (PyCFunction
) _wrap_Slider_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35338 { (char *)"Slider_swigregister", Slider_swigregister
, METH_VARARGS
, NULL
},
35339 { (char *)"new_ToggleButton", (PyCFunction
) _wrap_new_ToggleButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35340 { (char *)"new_PreToggleButton", (PyCFunction
) _wrap_new_PreToggleButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35341 { (char *)"ToggleButton_Create", (PyCFunction
) _wrap_ToggleButton_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35342 { (char *)"ToggleButton_SetValue", (PyCFunction
) _wrap_ToggleButton_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35343 { (char *)"ToggleButton_GetValue", (PyCFunction
) _wrap_ToggleButton_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35344 { (char *)"ToggleButton_SetLabel", (PyCFunction
) _wrap_ToggleButton_SetLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35345 { (char *)"ToggleButton_GetClassDefaultAttributes", (PyCFunction
) _wrap_ToggleButton_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35346 { (char *)"ToggleButton_swigregister", ToggleButton_swigregister
, METH_VARARGS
, NULL
},
35347 { (char *)"BookCtrlBase_GetPageCount", (PyCFunction
) _wrap_BookCtrlBase_GetPageCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35348 { (char *)"BookCtrlBase_GetPage", (PyCFunction
) _wrap_BookCtrlBase_GetPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35349 { (char *)"BookCtrlBase_GetCurrentPage", (PyCFunction
) _wrap_BookCtrlBase_GetCurrentPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35350 { (char *)"BookCtrlBase_GetSelection", (PyCFunction
) _wrap_BookCtrlBase_GetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35351 { (char *)"BookCtrlBase_SetPageText", (PyCFunction
) _wrap_BookCtrlBase_SetPageText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35352 { (char *)"BookCtrlBase_GetPageText", (PyCFunction
) _wrap_BookCtrlBase_GetPageText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35353 { (char *)"BookCtrlBase_SetImageList", (PyCFunction
) _wrap_BookCtrlBase_SetImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35354 { (char *)"BookCtrlBase_AssignImageList", (PyCFunction
) _wrap_BookCtrlBase_AssignImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35355 { (char *)"BookCtrlBase_GetImageList", (PyCFunction
) _wrap_BookCtrlBase_GetImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35356 { (char *)"BookCtrlBase_GetPageImage", (PyCFunction
) _wrap_BookCtrlBase_GetPageImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35357 { (char *)"BookCtrlBase_SetPageImage", (PyCFunction
) _wrap_BookCtrlBase_SetPageImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35358 { (char *)"BookCtrlBase_SetPageSize", (PyCFunction
) _wrap_BookCtrlBase_SetPageSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35359 { (char *)"BookCtrlBase_CalcSizeFromPage", (PyCFunction
) _wrap_BookCtrlBase_CalcSizeFromPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35360 { (char *)"BookCtrlBase_DeletePage", (PyCFunction
) _wrap_BookCtrlBase_DeletePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35361 { (char *)"BookCtrlBase_RemovePage", (PyCFunction
) _wrap_BookCtrlBase_RemovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35362 { (char *)"BookCtrlBase_DeleteAllPages", (PyCFunction
) _wrap_BookCtrlBase_DeleteAllPages
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35363 { (char *)"BookCtrlBase_AddPage", (PyCFunction
) _wrap_BookCtrlBase_AddPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35364 { (char *)"BookCtrlBase_InsertPage", (PyCFunction
) _wrap_BookCtrlBase_InsertPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35365 { (char *)"BookCtrlBase_SetSelection", (PyCFunction
) _wrap_BookCtrlBase_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35366 { (char *)"BookCtrlBase_AdvanceSelection", (PyCFunction
) _wrap_BookCtrlBase_AdvanceSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35367 { (char *)"BookCtrlBase_GetClassDefaultAttributes", (PyCFunction
) _wrap_BookCtrlBase_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35368 { (char *)"BookCtrlBase_swigregister", BookCtrlBase_swigregister
, METH_VARARGS
, NULL
},
35369 { (char *)"new_BookCtrlBaseEvent", (PyCFunction
) _wrap_new_BookCtrlBaseEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35370 { (char *)"BookCtrlBaseEvent_GetSelection", (PyCFunction
) _wrap_BookCtrlBaseEvent_GetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35371 { (char *)"BookCtrlBaseEvent_SetSelection", (PyCFunction
) _wrap_BookCtrlBaseEvent_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35372 { (char *)"BookCtrlBaseEvent_GetOldSelection", (PyCFunction
) _wrap_BookCtrlBaseEvent_GetOldSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35373 { (char *)"BookCtrlBaseEvent_SetOldSelection", (PyCFunction
) _wrap_BookCtrlBaseEvent_SetOldSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35374 { (char *)"BookCtrlBaseEvent_swigregister", BookCtrlBaseEvent_swigregister
, METH_VARARGS
, NULL
},
35375 { (char *)"new_Notebook", (PyCFunction
) _wrap_new_Notebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35376 { (char *)"new_PreNotebook", (PyCFunction
) _wrap_new_PreNotebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35377 { (char *)"Notebook_Create", (PyCFunction
) _wrap_Notebook_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35378 { (char *)"Notebook_GetRowCount", (PyCFunction
) _wrap_Notebook_GetRowCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35379 { (char *)"Notebook_SetPadding", (PyCFunction
) _wrap_Notebook_SetPadding
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35380 { (char *)"Notebook_SetTabSize", (PyCFunction
) _wrap_Notebook_SetTabSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35381 { (char *)"Notebook_HitTest", (PyCFunction
) _wrap_Notebook_HitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35382 { (char *)"Notebook_CalcSizeFromPage", (PyCFunction
) _wrap_Notebook_CalcSizeFromPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35383 { (char *)"Notebook_GetThemeBackgroundColour", (PyCFunction
) _wrap_Notebook_GetThemeBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35384 { (char *)"Notebook_GetClassDefaultAttributes", (PyCFunction
) _wrap_Notebook_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35385 { (char *)"Notebook_swigregister", Notebook_swigregister
, METH_VARARGS
, NULL
},
35386 { (char *)"new_NotebookEvent", (PyCFunction
) _wrap_new_NotebookEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35387 { (char *)"NotebookEvent_swigregister", NotebookEvent_swigregister
, METH_VARARGS
, NULL
},
35388 { (char *)"new_Listbook", (PyCFunction
) _wrap_new_Listbook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35389 { (char *)"new_PreListbook", (PyCFunction
) _wrap_new_PreListbook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35390 { (char *)"Listbook_Create", (PyCFunction
) _wrap_Listbook_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35391 { (char *)"Listbook_IsVertical", (PyCFunction
) _wrap_Listbook_IsVertical
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35392 { (char *)"Listbook_GetListView", (PyCFunction
) _wrap_Listbook_GetListView
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35393 { (char *)"Listbook_swigregister", Listbook_swigregister
, METH_VARARGS
, NULL
},
35394 { (char *)"new_ListbookEvent", (PyCFunction
) _wrap_new_ListbookEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35395 { (char *)"ListbookEvent_swigregister", ListbookEvent_swigregister
, METH_VARARGS
, NULL
},
35396 { (char *)"new_Choicebook", (PyCFunction
) _wrap_new_Choicebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35397 { (char *)"new_PreChoicebook", (PyCFunction
) _wrap_new_PreChoicebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35398 { (char *)"Choicebook_Create", (PyCFunction
) _wrap_Choicebook_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35399 { (char *)"Choicebook_IsVertical", (PyCFunction
) _wrap_Choicebook_IsVertical
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35400 { (char *)"Choicebook_GetChoiceCtrl", (PyCFunction
) _wrap_Choicebook_GetChoiceCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35401 { (char *)"Choicebook_DeleteAllPages", (PyCFunction
) _wrap_Choicebook_DeleteAllPages
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35402 { (char *)"Choicebook_swigregister", Choicebook_swigregister
, METH_VARARGS
, NULL
},
35403 { (char *)"new_ChoicebookEvent", (PyCFunction
) _wrap_new_ChoicebookEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35404 { (char *)"ChoicebookEvent_swigregister", ChoicebookEvent_swigregister
, METH_VARARGS
, NULL
},
35405 { (char *)"ToolBarToolBase_GetId", (PyCFunction
) _wrap_ToolBarToolBase_GetId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35406 { (char *)"ToolBarToolBase_GetControl", (PyCFunction
) _wrap_ToolBarToolBase_GetControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35407 { (char *)"ToolBarToolBase_GetToolBar", (PyCFunction
) _wrap_ToolBarToolBase_GetToolBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35408 { (char *)"ToolBarToolBase_IsButton", (PyCFunction
) _wrap_ToolBarToolBase_IsButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35409 { (char *)"ToolBarToolBase_IsControl", (PyCFunction
) _wrap_ToolBarToolBase_IsControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35410 { (char *)"ToolBarToolBase_IsSeparator", (PyCFunction
) _wrap_ToolBarToolBase_IsSeparator
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35411 { (char *)"ToolBarToolBase_GetStyle", (PyCFunction
) _wrap_ToolBarToolBase_GetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35412 { (char *)"ToolBarToolBase_GetKind", (PyCFunction
) _wrap_ToolBarToolBase_GetKind
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35413 { (char *)"ToolBarToolBase_IsEnabled", (PyCFunction
) _wrap_ToolBarToolBase_IsEnabled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35414 { (char *)"ToolBarToolBase_IsToggled", (PyCFunction
) _wrap_ToolBarToolBase_IsToggled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35415 { (char *)"ToolBarToolBase_CanBeToggled", (PyCFunction
) _wrap_ToolBarToolBase_CanBeToggled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35416 { (char *)"ToolBarToolBase_GetNormalBitmap", (PyCFunction
) _wrap_ToolBarToolBase_GetNormalBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35417 { (char *)"ToolBarToolBase_GetDisabledBitmap", (PyCFunction
) _wrap_ToolBarToolBase_GetDisabledBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35418 { (char *)"ToolBarToolBase_GetBitmap", (PyCFunction
) _wrap_ToolBarToolBase_GetBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35419 { (char *)"ToolBarToolBase_GetLabel", (PyCFunction
) _wrap_ToolBarToolBase_GetLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35420 { (char *)"ToolBarToolBase_GetShortHelp", (PyCFunction
) _wrap_ToolBarToolBase_GetShortHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35421 { (char *)"ToolBarToolBase_GetLongHelp", (PyCFunction
) _wrap_ToolBarToolBase_GetLongHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35422 { (char *)"ToolBarToolBase_Enable", (PyCFunction
) _wrap_ToolBarToolBase_Enable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35423 { (char *)"ToolBarToolBase_Toggle", (PyCFunction
) _wrap_ToolBarToolBase_Toggle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35424 { (char *)"ToolBarToolBase_SetToggle", (PyCFunction
) _wrap_ToolBarToolBase_SetToggle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35425 { (char *)"ToolBarToolBase_SetShortHelp", (PyCFunction
) _wrap_ToolBarToolBase_SetShortHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35426 { (char *)"ToolBarToolBase_SetLongHelp", (PyCFunction
) _wrap_ToolBarToolBase_SetLongHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35427 { (char *)"ToolBarToolBase_SetNormalBitmap", (PyCFunction
) _wrap_ToolBarToolBase_SetNormalBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35428 { (char *)"ToolBarToolBase_SetDisabledBitmap", (PyCFunction
) _wrap_ToolBarToolBase_SetDisabledBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35429 { (char *)"ToolBarToolBase_SetLabel", (PyCFunction
) _wrap_ToolBarToolBase_SetLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35430 { (char *)"ToolBarToolBase_Detach", (PyCFunction
) _wrap_ToolBarToolBase_Detach
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35431 { (char *)"ToolBarToolBase_Attach", (PyCFunction
) _wrap_ToolBarToolBase_Attach
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35432 { (char *)"ToolBarToolBase_GetClientData", (PyCFunction
) _wrap_ToolBarToolBase_GetClientData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35433 { (char *)"ToolBarToolBase_SetClientData", (PyCFunction
) _wrap_ToolBarToolBase_SetClientData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35434 { (char *)"ToolBarToolBase_swigregister", ToolBarToolBase_swigregister
, METH_VARARGS
, NULL
},
35435 { (char *)"ToolBarBase_DoAddTool", (PyCFunction
) _wrap_ToolBarBase_DoAddTool
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35436 { (char *)"ToolBarBase_DoInsertTool", (PyCFunction
) _wrap_ToolBarBase_DoInsertTool
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35437 { (char *)"ToolBarBase_AddToolItem", (PyCFunction
) _wrap_ToolBarBase_AddToolItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35438 { (char *)"ToolBarBase_InsertToolItem", (PyCFunction
) _wrap_ToolBarBase_InsertToolItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35439 { (char *)"ToolBarBase_AddControl", (PyCFunction
) _wrap_ToolBarBase_AddControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35440 { (char *)"ToolBarBase_InsertControl", (PyCFunction
) _wrap_ToolBarBase_InsertControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35441 { (char *)"ToolBarBase_FindControl", (PyCFunction
) _wrap_ToolBarBase_FindControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35442 { (char *)"ToolBarBase_AddSeparator", (PyCFunction
) _wrap_ToolBarBase_AddSeparator
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35443 { (char *)"ToolBarBase_InsertSeparator", (PyCFunction
) _wrap_ToolBarBase_InsertSeparator
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35444 { (char *)"ToolBarBase_RemoveTool", (PyCFunction
) _wrap_ToolBarBase_RemoveTool
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35445 { (char *)"ToolBarBase_DeleteToolByPos", (PyCFunction
) _wrap_ToolBarBase_DeleteToolByPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35446 { (char *)"ToolBarBase_DeleteTool", (PyCFunction
) _wrap_ToolBarBase_DeleteTool
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35447 { (char *)"ToolBarBase_ClearTools", (PyCFunction
) _wrap_ToolBarBase_ClearTools
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35448 { (char *)"ToolBarBase_Realize", (PyCFunction
) _wrap_ToolBarBase_Realize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35449 { (char *)"ToolBarBase_EnableTool", (PyCFunction
) _wrap_ToolBarBase_EnableTool
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35450 { (char *)"ToolBarBase_ToggleTool", (PyCFunction
) _wrap_ToolBarBase_ToggleTool
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35451 { (char *)"ToolBarBase_SetToggle", (PyCFunction
) _wrap_ToolBarBase_SetToggle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35452 { (char *)"ToolBarBase_GetToolClientData", (PyCFunction
) _wrap_ToolBarBase_GetToolClientData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35453 { (char *)"ToolBarBase_SetToolClientData", (PyCFunction
) _wrap_ToolBarBase_SetToolClientData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35454 { (char *)"ToolBarBase_GetToolPos", (PyCFunction
) _wrap_ToolBarBase_GetToolPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35455 { (char *)"ToolBarBase_GetToolState", (PyCFunction
) _wrap_ToolBarBase_GetToolState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35456 { (char *)"ToolBarBase_GetToolEnabled", (PyCFunction
) _wrap_ToolBarBase_GetToolEnabled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35457 { (char *)"ToolBarBase_SetToolShortHelp", (PyCFunction
) _wrap_ToolBarBase_SetToolShortHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35458 { (char *)"ToolBarBase_GetToolShortHelp", (PyCFunction
) _wrap_ToolBarBase_GetToolShortHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35459 { (char *)"ToolBarBase_SetToolLongHelp", (PyCFunction
) _wrap_ToolBarBase_SetToolLongHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35460 { (char *)"ToolBarBase_GetToolLongHelp", (PyCFunction
) _wrap_ToolBarBase_GetToolLongHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35461 { (char *)"ToolBarBase_SetMarginsXY", (PyCFunction
) _wrap_ToolBarBase_SetMarginsXY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35462 { (char *)"ToolBarBase_SetMargins", (PyCFunction
) _wrap_ToolBarBase_SetMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35463 { (char *)"ToolBarBase_SetToolPacking", (PyCFunction
) _wrap_ToolBarBase_SetToolPacking
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35464 { (char *)"ToolBarBase_SetToolSeparation", (PyCFunction
) _wrap_ToolBarBase_SetToolSeparation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35465 { (char *)"ToolBarBase_GetToolMargins", (PyCFunction
) _wrap_ToolBarBase_GetToolMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35466 { (char *)"ToolBarBase_GetMargins", (PyCFunction
) _wrap_ToolBarBase_GetMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35467 { (char *)"ToolBarBase_GetToolPacking", (PyCFunction
) _wrap_ToolBarBase_GetToolPacking
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35468 { (char *)"ToolBarBase_GetToolSeparation", (PyCFunction
) _wrap_ToolBarBase_GetToolSeparation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35469 { (char *)"ToolBarBase_SetRows", (PyCFunction
) _wrap_ToolBarBase_SetRows
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35470 { (char *)"ToolBarBase_SetMaxRowsCols", (PyCFunction
) _wrap_ToolBarBase_SetMaxRowsCols
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35471 { (char *)"ToolBarBase_GetMaxRows", (PyCFunction
) _wrap_ToolBarBase_GetMaxRows
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35472 { (char *)"ToolBarBase_GetMaxCols", (PyCFunction
) _wrap_ToolBarBase_GetMaxCols
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35473 { (char *)"ToolBarBase_SetToolBitmapSize", (PyCFunction
) _wrap_ToolBarBase_SetToolBitmapSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35474 { (char *)"ToolBarBase_GetToolBitmapSize", (PyCFunction
) _wrap_ToolBarBase_GetToolBitmapSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35475 { (char *)"ToolBarBase_GetToolSize", (PyCFunction
) _wrap_ToolBarBase_GetToolSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35476 { (char *)"ToolBarBase_FindToolForPosition", (PyCFunction
) _wrap_ToolBarBase_FindToolForPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35477 { (char *)"ToolBarBase_FindById", (PyCFunction
) _wrap_ToolBarBase_FindById
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35478 { (char *)"ToolBarBase_IsVertical", (PyCFunction
) _wrap_ToolBarBase_IsVertical
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35479 { (char *)"ToolBarBase_swigregister", ToolBarBase_swigregister
, METH_VARARGS
, NULL
},
35480 { (char *)"new_ToolBar", (PyCFunction
) _wrap_new_ToolBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35481 { (char *)"new_PreToolBar", (PyCFunction
) _wrap_new_PreToolBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35482 { (char *)"ToolBar_Create", (PyCFunction
) _wrap_ToolBar_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35483 { (char *)"ToolBar_FindToolForPosition", (PyCFunction
) _wrap_ToolBar_FindToolForPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35484 { (char *)"ToolBar_GetClassDefaultAttributes", (PyCFunction
) _wrap_ToolBar_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35485 { (char *)"ToolBar_swigregister", ToolBar_swigregister
, METH_VARARGS
, NULL
},
35486 { (char *)"new_ListItemAttr", (PyCFunction
) _wrap_new_ListItemAttr
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35487 { (char *)"ListItemAttr_SetTextColour", (PyCFunction
) _wrap_ListItemAttr_SetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35488 { (char *)"ListItemAttr_SetBackgroundColour", (PyCFunction
) _wrap_ListItemAttr_SetBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35489 { (char *)"ListItemAttr_SetFont", (PyCFunction
) _wrap_ListItemAttr_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35490 { (char *)"ListItemAttr_HasTextColour", (PyCFunction
) _wrap_ListItemAttr_HasTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35491 { (char *)"ListItemAttr_HasBackgroundColour", (PyCFunction
) _wrap_ListItemAttr_HasBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35492 { (char *)"ListItemAttr_HasFont", (PyCFunction
) _wrap_ListItemAttr_HasFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35493 { (char *)"ListItemAttr_GetTextColour", (PyCFunction
) _wrap_ListItemAttr_GetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35494 { (char *)"ListItemAttr_GetBackgroundColour", (PyCFunction
) _wrap_ListItemAttr_GetBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35495 { (char *)"ListItemAttr_GetFont", (PyCFunction
) _wrap_ListItemAttr_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35496 { (char *)"ListItemAttr_Destroy", (PyCFunction
) _wrap_ListItemAttr_Destroy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35497 { (char *)"ListItemAttr_swigregister", ListItemAttr_swigregister
, METH_VARARGS
, NULL
},
35498 { (char *)"new_ListItem", (PyCFunction
) _wrap_new_ListItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35499 { (char *)"delete_ListItem", (PyCFunction
) _wrap_delete_ListItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35500 { (char *)"ListItem_Clear", (PyCFunction
) _wrap_ListItem_Clear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35501 { (char *)"ListItem_ClearAttributes", (PyCFunction
) _wrap_ListItem_ClearAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35502 { (char *)"ListItem_SetMask", (PyCFunction
) _wrap_ListItem_SetMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35503 { (char *)"ListItem_SetId", (PyCFunction
) _wrap_ListItem_SetId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35504 { (char *)"ListItem_SetColumn", (PyCFunction
) _wrap_ListItem_SetColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35505 { (char *)"ListItem_SetState", (PyCFunction
) _wrap_ListItem_SetState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35506 { (char *)"ListItem_SetStateMask", (PyCFunction
) _wrap_ListItem_SetStateMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35507 { (char *)"ListItem_SetText", (PyCFunction
) _wrap_ListItem_SetText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35508 { (char *)"ListItem_SetImage", (PyCFunction
) _wrap_ListItem_SetImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35509 { (char *)"ListItem_SetData", (PyCFunction
) _wrap_ListItem_SetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35510 { (char *)"ListItem_SetWidth", (PyCFunction
) _wrap_ListItem_SetWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35511 { (char *)"ListItem_SetAlign", (PyCFunction
) _wrap_ListItem_SetAlign
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35512 { (char *)"ListItem_SetTextColour", (PyCFunction
) _wrap_ListItem_SetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35513 { (char *)"ListItem_SetBackgroundColour", (PyCFunction
) _wrap_ListItem_SetBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35514 { (char *)"ListItem_SetFont", (PyCFunction
) _wrap_ListItem_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35515 { (char *)"ListItem_GetMask", (PyCFunction
) _wrap_ListItem_GetMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35516 { (char *)"ListItem_GetId", (PyCFunction
) _wrap_ListItem_GetId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35517 { (char *)"ListItem_GetColumn", (PyCFunction
) _wrap_ListItem_GetColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35518 { (char *)"ListItem_GetState", (PyCFunction
) _wrap_ListItem_GetState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35519 { (char *)"ListItem_GetText", (PyCFunction
) _wrap_ListItem_GetText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35520 { (char *)"ListItem_GetImage", (PyCFunction
) _wrap_ListItem_GetImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35521 { (char *)"ListItem_GetData", (PyCFunction
) _wrap_ListItem_GetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35522 { (char *)"ListItem_GetWidth", (PyCFunction
) _wrap_ListItem_GetWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35523 { (char *)"ListItem_GetAlign", (PyCFunction
) _wrap_ListItem_GetAlign
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35524 { (char *)"ListItem_GetAttributes", (PyCFunction
) _wrap_ListItem_GetAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35525 { (char *)"ListItem_HasAttributes", (PyCFunction
) _wrap_ListItem_HasAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35526 { (char *)"ListItem_GetTextColour", (PyCFunction
) _wrap_ListItem_GetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35527 { (char *)"ListItem_GetBackgroundColour", (PyCFunction
) _wrap_ListItem_GetBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35528 { (char *)"ListItem_GetFont", (PyCFunction
) _wrap_ListItem_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35529 { (char *)"ListItem_m_mask_set", (PyCFunction
) _wrap_ListItem_m_mask_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35530 { (char *)"ListItem_m_mask_get", (PyCFunction
) _wrap_ListItem_m_mask_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35531 { (char *)"ListItem_m_itemId_set", (PyCFunction
) _wrap_ListItem_m_itemId_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35532 { (char *)"ListItem_m_itemId_get", (PyCFunction
) _wrap_ListItem_m_itemId_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35533 { (char *)"ListItem_m_col_set", (PyCFunction
) _wrap_ListItem_m_col_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35534 { (char *)"ListItem_m_col_get", (PyCFunction
) _wrap_ListItem_m_col_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35535 { (char *)"ListItem_m_state_set", (PyCFunction
) _wrap_ListItem_m_state_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35536 { (char *)"ListItem_m_state_get", (PyCFunction
) _wrap_ListItem_m_state_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35537 { (char *)"ListItem_m_stateMask_set", (PyCFunction
) _wrap_ListItem_m_stateMask_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35538 { (char *)"ListItem_m_stateMask_get", (PyCFunction
) _wrap_ListItem_m_stateMask_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35539 { (char *)"ListItem_m_text_set", (PyCFunction
) _wrap_ListItem_m_text_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35540 { (char *)"ListItem_m_text_get", (PyCFunction
) _wrap_ListItem_m_text_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35541 { (char *)"ListItem_m_image_set", (PyCFunction
) _wrap_ListItem_m_image_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35542 { (char *)"ListItem_m_image_get", (PyCFunction
) _wrap_ListItem_m_image_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35543 { (char *)"ListItem_m_data_set", (PyCFunction
) _wrap_ListItem_m_data_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35544 { (char *)"ListItem_m_data_get", (PyCFunction
) _wrap_ListItem_m_data_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35545 { (char *)"ListItem_m_format_set", (PyCFunction
) _wrap_ListItem_m_format_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35546 { (char *)"ListItem_m_format_get", (PyCFunction
) _wrap_ListItem_m_format_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35547 { (char *)"ListItem_m_width_set", (PyCFunction
) _wrap_ListItem_m_width_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35548 { (char *)"ListItem_m_width_get", (PyCFunction
) _wrap_ListItem_m_width_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35549 { (char *)"ListItem_swigregister", ListItem_swigregister
, METH_VARARGS
, NULL
},
35550 { (char *)"new_ListEvent", (PyCFunction
) _wrap_new_ListEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35551 { (char *)"ListEvent_m_code_set", (PyCFunction
) _wrap_ListEvent_m_code_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35552 { (char *)"ListEvent_m_code_get", (PyCFunction
) _wrap_ListEvent_m_code_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35553 { (char *)"ListEvent_m_oldItemIndex_set", (PyCFunction
) _wrap_ListEvent_m_oldItemIndex_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35554 { (char *)"ListEvent_m_oldItemIndex_get", (PyCFunction
) _wrap_ListEvent_m_oldItemIndex_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35555 { (char *)"ListEvent_m_itemIndex_set", (PyCFunction
) _wrap_ListEvent_m_itemIndex_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35556 { (char *)"ListEvent_m_itemIndex_get", (PyCFunction
) _wrap_ListEvent_m_itemIndex_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35557 { (char *)"ListEvent_m_col_set", (PyCFunction
) _wrap_ListEvent_m_col_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35558 { (char *)"ListEvent_m_col_get", (PyCFunction
) _wrap_ListEvent_m_col_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35559 { (char *)"ListEvent_m_pointDrag_set", (PyCFunction
) _wrap_ListEvent_m_pointDrag_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35560 { (char *)"ListEvent_m_pointDrag_get", (PyCFunction
) _wrap_ListEvent_m_pointDrag_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35561 { (char *)"ListEvent_m_item_get", (PyCFunction
) _wrap_ListEvent_m_item_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35562 { (char *)"ListEvent_GetKeyCode", (PyCFunction
) _wrap_ListEvent_GetKeyCode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35563 { (char *)"ListEvent_GetIndex", (PyCFunction
) _wrap_ListEvent_GetIndex
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35564 { (char *)"ListEvent_GetColumn", (PyCFunction
) _wrap_ListEvent_GetColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35565 { (char *)"ListEvent_GetPoint", (PyCFunction
) _wrap_ListEvent_GetPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35566 { (char *)"ListEvent_GetLabel", (PyCFunction
) _wrap_ListEvent_GetLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35567 { (char *)"ListEvent_GetText", (PyCFunction
) _wrap_ListEvent_GetText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35568 { (char *)"ListEvent_GetImage", (PyCFunction
) _wrap_ListEvent_GetImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35569 { (char *)"ListEvent_GetData", (PyCFunction
) _wrap_ListEvent_GetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35570 { (char *)"ListEvent_GetMask", (PyCFunction
) _wrap_ListEvent_GetMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35571 { (char *)"ListEvent_GetItem", (PyCFunction
) _wrap_ListEvent_GetItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35572 { (char *)"ListEvent_GetCacheFrom", (PyCFunction
) _wrap_ListEvent_GetCacheFrom
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35573 { (char *)"ListEvent_GetCacheTo", (PyCFunction
) _wrap_ListEvent_GetCacheTo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35574 { (char *)"ListEvent_IsEditCancelled", (PyCFunction
) _wrap_ListEvent_IsEditCancelled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35575 { (char *)"ListEvent_SetEditCanceled", (PyCFunction
) _wrap_ListEvent_SetEditCanceled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35576 { (char *)"ListEvent_swigregister", ListEvent_swigregister
, METH_VARARGS
, NULL
},
35577 { (char *)"new_ListCtrl", (PyCFunction
) _wrap_new_ListCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35578 { (char *)"new_PreListCtrl", (PyCFunction
) _wrap_new_PreListCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35579 { (char *)"ListCtrl_Create", (PyCFunction
) _wrap_ListCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35580 { (char *)"ListCtrl__setCallbackInfo", (PyCFunction
) _wrap_ListCtrl__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35581 { (char *)"ListCtrl_SetForegroundColour", (PyCFunction
) _wrap_ListCtrl_SetForegroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35582 { (char *)"ListCtrl_SetBackgroundColour", (PyCFunction
) _wrap_ListCtrl_SetBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35583 { (char *)"ListCtrl_GetColumn", (PyCFunction
) _wrap_ListCtrl_GetColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35584 { (char *)"ListCtrl_SetColumn", (PyCFunction
) _wrap_ListCtrl_SetColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35585 { (char *)"ListCtrl_GetColumnWidth", (PyCFunction
) _wrap_ListCtrl_GetColumnWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35586 { (char *)"ListCtrl_SetColumnWidth", (PyCFunction
) _wrap_ListCtrl_SetColumnWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35587 { (char *)"ListCtrl_GetCountPerPage", (PyCFunction
) _wrap_ListCtrl_GetCountPerPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35588 { (char *)"ListCtrl_GetViewRect", (PyCFunction
) _wrap_ListCtrl_GetViewRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35589 { (char *)"ListCtrl_GetItem", (PyCFunction
) _wrap_ListCtrl_GetItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35590 { (char *)"ListCtrl_SetItem", (PyCFunction
) _wrap_ListCtrl_SetItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35591 { (char *)"ListCtrl_SetStringItem", (PyCFunction
) _wrap_ListCtrl_SetStringItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35592 { (char *)"ListCtrl_GetItemState", (PyCFunction
) _wrap_ListCtrl_GetItemState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35593 { (char *)"ListCtrl_SetItemState", (PyCFunction
) _wrap_ListCtrl_SetItemState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35594 { (char *)"ListCtrl_SetItemImage", (PyCFunction
) _wrap_ListCtrl_SetItemImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35595 { (char *)"ListCtrl_GetItemText", (PyCFunction
) _wrap_ListCtrl_GetItemText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35596 { (char *)"ListCtrl_SetItemText", (PyCFunction
) _wrap_ListCtrl_SetItemText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35597 { (char *)"ListCtrl_GetItemData", (PyCFunction
) _wrap_ListCtrl_GetItemData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35598 { (char *)"ListCtrl_SetItemData", (PyCFunction
) _wrap_ListCtrl_SetItemData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35599 { (char *)"ListCtrl_GetItemPosition", (PyCFunction
) _wrap_ListCtrl_GetItemPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35600 { (char *)"ListCtrl_GetItemRect", (PyCFunction
) _wrap_ListCtrl_GetItemRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35601 { (char *)"ListCtrl_SetItemPosition", (PyCFunction
) _wrap_ListCtrl_SetItemPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35602 { (char *)"ListCtrl_GetItemCount", (PyCFunction
) _wrap_ListCtrl_GetItemCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35603 { (char *)"ListCtrl_GetColumnCount", (PyCFunction
) _wrap_ListCtrl_GetColumnCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35604 { (char *)"ListCtrl_GetItemSpacing", (PyCFunction
) _wrap_ListCtrl_GetItemSpacing
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35605 { (char *)"ListCtrl_SetItemSpacing", (PyCFunction
) _wrap_ListCtrl_SetItemSpacing
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35606 { (char *)"ListCtrl_GetSelectedItemCount", (PyCFunction
) _wrap_ListCtrl_GetSelectedItemCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35607 { (char *)"ListCtrl_GetTextColour", (PyCFunction
) _wrap_ListCtrl_GetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35608 { (char *)"ListCtrl_SetTextColour", (PyCFunction
) _wrap_ListCtrl_SetTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35609 { (char *)"ListCtrl_GetTopItem", (PyCFunction
) _wrap_ListCtrl_GetTopItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35610 { (char *)"ListCtrl_SetSingleStyle", (PyCFunction
) _wrap_ListCtrl_SetSingleStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35611 { (char *)"ListCtrl_SetWindowStyleFlag", (PyCFunction
) _wrap_ListCtrl_SetWindowStyleFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35612 { (char *)"ListCtrl_GetNextItem", (PyCFunction
) _wrap_ListCtrl_GetNextItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35613 { (char *)"ListCtrl_GetImageList", (PyCFunction
) _wrap_ListCtrl_GetImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35614 { (char *)"ListCtrl_SetImageList", (PyCFunction
) _wrap_ListCtrl_SetImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35615 { (char *)"ListCtrl_AssignImageList", (PyCFunction
) _wrap_ListCtrl_AssignImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35616 { (char *)"ListCtrl_InReportView", (PyCFunction
) _wrap_ListCtrl_InReportView
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35617 { (char *)"ListCtrl_IsVirtual", (PyCFunction
) _wrap_ListCtrl_IsVirtual
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35618 { (char *)"ListCtrl_RefreshItem", (PyCFunction
) _wrap_ListCtrl_RefreshItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35619 { (char *)"ListCtrl_RefreshItems", (PyCFunction
) _wrap_ListCtrl_RefreshItems
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35620 { (char *)"ListCtrl_Arrange", (PyCFunction
) _wrap_ListCtrl_Arrange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35621 { (char *)"ListCtrl_DeleteItem", (PyCFunction
) _wrap_ListCtrl_DeleteItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35622 { (char *)"ListCtrl_DeleteAllItems", (PyCFunction
) _wrap_ListCtrl_DeleteAllItems
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35623 { (char *)"ListCtrl_DeleteColumn", (PyCFunction
) _wrap_ListCtrl_DeleteColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35624 { (char *)"ListCtrl_DeleteAllColumns", (PyCFunction
) _wrap_ListCtrl_DeleteAllColumns
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35625 { (char *)"ListCtrl_ClearAll", (PyCFunction
) _wrap_ListCtrl_ClearAll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35626 { (char *)"ListCtrl_EditLabel", (PyCFunction
) _wrap_ListCtrl_EditLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35627 { (char *)"ListCtrl_EnsureVisible", (PyCFunction
) _wrap_ListCtrl_EnsureVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35628 { (char *)"ListCtrl_FindItem", (PyCFunction
) _wrap_ListCtrl_FindItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35629 { (char *)"ListCtrl_FindItemData", (PyCFunction
) _wrap_ListCtrl_FindItemData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35630 { (char *)"ListCtrl_FindItemAtPos", (PyCFunction
) _wrap_ListCtrl_FindItemAtPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35631 { (char *)"ListCtrl_HitTest", (PyCFunction
) _wrap_ListCtrl_HitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35632 { (char *)"ListCtrl_InsertItem", (PyCFunction
) _wrap_ListCtrl_InsertItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35633 { (char *)"ListCtrl_InsertStringItem", (PyCFunction
) _wrap_ListCtrl_InsertStringItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35634 { (char *)"ListCtrl_InsertImageItem", (PyCFunction
) _wrap_ListCtrl_InsertImageItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35635 { (char *)"ListCtrl_InsertImageStringItem", (PyCFunction
) _wrap_ListCtrl_InsertImageStringItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35636 { (char *)"ListCtrl_InsertColumnItem", (PyCFunction
) _wrap_ListCtrl_InsertColumnItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35637 { (char *)"ListCtrl_InsertColumn", (PyCFunction
) _wrap_ListCtrl_InsertColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35638 { (char *)"ListCtrl_SetItemCount", (PyCFunction
) _wrap_ListCtrl_SetItemCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35639 { (char *)"ListCtrl_ScrollList", (PyCFunction
) _wrap_ListCtrl_ScrollList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35640 { (char *)"ListCtrl_SetItemTextColour", (PyCFunction
) _wrap_ListCtrl_SetItemTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35641 { (char *)"ListCtrl_GetItemTextColour", (PyCFunction
) _wrap_ListCtrl_GetItemTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35642 { (char *)"ListCtrl_SetItemBackgroundColour", (PyCFunction
) _wrap_ListCtrl_SetItemBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35643 { (char *)"ListCtrl_GetItemBackgroundColour", (PyCFunction
) _wrap_ListCtrl_GetItemBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35644 { (char *)"ListCtrl_SetItemFont", (PyCFunction
) _wrap_ListCtrl_SetItemFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35645 { (char *)"ListCtrl_GetItemFont", (PyCFunction
) _wrap_ListCtrl_GetItemFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35646 { (char *)"ListCtrl_SortItems", (PyCFunction
) _wrap_ListCtrl_SortItems
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35647 { (char *)"ListCtrl_GetMainWindow", (PyCFunction
) _wrap_ListCtrl_GetMainWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35648 { (char *)"ListCtrl_GetClassDefaultAttributes", (PyCFunction
) _wrap_ListCtrl_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35649 { (char *)"ListCtrl_swigregister", ListCtrl_swigregister
, METH_VARARGS
, NULL
},
35650 { (char *)"new_ListView", (PyCFunction
) _wrap_new_ListView
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35651 { (char *)"new_PreListView", (PyCFunction
) _wrap_new_PreListView
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35652 { (char *)"ListView_Create", (PyCFunction
) _wrap_ListView_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35653 { (char *)"ListView_Select", (PyCFunction
) _wrap_ListView_Select
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35654 { (char *)"ListView_Focus", (PyCFunction
) _wrap_ListView_Focus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35655 { (char *)"ListView_GetFocusedItem", (PyCFunction
) _wrap_ListView_GetFocusedItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35656 { (char *)"ListView_GetNextSelected", (PyCFunction
) _wrap_ListView_GetNextSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35657 { (char *)"ListView_GetFirstSelected", (PyCFunction
) _wrap_ListView_GetFirstSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35658 { (char *)"ListView_IsSelected", (PyCFunction
) _wrap_ListView_IsSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35659 { (char *)"ListView_SetColumnImage", (PyCFunction
) _wrap_ListView_SetColumnImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35660 { (char *)"ListView_ClearColumnImage", (PyCFunction
) _wrap_ListView_ClearColumnImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35661 { (char *)"ListView_swigregister", ListView_swigregister
, METH_VARARGS
, NULL
},
35662 { (char *)"new_TreeItemId", (PyCFunction
) _wrap_new_TreeItemId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35663 { (char *)"delete_TreeItemId", (PyCFunction
) _wrap_delete_TreeItemId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35664 { (char *)"TreeItemId_IsOk", (PyCFunction
) _wrap_TreeItemId_IsOk
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35665 { (char *)"TreeItemId___eq__", (PyCFunction
) _wrap_TreeItemId___eq__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35666 { (char *)"TreeItemId___ne__", (PyCFunction
) _wrap_TreeItemId___ne__
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35667 { (char *)"TreeItemId_m_pItem_set", (PyCFunction
) _wrap_TreeItemId_m_pItem_set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35668 { (char *)"TreeItemId_m_pItem_get", (PyCFunction
) _wrap_TreeItemId_m_pItem_get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35669 { (char *)"TreeItemId_swigregister", TreeItemId_swigregister
, METH_VARARGS
, NULL
},
35670 { (char *)"new_TreeItemData", (PyCFunction
) _wrap_new_TreeItemData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35671 { (char *)"TreeItemData_GetData", (PyCFunction
) _wrap_TreeItemData_GetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35672 { (char *)"TreeItemData_SetData", (PyCFunction
) _wrap_TreeItemData_SetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35673 { (char *)"TreeItemData_GetId", (PyCFunction
) _wrap_TreeItemData_GetId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35674 { (char *)"TreeItemData_SetId", (PyCFunction
) _wrap_TreeItemData_SetId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35675 { (char *)"TreeItemData_Destroy", (PyCFunction
) _wrap_TreeItemData_Destroy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35676 { (char *)"TreeItemData_swigregister", TreeItemData_swigregister
, METH_VARARGS
, NULL
},
35677 { (char *)"new_TreeEvent", (PyCFunction
) _wrap_new_TreeEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35678 { (char *)"TreeEvent_GetItem", (PyCFunction
) _wrap_TreeEvent_GetItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35679 { (char *)"TreeEvent_SetItem", (PyCFunction
) _wrap_TreeEvent_SetItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35680 { (char *)"TreeEvent_GetOldItem", (PyCFunction
) _wrap_TreeEvent_GetOldItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35681 { (char *)"TreeEvent_SetOldItem", (PyCFunction
) _wrap_TreeEvent_SetOldItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35682 { (char *)"TreeEvent_GetPoint", (PyCFunction
) _wrap_TreeEvent_GetPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35683 { (char *)"TreeEvent_SetPoint", (PyCFunction
) _wrap_TreeEvent_SetPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35684 { (char *)"TreeEvent_GetKeyEvent", (PyCFunction
) _wrap_TreeEvent_GetKeyEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35685 { (char *)"TreeEvent_GetKeyCode", (PyCFunction
) _wrap_TreeEvent_GetKeyCode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35686 { (char *)"TreeEvent_SetKeyEvent", (PyCFunction
) _wrap_TreeEvent_SetKeyEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35687 { (char *)"TreeEvent_GetLabel", (PyCFunction
) _wrap_TreeEvent_GetLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35688 { (char *)"TreeEvent_SetLabel", (PyCFunction
) _wrap_TreeEvent_SetLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35689 { (char *)"TreeEvent_IsEditCancelled", (PyCFunction
) _wrap_TreeEvent_IsEditCancelled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35690 { (char *)"TreeEvent_SetEditCanceled", (PyCFunction
) _wrap_TreeEvent_SetEditCanceled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35691 { (char *)"TreeEvent_SetToolTip", (PyCFunction
) _wrap_TreeEvent_SetToolTip
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35692 { (char *)"TreeEvent_GetToolTip", (PyCFunction
) _wrap_TreeEvent_GetToolTip
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35693 { (char *)"TreeEvent_swigregister", TreeEvent_swigregister
, METH_VARARGS
, NULL
},
35694 { (char *)"new_TreeCtrl", (PyCFunction
) _wrap_new_TreeCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35695 { (char *)"new_PreTreeCtrl", (PyCFunction
) _wrap_new_PreTreeCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35696 { (char *)"TreeCtrl_Create", (PyCFunction
) _wrap_TreeCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35697 { (char *)"TreeCtrl__setCallbackInfo", (PyCFunction
) _wrap_TreeCtrl__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35698 { (char *)"TreeCtrl_GetCount", (PyCFunction
) _wrap_TreeCtrl_GetCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35699 { (char *)"TreeCtrl_GetIndent", (PyCFunction
) _wrap_TreeCtrl_GetIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35700 { (char *)"TreeCtrl_SetIndent", (PyCFunction
) _wrap_TreeCtrl_SetIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35701 { (char *)"TreeCtrl_GetSpacing", (PyCFunction
) _wrap_TreeCtrl_GetSpacing
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35702 { (char *)"TreeCtrl_SetSpacing", (PyCFunction
) _wrap_TreeCtrl_SetSpacing
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35703 { (char *)"TreeCtrl_GetImageList", (PyCFunction
) _wrap_TreeCtrl_GetImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35704 { (char *)"TreeCtrl_GetStateImageList", (PyCFunction
) _wrap_TreeCtrl_GetStateImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35705 { (char *)"TreeCtrl_SetImageList", (PyCFunction
) _wrap_TreeCtrl_SetImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35706 { (char *)"TreeCtrl_SetStateImageList", (PyCFunction
) _wrap_TreeCtrl_SetStateImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35707 { (char *)"TreeCtrl_AssignImageList", (PyCFunction
) _wrap_TreeCtrl_AssignImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35708 { (char *)"TreeCtrl_AssignStateImageList", (PyCFunction
) _wrap_TreeCtrl_AssignStateImageList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35709 { (char *)"TreeCtrl_GetItemText", (PyCFunction
) _wrap_TreeCtrl_GetItemText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35710 { (char *)"TreeCtrl_GetItemImage", (PyCFunction
) _wrap_TreeCtrl_GetItemImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35711 { (char *)"TreeCtrl_GetItemData", (PyCFunction
) _wrap_TreeCtrl_GetItemData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35712 { (char *)"TreeCtrl_GetItemPyData", (PyCFunction
) _wrap_TreeCtrl_GetItemPyData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35713 { (char *)"TreeCtrl_GetItemTextColour", (PyCFunction
) _wrap_TreeCtrl_GetItemTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35714 { (char *)"TreeCtrl_GetItemBackgroundColour", (PyCFunction
) _wrap_TreeCtrl_GetItemBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35715 { (char *)"TreeCtrl_GetItemFont", (PyCFunction
) _wrap_TreeCtrl_GetItemFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35716 { (char *)"TreeCtrl_SetItemText", (PyCFunction
) _wrap_TreeCtrl_SetItemText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35717 { (char *)"TreeCtrl_SetItemImage", (PyCFunction
) _wrap_TreeCtrl_SetItemImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35718 { (char *)"TreeCtrl_SetItemData", (PyCFunction
) _wrap_TreeCtrl_SetItemData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35719 { (char *)"TreeCtrl_SetItemPyData", (PyCFunction
) _wrap_TreeCtrl_SetItemPyData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35720 { (char *)"TreeCtrl_SetItemHasChildren", (PyCFunction
) _wrap_TreeCtrl_SetItemHasChildren
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35721 { (char *)"TreeCtrl_SetItemBold", (PyCFunction
) _wrap_TreeCtrl_SetItemBold
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35722 { (char *)"TreeCtrl_SetItemDropHighlight", (PyCFunction
) _wrap_TreeCtrl_SetItemDropHighlight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35723 { (char *)"TreeCtrl_SetItemTextColour", (PyCFunction
) _wrap_TreeCtrl_SetItemTextColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35724 { (char *)"TreeCtrl_SetItemBackgroundColour", (PyCFunction
) _wrap_TreeCtrl_SetItemBackgroundColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35725 { (char *)"TreeCtrl_SetItemFont", (PyCFunction
) _wrap_TreeCtrl_SetItemFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35726 { (char *)"TreeCtrl_IsVisible", (PyCFunction
) _wrap_TreeCtrl_IsVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35727 { (char *)"TreeCtrl_ItemHasChildren", (PyCFunction
) _wrap_TreeCtrl_ItemHasChildren
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35728 { (char *)"TreeCtrl_IsExpanded", (PyCFunction
) _wrap_TreeCtrl_IsExpanded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35729 { (char *)"TreeCtrl_IsSelected", (PyCFunction
) _wrap_TreeCtrl_IsSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35730 { (char *)"TreeCtrl_IsBold", (PyCFunction
) _wrap_TreeCtrl_IsBold
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35731 { (char *)"TreeCtrl_GetChildrenCount", (PyCFunction
) _wrap_TreeCtrl_GetChildrenCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35732 { (char *)"TreeCtrl_GetRootItem", (PyCFunction
) _wrap_TreeCtrl_GetRootItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35733 { (char *)"TreeCtrl_GetSelection", (PyCFunction
) _wrap_TreeCtrl_GetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35734 { (char *)"TreeCtrl_GetSelections", (PyCFunction
) _wrap_TreeCtrl_GetSelections
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35735 { (char *)"TreeCtrl_GetItemParent", (PyCFunction
) _wrap_TreeCtrl_GetItemParent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35736 { (char *)"TreeCtrl_GetFirstChild", (PyCFunction
) _wrap_TreeCtrl_GetFirstChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35737 { (char *)"TreeCtrl_GetNextChild", (PyCFunction
) _wrap_TreeCtrl_GetNextChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35738 { (char *)"TreeCtrl_GetLastChild", (PyCFunction
) _wrap_TreeCtrl_GetLastChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35739 { (char *)"TreeCtrl_GetNextSibling", (PyCFunction
) _wrap_TreeCtrl_GetNextSibling
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35740 { (char *)"TreeCtrl_GetPrevSibling", (PyCFunction
) _wrap_TreeCtrl_GetPrevSibling
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35741 { (char *)"TreeCtrl_GetFirstVisibleItem", (PyCFunction
) _wrap_TreeCtrl_GetFirstVisibleItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35742 { (char *)"TreeCtrl_GetNextVisible", (PyCFunction
) _wrap_TreeCtrl_GetNextVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35743 { (char *)"TreeCtrl_GetPrevVisible", (PyCFunction
) _wrap_TreeCtrl_GetPrevVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35744 { (char *)"TreeCtrl_AddRoot", (PyCFunction
) _wrap_TreeCtrl_AddRoot
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35745 { (char *)"TreeCtrl_PrependItem", (PyCFunction
) _wrap_TreeCtrl_PrependItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35746 { (char *)"TreeCtrl_InsertItem", (PyCFunction
) _wrap_TreeCtrl_InsertItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35747 { (char *)"TreeCtrl_InsertItemBefore", (PyCFunction
) _wrap_TreeCtrl_InsertItemBefore
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35748 { (char *)"TreeCtrl_AppendItem", (PyCFunction
) _wrap_TreeCtrl_AppendItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35749 { (char *)"TreeCtrl_Delete", (PyCFunction
) _wrap_TreeCtrl_Delete
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35750 { (char *)"TreeCtrl_DeleteChildren", (PyCFunction
) _wrap_TreeCtrl_DeleteChildren
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35751 { (char *)"TreeCtrl_DeleteAllItems", (PyCFunction
) _wrap_TreeCtrl_DeleteAllItems
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35752 { (char *)"TreeCtrl_Expand", (PyCFunction
) _wrap_TreeCtrl_Expand
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35753 { (char *)"TreeCtrl_Collapse", (PyCFunction
) _wrap_TreeCtrl_Collapse
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35754 { (char *)"TreeCtrl_CollapseAndReset", (PyCFunction
) _wrap_TreeCtrl_CollapseAndReset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35755 { (char *)"TreeCtrl_Toggle", (PyCFunction
) _wrap_TreeCtrl_Toggle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35756 { (char *)"TreeCtrl_Unselect", (PyCFunction
) _wrap_TreeCtrl_Unselect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35757 { (char *)"TreeCtrl_UnselectItem", (PyCFunction
) _wrap_TreeCtrl_UnselectItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35758 { (char *)"TreeCtrl_UnselectAll", (PyCFunction
) _wrap_TreeCtrl_UnselectAll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35759 { (char *)"TreeCtrl_SelectItem", (PyCFunction
) _wrap_TreeCtrl_SelectItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35760 { (char *)"TreeCtrl_ToggleItemSelection", (PyCFunction
) _wrap_TreeCtrl_ToggleItemSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35761 { (char *)"TreeCtrl_EnsureVisible", (PyCFunction
) _wrap_TreeCtrl_EnsureVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35762 { (char *)"TreeCtrl_ScrollTo", (PyCFunction
) _wrap_TreeCtrl_ScrollTo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35763 { (char *)"TreeCtrl_EditLabel", (PyCFunction
) _wrap_TreeCtrl_EditLabel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35764 { (char *)"TreeCtrl_GetEditControl", (PyCFunction
) _wrap_TreeCtrl_GetEditControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35765 { (char *)"TreeCtrl_SortChildren", (PyCFunction
) _wrap_TreeCtrl_SortChildren
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35766 { (char *)"TreeCtrl_HitTest", (PyCFunction
) _wrap_TreeCtrl_HitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35767 { (char *)"TreeCtrl_GetBoundingRect", (PyCFunction
) _wrap_TreeCtrl_GetBoundingRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35768 { (char *)"TreeCtrl_GetClassDefaultAttributes", (PyCFunction
) _wrap_TreeCtrl_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35769 { (char *)"TreeCtrl_swigregister", TreeCtrl_swigregister
, METH_VARARGS
, NULL
},
35770 { (char *)"new_GenericDirCtrl", (PyCFunction
) _wrap_new_GenericDirCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35771 { (char *)"new_PreGenericDirCtrl", (PyCFunction
) _wrap_new_PreGenericDirCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35772 { (char *)"GenericDirCtrl_Create", (PyCFunction
) _wrap_GenericDirCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35773 { (char *)"GenericDirCtrl_ExpandPath", (PyCFunction
) _wrap_GenericDirCtrl_ExpandPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35774 { (char *)"GenericDirCtrl_GetDefaultPath", (PyCFunction
) _wrap_GenericDirCtrl_GetDefaultPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35775 { (char *)"GenericDirCtrl_SetDefaultPath", (PyCFunction
) _wrap_GenericDirCtrl_SetDefaultPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35776 { (char *)"GenericDirCtrl_GetPath", (PyCFunction
) _wrap_GenericDirCtrl_GetPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35777 { (char *)"GenericDirCtrl_GetFilePath", (PyCFunction
) _wrap_GenericDirCtrl_GetFilePath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35778 { (char *)"GenericDirCtrl_SetPath", (PyCFunction
) _wrap_GenericDirCtrl_SetPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35779 { (char *)"GenericDirCtrl_ShowHidden", (PyCFunction
) _wrap_GenericDirCtrl_ShowHidden
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35780 { (char *)"GenericDirCtrl_GetShowHidden", (PyCFunction
) _wrap_GenericDirCtrl_GetShowHidden
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35781 { (char *)"GenericDirCtrl_GetFilter", (PyCFunction
) _wrap_GenericDirCtrl_GetFilter
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35782 { (char *)"GenericDirCtrl_SetFilter", (PyCFunction
) _wrap_GenericDirCtrl_SetFilter
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35783 { (char *)"GenericDirCtrl_GetFilterIndex", (PyCFunction
) _wrap_GenericDirCtrl_GetFilterIndex
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35784 { (char *)"GenericDirCtrl_SetFilterIndex", (PyCFunction
) _wrap_GenericDirCtrl_SetFilterIndex
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35785 { (char *)"GenericDirCtrl_GetRootId", (PyCFunction
) _wrap_GenericDirCtrl_GetRootId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35786 { (char *)"GenericDirCtrl_GetTreeCtrl", (PyCFunction
) _wrap_GenericDirCtrl_GetTreeCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35787 { (char *)"GenericDirCtrl_GetFilterListCtrl", (PyCFunction
) _wrap_GenericDirCtrl_GetFilterListCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35788 { (char *)"GenericDirCtrl_FindChild", (PyCFunction
) _wrap_GenericDirCtrl_FindChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35789 { (char *)"GenericDirCtrl_DoResize", (PyCFunction
) _wrap_GenericDirCtrl_DoResize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35790 { (char *)"GenericDirCtrl_ReCreateTree", (PyCFunction
) _wrap_GenericDirCtrl_ReCreateTree
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35791 { (char *)"GenericDirCtrl_swigregister", GenericDirCtrl_swigregister
, METH_VARARGS
, NULL
},
35792 { (char *)"new_DirFilterListCtrl", (PyCFunction
) _wrap_new_DirFilterListCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35793 { (char *)"new_PreDirFilterListCtrl", (PyCFunction
) _wrap_new_PreDirFilterListCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35794 { (char *)"DirFilterListCtrl_Create", (PyCFunction
) _wrap_DirFilterListCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35795 { (char *)"DirFilterListCtrl_FillFilterList", (PyCFunction
) _wrap_DirFilterListCtrl_FillFilterList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35796 { (char *)"DirFilterListCtrl_swigregister", DirFilterListCtrl_swigregister
, METH_VARARGS
, NULL
},
35797 { (char *)"new_PyControl", (PyCFunction
) _wrap_new_PyControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35798 { (char *)"new_PrePyControl", (PyCFunction
) _wrap_new_PrePyControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35799 { (char *)"PyControl__setCallbackInfo", (PyCFunction
) _wrap_PyControl__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35800 { (char *)"PyControl_SetBestSize", (PyCFunction
) _wrap_PyControl_SetBestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35801 { (char *)"PyControl_DoEraseBackground", (PyCFunction
) _wrap_PyControl_DoEraseBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35802 { (char *)"PyControl_base_DoMoveWindow", (PyCFunction
) _wrap_PyControl_base_DoMoveWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35803 { (char *)"PyControl_base_DoSetSize", (PyCFunction
) _wrap_PyControl_base_DoSetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35804 { (char *)"PyControl_base_DoSetClientSize", (PyCFunction
) _wrap_PyControl_base_DoSetClientSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35805 { (char *)"PyControl_base_DoSetVirtualSize", (PyCFunction
) _wrap_PyControl_base_DoSetVirtualSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35806 { (char *)"PyControl_base_DoGetSize", (PyCFunction
) _wrap_PyControl_base_DoGetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35807 { (char *)"PyControl_base_DoGetClientSize", (PyCFunction
) _wrap_PyControl_base_DoGetClientSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35808 { (char *)"PyControl_base_DoGetPosition", (PyCFunction
) _wrap_PyControl_base_DoGetPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35809 { (char *)"PyControl_base_DoGetVirtualSize", (PyCFunction
) _wrap_PyControl_base_DoGetVirtualSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35810 { (char *)"PyControl_base_DoGetBestSize", (PyCFunction
) _wrap_PyControl_base_DoGetBestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35811 { (char *)"PyControl_base_InitDialog", (PyCFunction
) _wrap_PyControl_base_InitDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35812 { (char *)"PyControl_base_TransferDataToWindow", (PyCFunction
) _wrap_PyControl_base_TransferDataToWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35813 { (char *)"PyControl_base_TransferDataFromWindow", (PyCFunction
) _wrap_PyControl_base_TransferDataFromWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35814 { (char *)"PyControl_base_Validate", (PyCFunction
) _wrap_PyControl_base_Validate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35815 { (char *)"PyControl_base_AcceptsFocus", (PyCFunction
) _wrap_PyControl_base_AcceptsFocus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35816 { (char *)"PyControl_base_AcceptsFocusFromKeyboard", (PyCFunction
) _wrap_PyControl_base_AcceptsFocusFromKeyboard
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35817 { (char *)"PyControl_base_GetMaxSize", (PyCFunction
) _wrap_PyControl_base_GetMaxSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35818 { (char *)"PyControl_base_AddChild", (PyCFunction
) _wrap_PyControl_base_AddChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35819 { (char *)"PyControl_base_RemoveChild", (PyCFunction
) _wrap_PyControl_base_RemoveChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35820 { (char *)"PyControl_base_ShouldInheritColours", (PyCFunction
) _wrap_PyControl_base_ShouldInheritColours
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35821 { (char *)"PyControl_base_GetDefaultAttributes", (PyCFunction
) _wrap_PyControl_base_GetDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35822 { (char *)"PyControl_base_OnInternalIdle", (PyCFunction
) _wrap_PyControl_base_OnInternalIdle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35823 { (char *)"PyControl_swigregister", PyControl_swigregister
, METH_VARARGS
, NULL
},
35824 { (char *)"new_HelpEvent", (PyCFunction
) _wrap_new_HelpEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35825 { (char *)"HelpEvent_GetPosition", (PyCFunction
) _wrap_HelpEvent_GetPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35826 { (char *)"HelpEvent_SetPosition", (PyCFunction
) _wrap_HelpEvent_SetPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35827 { (char *)"HelpEvent_GetLink", (PyCFunction
) _wrap_HelpEvent_GetLink
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35828 { (char *)"HelpEvent_SetLink", (PyCFunction
) _wrap_HelpEvent_SetLink
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35829 { (char *)"HelpEvent_GetTarget", (PyCFunction
) _wrap_HelpEvent_GetTarget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35830 { (char *)"HelpEvent_SetTarget", (PyCFunction
) _wrap_HelpEvent_SetTarget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35831 { (char *)"HelpEvent_swigregister", HelpEvent_swigregister
, METH_VARARGS
, NULL
},
35832 { (char *)"new_ContextHelp", (PyCFunction
) _wrap_new_ContextHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35833 { (char *)"delete_ContextHelp", (PyCFunction
) _wrap_delete_ContextHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35834 { (char *)"ContextHelp_BeginContextHelp", (PyCFunction
) _wrap_ContextHelp_BeginContextHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35835 { (char *)"ContextHelp_EndContextHelp", (PyCFunction
) _wrap_ContextHelp_EndContextHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35836 { (char *)"ContextHelp_swigregister", ContextHelp_swigregister
, METH_VARARGS
, NULL
},
35837 { (char *)"new_ContextHelpButton", (PyCFunction
) _wrap_new_ContextHelpButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35838 { (char *)"ContextHelpButton_swigregister", ContextHelpButton_swigregister
, METH_VARARGS
, NULL
},
35839 { (char *)"HelpProvider_Set", (PyCFunction
) _wrap_HelpProvider_Set
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35840 { (char *)"HelpProvider_Get", (PyCFunction
) _wrap_HelpProvider_Get
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35841 { (char *)"HelpProvider_GetHelp", (PyCFunction
) _wrap_HelpProvider_GetHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35842 { (char *)"HelpProvider_ShowHelp", (PyCFunction
) _wrap_HelpProvider_ShowHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35843 { (char *)"HelpProvider_AddHelp", (PyCFunction
) _wrap_HelpProvider_AddHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35844 { (char *)"HelpProvider_AddHelpById", (PyCFunction
) _wrap_HelpProvider_AddHelpById
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35845 { (char *)"HelpProvider_RemoveHelp", (PyCFunction
) _wrap_HelpProvider_RemoveHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35846 { (char *)"HelpProvider_Destroy", (PyCFunction
) _wrap_HelpProvider_Destroy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35847 { (char *)"HelpProvider_swigregister", HelpProvider_swigregister
, METH_VARARGS
, NULL
},
35848 { (char *)"new_SimpleHelpProvider", (PyCFunction
) _wrap_new_SimpleHelpProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35849 { (char *)"SimpleHelpProvider_swigregister", SimpleHelpProvider_swigregister
, METH_VARARGS
, NULL
},
35850 { (char *)"new_DragImage", (PyCFunction
) _wrap_new_DragImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35851 { (char *)"new_DragIcon", (PyCFunction
) _wrap_new_DragIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35852 { (char *)"new_DragString", (PyCFunction
) _wrap_new_DragString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35853 { (char *)"new_DragTreeItem", (PyCFunction
) _wrap_new_DragTreeItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35854 { (char *)"new_DragListItem", (PyCFunction
) _wrap_new_DragListItem
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35855 { (char *)"delete_DragImage", (PyCFunction
) _wrap_delete_DragImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35856 { (char *)"DragImage_SetBackingBitmap", (PyCFunction
) _wrap_DragImage_SetBackingBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35857 { (char *)"DragImage_BeginDrag", (PyCFunction
) _wrap_DragImage_BeginDrag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35858 { (char *)"DragImage_BeginDragBounded", (PyCFunction
) _wrap_DragImage_BeginDragBounded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35859 { (char *)"DragImage_EndDrag", (PyCFunction
) _wrap_DragImage_EndDrag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35860 { (char *)"DragImage_Move", (PyCFunction
) _wrap_DragImage_Move
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35861 { (char *)"DragImage_Show", (PyCFunction
) _wrap_DragImage_Show
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35862 { (char *)"DragImage_Hide", (PyCFunction
) _wrap_DragImage_Hide
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35863 { (char *)"DragImage_GetImageRect", (PyCFunction
) _wrap_DragImage_GetImageRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35864 { (char *)"DragImage_DoDrawImage", (PyCFunction
) _wrap_DragImage_DoDrawImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35865 { (char *)"DragImage_UpdateBackingFromWindow", (PyCFunction
) _wrap_DragImage_UpdateBackingFromWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35866 { (char *)"DragImage_RedrawImage", (PyCFunction
) _wrap_DragImage_RedrawImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35867 { (char *)"DragImage_swigregister", DragImage_swigregister
, METH_VARARGS
, NULL
},
35868 { (char *)"new_DatePickerCtrl", (PyCFunction
) _wrap_new_DatePickerCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35869 { (char *)"new_PreDatePickerCtrl", (PyCFunction
) _wrap_new_PreDatePickerCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35870 { (char *)"DatePickerCtrl_Create", (PyCFunction
) _wrap_DatePickerCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35871 { (char *)"DatePickerCtrl_SetValue", (PyCFunction
) _wrap_DatePickerCtrl_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35872 { (char *)"DatePickerCtrl_GetValue", (PyCFunction
) _wrap_DatePickerCtrl_GetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35873 { (char *)"DatePickerCtrl_SetRange", (PyCFunction
) _wrap_DatePickerCtrl_SetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35874 { (char *)"DatePickerCtrl_GetLowerLimit", (PyCFunction
) _wrap_DatePickerCtrl_GetLowerLimit
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35875 { (char *)"DatePickerCtrl_GetUpperLimit", (PyCFunction
) _wrap_DatePickerCtrl_GetUpperLimit
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
35876 { (char *)"DatePickerCtrl_swigregister", DatePickerCtrl_swigregister
, METH_VARARGS
, NULL
},
35877 { NULL
, NULL
, 0, NULL
}
35881 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
35883 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
35884 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
35886 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
35887 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
35889 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
35890 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
35892 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
35893 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
35895 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
35896 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
35898 static void *_p_wxBookCtrlBaseEventTo_p_wxEvent(void *x
) {
35899 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxBookCtrlBaseEvent
*) x
));
35901 static void *_p_wxTreeEventTo_p_wxEvent(void *x
) {
35902 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxTreeEvent
*) x
));
35904 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
35905 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
35907 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
35908 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
35910 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
35911 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
35913 static void *_p_wxTextUrlEventTo_p_wxEvent(void *x
) {
35914 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxTextUrlEvent
*) x
));
35916 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
35917 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
35919 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
35920 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
35922 static void *_p_wxListEventTo_p_wxEvent(void *x
) {
35923 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxListEvent
*) x
));
35925 static void *_p_wxNotebookEventTo_p_wxEvent(void *x
) {
35926 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxNotebookEvent
*) x
));
35928 static void *_p_wxListbookEventTo_p_wxEvent(void *x
) {
35929 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxListbookEvent
*) x
));
35931 static void *_p_wxChoicebookEventTo_p_wxEvent(void *x
) {
35932 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxChoicebookEvent
*) x
));
35934 static void *_p_wxHelpEventTo_p_wxEvent(void *x
) {
35935 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxHelpEvent
*) x
));
35937 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
35938 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
35940 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
35941 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
35943 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
35944 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
35946 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
35947 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
35949 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
35950 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
35952 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
35953 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
35955 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
35956 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
35958 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
35959 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
35961 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
35962 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
35964 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
35965 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
35967 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
35968 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
35970 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
35971 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
35973 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
35974 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
35976 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
35977 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
35979 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
35980 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
35982 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
35983 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
35985 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
35986 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
35988 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
35989 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
35991 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
35992 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
35994 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
35995 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
35997 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
35998 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
36000 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
36001 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
36003 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
36004 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
36006 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
36007 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
36009 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
36010 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
36012 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
36013 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
36015 static void *_p_wxSpinEventTo_p_wxEvent(void *x
) {
36016 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxSpinEvent
*) x
));
36018 static void *_p_wxComboBoxTo_p_wxItemContainer(void *x
) {
36019 return (void *)((wxItemContainer
*) ((wxComboBox
*) x
));
36021 static void *_p_wxDirFilterListCtrlTo_p_wxItemContainer(void *x
) {
36022 return (void *)((wxItemContainer
*) (wxControlWithItems
*)(wxChoice
*) ((wxDirFilterListCtrl
*) x
));
36024 static void *_p_wxChoiceTo_p_wxItemContainer(void *x
) {
36025 return (void *)((wxItemContainer
*) (wxControlWithItems
*) ((wxChoice
*) x
));
36027 static void *_p_wxControlWithItemsTo_p_wxItemContainer(void *x
) {
36028 return (void *)((wxItemContainer
*) ((wxControlWithItems
*) x
));
36030 static void *_p_wxListBoxTo_p_wxItemContainer(void *x
) {
36031 return (void *)((wxItemContainer
*) (wxControlWithItems
*) ((wxListBox
*) x
));
36033 static void *_p_wxCheckListBoxTo_p_wxItemContainer(void *x
) {
36034 return (void *)((wxItemContainer
*) (wxControlWithItems
*)(wxListBox
*) ((wxCheckListBox
*) x
));
36036 static void *_p_wxListViewTo_p_wxPyListCtrl(void *x
) {
36037 return (void *)((wxPyListCtrl
*) ((wxListView
*) x
));
36039 static void *_p_wxBookCtrlBaseTo_p_wxControl(void *x
) {
36040 return (void *)((wxControl
*) ((wxBookCtrlBase
*) x
));
36042 static void *_p_wxToolBarTo_p_wxControl(void *x
) {
36043 return (void *)((wxControl
*) (wxToolBarBase
*) ((wxToolBar
*) x
));
36045 static void *_p_wxToggleButtonTo_p_wxControl(void *x
) {
36046 return (void *)((wxControl
*) ((wxToggleButton
*) x
));
36048 static void *_p_wxRadioButtonTo_p_wxControl(void *x
) {
36049 return (void *)((wxControl
*) ((wxRadioButton
*) x
));
36051 static void *_p_wxPyControlTo_p_wxControl(void *x
) {
36052 return (void *)((wxControl
*) ((wxPyControl
*) x
));
36054 static void *_p_wxToolBarBaseTo_p_wxControl(void *x
) {
36055 return (void *)((wxControl
*) ((wxToolBarBase
*) x
));
36057 static void *_p_wxDirFilterListCtrlTo_p_wxControl(void *x
) {
36058 return (void *)((wxControl
*) (wxControlWithItems
*)(wxChoice
*) ((wxDirFilterListCtrl
*) x
));
36060 static void *_p_wxPyListCtrlTo_p_wxControl(void *x
) {
36061 return (void *)((wxControl
*) ((wxPyListCtrl
*) x
));
36063 static void *_p_wxComboBoxTo_p_wxControl(void *x
) {
36064 return (void *)((wxControl
*) ((wxComboBox
*) x
));
36066 static void *_p_wxGenericDirCtrlTo_p_wxControl(void *x
) {
36067 return (void *)((wxControl
*) ((wxGenericDirCtrl
*) x
));
36069 static void *_p_wxScrollBarTo_p_wxControl(void *x
) {
36070 return (void *)((wxControl
*) ((wxScrollBar
*) x
));
36072 static void *_p_wxControlWithItemsTo_p_wxControl(void *x
) {
36073 return (void *)((wxControl
*) ((wxControlWithItems
*) x
));
36075 static void *_p_wxGaugeTo_p_wxControl(void *x
) {
36076 return (void *)((wxControl
*) ((wxGauge
*) x
));
36078 static void *_p_wxStaticLineTo_p_wxControl(void *x
) {
36079 return (void *)((wxControl
*) ((wxStaticLine
*) x
));
36081 static void *_p_wxChoicebookTo_p_wxControl(void *x
) {
36082 return (void *)((wxControl
*) (wxBookCtrlBase
*) ((wxChoicebook
*) x
));
36084 static void *_p_wxListbookTo_p_wxControl(void *x
) {
36085 return (void *)((wxControl
*) (wxBookCtrlBase
*) ((wxListbook
*) x
));
36087 static void *_p_wxPyTreeCtrlTo_p_wxControl(void *x
) {
36088 return (void *)((wxControl
*) ((wxPyTreeCtrl
*) x
));
36090 static void *_p_wxCheckBoxTo_p_wxControl(void *x
) {
36091 return (void *)((wxControl
*) ((wxCheckBox
*) x
));
36093 static void *_p_wxRadioBoxTo_p_wxControl(void *x
) {
36094 return (void *)((wxControl
*) ((wxRadioBox
*) x
));
36096 static void *_p_wxChoiceTo_p_wxControl(void *x
) {
36097 return (void *)((wxControl
*) (wxControlWithItems
*) ((wxChoice
*) x
));
36099 static void *_p_wxListBoxTo_p_wxControl(void *x
) {
36100 return (void *)((wxControl
*) (wxControlWithItems
*) ((wxListBox
*) x
));
36102 static void *_p_wxCheckListBoxTo_p_wxControl(void *x
) {
36103 return (void *)((wxControl
*) (wxControlWithItems
*)(wxListBox
*) ((wxCheckListBox
*) x
));
36105 static void *_p_wxListViewTo_p_wxControl(void *x
) {
36106 return (void *)((wxControl
*) (wxPyListCtrl
*) ((wxListView
*) x
));
36108 static void *_p_wxNotebookTo_p_wxControl(void *x
) {
36109 return (void *)((wxControl
*) (wxBookCtrlBase
*) ((wxNotebook
*) x
));
36111 static void *_p_wxStaticBitmapTo_p_wxControl(void *x
) {
36112 return (void *)((wxControl
*) ((wxStaticBitmap
*) x
));
36114 static void *_p_wxSpinCtrlTo_p_wxControl(void *x
) {
36115 return (void *)((wxControl
*) ((wxSpinCtrl
*) x
));
36117 static void *_p_wxStaticTextTo_p_wxControl(void *x
) {
36118 return (void *)((wxControl
*) ((wxStaticText
*) x
));
36120 static void *_p_wxStaticBoxTo_p_wxControl(void *x
) {
36121 return (void *)((wxControl
*) ((wxStaticBox
*) x
));
36123 static void *_p_wxSliderTo_p_wxControl(void *x
) {
36124 return (void *)((wxControl
*) ((wxSlider
*) x
));
36126 static void *_p_wxContextHelpButtonTo_p_wxControl(void *x
) {
36127 return (void *)((wxControl
*) (wxButton
*)(wxBitmapButton
*) ((wxContextHelpButton
*) x
));
36129 static void *_p_wxSpinButtonTo_p_wxControl(void *x
) {
36130 return (void *)((wxControl
*) ((wxSpinButton
*) x
));
36132 static void *_p_wxButtonTo_p_wxControl(void *x
) {
36133 return (void *)((wxControl
*) ((wxButton
*) x
));
36135 static void *_p_wxBitmapButtonTo_p_wxControl(void *x
) {
36136 return (void *)((wxControl
*) (wxButton
*) ((wxBitmapButton
*) x
));
36138 static void *_p_wxDatePickerCtrlTo_p_wxControl(void *x
) {
36139 return (void *)((wxControl
*) ((wxDatePickerCtrl
*) x
));
36141 static void *_p_wxTextCtrlTo_p_wxControl(void *x
) {
36142 return (void *)((wxControl
*) ((wxTextCtrl
*) x
));
36144 static void *_p_wxToolBarTo_p_wxToolBarBase(void *x
) {
36145 return (void *)((wxToolBarBase
*) ((wxToolBar
*) x
));
36147 static void *_p_wxDirFilterListCtrlTo_p_wxChoice(void *x
) {
36148 return (void *)((wxChoice
*) ((wxDirFilterListCtrl
*) x
));
36150 static void *_p_wxBookCtrlBaseEventTo_p_wxNotifyEvent(void *x
) {
36151 return (void *)((wxNotifyEvent
*) ((wxBookCtrlBaseEvent
*) x
));
36153 static void *_p_wxTreeEventTo_p_wxNotifyEvent(void *x
) {
36154 return (void *)((wxNotifyEvent
*) ((wxTreeEvent
*) x
));
36156 static void *_p_wxListEventTo_p_wxNotifyEvent(void *x
) {
36157 return (void *)((wxNotifyEvent
*) ((wxListEvent
*) x
));
36159 static void *_p_wxSpinEventTo_p_wxNotifyEvent(void *x
) {
36160 return (void *)((wxNotifyEvent
*) ((wxSpinEvent
*) x
));
36162 static void *_p_wxNotebookEventTo_p_wxNotifyEvent(void *x
) {
36163 return (void *)((wxNotifyEvent
*) (wxBookCtrlBaseEvent
*) ((wxNotebookEvent
*) x
));
36165 static void *_p_wxListbookEventTo_p_wxNotifyEvent(void *x
) {
36166 return (void *)((wxNotifyEvent
*) (wxBookCtrlBaseEvent
*) ((wxListbookEvent
*) x
));
36168 static void *_p_wxChoicebookEventTo_p_wxNotifyEvent(void *x
) {
36169 return (void *)((wxNotifyEvent
*) (wxBookCtrlBaseEvent
*) ((wxChoicebookEvent
*) x
));
36171 static void *_p_wxChoicebookTo_p_wxBookCtrlBase(void *x
) {
36172 return (void *)((wxBookCtrlBase
*) ((wxChoicebook
*) x
));
36174 static void *_p_wxListbookTo_p_wxBookCtrlBase(void *x
) {
36175 return (void *)((wxBookCtrlBase
*) ((wxListbook
*) x
));
36177 static void *_p_wxNotebookTo_p_wxBookCtrlBase(void *x
) {
36178 return (void *)((wxBookCtrlBase
*) ((wxNotebook
*) x
));
36180 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
36181 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
36183 static void *_p_wxBookCtrlBaseTo_p_wxEvtHandler(void *x
) {
36184 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxBookCtrlBase
*) x
));
36186 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
36187 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
36189 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
36190 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
36192 static void *_p_wxToolBarTo_p_wxEvtHandler(void *x
) {
36193 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxToolBarBase
*) ((wxToolBar
*) x
));
36195 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
36196 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
36198 static void *_p_wxToggleButtonTo_p_wxEvtHandler(void *x
) {
36199 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxToggleButton
*) x
));
36201 static void *_p_wxRadioButtonTo_p_wxEvtHandler(void *x
) {
36202 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxRadioButton
*) x
));
36204 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
36205 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
36207 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
36208 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
36210 static void *_p_wxToolBarBaseTo_p_wxEvtHandler(void *x
) {
36211 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxToolBarBase
*) x
));
36213 static void *_p_wxComboBoxTo_p_wxEvtHandler(void *x
) {
36214 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxComboBox
*) x
));
36216 static void *_p_wxPyListCtrlTo_p_wxEvtHandler(void *x
) {
36217 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxPyListCtrl
*) x
));
36219 static void *_p_wxDirFilterListCtrlTo_p_wxEvtHandler(void *x
) {
36220 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxControlWithItems
*)(wxChoice
*) ((wxDirFilterListCtrl
*) x
));
36222 static void *_p_wxPyControlTo_p_wxEvtHandler(void *x
) {
36223 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxPyControl
*) x
));
36225 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
36226 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
36228 static void *_p_wxGenericDirCtrlTo_p_wxEvtHandler(void *x
) {
36229 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxGenericDirCtrl
*) x
));
36231 static void *_p_wxScrollBarTo_p_wxEvtHandler(void *x
) {
36232 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxScrollBar
*) x
));
36234 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
36235 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
36237 static void *_p_wxGaugeTo_p_wxEvtHandler(void *x
) {
36238 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxGauge
*) x
));
36240 static void *_p_wxStaticLineTo_p_wxEvtHandler(void *x
) {
36241 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxStaticLine
*) x
));
36243 static void *_p_wxChoicebookTo_p_wxEvtHandler(void *x
) {
36244 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxChoicebook
*) x
));
36246 static void *_p_wxListbookTo_p_wxEvtHandler(void *x
) {
36247 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxListbook
*) x
));
36249 static void *_p_wxPyTreeCtrlTo_p_wxEvtHandler(void *x
) {
36250 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxPyTreeCtrl
*) x
));
36252 static void *_p_wxCheckBoxTo_p_wxEvtHandler(void *x
) {
36253 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxCheckBox
*) x
));
36255 static void *_p_wxRadioBoxTo_p_wxEvtHandler(void *x
) {
36256 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxRadioBox
*) x
));
36258 static void *_p_wxCheckListBoxTo_p_wxEvtHandler(void *x
) {
36259 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxControlWithItems
*)(wxListBox
*) ((wxCheckListBox
*) x
));
36261 static void *_p_wxListBoxTo_p_wxEvtHandler(void *x
) {
36262 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxControlWithItems
*) ((wxListBox
*) x
));
36264 static void *_p_wxChoiceTo_p_wxEvtHandler(void *x
) {
36265 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxControlWithItems
*) ((wxChoice
*) x
));
36267 static void *_p_wxNotebookTo_p_wxEvtHandler(void *x
) {
36268 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxNotebook
*) x
));
36270 static void *_p_wxStaticBitmapTo_p_wxEvtHandler(void *x
) {
36271 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxStaticBitmap
*) x
));
36273 static void *_p_wxListViewTo_p_wxEvtHandler(void *x
) {
36274 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxPyListCtrl
*) ((wxListView
*) x
));
36276 static void *_p_wxSpinCtrlTo_p_wxEvtHandler(void *x
) {
36277 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxSpinCtrl
*) x
));
36279 static void *_p_wxStaticTextTo_p_wxEvtHandler(void *x
) {
36280 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxStaticText
*) x
));
36282 static void *_p_wxStaticBoxTo_p_wxEvtHandler(void *x
) {
36283 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxStaticBox
*) x
));
36285 static void *_p_wxSliderTo_p_wxEvtHandler(void *x
) {
36286 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxSlider
*) x
));
36288 static void *_p_wxSpinButtonTo_p_wxEvtHandler(void *x
) {
36289 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxSpinButton
*) x
));
36291 static void *_p_wxButtonTo_p_wxEvtHandler(void *x
) {
36292 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxButton
*) x
));
36294 static void *_p_wxBitmapButtonTo_p_wxEvtHandler(void *x
) {
36295 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxButton
*) ((wxBitmapButton
*) x
));
36297 static void *_p_wxContextHelpButtonTo_p_wxEvtHandler(void *x
) {
36298 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxButton
*)(wxBitmapButton
*) ((wxContextHelpButton
*) x
));
36300 static void *_p_wxDatePickerCtrlTo_p_wxEvtHandler(void *x
) {
36301 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxDatePickerCtrl
*) x
));
36303 static void *_p_wxTextCtrlTo_p_wxEvtHandler(void *x
) {
36304 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxTextCtrl
*) x
));
36306 static void *_p_wxCheckListBoxTo_p_wxListBox(void *x
) {
36307 return (void *)((wxListBox
*) ((wxCheckListBox
*) x
));
36309 static void *_p_wxBitmapButtonTo_p_wxButton(void *x
) {
36310 return (void *)((wxButton
*) ((wxBitmapButton
*) x
));
36312 static void *_p_wxContextHelpButtonTo_p_wxButton(void *x
) {
36313 return (void *)((wxButton
*) (wxBitmapButton
*) ((wxContextHelpButton
*) x
));
36315 static void *_p_wxContextHelpButtonTo_p_wxBitmapButton(void *x
) {
36316 return (void *)((wxBitmapButton
*) ((wxContextHelpButton
*) x
));
36318 static void *_p_wxSimpleHelpProviderTo_p_wxHelpProvider(void *x
) {
36319 return (void *)((wxHelpProvider
*) ((wxSimpleHelpProvider
*) x
));
36321 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
36322 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
36324 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
36325 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
36327 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
36328 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
36330 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
36331 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
36333 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
36334 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
36336 static void *_p_wxTextUrlEventTo_p_wxObject(void *x
) {
36337 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxTextUrlEvent
*) x
));
36339 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
36340 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
36342 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
36343 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
36345 static void *_p_wxSizerTo_p_wxObject(void *x
) {
36346 return (void *)((wxObject
*) ((wxSizer
*) x
));
36348 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
36349 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
36351 static void *_p_wxCheckBoxTo_p_wxObject(void *x
) {
36352 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxCheckBox
*) x
));
36354 static void *_p_wxPyTreeCtrlTo_p_wxObject(void *x
) {
36355 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxPyTreeCtrl
*) x
));
36357 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
36358 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
36360 static void *_p_wxEventTo_p_wxObject(void *x
) {
36361 return (void *)((wxObject
*) ((wxEvent
*) x
));
36363 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
36364 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
36366 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
36367 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
36369 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
36370 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
36372 static void *_p_wxGenericDirCtrlTo_p_wxObject(void *x
) {
36373 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxGenericDirCtrl
*) x
));
36375 static void *_p_wxPyListCtrlTo_p_wxObject(void *x
) {
36376 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxPyListCtrl
*) x
));
36378 static void *_p_wxDirFilterListCtrlTo_p_wxObject(void *x
) {
36379 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxControlWithItems
*)(wxChoice
*) ((wxDirFilterListCtrl
*) x
));
36381 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
36382 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
36384 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
36385 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
36387 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
36388 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
36390 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
36391 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
36393 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
36394 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
36396 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
36397 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
36399 static void *_p_wxStaticLineTo_p_wxObject(void *x
) {
36400 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxStaticLine
*) x
));
36402 static void *_p_wxControlTo_p_wxObject(void *x
) {
36403 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
36405 static void *_p_wxPyControlTo_p_wxObject(void *x
) {
36406 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxPyControl
*) x
));
36408 static void *_p_wxGaugeTo_p_wxObject(void *x
) {
36409 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxGauge
*) x
));
36411 static void *_p_wxRadioButtonTo_p_wxObject(void *x
) {
36412 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxRadioButton
*) x
));
36414 static void *_p_wxToggleButtonTo_p_wxObject(void *x
) {
36415 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxToggleButton
*) x
));
36417 static void *_p_wxToolBarBaseTo_p_wxObject(void *x
) {
36418 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxToolBarBase
*) x
));
36420 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
36421 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
36423 static void *_p_wxChoiceTo_p_wxObject(void *x
) {
36424 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxControlWithItems
*) ((wxChoice
*) x
));
36426 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
36427 return (void *)((wxObject
*) ((wxFSFile
*) x
));
36429 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
36430 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
36432 static void *_p_wxListViewTo_p_wxObject(void *x
) {
36433 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxPyListCtrl
*) ((wxListView
*) x
));
36435 static void *_p_wxTextCtrlTo_p_wxObject(void *x
) {
36436 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxTextCtrl
*) x
));
36438 static void *_p_wxNotebookTo_p_wxObject(void *x
) {
36439 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxNotebook
*) x
));
36441 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
36442 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
36444 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
36445 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
36447 static void *_p_wxChoicebookTo_p_wxObject(void *x
) {
36448 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxChoicebook
*) x
));
36450 static void *_p_wxListbookTo_p_wxObject(void *x
) {
36451 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxBookCtrlBase
*) ((wxListbook
*) x
));
36453 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
36454 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
36456 static void *_p_wxStaticBitmapTo_p_wxObject(void *x
) {
36457 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxStaticBitmap
*) x
));
36459 static void *_p_wxSliderTo_p_wxObject(void *x
) {
36460 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxSlider
*) x
));
36462 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
36463 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
36465 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
36466 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
36468 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
36469 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
36471 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
36472 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
36474 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
36475 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
36477 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
36478 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
36480 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
36481 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
36483 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
36484 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
36486 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
36487 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
36489 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
36490 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
36492 static void *_p_wxStaticBoxTo_p_wxObject(void *x
) {
36493 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxStaticBox
*) x
));
36495 static void *_p_wxContextHelpTo_p_wxObject(void *x
) {
36496 return (void *)((wxObject
*) ((wxContextHelp
*) x
));
36498 static void *_p_wxBookCtrlBaseTo_p_wxObject(void *x
) {
36499 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxBookCtrlBase
*) x
));
36501 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
36502 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
36504 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
36505 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
36507 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
36508 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
36510 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
36511 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
36513 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
36514 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
36516 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
36517 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
36519 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
36520 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
36522 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
36523 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
36525 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
36526 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
36528 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
36529 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
36531 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
36532 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
36534 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
36535 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
36537 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
36538 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
36540 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
36541 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
36543 static void *_p_wxListEventTo_p_wxObject(void *x
) {
36544 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxListEvent
*) x
));
36546 static void *_p_wxListBoxTo_p_wxObject(void *x
) {
36547 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxControlWithItems
*) ((wxListBox
*) x
));
36549 static void *_p_wxCheckListBoxTo_p_wxObject(void *x
) {
36550 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxControlWithItems
*)(wxListBox
*) ((wxCheckListBox
*) x
));
36552 static void *_p_wxButtonTo_p_wxObject(void *x
) {
36553 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxButton
*) x
));
36555 static void *_p_wxBitmapButtonTo_p_wxObject(void *x
) {
36556 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxButton
*) ((wxBitmapButton
*) x
));
36558 static void *_p_wxSpinButtonTo_p_wxObject(void *x
) {
36559 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxSpinButton
*) x
));
36561 static void *_p_wxContextHelpButtonTo_p_wxObject(void *x
) {
36562 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxButton
*)(wxBitmapButton
*) ((wxContextHelpButton
*) x
));
36564 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
36565 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
36567 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
36568 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
36570 static void *_p_wxScrollBarTo_p_wxObject(void *x
) {
36571 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxScrollBar
*) x
));
36573 static void *_p_wxRadioBoxTo_p_wxObject(void *x
) {
36574 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxRadioBox
*) x
));
36576 static void *_p_wxComboBoxTo_p_wxObject(void *x
) {
36577 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxComboBox
*) x
));
36579 static void *_p_wxHelpEventTo_p_wxObject(void *x
) {
36580 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxHelpEvent
*) x
));
36582 static void *_p_wxListItemTo_p_wxObject(void *x
) {
36583 return (void *)((wxObject
*) ((wxListItem
*) x
));
36585 static void *_p_wxImageTo_p_wxObject(void *x
) {
36586 return (void *)((wxObject
*) ((wxImage
*) x
));
36588 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
36589 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
36591 static void *_p_wxSpinEventTo_p_wxObject(void *x
) {
36592 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxSpinEvent
*) x
));
36594 static void *_p_wxGenericDragImageTo_p_wxObject(void *x
) {
36595 return (void *)((wxObject
*) ((wxGenericDragImage
*) x
));
36597 static void *_p_wxSpinCtrlTo_p_wxObject(void *x
) {
36598 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxSpinCtrl
*) x
));
36600 static void *_p_wxNotebookEventTo_p_wxObject(void *x
) {
36601 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxNotebookEvent
*) x
));
36603 static void *_p_wxListbookEventTo_p_wxObject(void *x
) {
36604 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxListbookEvent
*) x
));
36606 static void *_p_wxChoicebookEventTo_p_wxObject(void *x
) {
36607 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxChoicebookEvent
*) x
));
36609 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
36610 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
36612 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
36613 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
36615 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
36616 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
36618 static void *_p_wxWindowTo_p_wxObject(void *x
) {
36619 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
36621 static void *_p_wxMenuTo_p_wxObject(void *x
) {
36622 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
36624 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
36625 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
36627 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
36628 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
36630 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
36631 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
36633 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
36634 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
36636 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
36637 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
36639 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
36640 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
36642 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
36643 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
36645 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
36646 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
36648 static void *_p_wxBookCtrlBaseEventTo_p_wxObject(void *x
) {
36649 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxBookCtrlBaseEvent
*) x
));
36651 static void *_p_wxTreeEventTo_p_wxObject(void *x
) {
36652 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxTreeEvent
*) x
));
36654 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
36655 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
36657 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
36658 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
36660 static void *_p_wxStaticTextTo_p_wxObject(void *x
) {
36661 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxStaticText
*) x
));
36663 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
36664 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
36666 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
36667 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
36669 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
36670 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
36672 static void *_p_wxDatePickerCtrlTo_p_wxObject(void *x
) {
36673 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxDatePickerCtrl
*) x
));
36675 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
36676 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
36678 static void *_p_wxToolBarToolBaseTo_p_wxObject(void *x
) {
36679 return (void *)((wxObject
*) ((wxToolBarToolBase
*) x
));
36681 static void *_p_wxToolBarTo_p_wxObject(void *x
) {
36682 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxToolBarBase
*) ((wxToolBar
*) x
));
36684 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
36685 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
36687 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
36688 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
36690 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
36691 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
36693 static void *_p_wxBookCtrlBaseTo_p_wxWindow(void *x
) {
36694 return (void *)((wxWindow
*) (wxControl
*) ((wxBookCtrlBase
*) x
));
36696 static void *_p_wxToolBarTo_p_wxWindow(void *x
) {
36697 return (void *)((wxWindow
*) (wxControl
*)(wxToolBarBase
*) ((wxToolBar
*) x
));
36699 static void *_p_wxToggleButtonTo_p_wxWindow(void *x
) {
36700 return (void *)((wxWindow
*) (wxControl
*) ((wxToggleButton
*) x
));
36702 static void *_p_wxRadioButtonTo_p_wxWindow(void *x
) {
36703 return (void *)((wxWindow
*) (wxControl
*) ((wxRadioButton
*) x
));
36705 static void *_p_wxControlTo_p_wxWindow(void *x
) {
36706 return (void *)((wxWindow
*) ((wxControl
*) x
));
36708 static void *_p_wxToolBarBaseTo_p_wxWindow(void *x
) {
36709 return (void *)((wxWindow
*) (wxControl
*) ((wxToolBarBase
*) x
));
36711 static void *_p_wxDirFilterListCtrlTo_p_wxWindow(void *x
) {
36712 return (void *)((wxWindow
*) (wxControl
*)(wxControlWithItems
*)(wxChoice
*) ((wxDirFilterListCtrl
*) x
));
36714 static void *_p_wxPyListCtrlTo_p_wxWindow(void *x
) {
36715 return (void *)((wxWindow
*) (wxControl
*) ((wxPyListCtrl
*) x
));
36717 static void *_p_wxComboBoxTo_p_wxWindow(void *x
) {
36718 return (void *)((wxWindow
*) (wxControl
*) ((wxComboBox
*) x
));
36720 static void *_p_wxPyControlTo_p_wxWindow(void *x
) {
36721 return (void *)((wxWindow
*) (wxControl
*) ((wxPyControl
*) x
));
36723 static void *_p_wxGenericDirCtrlTo_p_wxWindow(void *x
) {
36724 return (void *)((wxWindow
*) (wxControl
*) ((wxGenericDirCtrl
*) x
));
36726 static void *_p_wxScrollBarTo_p_wxWindow(void *x
) {
36727 return (void *)((wxWindow
*) (wxControl
*) ((wxScrollBar
*) x
));
36729 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
36730 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
36732 static void *_p_wxGaugeTo_p_wxWindow(void *x
) {
36733 return (void *)((wxWindow
*) (wxControl
*) ((wxGauge
*) x
));
36735 static void *_p_wxStaticLineTo_p_wxWindow(void *x
) {
36736 return (void *)((wxWindow
*) (wxControl
*) ((wxStaticLine
*) x
));
36738 static void *_p_wxChoicebookTo_p_wxWindow(void *x
) {
36739 return (void *)((wxWindow
*) (wxControl
*)(wxBookCtrlBase
*) ((wxChoicebook
*) x
));
36741 static void *_p_wxListbookTo_p_wxWindow(void *x
) {
36742 return (void *)((wxWindow
*) (wxControl
*)(wxBookCtrlBase
*) ((wxListbook
*) x
));
36744 static void *_p_wxPyTreeCtrlTo_p_wxWindow(void *x
) {
36745 return (void *)((wxWindow
*) (wxControl
*) ((wxPyTreeCtrl
*) x
));
36747 static void *_p_wxCheckBoxTo_p_wxWindow(void *x
) {
36748 return (void *)((wxWindow
*) (wxControl
*) ((wxCheckBox
*) x
));
36750 static void *_p_wxRadioBoxTo_p_wxWindow(void *x
) {
36751 return (void *)((wxWindow
*) (wxControl
*) ((wxRadioBox
*) x
));
36753 static void *_p_wxCheckListBoxTo_p_wxWindow(void *x
) {
36754 return (void *)((wxWindow
*) (wxControl
*)(wxControlWithItems
*)(wxListBox
*) ((wxCheckListBox
*) x
));
36756 static void *_p_wxChoiceTo_p_wxWindow(void *x
) {
36757 return (void *)((wxWindow
*) (wxControl
*)(wxControlWithItems
*) ((wxChoice
*) x
));
36759 static void *_p_wxListBoxTo_p_wxWindow(void *x
) {
36760 return (void *)((wxWindow
*) (wxControl
*)(wxControlWithItems
*) ((wxListBox
*) x
));
36762 static void *_p_wxListViewTo_p_wxWindow(void *x
) {
36763 return (void *)((wxWindow
*) (wxControl
*)(wxPyListCtrl
*) ((wxListView
*) x
));
36765 static void *_p_wxNotebookTo_p_wxWindow(void *x
) {
36766 return (void *)((wxWindow
*) (wxControl
*)(wxBookCtrlBase
*) ((wxNotebook
*) x
));
36768 static void *_p_wxStaticBitmapTo_p_wxWindow(void *x
) {
36769 return (void *)((wxWindow
*) (wxControl
*) ((wxStaticBitmap
*) x
));
36771 static void *_p_wxSpinCtrlTo_p_wxWindow(void *x
) {
36772 return (void *)((wxWindow
*) (wxControl
*) ((wxSpinCtrl
*) x
));
36774 static void *_p_wxStaticTextTo_p_wxWindow(void *x
) {
36775 return (void *)((wxWindow
*) (wxControl
*) ((wxStaticText
*) x
));
36777 static void *_p_wxStaticBoxTo_p_wxWindow(void *x
) {
36778 return (void *)((wxWindow
*) (wxControl
*) ((wxStaticBox
*) x
));
36780 static void *_p_wxSliderTo_p_wxWindow(void *x
) {
36781 return (void *)((wxWindow
*) (wxControl
*) ((wxSlider
*) x
));
36783 static void *_p_wxSpinButtonTo_p_wxWindow(void *x
) {
36784 return (void *)((wxWindow
*) (wxControl
*) ((wxSpinButton
*) x
));
36786 static void *_p_wxButtonTo_p_wxWindow(void *x
) {
36787 return (void *)((wxWindow
*) (wxControl
*) ((wxButton
*) x
));
36789 static void *_p_wxBitmapButtonTo_p_wxWindow(void *x
) {
36790 return (void *)((wxWindow
*) (wxControl
*)(wxButton
*) ((wxBitmapButton
*) x
));
36792 static void *_p_wxContextHelpButtonTo_p_wxWindow(void *x
) {
36793 return (void *)((wxWindow
*) (wxControl
*)(wxButton
*)(wxBitmapButton
*) ((wxContextHelpButton
*) x
));
36795 static void *_p_wxDatePickerCtrlTo_p_wxWindow(void *x
) {
36796 return (void *)((wxWindow
*) (wxControl
*) ((wxDatePickerCtrl
*) x
));
36798 static void *_p_wxTextCtrlTo_p_wxWindow(void *x
) {
36799 return (void *)((wxWindow
*) (wxControl
*) ((wxTextCtrl
*) x
));
36801 static void *_p_wxNotebookEventTo_p_wxBookCtrlBaseEvent(void *x
) {
36802 return (void *)((wxBookCtrlBaseEvent
*) ((wxNotebookEvent
*) x
));
36804 static void *_p_wxListbookEventTo_p_wxBookCtrlBaseEvent(void *x
) {
36805 return (void *)((wxBookCtrlBaseEvent
*) ((wxListbookEvent
*) x
));
36807 static void *_p_wxChoicebookEventTo_p_wxBookCtrlBaseEvent(void *x
) {
36808 return (void *)((wxBookCtrlBaseEvent
*) ((wxChoicebookEvent
*) x
));
36810 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) {
36811 return (void *)((wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
36813 static void *_p_wxTextUrlEventTo_p_wxCommandEvent(void *x
) {
36814 return (void *)((wxCommandEvent
*) ((wxTextUrlEvent
*) x
));
36816 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) {
36817 return (void *)((wxCommandEvent
*) ((wxScrollEvent
*) x
));
36819 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) {
36820 return (void *)((wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
36822 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) {
36823 return (void *)((wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
36825 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) {
36826 return (void *)((wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
36828 static void *_p_wxListbookEventTo_p_wxCommandEvent(void *x
) {
36829 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxListbookEvent
*) x
));
36831 static void *_p_wxNotebookEventTo_p_wxCommandEvent(void *x
) {
36832 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxNotebookEvent
*) x
));
36834 static void *_p_wxChoicebookEventTo_p_wxCommandEvent(void *x
) {
36835 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*)(wxBookCtrlBaseEvent
*) ((wxChoicebookEvent
*) x
));
36837 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) {
36838 return (void *)((wxCommandEvent
*) ((wxDateEvent
*) x
));
36840 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) {
36841 return (void *)((wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
36843 static void *_p_wxListEventTo_p_wxCommandEvent(void *x
) {
36844 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxListEvent
*) x
));
36846 static void *_p_wxBookCtrlBaseEventTo_p_wxCommandEvent(void *x
) {
36847 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxBookCtrlBaseEvent
*) x
));
36849 static void *_p_wxTreeEventTo_p_wxCommandEvent(void *x
) {
36850 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxTreeEvent
*) x
));
36852 static void *_p_wxSpinEventTo_p_wxCommandEvent(void *x
) {
36853 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxSpinEvent
*) x
));
36855 static void *_p_wxHelpEventTo_p_wxCommandEvent(void *x
) {
36856 return (void *)((wxCommandEvent
*) ((wxHelpEvent
*) x
));
36858 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) {
36859 return (void *)((wxCommandEvent
*) ((wxNotifyEvent
*) x
));
36861 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) {
36862 return (void *)((wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
36864 static void *_p_wxDirFilterListCtrlTo_p_wxControlWithItems(void *x
) {
36865 return (void *)((wxControlWithItems
*) (wxChoice
*) ((wxDirFilterListCtrl
*) x
));
36867 static void *_p_wxChoiceTo_p_wxControlWithItems(void *x
) {
36868 return (void *)((wxControlWithItems
*) ((wxChoice
*) x
));
36870 static void *_p_wxListBoxTo_p_wxControlWithItems(void *x
) {
36871 return (void *)((wxControlWithItems
*) ((wxListBox
*) x
));
36873 static void *_p_wxCheckListBoxTo_p_wxControlWithItems(void *x
) {
36874 return (void *)((wxControlWithItems
*) (wxListBox
*) ((wxCheckListBox
*) x
));
36876 static void *_p_wxPyValidatorTo_p_wxValidator(void *x
) {
36877 return (void *)((wxValidator
*) ((wxPyValidator
*) x
));
36879 static swig_type_info _swigt__p_bool
= {"_p_bool", "bool *", 0, 0, 0};
36880 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, 0};
36881 static swig_type_info _swigt__p_form_ops_t
= {"_p_form_ops_t", "enum form_ops_t *|form_ops_t *", 0, 0, 0};
36882 static swig_type_info _swigt__p_int
= {"_p_int", "int *", 0, 0, 0};
36883 static swig_type_info _swigt__p_long
= {"_p_long", "long *", 0, 0, 0};
36884 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, 0};
36885 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, 0};
36886 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxUIntPtr *", 0, 0, 0};
36887 static swig_type_info _swigt__p_void
= {"_p_void", "void *", 0, 0, 0};
36888 static swig_type_info _swigt__p_wxArrayInt
= {"_p_wxArrayInt", "wxArrayInt *", 0, 0, 0};
36889 static swig_type_info _swigt__p_wxArrayString
= {"_p_wxArrayString", "wxArrayString *", 0, 0, 0};
36890 static swig_type_info _swigt__p_wxBitmap
= {"_p_wxBitmap", "wxBitmap *", 0, 0, 0};
36891 static swig_type_info _swigt__p_wxBitmapButton
= {"_p_wxBitmapButton", "wxBitmapButton *", 0, 0, 0};
36892 static swig_type_info _swigt__p_wxBookCtrlBase
= {"_p_wxBookCtrlBase", "wxBookCtrlBase *", 0, 0, 0};
36893 static swig_type_info _swigt__p_wxBookCtrlBaseEvent
= {"_p_wxBookCtrlBaseEvent", "wxBookCtrlBaseEvent *", 0, 0, 0};
36894 static swig_type_info _swigt__p_wxButton
= {"_p_wxButton", "wxButton *", 0, 0, 0};
36895 static swig_type_info _swigt__p_wxCheckBox
= {"_p_wxCheckBox", "wxCheckBox *", 0, 0, 0};
36896 static swig_type_info _swigt__p_wxCheckListBox
= {"_p_wxCheckListBox", "wxCheckListBox *", 0, 0, 0};
36897 static swig_type_info _swigt__p_wxChoice
= {"_p_wxChoice", "wxChoice *", 0, 0, 0};
36898 static swig_type_info _swigt__p_wxChoicebook
= {"_p_wxChoicebook", "wxChoicebook *", 0, 0, 0};
36899 static swig_type_info _swigt__p_wxChoicebookEvent
= {"_p_wxChoicebookEvent", "wxChoicebookEvent *", 0, 0, 0};
36900 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, 0};
36901 static swig_type_info _swigt__p_wxComboBox
= {"_p_wxComboBox", "wxComboBox *", 0, 0, 0};
36902 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", "wxCommandEvent *", 0, 0, 0};
36903 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0};
36904 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0};
36905 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0};
36906 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0};
36907 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0};
36908 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0};
36909 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0};
36910 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0};
36911 static swig_type_info _swigt__p_wxContextHelp
= {"_p_wxContextHelp", "wxContextHelp *", 0, 0, 0};
36912 static swig_type_info _swigt__p_wxContextHelpButton
= {"_p_wxContextHelpButton", "wxContextHelpButton *", 0, 0, 0};
36913 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", "wxControl *", 0, 0, 0};
36914 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", "wxControlWithItems *", 0, 0, 0};
36915 static swig_type_info _swigt__p_wxCursor
= {"_p_wxCursor", "wxCursor *", 0, 0, 0};
36916 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, 0};
36917 static swig_type_info _swigt__p_wxDatePickerCtrl
= {"_p_wxDatePickerCtrl", "wxDatePickerCtrl *", 0, 0, 0};
36918 static swig_type_info _swigt__p_wxDateTime
= {"_p_wxDateTime", "wxDateTime *", 0, 0, 0};
36919 static swig_type_info _swigt__p_wxDirFilterListCtrl
= {"_p_wxDirFilterListCtrl", "wxDirFilterListCtrl *", 0, 0, 0};
36920 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, 0};
36921 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, 0};
36922 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0};
36923 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0};
36924 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0};
36925 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0};
36926 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0};
36927 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0};
36928 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0};
36929 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0};
36930 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0};
36931 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0};
36932 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0};
36933 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0};
36934 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0};
36935 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0};
36936 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0};
36937 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0};
36938 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0};
36939 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0};
36940 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0};
36941 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0};
36942 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0};
36943 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0};
36944 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0};
36945 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", 0, 0, 0, 0};
36946 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, 0};
36947 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", 0, 0, 0, 0};
36948 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0};
36949 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0};
36950 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", 0, 0, 0, 0};
36951 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, 0};
36952 static swig_type_info _swigt__p_wxGauge
= {"_p_wxGauge", "wxGauge *", 0, 0, 0};
36953 static swig_type_info _swigt__p_wxGenericDirCtrl
= {"_p_wxGenericDirCtrl", "wxGenericDirCtrl *", 0, 0, 0};
36954 static swig_type_info _swigt__p_wxGenericDragImage
= {"_p_wxGenericDragImage", "wxGenericDragImage *", 0, 0, 0};
36955 static swig_type_info _swigt__p_wxHelpEvent
= {"_p_wxHelpEvent", "wxHelpEvent *", 0, 0, 0};
36956 static swig_type_info _swigt__p_wxHelpProvider
= {"_p_wxHelpProvider", "wxHelpProvider *", 0, 0, 0};
36957 static swig_type_info _swigt__p_wxIcon
= {"_p_wxIcon", "wxIcon *", 0, 0, 0};
36958 static swig_type_info _swigt__p_wxImageList
= {"_p_wxImageList", "wxImageList *", 0, 0, 0};
36959 static swig_type_info _swigt__p_wxItemContainer
= {"_p_wxItemContainer", "wxItemContainer *", 0, 0, 0};
36960 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", "wxKeyEvent *", 0, 0, 0};
36961 static swig_type_info _swigt__p_wxListBox
= {"_p_wxListBox", "wxListBox *", 0, 0, 0};
36962 static swig_type_info _swigt__p_wxListEvent
= {"_p_wxListEvent", "wxListEvent *", 0, 0, 0};
36963 static swig_type_info _swigt__p_wxListItem
= {"_p_wxListItem", "wxListItem *", 0, 0, 0};
36964 static swig_type_info _swigt__p_wxListItemAttr
= {"_p_wxListItemAttr", "wxListItemAttr *", 0, 0, 0};
36965 static swig_type_info _swigt__p_wxListView
= {"_p_wxListView", "wxListView *", 0, 0, 0};
36966 static swig_type_info _swigt__p_wxListbook
= {"_p_wxListbook", "wxListbook *", 0, 0, 0};
36967 static swig_type_info _swigt__p_wxListbookEvent
= {"_p_wxListbookEvent", "wxListbookEvent *", 0, 0, 0};
36968 static swig_type_info _swigt__p_wxMemoryDC
= {"_p_wxMemoryDC", "wxMemoryDC *", 0, 0, 0};
36969 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", "wxMouseEvent *", 0, 0, 0};
36970 static swig_type_info _swigt__p_wxNotebook
= {"_p_wxNotebook", "wxNotebook *", 0, 0, 0};
36971 static swig_type_info _swigt__p_wxNotebookEvent
= {"_p_wxNotebookEvent", "wxNotebookEvent *", 0, 0, 0};
36972 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", "wxNotifyEvent *", 0, 0, 0};
36973 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, 0};
36974 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0};
36975 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0};
36976 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", 0, 0, 0, 0};
36977 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0};
36978 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0};
36979 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0};
36980 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", 0, 0, 0, 0};
36981 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0};
36982 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0};
36983 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0};
36984 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0};
36985 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0};
36986 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0};
36987 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0};
36988 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0};
36989 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0};
36990 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0};
36991 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0};
36992 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0};
36993 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0};
36994 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0};
36995 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0};
36996 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0};
36997 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0};
36998 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0};
36999 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0};
37000 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0};
37001 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0};
37002 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0};
37003 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", 0, 0, 0, 0};
37004 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, 0};
37005 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, 0};
37006 static swig_type_info _swigt__p_wxPyControl
= {"_p_wxPyControl", "wxPyControl *", 0, 0, 0};
37007 static swig_type_info _swigt__p_wxPyListCtrl
= {"_p_wxPyListCtrl", "wxPyListCtrl *", 0, 0, 0};
37008 static swig_type_info _swigt__p_wxPyTreeCtrl
= {"_p_wxPyTreeCtrl", "wxPyTreeCtrl *", 0, 0, 0};
37009 static swig_type_info _swigt__p_wxPyTreeItemData
= {"_p_wxPyTreeItemData", "wxPyTreeItemData *", 0, 0, 0};
37010 static swig_type_info _swigt__p_wxRadioBox
= {"_p_wxRadioBox", "wxRadioBox *", 0, 0, 0};
37011 static swig_type_info _swigt__p_wxRadioButton
= {"_p_wxRadioButton", "wxRadioButton *", 0, 0, 0};
37012 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, 0};
37013 static swig_type_info _swigt__p_wxScrollBar
= {"_p_wxScrollBar", "wxScrollBar *", 0, 0, 0};
37014 static swig_type_info _swigt__p_wxSimpleHelpProvider
= {"_p_wxSimpleHelpProvider", "wxSimpleHelpProvider *", 0, 0, 0};
37015 static swig_type_info _swigt__p_wxSize
= {"_p_wxSize", "wxSize *", 0, 0, 0};
37016 static swig_type_info _swigt__p_wxSlider
= {"_p_wxSlider", "wxSlider *", 0, 0, 0};
37017 static swig_type_info _swigt__p_wxSpinButton
= {"_p_wxSpinButton", "wxSpinButton *", 0, 0, 0};
37018 static swig_type_info _swigt__p_wxSpinCtrl
= {"_p_wxSpinCtrl", "wxSpinCtrl *", 0, 0, 0};
37019 static swig_type_info _swigt__p_wxSpinEvent
= {"_p_wxSpinEvent", "wxSpinEvent *", 0, 0, 0};
37020 static swig_type_info _swigt__p_wxStaticBitmap
= {"_p_wxStaticBitmap", "wxStaticBitmap *", 0, 0, 0};
37021 static swig_type_info _swigt__p_wxStaticBox
= {"_p_wxStaticBox", "wxStaticBox *", 0, 0, 0};
37022 static swig_type_info _swigt__p_wxStaticLine
= {"_p_wxStaticLine", "wxStaticLine *", 0, 0, 0};
37023 static swig_type_info _swigt__p_wxStaticText
= {"_p_wxStaticText", "wxStaticText *", 0, 0, 0};
37024 static swig_type_info _swigt__p_wxString
= {"_p_wxString", "wxString *", 0, 0, 0};
37025 static swig_type_info _swigt__p_wxTextAttr
= {"_p_wxTextAttr", "wxTextAttr *", 0, 0, 0};
37026 static swig_type_info _swigt__p_wxTextCtrl
= {"_p_wxTextCtrl", "wxTextCtrl *", 0, 0, 0};
37027 static swig_type_info _swigt__p_wxTextUrlEvent
= {"_p_wxTextUrlEvent", "wxTextUrlEvent *", 0, 0, 0};
37028 static swig_type_info _swigt__p_wxToggleButton
= {"_p_wxToggleButton", "wxToggleButton *", 0, 0, 0};
37029 static swig_type_info _swigt__p_wxToolBar
= {"_p_wxToolBar", "wxToolBar *", 0, 0, 0};
37030 static swig_type_info _swigt__p_wxToolBarBase
= {"_p_wxToolBarBase", "wxToolBarBase *", 0, 0, 0};
37031 static swig_type_info _swigt__p_wxToolBarToolBase
= {"_p_wxToolBarToolBase", "wxToolBarToolBase *", 0, 0, 0};
37032 static swig_type_info _swigt__p_wxTreeEvent
= {"_p_wxTreeEvent", "wxTreeEvent *", 0, 0, 0};
37033 static swig_type_info _swigt__p_wxTreeItemId
= {"_p_wxTreeItemId", "wxTreeItemId *", 0, 0, 0};
37034 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", "wxValidator *", 0, 0, 0};
37035 static swig_type_info _swigt__p_wxVisualAttributes
= {"_p_wxVisualAttributes", "wxVisualAttributes *", 0, 0, 0};
37036 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, 0};
37037 static swig_type_info _swigt__ptrdiff_t
= {"_ptrdiff_t", "ptrdiff_t", 0, 0, 0};
37038 static swig_type_info _swigt__std__ptrdiff_t
= {"_std__ptrdiff_t", "std::ptrdiff_t", 0, 0, 0};
37039 static swig_type_info _swigt__unsigned_int
= {"_unsigned_int", "unsigned int|std::size_t", 0, 0, 0};
37041 static swig_type_info
*swig_type_initial
[] = {
37044 &_swigt__p_form_ops_t
,
37047 &_swigt__p_unsigned_char
,
37048 &_swigt__p_unsigned_int
,
37049 &_swigt__p_unsigned_long
,
37051 &_swigt__p_wxANIHandler
,
37052 &_swigt__p_wxAcceleratorTable
,
37053 &_swigt__p_wxActivateEvent
,
37054 &_swigt__p_wxArrayInt
,
37055 &_swigt__p_wxArrayString
,
37056 &_swigt__p_wxBMPHandler
,
37057 &_swigt__p_wxBitmap
,
37058 &_swigt__p_wxBitmapButton
,
37059 &_swigt__p_wxBookCtrlBase
,
37060 &_swigt__p_wxBookCtrlBaseEvent
,
37061 &_swigt__p_wxBoxSizer
,
37062 &_swigt__p_wxButton
,
37063 &_swigt__p_wxCURHandler
,
37064 &_swigt__p_wxCheckBox
,
37065 &_swigt__p_wxCheckListBox
,
37066 &_swigt__p_wxChildFocusEvent
,
37067 &_swigt__p_wxChoice
,
37068 &_swigt__p_wxChoicebook
,
37069 &_swigt__p_wxChoicebookEvent
,
37070 &_swigt__p_wxCloseEvent
,
37071 &_swigt__p_wxColour
,
37072 &_swigt__p_wxComboBox
,
37073 &_swigt__p_wxCommandEvent
,
37074 &_swigt__p_wxContextHelp
,
37075 &_swigt__p_wxContextHelpButton
,
37076 &_swigt__p_wxContextMenuEvent
,
37077 &_swigt__p_wxControl
,
37078 &_swigt__p_wxControlWithItems
,
37079 &_swigt__p_wxCursor
,
37081 &_swigt__p_wxDateEvent
,
37082 &_swigt__p_wxDatePickerCtrl
,
37083 &_swigt__p_wxDateTime
,
37084 &_swigt__p_wxDirFilterListCtrl
,
37085 &_swigt__p_wxDisplayChangedEvent
,
37086 &_swigt__p_wxDropFilesEvent
,
37087 &_swigt__p_wxDuplexMode
,
37088 &_swigt__p_wxEraseEvent
,
37089 &_swigt__p_wxEvent
,
37090 &_swigt__p_wxEvtHandler
,
37091 &_swigt__p_wxFSFile
,
37092 &_swigt__p_wxFileSystem
,
37093 &_swigt__p_wxFlexGridSizer
,
37094 &_swigt__p_wxFocusEvent
,
37096 &_swigt__p_wxGBSizerItem
,
37097 &_swigt__p_wxGIFHandler
,
37098 &_swigt__p_wxGauge
,
37099 &_swigt__p_wxGenericDirCtrl
,
37100 &_swigt__p_wxGenericDragImage
,
37101 &_swigt__p_wxGridBagSizer
,
37102 &_swigt__p_wxGridSizer
,
37103 &_swigt__p_wxHelpEvent
,
37104 &_swigt__p_wxHelpProvider
,
37105 &_swigt__p_wxICOHandler
,
37107 &_swigt__p_wxIconizeEvent
,
37108 &_swigt__p_wxIdleEvent
,
37109 &_swigt__p_wxImage
,
37110 &_swigt__p_wxImageHandler
,
37111 &_swigt__p_wxImageList
,
37112 &_swigt__p_wxIndividualLayoutConstraint
,
37113 &_swigt__p_wxInitDialogEvent
,
37114 &_swigt__p_wxItemContainer
,
37115 &_swigt__p_wxJPEGHandler
,
37116 &_swigt__p_wxKeyEvent
,
37117 &_swigt__p_wxLayoutConstraints
,
37118 &_swigt__p_wxListBox
,
37119 &_swigt__p_wxListEvent
,
37120 &_swigt__p_wxListItem
,
37121 &_swigt__p_wxListItemAttr
,
37122 &_swigt__p_wxListView
,
37123 &_swigt__p_wxListbook
,
37124 &_swigt__p_wxListbookEvent
,
37125 &_swigt__p_wxMaximizeEvent
,
37126 &_swigt__p_wxMemoryDC
,
37128 &_swigt__p_wxMenuBar
,
37129 &_swigt__p_wxMenuEvent
,
37130 &_swigt__p_wxMenuItem
,
37131 &_swigt__p_wxMouseCaptureChangedEvent
,
37132 &_swigt__p_wxMouseEvent
,
37133 &_swigt__p_wxMoveEvent
,
37134 &_swigt__p_wxNavigationKeyEvent
,
37135 &_swigt__p_wxNcPaintEvent
,
37136 &_swigt__p_wxNotebook
,
37137 &_swigt__p_wxNotebookEvent
,
37138 &_swigt__p_wxNotifyEvent
,
37139 &_swigt__p_wxObject
,
37140 &_swigt__p_wxPCXHandler
,
37141 &_swigt__p_wxPNGHandler
,
37142 &_swigt__p_wxPNMHandler
,
37143 &_swigt__p_wxPaintEvent
,
37144 &_swigt__p_wxPaletteChangedEvent
,
37145 &_swigt__p_wxPaperSize
,
37146 &_swigt__p_wxPoint
,
37147 &_swigt__p_wxPyApp
,
37148 &_swigt__p_wxPyCommandEvent
,
37149 &_swigt__p_wxPyControl
,
37150 &_swigt__p_wxPyEvent
,
37151 &_swigt__p_wxPyImageHandler
,
37152 &_swigt__p_wxPyListCtrl
,
37153 &_swigt__p_wxPySizer
,
37154 &_swigt__p_wxPyTreeCtrl
,
37155 &_swigt__p_wxPyTreeItemData
,
37156 &_swigt__p_wxPyValidator
,
37157 &_swigt__p_wxQueryNewPaletteEvent
,
37158 &_swigt__p_wxRadioBox
,
37159 &_swigt__p_wxRadioButton
,
37161 &_swigt__p_wxScrollBar
,
37162 &_swigt__p_wxScrollEvent
,
37163 &_swigt__p_wxScrollWinEvent
,
37164 &_swigt__p_wxSetCursorEvent
,
37165 &_swigt__p_wxShowEvent
,
37166 &_swigt__p_wxSimpleHelpProvider
,
37168 &_swigt__p_wxSizeEvent
,
37169 &_swigt__p_wxSizer
,
37170 &_swigt__p_wxSizerItem
,
37171 &_swigt__p_wxSlider
,
37172 &_swigt__p_wxSpinButton
,
37173 &_swigt__p_wxSpinCtrl
,
37174 &_swigt__p_wxSpinEvent
,
37175 &_swigt__p_wxStaticBitmap
,
37176 &_swigt__p_wxStaticBox
,
37177 &_swigt__p_wxStaticBoxSizer
,
37178 &_swigt__p_wxStaticLine
,
37179 &_swigt__p_wxStaticText
,
37180 &_swigt__p_wxStdDialogButtonSizer
,
37181 &_swigt__p_wxString
,
37182 &_swigt__p_wxSysColourChangedEvent
,
37183 &_swigt__p_wxTIFFHandler
,
37184 &_swigt__p_wxTextAttr
,
37185 &_swigt__p_wxTextCtrl
,
37186 &_swigt__p_wxTextUrlEvent
,
37187 &_swigt__p_wxToggleButton
,
37188 &_swigt__p_wxToolBar
,
37189 &_swigt__p_wxToolBarBase
,
37190 &_swigt__p_wxToolBarToolBase
,
37191 &_swigt__p_wxTreeEvent
,
37192 &_swigt__p_wxTreeItemId
,
37193 &_swigt__p_wxUpdateUIEvent
,
37194 &_swigt__p_wxValidator
,
37195 &_swigt__p_wxVisualAttributes
,
37196 &_swigt__p_wxWindow
,
37197 &_swigt__p_wxWindowCreateEvent
,
37198 &_swigt__p_wxWindowDestroyEvent
,
37199 &_swigt__p_wxXPMHandler
,
37200 &_swigt__ptrdiff_t
,
37201 &_swigt__std__ptrdiff_t
,
37202 &_swigt__unsigned_int
,
37205 static swig_cast_info _swigc__p_bool
[] = { {&_swigt__p_bool
, 0, 0, 0},{0, 0, 0, 0}};
37206 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
37207 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
37208 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
37209 static swig_cast_info _swigc__p_long
[] = { {&_swigt__p_long
, 0, 0, 0},{0, 0, 0, 0}};
37210 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
37211 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
37212 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
37213 static swig_cast_info _swigc__p_void
[] = { {&_swigt__p_void
, 0, 0, 0},{0, 0, 0, 0}};
37214 static swig_cast_info _swigc__p_wxArrayInt
[] = { {&_swigt__p_wxArrayInt
, 0, 0, 0},{0, 0, 0, 0}};
37215 static swig_cast_info _swigc__p_wxArrayString
[] = { {&_swigt__p_wxArrayString
, 0, 0, 0},{0, 0, 0, 0}};
37216 static swig_cast_info _swigc__p_wxBitmap
[] = { {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}};
37217 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}};
37218 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_wxNotebook
, _p_wxNotebookTo_p_wxBookCtrlBase
, 0, 0},{0, 0, 0, 0}};
37219 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},{0, 0, 0, 0}};
37220 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}};
37221 static swig_cast_info _swigc__p_wxCheckBox
[] = { {&_swigt__p_wxCheckBox
, 0, 0, 0},{0, 0, 0, 0}};
37222 static swig_cast_info _swigc__p_wxCheckListBox
[] = { {&_swigt__p_wxCheckListBox
, 0, 0, 0},{0, 0, 0, 0}};
37223 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}};
37224 static swig_cast_info _swigc__p_wxChoicebook
[] = { {&_swigt__p_wxChoicebook
, 0, 0, 0},{0, 0, 0, 0}};
37225 static swig_cast_info _swigc__p_wxChoicebookEvent
[] = { {&_swigt__p_wxChoicebookEvent
, 0, 0, 0},{0, 0, 0, 0}};
37226 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
37227 static swig_cast_info _swigc__p_wxComboBox
[] = { {&_swigt__p_wxComboBox
, 0, 0, 0},{0, 0, 0, 0}};
37228 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
37229 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
37230 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
37231 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
37232 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
37233 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
37234 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
37235 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
37236 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_wxListEvent
, _p_wxListEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_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}};
37237 static swig_cast_info _swigc__p_wxContextHelp
[] = { {&_swigt__p_wxContextHelp
, 0, 0, 0},{0, 0, 0, 0}};
37238 static swig_cast_info _swigc__p_wxContextHelpButton
[] = { {&_swigt__p_wxContextHelpButton
, 0, 0, 0},{0, 0, 0, 0}};
37239 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_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_wxSpinButton
, _p_wxSpinButtonTo_p_wxControl
, 0, 0}, {&_swigt__p_wxButton
, _p_wxButtonTo_p_wxControl
, 0, 0}, {&_swigt__p_wxContextHelpButton
, _p_wxContextHelpButtonTo_p_wxControl
, 0, 0}, {&_swigt__p_wxBitmapButton
, _p_wxBitmapButtonTo_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}};
37240 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}};
37241 static swig_cast_info _swigc__p_wxCursor
[] = { {&_swigt__p_wxCursor
, 0, 0, 0},{0, 0, 0, 0}};
37242 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
37243 static swig_cast_info _swigc__p_wxDatePickerCtrl
[] = { {&_swigt__p_wxDatePickerCtrl
, 0, 0, 0},{0, 0, 0, 0}};
37244 static swig_cast_info _swigc__p_wxDateTime
[] = { {&_swigt__p_wxDateTime
, 0, 0, 0},{0, 0, 0, 0}};
37245 static swig_cast_info _swigc__p_wxDirFilterListCtrl
[] = { {&_swigt__p_wxDirFilterListCtrl
, 0, 0, 0},{0, 0, 0, 0}};
37246 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
37247 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
37248 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
37249 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
37250 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
37251 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
37252 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
37253 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
37254 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
37255 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
37256 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
37257 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
37258 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
37259 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
37260 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
37261 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
37262 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
37263 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
37264 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
37265 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
37266 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
37267 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
37268 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
37269 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
37270 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
37271 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_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_wxDisplayChangedEvent
, _p_wxDisplayChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMouseCaptureChangedEvent
, _p_wxMouseCaptureChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPaletteChangedEvent
, _p_wxPaletteChangedEventTo_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}};
37272 static swig_cast_info _swigc__p_wxMenuBar
[] = {{&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
37273 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
37274 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
37275 static swig_cast_info _swigc__p_wxMenu
[] = {{&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
37276 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_wxWindow
, _p_wxWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyControl
, _p_wxPyControlTo_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_wxBitmapButton
, _p_wxBitmapButtonTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxContextHelpButton
, _p_wxContextHelpButtonTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxButton
, _p_wxButtonTo_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}};
37277 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
37278 static swig_cast_info _swigc__p_wxGauge
[] = { {&_swigt__p_wxGauge
, 0, 0, 0},{0, 0, 0, 0}};
37279 static swig_cast_info _swigc__p_wxGenericDirCtrl
[] = { {&_swigt__p_wxGenericDirCtrl
, 0, 0, 0},{0, 0, 0, 0}};
37280 static swig_cast_info _swigc__p_wxGenericDragImage
[] = { {&_swigt__p_wxGenericDragImage
, 0, 0, 0},{0, 0, 0, 0}};
37281 static swig_cast_info _swigc__p_wxHelpEvent
[] = { {&_swigt__p_wxHelpEvent
, 0, 0, 0},{0, 0, 0, 0}};
37282 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}};
37283 static swig_cast_info _swigc__p_wxIcon
[] = { {&_swigt__p_wxIcon
, 0, 0, 0},{0, 0, 0, 0}};
37284 static swig_cast_info _swigc__p_wxImageList
[] = { {&_swigt__p_wxImageList
, 0, 0, 0},{0, 0, 0, 0}};
37285 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}};
37286 static swig_cast_info _swigc__p_wxKeyEvent
[] = { {&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
37287 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}};
37288 static swig_cast_info _swigc__p_wxListEvent
[] = { {&_swigt__p_wxListEvent
, 0, 0, 0},{0, 0, 0, 0}};
37289 static swig_cast_info _swigc__p_wxListItem
[] = { {&_swigt__p_wxListItem
, 0, 0, 0},{0, 0, 0, 0}};
37290 static swig_cast_info _swigc__p_wxListItemAttr
[] = { {&_swigt__p_wxListItemAttr
, 0, 0, 0},{0, 0, 0, 0}};
37291 static swig_cast_info _swigc__p_wxListView
[] = { {&_swigt__p_wxListView
, 0, 0, 0},{0, 0, 0, 0}};
37292 static swig_cast_info _swigc__p_wxListbook
[] = { {&_swigt__p_wxListbook
, 0, 0, 0},{0, 0, 0, 0}};
37293 static swig_cast_info _swigc__p_wxListbookEvent
[] = { {&_swigt__p_wxListbookEvent
, 0, 0, 0},{0, 0, 0, 0}};
37294 static swig_cast_info _swigc__p_wxMemoryDC
[] = { {&_swigt__p_wxMemoryDC
, 0, 0, 0},{0, 0, 0, 0}};
37295 static swig_cast_info _swigc__p_wxMouseEvent
[] = { {&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
37296 static swig_cast_info _swigc__p_wxNotebook
[] = { {&_swigt__p_wxNotebook
, 0, 0, 0},{0, 0, 0, 0}};
37297 static swig_cast_info _swigc__p_wxNotebookEvent
[] = { {&_swigt__p_wxNotebookEvent
, 0, 0, 0},{0, 0, 0, 0}};
37298 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_wxNotifyEvent
, 0, 0, 0},{0, 0, 0, 0}};
37299 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
37300 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
37301 static swig_cast_info _swigc__p_wxSizerItem
[] = {{&_swigt__p_wxSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
37302 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
37303 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
37304 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
37305 static swig_cast_info _swigc__p_wxSizer
[] = {{&_swigt__p_wxSizer
, 0, 0, 0},{0, 0, 0, 0}};
37306 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
37307 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
37308 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
37309 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
37310 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
37311 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
37312 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
37313 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
37314 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
37315 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
37316 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
37317 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
37318 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
37319 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
37320 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
37321 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
37322 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
37323 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
37324 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
37325 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
37326 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
37327 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
37328 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
37329 static swig_cast_info _swigc__p_wxObject
[] = { {&_swigt__p_wxLayoutConstraints
, _p_wxLayoutConstraintsTo_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_wxPaletteChangedEvent
, _p_wxPaletteChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDisplayChangedEvent
, _p_wxDisplayChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMouseCaptureChangedEvent
, _p_wxMouseCaptureChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStaticLine
, _p_wxStaticLineTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyControl
, _p_wxPyControlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxRadioButton
, _p_wxRadioButtonTo_p_wxObject
, 0, 0}, {&_swigt__p_wxToggleButton
, _p_wxToggleButtonTo_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_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_wxDateEvent
, _p_wxDateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMoveEvent
, _p_wxMoveEventTo_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_wxTIFFHandler
, _p_wxTIFFHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxXPMHandler
, _p_wxXPMHandlerTo_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_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_wxBitmapButton
, _p_wxBitmapButtonTo_p_wxObject
, 0, 0}, {&_swigt__p_wxContextHelpButton
, _p_wxContextHelpButtonTo_p_wxObject
, 0, 0}, {&_swigt__p_wxButton
, _p_wxButtonTo_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_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}};
37330 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
37331 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
37332 static swig_cast_info _swigc__p_wxPyControl
[] = { {&_swigt__p_wxPyControl
, 0, 0, 0},{0, 0, 0, 0}};
37333 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}};
37334 static swig_cast_info _swigc__p_wxPyTreeCtrl
[] = { {&_swigt__p_wxPyTreeCtrl
, 0, 0, 0},{0, 0, 0, 0}};
37335 static swig_cast_info _swigc__p_wxPyTreeItemData
[] = { {&_swigt__p_wxPyTreeItemData
, 0, 0, 0},{0, 0, 0, 0}};
37336 static swig_cast_info _swigc__p_wxRadioBox
[] = { {&_swigt__p_wxRadioBox
, 0, 0, 0},{0, 0, 0, 0}};
37337 static swig_cast_info _swigc__p_wxRadioButton
[] = { {&_swigt__p_wxRadioButton
, 0, 0, 0},{0, 0, 0, 0}};
37338 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
37339 static swig_cast_info _swigc__p_wxScrollBar
[] = { {&_swigt__p_wxScrollBar
, 0, 0, 0},{0, 0, 0, 0}};
37340 static swig_cast_info _swigc__p_wxSimpleHelpProvider
[] = { {&_swigt__p_wxSimpleHelpProvider
, 0, 0, 0},{0, 0, 0, 0}};
37341 static swig_cast_info _swigc__p_wxSize
[] = { {&_swigt__p_wxSize
, 0, 0, 0},{0, 0, 0, 0}};
37342 static swig_cast_info _swigc__p_wxSlider
[] = { {&_swigt__p_wxSlider
, 0, 0, 0},{0, 0, 0, 0}};
37343 static swig_cast_info _swigc__p_wxSpinButton
[] = { {&_swigt__p_wxSpinButton
, 0, 0, 0},{0, 0, 0, 0}};
37344 static swig_cast_info _swigc__p_wxSpinCtrl
[] = { {&_swigt__p_wxSpinCtrl
, 0, 0, 0},{0, 0, 0, 0}};
37345 static swig_cast_info _swigc__p_wxSpinEvent
[] = { {&_swigt__p_wxSpinEvent
, 0, 0, 0},{0, 0, 0, 0}};
37346 static swig_cast_info _swigc__p_wxStaticBitmap
[] = { {&_swigt__p_wxStaticBitmap
, 0, 0, 0},{0, 0, 0, 0}};
37347 static swig_cast_info _swigc__p_wxStaticBox
[] = { {&_swigt__p_wxStaticBox
, 0, 0, 0},{0, 0, 0, 0}};
37348 static swig_cast_info _swigc__p_wxStaticLine
[] = { {&_swigt__p_wxStaticLine
, 0, 0, 0},{0, 0, 0, 0}};
37349 static swig_cast_info _swigc__p_wxStaticText
[] = { {&_swigt__p_wxStaticText
, 0, 0, 0},{0, 0, 0, 0}};
37350 static swig_cast_info _swigc__p_wxString
[] = { {&_swigt__p_wxString
, 0, 0, 0},{0, 0, 0, 0}};
37351 static swig_cast_info _swigc__p_wxTextAttr
[] = { {&_swigt__p_wxTextAttr
, 0, 0, 0},{0, 0, 0, 0}};
37352 static swig_cast_info _swigc__p_wxTextCtrl
[] = { {&_swigt__p_wxTextCtrl
, 0, 0, 0},{0, 0, 0, 0}};
37353 static swig_cast_info _swigc__p_wxTextUrlEvent
[] = { {&_swigt__p_wxTextUrlEvent
, 0, 0, 0},{0, 0, 0, 0}};
37354 static swig_cast_info _swigc__p_wxToggleButton
[] = { {&_swigt__p_wxToggleButton
, 0, 0, 0},{0, 0, 0, 0}};
37355 static swig_cast_info _swigc__p_wxToolBar
[] = { {&_swigt__p_wxToolBar
, 0, 0, 0},{0, 0, 0, 0}};
37356 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}};
37357 static swig_cast_info _swigc__p_wxToolBarToolBase
[] = { {&_swigt__p_wxToolBarToolBase
, 0, 0, 0},{0, 0, 0, 0}};
37358 static swig_cast_info _swigc__p_wxTreeEvent
[] = { {&_swigt__p_wxTreeEvent
, 0, 0, 0},{0, 0, 0, 0}};
37359 static swig_cast_info _swigc__p_wxTreeItemId
[] = { {&_swigt__p_wxTreeItemId
, 0, 0, 0},{0, 0, 0, 0}};
37360 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}};
37361 static swig_cast_info _swigc__p_wxVisualAttributes
[] = { {&_swigt__p_wxVisualAttributes
, 0, 0, 0},{0, 0, 0, 0}};
37362 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_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_wxDirFilterListCtrl
, _p_wxDirFilterListCtrlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyListCtrl
, _p_wxPyListCtrlTo_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_wxContextHelpButton
, _p_wxContextHelpButtonTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxBitmapButton
, _p_wxBitmapButtonTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxButton
, _p_wxButtonTo_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}};
37363 static swig_cast_info _swigc__ptrdiff_t
[] = { {&_swigt__ptrdiff_t
, 0, 0, 0},{0, 0, 0, 0}};
37364 static swig_cast_info _swigc__std__ptrdiff_t
[] = { {&_swigt__std__ptrdiff_t
, 0, 0, 0},{0, 0, 0, 0}};
37365 static swig_cast_info _swigc__unsigned_int
[] = { {&_swigt__unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
37367 static swig_cast_info
*swig_cast_initial
[] = {
37370 _swigc__p_form_ops_t
,
37373 _swigc__p_unsigned_char
,
37374 _swigc__p_unsigned_int
,
37375 _swigc__p_unsigned_long
,
37377 _swigc__p_wxANIHandler
,
37378 _swigc__p_wxAcceleratorTable
,
37379 _swigc__p_wxActivateEvent
,
37380 _swigc__p_wxArrayInt
,
37381 _swigc__p_wxArrayString
,
37382 _swigc__p_wxBMPHandler
,
37383 _swigc__p_wxBitmap
,
37384 _swigc__p_wxBitmapButton
,
37385 _swigc__p_wxBookCtrlBase
,
37386 _swigc__p_wxBookCtrlBaseEvent
,
37387 _swigc__p_wxBoxSizer
,
37388 _swigc__p_wxButton
,
37389 _swigc__p_wxCURHandler
,
37390 _swigc__p_wxCheckBox
,
37391 _swigc__p_wxCheckListBox
,
37392 _swigc__p_wxChildFocusEvent
,
37393 _swigc__p_wxChoice
,
37394 _swigc__p_wxChoicebook
,
37395 _swigc__p_wxChoicebookEvent
,
37396 _swigc__p_wxCloseEvent
,
37397 _swigc__p_wxColour
,
37398 _swigc__p_wxComboBox
,
37399 _swigc__p_wxCommandEvent
,
37400 _swigc__p_wxContextHelp
,
37401 _swigc__p_wxContextHelpButton
,
37402 _swigc__p_wxContextMenuEvent
,
37403 _swigc__p_wxControl
,
37404 _swigc__p_wxControlWithItems
,
37405 _swigc__p_wxCursor
,
37407 _swigc__p_wxDateEvent
,
37408 _swigc__p_wxDatePickerCtrl
,
37409 _swigc__p_wxDateTime
,
37410 _swigc__p_wxDirFilterListCtrl
,
37411 _swigc__p_wxDisplayChangedEvent
,
37412 _swigc__p_wxDropFilesEvent
,
37413 _swigc__p_wxDuplexMode
,
37414 _swigc__p_wxEraseEvent
,
37416 _swigc__p_wxEvtHandler
,
37417 _swigc__p_wxFSFile
,
37418 _swigc__p_wxFileSystem
,
37419 _swigc__p_wxFlexGridSizer
,
37420 _swigc__p_wxFocusEvent
,
37422 _swigc__p_wxGBSizerItem
,
37423 _swigc__p_wxGIFHandler
,
37425 _swigc__p_wxGenericDirCtrl
,
37426 _swigc__p_wxGenericDragImage
,
37427 _swigc__p_wxGridBagSizer
,
37428 _swigc__p_wxGridSizer
,
37429 _swigc__p_wxHelpEvent
,
37430 _swigc__p_wxHelpProvider
,
37431 _swigc__p_wxICOHandler
,
37433 _swigc__p_wxIconizeEvent
,
37434 _swigc__p_wxIdleEvent
,
37436 _swigc__p_wxImageHandler
,
37437 _swigc__p_wxImageList
,
37438 _swigc__p_wxIndividualLayoutConstraint
,
37439 _swigc__p_wxInitDialogEvent
,
37440 _swigc__p_wxItemContainer
,
37441 _swigc__p_wxJPEGHandler
,
37442 _swigc__p_wxKeyEvent
,
37443 _swigc__p_wxLayoutConstraints
,
37444 _swigc__p_wxListBox
,
37445 _swigc__p_wxListEvent
,
37446 _swigc__p_wxListItem
,
37447 _swigc__p_wxListItemAttr
,
37448 _swigc__p_wxListView
,
37449 _swigc__p_wxListbook
,
37450 _swigc__p_wxListbookEvent
,
37451 _swigc__p_wxMaximizeEvent
,
37452 _swigc__p_wxMemoryDC
,
37454 _swigc__p_wxMenuBar
,
37455 _swigc__p_wxMenuEvent
,
37456 _swigc__p_wxMenuItem
,
37457 _swigc__p_wxMouseCaptureChangedEvent
,
37458 _swigc__p_wxMouseEvent
,
37459 _swigc__p_wxMoveEvent
,
37460 _swigc__p_wxNavigationKeyEvent
,
37461 _swigc__p_wxNcPaintEvent
,
37462 _swigc__p_wxNotebook
,
37463 _swigc__p_wxNotebookEvent
,
37464 _swigc__p_wxNotifyEvent
,
37465 _swigc__p_wxObject
,
37466 _swigc__p_wxPCXHandler
,
37467 _swigc__p_wxPNGHandler
,
37468 _swigc__p_wxPNMHandler
,
37469 _swigc__p_wxPaintEvent
,
37470 _swigc__p_wxPaletteChangedEvent
,
37471 _swigc__p_wxPaperSize
,
37474 _swigc__p_wxPyCommandEvent
,
37475 _swigc__p_wxPyControl
,
37476 _swigc__p_wxPyEvent
,
37477 _swigc__p_wxPyImageHandler
,
37478 _swigc__p_wxPyListCtrl
,
37479 _swigc__p_wxPySizer
,
37480 _swigc__p_wxPyTreeCtrl
,
37481 _swigc__p_wxPyTreeItemData
,
37482 _swigc__p_wxPyValidator
,
37483 _swigc__p_wxQueryNewPaletteEvent
,
37484 _swigc__p_wxRadioBox
,
37485 _swigc__p_wxRadioButton
,
37487 _swigc__p_wxScrollBar
,
37488 _swigc__p_wxScrollEvent
,
37489 _swigc__p_wxScrollWinEvent
,
37490 _swigc__p_wxSetCursorEvent
,
37491 _swigc__p_wxShowEvent
,
37492 _swigc__p_wxSimpleHelpProvider
,
37494 _swigc__p_wxSizeEvent
,
37496 _swigc__p_wxSizerItem
,
37497 _swigc__p_wxSlider
,
37498 _swigc__p_wxSpinButton
,
37499 _swigc__p_wxSpinCtrl
,
37500 _swigc__p_wxSpinEvent
,
37501 _swigc__p_wxStaticBitmap
,
37502 _swigc__p_wxStaticBox
,
37503 _swigc__p_wxStaticBoxSizer
,
37504 _swigc__p_wxStaticLine
,
37505 _swigc__p_wxStaticText
,
37506 _swigc__p_wxStdDialogButtonSizer
,
37507 _swigc__p_wxString
,
37508 _swigc__p_wxSysColourChangedEvent
,
37509 _swigc__p_wxTIFFHandler
,
37510 _swigc__p_wxTextAttr
,
37511 _swigc__p_wxTextCtrl
,
37512 _swigc__p_wxTextUrlEvent
,
37513 _swigc__p_wxToggleButton
,
37514 _swigc__p_wxToolBar
,
37515 _swigc__p_wxToolBarBase
,
37516 _swigc__p_wxToolBarToolBase
,
37517 _swigc__p_wxTreeEvent
,
37518 _swigc__p_wxTreeItemId
,
37519 _swigc__p_wxUpdateUIEvent
,
37520 _swigc__p_wxValidator
,
37521 _swigc__p_wxVisualAttributes
,
37522 _swigc__p_wxWindow
,
37523 _swigc__p_wxWindowCreateEvent
,
37524 _swigc__p_wxWindowDestroyEvent
,
37525 _swigc__p_wxXPMHandler
,
37527 _swigc__std__ptrdiff_t
,
37528 _swigc__unsigned_int
,
37532 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
37534 static swig_const_info swig_const_table
[] = {
37535 {0, 0, 0, 0.0, 0, 0}};
37540 /*************************************************************************
37541 * Type initialization:
37542 * This problem is tough by the requirement that no dynamic
37543 * memory is used. Also, since swig_type_info structures store pointers to
37544 * swig_cast_info structures and swig_cast_info structures store pointers back
37545 * to swig_type_info structures, we need some lookup code at initialization.
37546 * The idea is that swig generates all the structures that are needed.
37547 * The runtime then collects these partially filled structures.
37548 * The SWIG_InitializeModule function takes these initial arrays out of
37549 * swig_module, and does all the lookup, filling in the swig_module.types
37550 * array with the correct data and linking the correct swig_cast_info
37551 * structures together.
37553 * The generated swig_type_info structures are assigned staticly to an initial
37554 * array. We just loop though that array, and handle each type individually.
37555 * First we lookup if this type has been already loaded, and if so, use the
37556 * loaded structure instead of the generated one. Then we have to fill in the
37557 * cast linked list. The cast data is initially stored in something like a
37558 * two-dimensional array. Each row corresponds to a type (there are the same
37559 * number of rows as there are in the swig_type_initial array). Each entry in
37560 * a column is one of the swig_cast_info structures for that type.
37561 * The cast_initial array is actually an array of arrays, because each row has
37562 * a variable number of columns. So to actually build the cast linked list,
37563 * we find the array of casts associated with the type, and loop through it
37564 * adding the casts to the list. The one last trick we need to do is making
37565 * sure the type pointer in the swig_cast_info struct is correct.
37567 * First off, we lookup the cast->type name to see if it is already loaded.
37568 * There are three cases to handle:
37569 * 1) If the cast->type has already been loaded AND the type we are adding
37570 * casting info to has not been loaded (it is in this module), THEN we
37571 * replace the cast->type pointer with the type pointer that has already
37573 * 2) If BOTH types (the one we are adding casting info to, and the
37574 * cast->type) are loaded, THEN the cast info has already been loaded by
37575 * the previous module so we just ignore it.
37576 * 3) Finally, if cast->type has not already been loaded, then we add that
37577 * swig_cast_info to the linked list (because the cast->type) pointer will
37589 #define SWIGRUNTIME_DEBUG
37593 SWIG_InitializeModule(void *clientdata
) {
37595 swig_module_info
*module_head
;
37596 static int init_run
= 0;
37598 clientdata
= clientdata
;
37600 if (init_run
) return;
37603 /* Initialize the swig_module */
37604 swig_module
.type_initial
= swig_type_initial
;
37605 swig_module
.cast_initial
= swig_cast_initial
;
37607 /* Try and load any already created modules */
37608 module_head
= SWIG_GetModule(clientdata
);
37610 swig_module
.next
= module_head
->next
;
37611 module_head
->next
= &swig_module
;
37613 /* This is the first module loaded */
37614 swig_module
.next
= &swig_module
;
37615 SWIG_SetModule(clientdata
, &swig_module
);
37618 /* Now work on filling in swig_module.types */
37619 #ifdef SWIGRUNTIME_DEBUG
37620 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
37622 for (i
= 0; i
< swig_module
.size
; ++i
) {
37623 swig_type_info
*type
= 0;
37624 swig_type_info
*ret
;
37625 swig_cast_info
*cast
;
37627 #ifdef SWIGRUNTIME_DEBUG
37628 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
37631 /* if there is another module already loaded */
37632 if (swig_module
.next
!= &swig_module
) {
37633 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
37636 /* Overwrite clientdata field */
37637 #ifdef SWIGRUNTIME_DEBUG
37638 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
37640 if (swig_module
.type_initial
[i
]->clientdata
) {
37641 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
37642 #ifdef SWIGRUNTIME_DEBUG
37643 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
37647 type
= swig_module
.type_initial
[i
];
37650 /* Insert casting types */
37651 cast
= swig_module
.cast_initial
[i
];
37652 while (cast
->type
) {
37653 /* Don't need to add information already in the list */
37655 #ifdef SWIGRUNTIME_DEBUG
37656 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
37658 if (swig_module
.next
!= &swig_module
) {
37659 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
37660 #ifdef SWIGRUNTIME_DEBUG
37661 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
37665 if (type
== swig_module
.type_initial
[i
]) {
37666 #ifdef SWIGRUNTIME_DEBUG
37667 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
37672 /* Check for casting already in the list */
37673 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
37674 #ifdef SWIGRUNTIME_DEBUG
37675 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
37677 if (!ocast
) ret
= 0;
37682 #ifdef SWIGRUNTIME_DEBUG
37683 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
37686 type
->cast
->prev
= cast
;
37687 cast
->next
= type
->cast
;
37693 /* Set entry in modules->types array equal to the type */
37694 swig_module
.types
[i
] = type
;
37696 swig_module
.types
[i
] = 0;
37698 #ifdef SWIGRUNTIME_DEBUG
37699 printf("**** SWIG_InitializeModule: Cast List ******\n");
37700 for (i
= 0; i
< swig_module
.size
; ++i
) {
37702 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
37703 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
37704 while (cast
->type
) {
37705 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
37709 printf("---- Total casts: %d\n",j
);
37711 printf("**** SWIG_InitializeModule: Cast List ******\n");
37715 /* This function will propagate the clientdata field of type to
37716 * any new swig_type_info structures that have been added into the list
37717 * of equivalent types. It is like calling
37718 * SWIG_TypeClientData(type, clientdata) a second time.
37721 SWIG_PropagateClientData(void) {
37723 swig_cast_info
*equiv
;
37724 static int init_run
= 0;
37726 if (init_run
) return;
37729 for (i
= 0; i
< swig_module
.size
; i
++) {
37730 if (swig_module
.types
[i
]->clientdata
) {
37731 equiv
= swig_module
.types
[i
]->cast
;
37733 if (!equiv
->converter
) {
37734 if (equiv
->type
&& !equiv
->type
->clientdata
)
37735 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
37737 equiv
= equiv
->next
;
37757 /* Python-specific SWIG API */
37758 #define SWIG_newvarlink() SWIG_Python_newvarlink()
37759 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
37760 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
37762 /* -----------------------------------------------------------------------------
37763 * global variable support code.
37764 * ----------------------------------------------------------------------------- */
37766 typedef struct swig_globalvar
{
37767 char *name
; /* Name of global variable */
37768 PyObject
*(*get_attr
)(void); /* Return the current value */
37769 int (*set_attr
)(PyObject
*); /* Set the value */
37770 struct swig_globalvar
*next
;
37773 typedef struct swig_varlinkobject
{
37775 swig_globalvar
*vars
;
37776 } swig_varlinkobject
;
37778 SWIGINTERN PyObject
*
37779 swig_varlink_repr(swig_varlinkobject
*v
) {
37781 return PyString_FromString("<Swig global variables>");
37785 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int flags
) {
37786 swig_globalvar
*var
;
37788 fprintf(fp
,"Swig global variables { ");
37789 for (var
= v
->vars
; var
; var
=var
->next
) {
37790 fprintf(fp
,"%s", var
->name
);
37791 if (var
->next
) fprintf(fp
,", ");
37793 fprintf(fp
," }\n");
37797 SWIGINTERN PyObject
*
37798 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
37799 swig_globalvar
*var
= v
->vars
;
37801 if (strcmp(var
->name
,n
) == 0) {
37802 return (*var
->get_attr
)();
37806 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
37811 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
37812 swig_globalvar
*var
= v
->vars
;
37814 if (strcmp(var
->name
,n
) == 0) {
37815 return (*var
->set_attr
)(p
);
37819 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
37823 SWIGINTERN PyTypeObject
*
37824 swig_varlink_type(void) {
37825 static char varlink__doc__
[] = "Swig var link object";
37826 static PyTypeObject varlink_type
37827 #if !defined(__cplusplus)
37829 static int type_init
= 0;
37834 PyObject_HEAD_INIT(&PyType_Type
)
37835 0, /* Number of items in variable part (ob_size) */
37836 (char *)"swigvarlink", /* Type name (tp_name) */
37837 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
37838 0, /* Itemsize (tp_itemsize) */
37839 0, /* Deallocator (tp_dealloc) */
37840 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
37841 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
37842 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
37843 0, /* tp_compare */
37844 (reprfunc
) swig_varlink_repr
, /* tp_repr */
37845 0, /* tp_as_number */
37846 0, /* tp_as_sequence */
37847 0, /* tp_as_mapping */
37851 0, /* tp_getattro */
37852 0, /* tp_setattro */
37853 0, /* tp_as_buffer */
37855 varlink__doc__
, /* tp_doc */
37856 #if PY_VERSION_HEX >= 0x02000000
37857 0, /* tp_traverse */
37860 #if PY_VERSION_HEX >= 0x02010000
37861 0, /* tp_richcompare */
37862 0, /* tp_weaklistoffset */
37864 #if PY_VERSION_HEX >= 0x02020000
37865 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
37867 #if PY_VERSION_HEX >= 0x02030000
37870 #ifdef COUNT_ALLOCS
37871 0,0,0,0 /* tp_alloc -> tp_next */
37874 #if !defined(__cplusplus)
37875 varlink_type
= tmp
;
37879 return &varlink_type
;
37882 /* Create a variable linking object for use later */
37883 SWIGINTERN PyObject
*
37884 SWIG_Python_newvarlink(void) {
37885 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
37889 return ((PyObject
*) result
);
37893 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
37894 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
37895 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
37897 size_t size
= strlen(name
)+1;
37898 gv
->name
= (char *)malloc(size
);
37900 strncpy(gv
->name
,name
,size
);
37901 gv
->get_attr
= get_attr
;
37902 gv
->set_attr
= set_attr
;
37903 gv
->next
= v
->vars
;
37909 /* -----------------------------------------------------------------------------
37910 * constants/methods manipulation
37911 * ----------------------------------------------------------------------------- */
37913 /* Install Constants */
37915 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
37918 for (i
= 0; constants
[i
].type
; ++i
) {
37919 switch(constants
[i
].type
) {
37921 obj
= PyInt_FromLong(constants
[i
].lvalue
);
37923 case SWIG_PY_FLOAT
:
37924 obj
= PyFloat_FromDouble(constants
[i
].dvalue
);
37926 case SWIG_PY_STRING
:
37927 if (constants
[i
].pvalue
) {
37928 obj
= PyString_FromString((char *) constants
[i
].pvalue
);
37930 Py_INCREF(Py_None
);
37934 case SWIG_PY_POINTER
:
37935 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
37937 case SWIG_PY_BINARY
:
37938 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
37945 PyDict_SetItemString(d
,constants
[i
].name
,obj
);
37951 /* -----------------------------------------------------------------------------*/
37952 /* Fix SwigMethods to carry the callback ptrs when needed */
37953 /* -----------------------------------------------------------------------------*/
37956 SWIG_Python_FixMethods(PyMethodDef
*methods
,
37957 swig_const_info
*const_table
,
37958 swig_type_info
**types
,
37959 swig_type_info
**types_initial
) {
37961 for (i
= 0; methods
[i
].ml_name
; ++i
) {
37962 char *c
= methods
[i
].ml_doc
;
37963 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
37965 swig_const_info
*ci
= 0;
37966 char *name
= c
+ 10;
37967 for (j
= 0; const_table
[j
].type
; ++j
) {
37968 if (strncmp(const_table
[j
].name
, name
,
37969 strlen(const_table
[j
].name
)) == 0) {
37970 ci
= &(const_table
[j
]);
37975 size_t shift
= (ci
->ptype
) - types
;
37976 swig_type_info
*ty
= types_initial
[shift
];
37977 size_t ldoc
= (c
- methods
[i
].ml_doc
);
37978 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
37979 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
37982 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
37984 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
37986 strncpy(buff
, "swig_ptr: ", 10);
37988 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
37989 methods
[i
].ml_doc
= ndoc
;
37997 /* -----------------------------------------------------------------------------*
37998 * Initialize type list
37999 * -----------------------------------------------------------------------------*/
38005 /* -----------------------------------------------------------------------------*
38006 * Partial Init method
38007 * -----------------------------------------------------------------------------*/
38012 SWIGEXPORT
void SWIG_init(void) {
38013 static PyObject
*SWIG_globals
= 0;
38015 if (!SWIG_globals
) SWIG_globals
= SWIG_newvarlink();
38017 /* Fix SwigMethods to carry the callback ptrs when needed */
38018 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
38020 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
38021 d
= PyModule_GetDict(m
);
38023 SWIG_InitializeModule(0);
38024 SWIG_InstallConstants(d
,swig_const_table
);
38026 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals
);
38027 SWIG_addvarlink(SWIG_globals
,(char*)"ButtonNameStr",_wrap_ButtonNameStr_get
, _wrap_ButtonNameStr_set
);
38029 PyDict_SetItemString(d
,"BU_LEFT", SWIG_From_int(static_cast<int >(wxBU_LEFT
)));
38032 PyDict_SetItemString(d
,"BU_TOP", SWIG_From_int(static_cast<int >(wxBU_TOP
)));
38035 PyDict_SetItemString(d
,"BU_RIGHT", SWIG_From_int(static_cast<int >(wxBU_RIGHT
)));
38038 PyDict_SetItemString(d
,"BU_BOTTOM", SWIG_From_int(static_cast<int >(wxBU_BOTTOM
)));
38041 PyDict_SetItemString(d
,"BU_ALIGN_MASK", SWIG_From_int(static_cast<int >(wxBU_ALIGN_MASK
)));
38044 PyDict_SetItemString(d
,"BU_EXACTFIT", SWIG_From_int(static_cast<int >(wxBU_EXACTFIT
)));
38047 PyDict_SetItemString(d
,"BU_AUTODRAW", SWIG_From_int(static_cast<int >(wxBU_AUTODRAW
)));
38049 SWIG_addvarlink(SWIG_globals
,(char*)"CheckBoxNameStr",_wrap_CheckBoxNameStr_get
, _wrap_CheckBoxNameStr_set
);
38051 PyDict_SetItemString(d
,"CHK_2STATE", SWIG_From_int(static_cast<int >(wxCHK_2STATE
)));
38054 PyDict_SetItemString(d
,"CHK_3STATE", SWIG_From_int(static_cast<int >(wxCHK_3STATE
)));
38057 PyDict_SetItemString(d
,"CHK_ALLOW_3RD_STATE_FOR_USER", SWIG_From_int(static_cast<int >(wxCHK_ALLOW_3RD_STATE_FOR_USER
)));
38060 PyDict_SetItemString(d
,"CHK_UNCHECKED", SWIG_From_int(static_cast<int >(wxCHK_UNCHECKED
)));
38063 PyDict_SetItemString(d
,"CHK_CHECKED", SWIG_From_int(static_cast<int >(wxCHK_CHECKED
)));
38066 PyDict_SetItemString(d
,"CHK_UNDETERMINED", SWIG_From_int(static_cast<int >(wxCHK_UNDETERMINED
)));
38068 SWIG_addvarlink(SWIG_globals
,(char*)"ChoiceNameStr",_wrap_ChoiceNameStr_get
, _wrap_ChoiceNameStr_set
);
38069 SWIG_addvarlink(SWIG_globals
,(char*)"ComboBoxNameStr",_wrap_ComboBoxNameStr_get
, _wrap_ComboBoxNameStr_set
);
38070 SWIG_addvarlink(SWIG_globals
,(char*)"GaugeNameStr",_wrap_GaugeNameStr_get
, _wrap_GaugeNameStr_set
);
38072 PyDict_SetItemString(d
,"GA_HORIZONTAL", SWIG_From_int(static_cast<int >(wxGA_HORIZONTAL
)));
38075 PyDict_SetItemString(d
,"GA_VERTICAL", SWIG_From_int(static_cast<int >(wxGA_VERTICAL
)));
38078 PyDict_SetItemString(d
,"GA_SMOOTH", SWIG_From_int(static_cast<int >(wxGA_SMOOTH
)));
38081 PyDict_SetItemString(d
,"GA_PROGRESSBAR", SWIG_From_int(static_cast<int >(wxGA_PROGRESSBAR
)));
38083 SWIG_addvarlink(SWIG_globals
,(char*)"StaticBitmapNameStr",_wrap_StaticBitmapNameStr_get
, _wrap_StaticBitmapNameStr_set
);
38084 SWIG_addvarlink(SWIG_globals
,(char*)"StaticBoxNameStr",_wrap_StaticBoxNameStr_get
, _wrap_StaticBoxNameStr_set
);
38085 SWIG_addvarlink(SWIG_globals
,(char*)"StaticTextNameStr",_wrap_StaticTextNameStr_get
, _wrap_StaticTextNameStr_set
);
38086 SWIG_addvarlink(SWIG_globals
,(char*)"ListBoxNameStr",_wrap_ListBoxNameStr_get
, _wrap_ListBoxNameStr_set
);
38087 SWIG_addvarlink(SWIG_globals
,(char*)"TextCtrlNameStr",_wrap_TextCtrlNameStr_get
, _wrap_TextCtrlNameStr_set
);
38089 PyDict_SetItemString(d
,"TE_NO_VSCROLL", SWIG_From_int(static_cast<int >(wxTE_NO_VSCROLL
)));
38092 PyDict_SetItemString(d
,"TE_AUTO_SCROLL", SWIG_From_int(static_cast<int >(wxTE_AUTO_SCROLL
)));
38095 PyDict_SetItemString(d
,"TE_READONLY", SWIG_From_int(static_cast<int >(wxTE_READONLY
)));
38098 PyDict_SetItemString(d
,"TE_MULTILINE", SWIG_From_int(static_cast<int >(wxTE_MULTILINE
)));
38101 PyDict_SetItemString(d
,"TE_PROCESS_TAB", SWIG_From_int(static_cast<int >(wxTE_PROCESS_TAB
)));
38104 PyDict_SetItemString(d
,"TE_LEFT", SWIG_From_int(static_cast<int >(wxTE_LEFT
)));
38107 PyDict_SetItemString(d
,"TE_CENTER", SWIG_From_int(static_cast<int >(wxTE_CENTER
)));
38110 PyDict_SetItemString(d
,"TE_RIGHT", SWIG_From_int(static_cast<int >(wxTE_RIGHT
)));
38113 PyDict_SetItemString(d
,"TE_CENTRE", SWIG_From_int(static_cast<int >(wxTE_CENTRE
)));
38116 PyDict_SetItemString(d
,"TE_RICH", SWIG_From_int(static_cast<int >(wxTE_RICH
)));
38119 PyDict_SetItemString(d
,"TE_PROCESS_ENTER", SWIG_From_int(static_cast<int >(wxTE_PROCESS_ENTER
)));
38122 PyDict_SetItemString(d
,"TE_PASSWORD", SWIG_From_int(static_cast<int >(wxTE_PASSWORD
)));
38125 PyDict_SetItemString(d
,"TE_AUTO_URL", SWIG_From_int(static_cast<int >(wxTE_AUTO_URL
)));
38128 PyDict_SetItemString(d
,"TE_NOHIDESEL", SWIG_From_int(static_cast<int >(wxTE_NOHIDESEL
)));
38131 PyDict_SetItemString(d
,"TE_DONTWRAP", SWIG_From_int(static_cast<int >(wxTE_DONTWRAP
)));
38134 PyDict_SetItemString(d
,"TE_CHARWRAP", SWIG_From_int(static_cast<int >(wxTE_CHARWRAP
)));
38137 PyDict_SetItemString(d
,"TE_WORDWRAP", SWIG_From_int(static_cast<int >(wxTE_WORDWRAP
)));
38140 PyDict_SetItemString(d
,"TE_BESTWRAP", SWIG_From_int(static_cast<int >(wxTE_BESTWRAP
)));
38143 PyDict_SetItemString(d
,"TE_LINEWRAP", SWIG_From_int(static_cast<int >(wxTE_LINEWRAP
)));
38146 PyDict_SetItemString(d
,"TE_RICH2", SWIG_From_int(static_cast<int >(wxTE_RICH2
)));
38149 PyDict_SetItemString(d
,"TE_CAPITALIZE", SWIG_From_int(static_cast<int >(wxTE_CAPITALIZE
)));
38152 PyDict_SetItemString(d
,"TEXT_ALIGNMENT_DEFAULT", SWIG_From_int(static_cast<int >(wxTEXT_ALIGNMENT_DEFAULT
)));
38155 PyDict_SetItemString(d
,"TEXT_ALIGNMENT_LEFT", SWIG_From_int(static_cast<int >(wxTEXT_ALIGNMENT_LEFT
)));
38158 PyDict_SetItemString(d
,"TEXT_ALIGNMENT_CENTRE", SWIG_From_int(static_cast<int >(wxTEXT_ALIGNMENT_CENTRE
)));
38161 PyDict_SetItemString(d
,"TEXT_ALIGNMENT_CENTER", SWIG_From_int(static_cast<int >(wxTEXT_ALIGNMENT_CENTER
)));
38164 PyDict_SetItemString(d
,"TEXT_ALIGNMENT_RIGHT", SWIG_From_int(static_cast<int >(wxTEXT_ALIGNMENT_RIGHT
)));
38167 PyDict_SetItemString(d
,"TEXT_ALIGNMENT_JUSTIFIED", SWIG_From_int(static_cast<int >(wxTEXT_ALIGNMENT_JUSTIFIED
)));
38170 PyDict_SetItemString(d
,"TEXT_ATTR_TEXT_COLOUR", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_TEXT_COLOUR
)));
38173 PyDict_SetItemString(d
,"TEXT_ATTR_BACKGROUND_COLOUR", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_BACKGROUND_COLOUR
)));
38176 PyDict_SetItemString(d
,"TEXT_ATTR_FONT_FACE", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_FONT_FACE
)));
38179 PyDict_SetItemString(d
,"TEXT_ATTR_FONT_SIZE", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_FONT_SIZE
)));
38182 PyDict_SetItemString(d
,"TEXT_ATTR_FONT_WEIGHT", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_FONT_WEIGHT
)));
38185 PyDict_SetItemString(d
,"TEXT_ATTR_FONT_ITALIC", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_FONT_ITALIC
)));
38188 PyDict_SetItemString(d
,"TEXT_ATTR_FONT_UNDERLINE", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_FONT_UNDERLINE
)));
38191 PyDict_SetItemString(d
,"TEXT_ATTR_FONT", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_FONT
)));
38194 PyDict_SetItemString(d
,"TEXT_ATTR_ALIGNMENT", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_ALIGNMENT
)));
38197 PyDict_SetItemString(d
,"TEXT_ATTR_LEFT_INDENT", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_LEFT_INDENT
)));
38200 PyDict_SetItemString(d
,"TEXT_ATTR_RIGHT_INDENT", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_RIGHT_INDENT
)));
38203 PyDict_SetItemString(d
,"TEXT_ATTR_TABS", SWIG_From_int(static_cast<int >(wxTEXT_ATTR_TABS
)));
38206 PyDict_SetItemString(d
,"TE_HT_UNKNOWN", SWIG_From_int(static_cast<int >(wxTE_HT_UNKNOWN
)));
38209 PyDict_SetItemString(d
,"TE_HT_BEFORE", SWIG_From_int(static_cast<int >(wxTE_HT_BEFORE
)));
38212 PyDict_SetItemString(d
,"TE_HT_ON_TEXT", SWIG_From_int(static_cast<int >(wxTE_HT_ON_TEXT
)));
38215 PyDict_SetItemString(d
,"TE_HT_BELOW", SWIG_From_int(static_cast<int >(wxTE_HT_BELOW
)));
38218 PyDict_SetItemString(d
,"TE_HT_BEYOND", SWIG_From_int(static_cast<int >(wxTE_HT_BEYOND
)));
38221 PyDict_SetItemString(d
,"OutOfRangeTextCoord", SWIG_From_int(static_cast<int >(wxOutOfRangeTextCoord
)));
38224 PyDict_SetItemString(d
,"InvalidTextCoord", SWIG_From_int(static_cast<int >(wxInvalidTextCoord
)));
38226 PyDict_SetItemString(d
, "wxEVT_COMMAND_TEXT_UPDATED", PyInt_FromLong(wxEVT_COMMAND_TEXT_UPDATED
));
38227 PyDict_SetItemString(d
, "wxEVT_COMMAND_TEXT_ENTER", PyInt_FromLong(wxEVT_COMMAND_TEXT_ENTER
));
38228 PyDict_SetItemString(d
, "wxEVT_COMMAND_TEXT_URL", PyInt_FromLong(wxEVT_COMMAND_TEXT_URL
));
38229 PyDict_SetItemString(d
, "wxEVT_COMMAND_TEXT_MAXLEN", PyInt_FromLong(wxEVT_COMMAND_TEXT_MAXLEN
));
38230 SWIG_addvarlink(SWIG_globals
,(char*)"ScrollBarNameStr",_wrap_ScrollBarNameStr_get
, _wrap_ScrollBarNameStr_set
);
38231 SWIG_addvarlink(SWIG_globals
,(char*)"SPIN_BUTTON_NAME",_wrap_SPIN_BUTTON_NAME_get
, _wrap_SPIN_BUTTON_NAME_set
);
38232 SWIG_addvarlink(SWIG_globals
,(char*)"SpinCtrlNameStr",_wrap_SpinCtrlNameStr_get
, _wrap_SpinCtrlNameStr_set
);
38234 PyDict_SetItemString(d
,"SP_HORIZONTAL", SWIG_From_int(static_cast<int >(wxSP_HORIZONTAL
)));
38237 PyDict_SetItemString(d
,"SP_VERTICAL", SWIG_From_int(static_cast<int >(wxSP_VERTICAL
)));
38240 PyDict_SetItemString(d
,"SP_ARROW_KEYS", SWIG_From_int(static_cast<int >(wxSP_ARROW_KEYS
)));
38243 PyDict_SetItemString(d
,"SP_WRAP", SWIG_From_int(static_cast<int >(wxSP_WRAP
)));
38245 PyDict_SetItemString(d
, "wxEVT_COMMAND_SPINCTRL_UPDATED", PyInt_FromLong(wxEVT_COMMAND_SPINCTRL_UPDATED
));
38246 SWIG_addvarlink(SWIG_globals
,(char*)"RadioBoxNameStr",_wrap_RadioBoxNameStr_get
, _wrap_RadioBoxNameStr_set
);
38247 SWIG_addvarlink(SWIG_globals
,(char*)"RadioButtonNameStr",_wrap_RadioButtonNameStr_get
, _wrap_RadioButtonNameStr_set
);
38248 SWIG_addvarlink(SWIG_globals
,(char*)"SliderNameStr",_wrap_SliderNameStr_get
, _wrap_SliderNameStr_set
);
38250 PyDict_SetItemString(d
,"SL_HORIZONTAL", SWIG_From_int(static_cast<int >(wxSL_HORIZONTAL
)));
38253 PyDict_SetItemString(d
,"SL_VERTICAL", SWIG_From_int(static_cast<int >(wxSL_VERTICAL
)));
38256 PyDict_SetItemString(d
,"SL_TICKS", SWIG_From_int(static_cast<int >(wxSL_TICKS
)));
38259 PyDict_SetItemString(d
,"SL_AUTOTICKS", SWIG_From_int(static_cast<int >(wxSL_AUTOTICKS
)));
38262 PyDict_SetItemString(d
,"SL_LABELS", SWIG_From_int(static_cast<int >(wxSL_LABELS
)));
38265 PyDict_SetItemString(d
,"SL_LEFT", SWIG_From_int(static_cast<int >(wxSL_LEFT
)));
38268 PyDict_SetItemString(d
,"SL_TOP", SWIG_From_int(static_cast<int >(wxSL_TOP
)));
38271 PyDict_SetItemString(d
,"SL_RIGHT", SWIG_From_int(static_cast<int >(wxSL_RIGHT
)));
38274 PyDict_SetItemString(d
,"SL_BOTTOM", SWIG_From_int(static_cast<int >(wxSL_BOTTOM
)));
38277 PyDict_SetItemString(d
,"SL_BOTH", SWIG_From_int(static_cast<int >(wxSL_BOTH
)));
38280 PyDict_SetItemString(d
,"SL_SELRANGE", SWIG_From_int(static_cast<int >(wxSL_SELRANGE
)));
38283 PyDict_SetItemString(d
,"SL_INVERSE", SWIG_From_int(static_cast<int >(wxSL_INVERSE
)));
38285 SWIG_addvarlink(SWIG_globals
,(char*)"ToggleButtonNameStr",_wrap_ToggleButtonNameStr_get
, _wrap_ToggleButtonNameStr_set
);
38286 PyDict_SetItemString(d
, "wxEVT_COMMAND_TOGGLEBUTTON_CLICKED", PyInt_FromLong(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
));
38287 SWIG_addvarlink(SWIG_globals
,(char*)"NotebookNameStr",_wrap_NotebookNameStr_get
, _wrap_NotebookNameStr_set
);
38289 PyDict_SetItemString(d
,"NB_FIXEDWIDTH", SWIG_From_int(static_cast<int >(wxNB_FIXEDWIDTH
)));
38292 PyDict_SetItemString(d
,"NB_TOP", SWIG_From_int(static_cast<int >(wxNB_TOP
)));
38295 PyDict_SetItemString(d
,"NB_LEFT", SWIG_From_int(static_cast<int >(wxNB_LEFT
)));
38298 PyDict_SetItemString(d
,"NB_RIGHT", SWIG_From_int(static_cast<int >(wxNB_RIGHT
)));
38301 PyDict_SetItemString(d
,"NB_BOTTOM", SWIG_From_int(static_cast<int >(wxNB_BOTTOM
)));
38304 PyDict_SetItemString(d
,"NB_MULTILINE", SWIG_From_int(static_cast<int >(wxNB_MULTILINE
)));
38307 PyDict_SetItemString(d
,"NB_NOPAGETHEME", SWIG_From_int(static_cast<int >(wxNB_NOPAGETHEME
)));
38310 PyDict_SetItemString(d
,"NB_HITTEST_NOWHERE", SWIG_From_int(static_cast<int >(wxNB_HITTEST_NOWHERE
)));
38313 PyDict_SetItemString(d
,"NB_HITTEST_ONICON", SWIG_From_int(static_cast<int >(wxNB_HITTEST_ONICON
)));
38316 PyDict_SetItemString(d
,"NB_HITTEST_ONLABEL", SWIG_From_int(static_cast<int >(wxNB_HITTEST_ONLABEL
)));
38319 PyDict_SetItemString(d
,"NB_HITTEST_ONITEM", SWIG_From_int(static_cast<int >(wxNB_HITTEST_ONITEM
)));
38321 PyDict_SetItemString(d
, "wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
));
38322 PyDict_SetItemString(d
, "wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
));
38324 PyDict_SetItemString(d
,"LB_DEFAULT", SWIG_From_int(static_cast<int >(wxLB_DEFAULT
)));
38327 PyDict_SetItemString(d
,"LB_TOP", SWIG_From_int(static_cast<int >(wxLB_TOP
)));
38330 PyDict_SetItemString(d
,"LB_BOTTOM", SWIG_From_int(static_cast<int >(wxLB_BOTTOM
)));
38333 PyDict_SetItemString(d
,"LB_LEFT", SWIG_From_int(static_cast<int >(wxLB_LEFT
)));
38336 PyDict_SetItemString(d
,"LB_RIGHT", SWIG_From_int(static_cast<int >(wxLB_RIGHT
)));
38339 PyDict_SetItemString(d
,"LB_ALIGN_MASK", SWIG_From_int(static_cast<int >(wxLB_ALIGN_MASK
)));
38341 PyDict_SetItemString(d
, "wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
));
38342 PyDict_SetItemString(d
, "wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
));
38344 PyDict_SetItemString(d
,"CHB_DEFAULT", SWIG_From_int(static_cast<int >(wxCHB_DEFAULT
)));
38347 PyDict_SetItemString(d
,"CHB_TOP", SWIG_From_int(static_cast<int >(wxCHB_TOP
)));
38350 PyDict_SetItemString(d
,"CHB_BOTTOM", SWIG_From_int(static_cast<int >(wxCHB_BOTTOM
)));
38353 PyDict_SetItemString(d
,"CHB_LEFT", SWIG_From_int(static_cast<int >(wxCHB_LEFT
)));
38356 PyDict_SetItemString(d
,"CHB_RIGHT", SWIG_From_int(static_cast<int >(wxCHB_RIGHT
)));
38359 PyDict_SetItemString(d
,"CHB_ALIGN_MASK", SWIG_From_int(static_cast<int >(wxCHB_ALIGN_MASK
)));
38361 PyDict_SetItemString(d
, "wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
));
38362 PyDict_SetItemString(d
, "wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
));
38364 PyDict_SetItemString(d
,"TOOL_STYLE_BUTTON", SWIG_From_int(static_cast<int >(wxTOOL_STYLE_BUTTON
)));
38367 PyDict_SetItemString(d
,"TOOL_STYLE_SEPARATOR", SWIG_From_int(static_cast<int >(wxTOOL_STYLE_SEPARATOR
)));
38370 PyDict_SetItemString(d
,"TOOL_STYLE_CONTROL", SWIG_From_int(static_cast<int >(wxTOOL_STYLE_CONTROL
)));
38373 PyDict_SetItemString(d
,"TB_HORIZONTAL", SWIG_From_int(static_cast<int >(wxTB_HORIZONTAL
)));
38376 PyDict_SetItemString(d
,"TB_VERTICAL", SWIG_From_int(static_cast<int >(wxTB_VERTICAL
)));
38379 PyDict_SetItemString(d
,"TB_3DBUTTONS", SWIG_From_int(static_cast<int >(wxTB_3DBUTTONS
)));
38382 PyDict_SetItemString(d
,"TB_FLAT", SWIG_From_int(static_cast<int >(wxTB_FLAT
)));
38385 PyDict_SetItemString(d
,"TB_DOCKABLE", SWIG_From_int(static_cast<int >(wxTB_DOCKABLE
)));
38388 PyDict_SetItemString(d
,"TB_NOICONS", SWIG_From_int(static_cast<int >(wxTB_NOICONS
)));
38391 PyDict_SetItemString(d
,"TB_TEXT", SWIG_From_int(static_cast<int >(wxTB_TEXT
)));
38394 PyDict_SetItemString(d
,"TB_NODIVIDER", SWIG_From_int(static_cast<int >(wxTB_NODIVIDER
)));
38397 PyDict_SetItemString(d
,"TB_NOALIGN", SWIG_From_int(static_cast<int >(wxTB_NOALIGN
)));
38400 PyDict_SetItemString(d
,"TB_HORZ_LAYOUT", SWIG_From_int(static_cast<int >(wxTB_HORZ_LAYOUT
)));
38403 PyDict_SetItemString(d
,"TB_HORZ_TEXT", SWIG_From_int(static_cast<int >(wxTB_HORZ_TEXT
)));
38405 SWIG_addvarlink(SWIG_globals
,(char*)"ListCtrlNameStr",_wrap_ListCtrlNameStr_get
, _wrap_ListCtrlNameStr_set
);
38407 PyDict_SetItemString(d
,"LC_VRULES", SWIG_From_int(static_cast<int >(wxLC_VRULES
)));
38410 PyDict_SetItemString(d
,"LC_HRULES", SWIG_From_int(static_cast<int >(wxLC_HRULES
)));
38413 PyDict_SetItemString(d
,"LC_ICON", SWIG_From_int(static_cast<int >(wxLC_ICON
)));
38416 PyDict_SetItemString(d
,"LC_SMALL_ICON", SWIG_From_int(static_cast<int >(wxLC_SMALL_ICON
)));
38419 PyDict_SetItemString(d
,"LC_LIST", SWIG_From_int(static_cast<int >(wxLC_LIST
)));
38422 PyDict_SetItemString(d
,"LC_REPORT", SWIG_From_int(static_cast<int >(wxLC_REPORT
)));
38425 PyDict_SetItemString(d
,"LC_ALIGN_TOP", SWIG_From_int(static_cast<int >(wxLC_ALIGN_TOP
)));
38428 PyDict_SetItemString(d
,"LC_ALIGN_LEFT", SWIG_From_int(static_cast<int >(wxLC_ALIGN_LEFT
)));
38431 PyDict_SetItemString(d
,"LC_AUTOARRANGE", SWIG_From_int(static_cast<int >(wxLC_AUTOARRANGE
)));
38434 PyDict_SetItemString(d
,"LC_VIRTUAL", SWIG_From_int(static_cast<int >(wxLC_VIRTUAL
)));
38437 PyDict_SetItemString(d
,"LC_EDIT_LABELS", SWIG_From_int(static_cast<int >(wxLC_EDIT_LABELS
)));
38440 PyDict_SetItemString(d
,"LC_NO_HEADER", SWIG_From_int(static_cast<int >(wxLC_NO_HEADER
)));
38443 PyDict_SetItemString(d
,"LC_NO_SORT_HEADER", SWIG_From_int(static_cast<int >(wxLC_NO_SORT_HEADER
)));
38446 PyDict_SetItemString(d
,"LC_SINGLE_SEL", SWIG_From_int(static_cast<int >(wxLC_SINGLE_SEL
)));
38449 PyDict_SetItemString(d
,"LC_SORT_ASCENDING", SWIG_From_int(static_cast<int >(wxLC_SORT_ASCENDING
)));
38452 PyDict_SetItemString(d
,"LC_SORT_DESCENDING", SWIG_From_int(static_cast<int >(wxLC_SORT_DESCENDING
)));
38455 PyDict_SetItemString(d
,"LC_MASK_TYPE", SWIG_From_int(static_cast<int >(wxLC_MASK_TYPE
)));
38458 PyDict_SetItemString(d
,"LC_MASK_ALIGN", SWIG_From_int(static_cast<int >(wxLC_MASK_ALIGN
)));
38461 PyDict_SetItemString(d
,"LC_MASK_SORT", SWIG_From_int(static_cast<int >(wxLC_MASK_SORT
)));
38464 PyDict_SetItemString(d
,"LIST_MASK_STATE", SWIG_From_int(static_cast<int >(wxLIST_MASK_STATE
)));
38467 PyDict_SetItemString(d
,"LIST_MASK_TEXT", SWIG_From_int(static_cast<int >(wxLIST_MASK_TEXT
)));
38470 PyDict_SetItemString(d
,"LIST_MASK_IMAGE", SWIG_From_int(static_cast<int >(wxLIST_MASK_IMAGE
)));
38473 PyDict_SetItemString(d
,"LIST_MASK_DATA", SWIG_From_int(static_cast<int >(wxLIST_MASK_DATA
)));
38476 PyDict_SetItemString(d
,"LIST_SET_ITEM", SWIG_From_int(static_cast<int >(wxLIST_SET_ITEM
)));
38479 PyDict_SetItemString(d
,"LIST_MASK_WIDTH", SWIG_From_int(static_cast<int >(wxLIST_MASK_WIDTH
)));
38482 PyDict_SetItemString(d
,"LIST_MASK_FORMAT", SWIG_From_int(static_cast<int >(wxLIST_MASK_FORMAT
)));
38485 PyDict_SetItemString(d
,"LIST_STATE_DONTCARE", SWIG_From_int(static_cast<int >(wxLIST_STATE_DONTCARE
)));
38488 PyDict_SetItemString(d
,"LIST_STATE_DROPHILITED", SWIG_From_int(static_cast<int >(wxLIST_STATE_DROPHILITED
)));
38491 PyDict_SetItemString(d
,"LIST_STATE_FOCUSED", SWIG_From_int(static_cast<int >(wxLIST_STATE_FOCUSED
)));
38494 PyDict_SetItemString(d
,"LIST_STATE_SELECTED", SWIG_From_int(static_cast<int >(wxLIST_STATE_SELECTED
)));
38497 PyDict_SetItemString(d
,"LIST_STATE_CUT", SWIG_From_int(static_cast<int >(wxLIST_STATE_CUT
)));
38500 PyDict_SetItemString(d
,"LIST_STATE_DISABLED", SWIG_From_int(static_cast<int >(wxLIST_STATE_DISABLED
)));
38503 PyDict_SetItemString(d
,"LIST_STATE_FILTERED", SWIG_From_int(static_cast<int >(wxLIST_STATE_FILTERED
)));
38506 PyDict_SetItemString(d
,"LIST_STATE_INUSE", SWIG_From_int(static_cast<int >(wxLIST_STATE_INUSE
)));
38509 PyDict_SetItemString(d
,"LIST_STATE_PICKED", SWIG_From_int(static_cast<int >(wxLIST_STATE_PICKED
)));
38512 PyDict_SetItemString(d
,"LIST_STATE_SOURCE", SWIG_From_int(static_cast<int >(wxLIST_STATE_SOURCE
)));
38515 PyDict_SetItemString(d
,"LIST_HITTEST_ABOVE", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_ABOVE
)));
38518 PyDict_SetItemString(d
,"LIST_HITTEST_BELOW", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_BELOW
)));
38521 PyDict_SetItemString(d
,"LIST_HITTEST_NOWHERE", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_NOWHERE
)));
38524 PyDict_SetItemString(d
,"LIST_HITTEST_ONITEMICON", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_ONITEMICON
)));
38527 PyDict_SetItemString(d
,"LIST_HITTEST_ONITEMLABEL", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_ONITEMLABEL
)));
38530 PyDict_SetItemString(d
,"LIST_HITTEST_ONITEMRIGHT", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_ONITEMRIGHT
)));
38533 PyDict_SetItemString(d
,"LIST_HITTEST_ONITEMSTATEICON", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_ONITEMSTATEICON
)));
38536 PyDict_SetItemString(d
,"LIST_HITTEST_TOLEFT", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_TOLEFT
)));
38539 PyDict_SetItemString(d
,"LIST_HITTEST_TORIGHT", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_TORIGHT
)));
38542 PyDict_SetItemString(d
,"LIST_HITTEST_ONITEM", SWIG_From_int(static_cast<int >(wxLIST_HITTEST_ONITEM
)));
38545 PyDict_SetItemString(d
,"LIST_NEXT_ABOVE", SWIG_From_int(static_cast<int >(wxLIST_NEXT_ABOVE
)));
38548 PyDict_SetItemString(d
,"LIST_NEXT_ALL", SWIG_From_int(static_cast<int >(wxLIST_NEXT_ALL
)));
38551 PyDict_SetItemString(d
,"LIST_NEXT_BELOW", SWIG_From_int(static_cast<int >(wxLIST_NEXT_BELOW
)));
38554 PyDict_SetItemString(d
,"LIST_NEXT_LEFT", SWIG_From_int(static_cast<int >(wxLIST_NEXT_LEFT
)));
38557 PyDict_SetItemString(d
,"LIST_NEXT_RIGHT", SWIG_From_int(static_cast<int >(wxLIST_NEXT_RIGHT
)));
38560 PyDict_SetItemString(d
,"LIST_ALIGN_DEFAULT", SWIG_From_int(static_cast<int >(wxLIST_ALIGN_DEFAULT
)));
38563 PyDict_SetItemString(d
,"LIST_ALIGN_LEFT", SWIG_From_int(static_cast<int >(wxLIST_ALIGN_LEFT
)));
38566 PyDict_SetItemString(d
,"LIST_ALIGN_TOP", SWIG_From_int(static_cast<int >(wxLIST_ALIGN_TOP
)));
38569 PyDict_SetItemString(d
,"LIST_ALIGN_SNAP_TO_GRID", SWIG_From_int(static_cast<int >(wxLIST_ALIGN_SNAP_TO_GRID
)));
38572 PyDict_SetItemString(d
,"LIST_FORMAT_LEFT", SWIG_From_int(static_cast<int >(wxLIST_FORMAT_LEFT
)));
38575 PyDict_SetItemString(d
,"LIST_FORMAT_RIGHT", SWIG_From_int(static_cast<int >(wxLIST_FORMAT_RIGHT
)));
38578 PyDict_SetItemString(d
,"LIST_FORMAT_CENTRE", SWIG_From_int(static_cast<int >(wxLIST_FORMAT_CENTRE
)));
38581 PyDict_SetItemString(d
,"LIST_FORMAT_CENTER", SWIG_From_int(static_cast<int >(wxLIST_FORMAT_CENTER
)));
38584 PyDict_SetItemString(d
,"LIST_AUTOSIZE", SWIG_From_int(static_cast<int >(wxLIST_AUTOSIZE
)));
38587 PyDict_SetItemString(d
,"LIST_AUTOSIZE_USEHEADER", SWIG_From_int(static_cast<int >(wxLIST_AUTOSIZE_USEHEADER
)));
38590 PyDict_SetItemString(d
,"LIST_RECT_BOUNDS", SWIG_From_int(static_cast<int >(wxLIST_RECT_BOUNDS
)));
38593 PyDict_SetItemString(d
,"LIST_RECT_ICON", SWIG_From_int(static_cast<int >(wxLIST_RECT_ICON
)));
38596 PyDict_SetItemString(d
,"LIST_RECT_LABEL", SWIG_From_int(static_cast<int >(wxLIST_RECT_LABEL
)));
38599 PyDict_SetItemString(d
,"LIST_FIND_UP", SWIG_From_int(static_cast<int >(wxLIST_FIND_UP
)));
38602 PyDict_SetItemString(d
,"LIST_FIND_DOWN", SWIG_From_int(static_cast<int >(wxLIST_FIND_DOWN
)));
38605 PyDict_SetItemString(d
,"LIST_FIND_LEFT", SWIG_From_int(static_cast<int >(wxLIST_FIND_LEFT
)));
38608 PyDict_SetItemString(d
,"LIST_FIND_RIGHT", SWIG_From_int(static_cast<int >(wxLIST_FIND_RIGHT
)));
38610 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_LIST_BEGIN_DRAG
));
38611 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_BEGIN_RDRAG", PyInt_FromLong(wxEVT_COMMAND_LIST_BEGIN_RDRAG
));
38612 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT", PyInt_FromLong(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
));
38613 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_END_LABEL_EDIT", PyInt_FromLong(wxEVT_COMMAND_LIST_END_LABEL_EDIT
));
38614 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_DELETE_ITEM", PyInt_FromLong(wxEVT_COMMAND_LIST_DELETE_ITEM
));
38615 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS", PyInt_FromLong(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
));
38616 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_ITEM_SELECTED", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_SELECTED
));
38617 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_ITEM_DESELECTED", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_DESELECTED
));
38618 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_KEY_DOWN", PyInt_FromLong(wxEVT_COMMAND_LIST_KEY_DOWN
));
38619 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_INSERT_ITEM", PyInt_FromLong(wxEVT_COMMAND_LIST_INSERT_ITEM
));
38620 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_COL_CLICK", PyInt_FromLong(wxEVT_COMMAND_LIST_COL_CLICK
));
38621 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
));
38622 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
));
38623 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_ITEM_ACTIVATED", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
));
38624 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_CACHE_HINT", PyInt_FromLong(wxEVT_COMMAND_LIST_CACHE_HINT
));
38625 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_COL_RIGHT_CLICK", PyInt_FromLong(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
));
38626 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_COL_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
));
38627 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_COL_DRAGGING", PyInt_FromLong(wxEVT_COMMAND_LIST_COL_DRAGGING
));
38628 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_COL_END_DRAG", PyInt_FromLong(wxEVT_COMMAND_LIST_COL_END_DRAG
));
38629 PyDict_SetItemString(d
, "wxEVT_COMMAND_LIST_ITEM_FOCUSED", PyInt_FromLong(wxEVT_COMMAND_LIST_ITEM_FOCUSED
));
38631 // Map renamed classes back to their common name for OOR
38632 wxPyPtrTypeMap_Add("wxListCtrl", "wxPyListCtrl");
38634 SWIG_addvarlink(SWIG_globals
,(char*)"TreeCtrlNameStr",_wrap_TreeCtrlNameStr_get
, _wrap_TreeCtrlNameStr_set
);
38636 PyDict_SetItemString(d
,"TR_NO_BUTTONS", SWIG_From_int(static_cast<int >(wxTR_NO_BUTTONS
)));
38639 PyDict_SetItemString(d
,"TR_HAS_BUTTONS", SWIG_From_int(static_cast<int >(wxTR_HAS_BUTTONS
)));
38642 PyDict_SetItemString(d
,"TR_NO_LINES", SWIG_From_int(static_cast<int >(wxTR_NO_LINES
)));
38645 PyDict_SetItemString(d
,"TR_LINES_AT_ROOT", SWIG_From_int(static_cast<int >(wxTR_LINES_AT_ROOT
)));
38648 PyDict_SetItemString(d
,"TR_SINGLE", SWIG_From_int(static_cast<int >(wxTR_SINGLE
)));
38651 PyDict_SetItemString(d
,"TR_MULTIPLE", SWIG_From_int(static_cast<int >(wxTR_MULTIPLE
)));
38654 PyDict_SetItemString(d
,"TR_EXTENDED", SWIG_From_int(static_cast<int >(wxTR_EXTENDED
)));
38657 PyDict_SetItemString(d
,"TR_HAS_VARIABLE_ROW_HEIGHT", SWIG_From_int(static_cast<int >(wxTR_HAS_VARIABLE_ROW_HEIGHT
)));
38660 PyDict_SetItemString(d
,"TR_EDIT_LABELS", SWIG_From_int(static_cast<int >(wxTR_EDIT_LABELS
)));
38663 PyDict_SetItemString(d
,"TR_HIDE_ROOT", SWIG_From_int(static_cast<int >(wxTR_HIDE_ROOT
)));
38666 PyDict_SetItemString(d
,"TR_ROW_LINES", SWIG_From_int(static_cast<int >(wxTR_ROW_LINES
)));
38669 PyDict_SetItemString(d
,"TR_FULL_ROW_HIGHLIGHT", SWIG_From_int(static_cast<int >(wxTR_FULL_ROW_HIGHLIGHT
)));
38672 PyDict_SetItemString(d
,"TR_DEFAULT_STYLE", SWIG_From_int(static_cast<int >(wxTR_DEFAULT_STYLE
)));
38675 PyDict_SetItemString(d
,"TR_TWIST_BUTTONS", SWIG_From_int(static_cast<int >(wxTR_TWIST_BUTTONS
)));
38678 PyDict_SetItemString(d
,"TR_MAC_BUTTONS", SWIG_From_int(static_cast<int >(wxTR_MAC_BUTTONS
)));
38681 PyDict_SetItemString(d
,"TR_AQUA_BUTTONS", SWIG_From_int(static_cast<int >(wxTR_AQUA_BUTTONS
)));
38684 PyDict_SetItemString(d
,"TreeItemIcon_Normal", SWIG_From_int(static_cast<int >(wxTreeItemIcon_Normal
)));
38687 PyDict_SetItemString(d
,"TreeItemIcon_Selected", SWIG_From_int(static_cast<int >(wxTreeItemIcon_Selected
)));
38690 PyDict_SetItemString(d
,"TreeItemIcon_Expanded", SWIG_From_int(static_cast<int >(wxTreeItemIcon_Expanded
)));
38693 PyDict_SetItemString(d
,"TreeItemIcon_SelectedExpanded", SWIG_From_int(static_cast<int >(wxTreeItemIcon_SelectedExpanded
)));
38696 PyDict_SetItemString(d
,"TreeItemIcon_Max", SWIG_From_int(static_cast<int >(wxTreeItemIcon_Max
)));
38699 PyDict_SetItemString(d
,"TREE_HITTEST_ABOVE", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ABOVE
)));
38702 PyDict_SetItemString(d
,"TREE_HITTEST_BELOW", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_BELOW
)));
38705 PyDict_SetItemString(d
,"TREE_HITTEST_NOWHERE", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_NOWHERE
)));
38708 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMBUTTON", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMBUTTON
)));
38711 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMICON", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMICON
)));
38714 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMINDENT", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMINDENT
)));
38717 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMLABEL", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMLABEL
)));
38720 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMRIGHT", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMRIGHT
)));
38723 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMSTATEICON", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMSTATEICON
)));
38726 PyDict_SetItemString(d
,"TREE_HITTEST_TOLEFT", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_TOLEFT
)));
38729 PyDict_SetItemString(d
,"TREE_HITTEST_TORIGHT", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_TORIGHT
)));
38732 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMUPPERPART", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMUPPERPART
)));
38735 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEMLOWERPART", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEMLOWERPART
)));
38738 PyDict_SetItemString(d
,"TREE_HITTEST_ONITEM", SWIG_From_int(static_cast<int >(wxTREE_HITTEST_ONITEM
)));
38740 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_TREE_BEGIN_DRAG
));
38741 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_BEGIN_RDRAG", PyInt_FromLong(wxEVT_COMMAND_TREE_BEGIN_RDRAG
));
38742 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT", PyInt_FromLong(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
));
38743 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_END_LABEL_EDIT", PyInt_FromLong(wxEVT_COMMAND_TREE_END_LABEL_EDIT
));
38744 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_DELETE_ITEM", PyInt_FromLong(wxEVT_COMMAND_TREE_DELETE_ITEM
));
38745 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_GET_INFO", PyInt_FromLong(wxEVT_COMMAND_TREE_GET_INFO
));
38746 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_SET_INFO", PyInt_FromLong(wxEVT_COMMAND_TREE_SET_INFO
));
38747 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_EXPANDED", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_EXPANDED
));
38748 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_EXPANDING", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_EXPANDING
));
38749 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_COLLAPSED", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
));
38750 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_COLLAPSING", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
));
38751 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_SEL_CHANGED", PyInt_FromLong(wxEVT_COMMAND_TREE_SEL_CHANGED
));
38752 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_SEL_CHANGING", PyInt_FromLong(wxEVT_COMMAND_TREE_SEL_CHANGING
));
38753 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_KEY_DOWN", PyInt_FromLong(wxEVT_COMMAND_TREE_KEY_DOWN
));
38754 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_ACTIVATED", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
));
38755 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
));
38756 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
));
38757 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_END_DRAG", PyInt_FromLong(wxEVT_COMMAND_TREE_END_DRAG
));
38758 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK", PyInt_FromLong(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
));
38759 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
));
38760 PyDict_SetItemString(d
, "wxEVT_COMMAND_TREE_ITEM_MENU", PyInt_FromLong(wxEVT_COMMAND_TREE_ITEM_MENU
));
38762 // Map renamed classes back to their common name for OOR
38763 wxPyPtrTypeMap_Add("wxTreeItemData", "wxPyTreeItemData");
38764 wxPyPtrTypeMap_Add("wxTreeCtrl", "wxPyTreeCtrl");
38766 SWIG_addvarlink(SWIG_globals
,(char*)"DirDialogDefaultFolderStr",_wrap_DirDialogDefaultFolderStr_get
, _wrap_DirDialogDefaultFolderStr_set
);
38768 PyDict_SetItemString(d
,"DIRCTRL_DIR_ONLY", SWIG_From_int(static_cast<int >(wxDIRCTRL_DIR_ONLY
)));
38771 PyDict_SetItemString(d
,"DIRCTRL_SELECT_FIRST", SWIG_From_int(static_cast<int >(wxDIRCTRL_SELECT_FIRST
)));
38774 PyDict_SetItemString(d
,"DIRCTRL_SHOW_FILTERS", SWIG_From_int(static_cast<int >(wxDIRCTRL_SHOW_FILTERS
)));
38777 PyDict_SetItemString(d
,"DIRCTRL_3D_INTERNAL", SWIG_From_int(static_cast<int >(wxDIRCTRL_3D_INTERNAL
)));
38780 PyDict_SetItemString(d
,"DIRCTRL_EDIT_LABELS", SWIG_From_int(static_cast<int >(wxDIRCTRL_EDIT_LABELS
)));
38783 PyDict_SetItemString(d
,"FRAME_EX_CONTEXTHELP", SWIG_From_int(static_cast<int >(wxFRAME_EX_CONTEXTHELP
)));
38786 PyDict_SetItemString(d
,"DIALOG_EX_CONTEXTHELP", SWIG_From_int(static_cast<int >(wxDIALOG_EX_CONTEXTHELP
)));
38788 PyDict_SetItemString(d
, "wxEVT_HELP", PyInt_FromLong(wxEVT_HELP
));
38789 PyDict_SetItemString(d
, "wxEVT_DETAILED_HELP", PyInt_FromLong(wxEVT_DETAILED_HELP
));
38791 wxPyPtrTypeMap_Add("wxDragImage", "wxGenericDragImage");
38793 SWIG_addvarlink(SWIG_globals
,(char*)"DatePickerCtrlNameStr",_wrap_DatePickerCtrlNameStr_get
, _wrap_DatePickerCtrlNameStr_set
);
38795 PyDict_SetItemString(d
,"DP_DEFAULT", SWIG_From_int(static_cast<int >(wxDP_DEFAULT
)));
38798 PyDict_SetItemString(d
,"DP_SPIN", SWIG_From_int(static_cast<int >(wxDP_SPIN
)));
38801 PyDict_SetItemString(d
,"DP_DROPDOWN", SWIG_From_int(static_cast<int >(wxDP_DROPDOWN
)));
38804 PyDict_SetItemString(d
,"DP_SHOWCENTURY", SWIG_From_int(static_cast<int >(wxDP_SHOWCENTURY
)));
38807 PyDict_SetItemString(d
,"DP_ALLOWNONE", SWIG_From_int(static_cast<int >(wxDP_ALLOWNONE
)));