1 /* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
5 * This file is not intended to be easily readable and contains a number of
6 * coding conventions designed to improve portability and efficiency. Do not make
7 * changes to this file unless you know what you are doing--modify the SWIG
8 * interface file instead.
9 * ----------------------------------------------------------------------------- */
12 #define SWIG_PYTHON_DIRECTOR_NO_VTABLE
15 template<class T
> class SwigValueWrapper
{
18 SwigValueWrapper() : tt(0) { }
19 SwigValueWrapper(const SwigValueWrapper
<T
>& rhs
) : tt(new T(*rhs
.tt
)) { }
20 SwigValueWrapper(const T
& t
) : tt(new T(t
)) { }
21 ~SwigValueWrapper() { delete tt
; }
22 SwigValueWrapper
& operator=(const T
& t
) { delete tt
; tt
= new T(t
); return *this; }
23 operator T
&() const { return *tt
; }
24 T
*operator&() { return tt
; }
26 SwigValueWrapper
& operator=(const SwigValueWrapper
<T
>& rhs
);
30 /* -----------------------------------------------------------------------------
31 * This section contains generic SWIG labels for method/variable
32 * declarations/attributes, and other compiler dependent labels.
33 * ----------------------------------------------------------------------------- */
35 /* template workaround for compilers that cannot correctly implement the C++ standard */
36 #ifndef SWIGTEMPLATEDISAMBIGUATOR
37 # if defined(__SUNPRO_CC)
38 # if (__SUNPRO_CC <= 0x560)
39 # define SWIGTEMPLATEDISAMBIGUATOR template
41 # define SWIGTEMPLATEDISAMBIGUATOR
44 # define SWIGTEMPLATEDISAMBIGUATOR
48 /* inline attribute */
50 # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
51 # define SWIGINLINE inline
57 /* attribute recognised by some compilers to avoid 'unused' warnings */
59 # if defined(__GNUC__)
60 # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
61 # define SWIGUNUSED __attribute__ ((__unused__))
66 # define SWIGUNUSED __attribute__ ((__unused__))
72 #ifndef SWIGUNUSEDPARM
74 # define SWIGUNUSEDPARM(p)
76 # define SWIGUNUSEDPARM(p) p SWIGUNUSED
80 /* internal SWIG method */
82 # define SWIGINTERN static SWIGUNUSED
85 /* internal inline SWIG method */
86 #ifndef SWIGINTERNINLINE
87 # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
90 /* exporting methods */
91 #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
92 # ifndef GCC_HASCLASSVISIBILITY
93 # define GCC_HASCLASSVISIBILITY
98 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
99 # if defined(STATIC_LINKED)
102 # define SWIGEXPORT __declspec(dllexport)
105 # if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
106 # define SWIGEXPORT __attribute__ ((visibility("default")))
113 /* calling conventions for Windows */
115 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
116 # define SWIGSTDCALL __stdcall
122 /* Deal with Microsoft's attempt at deprecating C standard runtime functions */
123 #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER)
124 # define _CRT_SECURE_NO_DEPRECATE
128 /* Python.h has to appear first */
131 /* -----------------------------------------------------------------------------
134 * This file contains generic CAPI SWIG runtime support for pointer
136 * ----------------------------------------------------------------------------- */
138 /* This should only be incremented when either the layout of swig_type_info changes,
139 or for whatever reason, the runtime changes incompatibly */
140 #define SWIG_RUNTIME_VERSION "2"
142 /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
143 #ifdef SWIG_TYPE_TABLE
144 # define SWIG_QUOTE_STRING(x) #x
145 # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
146 # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
148 # define SWIG_TYPE_TABLE_NAME
152 You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
153 creating a static or dynamic library from the swig runtime code.
154 In 99.9% of the cases, swig just needs to declare them as 'static'.
156 But only do this if is strictly necessary, ie, if you have problems
157 with your compiler or so.
161 # define SWIGRUNTIME SWIGINTERN
164 #ifndef SWIGRUNTIMEINLINE
165 # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
168 /* Generic buffer size */
169 #ifndef SWIG_BUFFER_SIZE
170 # define SWIG_BUFFER_SIZE 1024
173 /* Flags for pointer conversions */
174 #define SWIG_POINTER_DISOWN 0x1
176 /* Flags for new pointer objects */
177 #define SWIG_POINTER_OWN 0x1
181 Flags/methods for returning states.
183 The swig conversion methods, as ConvertPtr, return and integer
184 that tells if the conversion was successful or not. And if not,
185 an error code can be returned (see swigerrors.swg for the codes).
187 Use the following macros/flags to set or process the returning
190 In old swig versions, you usually write code as:
192 if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
198 Now you can be more explicit as:
200 int res = SWIG_ConvertPtr(obj,vptr,ty.flags);
201 if (SWIG_IsOK(res)) {
207 that seems to be the same, but now you can also do
210 int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags);
211 if (SWIG_IsOK(res)) {
213 if (SWIG_IsNewObj(res) {
223 I.e., now SWIG_ConvertPtr can return new objects and you can
224 identify the case and take care of the deallocation. Of course that
225 requires also to SWIG_ConvertPtr to return new result values, as
227 int SWIG_ConvertPtr(obj, ptr,...) {
229 if (<need new object>) {
230 *ptr = <ptr to new allocated object>;
233 *ptr = <ptr to old object>;
241 Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
242 more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the
245 Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
246 allows to return the 'cast rank', for example, if you have this
253 food(1) // cast rank '1' (1 -> 1.0)
254 fooi(1) // cast rank '0'
256 just use the SWIG_AddCast()/SWIG_CheckState()
261 #define SWIG_ERROR (-1)
262 #define SWIG_IsOK(r) (r >= 0)
263 #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
265 /* The CastRankLimit says how many bits are used for the cast rank */
266 #define SWIG_CASTRANKLIMIT (1 << 8)
267 /* The NewMask denotes the object was created (using new/malloc) */
268 #define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
269 /* The TmpMask is for in/out typemaps that use temporal objects */
270 #define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
271 /* Simple returning values */
272 #define SWIG_BADOBJ (SWIG_ERROR)
273 #define SWIG_OLDOBJ (SWIG_OK)
274 #define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
275 #define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
276 /* Check, add and del mask methods */
277 #define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
278 #define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
279 #define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
280 #define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
281 #define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
282 #define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
286 #if defined(SWIG_CASTRANK_MODE)
287 # ifndef SWIG_TypeRank
288 # define SWIG_TypeRank unsigned long
290 # ifndef SWIG_MAXCASTRANK /* Default cast allowed */
291 # define SWIG_MAXCASTRANK (2)
293 # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
294 # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
295 SWIGINTERNINLINE
int SWIG_AddCast(int r
) {
296 return SWIG_IsOK(r
) ? ((SWIG_CastRank(r
) < SWIG_MAXCASTRANK
) ? (r
+ 1) : SWIG_ERROR
) : r
;
298 SWIGINTERNINLINE
int SWIG_CheckState(int r
) {
299 return SWIG_IsOK(r
) ? SWIG_CastRank(r
) + 1 : 0;
301 #else /* no cast-rank mode */
302 # define SWIG_AddCast
303 # define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
315 typedef void *(*swig_converter_func
)(void *);
316 typedef struct swig_type_info
*(*swig_dycast_func
)(void **);
318 /* Structure to store inforomation on one type */
319 typedef struct swig_type_info
{
320 const char *name
; /* mangled name of this type */
321 const char *str
; /* human readable name of this type */
322 swig_dycast_func dcast
; /* dynamic cast function down a hierarchy */
323 struct swig_cast_info
*cast
; /* linked list of types that can cast into this type */
324 void *clientdata
; /* language specific type data */
325 int owndata
; /* flag if the structure owns the clientdata */
328 /* Structure to store a type and conversion function used for casting */
329 typedef struct swig_cast_info
{
330 swig_type_info
*type
; /* pointer to type that is equivalent to this type */
331 swig_converter_func converter
; /* function to cast the void pointers */
332 struct swig_cast_info
*next
; /* pointer to next cast in linked list */
333 struct swig_cast_info
*prev
; /* pointer to the previous cast */
336 /* Structure used to store module information
337 * Each module generates one structure like this, and the runtime collects
338 * all of these structures and stores them in a circularly linked list.*/
339 typedef struct swig_module_info
{
340 swig_type_info
**types
; /* Array of pointers to swig_type_info structures that are in this module */
341 size_t size
; /* Number of types in this module */
342 struct swig_module_info
*next
; /* Pointer to next element in circularly linked list */
343 swig_type_info
**type_initial
; /* Array of initially generated type structures */
344 swig_cast_info
**cast_initial
; /* Array of initially generated casting structures */
345 void *clientdata
; /* Language specific module data */
349 Compare two type names skipping the space characters, therefore
350 "char*" == "char *" and "Class<int>" == "Class<int >", etc.
352 Return 0 when the two name types are equivalent, as in
353 strncmp, but skipping ' '.
356 SWIG_TypeNameComp(const char *f1
, const char *l1
,
357 const char *f2
, const char *l2
) {
358 for (;(f1
!= l1
) && (f2
!= l2
); ++f1
, ++f2
) {
359 while ((*f1
== ' ') && (f1
!= l1
)) ++f1
;
360 while ((*f2
== ' ') && (f2
!= l2
)) ++f2
;
361 if (*f1
!= *f2
) return (*f1
> *f2
) ? 1 : -1;
363 return (l1
- f1
) - (l2
- f2
);
367 Check type equivalence in a name list like <name1>|<name2>|...
368 Return 0 if not equal, 1 if equal
371 SWIG_TypeEquiv(const char *nb
, const char *tb
) {
373 const char* te
= tb
+ strlen(tb
);
375 while (!equiv
&& *ne
) {
376 for (nb
= ne
; *ne
; ++ne
) {
377 if (*ne
== '|') break;
379 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
386 Check type equivalence in a name list like <name1>|<name2>|...
387 Return 0 if equal, -1 if nb < tb, 1 if nb > tb
390 SWIG_TypeCompare(const char *nb
, const char *tb
) {
392 const char* te
= tb
+ strlen(tb
);
394 while (!equiv
&& *ne
) {
395 for (nb
= ne
; *ne
; ++ne
) {
396 if (*ne
== '|') break;
398 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
405 /* think of this as a c++ template<> or a scheme macro */
406 #define SWIG_TypeCheck_Template(comparison, ty) \
408 swig_cast_info *iter = ty->cast; \
411 if (iter == ty->cast) return iter; \
412 /* Move iter to the top of the linked list */ \
413 iter->prev->next = iter->next; \
415 iter->next->prev = iter->prev; \
416 iter->next = ty->cast; \
418 if (ty->cast) ty->cast->prev = iter; \
430 SWIGRUNTIME swig_cast_info
*
431 SWIG_TypeCheck(const char *c
, swig_type_info
*ty
) {
432 SWIG_TypeCheck_Template(strcmp(iter
->type
->name
, c
) == 0, ty
);
435 /* Same as previous function, except strcmp is replaced with a pointer comparison */
436 SWIGRUNTIME swig_cast_info
*
437 SWIG_TypeCheckStruct(swig_type_info
*from
, swig_type_info
*into
) {
438 SWIG_TypeCheck_Template(iter
->type
== from
, into
);
442 Cast a pointer up an inheritance hierarchy
444 SWIGRUNTIMEINLINE
void *
445 SWIG_TypeCast(swig_cast_info
*ty
, void *ptr
) {
446 return ((!ty
) || (!ty
->converter
)) ? ptr
: (*ty
->converter
)(ptr
);
450 Dynamic pointer casting. Down an inheritance hierarchy
452 SWIGRUNTIME swig_type_info
*
453 SWIG_TypeDynamicCast(swig_type_info
*ty
, void **ptr
) {
454 swig_type_info
*lastty
= ty
;
455 if (!ty
|| !ty
->dcast
) return ty
;
456 while (ty
&& (ty
->dcast
)) {
457 ty
= (*ty
->dcast
)(ptr
);
464 Return the name associated with this type
466 SWIGRUNTIMEINLINE
const char *
467 SWIG_TypeName(const swig_type_info
*ty
) {
472 Return the pretty name associated with this type,
473 that is an unmangled type name in a form presentable to the user.
475 SWIGRUNTIME
const char *
476 SWIG_TypePrettyName(const swig_type_info
*type
) {
477 /* The "str" field contains the equivalent pretty names of the
478 type, separated by vertical-bar characters. We choose
479 to print the last name, as it is often (?) the most
481 if (!type
) return NULL
;
482 if (type
->str
!= NULL
) {
483 const char *last_name
= type
->str
;
485 for (s
= type
->str
; *s
; s
++)
486 if (*s
== '|') last_name
= s
+1;
494 Set the clientdata field for a type
497 SWIG_TypeClientData(swig_type_info
*ti
, void *clientdata
) {
498 swig_cast_info
*cast
= ti
->cast
;
499 /* if (ti->clientdata == clientdata) return; */
500 ti
->clientdata
= clientdata
;
503 if (!cast
->converter
) {
504 swig_type_info
*tc
= cast
->type
;
505 if (!tc
->clientdata
) {
506 SWIG_TypeClientData(tc
, clientdata
);
513 SWIG_TypeNewClientData(swig_type_info
*ti
, void *clientdata
) {
514 SWIG_TypeClientData(ti
, clientdata
);
519 Search for a swig_type_info structure only by mangled name
520 Search is a O(log #types)
522 We start searching at module start, and finish searching when start == end.
523 Note: if start == end at the beginning of the function, we go all the way around
526 SWIGRUNTIME swig_type_info
*
527 SWIG_MangledTypeQueryModule(swig_module_info
*start
,
528 swig_module_info
*end
,
530 swig_module_info
*iter
= start
;
533 register size_t l
= 0;
534 register size_t r
= iter
->size
- 1;
536 /* since l+r >= 0, we can (>> 1) instead (/ 2) */
537 register size_t i
= (l
+ r
) >> 1;
538 const char *iname
= iter
->types
[i
]->name
;
540 register int compare
= strcmp(name
, iname
);
542 return iter
->types
[i
];
543 } else if (compare
< 0) {
549 } else if (compare
> 0) {
553 break; /* should never happen */
558 } while (iter
!= end
);
563 Search for a swig_type_info structure for either a mangled name or a human readable name.
564 It first searches the mangled names of the types, which is a O(log #types)
565 If a type is not found it then searches the human readable names, which is O(#types).
567 We start searching at module start, and finish searching when start == end.
568 Note: if start == end at the beginning of the function, we go all the way around
571 SWIGRUNTIME swig_type_info
*
572 SWIG_TypeQueryModule(swig_module_info
*start
,
573 swig_module_info
*end
,
575 /* STEP 1: Search the name field using binary search */
576 swig_type_info
*ret
= SWIG_MangledTypeQueryModule(start
, end
, name
);
580 /* STEP 2: If the type hasn't been found, do a complete search
581 of the str field (the human readable name) */
582 swig_module_info
*iter
= start
;
584 register size_t i
= 0;
585 for (; i
< iter
->size
; ++i
) {
586 if (iter
->types
[i
]->str
&& (SWIG_TypeEquiv(iter
->types
[i
]->str
, name
)))
587 return iter
->types
[i
];
590 } while (iter
!= end
);
593 /* neither found a match */
598 Pack binary data into a string
601 SWIG_PackData(char *c
, void *ptr
, size_t sz
) {
602 static const char hex
[17] = "0123456789abcdef";
603 register const unsigned char *u
= (unsigned char *) ptr
;
604 register const unsigned char *eu
= u
+ sz
;
605 for (; u
!= eu
; ++u
) {
606 register unsigned char uu
= *u
;
607 *(c
++) = hex
[(uu
& 0xf0) >> 4];
608 *(c
++) = hex
[uu
& 0xf];
614 Unpack binary data from a string
616 SWIGRUNTIME
const char *
617 SWIG_UnpackData(const char *c
, void *ptr
, size_t sz
) {
618 register unsigned char *u
= (unsigned char *) ptr
;
619 register const unsigned char *eu
= u
+ sz
;
620 for (; u
!= eu
; ++u
) {
621 register char d
= *(c
++);
622 register unsigned char uu
;
623 if ((d
>= '0') && (d
<= '9'))
624 uu
= ((d
- '0') << 4);
625 else if ((d
>= 'a') && (d
<= 'f'))
626 uu
= ((d
- ('a'-10)) << 4);
630 if ((d
>= '0') && (d
<= '9'))
632 else if ((d
>= 'a') && (d
<= 'f'))
633 uu
|= (d
- ('a'-10));
642 Pack 'void *' into a string buffer.
645 SWIG_PackVoidPtr(char *buff
, void *ptr
, const char *name
, size_t bsz
) {
647 if ((2*sizeof(void *) + 2) > bsz
) return 0;
649 r
= SWIG_PackData(r
,&ptr
,sizeof(void *));
650 if (strlen(name
) + 1 > (bsz
- (r
- buff
))) return 0;
655 SWIGRUNTIME
const char *
656 SWIG_UnpackVoidPtr(const char *c
, void **ptr
, const char *name
) {
658 if (strcmp(c
,"NULL") == 0) {
665 return SWIG_UnpackData(++c
,ptr
,sizeof(void *));
669 SWIG_PackDataName(char *buff
, void *ptr
, size_t sz
, const char *name
, size_t bsz
) {
671 size_t lname
= (name
? strlen(name
) : 0);
672 if ((2*sz
+ 2 + lname
) > bsz
) return 0;
674 r
= SWIG_PackData(r
,ptr
,sz
);
676 strncpy(r
,name
,lname
+1);
683 SWIGRUNTIME
const char *
684 SWIG_UnpackDataName(const char *c
, void *ptr
, size_t sz
, const char *name
) {
686 if (strcmp(c
,"NULL") == 0) {
693 return SWIG_UnpackData(++c
,ptr
,sz
);
701 #define SWIG_UnknownError -1
702 #define SWIG_IOError -2
703 #define SWIG_RuntimeError -3
704 #define SWIG_IndexError -4
705 #define SWIG_TypeError -5
706 #define SWIG_DivisionByZero -6
707 #define SWIG_OverflowError -7
708 #define SWIG_SyntaxError -8
709 #define SWIG_ValueError -9
710 #define SWIG_SystemError -10
711 #define SWIG_AttributeError -11
712 #define SWIG_MemoryError -12
713 #define SWIG_NullReferenceError -13
717 /* Python.h has to appear first */
720 /* Add PyOS_snprintf for old Pythons */
721 #if PY_VERSION_HEX < 0x02020000
722 # if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM)
723 # define PyOS_snprintf _snprintf
725 # define PyOS_snprintf snprintf
729 /* A crude PyString_FromFormat implementation for old Pythons */
730 #if PY_VERSION_HEX < 0x02020000
732 #ifndef SWIG_PYBUFFER_SIZE
733 # define SWIG_PYBUFFER_SIZE 1024
737 PyString_FromFormat(const char *fmt
, ...) {
739 char buf
[SWIG_PYBUFFER_SIZE
* 2];
742 res
= vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
744 return (res
< 0 || res
>= (int)sizeof(buf
)) ? 0 : PyString_FromString(buf
);
748 /* Add PyObject_Del for old Pythons */
749 #if PY_VERSION_HEX < 0x01060000
750 # define PyObject_Del(op) PyMem_DEL((op))
753 # define PyObject_DEL PyObject_Del
756 /* A crude PyExc_StopIteration exception for old Pythons */
757 #if PY_VERSION_HEX < 0x02020000
758 # ifndef PyExc_StopIteration
759 # define PyExc_StopIteration PyExc_RuntimeError
761 # ifndef PyObject_GenericGetAttr
762 # define PyObject_GenericGetAttr 0
765 /* Py_NotImplemented is defined in 2.1 and up. */
766 #if PY_VERSION_HEX < 0x02010000
767 # ifndef Py_NotImplemented
768 # define Py_NotImplemented PyExc_RuntimeError
773 /* A crude PyString_AsStringAndSize implementation for old Pythons */
774 #if PY_VERSION_HEX < 0x02010000
775 # ifndef PyString_AsStringAndSize
776 # define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;}
780 /* PySequence_Size for old Pythons */
781 #if PY_VERSION_HEX < 0x02000000
782 # ifndef PySequence_Size
783 # define PySequence_Size PySequence_Length
788 /* PyBool_FromLong for old Pythons */
789 #if PY_VERSION_HEX < 0x02030000
791 PyObject
*PyBool_FromLong(long ok
)
793 PyObject
*result
= ok
? Py_True
: Py_False
;
800 /* -----------------------------------------------------------------------------
802 * ----------------------------------------------------------------------------- */
804 SWIGRUNTIME PyObject
*
805 SWIG_Python_ErrorType(int code
) {
808 case SWIG_MemoryError
:
809 type
= PyExc_MemoryError
;
812 type
= PyExc_IOError
;
814 case SWIG_RuntimeError
:
815 type
= PyExc_RuntimeError
;
817 case SWIG_IndexError
:
818 type
= PyExc_IndexError
;
821 type
= PyExc_TypeError
;
823 case SWIG_DivisionByZero
:
824 type
= PyExc_ZeroDivisionError
;
826 case SWIG_OverflowError
:
827 type
= PyExc_OverflowError
;
829 case SWIG_SyntaxError
:
830 type
= PyExc_SyntaxError
;
832 case SWIG_ValueError
:
833 type
= PyExc_ValueError
;
835 case SWIG_SystemError
:
836 type
= PyExc_SystemError
;
838 case SWIG_AttributeError
:
839 type
= PyExc_AttributeError
;
842 type
= PyExc_RuntimeError
;
849 SWIG_Python_AddErrorMsg(const char* mesg
)
853 PyObject
*traceback
= 0;
855 if (PyErr_Occurred()) PyErr_Fetch(&type
, &value
, &traceback
);
857 PyObject
*old_str
= PyObject_Str(value
);
860 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
864 PyErr_Format(PyExc_RuntimeError
, mesg
);
870 #if defined(SWIG_PYTHON_NO_THREADS)
871 # if defined(SWIG_PYTHON_THREADS)
872 # undef SWIG_PYTHON_THREADS
875 #if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */
876 # if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
877 # if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */
878 # define SWIG_PYTHON_USE_GIL
881 # if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */
882 # ifndef SWIG_PYTHON_INITIALIZE_THREADS
883 # define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
885 # ifdef __cplusplus /* C++ code */
886 class SWIG_Python_Thread_Block
{
888 PyGILState_STATE state
;
890 void end() { if (status
) { PyGILState_Release(state
); status
= false;} }
891 SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
892 ~SWIG_Python_Thread_Block() { end(); }
894 class SWIG_Python_Thread_Allow
{
898 void end() { if (status
) { PyEval_RestoreThread(save
); status
= false; }}
899 SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
900 ~SWIG_Python_Thread_Allow() { end(); }
902 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
903 # define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
904 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
905 # define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
907 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
908 # define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
909 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
910 # define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
912 # else /* Old thread way, not implemented, user must provide it */
913 # if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
914 # define SWIG_PYTHON_INITIALIZE_THREADS
916 # if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
917 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
919 # if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
920 # define SWIG_PYTHON_THREAD_END_BLOCK
922 # if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
923 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
925 # if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
926 # define SWIG_PYTHON_THREAD_END_ALLOW
929 #else /* No thread support */
930 # define SWIG_PYTHON_INITIALIZE_THREADS
931 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
932 # define SWIG_PYTHON_THREAD_END_BLOCK
933 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
934 # define SWIG_PYTHON_THREAD_END_ALLOW
937 /* -----------------------------------------------------------------------------
938 * Python API portion that goes into the runtime
939 * ----------------------------------------------------------------------------- */
948 /* -----------------------------------------------------------------------------
949 * Constant declarations
950 * ----------------------------------------------------------------------------- */
953 #define SWIG_PY_POINTER 4
954 #define SWIG_PY_BINARY 5
956 /* Constant information structure */
957 typedef struct swig_const_info
{
963 swig_type_info
**ptype
;
974 /* -----------------------------------------------------------------------------
975 * See the LICENSE file for information on copyright, usage and redistribution
976 * of SWIG, and the README file for authors - http://www.swig.org/release.html.
980 * This file contains the runtime support for Python modules
981 * and includes code for managing global variables and pointer
984 * ----------------------------------------------------------------------------- */
986 /* Common SWIG API */
988 #if PY_VERSION_HEX < 0x02050000
989 typedef int Py_ssize_t
;
992 /* for raw pointers */
993 #define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
994 #define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
995 #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
996 #define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags)
997 #define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
998 #define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
999 #define swig_owntype int
1001 /* for raw packed data */
1002 #define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1003 #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1005 /* for class or struct pointers */
1006 #define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
1007 #define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
1009 /* for C or C++ function pointers */
1010 #define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
1011 #define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0)
1013 /* for C++ member pointers, ie, member methods */
1014 #define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1015 #define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1020 #define SWIG_GetModule(clientdata) SWIG_Python_GetModule()
1021 #define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
1022 #define SWIG_NewClientData(obj) PySwigClientData_New(obj)
1024 #define SWIG_SetErrorObj SWIG_Python_SetErrorObj
1025 #define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
1026 #define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
1027 #define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
1028 #define SWIG_fail goto fail
1031 /* Runtime API implementation */
1033 /* Error manipulation */
1036 SWIG_Python_SetErrorObj(PyObject
*errtype
, PyObject
*obj
) {
1037 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1038 PyErr_SetObject(errtype
, obj
);
1040 SWIG_PYTHON_THREAD_END_BLOCK
;
1044 SWIG_Python_SetErrorMsg(PyObject
*errtype
, const char *msg
) {
1045 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1046 PyErr_SetString(errtype
, (char *) msg
);
1047 SWIG_PYTHON_THREAD_END_BLOCK
;
1050 #define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
1052 /* Set a constant value */
1055 SWIG_Python_SetConstant(PyObject
*d
, const char *name
, PyObject
*obj
) {
1056 PyDict_SetItemString(d
, (char*) name
, obj
);
1060 /* Append a value to the result obj */
1062 SWIGINTERN PyObject
*
1063 SWIG_Python_AppendOutput(PyObject
* result
, PyObject
* obj
) {
1064 #if !defined(SWIG_PYTHON_OUTPUT_TUPLE)
1067 } else if (result
== Py_None
) {
1071 if (!PyList_Check(result
)) {
1072 PyObject
*o2
= result
;
1073 result
= PyList_New(1);
1074 PyList_SetItem(result
, 0, o2
);
1076 PyList_Append(result
,obj
);
1085 } else if (result
== Py_None
) {
1089 if (!PyTuple_Check(result
)) {
1091 result
= PyTuple_New(1);
1092 PyTuple_SET_ITEM(result
, 0, o2
);
1094 o3
= PyTuple_New(1);
1095 PyTuple_SET_ITEM(o3
, 0, obj
);
1097 result
= PySequence_Concat(o2
, o3
);
1105 /* Unpack the argument tuple */
1108 SWIG_Python_UnpackTuple(PyObject
*args
, const char *name
, int min
, int max
, PyObject
**objs
)
1114 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got none",
1115 name
, (min
== max
? "" : "at least "), min
);
1119 if (!PyTuple_Check(args
)) {
1120 PyErr_SetString(PyExc_SystemError
, "UnpackTuple() argument list is not a tuple");
1123 register int l
= PyTuple_GET_SIZE(args
);
1125 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1126 name
, (min
== max
? "" : "at least "), min
, l
);
1128 } else if (l
> max
) {
1129 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1130 name
, (min
== max
? "" : "at most "), max
, l
);
1134 for (i
= 0; i
< l
; ++i
) {
1135 objs
[i
] = PyTuple_GET_ITEM(args
, i
);
1137 for (; l
< max
; ++l
) {
1145 /* A functor is a function object with one single object argument */
1146 #if PY_VERSION_HEX >= 0x02020000
1147 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
1149 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj);
1153 Helper for static pointer initialization for both C and C++ code, for example
1154 static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...);
1157 #define SWIG_STATIC_POINTER(var) var
1159 #define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
1162 /* -----------------------------------------------------------------------------
1163 * Pointer declarations
1164 * ----------------------------------------------------------------------------- */
1166 /* Flags for new pointer objects */
1167 #define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
1168 #define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
1170 #define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
1179 /* How to access Py_None */
1180 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
1181 # ifndef SWIG_PYTHON_NO_BUILD_NONE
1182 # ifndef SWIG_PYTHON_BUILD_NONE
1183 # define SWIG_PYTHON_BUILD_NONE
1188 #ifdef SWIG_PYTHON_BUILD_NONE
1191 # define Py_None SWIG_Py_None()
1193 SWIGRUNTIMEINLINE PyObject
*
1196 PyObject
*none
= Py_BuildValue("");
1200 SWIGRUNTIME PyObject
*
1203 static PyObject
*SWIG_STATIC_POINTER(none
) = _SWIG_Py_None();
1208 /* The python void return value */
1210 SWIGRUNTIMEINLINE PyObject
*
1213 PyObject
*none
= Py_None
;
1218 /* PySwigClientData */
1229 SWIGRUNTIMEINLINE
int
1230 SWIG_Python_CheckImplicit(swig_type_info
*ty
)
1232 PySwigClientData
*data
= (PySwigClientData
*)ty
->clientdata
;
1233 return data
? data
->implicitconv
: 0;
1236 SWIGRUNTIMEINLINE PyObject
*
1237 SWIG_Python_ExceptionType(swig_type_info
*desc
) {
1238 PySwigClientData
*data
= desc
? (PySwigClientData
*) desc
->clientdata
: 0;
1239 PyObject
*klass
= data
? data
->klass
: 0;
1240 return (klass
? klass
: PyExc_RuntimeError
);
1244 SWIGRUNTIME PySwigClientData
*
1245 PySwigClientData_New(PyObject
* obj
)
1250 PySwigClientData
*data
= (PySwigClientData
*)malloc(sizeof(PySwigClientData
));
1251 /* the klass element */
1253 Py_INCREF(data
->klass
);
1254 /* the newraw method and newargs arguments used to create a new raw instance */
1255 if (PyClass_Check(obj
)) {
1257 data
->newargs
= obj
;
1260 #if (PY_VERSION_HEX < 0x02020000)
1263 data
->newraw
= PyObject_GetAttrString(data
->klass
, (char *)"__new__");
1266 Py_INCREF(data
->newraw
);
1267 data
->newargs
= PyTuple_New(1);
1268 PyTuple_SetItem(data
->newargs
, 0, obj
);
1270 data
->newargs
= obj
;
1272 Py_INCREF(data
->newargs
);
1274 /* the destroy method, aka as the C++ delete method */
1275 data
->destroy
= PyObject_GetAttrString(data
->klass
, (char *)"__swig_destroy__");
1276 if (PyErr_Occurred()) {
1280 if (data
->destroy
) {
1282 Py_INCREF(data
->destroy
);
1283 flags
= PyCFunction_GET_FLAGS(data
->destroy
);
1285 data
->delargs
= !(flags
& (METH_O
));
1292 data
->implicitconv
= 0;
1298 PySwigClientData_Del(PySwigClientData
* data
)
1300 Py_XDECREF(data
->newraw
);
1301 Py_XDECREF(data
->newargs
);
1302 Py_XDECREF(data
->destroy
);
1305 /* =============== PySwigObject =====================*/
1315 SWIGRUNTIME PyObject
*
1316 PySwigObject_long(PySwigObject
*v
)
1318 return PyLong_FromVoidPtr(v
->ptr
);
1321 SWIGRUNTIME PyObject
*
1322 PySwigObject_format(const char* fmt
, PySwigObject
*v
)
1324 PyObject
*res
= NULL
;
1325 PyObject
*args
= PyTuple_New(1);
1327 if (PyTuple_SetItem(args
, 0, PySwigObject_long(v
)) == 0) {
1328 PyObject
*ofmt
= PyString_FromString(fmt
);
1330 res
= PyString_Format(ofmt
,args
);
1339 SWIGRUNTIME PyObject
*
1340 PySwigObject_oct(PySwigObject
*v
)
1342 return PySwigObject_format("%o",v
);
1345 SWIGRUNTIME PyObject
*
1346 PySwigObject_hex(PySwigObject
*v
)
1348 return PySwigObject_format("%x",v
);
1351 SWIGRUNTIME PyObject
*
1353 PySwigObject_repr(PySwigObject
*v
)
1355 PySwigObject_repr(PySwigObject
*v
, PyObject
*args
)
1358 const char *name
= SWIG_TypePrettyName(v
->ty
);
1359 PyObject
*hex
= PySwigObject_hex(v
);
1360 PyObject
*repr
= PyString_FromFormat("<Swig Object of type '%s' at 0x%s>", name
, PyString_AsString(hex
));
1364 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
);
1366 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
, args
);
1368 PyString_ConcatAndDel(&repr
,nrep
);
1374 PySwigObject_print(PySwigObject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1377 PyObject
*repr
= PySwigObject_repr(v
);
1379 PyObject
*repr
= PySwigObject_repr(v
, NULL
);
1382 fputs(PyString_AsString(repr
), fp
);
1390 SWIGRUNTIME PyObject
*
1391 PySwigObject_str(PySwigObject
*v
)
1393 char result
[SWIG_BUFFER_SIZE
];
1394 return SWIG_PackVoidPtr(result
, v
->ptr
, v
->ty
->name
, sizeof(result
)) ?
1395 PyString_FromString(result
) : 0;
1399 PySwigObject_compare(PySwigObject
*v
, PySwigObject
*w
)
1403 return (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1406 SWIGRUNTIME PyTypeObject
* _PySwigObject_type(void);
1408 SWIGRUNTIME PyTypeObject
*
1409 PySwigObject_type(void) {
1410 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigObject_type();
1414 SWIGRUNTIMEINLINE
int
1415 PySwigObject_Check(PyObject
*op
) {
1416 return ((op
)->ob_type
== PySwigObject_type())
1417 || (strcmp((op
)->ob_type
->tp_name
,"PySwigObject") == 0);
1420 SWIGRUNTIME PyObject
*
1421 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
);
1424 PySwigObject_dealloc(PyObject
*v
)
1426 PySwigObject
*sobj
= (PySwigObject
*) v
;
1427 PyObject
*next
= sobj
->next
;
1429 swig_type_info
*ty
= sobj
->ty
;
1430 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
1431 PyObject
*destroy
= data
? data
->destroy
: 0;
1433 /* destroy is always a VARARGS method */
1435 if (data
->delargs
) {
1436 /* we need to create a temporal object to carry the destroy operation */
1437 PyObject
*tmp
= PySwigObject_New(sobj
->ptr
, ty
, 0);
1438 res
= SWIG_Python_CallFunctor(destroy
, tmp
);
1441 PyCFunction meth
= PyCFunction_GET_FUNCTION(destroy
);
1442 PyObject
*mself
= PyCFunction_GET_SELF(destroy
);
1443 res
= ((*meth
)(mself
, v
));
1447 const char *name
= SWIG_TypePrettyName(ty
);
1448 #if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
1449 printf("swig/python detected a memory leak of type '%s', no destructor found.\n", name
);
1457 SWIGRUNTIME PyObject
*
1458 PySwigObject_append(PyObject
* v
, PyObject
* next
)
1460 PySwigObject
*sobj
= (PySwigObject
*) v
;
1463 if (!PyArg_ParseTuple(next
,(char *)"O:append", &tmp
)) return NULL
;
1466 if (!PySwigObject_Check(next
)) {
1471 return SWIG_Py_Void();
1474 SWIGRUNTIME PyObject
*
1476 PySwigObject_next(PyObject
* v
)
1478 PySwigObject_next(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1481 PySwigObject
*sobj
= (PySwigObject
*) v
;
1483 Py_INCREF(sobj
->next
);
1486 return SWIG_Py_Void();
1490 SWIGINTERN PyObject
*
1492 PySwigObject_disown(PyObject
*v
)
1494 PySwigObject_disown(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1497 PySwigObject
*sobj
= (PySwigObject
*)v
;
1499 return SWIG_Py_Void();
1502 SWIGINTERN PyObject
*
1504 PySwigObject_acquire(PyObject
*v
)
1506 PySwigObject_acquire(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1509 PySwigObject
*sobj
= (PySwigObject
*)v
;
1510 sobj
->own
= SWIG_POINTER_OWN
;
1511 return SWIG_Py_Void();
1514 SWIGINTERN PyObject
*
1515 PySwigObject_own(PyObject
*v
, PyObject
*args
)
1518 #if (PY_VERSION_HEX < 0x02020000)
1519 if (!PyArg_ParseTuple(args
,(char *)"|O:own",&val
))
1521 if (!PyArg_UnpackTuple(args
, (char *)"own", 0, 1, &val
))
1528 PySwigObject
*sobj
= (PySwigObject
*)v
;
1529 PyObject
*obj
= PyBool_FromLong(sobj
->own
);
1532 if (PyObject_IsTrue(val
)) {
1533 PySwigObject_acquire(v
);
1535 PySwigObject_disown(v
);
1538 if (PyObject_IsTrue(val
)) {
1539 PySwigObject_acquire(v
,args
);
1541 PySwigObject_disown(v
,args
);
1551 swigobject_methods
[] = {
1552 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_NOARGS
, (char *)"releases ownership of the pointer"},
1553 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_NOARGS
, (char *)"aquires ownership of the pointer"},
1554 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1555 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_O
, (char *)"appends another 'this' object"},
1556 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_NOARGS
, (char *)"returns the next 'this' object"},
1557 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_NOARGS
, (char *)"returns object representation"},
1562 swigobject_methods
[] = {
1563 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_VARARGS
, (char *)"releases ownership of the pointer"},
1564 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_VARARGS
, (char *)"aquires ownership of the pointer"},
1565 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1566 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_VARARGS
, (char *)"appends another 'this' object"},
1567 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_VARARGS
, (char *)"returns the next 'this' object"},
1568 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_VARARGS
, (char *)"returns object representation"},
1573 #if PY_VERSION_HEX < 0x02020000
1574 SWIGINTERN PyObject
*
1575 PySwigObject_getattr(PySwigObject
*sobj
,char *name
)
1577 return Py_FindMethod(swigobject_methods
, (PyObject
*)sobj
, name
);
1581 SWIGRUNTIME PyTypeObject
*
1582 _PySwigObject_type(void) {
1583 static char swigobject_doc
[] = "Swig object carries a C/C++ instance pointer";
1585 static PyNumberMethods PySwigObject_as_number
= {
1586 (binaryfunc
)0, /*nb_add*/
1587 (binaryfunc
)0, /*nb_subtract*/
1588 (binaryfunc
)0, /*nb_multiply*/
1589 (binaryfunc
)0, /*nb_divide*/
1590 (binaryfunc
)0, /*nb_remainder*/
1591 (binaryfunc
)0, /*nb_divmod*/
1592 (ternaryfunc
)0,/*nb_power*/
1593 (unaryfunc
)0, /*nb_negative*/
1594 (unaryfunc
)0, /*nb_positive*/
1595 (unaryfunc
)0, /*nb_absolute*/
1596 (inquiry
)0, /*nb_nonzero*/
1603 (coercion
)0, /*nb_coerce*/
1604 (unaryfunc
)PySwigObject_long
, /*nb_int*/
1605 (unaryfunc
)PySwigObject_long
, /*nb_long*/
1606 (unaryfunc
)0, /*nb_float*/
1607 (unaryfunc
)PySwigObject_oct
, /*nb_oct*/
1608 (unaryfunc
)PySwigObject_hex
, /*nb_hex*/
1609 #if PY_VERSION_HEX >= 0x02020000
1610 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
1611 #elif PY_VERSION_HEX >= 0x02000000
1612 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
1616 static PyTypeObject pyswigobject_type
;
1617 static int type_init
= 0;
1619 const PyTypeObject tmp
1621 PyObject_HEAD_INIT(NULL
)
1623 (char *)"PySwigObject", /* tp_name */
1624 sizeof(PySwigObject
), /* tp_basicsize */
1625 0, /* tp_itemsize */
1626 (destructor
)PySwigObject_dealloc
, /* tp_dealloc */
1627 (printfunc
)PySwigObject_print
, /* tp_print */
1628 #if PY_VERSION_HEX < 0x02020000
1629 (getattrfunc
)PySwigObject_getattr
, /* tp_getattr */
1631 (getattrfunc
)0, /* tp_getattr */
1633 (setattrfunc
)0, /* tp_setattr */
1634 (cmpfunc
)PySwigObject_compare
, /* tp_compare */
1635 (reprfunc
)PySwigObject_repr
, /* tp_repr */
1636 &PySwigObject_as_number
, /* tp_as_number */
1637 0, /* tp_as_sequence */
1638 0, /* tp_as_mapping */
1639 (hashfunc
)0, /* tp_hash */
1640 (ternaryfunc
)0, /* tp_call */
1641 (reprfunc
)PySwigObject_str
, /* tp_str */
1642 PyObject_GenericGetAttr
, /* tp_getattro */
1643 0, /* tp_setattro */
1644 0, /* tp_as_buffer */
1645 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1646 swigobject_doc
, /* tp_doc */
1647 0, /* tp_traverse */
1649 0, /* tp_richcompare */
1650 0, /* tp_weaklistoffset */
1651 #if PY_VERSION_HEX >= 0x02020000
1653 0, /* tp_iternext */
1654 swigobject_methods
, /* tp_methods */
1659 0, /* tp_descr_get */
1660 0, /* tp_descr_set */
1661 0, /* tp_dictoffset */
1670 0, /* tp_subclasses */
1671 0, /* tp_weaklist */
1673 #if PY_VERSION_HEX >= 0x02030000
1677 0,0,0,0 /* tp_alloc -> tp_next */
1680 pyswigobject_type
= tmp
;
1681 pyswigobject_type
.ob_type
= &PyType_Type
;
1684 return &pyswigobject_type
;
1687 SWIGRUNTIME PyObject
*
1688 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
)
1690 PySwigObject
*sobj
= PyObject_NEW(PySwigObject
, PySwigObject_type());
1697 return (PyObject
*)sobj
;
1700 /* -----------------------------------------------------------------------------
1701 * Implements a simple Swig Packed type, and use it instead of string
1702 * ----------------------------------------------------------------------------- */
1712 PySwigPacked_print(PySwigPacked
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1714 char result
[SWIG_BUFFER_SIZE
];
1715 fputs("<Swig Packed ", fp
);
1716 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1720 fputs(v
->ty
->name
,fp
);
1725 SWIGRUNTIME PyObject
*
1726 PySwigPacked_repr(PySwigPacked
*v
)
1728 char result
[SWIG_BUFFER_SIZE
];
1729 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1730 return PyString_FromFormat("<Swig Packed at %s%s>", result
, v
->ty
->name
);
1732 return PyString_FromFormat("<Swig Packed %s>", v
->ty
->name
);
1736 SWIGRUNTIME PyObject
*
1737 PySwigPacked_str(PySwigPacked
*v
)
1739 char result
[SWIG_BUFFER_SIZE
];
1740 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))){
1741 return PyString_FromFormat("%s%s", result
, v
->ty
->name
);
1743 return PyString_FromString(v
->ty
->name
);
1748 PySwigPacked_compare(PySwigPacked
*v
, PySwigPacked
*w
)
1752 int s
= (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1753 return s
? s
: strncmp((char *)v
->pack
, (char *)w
->pack
, 2*v
->size
);
1756 SWIGRUNTIME PyTypeObject
* _PySwigPacked_type(void);
1758 SWIGRUNTIME PyTypeObject
*
1759 PySwigPacked_type(void) {
1760 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigPacked_type();
1764 SWIGRUNTIMEINLINE
int
1765 PySwigPacked_Check(PyObject
*op
) {
1766 return ((op
)->ob_type
== _PySwigPacked_type())
1767 || (strcmp((op
)->ob_type
->tp_name
,"PySwigPacked") == 0);
1771 PySwigPacked_dealloc(PyObject
*v
)
1773 if (PySwigPacked_Check(v
)) {
1774 PySwigPacked
*sobj
= (PySwigPacked
*) v
;
1780 SWIGRUNTIME PyTypeObject
*
1781 _PySwigPacked_type(void) {
1782 static char swigpacked_doc
[] = "Swig object carries a C/C++ instance pointer";
1783 static PyTypeObject pyswigpacked_type
;
1784 static int type_init
= 0;
1786 const PyTypeObject tmp
1788 PyObject_HEAD_INIT(NULL
)
1790 (char *)"PySwigPacked", /* tp_name */
1791 sizeof(PySwigPacked
), /* tp_basicsize */
1792 0, /* tp_itemsize */
1793 (destructor
)PySwigPacked_dealloc
, /* tp_dealloc */
1794 (printfunc
)PySwigPacked_print
, /* tp_print */
1795 (getattrfunc
)0, /* tp_getattr */
1796 (setattrfunc
)0, /* tp_setattr */
1797 (cmpfunc
)PySwigPacked_compare
, /* tp_compare */
1798 (reprfunc
)PySwigPacked_repr
, /* tp_repr */
1799 0, /* tp_as_number */
1800 0, /* tp_as_sequence */
1801 0, /* tp_as_mapping */
1802 (hashfunc
)0, /* tp_hash */
1803 (ternaryfunc
)0, /* tp_call */
1804 (reprfunc
)PySwigPacked_str
, /* tp_str */
1805 PyObject_GenericGetAttr
, /* tp_getattro */
1806 0, /* tp_setattro */
1807 0, /* tp_as_buffer */
1808 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1809 swigpacked_doc
, /* tp_doc */
1810 0, /* tp_traverse */
1812 0, /* tp_richcompare */
1813 0, /* tp_weaklistoffset */
1814 #if PY_VERSION_HEX >= 0x02020000
1816 0, /* tp_iternext */
1822 0, /* tp_descr_get */
1823 0, /* tp_descr_set */
1824 0, /* tp_dictoffset */
1833 0, /* tp_subclasses */
1834 0, /* tp_weaklist */
1836 #if PY_VERSION_HEX >= 0x02030000
1840 0,0,0,0 /* tp_alloc -> tp_next */
1843 pyswigpacked_type
= tmp
;
1844 pyswigpacked_type
.ob_type
= &PyType_Type
;
1847 return &pyswigpacked_type
;
1850 SWIGRUNTIME PyObject
*
1851 PySwigPacked_New(void *ptr
, size_t size
, swig_type_info
*ty
)
1853 PySwigPacked
*sobj
= PyObject_NEW(PySwigPacked
, PySwigPacked_type());
1855 void *pack
= malloc(size
);
1857 memcpy(pack
, ptr
, size
);
1862 PyObject_DEL((PyObject
*) sobj
);
1866 return (PyObject
*) sobj
;
1869 SWIGRUNTIME swig_type_info
*
1870 PySwigPacked_UnpackData(PyObject
*obj
, void *ptr
, size_t size
)
1872 if (PySwigPacked_Check(obj
)) {
1873 PySwigPacked
*sobj
= (PySwigPacked
*)obj
;
1874 if (sobj
->size
!= size
) return 0;
1875 memcpy(ptr
, sobj
->pack
, size
);
1882 /* -----------------------------------------------------------------------------
1883 * pointers/data manipulation
1884 * ----------------------------------------------------------------------------- */
1886 SWIGRUNTIMEINLINE PyObject
*
1889 return PyString_FromString("this");
1892 SWIGRUNTIME PyObject
*
1895 static PyObject
*SWIG_STATIC_POINTER(swig_this
) = _SWIG_This();
1899 /* #define SWIG_PYTHON_SLOW_GETSET_THIS */
1901 SWIGRUNTIME PySwigObject
*
1902 SWIG_Python_GetSwigThis(PyObject
*pyobj
)
1904 if (PySwigObject_Check(pyobj
)) {
1905 return (PySwigObject
*) pyobj
;
1908 #if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000))
1909 if (PyInstance_Check(pyobj
)) {
1910 obj
= _PyInstance_Lookup(pyobj
, SWIG_This());
1912 PyObject
**dictptr
= _PyObject_GetDictPtr(pyobj
);
1913 if (dictptr
!= NULL
) {
1914 PyObject
*dict
= *dictptr
;
1915 obj
= dict
? PyDict_GetItem(dict
, SWIG_This()) : 0;
1917 #ifdef PyWeakref_CheckProxy
1918 if (PyWeakref_CheckProxy(pyobj
)) {
1919 PyObject
*wobj
= PyWeakref_GET_OBJECT(pyobj
);
1920 return wobj
? SWIG_Python_GetSwigThis(wobj
) : 0;
1923 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1927 if (PyErr_Occurred()) PyErr_Clear();
1933 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1937 if (PyErr_Occurred()) PyErr_Clear();
1941 if (obj
&& !PySwigObject_Check(obj
)) {
1942 /* a PyObject is called 'this', try to get the 'real this'
1943 PySwigObject from it */
1944 return SWIG_Python_GetSwigThis(obj
);
1946 return (PySwigObject
*)obj
;
1950 /* Acquire a pointer value */
1953 SWIG_Python_AcquirePtr(PyObject
*obj
, int own
) {
1955 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1957 int oldown
= sobj
->own
;
1965 /* Convert a pointer value */
1968 SWIG_Python_ConvertPtrAndOwn(PyObject
*obj
, void **ptr
, swig_type_info
*ty
, int flags
, int *own
) {
1969 if (!obj
) return SWIG_ERROR
;
1970 if (obj
== Py_None
) {
1974 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1976 void *vptr
= sobj
->ptr
;
1978 swig_type_info
*to
= sobj
->ty
;
1980 /* no type cast needed */
1981 if (ptr
) *ptr
= vptr
;
1984 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
1986 sobj
= (PySwigObject
*)sobj
->next
;
1988 if (ptr
) *ptr
= SWIG_TypeCast(tc
,vptr
);
1993 if (ptr
) *ptr
= vptr
;
1998 if (own
) *own
= sobj
->own
;
1999 if (flags
& SWIG_POINTER_DISOWN
) {
2004 int res
= SWIG_ERROR
;
2005 if (flags
& SWIG_POINTER_IMPLICIT_CONV
) {
2006 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
2007 if (data
&& !data
->implicitconv
) {
2008 PyObject
*klass
= data
->klass
;
2011 data
->implicitconv
= 1; /* avoid recursion and call 'explicit' constructors*/
2012 impconv
= SWIG_Python_CallFunctor(klass
, obj
);
2013 data
->implicitconv
= 0;
2014 if (PyErr_Occurred()) {
2019 PySwigObject
*iobj
= SWIG_Python_GetSwigThis(impconv
);
2022 res
= SWIG_Python_ConvertPtrAndOwn((PyObject
*)iobj
, &vptr
, ty
, 0, 0);
2023 if (SWIG_IsOK(res
)) {
2026 /* transfer the ownership to 'ptr' */
2028 res
= SWIG_AddCast(res
);
2029 res
= SWIG_AddNewMask(res
);
2031 res
= SWIG_AddCast(res
);
2045 /* Convert a function ptr value */
2048 SWIG_Python_ConvertFunctionPtr(PyObject
*obj
, void **ptr
, swig_type_info
*ty
) {
2049 if (!PyCFunction_Check(obj
)) {
2050 return SWIG_ConvertPtr(obj
, ptr
, ty
, 0);
2054 /* here we get the method pointer for callbacks */
2055 const char *doc
= (((PyCFunctionObject
*)obj
) -> m_ml
-> ml_doc
);
2056 const char *desc
= doc
? strstr(doc
, "swig_ptr: ") : 0;
2058 desc
= ty
? SWIG_UnpackVoidPtr(desc
+ 10, &vptr
, ty
->name
) : 0;
2059 if (!desc
) return SWIG_ERROR
;
2062 swig_cast_info
*tc
= SWIG_TypeCheck(desc
,ty
);
2063 if (!tc
) return SWIG_ERROR
;
2064 *ptr
= SWIG_TypeCast(tc
,vptr
);
2072 /* Convert a packed value value */
2075 SWIG_Python_ConvertPacked(PyObject
*obj
, void *ptr
, size_t sz
, swig_type_info
*ty
) {
2076 swig_type_info
*to
= PySwigPacked_UnpackData(obj
, ptr
, sz
);
2077 if (!to
) return SWIG_ERROR
;
2080 /* check type cast? */
2081 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
2082 if (!tc
) return SWIG_ERROR
;
2088 /* -----------------------------------------------------------------------------
2089 * Create a new pointer object
2090 * ----------------------------------------------------------------------------- */
2093 Create a new instance object, whitout calling __init__, and set the
2097 SWIGRUNTIME PyObject
*
2098 SWIG_Python_NewShadowInstance(PySwigClientData
*data
, PyObject
*swig_this
)
2100 #if (PY_VERSION_HEX >= 0x02020000)
2102 PyObject
*newraw
= data
->newraw
;
2104 inst
= PyObject_Call(newraw
, data
->newargs
, NULL
);
2106 #if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2107 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2108 if (dictptr
!= NULL
) {
2109 PyObject
*dict
= *dictptr
;
2111 dict
= PyDict_New();
2113 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2117 PyObject
*key
= SWIG_This();
2118 PyObject_SetAttr(inst
, key
, swig_this
);
2122 PyObject
*dict
= PyDict_New();
2123 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2124 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2129 #if (PY_VERSION_HEX >= 0x02010000)
2131 PyObject
*dict
= PyDict_New();
2132 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2133 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2135 return (PyObject
*) inst
;
2137 PyInstanceObject
*inst
= PyObject_NEW(PyInstanceObject
, &PyInstance_Type
);
2141 inst
->in_class
= (PyClassObject
*)data
->newargs
;
2142 Py_INCREF(inst
->in_class
);
2143 inst
->in_dict
= PyDict_New();
2144 if (inst
->in_dict
== NULL
) {
2148 #ifdef Py_TPFLAGS_HAVE_WEAKREFS
2149 inst
->in_weakreflist
= NULL
;
2151 #ifdef Py_TPFLAGS_GC
2152 PyObject_GC_Init(inst
);
2154 PyDict_SetItem(inst
->in_dict
, SWIG_This(), swig_this
);
2155 return (PyObject
*) inst
;
2161 SWIG_Python_SetSwigThis(PyObject
*inst
, PyObject
*swig_this
)
2164 #if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2165 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2166 if (dictptr
!= NULL
) {
2169 dict
= PyDict_New();
2172 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2176 dict
= PyObject_GetAttrString(inst
, "__dict__");
2177 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2182 SWIGINTERN PyObject
*
2183 SWIG_Python_InitShadowInstance(PyObject
*args
) {
2185 if (!SWIG_Python_UnpackTuple(args
,(char*)"swiginit", 2, 2, obj
)) {
2188 PySwigObject
*sthis
= SWIG_Python_GetSwigThis(obj
[0]);
2190 PySwigObject_append((PyObject
*) sthis
, obj
[1]);
2192 SWIG_Python_SetSwigThis(obj
[0], obj
[1]);
2194 return SWIG_Py_Void();
2198 /* Create a new pointer object */
2200 SWIGRUNTIME PyObject
*
2201 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info
*type
, int flags
) {
2203 return SWIG_Py_Void();
2205 int own
= (flags
& SWIG_POINTER_OWN
) ? SWIG_POINTER_OWN
: 0;
2206 PyObject
*robj
= PySwigObject_New(ptr
, type
, own
);
2207 PySwigClientData
*clientdata
= type
? (PySwigClientData
*)(type
->clientdata
) : 0;
2208 if (clientdata
&& !(flags
& SWIG_POINTER_NOSHADOW
)) {
2209 PyObject
*inst
= SWIG_Python_NewShadowInstance(clientdata
, robj
);
2219 /* Create a new packed object */
2221 SWIGRUNTIMEINLINE PyObject
*
2222 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info
*type
) {
2223 return ptr
? PySwigPacked_New((void *) ptr
, sz
, type
) : SWIG_Py_Void();
2226 /* -----------------------------------------------------------------------------*
2228 * -----------------------------------------------------------------------------*/
2230 #ifdef SWIG_LINK_RUNTIME
2231 void *SWIG_ReturnGlobalTypeList(void *);
2234 SWIGRUNTIME swig_module_info
*
2235 SWIG_Python_GetModule(void) {
2236 static void *type_pointer
= (void *)0;
2237 /* first check if module already created */
2238 if (!type_pointer
) {
2239 #ifdef SWIG_LINK_RUNTIME
2240 type_pointer
= SWIG_ReturnGlobalTypeList((void *)0);
2242 type_pointer
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2243 (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
);
2244 if (PyErr_Occurred()) {
2246 type_pointer
= (void *)0;
2250 return (swig_module_info
*) type_pointer
;
2253 #if PY_MAJOR_VERSION < 2
2254 /* PyModule_AddObject function was introduced in Python 2.0. The following function
2255 is copied out of Python/modsupport.c in python version 2.3.4 */
2257 PyModule_AddObject(PyObject
*m
, char *name
, PyObject
*o
)
2260 if (!PyModule_Check(m
)) {
2261 PyErr_SetString(PyExc_TypeError
,
2262 "PyModule_AddObject() needs module as first arg");
2266 PyErr_SetString(PyExc_TypeError
,
2267 "PyModule_AddObject() needs non-NULL value");
2271 dict
= PyModule_GetDict(m
);
2273 /* Internal error -- modules must have a dict! */
2274 PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__",
2275 PyModule_GetName(m
));
2278 if (PyDict_SetItemString(dict
, name
, o
))
2286 SWIG_Python_DestroyModule(void *vptr
)
2288 swig_module_info
*swig_module
= (swig_module_info
*) vptr
;
2289 swig_type_info
**types
= swig_module
->types
;
2291 for (i
=0; i
< swig_module
->size
; ++i
) {
2292 swig_type_info
*ty
= types
[i
];
2294 PySwigClientData
*data
= (PySwigClientData
*) ty
->clientdata
;
2295 if (data
) PySwigClientData_Del(data
);
2298 Py_DECREF(SWIG_This());
2302 SWIG_Python_SetModule(swig_module_info
*swig_module
) {
2303 static PyMethodDef swig_empty_runtime_method_table
[] = { {NULL
, NULL
, 0, NULL
} };/* Sentinel */
2305 PyObject
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2306 swig_empty_runtime_method_table
);
2307 PyObject
*pointer
= PyCObject_FromVoidPtr((void *) swig_module
, SWIG_Python_DestroyModule
);
2308 if (pointer
&& module) {
2309 PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
);
2311 Py_XDECREF(pointer
);
2315 /* The python cached type query */
2316 SWIGRUNTIME PyObject
*
2317 SWIG_Python_TypeCache() {
2318 static PyObject
*SWIG_STATIC_POINTER(cache
) = PyDict_New();
2322 SWIGRUNTIME swig_type_info
*
2323 SWIG_Python_TypeQuery(const char *type
)
2325 PyObject
*cache
= SWIG_Python_TypeCache();
2326 PyObject
*key
= PyString_FromString(type
);
2327 PyObject
*obj
= PyDict_GetItem(cache
, key
);
2328 swig_type_info
*descriptor
;
2330 descriptor
= (swig_type_info
*) PyCObject_AsVoidPtr(obj
);
2332 swig_module_info
*swig_module
= SWIG_Python_GetModule();
2333 descriptor
= SWIG_TypeQueryModule(swig_module
, swig_module
, type
);
2335 obj
= PyCObject_FromVoidPtr(descriptor
, NULL
);
2336 PyDict_SetItem(cache
, key
, obj
);
2345 For backward compatibility only
2347 #define SWIG_POINTER_EXCEPTION 0
2348 #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
2349 #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
2352 SWIG_Python_AddErrMesg(const char* mesg
, int infront
)
2354 if (PyErr_Occurred()) {
2356 PyObject
*value
= 0;
2357 PyObject
*traceback
= 0;
2358 PyErr_Fetch(&type
, &value
, &traceback
);
2360 PyObject
*old_str
= PyObject_Str(value
);
2364 PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
));
2366 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
2377 SWIG_Python_ArgFail(int argnum
)
2379 if (PyErr_Occurred()) {
2380 /* add information about failing argument */
2382 PyOS_snprintf(mesg
, sizeof(mesg
), "argument number %d:", argnum
);
2383 return SWIG_Python_AddErrMesg(mesg
, 1);
2389 SWIGRUNTIMEINLINE
const char *
2390 PySwigObject_GetDesc(PyObject
*self
)
2392 PySwigObject
*v
= (PySwigObject
*)self
;
2393 swig_type_info
*ty
= v
? v
->ty
: 0;
2394 return ty
? ty
->str
: (char*)"";
2398 SWIG_Python_TypeError(const char *type
, PyObject
*obj
)
2401 #if defined(SWIG_COBJECT_TYPES)
2402 if (obj
&& PySwigObject_Check(obj
)) {
2403 const char *otype
= (const char *) PySwigObject_GetDesc(obj
);
2405 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, 'PySwigObject(%s)' is received",
2412 const char *otype
= (obj
? obj
->ob_type
->tp_name
: 0);
2414 PyObject
*str
= PyObject_Str(obj
);
2415 const char *cstr
= str
? PyString_AsString(str
) : 0;
2417 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s(%s)' is received",
2420 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s' is received",
2427 PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
);
2429 PyErr_Format(PyExc_TypeError
, "unexpected type is received");
2434 /* Convert a pointer value, signal an exception on a type mismatch */
2436 SWIG_Python_MustGetPtr(PyObject
*obj
, swig_type_info
*ty
, int argnum
, int flags
) {
2438 if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) {
2440 if (flags
& SWIG_POINTER_EXCEPTION
) {
2441 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
2442 SWIG_Python_ArgFail(argnum
);
2458 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
2460 #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
2464 /* -------- TYPES TABLE (BEGIN) -------- */
2466 #define SWIGTYPE_p_char swig_types[0]
2467 #define SWIGTYPE_p_double swig_types[1]
2468 #define SWIGTYPE_p_form_ops_t swig_types[2]
2469 #define SWIGTYPE_p_int swig_types[3]
2470 #define SWIGTYPE_p_p_wxAuiFloatingFrame swig_types[4]
2471 #define SWIGTYPE_p_p_wxAuiNotebook swig_types[5]
2472 #define SWIGTYPE_p_p_wxAuiTabContainerButton swig_types[6]
2473 #define SWIGTYPE_p_p_wxAuiTabCtrl swig_types[7]
2474 #define SWIGTYPE_p_p_wxColourDialog swig_types[8]
2475 #define SWIGTYPE_p_p_wxControl swig_types[9]
2476 #define SWIGTYPE_p_p_wxControlWithItems swig_types[10]
2477 #define SWIGTYPE_p_p_wxDialog swig_types[11]
2478 #define SWIGTYPE_p_p_wxDirDialog swig_types[12]
2479 #define SWIGTYPE_p_p_wxFileDialog swig_types[13]
2480 #define SWIGTYPE_p_p_wxFindReplaceDialog swig_types[14]
2481 #define SWIGTYPE_p_p_wxFontDialog swig_types[15]
2482 #define SWIGTYPE_p_p_wxFrame swig_types[16]
2483 #define SWIGTYPE_p_p_wxMDIChildFrame swig_types[17]
2484 #define SWIGTYPE_p_p_wxMDIClientWindow swig_types[18]
2485 #define SWIGTYPE_p_p_wxMDIParentFrame swig_types[19]
2486 #define SWIGTYPE_p_p_wxMenuBar swig_types[20]
2487 #define SWIGTYPE_p_p_wxMessageDialog swig_types[21]
2488 #define SWIGTYPE_p_p_wxMiniFrame swig_types[22]
2489 #define SWIGTYPE_p_p_wxMultiChoiceDialog swig_types[23]
2490 #define SWIGTYPE_p_p_wxNumberEntryDialog swig_types[24]
2491 #define SWIGTYPE_p_p_wxPanel swig_types[25]
2492 #define SWIGTYPE_p_p_wxPasswordEntryDialog swig_types[26]
2493 #define SWIGTYPE_p_p_wxPopupWindow swig_types[27]
2494 #define SWIGTYPE_p_p_wxPreviewCanvas swig_types[28]
2495 #define SWIGTYPE_p_p_wxPreviewControlBar swig_types[29]
2496 #define SWIGTYPE_p_p_wxPreviewFrame swig_types[30]
2497 #define SWIGTYPE_p_p_wxProgressDialog swig_types[31]
2498 #define SWIGTYPE_p_p_wxPyHtmlListBox swig_types[32]
2499 #define SWIGTYPE_p_p_wxPyPanel swig_types[33]
2500 #define SWIGTYPE_p_p_wxPyPopupTransientWindow swig_types[34]
2501 #define SWIGTYPE_p_p_wxPyPreviewControlBar swig_types[35]
2502 #define SWIGTYPE_p_p_wxPyPreviewFrame swig_types[36]
2503 #define SWIGTYPE_p_p_wxPyScrolledWindow swig_types[37]
2504 #define SWIGTYPE_p_p_wxPyVListBox swig_types[38]
2505 #define SWIGTYPE_p_p_wxPyVScrolledWindow swig_types[39]
2506 #define SWIGTYPE_p_p_wxPyWindow swig_types[40]
2507 #define SWIGTYPE_p_p_wxSashLayoutWindow swig_types[41]
2508 #define SWIGTYPE_p_p_wxSashWindow swig_types[42]
2509 #define SWIGTYPE_p_p_wxScrolledWindow swig_types[43]
2510 #define SWIGTYPE_p_p_wxSimpleHtmlListBox swig_types[44]
2511 #define SWIGTYPE_p_p_wxSingleChoiceDialog swig_types[45]
2512 #define SWIGTYPE_p_p_wxSplashScreen swig_types[46]
2513 #define SWIGTYPE_p_p_wxSplashScreenWindow swig_types[47]
2514 #define SWIGTYPE_p_p_wxSplitterWindow swig_types[48]
2515 #define SWIGTYPE_p_p_wxStatusBar swig_types[49]
2516 #define SWIGTYPE_p_p_wxTextEntryDialog swig_types[50]
2517 #define SWIGTYPE_p_p_wxTipWindow swig_types[51]
2518 #define SWIGTYPE_p_p_wxTopLevelWindow swig_types[52]
2519 #define SWIGTYPE_p_p_wxWindow swig_types[53]
2520 #define SWIGTYPE_p_unsigned_char swig_types[54]
2521 #define SWIGTYPE_p_unsigned_int swig_types[55]
2522 #define SWIGTYPE_p_unsigned_long swig_types[56]
2523 #define SWIGTYPE_p_wxANIHandler swig_types[57]
2524 #define SWIGTYPE_p_wxAcceleratorTable swig_types[58]
2525 #define SWIGTYPE_p_wxActivateEvent swig_types[59]
2526 #define SWIGTYPE_p_wxArrayString swig_types[60]
2527 #define SWIGTYPE_p_wxAuiDefaultDockArt swig_types[61]
2528 #define SWIGTYPE_p_wxAuiDefaultTabArt swig_types[62]
2529 #define SWIGTYPE_p_wxAuiDockArt swig_types[63]
2530 #define SWIGTYPE_p_wxAuiDockInfo swig_types[64]
2531 #define SWIGTYPE_p_wxAuiDockUIPart swig_types[65]
2532 #define SWIGTYPE_p_wxAuiFloatingFrame swig_types[66]
2533 #define SWIGTYPE_p_wxAuiManager swig_types[67]
2534 #define SWIGTYPE_p_wxAuiManagerEvent swig_types[68]
2535 #define SWIGTYPE_p_wxAuiNotebook swig_types[69]
2536 #define SWIGTYPE_p_wxAuiNotebookEvent swig_types[70]
2537 #define SWIGTYPE_p_wxAuiNotebookPage swig_types[71]
2538 #define SWIGTYPE_p_wxAuiNotebookPageArray swig_types[72]
2539 #define SWIGTYPE_p_wxAuiPaneButton swig_types[73]
2540 #define SWIGTYPE_p_wxAuiPaneButtonArray swig_types[74]
2541 #define SWIGTYPE_p_wxAuiPaneInfo swig_types[75]
2542 #define SWIGTYPE_p_wxAuiPaneInfoPtrArray swig_types[76]
2543 #define SWIGTYPE_p_wxAuiSimpleTabArt swig_types[77]
2544 #define SWIGTYPE_p_wxAuiTabArt swig_types[78]
2545 #define SWIGTYPE_p_wxAuiTabContainer swig_types[79]
2546 #define SWIGTYPE_p_wxAuiTabContainerButton swig_types[80]
2547 #define SWIGTYPE_p_wxAuiTabCtrl swig_types[81]
2548 #define SWIGTYPE_p_wxBMPHandler swig_types[82]
2549 #define SWIGTYPE_p_wxBitmap swig_types[83]
2550 #define SWIGTYPE_p_wxBoxSizer swig_types[84]
2551 #define SWIGTYPE_p_wxCURHandler swig_types[85]
2552 #define SWIGTYPE_p_wxCalculateLayoutEvent swig_types[86]
2553 #define SWIGTYPE_p_wxChildFocusEvent swig_types[87]
2554 #define SWIGTYPE_p_wxClipboardTextEvent swig_types[88]
2555 #define SWIGTYPE_p_wxCloseEvent swig_types[89]
2556 #define SWIGTYPE_p_wxColor swig_types[90]
2557 #define SWIGTYPE_p_wxColour swig_types[91]
2558 #define SWIGTYPE_p_wxColourData swig_types[92]
2559 #define SWIGTYPE_p_wxColourDialog swig_types[93]
2560 #define SWIGTYPE_p_wxCommandEvent swig_types[94]
2561 #define SWIGTYPE_p_wxContextMenuEvent swig_types[95]
2562 #define SWIGTYPE_p_wxControl swig_types[96]
2563 #define SWIGTYPE_p_wxControlWithItems swig_types[97]
2564 #define SWIGTYPE_p_wxDC swig_types[98]
2565 #define SWIGTYPE_p_wxDateEvent swig_types[99]
2566 #define SWIGTYPE_p_wxDialog swig_types[100]
2567 #define SWIGTYPE_p_wxDirDialog swig_types[101]
2568 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[102]
2569 #define SWIGTYPE_p_wxDropFilesEvent swig_types[103]
2570 #define SWIGTYPE_p_wxDuplexMode swig_types[104]
2571 #define SWIGTYPE_p_wxEraseEvent swig_types[105]
2572 #define SWIGTYPE_p_wxEvent swig_types[106]
2573 #define SWIGTYPE_p_wxEvtHandler swig_types[107]
2574 #define SWIGTYPE_p_wxFSFile swig_types[108]
2575 #define SWIGTYPE_p_wxFileDialog swig_types[109]
2576 #define SWIGTYPE_p_wxFileSystem swig_types[110]
2577 #define SWIGTYPE_p_wxFindDialogEvent swig_types[111]
2578 #define SWIGTYPE_p_wxFindReplaceData swig_types[112]
2579 #define SWIGTYPE_p_wxFindReplaceDialog swig_types[113]
2580 #define SWIGTYPE_p_wxFlexGridSizer swig_types[114]
2581 #define SWIGTYPE_p_wxFocusEvent swig_types[115]
2582 #define SWIGTYPE_p_wxFont swig_types[116]
2583 #define SWIGTYPE_p_wxFontData swig_types[117]
2584 #define SWIGTYPE_p_wxFontDialog swig_types[118]
2585 #define SWIGTYPE_p_wxFrame swig_types[119]
2586 #define SWIGTYPE_p_wxGBSizerItem swig_types[120]
2587 #define SWIGTYPE_p_wxGIFHandler swig_types[121]
2588 #define SWIGTYPE_p_wxGridBagSizer swig_types[122]
2589 #define SWIGTYPE_p_wxGridSizer swig_types[123]
2590 #define SWIGTYPE_p_wxICOHandler swig_types[124]
2591 #define SWIGTYPE_p_wxIconizeEvent swig_types[125]
2592 #define SWIGTYPE_p_wxIdleEvent swig_types[126]
2593 #define SWIGTYPE_p_wxImage swig_types[127]
2594 #define SWIGTYPE_p_wxImageHandler swig_types[128]
2595 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[129]
2596 #define SWIGTYPE_p_wxInitDialogEvent swig_types[130]
2597 #define SWIGTYPE_p_wxJPEGHandler swig_types[131]
2598 #define SWIGTYPE_p_wxKeyEvent swig_types[132]
2599 #define SWIGTYPE_p_wxLayoutAlgorithm swig_types[133]
2600 #define SWIGTYPE_p_wxLayoutConstraints swig_types[134]
2601 #define SWIGTYPE_p_wxMDIChildFrame swig_types[135]
2602 #define SWIGTYPE_p_wxMDIClientWindow swig_types[136]
2603 #define SWIGTYPE_p_wxMDIParentFrame swig_types[137]
2604 #define SWIGTYPE_p_wxMaximizeEvent swig_types[138]
2605 #define SWIGTYPE_p_wxMenu swig_types[139]
2606 #define SWIGTYPE_p_wxMenuBar swig_types[140]
2607 #define SWIGTYPE_p_wxMenuEvent swig_types[141]
2608 #define SWIGTYPE_p_wxMenuItem swig_types[142]
2609 #define SWIGTYPE_p_wxMessageDialog swig_types[143]
2610 #define SWIGTYPE_p_wxMiniFrame swig_types[144]
2611 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[145]
2612 #define SWIGTYPE_p_wxMouseCaptureLostEvent swig_types[146]
2613 #define SWIGTYPE_p_wxMouseEvent swig_types[147]
2614 #define SWIGTYPE_p_wxMoveEvent swig_types[148]
2615 #define SWIGTYPE_p_wxMultiChoiceDialog swig_types[149]
2616 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[150]
2617 #define SWIGTYPE_p_wxNcPaintEvent swig_types[151]
2618 #define SWIGTYPE_p_wxNotifyEvent swig_types[152]
2619 #define SWIGTYPE_p_wxNumberEntryDialog swig_types[153]
2620 #define SWIGTYPE_p_wxObject swig_types[154]
2621 #define SWIGTYPE_p_wxPCXHandler swig_types[155]
2622 #define SWIGTYPE_p_wxPNGHandler swig_types[156]
2623 #define SWIGTYPE_p_wxPNMHandler swig_types[157]
2624 #define SWIGTYPE_p_wxPageSetupDialog swig_types[158]
2625 #define SWIGTYPE_p_wxPageSetupDialogData swig_types[159]
2626 #define SWIGTYPE_p_wxPaintEvent swig_types[160]
2627 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[161]
2628 #define SWIGTYPE_p_wxPanel swig_types[162]
2629 #define SWIGTYPE_p_wxPaperSize swig_types[163]
2630 #define SWIGTYPE_p_wxPasswordEntryDialog swig_types[164]
2631 #define SWIGTYPE_p_wxPoint swig_types[165]
2632 #define SWIGTYPE_p_wxPopupWindow swig_types[166]
2633 #define SWIGTYPE_p_wxPreviewCanvas swig_types[167]
2634 #define SWIGTYPE_p_wxPreviewControlBar swig_types[168]
2635 #define SWIGTYPE_p_wxPreviewFrame swig_types[169]
2636 #define SWIGTYPE_p_wxPrintData swig_types[170]
2637 #define SWIGTYPE_p_wxPrintDialog swig_types[171]
2638 #define SWIGTYPE_p_wxPrintDialogData swig_types[172]
2639 #define SWIGTYPE_p_wxPrintPreview swig_types[173]
2640 #define SWIGTYPE_p_wxPrinter swig_types[174]
2641 #define SWIGTYPE_p_wxProgressDialog swig_types[175]
2642 #define SWIGTYPE_p_wxPyApp swig_types[176]
2643 #define SWIGTYPE_p_wxPyAuiDockArt swig_types[177]
2644 #define SWIGTYPE_p_wxPyAuiTabArt swig_types[178]
2645 #define SWIGTYPE_p_wxPyCommandEvent swig_types[179]
2646 #define SWIGTYPE_p_wxPyEvent swig_types[180]
2647 #define SWIGTYPE_p_wxPyHtmlListBox swig_types[181]
2648 #define SWIGTYPE_p_wxPyImageHandler swig_types[182]
2649 #define SWIGTYPE_p_wxPyPanel swig_types[183]
2650 #define SWIGTYPE_p_wxPyPopupTransientWindow swig_types[184]
2651 #define SWIGTYPE_p_wxPyPreviewControlBar swig_types[185]
2652 #define SWIGTYPE_p_wxPyPreviewFrame swig_types[186]
2653 #define SWIGTYPE_p_wxPyPrintPreview swig_types[187]
2654 #define SWIGTYPE_p_wxPyPrintout swig_types[188]
2655 #define SWIGTYPE_p_wxPyScrolledWindow swig_types[189]
2656 #define SWIGTYPE_p_wxPySizer swig_types[190]
2657 #define SWIGTYPE_p_wxPyTaskBarIcon swig_types[191]
2658 #define SWIGTYPE_p_wxPyVListBox swig_types[192]
2659 #define SWIGTYPE_p_wxPyVScrolledWindow swig_types[193]
2660 #define SWIGTYPE_p_wxPyValidator swig_types[194]
2661 #define SWIGTYPE_p_wxPyWindow swig_types[195]
2662 #define SWIGTYPE_p_wxQueryLayoutInfoEvent swig_types[196]
2663 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[197]
2664 #define SWIGTYPE_p_wxRect swig_types[198]
2665 #define SWIGTYPE_p_wxSashEvent swig_types[199]
2666 #define SWIGTYPE_p_wxSashLayoutWindow swig_types[200]
2667 #define SWIGTYPE_p_wxSashWindow swig_types[201]
2668 #define SWIGTYPE_p_wxScrollEvent swig_types[202]
2669 #define SWIGTYPE_p_wxScrollWinEvent swig_types[203]
2670 #define SWIGTYPE_p_wxScrolledWindow swig_types[204]
2671 #define SWIGTYPE_p_wxSetCursorEvent swig_types[205]
2672 #define SWIGTYPE_p_wxShowEvent swig_types[206]
2673 #define SWIGTYPE_p_wxSimpleHtmlListBox swig_types[207]
2674 #define SWIGTYPE_p_wxSingleChoiceDialog swig_types[208]
2675 #define SWIGTYPE_p_wxSize swig_types[209]
2676 #define SWIGTYPE_p_wxSizeEvent swig_types[210]
2677 #define SWIGTYPE_p_wxSizer swig_types[211]
2678 #define SWIGTYPE_p_wxSizerItem swig_types[212]
2679 #define SWIGTYPE_p_wxSplashScreen swig_types[213]
2680 #define SWIGTYPE_p_wxSplashScreenWindow swig_types[214]
2681 #define SWIGTYPE_p_wxSplitterEvent swig_types[215]
2682 #define SWIGTYPE_p_wxSplitterWindow swig_types[216]
2683 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[217]
2684 #define SWIGTYPE_p_wxStatusBar swig_types[218]
2685 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[219]
2686 #define SWIGTYPE_p_wxString swig_types[220]
2687 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[221]
2688 #define SWIGTYPE_p_wxTGAHandler swig_types[222]
2689 #define SWIGTYPE_p_wxTIFFHandler swig_types[223]
2690 #define SWIGTYPE_p_wxTaskBarIconEvent swig_types[224]
2691 #define SWIGTYPE_p_wxTextEntryDialog swig_types[225]
2692 #define SWIGTYPE_p_wxTipWindow swig_types[226]
2693 #define SWIGTYPE_p_wxTopLevelWindow swig_types[227]
2694 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[228]
2695 #define SWIGTYPE_p_wxValidator swig_types[229]
2696 #define SWIGTYPE_p_wxWindow swig_types[230]
2697 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[231]
2698 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[232]
2699 #define SWIGTYPE_p_wxXPMHandler swig_types[233]
2700 static swig_type_info
*swig_types
[235];
2701 static swig_module_info swig_module
= {swig_types
, 234, 0, 0, 0, 0};
2702 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2703 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
2705 /* -------- TYPES TABLE (END) -------- */
2707 #if (PY_VERSION_HEX <= 0x02000000)
2708 # if !defined(SWIG_PYTHON_CLASSIC)
2709 # error "This python version requires to use swig with the '-classic' option"
2712 #if (PY_VERSION_HEX <= 0x02020000)
2713 # error "This python version requires to use swig with the '-nomodern' option"
2715 #if (PY_VERSION_HEX <= 0x02020000)
2716 # error "This python version requires to use swig with the '-nomodernargs' option"
2719 # error "This python version requires to use swig with the '-nofastunpack' option"
2722 /*-----------------------------------------------
2724 ------------------------------------------------*/
2725 #define SWIG_init init_aui
2727 #define SWIG_name "_aui"
2729 #define SWIGVERSION 0x010329
2732 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
2733 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))
2736 #include <stdexcept>
2740 class PyObject_ptr
{
2745 PyObject_ptr() :_obj(0)
2749 PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
)
2754 PyObject_ptr(PyObject
*obj
, bool initial_ref
= true) :_obj(obj
)
2756 if (initial_ref
) Py_XINCREF(_obj
);
2759 PyObject_ptr
& operator=(const PyObject_ptr
& item
)
2761 Py_XINCREF(item
._obj
);
2772 operator PyObject
*() const
2777 PyObject
*operator->() const
2786 struct PyObject_var
: PyObject_ptr
{
2787 PyObject_var(PyObject
* obj
= 0) : PyObject_ptr(obj
, false) { }
2789 PyObject_var
& operator = (PyObject
* obj
)
2799 #include "wx/wxPython/wxPython.h"
2800 #include "wx/wxPython/pyclasses.h"
2801 #include <wx/aui/aui.h>
2804 #define SWIG_From_long PyInt_FromLong
2807 SWIGINTERNINLINE PyObject
*
2808 SWIG_From_int (int value
)
2810 return SWIG_From_long (value
);
2816 # define LLONG_MIN LONG_LONG_MIN
2819 # define LLONG_MAX LONG_LONG_MAX
2822 # define ULLONG_MAX ULONG_LONG_MAX
2827 SWIG_AsVal_long (PyObject
* obj
, long* val
)
2829 if (PyNumber_Check(obj
)) {
2830 if (val
) *val
= PyInt_AsLong(obj
);
2833 return SWIG_TypeError
;
2838 SWIG_AsVal_int (PyObject
* obj
, int *val
)
2841 int res
= SWIG_AsVal_long (obj
, &v
);
2842 if (SWIG_IsOK(res
)) {
2843 if ((v
< INT_MIN
|| v
> INT_MAX
)) {
2844 return SWIG_OverflowError
;
2846 if (val
) *val
= static_cast< int >(v
);
2854 SWIG_AsVal_bool (PyObject
*obj
, bool *val
)
2856 if (obj
== Py_True
) {
2857 if (val
) *val
= true;
2859 } else if (obj
== Py_False
) {
2860 if (val
) *val
= false;
2864 int res
= SWIG_AddCast(SWIG_AsVal_long (obj
, val
? &v
: 0));
2865 if (SWIG_IsOK(res
) && val
) *val
= v
? true : false;
2872 SWIG_AsVal_double (PyObject
*obj
, double* val
)
2874 if (PyNumber_Check(obj
)) {
2875 if (val
) *val
= PyFloat_AsDouble(obj
);
2878 return SWIG_TypeError
;
2881 SWIGINTERN
void delete_wxAuiDockInfo(wxAuiDockInfo
*self
){}
2882 SWIGINTERN
void delete_wxAuiDockUIPart(wxAuiDockUIPart
*self
){}
2883 SWIGINTERN
void delete_wxAuiPaneButton(wxAuiPaneButton
*self
){}
2886 SWIG_AsVal_unsigned_SS_long (PyObject
* obj
, unsigned long* val
)
2889 if (SWIG_AsVal_long(obj
, &v
) && v
< 0) {
2890 return SWIG_TypeError
;
2893 *val
= (unsigned long)v
;
2898 SWIGINTERNINLINE
int
2899 SWIG_AsVal_size_t (PyObject
* obj
, size_t *val
)
2902 int res
= SWIG_AsVal_unsigned_SS_long (obj
, val
? &v
: 0);
2903 if (SWIG_IsOK(res
) && val
) *val
= static_cast< size_t >(v
);
2908 SWIGINTERNINLINE PyObject
*
2909 SWIG_From_unsigned_SS_long (unsigned long value
)
2911 return (value
> LONG_MAX
) ?
2912 PyLong_FromUnsignedLong(value
) : PyInt_FromLong(static_cast< long >(value
));
2916 SWIGINTERNINLINE PyObject
*
2917 SWIG_From_size_t (size_t value
)
2919 return SWIG_From_unsigned_SS_long (static_cast< unsigned long >(value
));
2923 // A wxDocArt class that knows how to forward virtuals to Python methods
2924 class wxPyAuiDockArt
: public wxAuiDefaultDockArt
2926 wxPyAuiDockArt() : wxAuiDefaultDockArt() {}
2928 DEC_PYCALLBACK_INT_INT(GetMetric
);
2929 DEC_PYCALLBACK_VOID_INTINT(SetMetric
);
2930 DEC_PYCALLBACK__INTFONT(SetFont
);
2931 DEC_PYCALLBACK_FONT_INT(GetFont
);
2932 DEC_PYCALLBACK_COLOUR_INT(GetColour
);
2933 DEC_PYCALLBACK__INTCOLOUR(SetColour
);
2935 virtual void DrawSash(wxDC
& dc
,
2941 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2942 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawSash"))) {
2943 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2944 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2945 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2946 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiO)",
2947 odc
, owin
, orientation
, orect
));
2952 wxPyEndBlockThreads(blocked
);
2954 wxAuiDefaultDockArt::DrawSash(dc
, window
, orientation
, rect
);
2957 virtual void DrawBackground(wxDC
& dc
,
2963 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2964 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBackground"))) {
2965 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2966 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2967 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2968 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiO)",
2969 odc
, owin
, orientation
, orect
));
2974 wxPyEndBlockThreads(blocked
);
2976 wxAuiDefaultDockArt::DrawBackground(dc
, window
, orientation
, rect
);
2979 virtual void DrawCaption(wxDC
& dc
,
2981 const wxString
& text
,
2983 wxAuiPaneInfo
& pane
)
2986 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2987 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawCaption"))) {
2988 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2989 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2990 PyObject
* otext
= wx2PyString(text
);
2991 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2992 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
2993 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOOOO)",
2994 odc
, owin
, otext
, orect
, opane
));
3001 wxPyEndBlockThreads(blocked
);
3003 wxAuiDefaultDockArt::DrawCaption(dc
, window
, text
, rect
, pane
);
3006 virtual void DrawGripper(wxDC
& dc
,
3009 wxAuiPaneInfo
& pane
)
3012 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3013 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawGripper"))) {
3014 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3015 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3016 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3017 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
3018 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOOO)", odc
, owin
, orect
, opane
));
3023 wxPyEndBlockThreads(blocked
);
3025 wxAuiDefaultDockArt::DrawGripper(dc
, window
, rect
, pane
);
3028 virtual void DrawBorder(wxDC
& dc
,
3031 wxAuiPaneInfo
& pane
)
3034 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3035 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBorder"))) {
3036 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3037 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3038 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3039 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
3040 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOO)", odc
, orect
, opane
));
3046 wxPyEndBlockThreads(blocked
);
3048 wxAuiDefaultDockArt::DrawBorder(dc
, window
, rect
, pane
);
3051 virtual void DrawPaneButton(wxDC
& dc
,
3056 wxAuiPaneInfo
& pane
)
3059 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3060 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawPaneButton"))) {
3061 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3062 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3063 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3064 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
3065 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiIOO)",
3066 odc
, owin
, button
, button_state
,
3073 wxPyEndBlockThreads(blocked
);
3075 wxAuiDefaultDockArt::DrawPaneButton(dc
, window
, button
, button_state
, rect
, pane
);
3082 IMP_PYCALLBACK_INT_INT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, GetMetric
);
3083 IMP_PYCALLBACK_VOID_INTINT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, SetMetric
);
3084 IMP_PYCALLBACK__INTFONT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, SetFont
);
3085 IMP_PYCALLBACK_FONT_INT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, GetFont
);
3086 IMP_PYCALLBACK_COLOUR_INT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, GetColour
);
3087 IMP_PYCALLBACK__INTCOLOUR(wxPyAuiDockArt
, wxAuiDefaultDockArt
, SetColour
);
3091 // A wxTabArt class that knows how to forward virtuals to Python methods
3092 class wxPyAuiTabArt
: public wxAuiDefaultTabArt
3094 wxPyAuiTabArt() : wxAuiDefaultTabArt() {}
3097 virtual void DrawBackground( wxDC
& dc
,
3099 const wxRect
& rect
)
3102 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3103 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBackground"))) {
3104 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3105 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3106 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3107 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOO)", odc
, ownd
, orect
));
3112 wxPyEndBlockThreads(blocked
);
3114 wxAuiDefaultTabArt::DrawBackground(dc
, wnd
, rect
);
3117 virtual void DrawTab( wxDC
& dc
,
3119 const wxRect
& in_rect
,
3120 const wxString
& caption
,
3121 const wxBitmap
& bitmap
,
3123 int close_button_state
,
3124 wxRect
* out_tab_rect
,
3125 wxRect
* out_button_rect
,
3129 const char* errmsg
= "DrawTab should return a sequence containing (tab_rect, button_rect, x_extent)";
3130 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3131 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawTab"))) {
3132 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3133 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3134 PyObject
* orect
= wxPyConstructObject((void*)&in_rect
, wxT("wxRect"), 0);
3135 PyObject
* otext
= wx2PyString(caption
);
3136 PyObject
* obmp
= wxPyMake_wxObject((wxObject
*)&bitmap
, false);
3138 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue(
3140 odc
, ownd
, orect
, otext
, obmp
,
3141 (int)active
, close_button_state
));
3143 if (PySequence_Check(ro
) && PyObject_Length(ro
) == 3) {
3144 PyObject
* o1
= PySequence_GetItem(ro
, 0);
3145 PyObject
* o2
= PySequence_GetItem(ro
, 1);
3146 PyObject
* o3
= PySequence_GetItem(ro
, 2);
3147 if (!wxRect_helper(o1
, &out_tab_rect
))
3148 PyErr_SetString(PyExc_TypeError
, errmsg
);
3149 else if (!wxRect_helper(o2
, &out_button_rect
))
3150 PyErr_SetString(PyExc_TypeError
, errmsg
);
3151 else if (!PyInt_Check(o3
))
3152 PyErr_SetString(PyExc_TypeError
, errmsg
);
3154 *x_extent
= PyInt_AsLong(o3
);
3161 PyErr_SetString(PyExc_TypeError
, errmsg
);
3172 wxPyEndBlockThreads(blocked
);
3174 wxAuiDefaultTabArt::DrawTab(dc
, wnd
, in_rect
, caption
, bitmap
, active
, close_button_state
, out_tab_rect
, out_button_rect
, x_extent
);
3178 virtual void DrawButton( wxDC
& dc
,
3180 const wxRect
& in_rect
,
3184 const wxBitmap
& bitmap_override
,
3188 const char* errmsg
= "DrawButton should return a wxRect";
3189 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3190 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawButton"))) {
3191 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3192 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3193 PyObject
* orect
= wxPyConstructObject((void*)&in_rect
, wxT("wxRect"), 0);
3194 PyObject
* obmp
= wxPyConstructObject((void*)&bitmap_override
, wxT("wxBitmap"), 0);
3196 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("(OOOiiiO)", odc
, ownd
, orect
,
3197 bitmap_id
, button_state
, orientation
,
3200 if (!wxRect_helper(ro
, &out_rect
))
3201 PyErr_SetString(PyExc_TypeError
, errmsg
);
3210 wxPyEndBlockThreads(blocked
);
3212 wxAuiDefaultTabArt::DrawButton(dc
, wnd
, in_rect
, bitmap_id
, button_state
, orientation
, bitmap_override
, out_rect
);
3216 virtual wxSize
GetTabSize( wxDC
& dc
,
3218 const wxString
& caption
,
3219 const wxBitmap
& bitmap
,
3221 int close_button_state
,
3225 wxSize rv
, *prv
= &rv
;
3226 const char* errmsg
= "GetTabSize should return a sequence containing (size, x_extent)";
3227 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3228 if ((found
= wxPyCBH_findCallback(m_myInst
, "GetTabSize"))) {
3229 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3230 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3231 PyObject
* otext
= wx2PyString(caption
);
3232 PyObject
* obmp
= wxPyMake_wxObject((wxObject
*)&bitmap
, false);
3234 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue(
3235 "(OOOOii)", odc
, ownd
, otext
, obmp
, (int)active
, close_button_state
));
3237 if (PySequence_Check(ro
) && PyObject_Length(ro
) == 2) {
3238 PyObject
* o1
= PySequence_GetItem(ro
, 0);
3239 PyObject
* o2
= PySequence_GetItem(ro
, 1);
3240 if (!wxSize_helper(o1
, &prv
))
3241 PyErr_SetString(PyExc_TypeError
, errmsg
);
3242 else if (!PyInt_Check(o2
))
3243 PyErr_SetString(PyExc_TypeError
, errmsg
);
3245 *x_extent
= PyInt_AsLong(o2
);
3251 PyErr_SetString(PyExc_TypeError
, errmsg
);
3261 wxPyEndBlockThreads(blocked
);
3263 rv
= wxAuiDefaultTabArt::GetTabSize(dc
, wnd
, caption
, bitmap
, active
, close_button_state
, x_extent
);
3268 // virtual int ShowWindowList(
3270 // const wxArrayString& items,
3273 // virtual int GetBestTabCtrlSize(wxWindow* wnd,
3274 // wxAuiNotebookPageArray& pages);
3275 // virtual wxAuiTabArt* Clone();
3276 // virtual void SetFlags(unsigned int flags);
3277 // virtual void SetSizingInfo(const wxSize& tab_ctrl_size,
3278 // size_t tab_count);
3279 // virtual int GetIndentSize();
3283 DEC_PYCALLBACK__FONT(SetNormalFont
);
3284 DEC_PYCALLBACK__FONT(SetSelectedFont
);
3285 DEC_PYCALLBACK__FONT(SetMeasuringFont
);
3286 // DEC_PYCALLBACK_INT_WIN(GetBestTabCtrlSize);
3292 IMP_PYCALLBACK__FONT(wxPyAuiTabArt
, wxAuiDefaultTabArt
, SetNormalFont
);
3293 IMP_PYCALLBACK__FONT(wxPyAuiTabArt
, wxAuiDefaultTabArt
, SetSelectedFont
);
3294 IMP_PYCALLBACK__FONT(wxPyAuiTabArt
, wxAuiDefaultTabArt
, SetMeasuringFont
);
3295 //IMP_PYCALLBACK_INT_WIN(wxPyAuiTabArt, wxAuiDefaultTabArt, GetBestTabCtrlSize);
3300 SWIGINTERN
int AuiNullDockInfo_set(PyObject
*_val
) {
3303 int res
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxAuiDockInfo
, 0 | 0);
3304 if (!SWIG_IsOK(res
)) {
3305 SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxAuiNullDockInfo""' of type '""wxAuiDockInfo""'");
3308 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxAuiNullDockInfo""' of type '""wxAuiDockInfo""'");
3310 wxAuiDockInfo
* temp
;
3311 temp
= reinterpret_cast< wxAuiDockInfo
* >(argp
);
3312 wxAuiNullDockInfo
= *temp
;
3313 if (SWIG_IsNewObj(res
)) delete temp
;
3322 SWIGINTERN PyObject
*AuiNullDockInfo_get(void) {
3323 PyObject
*pyobj
= 0;
3325 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxAuiNullDockInfo
), SWIGTYPE_p_wxAuiDockInfo
, 0 );
3330 SWIGINTERN
int AuiNullPaneInfo_set(PyObject
*_val
) {
3333 int res
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
3334 if (!SWIG_IsOK(res
)) {
3335 SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxAuiNullPaneInfo""' of type '""wxAuiPaneInfo""'");
3338 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxAuiNullPaneInfo""' of type '""wxAuiPaneInfo""'");
3340 wxAuiPaneInfo
* temp
;
3341 temp
= reinterpret_cast< wxAuiPaneInfo
* >(argp
);
3342 wxAuiNullPaneInfo
= *temp
;
3343 if (SWIG_IsNewObj(res
)) delete temp
;
3352 SWIGINTERN PyObject
*AuiNullPaneInfo_get(void) {
3353 PyObject
*pyobj
= 0;
3355 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxAuiNullPaneInfo
), SWIGTYPE_p_wxAuiPaneInfo
, 0 );
3360 SWIGINTERN PyObject
*_wrap_new_AuiPaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3361 PyObject
*resultobj
= 0;
3362 wxAuiPaneInfo
*result
= 0 ;
3364 if (!SWIG_Python_UnpackTuple(args
,"new_AuiPaneInfo",0,0,0)) SWIG_fail
;
3366 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3367 result
= (wxAuiPaneInfo
*)new wxAuiPaneInfo();
3368 wxPyEndAllowThreads(__tstate
);
3369 if (PyErr_Occurred()) SWIG_fail
;
3371 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_NEW
| 0 );
3378 SWIGINTERN PyObject
*_wrap_delete_AuiPaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3379 PyObject
*resultobj
= 0;
3380 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3383 PyObject
*swig_obj
[1] ;
3385 if (!args
) SWIG_fail
;
3387 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
3388 if (!SWIG_IsOK(res1
)) {
3389 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiPaneInfo" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
3391 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3393 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3396 wxPyEndAllowThreads(__tstate
);
3397 if (PyErr_Occurred()) SWIG_fail
;
3399 resultobj
= SWIG_Py_Void();
3406 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_SafeSet(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3407 PyObject
*resultobj
= 0;
3408 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3409 wxAuiPaneInfo arg2
;
3414 PyObject
* obj0
= 0 ;
3415 PyObject
* obj1
= 0 ;
3416 char * kwnames
[] = {
3417 (char *) "self",(char *) "source", NULL
3420 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_SafeSet",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3421 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3422 if (!SWIG_IsOK(res1
)) {
3423 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_SafeSet" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
3425 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3427 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
3428 if (!SWIG_IsOK(res2
)) {
3429 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_SafeSet" "', expected argument " "2"" of type '" "wxAuiPaneInfo""'");
3432 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiPaneInfo_SafeSet" "', expected argument " "2"" of type '" "wxAuiPaneInfo""'");
3434 wxAuiPaneInfo
* temp
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
3436 if (SWIG_IsNewObj(res2
)) delete temp
;
3440 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3441 (arg1
)->SafeSet(arg2
);
3442 wxPyEndAllowThreads(__tstate
);
3443 if (PyErr_Occurred()) SWIG_fail
;
3445 resultobj
= SWIG_Py_Void();
3452 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3453 PyObject
*resultobj
= 0;
3454 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3458 PyObject
*swig_obj
[1] ;
3460 if (!args
) SWIG_fail
;
3462 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3463 if (!SWIG_IsOK(res1
)) {
3464 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsOk" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3466 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3468 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3469 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsOk();
3470 wxPyEndAllowThreads(__tstate
);
3471 if (PyErr_Occurred()) SWIG_fail
;
3474 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3482 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsFixed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3483 PyObject
*resultobj
= 0;
3484 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3488 PyObject
*swig_obj
[1] ;
3490 if (!args
) SWIG_fail
;
3492 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3493 if (!SWIG_IsOK(res1
)) {
3494 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsFixed" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3496 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3498 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3499 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsFixed();
3500 wxPyEndAllowThreads(__tstate
);
3501 if (PyErr_Occurred()) SWIG_fail
;
3504 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3512 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsResizable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3513 PyObject
*resultobj
= 0;
3514 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3518 PyObject
*swig_obj
[1] ;
3520 if (!args
) SWIG_fail
;
3522 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3523 if (!SWIG_IsOK(res1
)) {
3524 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsResizable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3526 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3528 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3529 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsResizable();
3530 wxPyEndAllowThreads(__tstate
);
3531 if (PyErr_Occurred()) SWIG_fail
;
3534 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3542 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsShown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3543 PyObject
*resultobj
= 0;
3544 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3548 PyObject
*swig_obj
[1] ;
3550 if (!args
) SWIG_fail
;
3552 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3553 if (!SWIG_IsOK(res1
)) {
3554 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsShown" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3556 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3558 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3559 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsShown();
3560 wxPyEndAllowThreads(__tstate
);
3561 if (PyErr_Occurred()) SWIG_fail
;
3564 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3572 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsFloating(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3573 PyObject
*resultobj
= 0;
3574 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3578 PyObject
*swig_obj
[1] ;
3580 if (!args
) SWIG_fail
;
3582 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3583 if (!SWIG_IsOK(res1
)) {
3584 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsFloating" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3586 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3588 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3589 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsFloating();
3590 wxPyEndAllowThreads(__tstate
);
3591 if (PyErr_Occurred()) SWIG_fail
;
3594 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3602 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsDocked(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3603 PyObject
*resultobj
= 0;
3604 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3608 PyObject
*swig_obj
[1] ;
3610 if (!args
) SWIG_fail
;
3612 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3613 if (!SWIG_IsOK(res1
)) {
3614 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsDocked" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3616 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3618 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3619 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsDocked();
3620 wxPyEndAllowThreads(__tstate
);
3621 if (PyErr_Occurred()) SWIG_fail
;
3624 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3632 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsToolbar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3633 PyObject
*resultobj
= 0;
3634 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3638 PyObject
*swig_obj
[1] ;
3640 if (!args
) SWIG_fail
;
3642 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3643 if (!SWIG_IsOK(res1
)) {
3644 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsToolbar" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3646 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3648 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3649 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsToolbar();
3650 wxPyEndAllowThreads(__tstate
);
3651 if (PyErr_Occurred()) SWIG_fail
;
3654 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3662 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsTopDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3663 PyObject
*resultobj
= 0;
3664 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3668 PyObject
*swig_obj
[1] ;
3670 if (!args
) SWIG_fail
;
3672 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3673 if (!SWIG_IsOK(res1
)) {
3674 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsTopDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3676 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3678 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3679 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsTopDockable();
3680 wxPyEndAllowThreads(__tstate
);
3681 if (PyErr_Occurred()) SWIG_fail
;
3684 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3692 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsBottomDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3693 PyObject
*resultobj
= 0;
3694 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3698 PyObject
*swig_obj
[1] ;
3700 if (!args
) SWIG_fail
;
3702 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3703 if (!SWIG_IsOK(res1
)) {
3704 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsBottomDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3706 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3708 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3709 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsBottomDockable();
3710 wxPyEndAllowThreads(__tstate
);
3711 if (PyErr_Occurred()) SWIG_fail
;
3714 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3722 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsLeftDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3723 PyObject
*resultobj
= 0;
3724 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3728 PyObject
*swig_obj
[1] ;
3730 if (!args
) SWIG_fail
;
3732 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3733 if (!SWIG_IsOK(res1
)) {
3734 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsLeftDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3736 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3738 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3739 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsLeftDockable();
3740 wxPyEndAllowThreads(__tstate
);
3741 if (PyErr_Occurred()) SWIG_fail
;
3744 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3752 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsRightDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3753 PyObject
*resultobj
= 0;
3754 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3758 PyObject
*swig_obj
[1] ;
3760 if (!args
) SWIG_fail
;
3762 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3763 if (!SWIG_IsOK(res1
)) {
3764 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsRightDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3766 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3768 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3769 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsRightDockable();
3770 wxPyEndAllowThreads(__tstate
);
3771 if (PyErr_Occurred()) SWIG_fail
;
3774 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3782 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsFloatable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3783 PyObject
*resultobj
= 0;
3784 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3788 PyObject
*swig_obj
[1] ;
3790 if (!args
) SWIG_fail
;
3792 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3793 if (!SWIG_IsOK(res1
)) {
3794 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsFloatable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3796 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3798 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3799 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsFloatable();
3800 wxPyEndAllowThreads(__tstate
);
3801 if (PyErr_Occurred()) SWIG_fail
;
3804 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3812 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsMovable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3813 PyObject
*resultobj
= 0;
3814 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3818 PyObject
*swig_obj
[1] ;
3820 if (!args
) SWIG_fail
;
3822 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3823 if (!SWIG_IsOK(res1
)) {
3824 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsMovable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3826 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3828 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3829 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsMovable();
3830 wxPyEndAllowThreads(__tstate
);
3831 if (PyErr_Occurred()) SWIG_fail
;
3834 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3842 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsDestroyOnClose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3843 PyObject
*resultobj
= 0;
3844 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3848 PyObject
*swig_obj
[1] ;
3850 if (!args
) SWIG_fail
;
3852 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3853 if (!SWIG_IsOK(res1
)) {
3854 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsDestroyOnClose" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3856 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3858 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3859 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsDestroyOnClose();
3860 wxPyEndAllowThreads(__tstate
);
3861 if (PyErr_Occurred()) SWIG_fail
;
3864 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3872 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsMaximized(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3873 PyObject
*resultobj
= 0;
3874 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3878 PyObject
*swig_obj
[1] ;
3880 if (!args
) SWIG_fail
;
3882 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3883 if (!SWIG_IsOK(res1
)) {
3884 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsMaximized" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3886 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3888 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3889 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsMaximized();
3890 wxPyEndAllowThreads(__tstate
);
3891 if (PyErr_Occurred()) SWIG_fail
;
3894 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3902 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasCaption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3903 PyObject
*resultobj
= 0;
3904 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3908 PyObject
*swig_obj
[1] ;
3910 if (!args
) SWIG_fail
;
3912 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3913 if (!SWIG_IsOK(res1
)) {
3914 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasCaption" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3916 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3918 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3919 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasCaption();
3920 wxPyEndAllowThreads(__tstate
);
3921 if (PyErr_Occurred()) SWIG_fail
;
3924 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3932 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasGripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3933 PyObject
*resultobj
= 0;
3934 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3938 PyObject
*swig_obj
[1] ;
3940 if (!args
) SWIG_fail
;
3942 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3943 if (!SWIG_IsOK(res1
)) {
3944 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasGripper" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3946 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3948 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3949 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasGripper();
3950 wxPyEndAllowThreads(__tstate
);
3951 if (PyErr_Occurred()) SWIG_fail
;
3954 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3962 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3963 PyObject
*resultobj
= 0;
3964 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3968 PyObject
*swig_obj
[1] ;
3970 if (!args
) SWIG_fail
;
3972 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3973 if (!SWIG_IsOK(res1
)) {
3974 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasBorder" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3976 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3978 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3979 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasBorder();
3980 wxPyEndAllowThreads(__tstate
);
3981 if (PyErr_Occurred()) SWIG_fail
;
3984 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3992 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasCloseButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3993 PyObject
*resultobj
= 0;
3994 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3998 PyObject
*swig_obj
[1] ;
4000 if (!args
) SWIG_fail
;
4002 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4003 if (!SWIG_IsOK(res1
)) {
4004 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasCloseButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4006 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4008 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4009 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasCloseButton();
4010 wxPyEndAllowThreads(__tstate
);
4011 if (PyErr_Occurred()) SWIG_fail
;
4014 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4022 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasMaximizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4023 PyObject
*resultobj
= 0;
4024 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4028 PyObject
*swig_obj
[1] ;
4030 if (!args
) SWIG_fail
;
4032 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4033 if (!SWIG_IsOK(res1
)) {
4034 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasMaximizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4036 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4038 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4039 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasMaximizeButton();
4040 wxPyEndAllowThreads(__tstate
);
4041 if (PyErr_Occurred()) SWIG_fail
;
4044 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4052 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasMinimizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4053 PyObject
*resultobj
= 0;
4054 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4058 PyObject
*swig_obj
[1] ;
4060 if (!args
) SWIG_fail
;
4062 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4063 if (!SWIG_IsOK(res1
)) {
4064 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasMinimizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4066 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4068 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4069 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasMinimizeButton();
4070 wxPyEndAllowThreads(__tstate
);
4071 if (PyErr_Occurred()) SWIG_fail
;
4074 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4082 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasPinButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4083 PyObject
*resultobj
= 0;
4084 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4088 PyObject
*swig_obj
[1] ;
4090 if (!args
) SWIG_fail
;
4092 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4093 if (!SWIG_IsOK(res1
)) {
4094 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasPinButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4096 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4098 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4099 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasPinButton();
4100 wxPyEndAllowThreads(__tstate
);
4101 if (PyErr_Occurred()) SWIG_fail
;
4104 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4112 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasGripperTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4113 PyObject
*resultobj
= 0;
4114 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4118 PyObject
*swig_obj
[1] ;
4120 if (!args
) SWIG_fail
;
4122 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4123 if (!SWIG_IsOK(res1
)) {
4124 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasGripperTop" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4126 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4128 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4129 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasGripperTop();
4130 wxPyEndAllowThreads(__tstate
);
4131 if (PyErr_Occurred()) SWIG_fail
;
4134 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4142 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Window(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4143 PyObject
*resultobj
= 0;
4144 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4145 wxWindow
*arg2
= (wxWindow
*) 0 ;
4146 wxAuiPaneInfo
*result
= 0 ;
4151 PyObject
* obj0
= 0 ;
4152 PyObject
* obj1
= 0 ;
4153 char * kwnames
[] = {
4154 (char *) "self",(char *) "w", NULL
4157 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Window",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4158 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4159 if (!SWIG_IsOK(res1
)) {
4160 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Window" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4162 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4163 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
4164 if (!SWIG_IsOK(res2
)) {
4165 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_Window" "', expected argument " "2"" of type '" "wxWindow *""'");
4167 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
4169 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4171 wxAuiPaneInfo
&_result_ref
= (arg1
)->Window(arg2
);
4172 result
= (wxAuiPaneInfo
*) &_result_ref
;
4174 wxPyEndAllowThreads(__tstate
);
4175 if (PyErr_Occurred()) SWIG_fail
;
4178 resultobj
= obj0
; Py_INCREF(resultobj
);
4186 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Name(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4187 PyObject
*resultobj
= 0;
4188 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4189 wxString
*arg2
= 0 ;
4190 wxAuiPaneInfo
*result
= 0 ;
4193 bool temp2
= false ;
4194 PyObject
* obj0
= 0 ;
4195 PyObject
* obj1
= 0 ;
4196 char * kwnames
[] = {
4197 (char *) "self",(char *) "n", NULL
4200 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Name",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4201 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4202 if (!SWIG_IsOK(res1
)) {
4203 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Name" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4205 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4207 arg2
= wxString_in_helper(obj1
);
4208 if (arg2
== NULL
) SWIG_fail
;
4212 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4214 wxAuiPaneInfo
&_result_ref
= (arg1
)->Name((wxString
const &)*arg2
);
4215 result
= (wxAuiPaneInfo
*) &_result_ref
;
4217 wxPyEndAllowThreads(__tstate
);
4218 if (PyErr_Occurred()) SWIG_fail
;
4221 resultobj
= obj0
; Py_INCREF(resultobj
);
4237 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Caption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4238 PyObject
*resultobj
= 0;
4239 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4240 wxString
*arg2
= 0 ;
4241 wxAuiPaneInfo
*result
= 0 ;
4244 bool temp2
= false ;
4245 PyObject
* obj0
= 0 ;
4246 PyObject
* obj1
= 0 ;
4247 char * kwnames
[] = {
4248 (char *) "self",(char *) "c", NULL
4251 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Caption",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4252 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4253 if (!SWIG_IsOK(res1
)) {
4254 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Caption" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4256 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4258 arg2
= wxString_in_helper(obj1
);
4259 if (arg2
== NULL
) SWIG_fail
;
4263 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4265 wxAuiPaneInfo
&_result_ref
= (arg1
)->Caption((wxString
const &)*arg2
);
4266 result
= (wxAuiPaneInfo
*) &_result_ref
;
4268 wxPyEndAllowThreads(__tstate
);
4269 if (PyErr_Occurred()) SWIG_fail
;
4272 resultobj
= obj0
; Py_INCREF(resultobj
);
4288 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Left(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4289 PyObject
*resultobj
= 0;
4290 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4291 wxAuiPaneInfo
*result
= 0 ;
4294 PyObject
*swig_obj
[1] ;
4296 if (!args
) SWIG_fail
;
4298 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4299 if (!SWIG_IsOK(res1
)) {
4300 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Left" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4302 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4304 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4306 wxAuiPaneInfo
&_result_ref
= (arg1
)->Left();
4307 result
= (wxAuiPaneInfo
*) &_result_ref
;
4309 wxPyEndAllowThreads(__tstate
);
4310 if (PyErr_Occurred()) SWIG_fail
;
4313 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4321 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Right(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4322 PyObject
*resultobj
= 0;
4323 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4324 wxAuiPaneInfo
*result
= 0 ;
4327 PyObject
*swig_obj
[1] ;
4329 if (!args
) SWIG_fail
;
4331 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4332 if (!SWIG_IsOK(res1
)) {
4333 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Right" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4335 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4337 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4339 wxAuiPaneInfo
&_result_ref
= (arg1
)->Right();
4340 result
= (wxAuiPaneInfo
*) &_result_ref
;
4342 wxPyEndAllowThreads(__tstate
);
4343 if (PyErr_Occurred()) SWIG_fail
;
4346 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4354 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Top(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4355 PyObject
*resultobj
= 0;
4356 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4357 wxAuiPaneInfo
*result
= 0 ;
4360 PyObject
*swig_obj
[1] ;
4362 if (!args
) SWIG_fail
;
4364 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4365 if (!SWIG_IsOK(res1
)) {
4366 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Top" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4368 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4370 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4372 wxAuiPaneInfo
&_result_ref
= (arg1
)->Top();
4373 result
= (wxAuiPaneInfo
*) &_result_ref
;
4375 wxPyEndAllowThreads(__tstate
);
4376 if (PyErr_Occurred()) SWIG_fail
;
4379 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4387 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Bottom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4388 PyObject
*resultobj
= 0;
4389 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4390 wxAuiPaneInfo
*result
= 0 ;
4393 PyObject
*swig_obj
[1] ;
4395 if (!args
) SWIG_fail
;
4397 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4398 if (!SWIG_IsOK(res1
)) {
4399 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Bottom" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4401 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4403 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4405 wxAuiPaneInfo
&_result_ref
= (arg1
)->Bottom();
4406 result
= (wxAuiPaneInfo
*) &_result_ref
;
4408 wxPyEndAllowThreads(__tstate
);
4409 if (PyErr_Occurred()) SWIG_fail
;
4412 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4420 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Center(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4421 PyObject
*resultobj
= 0;
4422 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4423 wxAuiPaneInfo
*result
= 0 ;
4426 PyObject
*swig_obj
[1] ;
4428 if (!args
) SWIG_fail
;
4430 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4431 if (!SWIG_IsOK(res1
)) {
4432 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Center" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4434 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4436 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4438 wxAuiPaneInfo
&_result_ref
= (arg1
)->Center();
4439 result
= (wxAuiPaneInfo
*) &_result_ref
;
4441 wxPyEndAllowThreads(__tstate
);
4442 if (PyErr_Occurred()) SWIG_fail
;
4445 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4453 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Centre(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4454 PyObject
*resultobj
= 0;
4455 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4456 wxAuiPaneInfo
*result
= 0 ;
4459 PyObject
*swig_obj
[1] ;
4461 if (!args
) SWIG_fail
;
4463 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4464 if (!SWIG_IsOK(res1
)) {
4465 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Centre" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4467 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4469 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4471 wxAuiPaneInfo
&_result_ref
= (arg1
)->Centre();
4472 result
= (wxAuiPaneInfo
*) &_result_ref
;
4474 wxPyEndAllowThreads(__tstate
);
4475 if (PyErr_Occurred()) SWIG_fail
;
4478 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4486 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Direction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4487 PyObject
*resultobj
= 0;
4488 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4490 wxAuiPaneInfo
*result
= 0 ;
4495 PyObject
* obj0
= 0 ;
4496 PyObject
* obj1
= 0 ;
4497 char * kwnames
[] = {
4498 (char *) "self",(char *) "direction", NULL
4501 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Direction",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4502 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4503 if (!SWIG_IsOK(res1
)) {
4504 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Direction" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4506 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4507 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4508 if (!SWIG_IsOK(ecode2
)) {
4509 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Direction" "', expected argument " "2"" of type '" "int""'");
4511 arg2
= static_cast< int >(val2
);
4513 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4515 wxAuiPaneInfo
&_result_ref
= (arg1
)->Direction(arg2
);
4516 result
= (wxAuiPaneInfo
*) &_result_ref
;
4518 wxPyEndAllowThreads(__tstate
);
4519 if (PyErr_Occurred()) SWIG_fail
;
4522 resultobj
= obj0
; Py_INCREF(resultobj
);
4530 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Layer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4531 PyObject
*resultobj
= 0;
4532 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4534 wxAuiPaneInfo
*result
= 0 ;
4539 PyObject
* obj0
= 0 ;
4540 PyObject
* obj1
= 0 ;
4541 char * kwnames
[] = {
4542 (char *) "self",(char *) "layer", NULL
4545 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Layer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4546 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4547 if (!SWIG_IsOK(res1
)) {
4548 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Layer" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4550 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4551 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4552 if (!SWIG_IsOK(ecode2
)) {
4553 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Layer" "', expected argument " "2"" of type '" "int""'");
4555 arg2
= static_cast< int >(val2
);
4557 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4559 wxAuiPaneInfo
&_result_ref
= (arg1
)->Layer(arg2
);
4560 result
= (wxAuiPaneInfo
*) &_result_ref
;
4562 wxPyEndAllowThreads(__tstate
);
4563 if (PyErr_Occurred()) SWIG_fail
;
4566 resultobj
= obj0
; Py_INCREF(resultobj
);
4574 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Row(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4575 PyObject
*resultobj
= 0;
4576 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4578 wxAuiPaneInfo
*result
= 0 ;
4583 PyObject
* obj0
= 0 ;
4584 PyObject
* obj1
= 0 ;
4585 char * kwnames
[] = {
4586 (char *) "self",(char *) "row", NULL
4589 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Row",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4590 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4591 if (!SWIG_IsOK(res1
)) {
4592 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Row" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4594 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4595 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4596 if (!SWIG_IsOK(ecode2
)) {
4597 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Row" "', expected argument " "2"" of type '" "int""'");
4599 arg2
= static_cast< int >(val2
);
4601 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4603 wxAuiPaneInfo
&_result_ref
= (arg1
)->Row(arg2
);
4604 result
= (wxAuiPaneInfo
*) &_result_ref
;
4606 wxPyEndAllowThreads(__tstate
);
4607 if (PyErr_Occurred()) SWIG_fail
;
4610 resultobj
= obj0
; Py_INCREF(resultobj
);
4618 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Position(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4619 PyObject
*resultobj
= 0;
4620 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4622 wxAuiPaneInfo
*result
= 0 ;
4627 PyObject
* obj0
= 0 ;
4628 PyObject
* obj1
= 0 ;
4629 char * kwnames
[] = {
4630 (char *) "self",(char *) "pos", NULL
4633 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Position",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4634 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4635 if (!SWIG_IsOK(res1
)) {
4636 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Position" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4638 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4639 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4640 if (!SWIG_IsOK(ecode2
)) {
4641 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Position" "', expected argument " "2"" of type '" "int""'");
4643 arg2
= static_cast< int >(val2
);
4645 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4647 wxAuiPaneInfo
&_result_ref
= (arg1
)->Position(arg2
);
4648 result
= (wxAuiPaneInfo
*) &_result_ref
;
4650 wxPyEndAllowThreads(__tstate
);
4651 if (PyErr_Occurred()) SWIG_fail
;
4654 resultobj
= obj0
; Py_INCREF(resultobj
);
4662 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_BestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4663 PyObject
*resultobj
= 0;
4664 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4666 wxAuiPaneInfo
*result
= 0 ;
4670 PyObject
* obj0
= 0 ;
4671 PyObject
* obj1
= 0 ;
4672 char * kwnames
[] = {
4673 (char *) "self",(char *) "size", NULL
4676 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_BestSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4677 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4678 if (!SWIG_IsOK(res1
)) {
4679 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_BestSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4681 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4684 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4687 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4689 wxAuiPaneInfo
&_result_ref
= (arg1
)->BestSize((wxSize
const &)*arg2
);
4690 result
= (wxAuiPaneInfo
*) &_result_ref
;
4692 wxPyEndAllowThreads(__tstate
);
4693 if (PyErr_Occurred()) SWIG_fail
;
4696 resultobj
= obj0
; Py_INCREF(resultobj
);
4704 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MinSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4705 PyObject
*resultobj
= 0;
4706 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4708 wxAuiPaneInfo
*result
= 0 ;
4712 PyObject
* obj0
= 0 ;
4713 PyObject
* obj1
= 0 ;
4714 char * kwnames
[] = {
4715 (char *) "self",(char *) "size", NULL
4718 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_MinSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4719 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4720 if (!SWIG_IsOK(res1
)) {
4721 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MinSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4723 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4726 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4729 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4731 wxAuiPaneInfo
&_result_ref
= (arg1
)->MinSize((wxSize
const &)*arg2
);
4732 result
= (wxAuiPaneInfo
*) &_result_ref
;
4734 wxPyEndAllowThreads(__tstate
);
4735 if (PyErr_Occurred()) SWIG_fail
;
4738 resultobj
= obj0
; Py_INCREF(resultobj
);
4746 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MaxSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4747 PyObject
*resultobj
= 0;
4748 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4750 wxAuiPaneInfo
*result
= 0 ;
4754 PyObject
* obj0
= 0 ;
4755 PyObject
* obj1
= 0 ;
4756 char * kwnames
[] = {
4757 (char *) "self",(char *) "size", NULL
4760 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_MaxSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4761 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4762 if (!SWIG_IsOK(res1
)) {
4763 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MaxSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4765 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4768 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4771 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4773 wxAuiPaneInfo
&_result_ref
= (arg1
)->MaxSize((wxSize
const &)*arg2
);
4774 result
= (wxAuiPaneInfo
*) &_result_ref
;
4776 wxPyEndAllowThreads(__tstate
);
4777 if (PyErr_Occurred()) SWIG_fail
;
4780 resultobj
= obj0
; Py_INCREF(resultobj
);
4788 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_FloatingPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4789 PyObject
*resultobj
= 0;
4790 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4792 wxAuiPaneInfo
*result
= 0 ;
4796 PyObject
* obj0
= 0 ;
4797 PyObject
* obj1
= 0 ;
4798 char * kwnames
[] = {
4799 (char *) "self",(char *) "pos", NULL
4802 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_FloatingPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4803 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4804 if (!SWIG_IsOK(res1
)) {
4805 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_FloatingPosition" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4807 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4810 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
4813 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4815 wxAuiPaneInfo
&_result_ref
= (arg1
)->FloatingPosition((wxPoint
const &)*arg2
);
4816 result
= (wxAuiPaneInfo
*) &_result_ref
;
4818 wxPyEndAllowThreads(__tstate
);
4819 if (PyErr_Occurred()) SWIG_fail
;
4822 resultobj
= obj0
; Py_INCREF(resultobj
);
4830 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_FloatingSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4831 PyObject
*resultobj
= 0;
4832 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4834 wxAuiPaneInfo
*result
= 0 ;
4838 PyObject
* obj0
= 0 ;
4839 PyObject
* obj1
= 0 ;
4840 char * kwnames
[] = {
4841 (char *) "self",(char *) "size", NULL
4844 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_FloatingSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4845 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4846 if (!SWIG_IsOK(res1
)) {
4847 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_FloatingSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4849 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4852 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4855 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4857 wxAuiPaneInfo
&_result_ref
= (arg1
)->FloatingSize((wxSize
const &)*arg2
);
4858 result
= (wxAuiPaneInfo
*) &_result_ref
;
4860 wxPyEndAllowThreads(__tstate
);
4861 if (PyErr_Occurred()) SWIG_fail
;
4864 resultobj
= obj0
; Py_INCREF(resultobj
);
4872 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Fixed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4873 PyObject
*resultobj
= 0;
4874 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4875 wxAuiPaneInfo
*result
= 0 ;
4878 PyObject
*swig_obj
[1] ;
4880 if (!args
) SWIG_fail
;
4882 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4883 if (!SWIG_IsOK(res1
)) {
4884 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Fixed" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4886 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4888 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4890 wxAuiPaneInfo
&_result_ref
= (arg1
)->Fixed();
4891 result
= (wxAuiPaneInfo
*) &_result_ref
;
4893 wxPyEndAllowThreads(__tstate
);
4894 if (PyErr_Occurred()) SWIG_fail
;
4897 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4905 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Resizable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4906 PyObject
*resultobj
= 0;
4907 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4908 bool arg2
= (bool) true ;
4909 wxAuiPaneInfo
*result
= 0 ;
4914 PyObject
* obj0
= 0 ;
4915 PyObject
* obj1
= 0 ;
4916 char * kwnames
[] = {
4917 (char *) "self",(char *) "resizable", NULL
4920 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Resizable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4921 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4922 if (!SWIG_IsOK(res1
)) {
4923 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Resizable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4925 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4927 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4928 if (!SWIG_IsOK(ecode2
)) {
4929 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Resizable" "', expected argument " "2"" of type '" "bool""'");
4931 arg2
= static_cast< bool >(val2
);
4934 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4936 wxAuiPaneInfo
&_result_ref
= (arg1
)->Resizable(arg2
);
4937 result
= (wxAuiPaneInfo
*) &_result_ref
;
4939 wxPyEndAllowThreads(__tstate
);
4940 if (PyErr_Occurred()) SWIG_fail
;
4943 resultobj
= obj0
; Py_INCREF(resultobj
);
4951 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Dock(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4952 PyObject
*resultobj
= 0;
4953 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4954 wxAuiPaneInfo
*result
= 0 ;
4957 PyObject
*swig_obj
[1] ;
4959 if (!args
) SWIG_fail
;
4961 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4962 if (!SWIG_IsOK(res1
)) {
4963 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Dock" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4965 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4967 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4969 wxAuiPaneInfo
&_result_ref
= (arg1
)->Dock();
4970 result
= (wxAuiPaneInfo
*) &_result_ref
;
4972 wxPyEndAllowThreads(__tstate
);
4973 if (PyErr_Occurred()) SWIG_fail
;
4976 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4984 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Float(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4985 PyObject
*resultobj
= 0;
4986 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4987 wxAuiPaneInfo
*result
= 0 ;
4990 PyObject
*swig_obj
[1] ;
4992 if (!args
) SWIG_fail
;
4994 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4995 if (!SWIG_IsOK(res1
)) {
4996 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Float" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4998 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5000 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5002 wxAuiPaneInfo
&_result_ref
= (arg1
)->Float();
5003 result
= (wxAuiPaneInfo
*) &_result_ref
;
5005 wxPyEndAllowThreads(__tstate
);
5006 if (PyErr_Occurred()) SWIG_fail
;
5009 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5017 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Hide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5018 PyObject
*resultobj
= 0;
5019 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5020 wxAuiPaneInfo
*result
= 0 ;
5023 PyObject
*swig_obj
[1] ;
5025 if (!args
) SWIG_fail
;
5027 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5028 if (!SWIG_IsOK(res1
)) {
5029 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Hide" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5031 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5033 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5035 wxAuiPaneInfo
&_result_ref
= (arg1
)->Hide();
5036 result
= (wxAuiPaneInfo
*) &_result_ref
;
5038 wxPyEndAllowThreads(__tstate
);
5039 if (PyErr_Occurred()) SWIG_fail
;
5042 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5050 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Show(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5051 PyObject
*resultobj
= 0;
5052 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5053 bool arg2
= (bool) true ;
5054 wxAuiPaneInfo
*result
= 0 ;
5059 PyObject
* obj0
= 0 ;
5060 PyObject
* obj1
= 0 ;
5061 char * kwnames
[] = {
5062 (char *) "self",(char *) "show", NULL
5065 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Show",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5066 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5067 if (!SWIG_IsOK(res1
)) {
5068 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Show" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5070 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5072 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5073 if (!SWIG_IsOK(ecode2
)) {
5074 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Show" "', expected argument " "2"" of type '" "bool""'");
5076 arg2
= static_cast< bool >(val2
);
5079 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5081 wxAuiPaneInfo
&_result_ref
= (arg1
)->Show(arg2
);
5082 result
= (wxAuiPaneInfo
*) &_result_ref
;
5084 wxPyEndAllowThreads(__tstate
);
5085 if (PyErr_Occurred()) SWIG_fail
;
5088 resultobj
= obj0
; Py_INCREF(resultobj
);
5096 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CaptionVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5097 PyObject
*resultobj
= 0;
5098 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5099 bool arg2
= (bool) true ;
5100 wxAuiPaneInfo
*result
= 0 ;
5105 PyObject
* obj0
= 0 ;
5106 PyObject
* obj1
= 0 ;
5107 char * kwnames
[] = {
5108 (char *) "self",(char *) "visible", NULL
5111 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_CaptionVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5112 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5113 if (!SWIG_IsOK(res1
)) {
5114 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CaptionVisible" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5116 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5118 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5119 if (!SWIG_IsOK(ecode2
)) {
5120 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_CaptionVisible" "', expected argument " "2"" of type '" "bool""'");
5122 arg2
= static_cast< bool >(val2
);
5125 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5127 wxAuiPaneInfo
&_result_ref
= (arg1
)->CaptionVisible(arg2
);
5128 result
= (wxAuiPaneInfo
*) &_result_ref
;
5130 wxPyEndAllowThreads(__tstate
);
5131 if (PyErr_Occurred()) SWIG_fail
;
5134 resultobj
= obj0
; Py_INCREF(resultobj
);
5142 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Maximize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5143 PyObject
*resultobj
= 0;
5144 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5145 wxAuiPaneInfo
*result
= 0 ;
5148 PyObject
*swig_obj
[1] ;
5150 if (!args
) SWIG_fail
;
5152 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5153 if (!SWIG_IsOK(res1
)) {
5154 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Maximize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5156 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5158 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5160 wxAuiPaneInfo
&_result_ref
= (arg1
)->Maximize();
5161 result
= (wxAuiPaneInfo
*) &_result_ref
;
5163 wxPyEndAllowThreads(__tstate
);
5164 if (PyErr_Occurred()) SWIG_fail
;
5167 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5175 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Restore(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5176 PyObject
*resultobj
= 0;
5177 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5178 wxAuiPaneInfo
*result
= 0 ;
5181 PyObject
*swig_obj
[1] ;
5183 if (!args
) SWIG_fail
;
5185 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5186 if (!SWIG_IsOK(res1
)) {
5187 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Restore" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5189 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5191 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5193 wxAuiPaneInfo
&_result_ref
= (arg1
)->Restore();
5194 result
= (wxAuiPaneInfo
*) &_result_ref
;
5196 wxPyEndAllowThreads(__tstate
);
5197 if (PyErr_Occurred()) SWIG_fail
;
5200 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5208 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_PaneBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5209 PyObject
*resultobj
= 0;
5210 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5211 bool arg2
= (bool) true ;
5212 wxAuiPaneInfo
*result
= 0 ;
5217 PyObject
* obj0
= 0 ;
5218 PyObject
* obj1
= 0 ;
5219 char * kwnames
[] = {
5220 (char *) "self",(char *) "visible", NULL
5223 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_PaneBorder",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5224 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5225 if (!SWIG_IsOK(res1
)) {
5226 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_PaneBorder" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5228 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5230 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5231 if (!SWIG_IsOK(ecode2
)) {
5232 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_PaneBorder" "', expected argument " "2"" of type '" "bool""'");
5234 arg2
= static_cast< bool >(val2
);
5237 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5239 wxAuiPaneInfo
&_result_ref
= (arg1
)->PaneBorder(arg2
);
5240 result
= (wxAuiPaneInfo
*) &_result_ref
;
5242 wxPyEndAllowThreads(__tstate
);
5243 if (PyErr_Occurred()) SWIG_fail
;
5246 resultobj
= obj0
; Py_INCREF(resultobj
);
5254 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Gripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5255 PyObject
*resultobj
= 0;
5256 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5257 bool arg2
= (bool) true ;
5258 wxAuiPaneInfo
*result
= 0 ;
5263 PyObject
* obj0
= 0 ;
5264 PyObject
* obj1
= 0 ;
5265 char * kwnames
[] = {
5266 (char *) "self",(char *) "visible", NULL
5269 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Gripper",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5270 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5271 if (!SWIG_IsOK(res1
)) {
5272 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Gripper" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5274 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5276 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5277 if (!SWIG_IsOK(ecode2
)) {
5278 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Gripper" "', expected argument " "2"" of type '" "bool""'");
5280 arg2
= static_cast< bool >(val2
);
5283 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5285 wxAuiPaneInfo
&_result_ref
= (arg1
)->Gripper(arg2
);
5286 result
= (wxAuiPaneInfo
*) &_result_ref
;
5288 wxPyEndAllowThreads(__tstate
);
5289 if (PyErr_Occurred()) SWIG_fail
;
5292 resultobj
= obj0
; Py_INCREF(resultobj
);
5300 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_GripperTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5301 PyObject
*resultobj
= 0;
5302 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5303 bool arg2
= (bool) true ;
5304 wxAuiPaneInfo
*result
= 0 ;
5309 PyObject
* obj0
= 0 ;
5310 PyObject
* obj1
= 0 ;
5311 char * kwnames
[] = {
5312 (char *) "self",(char *) "attop", NULL
5315 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_GripperTop",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5316 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5317 if (!SWIG_IsOK(res1
)) {
5318 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_GripperTop" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5320 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5322 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5323 if (!SWIG_IsOK(ecode2
)) {
5324 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_GripperTop" "', expected argument " "2"" of type '" "bool""'");
5326 arg2
= static_cast< bool >(val2
);
5329 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5331 wxAuiPaneInfo
&_result_ref
= (arg1
)->GripperTop(arg2
);
5332 result
= (wxAuiPaneInfo
*) &_result_ref
;
5334 wxPyEndAllowThreads(__tstate
);
5335 if (PyErr_Occurred()) SWIG_fail
;
5338 resultobj
= obj0
; Py_INCREF(resultobj
);
5346 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CloseButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5347 PyObject
*resultobj
= 0;
5348 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5349 bool arg2
= (bool) true ;
5350 wxAuiPaneInfo
*result
= 0 ;
5355 PyObject
* obj0
= 0 ;
5356 PyObject
* obj1
= 0 ;
5357 char * kwnames
[] = {
5358 (char *) "self",(char *) "visible", NULL
5361 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_CloseButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5362 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5363 if (!SWIG_IsOK(res1
)) {
5364 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CloseButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5366 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5368 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5369 if (!SWIG_IsOK(ecode2
)) {
5370 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_CloseButton" "', expected argument " "2"" of type '" "bool""'");
5372 arg2
= static_cast< bool >(val2
);
5375 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5377 wxAuiPaneInfo
&_result_ref
= (arg1
)->CloseButton(arg2
);
5378 result
= (wxAuiPaneInfo
*) &_result_ref
;
5380 wxPyEndAllowThreads(__tstate
);
5381 if (PyErr_Occurred()) SWIG_fail
;
5384 resultobj
= obj0
; Py_INCREF(resultobj
);
5392 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MaximizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5393 PyObject
*resultobj
= 0;
5394 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5395 bool arg2
= (bool) true ;
5396 wxAuiPaneInfo
*result
= 0 ;
5401 PyObject
* obj0
= 0 ;
5402 PyObject
* obj1
= 0 ;
5403 char * kwnames
[] = {
5404 (char *) "self",(char *) "visible", NULL
5407 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_MaximizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5408 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5409 if (!SWIG_IsOK(res1
)) {
5410 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MaximizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5412 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5414 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5415 if (!SWIG_IsOK(ecode2
)) {
5416 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_MaximizeButton" "', expected argument " "2"" of type '" "bool""'");
5418 arg2
= static_cast< bool >(val2
);
5421 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5423 wxAuiPaneInfo
&_result_ref
= (arg1
)->MaximizeButton(arg2
);
5424 result
= (wxAuiPaneInfo
*) &_result_ref
;
5426 wxPyEndAllowThreads(__tstate
);
5427 if (PyErr_Occurred()) SWIG_fail
;
5430 resultobj
= obj0
; Py_INCREF(resultobj
);
5438 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MinimizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5439 PyObject
*resultobj
= 0;
5440 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5441 bool arg2
= (bool) true ;
5442 wxAuiPaneInfo
*result
= 0 ;
5447 PyObject
* obj0
= 0 ;
5448 PyObject
* obj1
= 0 ;
5449 char * kwnames
[] = {
5450 (char *) "self",(char *) "visible", NULL
5453 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_MinimizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5454 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5455 if (!SWIG_IsOK(res1
)) {
5456 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MinimizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5458 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5460 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5461 if (!SWIG_IsOK(ecode2
)) {
5462 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_MinimizeButton" "', expected argument " "2"" of type '" "bool""'");
5464 arg2
= static_cast< bool >(val2
);
5467 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5469 wxAuiPaneInfo
&_result_ref
= (arg1
)->MinimizeButton(arg2
);
5470 result
= (wxAuiPaneInfo
*) &_result_ref
;
5472 wxPyEndAllowThreads(__tstate
);
5473 if (PyErr_Occurred()) SWIG_fail
;
5476 resultobj
= obj0
; Py_INCREF(resultobj
);
5484 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_PinButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5485 PyObject
*resultobj
= 0;
5486 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5487 bool arg2
= (bool) true ;
5488 wxAuiPaneInfo
*result
= 0 ;
5493 PyObject
* obj0
= 0 ;
5494 PyObject
* obj1
= 0 ;
5495 char * kwnames
[] = {
5496 (char *) "self",(char *) "visible", NULL
5499 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_PinButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5500 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5501 if (!SWIG_IsOK(res1
)) {
5502 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_PinButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5504 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5506 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5507 if (!SWIG_IsOK(ecode2
)) {
5508 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_PinButton" "', expected argument " "2"" of type '" "bool""'");
5510 arg2
= static_cast< bool >(val2
);
5513 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5515 wxAuiPaneInfo
&_result_ref
= (arg1
)->PinButton(arg2
);
5516 result
= (wxAuiPaneInfo
*) &_result_ref
;
5518 wxPyEndAllowThreads(__tstate
);
5519 if (PyErr_Occurred()) SWIG_fail
;
5522 resultobj
= obj0
; Py_INCREF(resultobj
);
5530 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_DestroyOnClose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5531 PyObject
*resultobj
= 0;
5532 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5533 bool arg2
= (bool) true ;
5534 wxAuiPaneInfo
*result
= 0 ;
5539 PyObject
* obj0
= 0 ;
5540 PyObject
* obj1
= 0 ;
5541 char * kwnames
[] = {
5542 (char *) "self",(char *) "b", NULL
5545 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_DestroyOnClose",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5546 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5547 if (!SWIG_IsOK(res1
)) {
5548 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_DestroyOnClose" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5550 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5552 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5553 if (!SWIG_IsOK(ecode2
)) {
5554 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_DestroyOnClose" "', expected argument " "2"" of type '" "bool""'");
5556 arg2
= static_cast< bool >(val2
);
5559 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5561 wxAuiPaneInfo
&_result_ref
= (arg1
)->DestroyOnClose(arg2
);
5562 result
= (wxAuiPaneInfo
*) &_result_ref
;
5564 wxPyEndAllowThreads(__tstate
);
5565 if (PyErr_Occurred()) SWIG_fail
;
5568 resultobj
= obj0
; Py_INCREF(resultobj
);
5576 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_TopDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5577 PyObject
*resultobj
= 0;
5578 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5579 bool arg2
= (bool) true ;
5580 wxAuiPaneInfo
*result
= 0 ;
5585 PyObject
* obj0
= 0 ;
5586 PyObject
* obj1
= 0 ;
5587 char * kwnames
[] = {
5588 (char *) "self",(char *) "b", NULL
5591 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_TopDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5592 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5593 if (!SWIG_IsOK(res1
)) {
5594 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_TopDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5596 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5598 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5599 if (!SWIG_IsOK(ecode2
)) {
5600 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_TopDockable" "', expected argument " "2"" of type '" "bool""'");
5602 arg2
= static_cast< bool >(val2
);
5605 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5607 wxAuiPaneInfo
&_result_ref
= (arg1
)->TopDockable(arg2
);
5608 result
= (wxAuiPaneInfo
*) &_result_ref
;
5610 wxPyEndAllowThreads(__tstate
);
5611 if (PyErr_Occurred()) SWIG_fail
;
5614 resultobj
= obj0
; Py_INCREF(resultobj
);
5622 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_BottomDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5623 PyObject
*resultobj
= 0;
5624 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5625 bool arg2
= (bool) true ;
5626 wxAuiPaneInfo
*result
= 0 ;
5631 PyObject
* obj0
= 0 ;
5632 PyObject
* obj1
= 0 ;
5633 char * kwnames
[] = {
5634 (char *) "self",(char *) "b", NULL
5637 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_BottomDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5638 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5639 if (!SWIG_IsOK(res1
)) {
5640 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_BottomDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5642 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5644 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5645 if (!SWIG_IsOK(ecode2
)) {
5646 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_BottomDockable" "', expected argument " "2"" of type '" "bool""'");
5648 arg2
= static_cast< bool >(val2
);
5651 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5653 wxAuiPaneInfo
&_result_ref
= (arg1
)->BottomDockable(arg2
);
5654 result
= (wxAuiPaneInfo
*) &_result_ref
;
5656 wxPyEndAllowThreads(__tstate
);
5657 if (PyErr_Occurred()) SWIG_fail
;
5660 resultobj
= obj0
; Py_INCREF(resultobj
);
5668 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_LeftDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5669 PyObject
*resultobj
= 0;
5670 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5671 bool arg2
= (bool) true ;
5672 wxAuiPaneInfo
*result
= 0 ;
5677 PyObject
* obj0
= 0 ;
5678 PyObject
* obj1
= 0 ;
5679 char * kwnames
[] = {
5680 (char *) "self",(char *) "b", NULL
5683 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_LeftDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5684 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5685 if (!SWIG_IsOK(res1
)) {
5686 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_LeftDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5688 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5690 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5691 if (!SWIG_IsOK(ecode2
)) {
5692 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_LeftDockable" "', expected argument " "2"" of type '" "bool""'");
5694 arg2
= static_cast< bool >(val2
);
5697 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5699 wxAuiPaneInfo
&_result_ref
= (arg1
)->LeftDockable(arg2
);
5700 result
= (wxAuiPaneInfo
*) &_result_ref
;
5702 wxPyEndAllowThreads(__tstate
);
5703 if (PyErr_Occurred()) SWIG_fail
;
5706 resultobj
= obj0
; Py_INCREF(resultobj
);
5714 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_RightDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5715 PyObject
*resultobj
= 0;
5716 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5717 bool arg2
= (bool) true ;
5718 wxAuiPaneInfo
*result
= 0 ;
5723 PyObject
* obj0
= 0 ;
5724 PyObject
* obj1
= 0 ;
5725 char * kwnames
[] = {
5726 (char *) "self",(char *) "b", NULL
5729 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_RightDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5730 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5731 if (!SWIG_IsOK(res1
)) {
5732 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_RightDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5734 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5736 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5737 if (!SWIG_IsOK(ecode2
)) {
5738 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_RightDockable" "', expected argument " "2"" of type '" "bool""'");
5740 arg2
= static_cast< bool >(val2
);
5743 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5745 wxAuiPaneInfo
&_result_ref
= (arg1
)->RightDockable(arg2
);
5746 result
= (wxAuiPaneInfo
*) &_result_ref
;
5748 wxPyEndAllowThreads(__tstate
);
5749 if (PyErr_Occurred()) SWIG_fail
;
5752 resultobj
= obj0
; Py_INCREF(resultobj
);
5760 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Floatable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5761 PyObject
*resultobj
= 0;
5762 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5763 bool arg2
= (bool) true ;
5764 wxAuiPaneInfo
*result
= 0 ;
5769 PyObject
* obj0
= 0 ;
5770 PyObject
* obj1
= 0 ;
5771 char * kwnames
[] = {
5772 (char *) "self",(char *) "b", NULL
5775 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Floatable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5776 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5777 if (!SWIG_IsOK(res1
)) {
5778 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Floatable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5780 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5782 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5783 if (!SWIG_IsOK(ecode2
)) {
5784 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Floatable" "', expected argument " "2"" of type '" "bool""'");
5786 arg2
= static_cast< bool >(val2
);
5789 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5791 wxAuiPaneInfo
&_result_ref
= (arg1
)->Floatable(arg2
);
5792 result
= (wxAuiPaneInfo
*) &_result_ref
;
5794 wxPyEndAllowThreads(__tstate
);
5795 if (PyErr_Occurred()) SWIG_fail
;
5798 resultobj
= obj0
; Py_INCREF(resultobj
);
5806 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Movable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5807 PyObject
*resultobj
= 0;
5808 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5809 bool arg2
= (bool) true ;
5810 wxAuiPaneInfo
*result
= 0 ;
5815 PyObject
* obj0
= 0 ;
5816 PyObject
* obj1
= 0 ;
5817 char * kwnames
[] = {
5818 (char *) "self",(char *) "b", NULL
5821 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Movable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5822 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5823 if (!SWIG_IsOK(res1
)) {
5824 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Movable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5826 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5828 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5829 if (!SWIG_IsOK(ecode2
)) {
5830 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Movable" "', expected argument " "2"" of type '" "bool""'");
5832 arg2
= static_cast< bool >(val2
);
5835 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5837 wxAuiPaneInfo
&_result_ref
= (arg1
)->Movable(arg2
);
5838 result
= (wxAuiPaneInfo
*) &_result_ref
;
5840 wxPyEndAllowThreads(__tstate
);
5841 if (PyErr_Occurred()) SWIG_fail
;
5844 resultobj
= obj0
; Py_INCREF(resultobj
);
5852 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Dockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5853 PyObject
*resultobj
= 0;
5854 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5855 bool arg2
= (bool) true ;
5856 wxAuiPaneInfo
*result
= 0 ;
5861 PyObject
* obj0
= 0 ;
5862 PyObject
* obj1
= 0 ;
5863 char * kwnames
[] = {
5864 (char *) "self",(char *) "b", NULL
5867 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Dockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5868 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5869 if (!SWIG_IsOK(res1
)) {
5870 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Dockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5872 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5874 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5875 if (!SWIG_IsOK(ecode2
)) {
5876 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Dockable" "', expected argument " "2"" of type '" "bool""'");
5878 arg2
= static_cast< bool >(val2
);
5881 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5883 wxAuiPaneInfo
&_result_ref
= (arg1
)->Dockable(arg2
);
5884 result
= (wxAuiPaneInfo
*) &_result_ref
;
5886 wxPyEndAllowThreads(__tstate
);
5887 if (PyErr_Occurred()) SWIG_fail
;
5890 resultobj
= obj0
; Py_INCREF(resultobj
);
5898 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_DefaultPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5899 PyObject
*resultobj
= 0;
5900 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5901 wxAuiPaneInfo
*result
= 0 ;
5904 PyObject
*swig_obj
[1] ;
5906 if (!args
) SWIG_fail
;
5908 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5909 if (!SWIG_IsOK(res1
)) {
5910 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_DefaultPane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5912 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5914 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5916 wxAuiPaneInfo
&_result_ref
= (arg1
)->DefaultPane();
5917 result
= (wxAuiPaneInfo
*) &_result_ref
;
5919 wxPyEndAllowThreads(__tstate
);
5920 if (PyErr_Occurred()) SWIG_fail
;
5923 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5931 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CentrePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5932 PyObject
*resultobj
= 0;
5933 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5934 wxAuiPaneInfo
*result
= 0 ;
5937 PyObject
*swig_obj
[1] ;
5939 if (!args
) SWIG_fail
;
5941 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5942 if (!SWIG_IsOK(res1
)) {
5943 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CentrePane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5945 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5947 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5949 wxAuiPaneInfo
&_result_ref
= (arg1
)->CentrePane();
5950 result
= (wxAuiPaneInfo
*) &_result_ref
;
5952 wxPyEndAllowThreads(__tstate
);
5953 if (PyErr_Occurred()) SWIG_fail
;
5956 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5964 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CenterPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5965 PyObject
*resultobj
= 0;
5966 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5967 wxAuiPaneInfo
*result
= 0 ;
5970 PyObject
*swig_obj
[1] ;
5972 if (!args
) SWIG_fail
;
5974 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5975 if (!SWIG_IsOK(res1
)) {
5976 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CenterPane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5978 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5980 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5982 wxAuiPaneInfo
&_result_ref
= (arg1
)->CenterPane();
5983 result
= (wxAuiPaneInfo
*) &_result_ref
;
5985 wxPyEndAllowThreads(__tstate
);
5986 if (PyErr_Occurred()) SWIG_fail
;
5989 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5997 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_ToolbarPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5998 PyObject
*resultobj
= 0;
5999 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6000 wxAuiPaneInfo
*result
= 0 ;
6003 PyObject
*swig_obj
[1] ;
6005 if (!args
) SWIG_fail
;
6007 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6008 if (!SWIG_IsOK(res1
)) {
6009 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_ToolbarPane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6011 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6013 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6015 wxAuiPaneInfo
&_result_ref
= (arg1
)->ToolbarPane();
6016 result
= (wxAuiPaneInfo
*) &_result_ref
;
6018 wxPyEndAllowThreads(__tstate
);
6019 if (PyErr_Occurred()) SWIG_fail
;
6022 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
6030 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_SetFlag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6031 PyObject
*resultobj
= 0;
6032 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6035 wxAuiPaneInfo
*result
= 0 ;
6042 PyObject
* obj0
= 0 ;
6043 PyObject
* obj1
= 0 ;
6044 PyObject
* obj2
= 0 ;
6045 char * kwnames
[] = {
6046 (char *) "self",(char *) "flag",(char *) "option_state", NULL
6049 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiPaneInfo_SetFlag",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6050 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6051 if (!SWIG_IsOK(res1
)) {
6052 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_SetFlag" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6054 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6055 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6056 if (!SWIG_IsOK(ecode2
)) {
6057 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_SetFlag" "', expected argument " "2"" of type '" "int""'");
6059 arg2
= static_cast< int >(val2
);
6060 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
6061 if (!SWIG_IsOK(ecode3
)) {
6062 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiPaneInfo_SetFlag" "', expected argument " "3"" of type '" "bool""'");
6064 arg3
= static_cast< bool >(val3
);
6066 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6068 wxAuiPaneInfo
&_result_ref
= (arg1
)->SetFlag(arg2
,arg3
);
6069 result
= (wxAuiPaneInfo
*) &_result_ref
;
6071 wxPyEndAllowThreads(__tstate
);
6072 if (PyErr_Occurred()) SWIG_fail
;
6075 resultobj
= obj0
; Py_INCREF(resultobj
);
6083 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasFlag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6084 PyObject
*resultobj
= 0;
6085 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6092 PyObject
* obj0
= 0 ;
6093 PyObject
* obj1
= 0 ;
6094 char * kwnames
[] = {
6095 (char *) "self",(char *) "flag", NULL
6098 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_HasFlag",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6099 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6100 if (!SWIG_IsOK(res1
)) {
6101 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasFlag" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
6103 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6104 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6105 if (!SWIG_IsOK(ecode2
)) {
6106 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_HasFlag" "', expected argument " "2"" of type '" "int""'");
6108 arg2
= static_cast< int >(val2
);
6110 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6111 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasFlag(arg2
);
6112 wxPyEndAllowThreads(__tstate
);
6113 if (PyErr_Occurred()) SWIG_fail
;
6116 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6124 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_name_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6125 PyObject
*resultobj
= 0;
6126 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6127 wxString
*arg2
= (wxString
*) 0 ;
6130 bool temp2
= false ;
6131 PyObject
*swig_obj
[2] ;
6133 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_name_set",2,2,swig_obj
)) SWIG_fail
;
6134 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6135 if (!SWIG_IsOK(res1
)) {
6136 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_name_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6138 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6140 arg2
= wxString_in_helper(swig_obj
[1]);
6141 if (arg2
== NULL
) SWIG_fail
;
6144 if (arg1
) (arg1
)->name
= *arg2
;
6146 resultobj
= SWIG_Py_Void();
6161 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_name_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6162 PyObject
*resultobj
= 0;
6163 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6164 wxString
*result
= 0 ;
6167 PyObject
*swig_obj
[1] ;
6169 if (!args
) SWIG_fail
;
6171 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6172 if (!SWIG_IsOK(res1
)) {
6173 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_name_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6175 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6176 result
= (wxString
*)& ((arg1
)->name
);
6179 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
6181 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
6190 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_caption_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6191 PyObject
*resultobj
= 0;
6192 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6193 wxString
*arg2
= (wxString
*) 0 ;
6196 bool temp2
= false ;
6197 PyObject
*swig_obj
[2] ;
6199 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_caption_set",2,2,swig_obj
)) SWIG_fail
;
6200 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6201 if (!SWIG_IsOK(res1
)) {
6202 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_caption_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6204 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6206 arg2
= wxString_in_helper(swig_obj
[1]);
6207 if (arg2
== NULL
) SWIG_fail
;
6210 if (arg1
) (arg1
)->caption
= *arg2
;
6212 resultobj
= SWIG_Py_Void();
6227 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_caption_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6228 PyObject
*resultobj
= 0;
6229 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6230 wxString
*result
= 0 ;
6233 PyObject
*swig_obj
[1] ;
6235 if (!args
) SWIG_fail
;
6237 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6238 if (!SWIG_IsOK(res1
)) {
6239 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_caption_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6241 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6242 result
= (wxString
*)& ((arg1
)->caption
);
6245 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
6247 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
6256 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_window_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6257 PyObject
*resultobj
= 0;
6258 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6259 wxWindow
*arg2
= (wxWindow
*) 0 ;
6264 PyObject
*swig_obj
[2] ;
6266 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_window_set",2,2,swig_obj
)) SWIG_fail
;
6267 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6268 if (!SWIG_IsOK(res1
)) {
6269 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_window_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6271 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6272 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN
| 0 );
6273 if (!SWIG_IsOK(res2
)) {
6274 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_window_set" "', expected argument " "2"" of type '" "wxWindow *""'");
6276 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
6277 if (arg1
) (arg1
)->window
= arg2
;
6279 resultobj
= SWIG_Py_Void();
6286 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_window_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6287 PyObject
*resultobj
= 0;
6288 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6289 wxWindow
*result
= 0 ;
6292 PyObject
*swig_obj
[1] ;
6294 if (!args
) SWIG_fail
;
6296 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6297 if (!SWIG_IsOK(res1
)) {
6298 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_window_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6300 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6301 result
= (wxWindow
*) ((arg1
)->window
);
6303 resultobj
= wxPyMake_wxObject(result
, 0);
6311 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_frame_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6312 PyObject
*resultobj
= 0;
6313 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6314 wxFrame
*arg2
= (wxFrame
*) 0 ;
6319 PyObject
*swig_obj
[2] ;
6321 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_frame_set",2,2,swig_obj
)) SWIG_fail
;
6322 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6323 if (!SWIG_IsOK(res1
)) {
6324 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_frame_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6326 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6327 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxFrame
, SWIG_POINTER_DISOWN
| 0 );
6328 if (!SWIG_IsOK(res2
)) {
6329 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_frame_set" "', expected argument " "2"" of type '" "wxFrame *""'");
6331 arg2
= reinterpret_cast< wxFrame
* >(argp2
);
6332 if (arg1
) (arg1
)->frame
= arg2
;
6334 resultobj
= SWIG_Py_Void();
6341 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_frame_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6342 PyObject
*resultobj
= 0;
6343 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6344 wxFrame
*result
= 0 ;
6347 PyObject
*swig_obj
[1] ;
6349 if (!args
) SWIG_fail
;
6351 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6352 if (!SWIG_IsOK(res1
)) {
6353 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_frame_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6355 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6356 result
= (wxFrame
*) ((arg1
)->frame
);
6358 resultobj
= wxPyMake_wxObject(result
, 0);
6366 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_state_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6367 PyObject
*resultobj
= 0;
6368 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6374 PyObject
*swig_obj
[2] ;
6376 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_state_set",2,2,swig_obj
)) SWIG_fail
;
6377 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6378 if (!SWIG_IsOK(res1
)) {
6379 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_state_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6381 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6382 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6383 if (!SWIG_IsOK(ecode2
)) {
6384 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_state_set" "', expected argument " "2"" of type '" "int""'");
6386 arg2
= static_cast< int >(val2
);
6387 if (arg1
) (arg1
)->state
= arg2
;
6389 resultobj
= SWIG_Py_Void();
6396 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_state_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6397 PyObject
*resultobj
= 0;
6398 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6402 PyObject
*swig_obj
[1] ;
6404 if (!args
) SWIG_fail
;
6406 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6407 if (!SWIG_IsOK(res1
)) {
6408 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_state_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6410 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6411 result
= (int) ((arg1
)->state
);
6412 resultobj
= SWIG_From_int(static_cast< int >(result
));
6419 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_direction_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6420 PyObject
*resultobj
= 0;
6421 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6427 PyObject
*swig_obj
[2] ;
6429 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
;
6430 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6431 if (!SWIG_IsOK(res1
)) {
6432 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6434 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6435 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6436 if (!SWIG_IsOK(ecode2
)) {
6437 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'");
6439 arg2
= static_cast< int >(val2
);
6440 if (arg1
) (arg1
)->dock_direction
= arg2
;
6442 resultobj
= SWIG_Py_Void();
6449 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_direction_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6450 PyObject
*resultobj
= 0;
6451 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6455 PyObject
*swig_obj
[1] ;
6457 if (!args
) SWIG_fail
;
6459 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6460 if (!SWIG_IsOK(res1
)) {
6461 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6463 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6464 result
= (int) ((arg1
)->dock_direction
);
6465 resultobj
= SWIG_From_int(static_cast< int >(result
));
6472 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_layer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6473 PyObject
*resultobj
= 0;
6474 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6480 PyObject
*swig_obj
[2] ;
6482 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
;
6483 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6484 if (!SWIG_IsOK(res1
)) {
6485 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6487 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6488 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6489 if (!SWIG_IsOK(ecode2
)) {
6490 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'");
6492 arg2
= static_cast< int >(val2
);
6493 if (arg1
) (arg1
)->dock_layer
= arg2
;
6495 resultobj
= SWIG_Py_Void();
6502 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_layer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6503 PyObject
*resultobj
= 0;
6504 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6508 PyObject
*swig_obj
[1] ;
6510 if (!args
) SWIG_fail
;
6512 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6513 if (!SWIG_IsOK(res1
)) {
6514 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6516 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6517 result
= (int) ((arg1
)->dock_layer
);
6518 resultobj
= SWIG_From_int(static_cast< int >(result
));
6525 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_row_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6526 PyObject
*resultobj
= 0;
6527 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6533 PyObject
*swig_obj
[2] ;
6535 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
;
6536 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6537 if (!SWIG_IsOK(res1
)) {
6538 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_row_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6540 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6541 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6542 if (!SWIG_IsOK(ecode2
)) {
6543 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'");
6545 arg2
= static_cast< int >(val2
);
6546 if (arg1
) (arg1
)->dock_row
= arg2
;
6548 resultobj
= SWIG_Py_Void();
6555 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_row_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6556 PyObject
*resultobj
= 0;
6557 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6561 PyObject
*swig_obj
[1] ;
6563 if (!args
) SWIG_fail
;
6565 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6566 if (!SWIG_IsOK(res1
)) {
6567 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_row_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6569 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6570 result
= (int) ((arg1
)->dock_row
);
6571 resultobj
= SWIG_From_int(static_cast< int >(result
));
6578 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_pos_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6579 PyObject
*resultobj
= 0;
6580 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6586 PyObject
*swig_obj
[2] ;
6588 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_pos_set",2,2,swig_obj
)) SWIG_fail
;
6589 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6590 if (!SWIG_IsOK(res1
)) {
6591 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_pos_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6593 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6594 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6595 if (!SWIG_IsOK(ecode2
)) {
6596 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_pos_set" "', expected argument " "2"" of type '" "int""'");
6598 arg2
= static_cast< int >(val2
);
6599 if (arg1
) (arg1
)->dock_pos
= arg2
;
6601 resultobj
= SWIG_Py_Void();
6608 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_pos_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6609 PyObject
*resultobj
= 0;
6610 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6614 PyObject
*swig_obj
[1] ;
6616 if (!args
) SWIG_fail
;
6618 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6619 if (!SWIG_IsOK(res1
)) {
6620 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_pos_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6622 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6623 result
= (int) ((arg1
)->dock_pos
);
6624 resultobj
= SWIG_From_int(static_cast< int >(result
));
6631 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_best_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6632 PyObject
*resultobj
= 0;
6633 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6634 wxSize
*arg2
= (wxSize
*) 0 ;
6639 PyObject
*swig_obj
[2] ;
6641 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_best_size_set",2,2,swig_obj
)) SWIG_fail
;
6642 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6643 if (!SWIG_IsOK(res1
)) {
6644 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_best_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6646 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6647 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6648 if (!SWIG_IsOK(res2
)) {
6649 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_best_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6651 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6652 if (arg1
) (arg1
)->best_size
= *arg2
;
6654 resultobj
= SWIG_Py_Void();
6661 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_best_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6662 PyObject
*resultobj
= 0;
6663 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6664 wxSize
*result
= 0 ;
6667 PyObject
*swig_obj
[1] ;
6669 if (!args
) SWIG_fail
;
6671 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6672 if (!SWIG_IsOK(res1
)) {
6673 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_best_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6675 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6676 result
= (wxSize
*)& ((arg1
)->best_size
);
6677 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6684 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_min_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6685 PyObject
*resultobj
= 0;
6686 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6687 wxSize
*arg2
= (wxSize
*) 0 ;
6692 PyObject
*swig_obj
[2] ;
6694 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
;
6695 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6696 if (!SWIG_IsOK(res1
)) {
6697 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_min_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6699 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6700 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6701 if (!SWIG_IsOK(res2
)) {
6702 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_min_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6704 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6705 if (arg1
) (arg1
)->min_size
= *arg2
;
6707 resultobj
= SWIG_Py_Void();
6714 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_min_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6715 PyObject
*resultobj
= 0;
6716 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6717 wxSize
*result
= 0 ;
6720 PyObject
*swig_obj
[1] ;
6722 if (!args
) SWIG_fail
;
6724 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6725 if (!SWIG_IsOK(res1
)) {
6726 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_min_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6728 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6729 result
= (wxSize
*)& ((arg1
)->min_size
);
6730 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6737 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_max_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6738 PyObject
*resultobj
= 0;
6739 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6740 wxSize
*arg2
= (wxSize
*) 0 ;
6745 PyObject
*swig_obj
[2] ;
6747 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_max_size_set",2,2,swig_obj
)) SWIG_fail
;
6748 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6749 if (!SWIG_IsOK(res1
)) {
6750 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_max_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6752 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6753 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6754 if (!SWIG_IsOK(res2
)) {
6755 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_max_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6757 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6758 if (arg1
) (arg1
)->max_size
= *arg2
;
6760 resultobj
= SWIG_Py_Void();
6767 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_max_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6768 PyObject
*resultobj
= 0;
6769 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6770 wxSize
*result
= 0 ;
6773 PyObject
*swig_obj
[1] ;
6775 if (!args
) SWIG_fail
;
6777 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6778 if (!SWIG_IsOK(res1
)) {
6779 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_max_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6781 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6782 result
= (wxSize
*)& ((arg1
)->max_size
);
6783 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6790 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_pos_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6791 PyObject
*resultobj
= 0;
6792 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6793 wxPoint
*arg2
= (wxPoint
*) 0 ;
6798 PyObject
*swig_obj
[2] ;
6800 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_floating_pos_set",2,2,swig_obj
)) SWIG_fail
;
6801 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6802 if (!SWIG_IsOK(res1
)) {
6803 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_pos_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6805 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6806 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPoint
, 0 | 0 );
6807 if (!SWIG_IsOK(res2
)) {
6808 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_floating_pos_set" "', expected argument " "2"" of type '" "wxPoint *""'");
6810 arg2
= reinterpret_cast< wxPoint
* >(argp2
);
6811 if (arg1
) (arg1
)->floating_pos
= *arg2
;
6813 resultobj
= SWIG_Py_Void();
6820 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_pos_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6821 PyObject
*resultobj
= 0;
6822 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6823 wxPoint
*result
= 0 ;
6826 PyObject
*swig_obj
[1] ;
6828 if (!args
) SWIG_fail
;
6830 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6831 if (!SWIG_IsOK(res1
)) {
6832 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_pos_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6834 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6835 result
= (wxPoint
*)& ((arg1
)->floating_pos
);
6836 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPoint
, 0 | 0 );
6843 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6844 PyObject
*resultobj
= 0;
6845 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6846 wxSize
*arg2
= (wxSize
*) 0 ;
6851 PyObject
*swig_obj
[2] ;
6853 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_floating_size_set",2,2,swig_obj
)) SWIG_fail
;
6854 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6855 if (!SWIG_IsOK(res1
)) {
6856 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6858 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6859 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6860 if (!SWIG_IsOK(res2
)) {
6861 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_floating_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6863 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6864 if (arg1
) (arg1
)->floating_size
= *arg2
;
6866 resultobj
= SWIG_Py_Void();
6873 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6874 PyObject
*resultobj
= 0;
6875 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6876 wxSize
*result
= 0 ;
6879 PyObject
*swig_obj
[1] ;
6881 if (!args
) SWIG_fail
;
6883 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6884 if (!SWIG_IsOK(res1
)) {
6885 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6887 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6888 result
= (wxSize
*)& ((arg1
)->floating_size
);
6889 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6896 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_proportion_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6897 PyObject
*resultobj
= 0;
6898 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6904 PyObject
*swig_obj
[2] ;
6906 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_proportion_set",2,2,swig_obj
)) SWIG_fail
;
6907 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6908 if (!SWIG_IsOK(res1
)) {
6909 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_proportion_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6911 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6912 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6913 if (!SWIG_IsOK(ecode2
)) {
6914 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_proportion_set" "', expected argument " "2"" of type '" "int""'");
6916 arg2
= static_cast< int >(val2
);
6917 if (arg1
) (arg1
)->dock_proportion
= arg2
;
6919 resultobj
= SWIG_Py_Void();
6926 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_proportion_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6927 PyObject
*resultobj
= 0;
6928 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6932 PyObject
*swig_obj
[1] ;
6934 if (!args
) SWIG_fail
;
6936 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6937 if (!SWIG_IsOK(res1
)) {
6938 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_proportion_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6940 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6941 result
= (int) ((arg1
)->dock_proportion
);
6942 resultobj
= SWIG_From_int(static_cast< int >(result
));
6949 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_buttons_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6950 PyObject
*resultobj
= 0;
6951 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6952 wxAuiPaneButtonArray arg2
;
6957 PyObject
*swig_obj
[2] ;
6959 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_buttons_set",2,2,swig_obj
)) SWIG_fail
;
6960 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6961 if (!SWIG_IsOK(res1
)) {
6962 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_buttons_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6964 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6966 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxAuiPaneButtonArray
, 0 | 0);
6967 if (!SWIG_IsOK(res2
)) {
6968 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxAuiPaneButtonArray""'");
6971 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiPaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxAuiPaneButtonArray""'");
6973 wxAuiPaneButtonArray
* temp
= reinterpret_cast< wxAuiPaneButtonArray
* >(argp2
);
6975 if (SWIG_IsNewObj(res2
)) delete temp
;
6978 if (arg1
) (arg1
)->buttons
= arg2
;
6980 resultobj
= SWIG_Py_Void();
6987 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_buttons_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6988 PyObject
*resultobj
= 0;
6989 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6990 wxAuiPaneButtonArray result
;
6993 PyObject
*swig_obj
[1] ;
6995 if (!args
) SWIG_fail
;
6997 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6998 if (!SWIG_IsOK(res1
)) {
6999 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_buttons_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
7001 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
7002 result
= ((arg1
)->buttons
);
7003 resultobj
= SWIG_NewPointerObj((new wxAuiPaneButtonArray(static_cast< const wxAuiPaneButtonArray
& >(result
))), SWIGTYPE_p_wxAuiPaneButtonArray
, SWIG_POINTER_OWN
| 0 );
7010 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7011 PyObject
*resultobj
= 0;
7012 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
7013 wxRect
*arg2
= (wxRect
*) 0 ;
7018 PyObject
*swig_obj
[2] ;
7020 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_rect_set",2,2,swig_obj
)) SWIG_fail
;
7021 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7022 if (!SWIG_IsOK(res1
)) {
7023 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_rect_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
7025 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
7026 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
7027 if (!SWIG_IsOK(res2
)) {
7028 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
7030 arg2
= reinterpret_cast< wxRect
* >(argp2
);
7031 if (arg1
) (arg1
)->rect
= *arg2
;
7033 resultobj
= SWIG_Py_Void();
7040 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7041 PyObject
*resultobj
= 0;
7042 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
7043 wxRect
*result
= 0 ;
7046 PyObject
*swig_obj
[1] ;
7048 if (!args
) SWIG_fail
;
7050 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7051 if (!SWIG_IsOK(res1
)) {
7052 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_rect_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
7054 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
7055 result
= (wxRect
*)& ((arg1
)->rect
);
7056 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
7063 SWIGINTERN PyObject
*AuiPaneInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7065 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7066 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiPaneInfo
, SWIG_NewClientData(obj
));
7067 return SWIG_Py_Void();
7070 SWIGINTERN PyObject
*AuiPaneInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7071 return SWIG_Python_InitShadowInstance(args
);
7074 SWIGINTERN PyObject
*_wrap_new_AuiManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7075 PyObject
*resultobj
= 0;
7076 wxWindow
*arg1
= (wxWindow
*) NULL
;
7077 int arg2
= (int) wxAUI_MGR_DEFAULT
;
7078 wxAuiManager
*result
= 0 ;
7083 PyObject
* obj0
= 0 ;
7084 PyObject
* obj1
= 0 ;
7085 char * kwnames
[] = {
7086 (char *) "managed_wnd",(char *) "flags", NULL
7089 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_AuiManager",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7091 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7092 if (!SWIG_IsOK(res1
)) {
7093 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiManager" "', expected argument " "1"" of type '" "wxWindow *""'");
7095 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
7098 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7099 if (!SWIG_IsOK(ecode2
)) {
7100 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiManager" "', expected argument " "2"" of type '" "int""'");
7102 arg2
= static_cast< int >(val2
);
7105 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7106 result
= (wxAuiManager
*)new wxAuiManager(arg1
,arg2
);
7107 wxPyEndAllowThreads(__tstate
);
7108 if (PyErr_Occurred()) SWIG_fail
;
7110 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, SWIG_POINTER_NEW
| 0 );
7117 SWIGINTERN PyObject
*_wrap_delete_AuiManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7118 PyObject
*resultobj
= 0;
7119 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7122 PyObject
*swig_obj
[1] ;
7124 if (!args
) SWIG_fail
;
7126 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, SWIG_POINTER_DISOWN
| 0 );
7127 if (!SWIG_IsOK(res1
)) {
7128 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiManager" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7130 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7132 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7135 wxPyEndAllowThreads(__tstate
);
7136 if (PyErr_Occurred()) SWIG_fail
;
7138 resultobj
= SWIG_Py_Void();
7145 SWIGINTERN PyObject
*_wrap_AuiManager_UnInit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7146 PyObject
*resultobj
= 0;
7147 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7150 PyObject
*swig_obj
[1] ;
7152 if (!args
) SWIG_fail
;
7154 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7155 if (!SWIG_IsOK(res1
)) {
7156 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_UnInit" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7158 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7160 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7162 wxPyEndAllowThreads(__tstate
);
7163 if (PyErr_Occurred()) SWIG_fail
;
7165 resultobj
= SWIG_Py_Void();
7172 SWIGINTERN PyObject
*_wrap_AuiManager_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7173 PyObject
*resultobj
= 0;
7174 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7180 PyObject
* obj0
= 0 ;
7181 PyObject
* obj1
= 0 ;
7182 char * kwnames
[] = {
7183 (char *) "self",(char *) "flags", NULL
7186 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7187 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7188 if (!SWIG_IsOK(res1
)) {
7189 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetFlags" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7191 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7192 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7193 if (!SWIG_IsOK(ecode2
)) {
7194 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManager_SetFlags" "', expected argument " "2"" of type '" "int""'");
7196 arg2
= static_cast< int >(val2
);
7198 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7199 (arg1
)->SetFlags(arg2
);
7200 wxPyEndAllowThreads(__tstate
);
7201 if (PyErr_Occurred()) SWIG_fail
;
7203 resultobj
= SWIG_Py_Void();
7210 SWIGINTERN PyObject
*_wrap_AuiManager_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7211 PyObject
*resultobj
= 0;
7212 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7216 PyObject
*swig_obj
[1] ;
7218 if (!args
) SWIG_fail
;
7220 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7221 if (!SWIG_IsOK(res1
)) {
7222 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetFlags" "', expected argument " "1"" of type '" "wxAuiManager const *""'");
7224 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7226 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7227 result
= (int)((wxAuiManager
const *)arg1
)->GetFlags();
7228 wxPyEndAllowThreads(__tstate
);
7229 if (PyErr_Occurred()) SWIG_fail
;
7231 resultobj
= SWIG_From_int(static_cast< int >(result
));
7238 SWIGINTERN PyObject
*_wrap_AuiManager_SetManagedWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7239 PyObject
*resultobj
= 0;
7240 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7241 wxWindow
*arg2
= (wxWindow
*) 0 ;
7246 PyObject
* obj0
= 0 ;
7247 PyObject
* obj1
= 0 ;
7248 char * kwnames
[] = {
7249 (char *) "self",(char *) "managed_wnd", NULL
7252 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SetManagedWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7253 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7254 if (!SWIG_IsOK(res1
)) {
7255 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetManagedWindow" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7257 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7258 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7259 if (!SWIG_IsOK(res2
)) {
7260 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_SetManagedWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
7262 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7264 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7265 (arg1
)->SetManagedWindow(arg2
);
7266 wxPyEndAllowThreads(__tstate
);
7267 if (PyErr_Occurred()) SWIG_fail
;
7269 resultobj
= SWIG_Py_Void();
7276 SWIGINTERN PyObject
*_wrap_AuiManager_GetManagedWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7277 PyObject
*resultobj
= 0;
7278 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7279 wxWindow
*result
= 0 ;
7282 PyObject
*swig_obj
[1] ;
7284 if (!args
) SWIG_fail
;
7286 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7287 if (!SWIG_IsOK(res1
)) {
7288 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetManagedWindow" "', expected argument " "1"" of type '" "wxAuiManager const *""'");
7290 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7292 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7293 result
= (wxWindow
*)((wxAuiManager
const *)arg1
)->GetManagedWindow();
7294 wxPyEndAllowThreads(__tstate
);
7295 if (PyErr_Occurred()) SWIG_fail
;
7298 resultobj
= wxPyMake_wxObject(result
, 0);
7306 SWIGINTERN PyObject
*_wrap_AuiManager_GetManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7307 PyObject
*resultobj
= 0;
7308 wxWindow
*arg1
= (wxWindow
*) 0 ;
7309 wxAuiManager
*result
= 0 ;
7312 PyObject
* obj0
= 0 ;
7313 char * kwnames
[] = {
7314 (char *) "window", NULL
7317 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:AuiManager_GetManager",kwnames
,&obj0
)) SWIG_fail
;
7318 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7319 if (!SWIG_IsOK(res1
)) {
7320 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetManager" "', expected argument " "1"" of type '" "wxWindow *""'");
7322 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
7324 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7325 result
= (wxAuiManager
*)wxAuiManager::GetManager(arg1
);
7326 wxPyEndAllowThreads(__tstate
);
7327 if (PyErr_Occurred()) SWIG_fail
;
7329 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7336 SWIGINTERN PyObject
*_wrap_AuiManager_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7337 PyObject
*resultobj
= 0;
7338 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7339 wxAuiDockArt
*arg2
= (wxAuiDockArt
*) 0 ;
7343 PyObject
* obj0
= 0 ;
7344 PyObject
* obj1
= 0 ;
7345 char * kwnames
[] = {
7346 (char *) "self",(char *) "art_provider", NULL
7349 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7350 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7351 if (!SWIG_IsOK(res1
)) {
7352 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7354 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7355 res2
= SWIG_ConvertPtr(obj1
, SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxAuiDockArt
, SWIG_POINTER_DISOWN
| 0 );
7356 if (!SWIG_IsOK(res2
)) {
7357 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiDockArt *""'");
7360 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7361 (arg1
)->SetArtProvider(arg2
);
7362 wxPyEndAllowThreads(__tstate
);
7363 if (PyErr_Occurred()) SWIG_fail
;
7365 resultobj
= SWIG_Py_Void();
7372 SWIGINTERN PyObject
*_wrap_AuiManager_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7373 PyObject
*resultobj
= 0;
7374 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7375 wxAuiDockArt
*result
= 0 ;
7378 PyObject
*swig_obj
[1] ;
7380 if (!args
) SWIG_fail
;
7382 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7383 if (!SWIG_IsOK(res1
)) {
7384 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiManager const *""'");
7386 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7388 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7389 result
= (wxAuiDockArt
*)((wxAuiManager
const *)arg1
)->GetArtProvider();
7390 wxPyEndAllowThreads(__tstate
);
7391 if (PyErr_Occurred()) SWIG_fail
;
7393 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
7400 SWIGINTERN PyObject
*_wrap_AuiManager__GetPaneByWidget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7401 PyObject
*resultobj
= 0;
7402 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7403 wxWindow
*arg2
= (wxWindow
*) 0 ;
7404 wxAuiPaneInfo
*result
= 0 ;
7409 PyObject
* obj0
= 0 ;
7410 PyObject
* obj1
= 0 ;
7411 char * kwnames
[] = {
7412 (char *) "self",(char *) "window", NULL
7415 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager__GetPaneByWidget",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7416 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7417 if (!SWIG_IsOK(res1
)) {
7418 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__GetPaneByWidget" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7420 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7421 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7422 if (!SWIG_IsOK(res2
)) {
7423 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager__GetPaneByWidget" "', expected argument " "2"" of type '" "wxWindow *""'");
7425 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7427 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7429 wxAuiPaneInfo
&_result_ref
= (arg1
)->GetPane(arg2
);
7430 result
= (wxAuiPaneInfo
*) &_result_ref
;
7432 wxPyEndAllowThreads(__tstate
);
7433 if (PyErr_Occurred()) SWIG_fail
;
7435 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7442 SWIGINTERN PyObject
*_wrap_AuiManager__GetPaneByName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7443 PyObject
*resultobj
= 0;
7444 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7445 wxString
*arg2
= 0 ;
7446 wxAuiPaneInfo
*result
= 0 ;
7449 bool temp2
= false ;
7450 PyObject
* obj0
= 0 ;
7451 PyObject
* obj1
= 0 ;
7452 char * kwnames
[] = {
7453 (char *) "self",(char *) "name", NULL
7456 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager__GetPaneByName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7457 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7458 if (!SWIG_IsOK(res1
)) {
7459 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__GetPaneByName" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7461 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7463 arg2
= wxString_in_helper(obj1
);
7464 if (arg2
== NULL
) SWIG_fail
;
7468 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7470 wxAuiPaneInfo
&_result_ref
= (arg1
)->GetPane((wxString
const &)*arg2
);
7471 result
= (wxAuiPaneInfo
*) &_result_ref
;
7473 wxPyEndAllowThreads(__tstate
);
7474 if (PyErr_Occurred()) SWIG_fail
;
7476 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7491 SWIGINTERN PyObject
*_wrap_AuiManager_GetAllPanes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7492 PyObject
*resultobj
= 0;
7493 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7494 wxAuiPaneInfoArray
*result
= 0 ;
7497 PyObject
*swig_obj
[1] ;
7499 if (!args
) SWIG_fail
;
7501 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7502 if (!SWIG_IsOK(res1
)) {
7503 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetAllPanes" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7505 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7507 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7509 wxAuiPaneInfoArray
&_result_ref
= (arg1
)->GetAllPanes();
7510 result
= (wxAuiPaneInfoArray
*) &_result_ref
;
7512 wxPyEndAllowThreads(__tstate
);
7513 if (PyErr_Occurred()) SWIG_fail
;
7516 resultobj
= PyList_New(0);
7517 for (size_t i
=0; i
< result
->GetCount(); i
++) {
7518 PyObject
* pane_obj
= SWIG_NewPointerObj((void*)(&result
->Item(i
)), SWIGTYPE_p_wxAuiPaneInfo
, 0);
7519 PyList_Append(resultobj
, pane_obj
);
7528 SWIGINTERN PyObject
*_wrap_AuiManager__AddPane1(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7529 PyObject
*resultobj
= 0;
7530 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7531 wxWindow
*arg2
= (wxWindow
*) 0 ;
7532 wxAuiPaneInfo
*arg3
= 0 ;
7540 PyObject
* obj0
= 0 ;
7541 PyObject
* obj1
= 0 ;
7542 PyObject
* obj2
= 0 ;
7543 char * kwnames
[] = {
7544 (char *) "self",(char *) "window",(char *) "pane_info", NULL
7547 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager__AddPane1",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7548 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7549 if (!SWIG_IsOK(res1
)) {
7550 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__AddPane1" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7552 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7553 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7554 if (!SWIG_IsOK(res2
)) {
7555 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager__AddPane1" "', expected argument " "2"" of type '" "wxWindow *""'");
7557 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7558 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
7559 if (!SWIG_IsOK(res3
)) {
7560 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager__AddPane1" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7563 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager__AddPane1" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7565 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
7567 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7568 result
= (bool)(arg1
)->AddPane(arg2
,(wxAuiPaneInfo
const &)*arg3
);
7569 wxPyEndAllowThreads(__tstate
);
7570 if (PyErr_Occurred()) SWIG_fail
;
7573 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7581 SWIGINTERN PyObject
*_wrap_AuiManager_AddPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7582 PyObject
*resultobj
= 0;
7583 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7584 wxWindow
*arg2
= (wxWindow
*) 0 ;
7585 wxAuiPaneInfo
*arg3
= 0 ;
7595 PyObject
* obj0
= 0 ;
7596 PyObject
* obj1
= 0 ;
7597 PyObject
* obj2
= 0 ;
7598 PyObject
* obj3
= 0 ;
7599 char * kwnames
[] = {
7600 (char *) "self",(char *) "window",(char *) "pane_info",(char *) "drop_pos", NULL
7603 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiManager_AddPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7604 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7605 if (!SWIG_IsOK(res1
)) {
7606 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_AddPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7608 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7609 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7610 if (!SWIG_IsOK(res2
)) {
7611 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_AddPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7613 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7614 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
7615 if (!SWIG_IsOK(res3
)) {
7616 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_AddPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7619 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_AddPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7621 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
7624 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7627 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7628 result
= (bool)(arg1
)->AddPane(arg2
,(wxAuiPaneInfo
const &)*arg3
,(wxPoint
const &)*arg4
);
7629 wxPyEndAllowThreads(__tstate
);
7630 if (PyErr_Occurred()) SWIG_fail
;
7633 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7641 SWIGINTERN PyObject
*_wrap_AuiManager__AddPane2(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7642 PyObject
*resultobj
= 0;
7643 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7644 wxWindow
*arg2
= (wxWindow
*) 0 ;
7645 int arg3
= (int) wxLEFT
;
7646 wxString
const &arg4_defvalue
= wxEmptyString
;
7647 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
7655 bool temp4
= false ;
7656 PyObject
* obj0
= 0 ;
7657 PyObject
* obj1
= 0 ;
7658 PyObject
* obj2
= 0 ;
7659 PyObject
* obj3
= 0 ;
7660 char * kwnames
[] = {
7661 (char *) "self",(char *) "window",(char *) "direction",(char *) "caption", NULL
7664 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:AuiManager__AddPane2",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7665 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7666 if (!SWIG_IsOK(res1
)) {
7667 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__AddPane2" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7669 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7670 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7671 if (!SWIG_IsOK(res2
)) {
7672 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager__AddPane2" "', expected argument " "2"" of type '" "wxWindow *""'");
7674 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7676 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
7677 if (!SWIG_IsOK(ecode3
)) {
7678 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiManager__AddPane2" "', expected argument " "3"" of type '" "int""'");
7680 arg3
= static_cast< int >(val3
);
7684 arg4
= wxString_in_helper(obj3
);
7685 if (arg4
== NULL
) SWIG_fail
;
7690 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7691 result
= (bool)(arg1
)->AddPane(arg2
,arg3
,(wxString
const &)*arg4
);
7692 wxPyEndAllowThreads(__tstate
);
7693 if (PyErr_Occurred()) SWIG_fail
;
7696 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7712 SWIGINTERN PyObject
*_wrap_AuiManager_InsertPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7713 PyObject
*resultobj
= 0;
7714 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7715 wxWindow
*arg2
= (wxWindow
*) 0 ;
7716 wxAuiPaneInfo
*arg3
= 0 ;
7717 int arg4
= (int) wxAUI_INSERT_PANE
;
7727 PyObject
* obj0
= 0 ;
7728 PyObject
* obj1
= 0 ;
7729 PyObject
* obj2
= 0 ;
7730 PyObject
* obj3
= 0 ;
7731 char * kwnames
[] = {
7732 (char *) "self",(char *) "window",(char *) "insert_location",(char *) "insert_level", NULL
7735 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:AuiManager_InsertPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7736 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7737 if (!SWIG_IsOK(res1
)) {
7738 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_InsertPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7740 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7741 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7742 if (!SWIG_IsOK(res2
)) {
7743 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_InsertPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7745 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7746 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
7747 if (!SWIG_IsOK(res3
)) {
7748 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_InsertPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7751 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_InsertPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7753 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
7755 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
7756 if (!SWIG_IsOK(ecode4
)) {
7757 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiManager_InsertPane" "', expected argument " "4"" of type '" "int""'");
7759 arg4
= static_cast< int >(val4
);
7762 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7763 result
= (bool)(arg1
)->InsertPane(arg2
,(wxAuiPaneInfo
const &)*arg3
,arg4
);
7764 wxPyEndAllowThreads(__tstate
);
7765 if (PyErr_Occurred()) SWIG_fail
;
7768 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7776 SWIGINTERN PyObject
*_wrap_AuiManager_DetachPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7777 PyObject
*resultobj
= 0;
7778 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7779 wxWindow
*arg2
= (wxWindow
*) 0 ;
7785 PyObject
* obj0
= 0 ;
7786 PyObject
* obj1
= 0 ;
7787 char * kwnames
[] = {
7788 (char *) "self",(char *) "window", NULL
7791 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_DetachPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7792 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7793 if (!SWIG_IsOK(res1
)) {
7794 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_DetachPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7796 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7797 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7798 if (!SWIG_IsOK(res2
)) {
7799 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_DetachPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7801 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7803 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7804 result
= (bool)(arg1
)->DetachPane(arg2
);
7805 wxPyEndAllowThreads(__tstate
);
7806 if (PyErr_Occurred()) SWIG_fail
;
7809 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7817 SWIGINTERN PyObject
*_wrap_AuiManager_Update(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7818 PyObject
*resultobj
= 0;
7819 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7822 PyObject
*swig_obj
[1] ;
7824 if (!args
) SWIG_fail
;
7826 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7827 if (!SWIG_IsOK(res1
)) {
7828 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_Update" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7830 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7832 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7834 wxPyEndAllowThreads(__tstate
);
7835 if (PyErr_Occurred()) SWIG_fail
;
7837 resultobj
= SWIG_Py_Void();
7844 SWIGINTERN PyObject
*_wrap_AuiManager_SavePaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7845 PyObject
*resultobj
= 0;
7846 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7847 wxAuiPaneInfo
*arg2
= 0 ;
7853 PyObject
* obj0
= 0 ;
7854 PyObject
* obj1
= 0 ;
7855 char * kwnames
[] = {
7856 (char *) "self",(char *) "pane", NULL
7859 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SavePaneInfo",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7860 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7861 if (!SWIG_IsOK(res1
)) {
7862 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SavePaneInfo" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7864 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7865 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
7866 if (!SWIG_IsOK(res2
)) {
7867 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_SavePaneInfo" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7870 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_SavePaneInfo" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7872 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
7874 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7875 result
= (arg1
)->SavePaneInfo(*arg2
);
7876 wxPyEndAllowThreads(__tstate
);
7877 if (PyErr_Occurred()) SWIG_fail
;
7881 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
7883 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
7892 SWIGINTERN PyObject
*_wrap_AuiManager_LoadPaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7893 PyObject
*resultobj
= 0;
7894 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7896 wxAuiPaneInfo
*arg3
= 0 ;
7901 PyObject
* obj0
= 0 ;
7902 PyObject
* obj1
= 0 ;
7903 PyObject
* obj2
= 0 ;
7904 char * kwnames
[] = {
7905 (char *) "self",(char *) "pane_part",(char *) "pane", NULL
7908 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_LoadPaneInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7909 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7910 if (!SWIG_IsOK(res1
)) {
7911 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_LoadPaneInfo" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7913 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7915 wxString
* sptr
= wxString_in_helper(obj1
);
7916 if (sptr
== NULL
) SWIG_fail
;
7920 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
7921 if (!SWIG_IsOK(res3
)) {
7922 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_LoadPaneInfo" "', expected argument " "3"" of type '" "wxAuiPaneInfo &""'");
7925 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_LoadPaneInfo" "', expected argument " "3"" of type '" "wxAuiPaneInfo &""'");
7927 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
7929 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7930 (arg1
)->LoadPaneInfo(arg2
,*arg3
);
7931 wxPyEndAllowThreads(__tstate
);
7932 if (PyErr_Occurred()) SWIG_fail
;
7934 resultobj
= SWIG_Py_Void();
7941 SWIGINTERN PyObject
*_wrap_AuiManager_SavePerspective(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7942 PyObject
*resultobj
= 0;
7943 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7947 PyObject
*swig_obj
[1] ;
7949 if (!args
) SWIG_fail
;
7951 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7952 if (!SWIG_IsOK(res1
)) {
7953 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SavePerspective" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7955 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7957 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7958 result
= (arg1
)->SavePerspective();
7959 wxPyEndAllowThreads(__tstate
);
7960 if (PyErr_Occurred()) SWIG_fail
;
7964 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
7966 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
7975 SWIGINTERN PyObject
*_wrap_AuiManager_LoadPerspective(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7976 PyObject
*resultobj
= 0;
7977 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7978 wxString
*arg2
= 0 ;
7979 bool arg3
= (bool) true ;
7983 bool temp2
= false ;
7986 PyObject
* obj0
= 0 ;
7987 PyObject
* obj1
= 0 ;
7988 PyObject
* obj2
= 0 ;
7989 char * kwnames
[] = {
7990 (char *) "self",(char *) "perspective",(char *) "update", NULL
7993 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:AuiManager_LoadPerspective",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7994 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7995 if (!SWIG_IsOK(res1
)) {
7996 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_LoadPerspective" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7998 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8000 arg2
= wxString_in_helper(obj1
);
8001 if (arg2
== NULL
) SWIG_fail
;
8005 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
8006 if (!SWIG_IsOK(ecode3
)) {
8007 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiManager_LoadPerspective" "', expected argument " "3"" of type '" "bool""'");
8009 arg3
= static_cast< bool >(val3
);
8012 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8013 result
= (bool)(arg1
)->LoadPerspective((wxString
const &)*arg2
,arg3
);
8014 wxPyEndAllowThreads(__tstate
);
8015 if (PyErr_Occurred()) SWIG_fail
;
8018 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8034 SWIGINTERN PyObject
*_wrap_AuiManager_SetDockSizeConstraint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8035 PyObject
*resultobj
= 0;
8036 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8045 PyObject
* obj0
= 0 ;
8046 PyObject
* obj1
= 0 ;
8047 PyObject
* obj2
= 0 ;
8048 char * kwnames
[] = {
8049 (char *) "self",(char *) "width_pct",(char *) "height_pct", NULL
8052 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_SetDockSizeConstraint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8053 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8054 if (!SWIG_IsOK(res1
)) {
8055 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetDockSizeConstraint" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8057 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8058 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
8059 if (!SWIG_IsOK(ecode2
)) {
8060 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManager_SetDockSizeConstraint" "', expected argument " "2"" of type '" "double""'");
8062 arg2
= static_cast< double >(val2
);
8063 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
8064 if (!SWIG_IsOK(ecode3
)) {
8065 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiManager_SetDockSizeConstraint" "', expected argument " "3"" of type '" "double""'");
8067 arg3
= static_cast< double >(val3
);
8069 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8070 (arg1
)->SetDockSizeConstraint(arg2
,arg3
);
8071 wxPyEndAllowThreads(__tstate
);
8072 if (PyErr_Occurred()) SWIG_fail
;
8074 resultobj
= SWIG_Py_Void();
8081 SWIGINTERN PyObject
*_wrap_AuiManager_GetDockSizeConstraint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8082 PyObject
*resultobj
= 0;
8083 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8084 double *arg2
= (double *) 0 ;
8085 double *arg3
= (double *) 0 ;
8092 PyObject
* obj0
= 0 ;
8093 PyObject
* obj1
= 0 ;
8094 PyObject
* obj2
= 0 ;
8095 char * kwnames
[] = {
8096 (char *) "self",(char *) "width_pct",(char *) "height_pct", NULL
8099 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_GetDockSizeConstraint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8100 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8101 if (!SWIG_IsOK(res1
)) {
8102 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetDockSizeConstraint" "', expected argument " "1"" of type '" "wxAuiManager const *""'");
8104 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8105 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_double
, 0 | 0 );
8106 if (!SWIG_IsOK(res2
)) {
8107 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_GetDockSizeConstraint" "', expected argument " "2"" of type '" "double *""'");
8109 arg2
= reinterpret_cast< double * >(argp2
);
8110 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_double
, 0 | 0 );
8111 if (!SWIG_IsOK(res3
)) {
8112 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_GetDockSizeConstraint" "', expected argument " "3"" of type '" "double *""'");
8114 arg3
= reinterpret_cast< double * >(argp3
);
8116 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8117 ((wxAuiManager
const *)arg1
)->GetDockSizeConstraint(arg2
,arg3
);
8118 wxPyEndAllowThreads(__tstate
);
8119 if (PyErr_Occurred()) SWIG_fail
;
8121 resultobj
= SWIG_Py_Void();
8128 SWIGINTERN PyObject
*_wrap_AuiManager_ClosePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8129 PyObject
*resultobj
= 0;
8130 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8131 wxAuiPaneInfo
*arg2
= 0 ;
8136 PyObject
* obj0
= 0 ;
8137 PyObject
* obj1
= 0 ;
8138 char * kwnames
[] = {
8139 (char *) "self",(char *) "pane_info", NULL
8142 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_ClosePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8143 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8144 if (!SWIG_IsOK(res1
)) {
8145 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_ClosePane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8147 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8148 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
8149 if (!SWIG_IsOK(res2
)) {
8150 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_ClosePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8153 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_ClosePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8155 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
8157 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8158 (arg1
)->ClosePane(*arg2
);
8159 wxPyEndAllowThreads(__tstate
);
8160 if (PyErr_Occurred()) SWIG_fail
;
8162 resultobj
= SWIG_Py_Void();
8169 SWIGINTERN PyObject
*_wrap_AuiManager_MaximizePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8170 PyObject
*resultobj
= 0;
8171 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8172 wxAuiPaneInfo
*arg2
= 0 ;
8177 PyObject
* obj0
= 0 ;
8178 PyObject
* obj1
= 0 ;
8179 char * kwnames
[] = {
8180 (char *) "self",(char *) "pane_info", NULL
8183 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_MaximizePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8184 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8185 if (!SWIG_IsOK(res1
)) {
8186 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_MaximizePane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8188 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8189 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
8190 if (!SWIG_IsOK(res2
)) {
8191 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_MaximizePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8194 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_MaximizePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8196 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
8198 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8199 (arg1
)->MaximizePane(*arg2
);
8200 wxPyEndAllowThreads(__tstate
);
8201 if (PyErr_Occurred()) SWIG_fail
;
8203 resultobj
= SWIG_Py_Void();
8210 SWIGINTERN PyObject
*_wrap_AuiManager_RestorePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8211 PyObject
*resultobj
= 0;
8212 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8213 wxAuiPaneInfo
*arg2
= 0 ;
8218 PyObject
* obj0
= 0 ;
8219 PyObject
* obj1
= 0 ;
8220 char * kwnames
[] = {
8221 (char *) "self",(char *) "pane_info", NULL
8224 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_RestorePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8225 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8226 if (!SWIG_IsOK(res1
)) {
8227 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_RestorePane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8229 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8230 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
8231 if (!SWIG_IsOK(res2
)) {
8232 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_RestorePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8235 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_RestorePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8237 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
8239 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8240 (arg1
)->RestorePane(*arg2
);
8241 wxPyEndAllowThreads(__tstate
);
8242 if (PyErr_Occurred()) SWIG_fail
;
8244 resultobj
= SWIG_Py_Void();
8251 SWIGINTERN PyObject
*_wrap_AuiManager_RestoreMaximizedPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8252 PyObject
*resultobj
= 0;
8253 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8256 PyObject
*swig_obj
[1] ;
8258 if (!args
) SWIG_fail
;
8260 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8261 if (!SWIG_IsOK(res1
)) {
8262 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_RestoreMaximizedPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8264 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8266 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8267 (arg1
)->RestoreMaximizedPane();
8268 wxPyEndAllowThreads(__tstate
);
8269 if (PyErr_Occurred()) SWIG_fail
;
8271 resultobj
= SWIG_Py_Void();
8278 SWIGINTERN PyObject
*_wrap_AuiManager_CreateFloatingFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8279 PyObject
*resultobj
= 0;
8280 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8281 wxWindow
*arg2
= (wxWindow
*) 0 ;
8282 wxAuiPaneInfo
*arg3
= 0 ;
8283 wxAuiFloatingFrame
*result
= 0 ;
8290 PyObject
* obj0
= 0 ;
8291 PyObject
* obj1
= 0 ;
8292 PyObject
* obj2
= 0 ;
8293 char * kwnames
[] = {
8294 (char *) "self",(char *) "parent",(char *) "p", NULL
8297 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_CreateFloatingFrame",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8298 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8299 if (!SWIG_IsOK(res1
)) {
8300 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8302 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8303 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8304 if (!SWIG_IsOK(res2
)) {
8305 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "2"" of type '" "wxWindow *""'");
8307 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8308 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
8309 if (!SWIG_IsOK(res3
)) {
8310 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
8313 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
8315 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
8317 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8318 result
= (wxAuiFloatingFrame
*)(arg1
)->CreateFloatingFrame(arg2
,(wxAuiPaneInfo
const &)*arg3
);
8319 wxPyEndAllowThreads(__tstate
);
8320 if (PyErr_Occurred()) SWIG_fail
;
8322 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiFloatingFrame
, 0 | 0 );
8329 SWIGINTERN PyObject
*_wrap_AuiManager_StartPaneDrag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8330 PyObject
*resultobj
= 0;
8331 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8332 wxWindow
*arg2
= (wxWindow
*) 0 ;
8339 PyObject
* obj0
= 0 ;
8340 PyObject
* obj1
= 0 ;
8341 PyObject
* obj2
= 0 ;
8342 char * kwnames
[] = {
8343 (char *) "self",(char *) "pane_window",(char *) "offset", NULL
8346 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_StartPaneDrag",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8347 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8348 if (!SWIG_IsOK(res1
)) {
8349 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_StartPaneDrag" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8351 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8352 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8353 if (!SWIG_IsOK(res2
)) {
8354 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_StartPaneDrag" "', expected argument " "2"" of type '" "wxWindow *""'");
8356 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8359 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
8362 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8363 (arg1
)->StartPaneDrag(arg2
,(wxPoint
const &)*arg3
);
8364 wxPyEndAllowThreads(__tstate
);
8365 if (PyErr_Occurred()) SWIG_fail
;
8367 resultobj
= SWIG_Py_Void();
8374 SWIGINTERN PyObject
*_wrap_AuiManager_CalculateHintRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8375 PyObject
*resultobj
= 0;
8376 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8377 wxWindow
*arg2
= (wxWindow
*) 0 ;
8387 PyObject
* obj0
= 0 ;
8388 PyObject
* obj1
= 0 ;
8389 PyObject
* obj2
= 0 ;
8390 PyObject
* obj3
= 0 ;
8391 char * kwnames
[] = {
8392 (char *) "self",(char *) "pane_window",(char *) "pt",(char *) "offset", NULL
8395 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiManager_CalculateHintRect",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
8396 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8397 if (!SWIG_IsOK(res1
)) {
8398 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_CalculateHintRect" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8400 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8401 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8402 if (!SWIG_IsOK(res2
)) {
8403 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_CalculateHintRect" "', expected argument " "2"" of type '" "wxWindow *""'");
8405 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8408 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
8412 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
8415 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8416 result
= (arg1
)->CalculateHintRect(arg2
,(wxPoint
const &)*arg3
,(wxPoint
const &)*arg4
);
8417 wxPyEndAllowThreads(__tstate
);
8418 if (PyErr_Occurred()) SWIG_fail
;
8420 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
8427 SWIGINTERN PyObject
*_wrap_AuiManager_DrawHintRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8428 PyObject
*resultobj
= 0;
8429 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8430 wxWindow
*arg2
= (wxWindow
*) 0 ;
8439 PyObject
* obj0
= 0 ;
8440 PyObject
* obj1
= 0 ;
8441 PyObject
* obj2
= 0 ;
8442 PyObject
* obj3
= 0 ;
8443 char * kwnames
[] = {
8444 (char *) "self",(char *) "pane_window",(char *) "pt",(char *) "offset", NULL
8447 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiManager_DrawHintRect",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
8448 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8449 if (!SWIG_IsOK(res1
)) {
8450 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_DrawHintRect" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8452 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8453 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8454 if (!SWIG_IsOK(res2
)) {
8455 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_DrawHintRect" "', expected argument " "2"" of type '" "wxWindow *""'");
8457 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8460 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
8464 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
8467 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8468 (arg1
)->DrawHintRect(arg2
,(wxPoint
const &)*arg3
,(wxPoint
const &)*arg4
);
8469 wxPyEndAllowThreads(__tstate
);
8470 if (PyErr_Occurred()) SWIG_fail
;
8472 resultobj
= SWIG_Py_Void();
8479 SWIGINTERN PyObject
*_wrap_AuiManager_ShowHint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8480 PyObject
*resultobj
= 0;
8481 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8486 PyObject
* obj0
= 0 ;
8487 PyObject
* obj1
= 0 ;
8488 char * kwnames
[] = {
8489 (char *) "self",(char *) "rect", NULL
8492 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_ShowHint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8493 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8494 if (!SWIG_IsOK(res1
)) {
8495 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_ShowHint" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8497 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8500 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
8503 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8504 (arg1
)->ShowHint((wxRect
const &)*arg2
);
8505 wxPyEndAllowThreads(__tstate
);
8506 if (PyErr_Occurred()) SWIG_fail
;
8508 resultobj
= SWIG_Py_Void();
8515 SWIGINTERN PyObject
*_wrap_AuiManager_HideHint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8516 PyObject
*resultobj
= 0;
8517 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8520 PyObject
*swig_obj
[1] ;
8522 if (!args
) SWIG_fail
;
8524 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8525 if (!SWIG_IsOK(res1
)) {
8526 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_HideHint" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8528 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8530 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8532 wxPyEndAllowThreads(__tstate
);
8533 if (PyErr_Occurred()) SWIG_fail
;
8535 resultobj
= SWIG_Py_Void();
8542 SWIGINTERN PyObject
*_wrap_AuiManager_OnRender(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8543 PyObject
*resultobj
= 0;
8544 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8545 wxAuiManagerEvent
*arg2
= 0 ;
8550 PyObject
* obj0
= 0 ;
8551 PyObject
* obj1
= 0 ;
8552 char * kwnames
[] = {
8553 (char *) "self",(char *) "evt", NULL
8556 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_OnRender",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8557 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8558 if (!SWIG_IsOK(res1
)) {
8559 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_OnRender" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8561 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8562 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiManagerEvent
, 0 );
8563 if (!SWIG_IsOK(res2
)) {
8564 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_OnRender" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8567 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_OnRender" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8569 arg2
= reinterpret_cast< wxAuiManagerEvent
* >(argp2
);
8571 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8572 (arg1
)->OnRender(*arg2
);
8573 wxPyEndAllowThreads(__tstate
);
8574 if (PyErr_Occurred()) SWIG_fail
;
8576 resultobj
= SWIG_Py_Void();
8583 SWIGINTERN PyObject
*_wrap_AuiManager_OnPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8584 PyObject
*resultobj
= 0;
8585 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8586 wxAuiManagerEvent
*arg2
= 0 ;
8591 PyObject
* obj0
= 0 ;
8592 PyObject
* obj1
= 0 ;
8593 char * kwnames
[] = {
8594 (char *) "self",(char *) "evt", NULL
8597 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_OnPaneButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8598 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8599 if (!SWIG_IsOK(res1
)) {
8600 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_OnPaneButton" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8602 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8603 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiManagerEvent
, 0 );
8604 if (!SWIG_IsOK(res2
)) {
8605 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_OnPaneButton" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8608 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_OnPaneButton" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8610 arg2
= reinterpret_cast< wxAuiManagerEvent
* >(argp2
);
8612 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8613 (arg1
)->OnPaneButton(*arg2
);
8614 wxPyEndAllowThreads(__tstate
);
8615 if (PyErr_Occurred()) SWIG_fail
;
8617 resultobj
= SWIG_Py_Void();
8624 SWIGINTERN PyObject
*AuiManager_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8626 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8627 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiManager
, SWIG_NewClientData(obj
));
8628 return SWIG_Py_Void();
8631 SWIGINTERN PyObject
*AuiManager_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8632 return SWIG_Python_InitShadowInstance(args
);
8635 SWIGINTERN PyObject
*_wrap_new_AuiManagerEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8636 PyObject
*resultobj
= 0;
8637 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
8638 wxAuiManagerEvent
*result
= 0 ;
8641 PyObject
* obj0
= 0 ;
8642 char * kwnames
[] = {
8643 (char *) "type", NULL
8646 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_AuiManagerEvent",kwnames
,&obj0
)) SWIG_fail
;
8648 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
8649 if (!SWIG_IsOK(ecode1
)) {
8650 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_AuiManagerEvent" "', expected argument " "1"" of type '" "wxEventType""'");
8652 arg1
= static_cast< wxEventType
>(val1
);
8655 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8656 result
= (wxAuiManagerEvent
*)new wxAuiManagerEvent(arg1
);
8657 wxPyEndAllowThreads(__tstate
);
8658 if (PyErr_Occurred()) SWIG_fail
;
8660 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManagerEvent
, SWIG_POINTER_NEW
| 0 );
8667 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_Clone(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8668 PyObject
*resultobj
= 0;
8669 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8670 wxEvent
*result
= 0 ;
8673 PyObject
*swig_obj
[1] ;
8675 if (!args
) SWIG_fail
;
8677 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8678 if (!SWIG_IsOK(res1
)) {
8679 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_Clone" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8681 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8683 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8684 result
= (wxEvent
*)((wxAuiManagerEvent
const *)arg1
)->Clone();
8685 wxPyEndAllowThreads(__tstate
);
8686 if (PyErr_Occurred()) SWIG_fail
;
8688 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxEvent
, 0 | 0 );
8695 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8696 PyObject
*resultobj
= 0;
8697 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8698 wxAuiManager
*arg2
= (wxAuiManager
*) 0 ;
8703 PyObject
* obj0
= 0 ;
8704 PyObject
* obj1
= 0 ;
8705 char * kwnames
[] = {
8706 (char *) "self",(char *) "mgr", NULL
8709 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetManager",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8710 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8711 if (!SWIG_IsOK(res1
)) {
8712 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetManager" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8714 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8715 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8716 if (!SWIG_IsOK(res2
)) {
8717 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_SetManager" "', expected argument " "2"" of type '" "wxAuiManager *""'");
8719 arg2
= reinterpret_cast< wxAuiManager
* >(argp2
);
8721 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8722 (arg1
)->SetManager(arg2
);
8723 wxPyEndAllowThreads(__tstate
);
8724 if (PyErr_Occurred()) SWIG_fail
;
8726 resultobj
= SWIG_Py_Void();
8733 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8734 PyObject
*resultobj
= 0;
8735 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8736 wxAuiPaneInfo
*arg2
= (wxAuiPaneInfo
*) 0 ;
8741 PyObject
* obj0
= 0 ;
8742 PyObject
* obj1
= 0 ;
8743 char * kwnames
[] = {
8744 (char *) "self",(char *) "p", NULL
8747 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8748 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8749 if (!SWIG_IsOK(res1
)) {
8750 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetPane" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8752 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8753 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
8754 if (!SWIG_IsOK(res2
)) {
8755 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_SetPane" "', expected argument " "2"" of type '" "wxAuiPaneInfo *""'");
8757 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
8759 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8760 (arg1
)->SetPane(arg2
);
8761 wxPyEndAllowThreads(__tstate
);
8762 if (PyErr_Occurred()) SWIG_fail
;
8764 resultobj
= SWIG_Py_Void();
8771 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8772 PyObject
*resultobj
= 0;
8773 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8779 PyObject
* obj0
= 0 ;
8780 PyObject
* obj1
= 0 ;
8781 char * kwnames
[] = {
8782 (char *) "self",(char *) "b", NULL
8785 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8786 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8787 if (!SWIG_IsOK(res1
)) {
8788 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetButton" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8790 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8791 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8792 if (!SWIG_IsOK(ecode2
)) {
8793 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_SetButton" "', expected argument " "2"" of type '" "int""'");
8795 arg2
= static_cast< int >(val2
);
8797 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8798 (arg1
)->SetButton(arg2
);
8799 wxPyEndAllowThreads(__tstate
);
8800 if (PyErr_Occurred()) SWIG_fail
;
8802 resultobj
= SWIG_Py_Void();
8809 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8810 PyObject
*resultobj
= 0;
8811 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8812 wxDC
*arg2
= (wxDC
*) 0 ;
8817 PyObject
* obj0
= 0 ;
8818 PyObject
* obj1
= 0 ;
8819 char * kwnames
[] = {
8820 (char *) "self",(char *) "pdc", NULL
8823 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetDC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8824 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8825 if (!SWIG_IsOK(res1
)) {
8826 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetDC" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8828 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8829 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
8830 if (!SWIG_IsOK(res2
)) {
8831 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_SetDC" "', expected argument " "2"" of type '" "wxDC *""'");
8833 arg2
= reinterpret_cast< wxDC
* >(argp2
);
8835 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8836 (arg1
)->SetDC(arg2
);
8837 wxPyEndAllowThreads(__tstate
);
8838 if (PyErr_Occurred()) SWIG_fail
;
8840 resultobj
= SWIG_Py_Void();
8847 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8848 PyObject
*resultobj
= 0;
8849 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8850 wxAuiManager
*result
= 0 ;
8853 PyObject
*swig_obj
[1] ;
8855 if (!args
) SWIG_fail
;
8857 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8858 if (!SWIG_IsOK(res1
)) {
8859 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetManager" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8861 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8863 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8864 result
= (wxAuiManager
*)((wxAuiManagerEvent
const *)arg1
)->GetManager();
8865 wxPyEndAllowThreads(__tstate
);
8866 if (PyErr_Occurred()) SWIG_fail
;
8868 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8875 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8876 PyObject
*resultobj
= 0;
8877 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8878 wxAuiPaneInfo
*result
= 0 ;
8881 PyObject
*swig_obj
[1] ;
8883 if (!args
) SWIG_fail
;
8885 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8886 if (!SWIG_IsOK(res1
)) {
8887 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetPane" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8889 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8891 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8892 result
= (wxAuiPaneInfo
*)((wxAuiManagerEvent
const *)arg1
)->GetPane();
8893 wxPyEndAllowThreads(__tstate
);
8894 if (PyErr_Occurred()) SWIG_fail
;
8896 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
8903 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8904 PyObject
*resultobj
= 0;
8905 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8909 PyObject
*swig_obj
[1] ;
8911 if (!args
) SWIG_fail
;
8913 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8914 if (!SWIG_IsOK(res1
)) {
8915 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetButton" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8917 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8919 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8920 result
= (int)((wxAuiManagerEvent
const *)arg1
)->GetButton();
8921 wxPyEndAllowThreads(__tstate
);
8922 if (PyErr_Occurred()) SWIG_fail
;
8924 resultobj
= SWIG_From_int(static_cast< int >(result
));
8931 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8932 PyObject
*resultobj
= 0;
8933 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8937 PyObject
*swig_obj
[1] ;
8939 if (!args
) SWIG_fail
;
8941 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8942 if (!SWIG_IsOK(res1
)) {
8943 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetDC" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8945 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8947 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8948 result
= (wxDC
*)((wxAuiManagerEvent
const *)arg1
)->GetDC();
8949 wxPyEndAllowThreads(__tstate
);
8950 if (PyErr_Occurred()) SWIG_fail
;
8953 resultobj
= wxPyMake_wxObject(result
, (bool)0);
8961 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_Veto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8962 PyObject
*resultobj
= 0;
8963 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8964 bool arg2
= (bool) true ;
8969 PyObject
* obj0
= 0 ;
8970 PyObject
* obj1
= 0 ;
8971 char * kwnames
[] = {
8972 (char *) "self",(char *) "veto", NULL
8975 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiManagerEvent_Veto",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8976 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8977 if (!SWIG_IsOK(res1
)) {
8978 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_Veto" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8980 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8982 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8983 if (!SWIG_IsOK(ecode2
)) {
8984 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_Veto" "', expected argument " "2"" of type '" "bool""'");
8986 arg2
= static_cast< bool >(val2
);
8989 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8991 wxPyEndAllowThreads(__tstate
);
8992 if (PyErr_Occurred()) SWIG_fail
;
8994 resultobj
= SWIG_Py_Void();
9001 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9002 PyObject
*resultobj
= 0;
9003 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9007 PyObject
*swig_obj
[1] ;
9009 if (!args
) SWIG_fail
;
9011 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9012 if (!SWIG_IsOK(res1
)) {
9013 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetVeto" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
9015 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9017 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9018 result
= (bool)((wxAuiManagerEvent
const *)arg1
)->GetVeto();
9019 wxPyEndAllowThreads(__tstate
);
9020 if (PyErr_Occurred()) SWIG_fail
;
9023 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9031 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetCanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9032 PyObject
*resultobj
= 0;
9033 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9039 PyObject
* obj0
= 0 ;
9040 PyObject
* obj1
= 0 ;
9041 char * kwnames
[] = {
9042 (char *) "self",(char *) "can_veto", NULL
9045 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetCanVeto",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9046 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9047 if (!SWIG_IsOK(res1
)) {
9048 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetCanVeto" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9050 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9051 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
9052 if (!SWIG_IsOK(ecode2
)) {
9053 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_SetCanVeto" "', expected argument " "2"" of type '" "bool""'");
9055 arg2
= static_cast< bool >(val2
);
9057 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9058 (arg1
)->SetCanVeto(arg2
);
9059 wxPyEndAllowThreads(__tstate
);
9060 if (PyErr_Occurred()) SWIG_fail
;
9062 resultobj
= SWIG_Py_Void();
9069 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_CanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9070 PyObject
*resultobj
= 0;
9071 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9075 PyObject
*swig_obj
[1] ;
9077 if (!args
) SWIG_fail
;
9079 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9080 if (!SWIG_IsOK(res1
)) {
9081 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_CanVeto" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
9083 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9085 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9086 result
= (bool)((wxAuiManagerEvent
const *)arg1
)->CanVeto();
9087 wxPyEndAllowThreads(__tstate
);
9088 if (PyErr_Occurred()) SWIG_fail
;
9091 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9099 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_manager_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9100 PyObject
*resultobj
= 0;
9101 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9102 wxAuiManager
*arg2
= (wxAuiManager
*) 0 ;
9107 PyObject
*swig_obj
[2] ;
9109 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_manager_set",2,2,swig_obj
)) SWIG_fail
;
9110 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9111 if (!SWIG_IsOK(res1
)) {
9112 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_manager_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9114 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9115 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiManager
, SWIG_POINTER_DISOWN
| 0 );
9116 if (!SWIG_IsOK(res2
)) {
9117 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_manager_set" "', expected argument " "2"" of type '" "wxAuiManager *""'");
9119 arg2
= reinterpret_cast< wxAuiManager
* >(argp2
);
9120 if (arg1
) (arg1
)->manager
= arg2
;
9122 resultobj
= SWIG_Py_Void();
9129 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_manager_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9130 PyObject
*resultobj
= 0;
9131 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9132 wxAuiManager
*result
= 0 ;
9135 PyObject
*swig_obj
[1] ;
9137 if (!args
) SWIG_fail
;
9139 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9140 if (!SWIG_IsOK(res1
)) {
9141 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_manager_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9143 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9144 result
= (wxAuiManager
*) ((arg1
)->manager
);
9145 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 | 0 );
9152 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9153 PyObject
*resultobj
= 0;
9154 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9155 wxAuiPaneInfo
*arg2
= (wxAuiPaneInfo
*) 0 ;
9160 PyObject
*swig_obj
[2] ;
9162 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_pane_set",2,2,swig_obj
)) SWIG_fail
;
9163 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9164 if (!SWIG_IsOK(res1
)) {
9165 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_pane_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9167 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9168 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
9169 if (!SWIG_IsOK(res2
)) {
9170 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_pane_set" "', expected argument " "2"" of type '" "wxAuiPaneInfo *""'");
9172 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
9173 if (arg1
) (arg1
)->pane
= arg2
;
9175 resultobj
= SWIG_Py_Void();
9182 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9183 PyObject
*resultobj
= 0;
9184 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9185 wxAuiPaneInfo
*result
= 0 ;
9188 PyObject
*swig_obj
[1] ;
9190 if (!args
) SWIG_fail
;
9192 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9193 if (!SWIG_IsOK(res1
)) {
9194 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_pane_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9196 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9197 result
= (wxAuiPaneInfo
*) ((arg1
)->pane
);
9198 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
9205 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9206 PyObject
*resultobj
= 0;
9207 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9213 PyObject
*swig_obj
[2] ;
9215 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_button_set",2,2,swig_obj
)) SWIG_fail
;
9216 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9217 if (!SWIG_IsOK(res1
)) {
9218 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_button_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9220 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9221 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9222 if (!SWIG_IsOK(ecode2
)) {
9223 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_button_set" "', expected argument " "2"" of type '" "int""'");
9225 arg2
= static_cast< int >(val2
);
9226 if (arg1
) (arg1
)->button
= arg2
;
9228 resultobj
= SWIG_Py_Void();
9235 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9236 PyObject
*resultobj
= 0;
9237 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9241 PyObject
*swig_obj
[1] ;
9243 if (!args
) SWIG_fail
;
9245 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9246 if (!SWIG_IsOK(res1
)) {
9247 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_button_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9249 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9250 result
= (int) ((arg1
)->button
);
9251 resultobj
= SWIG_From_int(static_cast< int >(result
));
9258 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_veto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9259 PyObject
*resultobj
= 0;
9260 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9266 PyObject
*swig_obj
[2] ;
9268 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_veto_flag_set",2,2,swig_obj
)) SWIG_fail
;
9269 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9270 if (!SWIG_IsOK(res1
)) {
9271 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_veto_flag_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9273 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9274 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9275 if (!SWIG_IsOK(ecode2
)) {
9276 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_veto_flag_set" "', expected argument " "2"" of type '" "bool""'");
9278 arg2
= static_cast< bool >(val2
);
9279 if (arg1
) (arg1
)->veto_flag
= arg2
;
9281 resultobj
= SWIG_Py_Void();
9288 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_veto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9289 PyObject
*resultobj
= 0;
9290 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9294 PyObject
*swig_obj
[1] ;
9296 if (!args
) SWIG_fail
;
9298 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9299 if (!SWIG_IsOK(res1
)) {
9300 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_veto_flag_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9302 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9303 result
= (bool) ((arg1
)->veto_flag
);
9305 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9313 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_canveto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9314 PyObject
*resultobj
= 0;
9315 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9321 PyObject
*swig_obj
[2] ;
9323 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_canveto_flag_set",2,2,swig_obj
)) SWIG_fail
;
9324 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9325 if (!SWIG_IsOK(res1
)) {
9326 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_canveto_flag_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9328 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9329 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9330 if (!SWIG_IsOK(ecode2
)) {
9331 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_canveto_flag_set" "', expected argument " "2"" of type '" "bool""'");
9333 arg2
= static_cast< bool >(val2
);
9334 if (arg1
) (arg1
)->canveto_flag
= arg2
;
9336 resultobj
= SWIG_Py_Void();
9343 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_canveto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9344 PyObject
*resultobj
= 0;
9345 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9349 PyObject
*swig_obj
[1] ;
9351 if (!args
) SWIG_fail
;
9353 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9354 if (!SWIG_IsOK(res1
)) {
9355 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_canveto_flag_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9357 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9358 result
= (bool) ((arg1
)->canveto_flag
);
9360 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9368 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_dc_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9369 PyObject
*resultobj
= 0;
9370 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9371 wxDC
*arg2
= (wxDC
*) 0 ;
9376 PyObject
*swig_obj
[2] ;
9378 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_dc_set",2,2,swig_obj
)) SWIG_fail
;
9379 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9380 if (!SWIG_IsOK(res1
)) {
9381 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_dc_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9383 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9384 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxDC
, SWIG_POINTER_DISOWN
| 0 );
9385 if (!SWIG_IsOK(res2
)) {
9386 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_dc_set" "', expected argument " "2"" of type '" "wxDC *""'");
9388 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9389 if (arg1
) (arg1
)->dc
= arg2
;
9391 resultobj
= SWIG_Py_Void();
9398 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_dc_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9399 PyObject
*resultobj
= 0;
9400 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9404 PyObject
*swig_obj
[1] ;
9406 if (!args
) SWIG_fail
;
9408 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9409 if (!SWIG_IsOK(res1
)) {
9410 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_dc_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9412 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9413 result
= (wxDC
*) ((arg1
)->dc
);
9415 resultobj
= wxPyMake_wxObject(result
, (bool)0);
9423 SWIGINTERN PyObject
*AuiManagerEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9425 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9426 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiManagerEvent
, SWIG_NewClientData(obj
));
9427 return SWIG_Py_Void();
9430 SWIGINTERN PyObject
*AuiManagerEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9431 return SWIG_Python_InitShadowInstance(args
);
9434 SWIGINTERN PyObject
*_wrap_new_AuiDockInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9435 PyObject
*resultobj
= 0;
9436 wxAuiDockInfo
*result
= 0 ;
9438 if (!SWIG_Python_UnpackTuple(args
,"new_AuiDockInfo",0,0,0)) SWIG_fail
;
9440 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9441 result
= (wxAuiDockInfo
*)new wxAuiDockInfo();
9442 wxPyEndAllowThreads(__tstate
);
9443 if (PyErr_Occurred()) SWIG_fail
;
9445 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDockInfo
, SWIG_POINTER_NEW
| 0 );
9452 SWIGINTERN PyObject
*_wrap_AuiDockInfo_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9453 PyObject
*resultobj
= 0;
9454 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9458 PyObject
*swig_obj
[1] ;
9460 if (!args
) SWIG_fail
;
9462 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9463 if (!SWIG_IsOK(res1
)) {
9464 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_IsOk" "', expected argument " "1"" of type '" "wxAuiDockInfo const *""'");
9466 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9468 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9469 result
= (bool)((wxAuiDockInfo
const *)arg1
)->IsOk();
9470 wxPyEndAllowThreads(__tstate
);
9471 if (PyErr_Occurred()) SWIG_fail
;
9474 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9482 SWIGINTERN PyObject
*_wrap_AuiDockInfo_IsHorizontal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9483 PyObject
*resultobj
= 0;
9484 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9488 PyObject
*swig_obj
[1] ;
9490 if (!args
) SWIG_fail
;
9492 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9493 if (!SWIG_IsOK(res1
)) {
9494 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_IsHorizontal" "', expected argument " "1"" of type '" "wxAuiDockInfo const *""'");
9496 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9498 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9499 result
= (bool)((wxAuiDockInfo
const *)arg1
)->IsHorizontal();
9500 wxPyEndAllowThreads(__tstate
);
9501 if (PyErr_Occurred()) SWIG_fail
;
9504 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9512 SWIGINTERN PyObject
*_wrap_AuiDockInfo_IsVertical(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9513 PyObject
*resultobj
= 0;
9514 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9518 PyObject
*swig_obj
[1] ;
9520 if (!args
) SWIG_fail
;
9522 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9523 if (!SWIG_IsOK(res1
)) {
9524 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_IsVertical" "', expected argument " "1"" of type '" "wxAuiDockInfo const *""'");
9526 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9528 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9529 result
= (bool)((wxAuiDockInfo
const *)arg1
)->IsVertical();
9530 wxPyEndAllowThreads(__tstate
);
9531 if (PyErr_Occurred()) SWIG_fail
;
9534 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9542 SWIGINTERN PyObject
*_wrap_AuiDockInfo_panes_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9543 PyObject
*resultobj
= 0;
9544 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9545 wxAuiPaneInfoPtrArray arg2
;
9550 PyObject
*swig_obj
[2] ;
9552 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_panes_set",2,2,swig_obj
)) SWIG_fail
;
9553 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9554 if (!SWIG_IsOK(res1
)) {
9555 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_panes_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9557 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9559 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxAuiPaneInfoPtrArray
, 0 | 0);
9560 if (!SWIG_IsOK(res2
)) {
9561 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockInfo_panes_set" "', expected argument " "2"" of type '" "wxAuiPaneInfoPtrArray""'");
9564 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockInfo_panes_set" "', expected argument " "2"" of type '" "wxAuiPaneInfoPtrArray""'");
9566 wxAuiPaneInfoPtrArray
* temp
= reinterpret_cast< wxAuiPaneInfoPtrArray
* >(argp2
);
9568 if (SWIG_IsNewObj(res2
)) delete temp
;
9571 if (arg1
) (arg1
)->panes
= arg2
;
9573 resultobj
= SWIG_Py_Void();
9580 SWIGINTERN PyObject
*_wrap_AuiDockInfo_panes_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9581 PyObject
*resultobj
= 0;
9582 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9583 wxAuiPaneInfoPtrArray result
;
9586 PyObject
*swig_obj
[1] ;
9588 if (!args
) SWIG_fail
;
9590 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9591 if (!SWIG_IsOK(res1
)) {
9592 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_panes_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9594 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9595 result
= ((arg1
)->panes
);
9596 resultobj
= SWIG_NewPointerObj((new wxAuiPaneInfoPtrArray(static_cast< const wxAuiPaneInfoPtrArray
& >(result
))), SWIGTYPE_p_wxAuiPaneInfoPtrArray
, SWIG_POINTER_OWN
| 0 );
9603 SWIGINTERN PyObject
*_wrap_AuiDockInfo_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9604 PyObject
*resultobj
= 0;
9605 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9606 wxRect
*arg2
= (wxRect
*) 0 ;
9611 PyObject
*swig_obj
[2] ;
9613 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_rect_set",2,2,swig_obj
)) SWIG_fail
;
9614 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9615 if (!SWIG_IsOK(res1
)) {
9616 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_rect_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9618 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9619 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
9620 if (!SWIG_IsOK(res2
)) {
9621 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
9623 arg2
= reinterpret_cast< wxRect
* >(argp2
);
9624 if (arg1
) (arg1
)->rect
= *arg2
;
9626 resultobj
= SWIG_Py_Void();
9633 SWIGINTERN PyObject
*_wrap_AuiDockInfo_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9634 PyObject
*resultobj
= 0;
9635 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9636 wxRect
*result
= 0 ;
9639 PyObject
*swig_obj
[1] ;
9641 if (!args
) SWIG_fail
;
9643 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9644 if (!SWIG_IsOK(res1
)) {
9645 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_rect_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9647 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9648 result
= (wxRect
*)& ((arg1
)->rect
);
9649 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
9656 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_direction_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9657 PyObject
*resultobj
= 0;
9658 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9664 PyObject
*swig_obj
[2] ;
9666 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
;
9667 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9668 if (!SWIG_IsOK(res1
)) {
9669 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9671 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9672 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9673 if (!SWIG_IsOK(ecode2
)) {
9674 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'");
9676 arg2
= static_cast< int >(val2
);
9677 if (arg1
) (arg1
)->dock_direction
= arg2
;
9679 resultobj
= SWIG_Py_Void();
9686 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_direction_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9687 PyObject
*resultobj
= 0;
9688 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9692 PyObject
*swig_obj
[1] ;
9694 if (!args
) SWIG_fail
;
9696 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9697 if (!SWIG_IsOK(res1
)) {
9698 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9700 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9701 result
= (int) ((arg1
)->dock_direction
);
9702 resultobj
= SWIG_From_int(static_cast< int >(result
));
9709 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_layer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9710 PyObject
*resultobj
= 0;
9711 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9717 PyObject
*swig_obj
[2] ;
9719 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
;
9720 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9721 if (!SWIG_IsOK(res1
)) {
9722 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9724 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9725 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9726 if (!SWIG_IsOK(ecode2
)) {
9727 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'");
9729 arg2
= static_cast< int >(val2
);
9730 if (arg1
) (arg1
)->dock_layer
= arg2
;
9732 resultobj
= SWIG_Py_Void();
9739 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_layer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9740 PyObject
*resultobj
= 0;
9741 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9745 PyObject
*swig_obj
[1] ;
9747 if (!args
) SWIG_fail
;
9749 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9750 if (!SWIG_IsOK(res1
)) {
9751 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9753 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9754 result
= (int) ((arg1
)->dock_layer
);
9755 resultobj
= SWIG_From_int(static_cast< int >(result
));
9762 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_row_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9763 PyObject
*resultobj
= 0;
9764 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9770 PyObject
*swig_obj
[2] ;
9772 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
;
9773 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9774 if (!SWIG_IsOK(res1
)) {
9775 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_row_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9777 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9778 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9779 if (!SWIG_IsOK(ecode2
)) {
9780 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'");
9782 arg2
= static_cast< int >(val2
);
9783 if (arg1
) (arg1
)->dock_row
= arg2
;
9785 resultobj
= SWIG_Py_Void();
9792 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_row_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9793 PyObject
*resultobj
= 0;
9794 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9798 PyObject
*swig_obj
[1] ;
9800 if (!args
) SWIG_fail
;
9802 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9803 if (!SWIG_IsOK(res1
)) {
9804 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_row_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9806 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9807 result
= (int) ((arg1
)->dock_row
);
9808 resultobj
= SWIG_From_int(static_cast< int >(result
));
9815 SWIGINTERN PyObject
*_wrap_AuiDockInfo_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9816 PyObject
*resultobj
= 0;
9817 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9823 PyObject
*swig_obj
[2] ;
9825 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_size_set",2,2,swig_obj
)) SWIG_fail
;
9826 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9827 if (!SWIG_IsOK(res1
)) {
9828 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_size_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9830 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9831 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9832 if (!SWIG_IsOK(ecode2
)) {
9833 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_size_set" "', expected argument " "2"" of type '" "int""'");
9835 arg2
= static_cast< int >(val2
);
9836 if (arg1
) (arg1
)->size
= arg2
;
9838 resultobj
= SWIG_Py_Void();
9845 SWIGINTERN PyObject
*_wrap_AuiDockInfo_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9846 PyObject
*resultobj
= 0;
9847 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9851 PyObject
*swig_obj
[1] ;
9853 if (!args
) SWIG_fail
;
9855 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9856 if (!SWIG_IsOK(res1
)) {
9857 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_size_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9859 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9860 result
= (int) ((arg1
)->size
);
9861 resultobj
= SWIG_From_int(static_cast< int >(result
));
9868 SWIGINTERN PyObject
*_wrap_AuiDockInfo_min_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9869 PyObject
*resultobj
= 0;
9870 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9876 PyObject
*swig_obj
[2] ;
9878 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
;
9879 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9880 if (!SWIG_IsOK(res1
)) {
9881 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_min_size_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9883 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9884 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9885 if (!SWIG_IsOK(ecode2
)) {
9886 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_min_size_set" "', expected argument " "2"" of type '" "int""'");
9888 arg2
= static_cast< int >(val2
);
9889 if (arg1
) (arg1
)->min_size
= arg2
;
9891 resultobj
= SWIG_Py_Void();
9898 SWIGINTERN PyObject
*_wrap_AuiDockInfo_min_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9899 PyObject
*resultobj
= 0;
9900 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9904 PyObject
*swig_obj
[1] ;
9906 if (!args
) SWIG_fail
;
9908 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9909 if (!SWIG_IsOK(res1
)) {
9910 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_min_size_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9912 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9913 result
= (int) ((arg1
)->min_size
);
9914 resultobj
= SWIG_From_int(static_cast< int >(result
));
9921 SWIGINTERN PyObject
*_wrap_AuiDockInfo_resizable_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9922 PyObject
*resultobj
= 0;
9923 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9929 PyObject
*swig_obj
[2] ;
9931 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_resizable_set",2,2,swig_obj
)) SWIG_fail
;
9932 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9933 if (!SWIG_IsOK(res1
)) {
9934 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_resizable_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9936 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9937 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9938 if (!SWIG_IsOK(ecode2
)) {
9939 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_resizable_set" "', expected argument " "2"" of type '" "bool""'");
9941 arg2
= static_cast< bool >(val2
);
9942 if (arg1
) (arg1
)->resizable
= arg2
;
9944 resultobj
= SWIG_Py_Void();
9951 SWIGINTERN PyObject
*_wrap_AuiDockInfo_resizable_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9952 PyObject
*resultobj
= 0;
9953 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9957 PyObject
*swig_obj
[1] ;
9959 if (!args
) SWIG_fail
;
9961 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9962 if (!SWIG_IsOK(res1
)) {
9963 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_resizable_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9965 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9966 result
= (bool) ((arg1
)->resizable
);
9968 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9976 SWIGINTERN PyObject
*_wrap_AuiDockInfo_toolbar_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9977 PyObject
*resultobj
= 0;
9978 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9984 PyObject
*swig_obj
[2] ;
9986 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_toolbar_set",2,2,swig_obj
)) SWIG_fail
;
9987 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9988 if (!SWIG_IsOK(res1
)) {
9989 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_toolbar_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9991 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9992 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9993 if (!SWIG_IsOK(ecode2
)) {
9994 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_toolbar_set" "', expected argument " "2"" of type '" "bool""'");
9996 arg2
= static_cast< bool >(val2
);
9997 if (arg1
) (arg1
)->toolbar
= arg2
;
9999 resultobj
= SWIG_Py_Void();
10006 SWIGINTERN PyObject
*_wrap_AuiDockInfo_toolbar_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10007 PyObject
*resultobj
= 0;
10008 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
10012 PyObject
*swig_obj
[1] ;
10014 if (!args
) SWIG_fail
;
10015 swig_obj
[0] = args
;
10016 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
10017 if (!SWIG_IsOK(res1
)) {
10018 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_toolbar_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
10020 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
10021 result
= (bool) ((arg1
)->toolbar
);
10023 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10031 SWIGINTERN PyObject
*_wrap_AuiDockInfo_fixed_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10032 PyObject
*resultobj
= 0;
10033 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
10039 PyObject
*swig_obj
[2] ;
10041 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_fixed_set",2,2,swig_obj
)) SWIG_fail
;
10042 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
10043 if (!SWIG_IsOK(res1
)) {
10044 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_fixed_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
10046 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
10047 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
10048 if (!SWIG_IsOK(ecode2
)) {
10049 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_fixed_set" "', expected argument " "2"" of type '" "bool""'");
10051 arg2
= static_cast< bool >(val2
);
10052 if (arg1
) (arg1
)->fixed
= arg2
;
10054 resultobj
= SWIG_Py_Void();
10061 SWIGINTERN PyObject
*_wrap_AuiDockInfo_fixed_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10062 PyObject
*resultobj
= 0;
10063 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
10067 PyObject
*swig_obj
[1] ;
10069 if (!args
) SWIG_fail
;
10070 swig_obj
[0] = args
;
10071 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
10072 if (!SWIG_IsOK(res1
)) {
10073 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_fixed_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
10075 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
10076 result
= (bool) ((arg1
)->fixed
);
10078 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10086 SWIGINTERN PyObject
*_wrap_AuiDockInfo_reserved1_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10087 PyObject
*resultobj
= 0;
10088 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
10094 PyObject
*swig_obj
[2] ;
10096 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_reserved1_set",2,2,swig_obj
)) SWIG_fail
;
10097 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
10098 if (!SWIG_IsOK(res1
)) {
10099 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_reserved1_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
10101 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
10102 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
10103 if (!SWIG_IsOK(ecode2
)) {
10104 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_reserved1_set" "', expected argument " "2"" of type '" "bool""'");
10106 arg2
= static_cast< bool >(val2
);
10107 if (arg1
) (arg1
)->reserved1
= arg2
;
10109 resultobj
= SWIG_Py_Void();
10116 SWIGINTERN PyObject
*_wrap_AuiDockInfo_reserved1_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10117 PyObject
*resultobj
= 0;
10118 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
10122 PyObject
*swig_obj
[1] ;
10124 if (!args
) SWIG_fail
;
10125 swig_obj
[0] = args
;
10126 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
10127 if (!SWIG_IsOK(res1
)) {
10128 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_reserved1_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
10130 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
10131 result
= (bool) ((arg1
)->reserved1
);
10133 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10141 SWIGINTERN PyObject
*_wrap_delete_AuiDockInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10142 PyObject
*resultobj
= 0;
10143 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
10146 PyObject
*swig_obj
[1] ;
10148 if (!args
) SWIG_fail
;
10149 swig_obj
[0] = args
;
10150 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, SWIG_POINTER_DISOWN
| 0 );
10151 if (!SWIG_IsOK(res1
)) {
10152 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDockInfo" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
10154 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
10156 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10157 delete_wxAuiDockInfo(arg1
);
10159 wxPyEndAllowThreads(__tstate
);
10160 if (PyErr_Occurred()) SWIG_fail
;
10162 resultobj
= SWIG_Py_Void();
10169 SWIGINTERN PyObject
*AuiDockInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10171 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10172 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDockInfo
, SWIG_NewClientData(obj
));
10173 return SWIG_Py_Void();
10176 SWIGINTERN PyObject
*AuiDockInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10177 return SWIG_Python_InitShadowInstance(args
);
10180 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_type_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10181 PyObject
*resultobj
= 0;
10182 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10188 PyObject
*swig_obj
[2] ;
10190 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_type_set",2,2,swig_obj
)) SWIG_fail
;
10191 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10192 if (!SWIG_IsOK(res1
)) {
10193 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_type_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10195 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10196 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
10197 if (!SWIG_IsOK(ecode2
)) {
10198 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockUIPart_type_set" "', expected argument " "2"" of type '" "int""'");
10200 arg2
= static_cast< int >(val2
);
10201 if (arg1
) (arg1
)->type
= arg2
;
10203 resultobj
= SWIG_Py_Void();
10210 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_type_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10211 PyObject
*resultobj
= 0;
10212 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10216 PyObject
*swig_obj
[1] ;
10218 if (!args
) SWIG_fail
;
10219 swig_obj
[0] = args
;
10220 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10221 if (!SWIG_IsOK(res1
)) {
10222 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_type_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10224 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10225 result
= (int) ((arg1
)->type
);
10226 resultobj
= SWIG_From_int(static_cast< int >(result
));
10233 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_orientation_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10234 PyObject
*resultobj
= 0;
10235 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10241 PyObject
*swig_obj
[2] ;
10243 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_orientation_set",2,2,swig_obj
)) SWIG_fail
;
10244 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10245 if (!SWIG_IsOK(res1
)) {
10246 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_orientation_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10248 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10249 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
10250 if (!SWIG_IsOK(ecode2
)) {
10251 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockUIPart_orientation_set" "', expected argument " "2"" of type '" "int""'");
10253 arg2
= static_cast< int >(val2
);
10254 if (arg1
) (arg1
)->orientation
= arg2
;
10256 resultobj
= SWIG_Py_Void();
10263 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_orientation_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10264 PyObject
*resultobj
= 0;
10265 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10269 PyObject
*swig_obj
[1] ;
10271 if (!args
) SWIG_fail
;
10272 swig_obj
[0] = args
;
10273 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10274 if (!SWIG_IsOK(res1
)) {
10275 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_orientation_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10277 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10278 result
= (int) ((arg1
)->orientation
);
10279 resultobj
= SWIG_From_int(static_cast< int >(result
));
10286 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_dock_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10287 PyObject
*resultobj
= 0;
10288 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10289 wxAuiDockInfo
*arg2
= (wxAuiDockInfo
*) 0 ;
10294 PyObject
*swig_obj
[2] ;
10296 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_dock_set",2,2,swig_obj
)) SWIG_fail
;
10297 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10298 if (!SWIG_IsOK(res1
)) {
10299 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_dock_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10301 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10302 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiDockInfo
, SWIG_POINTER_DISOWN
| 0 );
10303 if (!SWIG_IsOK(res2
)) {
10304 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_dock_set" "', expected argument " "2"" of type '" "wxAuiDockInfo *""'");
10306 arg2
= reinterpret_cast< wxAuiDockInfo
* >(argp2
);
10307 if (arg1
) (arg1
)->dock
= arg2
;
10309 resultobj
= SWIG_Py_Void();
10316 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_dock_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10317 PyObject
*resultobj
= 0;
10318 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10319 wxAuiDockInfo
*result
= 0 ;
10322 PyObject
*swig_obj
[1] ;
10324 if (!args
) SWIG_fail
;
10325 swig_obj
[0] = args
;
10326 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10327 if (!SWIG_IsOK(res1
)) {
10328 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_dock_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10330 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10331 result
= (wxAuiDockInfo
*) ((arg1
)->dock
);
10332 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
10339 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10340 PyObject
*resultobj
= 0;
10341 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10342 wxAuiPaneInfo
*arg2
= (wxAuiPaneInfo
*) 0 ;
10347 PyObject
*swig_obj
[2] ;
10349 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_pane_set",2,2,swig_obj
)) SWIG_fail
;
10350 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10351 if (!SWIG_IsOK(res1
)) {
10352 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_pane_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10354 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10355 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
10356 if (!SWIG_IsOK(res2
)) {
10357 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_pane_set" "', expected argument " "2"" of type '" "wxAuiPaneInfo *""'");
10359 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
10360 if (arg1
) (arg1
)->pane
= arg2
;
10362 resultobj
= SWIG_Py_Void();
10369 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10370 PyObject
*resultobj
= 0;
10371 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10372 wxAuiPaneInfo
*result
= 0 ;
10375 PyObject
*swig_obj
[1] ;
10377 if (!args
) SWIG_fail
;
10378 swig_obj
[0] = args
;
10379 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10380 if (!SWIG_IsOK(res1
)) {
10381 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_pane_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10383 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10384 result
= (wxAuiPaneInfo
*) ((arg1
)->pane
);
10385 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
10392 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10393 PyObject
*resultobj
= 0;
10394 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10395 wxAuiPaneButton
*arg2
= (wxAuiPaneButton
*) 0 ;
10400 PyObject
*swig_obj
[2] ;
10402 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_button_set",2,2,swig_obj
)) SWIG_fail
;
10403 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10404 if (!SWIG_IsOK(res1
)) {
10405 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_button_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10407 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10408 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiPaneButton
, SWIG_POINTER_DISOWN
| 0 );
10409 if (!SWIG_IsOK(res2
)) {
10410 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_button_set" "', expected argument " "2"" of type '" "wxAuiPaneButton *""'");
10412 arg2
= reinterpret_cast< wxAuiPaneButton
* >(argp2
);
10413 if (arg1
) (arg1
)->button
= arg2
;
10415 resultobj
= SWIG_Py_Void();
10422 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10423 PyObject
*resultobj
= 0;
10424 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10425 wxAuiPaneButton
*result
= 0 ;
10428 PyObject
*swig_obj
[1] ;
10430 if (!args
) SWIG_fail
;
10431 swig_obj
[0] = args
;
10432 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10433 if (!SWIG_IsOK(res1
)) {
10434 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_button_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10436 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10437 result
= (wxAuiPaneButton
*) ((arg1
)->button
);
10438 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneButton
, 0 | 0 );
10445 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_cont_sizer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10446 PyObject
*resultobj
= 0;
10447 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10448 wxSizer
*arg2
= (wxSizer
*) 0 ;
10453 PyObject
*swig_obj
[2] ;
10455 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_cont_sizer_set",2,2,swig_obj
)) SWIG_fail
;
10456 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10457 if (!SWIG_IsOK(res1
)) {
10458 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_cont_sizer_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10460 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10461 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizer
, SWIG_POINTER_DISOWN
| 0 );
10462 if (!SWIG_IsOK(res2
)) {
10463 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_cont_sizer_set" "', expected argument " "2"" of type '" "wxSizer *""'");
10465 arg2
= reinterpret_cast< wxSizer
* >(argp2
);
10466 if (arg1
) (arg1
)->cont_sizer
= arg2
;
10468 resultobj
= SWIG_Py_Void();
10475 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_cont_sizer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10476 PyObject
*resultobj
= 0;
10477 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10478 wxSizer
*result
= 0 ;
10481 PyObject
*swig_obj
[1] ;
10483 if (!args
) SWIG_fail
;
10484 swig_obj
[0] = args
;
10485 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10486 if (!SWIG_IsOK(res1
)) {
10487 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_cont_sizer_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10489 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10490 result
= (wxSizer
*) ((arg1
)->cont_sizer
);
10492 resultobj
= wxPyMake_wxObject(result
, (bool)0);
10500 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_sizer_item_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10501 PyObject
*resultobj
= 0;
10502 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10503 wxSizerItem
*arg2
= (wxSizerItem
*) 0 ;
10508 PyObject
*swig_obj
[2] ;
10510 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_sizer_item_set",2,2,swig_obj
)) SWIG_fail
;
10511 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10512 if (!SWIG_IsOK(res1
)) {
10513 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_sizer_item_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10515 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10516 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizerItem
, SWIG_POINTER_DISOWN
| 0 );
10517 if (!SWIG_IsOK(res2
)) {
10518 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_sizer_item_set" "', expected argument " "2"" of type '" "wxSizerItem *""'");
10520 arg2
= reinterpret_cast< wxSizerItem
* >(argp2
);
10521 if (arg1
) (arg1
)->sizer_item
= arg2
;
10523 resultobj
= SWIG_Py_Void();
10530 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_sizer_item_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10531 PyObject
*resultobj
= 0;
10532 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10533 wxSizerItem
*result
= 0 ;
10536 PyObject
*swig_obj
[1] ;
10538 if (!args
) SWIG_fail
;
10539 swig_obj
[0] = args
;
10540 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10541 if (!SWIG_IsOK(res1
)) {
10542 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_sizer_item_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10544 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10545 result
= (wxSizerItem
*) ((arg1
)->sizer_item
);
10546 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSizerItem
, 0 | 0 );
10553 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10554 PyObject
*resultobj
= 0;
10555 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10556 wxRect
*arg2
= (wxRect
*) 0 ;
10561 PyObject
*swig_obj
[2] ;
10563 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_rect_set",2,2,swig_obj
)) SWIG_fail
;
10564 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10565 if (!SWIG_IsOK(res1
)) {
10566 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_rect_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10568 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10569 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
10570 if (!SWIG_IsOK(res2
)) {
10571 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
10573 arg2
= reinterpret_cast< wxRect
* >(argp2
);
10574 if (arg1
) (arg1
)->rect
= *arg2
;
10576 resultobj
= SWIG_Py_Void();
10583 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10584 PyObject
*resultobj
= 0;
10585 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10586 wxRect
*result
= 0 ;
10589 PyObject
*swig_obj
[1] ;
10591 if (!args
) SWIG_fail
;
10592 swig_obj
[0] = args
;
10593 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10594 if (!SWIG_IsOK(res1
)) {
10595 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_rect_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10597 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10598 result
= (wxRect
*)& ((arg1
)->rect
);
10599 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
10606 SWIGINTERN PyObject
*_wrap_delete_AuiDockUIPart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10607 PyObject
*resultobj
= 0;
10608 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10611 PyObject
*swig_obj
[1] ;
10613 if (!args
) SWIG_fail
;
10614 swig_obj
[0] = args
;
10615 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, SWIG_POINTER_DISOWN
| 0 );
10616 if (!SWIG_IsOK(res1
)) {
10617 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDockUIPart" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10619 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10621 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10622 delete_wxAuiDockUIPart(arg1
);
10624 wxPyEndAllowThreads(__tstate
);
10625 if (PyErr_Occurred()) SWIG_fail
;
10627 resultobj
= SWIG_Py_Void();
10634 SWIGINTERN PyObject
*AuiDockUIPart_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10636 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10637 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDockUIPart
, SWIG_NewClientData(obj
));
10638 return SWIG_Py_Void();
10641 SWIGINTERN PyObject
*_wrap_AuiPaneButton_button_id_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10642 PyObject
*resultobj
= 0;
10643 wxAuiPaneButton
*arg1
= (wxAuiPaneButton
*) 0 ;
10649 PyObject
*swig_obj
[2] ;
10651 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneButton_button_id_set",2,2,swig_obj
)) SWIG_fail
;
10652 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneButton
, 0 | 0 );
10653 if (!SWIG_IsOK(res1
)) {
10654 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneButton_button_id_set" "', expected argument " "1"" of type '" "wxAuiPaneButton *""'");
10656 arg1
= reinterpret_cast< wxAuiPaneButton
* >(argp1
);
10657 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
10658 if (!SWIG_IsOK(ecode2
)) {
10659 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneButton_button_id_set" "', expected argument " "2"" of type '" "int""'");
10661 arg2
= static_cast< int >(val2
);
10662 if (arg1
) (arg1
)->button_id
= arg2
;
10664 resultobj
= SWIG_Py_Void();
10671 SWIGINTERN PyObject
*_wrap_AuiPaneButton_button_id_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10672 PyObject
*resultobj
= 0;
10673 wxAuiPaneButton
*arg1
= (wxAuiPaneButton
*) 0 ;
10677 PyObject
*swig_obj
[1] ;
10679 if (!args
) SWIG_fail
;
10680 swig_obj
[0] = args
;
10681 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneButton
, 0 | 0 );
10682 if (!SWIG_IsOK(res1
)) {
10683 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneButton_button_id_get" "', expected argument " "1"" of type '" "wxAuiPaneButton *""'");
10685 arg1
= reinterpret_cast< wxAuiPaneButton
* >(argp1
);
10686 result
= (int) ((arg1
)->button_id
);
10687 resultobj
= SWIG_From_int(static_cast< int >(result
));
10694 SWIGINTERN PyObject
*_wrap_delete_AuiPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10695 PyObject
*resultobj
= 0;
10696 wxAuiPaneButton
*arg1
= (wxAuiPaneButton
*) 0 ;
10699 PyObject
*swig_obj
[1] ;
10701 if (!args
) SWIG_fail
;
10702 swig_obj
[0] = args
;
10703 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneButton
, SWIG_POINTER_DISOWN
| 0 );
10704 if (!SWIG_IsOK(res1
)) {
10705 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiPaneButton" "', expected argument " "1"" of type '" "wxAuiPaneButton *""'");
10707 arg1
= reinterpret_cast< wxAuiPaneButton
* >(argp1
);
10709 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10710 delete_wxAuiPaneButton(arg1
);
10712 wxPyEndAllowThreads(__tstate
);
10713 if (PyErr_Occurred()) SWIG_fail
;
10715 resultobj
= SWIG_Py_Void();
10722 SWIGINTERN PyObject
*AuiPaneButton_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10724 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10725 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiPaneButton
, SWIG_NewClientData(obj
));
10726 return SWIG_Py_Void();
10729 SWIGINTERN PyObject
*_wrap_delete_AuiDockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10730 PyObject
*resultobj
= 0;
10731 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10734 PyObject
*swig_obj
[1] ;
10736 if (!args
) SWIG_fail
;
10737 swig_obj
[0] = args
;
10738 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockArt
, SWIG_POINTER_DISOWN
| 0 );
10739 if (!SWIG_IsOK(res1
)) {
10740 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDockArt" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10742 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10744 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10747 wxPyEndAllowThreads(__tstate
);
10748 if (PyErr_Occurred()) SWIG_fail
;
10750 resultobj
= SWIG_Py_Void();
10757 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10758 PyObject
*resultobj
= 0;
10759 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10766 PyObject
* obj0
= 0 ;
10767 PyObject
* obj1
= 0 ;
10768 char * kwnames
[] = {
10769 (char *) "self",(char *) "id", NULL
10772 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetMetric",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10773 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10774 if (!SWIG_IsOK(res1
)) {
10775 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetMetric" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10777 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10778 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10779 if (!SWIG_IsOK(ecode2
)) {
10780 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetMetric" "', expected argument " "2"" of type '" "int""'");
10782 arg2
= static_cast< int >(val2
);
10784 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10785 result
= (int)(arg1
)->GetMetric(arg2
);
10786 wxPyEndAllowThreads(__tstate
);
10787 if (PyErr_Occurred()) SWIG_fail
;
10789 resultobj
= SWIG_From_int(static_cast< int >(result
));
10796 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10797 PyObject
*resultobj
= 0;
10798 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10807 PyObject
* obj0
= 0 ;
10808 PyObject
* obj1
= 0 ;
10809 PyObject
* obj2
= 0 ;
10810 char * kwnames
[] = {
10811 (char *) "self",(char *) "id",(char *) "new_val", NULL
10814 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetMetric",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10815 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10816 if (!SWIG_IsOK(res1
)) {
10817 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetMetric" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10819 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10820 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10821 if (!SWIG_IsOK(ecode2
)) {
10822 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetMetric" "', expected argument " "2"" of type '" "int""'");
10824 arg2
= static_cast< int >(val2
);
10825 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10826 if (!SWIG_IsOK(ecode3
)) {
10827 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiDockArt_SetMetric" "', expected argument " "3"" of type '" "int""'");
10829 arg3
= static_cast< int >(val3
);
10831 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10832 (arg1
)->SetMetric(arg2
,arg3
);
10833 wxPyEndAllowThreads(__tstate
);
10834 if (PyErr_Occurred()) SWIG_fail
;
10836 resultobj
= SWIG_Py_Void();
10843 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10844 PyObject
*resultobj
= 0;
10845 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10854 PyObject
* obj0
= 0 ;
10855 PyObject
* obj1
= 0 ;
10856 PyObject
* obj2
= 0 ;
10857 char * kwnames
[] = {
10858 (char *) "self",(char *) "id",(char *) "font", NULL
10861 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetFont",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10862 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10863 if (!SWIG_IsOK(res1
)) {
10864 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetFont" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10866 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10867 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10868 if (!SWIG_IsOK(ecode2
)) {
10869 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetFont" "', expected argument " "2"" of type '" "int""'");
10871 arg2
= static_cast< int >(val2
);
10872 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxFont
, 0 | 0);
10873 if (!SWIG_IsOK(res3
)) {
10874 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
10877 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
10879 arg3
= reinterpret_cast< wxFont
* >(argp3
);
10881 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10882 (arg1
)->SetFont(arg2
,(wxFont
const &)*arg3
);
10883 wxPyEndAllowThreads(__tstate
);
10884 if (PyErr_Occurred()) SWIG_fail
;
10886 resultobj
= SWIG_Py_Void();
10893 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10894 PyObject
*resultobj
= 0;
10895 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10902 PyObject
* obj0
= 0 ;
10903 PyObject
* obj1
= 0 ;
10904 char * kwnames
[] = {
10905 (char *) "self",(char *) "id", NULL
10908 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10909 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10910 if (!SWIG_IsOK(res1
)) {
10911 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetFont" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10913 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10914 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10915 if (!SWIG_IsOK(ecode2
)) {
10916 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetFont" "', expected argument " "2"" of type '" "int""'");
10918 arg2
= static_cast< int >(val2
);
10920 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10921 result
= (arg1
)->GetFont(arg2
);
10922 wxPyEndAllowThreads(__tstate
);
10923 if (PyErr_Occurred()) SWIG_fail
;
10925 resultobj
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
10932 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10933 PyObject
*resultobj
= 0;
10934 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10941 PyObject
* obj0
= 0 ;
10942 PyObject
* obj1
= 0 ;
10943 char * kwnames
[] = {
10944 (char *) "self",(char *) "id", NULL
10947 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10948 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10949 if (!SWIG_IsOK(res1
)) {
10950 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetColour" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10952 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10953 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10954 if (!SWIG_IsOK(ecode2
)) {
10955 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetColour" "', expected argument " "2"" of type '" "int""'");
10957 arg2
= static_cast< int >(val2
);
10959 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10960 result
= (arg1
)->GetColour(arg2
);
10961 wxPyEndAllowThreads(__tstate
);
10962 if (PyErr_Occurred()) SWIG_fail
;
10964 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
10971 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10972 PyObject
*resultobj
= 0;
10973 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10975 wxColor
*arg3
= 0 ;
10982 PyObject
* obj0
= 0 ;
10983 PyObject
* obj1
= 0 ;
10984 PyObject
* obj2
= 0 ;
10985 char * kwnames
[] = {
10986 (char *) "self",(char *) "id",(char *) "colour", NULL
10989 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10990 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10991 if (!SWIG_IsOK(res1
)) {
10992 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetColour" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10994 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10995 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10996 if (!SWIG_IsOK(ecode2
)) {
10997 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetColour" "', expected argument " "2"" of type '" "int""'");
10999 arg2
= static_cast< int >(val2
);
11000 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxColor
, 0 | 0);
11001 if (!SWIG_IsOK(res3
)) {
11002 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_SetColour" "', expected argument " "3"" of type '" "wxColor const &""'");
11005 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_SetColour" "', expected argument " "3"" of type '" "wxColor const &""'");
11007 arg3
= reinterpret_cast< wxColor
* >(argp3
);
11009 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11010 (arg1
)->SetColour(arg2
,(wxColor
const &)*arg3
);
11011 wxPyEndAllowThreads(__tstate
);
11012 if (PyErr_Occurred()) SWIG_fail
;
11014 resultobj
= SWIG_Py_Void();
11021 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11022 PyObject
*resultobj
= 0;
11023 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11030 PyObject
* obj0
= 0 ;
11031 PyObject
* obj1
= 0 ;
11032 char * kwnames
[] = {
11033 (char *) "self",(char *) "id", NULL
11036 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetColor",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11037 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11038 if (!SWIG_IsOK(res1
)) {
11039 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetColor" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11041 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11042 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11043 if (!SWIG_IsOK(ecode2
)) {
11044 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetColor" "', expected argument " "2"" of type '" "int""'");
11046 arg2
= static_cast< int >(val2
);
11048 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11049 result
= (arg1
)->GetColor(arg2
);
11050 wxPyEndAllowThreads(__tstate
);
11051 if (PyErr_Occurred()) SWIG_fail
;
11053 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
11060 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11061 PyObject
*resultobj
= 0;
11062 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11064 wxColour
*arg3
= 0 ;
11070 PyObject
* obj0
= 0 ;
11071 PyObject
* obj1
= 0 ;
11072 PyObject
* obj2
= 0 ;
11073 char * kwnames
[] = {
11074 (char *) "self",(char *) "id",(char *) "color", NULL
11077 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetColor",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11078 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11079 if (!SWIG_IsOK(res1
)) {
11080 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetColor" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11082 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11083 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11084 if (!SWIG_IsOK(ecode2
)) {
11085 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetColor" "', expected argument " "2"" of type '" "int""'");
11087 arg2
= static_cast< int >(val2
);
11090 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
11093 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11094 (arg1
)->SetColor(arg2
,(wxColour
const &)*arg3
);
11095 wxPyEndAllowThreads(__tstate
);
11096 if (PyErr_Occurred()) SWIG_fail
;
11098 resultobj
= SWIG_Py_Void();
11105 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawSash(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11106 PyObject
*resultobj
= 0;
11107 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11109 wxWindow
*arg3
= (wxWindow
*) 0 ;
11121 PyObject
* obj0
= 0 ;
11122 PyObject
* obj1
= 0 ;
11123 PyObject
* obj2
= 0 ;
11124 PyObject
* obj3
= 0 ;
11125 PyObject
* obj4
= 0 ;
11126 char * kwnames
[] = {
11127 (char *) "self",(char *) "dc",(char *) "window",(char *) "orientation",(char *) "rect", NULL
11130 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawSash",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11131 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11132 if (!SWIG_IsOK(res1
)) {
11133 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11135 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11136 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11137 if (!SWIG_IsOK(res2
)) {
11138 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
11141 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
11143 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11144 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11145 if (!SWIG_IsOK(res3
)) {
11146 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "3"" of type '" "wxWindow *""'");
11148 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11149 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11150 if (!SWIG_IsOK(ecode4
)) {
11151 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "4"" of type '" "int""'");
11153 arg4
= static_cast< int >(val4
);
11156 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
11159 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11160 (arg1
)->DrawSash(*arg2
,arg3
,arg4
,(wxRect
const &)*arg5
);
11161 wxPyEndAllowThreads(__tstate
);
11162 if (PyErr_Occurred()) SWIG_fail
;
11164 resultobj
= SWIG_Py_Void();
11171 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11172 PyObject
*resultobj
= 0;
11173 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11175 wxWindow
*arg3
= (wxWindow
*) 0 ;
11187 PyObject
* obj0
= 0 ;
11188 PyObject
* obj1
= 0 ;
11189 PyObject
* obj2
= 0 ;
11190 PyObject
* obj3
= 0 ;
11191 PyObject
* obj4
= 0 ;
11192 char * kwnames
[] = {
11193 (char *) "self",(char *) "dc",(char *) "window",(char *) "orientation",(char *) "rect", NULL
11196 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11197 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11198 if (!SWIG_IsOK(res1
)) {
11199 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11201 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11202 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11203 if (!SWIG_IsOK(res2
)) {
11204 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
11207 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
11209 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11210 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11211 if (!SWIG_IsOK(res3
)) {
11212 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "3"" of type '" "wxWindow *""'");
11214 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11215 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11216 if (!SWIG_IsOK(ecode4
)) {
11217 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "4"" of type '" "int""'");
11219 arg4
= static_cast< int >(val4
);
11222 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
11225 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11226 (arg1
)->DrawBackground(*arg2
,arg3
,arg4
,(wxRect
const &)*arg5
);
11227 wxPyEndAllowThreads(__tstate
);
11228 if (PyErr_Occurred()) SWIG_fail
;
11230 resultobj
= SWIG_Py_Void();
11237 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawCaption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11238 PyObject
*resultobj
= 0;
11239 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11241 wxWindow
*arg3
= (wxWindow
*) 0 ;
11242 wxString
*arg4
= 0 ;
11244 wxAuiPaneInfo
*arg6
= 0 ;
11251 bool temp4
= false ;
11255 PyObject
* obj0
= 0 ;
11256 PyObject
* obj1
= 0 ;
11257 PyObject
* obj2
= 0 ;
11258 PyObject
* obj3
= 0 ;
11259 PyObject
* obj4
= 0 ;
11260 PyObject
* obj5
= 0 ;
11261 char * kwnames
[] = {
11262 (char *) "self",(char *) "dc",(char *) "window",(char *) "text",(char *) "rect",(char *) "pane", NULL
11265 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:AuiDockArt_DrawCaption",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
11266 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11267 if (!SWIG_IsOK(res1
)) {
11268 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11270 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11271 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11272 if (!SWIG_IsOK(res2
)) {
11273 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
11276 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
11278 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11279 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11280 if (!SWIG_IsOK(res3
)) {
11281 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "3"" of type '" "wxWindow *""'");
11283 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11285 arg4
= wxString_in_helper(obj3
);
11286 if (arg4
== NULL
) SWIG_fail
;
11291 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
11293 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
11294 if (!SWIG_IsOK(res6
)) {
11295 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "6"" of type '" "wxAuiPaneInfo &""'");
11298 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawCaption" "', expected argument " "6"" of type '" "wxAuiPaneInfo &""'");
11300 arg6
= reinterpret_cast< wxAuiPaneInfo
* >(argp6
);
11302 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11303 (arg1
)->DrawCaption(*arg2
,arg3
,(wxString
const &)*arg4
,(wxRect
const &)*arg5
,*arg6
);
11304 wxPyEndAllowThreads(__tstate
);
11305 if (PyErr_Occurred()) SWIG_fail
;
11307 resultobj
= SWIG_Py_Void();
11322 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawGripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11323 PyObject
*resultobj
= 0;
11324 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11326 wxWindow
*arg3
= (wxWindow
*) 0 ;
11328 wxAuiPaneInfo
*arg5
= 0 ;
11338 PyObject
* obj0
= 0 ;
11339 PyObject
* obj1
= 0 ;
11340 PyObject
* obj2
= 0 ;
11341 PyObject
* obj3
= 0 ;
11342 PyObject
* obj4
= 0 ;
11343 char * kwnames
[] = {
11344 (char *) "self",(char *) "dc",(char *) "window",(char *) "rect",(char *) "pane", NULL
11347 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawGripper",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11348 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11349 if (!SWIG_IsOK(res1
)) {
11350 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11352 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11353 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11354 if (!SWIG_IsOK(res2
)) {
11355 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
11358 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
11360 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11361 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11362 if (!SWIG_IsOK(res3
)) {
11363 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "3"" of type '" "wxWindow *""'");
11365 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11368 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
11370 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
11371 if (!SWIG_IsOK(res5
)) {
11372 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11375 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawGripper" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11377 arg5
= reinterpret_cast< wxAuiPaneInfo
* >(argp5
);
11379 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11380 (arg1
)->DrawGripper(*arg2
,arg3
,(wxRect
const &)*arg4
,*arg5
);
11381 wxPyEndAllowThreads(__tstate
);
11382 if (PyErr_Occurred()) SWIG_fail
;
11384 resultobj
= SWIG_Py_Void();
11391 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11392 PyObject
*resultobj
= 0;
11393 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11395 wxWindow
*arg3
= (wxWindow
*) 0 ;
11397 wxAuiPaneInfo
*arg5
= 0 ;
11407 PyObject
* obj0
= 0 ;
11408 PyObject
* obj1
= 0 ;
11409 PyObject
* obj2
= 0 ;
11410 PyObject
* obj3
= 0 ;
11411 PyObject
* obj4
= 0 ;
11412 char * kwnames
[] = {
11413 (char *) "self",(char *) "dc",(char *) "window",(char *) "rect",(char *) "pane", NULL
11416 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawBorder",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11417 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11418 if (!SWIG_IsOK(res1
)) {
11419 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11421 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11422 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11423 if (!SWIG_IsOK(res2
)) {
11424 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
11427 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
11429 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11430 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11431 if (!SWIG_IsOK(res3
)) {
11432 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "3"" of type '" "wxWindow *""'");
11434 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11437 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
11439 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
11440 if (!SWIG_IsOK(res5
)) {
11441 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11444 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawBorder" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11446 arg5
= reinterpret_cast< wxAuiPaneInfo
* >(argp5
);
11448 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11449 (arg1
)->DrawBorder(*arg2
,arg3
,(wxRect
const &)*arg4
,*arg5
);
11450 wxPyEndAllowThreads(__tstate
);
11451 if (PyErr_Occurred()) SWIG_fail
;
11453 resultobj
= SWIG_Py_Void();
11460 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11461 PyObject
*resultobj
= 0;
11462 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11464 wxWindow
*arg3
= (wxWindow
*) 0 ;
11468 wxAuiPaneInfo
*arg7
= 0 ;
11482 PyObject
* obj0
= 0 ;
11483 PyObject
* obj1
= 0 ;
11484 PyObject
* obj2
= 0 ;
11485 PyObject
* obj3
= 0 ;
11486 PyObject
* obj4
= 0 ;
11487 PyObject
* obj5
= 0 ;
11488 PyObject
* obj6
= 0 ;
11489 char * kwnames
[] = {
11490 (char *) "self",(char *) "dc",(char *) "window",(char *) "button",(char *) "button_state",(char *) "rect",(char *) "pane", NULL
11493 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:AuiDockArt_DrawPaneButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
11494 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11495 if (!SWIG_IsOK(res1
)) {
11496 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11498 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11499 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11500 if (!SWIG_IsOK(res2
)) {
11501 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
11504 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
11506 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11507 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11508 if (!SWIG_IsOK(res3
)) {
11509 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "3"" of type '" "wxWindow *""'");
11511 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11512 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11513 if (!SWIG_IsOK(ecode4
)) {
11514 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "4"" of type '" "int""'");
11516 arg4
= static_cast< int >(val4
);
11517 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
11518 if (!SWIG_IsOK(ecode5
)) {
11519 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "5"" of type '" "int""'");
11521 arg5
= static_cast< int >(val5
);
11524 if ( ! wxRect_helper(obj5
, &arg6
)) SWIG_fail
;
11526 res7
= SWIG_ConvertPtr(obj6
, &argp7
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
11527 if (!SWIG_IsOK(res7
)) {
11528 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "7"" of type '" "wxAuiPaneInfo &""'");
11531 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "7"" of type '" "wxAuiPaneInfo &""'");
11533 arg7
= reinterpret_cast< wxAuiPaneInfo
* >(argp7
);
11535 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11536 (arg1
)->DrawPaneButton(*arg2
,arg3
,arg4
,arg5
,(wxRect
const &)*arg6
,*arg7
);
11537 wxPyEndAllowThreads(__tstate
);
11538 if (PyErr_Occurred()) SWIG_fail
;
11540 resultobj
= SWIG_Py_Void();
11547 SWIGINTERN PyObject
*AuiDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11549 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11550 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDockArt
, SWIG_NewClientData(obj
));
11551 return SWIG_Py_Void();
11554 SWIGINTERN PyObject
*_wrap_new_AuiDefaultDockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11555 PyObject
*resultobj
= 0;
11556 wxAuiDefaultDockArt
*result
= 0 ;
11558 if (!SWIG_Python_UnpackTuple(args
,"new_AuiDefaultDockArt",0,0,0)) SWIG_fail
;
11560 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11561 result
= (wxAuiDefaultDockArt
*)new wxAuiDefaultDockArt();
11562 wxPyEndAllowThreads(__tstate
);
11563 if (PyErr_Occurred()) SWIG_fail
;
11565 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDefaultDockArt
, SWIG_POINTER_NEW
| 0 );
11572 SWIGINTERN PyObject
*AuiDefaultDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11574 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11575 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDefaultDockArt
, SWIG_NewClientData(obj
));
11576 return SWIG_Py_Void();
11579 SWIGINTERN PyObject
*AuiDefaultDockArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11580 return SWIG_Python_InitShadowInstance(args
);
11583 SWIGINTERN PyObject
*_wrap_new_AuiFloatingFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11584 PyObject
*resultobj
= 0;
11585 wxWindow
*arg1
= (wxWindow
*) 0 ;
11586 wxAuiManager
*arg2
= (wxAuiManager
*) 0 ;
11587 wxAuiPaneInfo
*arg3
= 0 ;
11588 int arg4
= (int) wxID_ANY
;
11589 long arg5
= (long) wxRESIZE_BORDER
|wxSYSTEM_MENU
|wxCAPTION
|wxFRAME_NO_TASKBAR
|wxFRAME_FLOAT_ON_PARENT
|wxCLIP_CHILDREN
;
11590 wxAuiFloatingFrame
*result
= 0 ;
11601 PyObject
* obj0
= 0 ;
11602 PyObject
* obj1
= 0 ;
11603 PyObject
* obj2
= 0 ;
11604 PyObject
* obj3
= 0 ;
11605 PyObject
* obj4
= 0 ;
11606 char * kwnames
[] = {
11607 (char *) "parent",(char *) "owner_mgr",(char *) "pane",(char *) "id",(char *) "style", NULL
11610 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:new_AuiFloatingFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11611 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11612 if (!SWIG_IsOK(res1
)) {
11613 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiFloatingFrame" "', expected argument " "1"" of type '" "wxWindow *""'");
11615 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
11616 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
11617 if (!SWIG_IsOK(res2
)) {
11618 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_AuiFloatingFrame" "', expected argument " "2"" of type '" "wxAuiManager *""'");
11620 arg2
= reinterpret_cast< wxAuiManager
* >(argp2
);
11621 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
11622 if (!SWIG_IsOK(res3
)) {
11623 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_AuiFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
11626 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_AuiFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
11628 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
11630 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11631 if (!SWIG_IsOK(ecode4
)) {
11632 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_AuiFloatingFrame" "', expected argument " "4"" of type '" "int""'");
11634 arg4
= static_cast< int >(val4
);
11637 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
11638 if (!SWIG_IsOK(ecode5
)) {
11639 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiFloatingFrame" "', expected argument " "5"" of type '" "long""'");
11641 arg5
= static_cast< long >(val5
);
11644 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11645 result
= (wxAuiFloatingFrame
*)new wxAuiFloatingFrame(arg1
,arg2
,(wxAuiPaneInfo
const &)*arg3
,arg4
,arg5
);
11646 wxPyEndAllowThreads(__tstate
);
11647 if (PyErr_Occurred()) SWIG_fail
;
11649 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiFloatingFrame
, SWIG_POINTER_NEW
| 0 );
11656 SWIGINTERN PyObject
*_wrap_delete_AuiFloatingFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11657 PyObject
*resultobj
= 0;
11658 wxAuiFloatingFrame
*arg1
= (wxAuiFloatingFrame
*) 0 ;
11661 PyObject
*swig_obj
[1] ;
11663 if (!args
) SWIG_fail
;
11664 swig_obj
[0] = args
;
11665 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiFloatingFrame
, SWIG_POINTER_DISOWN
| 0 );
11666 if (!SWIG_IsOK(res1
)) {
11667 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiFloatingFrame" "', expected argument " "1"" of type '" "wxAuiFloatingFrame *""'");
11669 arg1
= reinterpret_cast< wxAuiFloatingFrame
* >(argp1
);
11671 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11674 wxPyEndAllowThreads(__tstate
);
11675 if (PyErr_Occurred()) SWIG_fail
;
11677 resultobj
= SWIG_Py_Void();
11684 SWIGINTERN PyObject
*_wrap_AuiFloatingFrame_SetPaneWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11685 PyObject
*resultobj
= 0;
11686 wxAuiFloatingFrame
*arg1
= (wxAuiFloatingFrame
*) 0 ;
11687 wxAuiPaneInfo
*arg2
= 0 ;
11692 PyObject
* obj0
= 0 ;
11693 PyObject
* obj1
= 0 ;
11694 char * kwnames
[] = {
11695 (char *) "self",(char *) "pane", NULL
11698 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiFloatingFrame_SetPaneWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11699 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiFloatingFrame
, 0 | 0 );
11700 if (!SWIG_IsOK(res1
)) {
11701 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiFloatingFrame_SetPaneWindow" "', expected argument " "1"" of type '" "wxAuiFloatingFrame *""'");
11703 arg1
= reinterpret_cast< wxAuiFloatingFrame
* >(argp1
);
11704 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
11705 if (!SWIG_IsOK(res2
)) {
11706 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiFloatingFrame_SetPaneWindow" "', expected argument " "2"" of type '" "wxAuiPaneInfo const &""'");
11709 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiFloatingFrame_SetPaneWindow" "', expected argument " "2"" of type '" "wxAuiPaneInfo const &""'");
11711 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
11713 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11714 (arg1
)->SetPaneWindow((wxAuiPaneInfo
const &)*arg2
);
11715 wxPyEndAllowThreads(__tstate
);
11716 if (PyErr_Occurred()) SWIG_fail
;
11718 resultobj
= SWIG_Py_Void();
11725 SWIGINTERN PyObject
*_wrap_AuiFloatingFrame_GetOwnerManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11726 PyObject
*resultobj
= 0;
11727 wxAuiFloatingFrame
*arg1
= (wxAuiFloatingFrame
*) 0 ;
11728 wxAuiManager
*result
= 0 ;
11731 PyObject
*swig_obj
[1] ;
11733 if (!args
) SWIG_fail
;
11734 swig_obj
[0] = args
;
11735 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiFloatingFrame
, 0 | 0 );
11736 if (!SWIG_IsOK(res1
)) {
11737 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiFloatingFrame_GetOwnerManager" "', expected argument " "1"" of type '" "wxAuiFloatingFrame const *""'");
11739 arg1
= reinterpret_cast< wxAuiFloatingFrame
* >(argp1
);
11741 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11742 result
= (wxAuiManager
*)((wxAuiFloatingFrame
const *)arg1
)->GetOwnerManager();
11743 wxPyEndAllowThreads(__tstate
);
11744 if (PyErr_Occurred()) SWIG_fail
;
11746 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 | 0 );
11753 SWIGINTERN PyObject
*AuiFloatingFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11755 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11756 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiFloatingFrame
, SWIG_NewClientData(obj
));
11757 return SWIG_Py_Void();
11760 SWIGINTERN PyObject
*AuiFloatingFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11761 return SWIG_Python_InitShadowInstance(args
);
11764 SWIGINTERN PyObject
*_wrap_new_AuiNotebookEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11765 PyObject
*resultobj
= 0;
11766 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
11767 int arg2
= (int) 0 ;
11768 wxAuiNotebookEvent
*result
= 0 ;
11773 PyObject
* obj0
= 0 ;
11774 PyObject
* obj1
= 0 ;
11775 char * kwnames
[] = {
11776 (char *) "command_type",(char *) "win_id", NULL
11779 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_AuiNotebookEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11781 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
11782 if (!SWIG_IsOK(ecode1
)) {
11783 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_AuiNotebookEvent" "', expected argument " "1"" of type '" "wxEventType""'");
11785 arg1
= static_cast< wxEventType
>(val1
);
11788 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11789 if (!SWIG_IsOK(ecode2
)) {
11790 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiNotebookEvent" "', expected argument " "2"" of type '" "int""'");
11792 arg2
= static_cast< int >(val2
);
11795 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11796 result
= (wxAuiNotebookEvent
*)new wxAuiNotebookEvent(arg1
,arg2
);
11797 wxPyEndAllowThreads(__tstate
);
11798 if (PyErr_Occurred()) SWIG_fail
;
11800 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookEvent
, SWIG_POINTER_NEW
| 0 );
11807 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11808 PyObject
*resultobj
= 0;
11809 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11815 PyObject
* obj0
= 0 ;
11816 PyObject
* obj1
= 0 ;
11817 char * kwnames
[] = {
11818 (char *) "self",(char *) "s", NULL
11821 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11822 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11823 if (!SWIG_IsOK(res1
)) {
11824 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11826 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11827 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11828 if (!SWIG_IsOK(ecode2
)) {
11829 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_SetSelection" "', expected argument " "2"" of type '" "int""'");
11831 arg2
= static_cast< int >(val2
);
11833 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11834 (arg1
)->SetSelection(arg2
);
11835 wxPyEndAllowThreads(__tstate
);
11836 if (PyErr_Occurred()) SWIG_fail
;
11838 resultobj
= SWIG_Py_Void();
11845 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11846 PyObject
*resultobj
= 0;
11847 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11851 PyObject
*swig_obj
[1] ;
11853 if (!args
) SWIG_fail
;
11854 swig_obj
[0] = args
;
11855 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11856 if (!SWIG_IsOK(res1
)) {
11857 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
11859 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11861 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11862 result
= (int)((wxAuiNotebookEvent
const *)arg1
)->GetSelection();
11863 wxPyEndAllowThreads(__tstate
);
11864 if (PyErr_Occurred()) SWIG_fail
;
11866 resultobj
= SWIG_From_int(static_cast< int >(result
));
11873 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetOldSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11874 PyObject
*resultobj
= 0;
11875 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11881 PyObject
* obj0
= 0 ;
11882 PyObject
* obj1
= 0 ;
11883 char * kwnames
[] = {
11884 (char *) "self",(char *) "s", NULL
11887 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetOldSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11888 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11889 if (!SWIG_IsOK(res1
)) {
11890 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetOldSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11892 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11893 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11894 if (!SWIG_IsOK(ecode2
)) {
11895 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_SetOldSelection" "', expected argument " "2"" of type '" "int""'");
11897 arg2
= static_cast< int >(val2
);
11899 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11900 (arg1
)->SetOldSelection(arg2
);
11901 wxPyEndAllowThreads(__tstate
);
11902 if (PyErr_Occurred()) SWIG_fail
;
11904 resultobj
= SWIG_Py_Void();
11911 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetOldSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11912 PyObject
*resultobj
= 0;
11913 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11917 PyObject
*swig_obj
[1] ;
11919 if (!args
) SWIG_fail
;
11920 swig_obj
[0] = args
;
11921 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11922 if (!SWIG_IsOK(res1
)) {
11923 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetOldSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
11925 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11927 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11928 result
= (int)((wxAuiNotebookEvent
const *)arg1
)->GetOldSelection();
11929 wxPyEndAllowThreads(__tstate
);
11930 if (PyErr_Occurred()) SWIG_fail
;
11932 resultobj
= SWIG_From_int(static_cast< int >(result
));
11939 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetDragSource(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11940 PyObject
*resultobj
= 0;
11941 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11942 wxAuiNotebook
*arg2
= (wxAuiNotebook
*) 0 ;
11947 PyObject
* obj0
= 0 ;
11948 PyObject
* obj1
= 0 ;
11949 char * kwnames
[] = {
11950 (char *) "self",(char *) "s", NULL
11953 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetDragSource",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11954 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11955 if (!SWIG_IsOK(res1
)) {
11956 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetDragSource" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11958 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11959 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
11960 if (!SWIG_IsOK(res2
)) {
11961 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookEvent_SetDragSource" "', expected argument " "2"" of type '" "wxAuiNotebook *""'");
11963 arg2
= reinterpret_cast< wxAuiNotebook
* >(argp2
);
11965 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11966 (arg1
)->SetDragSource(arg2
);
11967 wxPyEndAllowThreads(__tstate
);
11968 if (PyErr_Occurred()) SWIG_fail
;
11970 resultobj
= SWIG_Py_Void();
11977 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetDragSource(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11978 PyObject
*resultobj
= 0;
11979 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11980 wxAuiNotebook
*result
= 0 ;
11983 PyObject
*swig_obj
[1] ;
11985 if (!args
) SWIG_fail
;
11986 swig_obj
[0] = args
;
11987 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11988 if (!SWIG_IsOK(res1
)) {
11989 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetDragSource" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
11991 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11993 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11994 result
= (wxAuiNotebook
*)((wxAuiNotebookEvent
const *)arg1
)->GetDragSource();
11995 wxPyEndAllowThreads(__tstate
);
11996 if (PyErr_Occurred()) SWIG_fail
;
11998 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
12005 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_old_selection_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12006 PyObject
*resultobj
= 0;
12007 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12013 PyObject
*swig_obj
[2] ;
12015 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_old_selection_set",2,2,swig_obj
)) SWIG_fail
;
12016 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12017 if (!SWIG_IsOK(res1
)) {
12018 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_old_selection_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12020 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12021 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12022 if (!SWIG_IsOK(ecode2
)) {
12023 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_old_selection_set" "', expected argument " "2"" of type '" "int""'");
12025 arg2
= static_cast< int >(val2
);
12026 if (arg1
) (arg1
)->old_selection
= arg2
;
12028 resultobj
= SWIG_Py_Void();
12035 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_old_selection_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12036 PyObject
*resultobj
= 0;
12037 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12041 PyObject
*swig_obj
[1] ;
12043 if (!args
) SWIG_fail
;
12044 swig_obj
[0] = args
;
12045 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12046 if (!SWIG_IsOK(res1
)) {
12047 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_old_selection_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12049 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12050 result
= (int) ((arg1
)->old_selection
);
12051 resultobj
= SWIG_From_int(static_cast< int >(result
));
12058 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_selection_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12059 PyObject
*resultobj
= 0;
12060 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12066 PyObject
*swig_obj
[2] ;
12068 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_selection_set",2,2,swig_obj
)) SWIG_fail
;
12069 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12070 if (!SWIG_IsOK(res1
)) {
12071 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_selection_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12073 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12074 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12075 if (!SWIG_IsOK(ecode2
)) {
12076 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_selection_set" "', expected argument " "2"" of type '" "int""'");
12078 arg2
= static_cast< int >(val2
);
12079 if (arg1
) (arg1
)->selection
= arg2
;
12081 resultobj
= SWIG_Py_Void();
12088 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_selection_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12089 PyObject
*resultobj
= 0;
12090 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12094 PyObject
*swig_obj
[1] ;
12096 if (!args
) SWIG_fail
;
12097 swig_obj
[0] = args
;
12098 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12099 if (!SWIG_IsOK(res1
)) {
12100 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_selection_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12102 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12103 result
= (int) ((arg1
)->selection
);
12104 resultobj
= SWIG_From_int(static_cast< int >(result
));
12111 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_drag_source_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12112 PyObject
*resultobj
= 0;
12113 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12114 wxAuiNotebook
*arg2
= (wxAuiNotebook
*) 0 ;
12119 PyObject
*swig_obj
[2] ;
12121 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_drag_source_set",2,2,swig_obj
)) SWIG_fail
;
12122 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12123 if (!SWIG_IsOK(res1
)) {
12124 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_drag_source_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12126 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12127 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_DISOWN
| 0 );
12128 if (!SWIG_IsOK(res2
)) {
12129 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookEvent_drag_source_set" "', expected argument " "2"" of type '" "wxAuiNotebook *""'");
12131 arg2
= reinterpret_cast< wxAuiNotebook
* >(argp2
);
12132 if (arg1
) (arg1
)->drag_source
= arg2
;
12134 resultobj
= SWIG_Py_Void();
12141 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_drag_source_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12142 PyObject
*resultobj
= 0;
12143 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12144 wxAuiNotebook
*result
= 0 ;
12147 PyObject
*swig_obj
[1] ;
12149 if (!args
) SWIG_fail
;
12150 swig_obj
[0] = args
;
12151 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12152 if (!SWIG_IsOK(res1
)) {
12153 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_drag_source_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12155 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12156 result
= (wxAuiNotebook
*) ((arg1
)->drag_source
);
12157 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
12164 SWIGINTERN PyObject
*AuiNotebookEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12166 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12167 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebookEvent
, SWIG_NewClientData(obj
));
12168 return SWIG_Py_Void();
12171 SWIGINTERN PyObject
*AuiNotebookEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12172 return SWIG_Python_InitShadowInstance(args
);
12175 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_window_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12176 PyObject
*resultobj
= 0;
12177 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12178 wxWindow
*arg2
= (wxWindow
*) 0 ;
12183 PyObject
*swig_obj
[2] ;
12185 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_window_set",2,2,swig_obj
)) SWIG_fail
;
12186 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12187 if (!SWIG_IsOK(res1
)) {
12188 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_window_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12190 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12191 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN
| 0 );
12192 if (!SWIG_IsOK(res2
)) {
12193 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_window_set" "', expected argument " "2"" of type '" "wxWindow *""'");
12195 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12196 if (arg1
) (arg1
)->window
= arg2
;
12198 resultobj
= SWIG_Py_Void();
12205 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_window_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12206 PyObject
*resultobj
= 0;
12207 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12208 wxWindow
*result
= 0 ;
12211 PyObject
*swig_obj
[1] ;
12213 if (!args
) SWIG_fail
;
12214 swig_obj
[0] = args
;
12215 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12216 if (!SWIG_IsOK(res1
)) {
12217 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_window_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12219 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12220 result
= (wxWindow
*) ((arg1
)->window
);
12222 resultobj
= wxPyMake_wxObject(result
, 0);
12230 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_caption_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12231 PyObject
*resultobj
= 0;
12232 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12233 wxString
*arg2
= (wxString
*) 0 ;
12236 bool temp2
= false ;
12237 PyObject
*swig_obj
[2] ;
12239 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_caption_set",2,2,swig_obj
)) SWIG_fail
;
12240 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12241 if (!SWIG_IsOK(res1
)) {
12242 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_caption_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12244 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12246 arg2
= wxString_in_helper(swig_obj
[1]);
12247 if (arg2
== NULL
) SWIG_fail
;
12250 if (arg1
) (arg1
)->caption
= *arg2
;
12252 resultobj
= SWIG_Py_Void();
12267 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_caption_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12268 PyObject
*resultobj
= 0;
12269 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12270 wxString
*result
= 0 ;
12273 PyObject
*swig_obj
[1] ;
12275 if (!args
) SWIG_fail
;
12276 swig_obj
[0] = args
;
12277 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12278 if (!SWIG_IsOK(res1
)) {
12279 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_caption_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12281 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12282 result
= (wxString
*)& ((arg1
)->caption
);
12285 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
12287 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
12296 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12297 PyObject
*resultobj
= 0;
12298 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12299 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
12304 PyObject
*swig_obj
[2] ;
12306 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
12307 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12308 if (!SWIG_IsOK(res1
)) {
12309 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_bitmap_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12311 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12312 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
12313 if (!SWIG_IsOK(res2
)) {
12314 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
12316 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
12317 if (arg1
) (arg1
)->bitmap
= *arg2
;
12319 resultobj
= SWIG_Py_Void();
12326 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12327 PyObject
*resultobj
= 0;
12328 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12329 wxBitmap
*result
= 0 ;
12332 PyObject
*swig_obj
[1] ;
12334 if (!args
) SWIG_fail
;
12335 swig_obj
[0] = args
;
12336 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12337 if (!SWIG_IsOK(res1
)) {
12338 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_bitmap_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12340 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12341 result
= (wxBitmap
*)& ((arg1
)->bitmap
);
12342 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
12349 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12350 PyObject
*resultobj
= 0;
12351 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12352 wxRect
*arg2
= (wxRect
*) 0 ;
12357 PyObject
*swig_obj
[2] ;
12359 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_rect_set",2,2,swig_obj
)) SWIG_fail
;
12360 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12361 if (!SWIG_IsOK(res1
)) {
12362 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_rect_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12364 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12365 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
12366 if (!SWIG_IsOK(res2
)) {
12367 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
12369 arg2
= reinterpret_cast< wxRect
* >(argp2
);
12370 if (arg1
) (arg1
)->rect
= *arg2
;
12372 resultobj
= SWIG_Py_Void();
12379 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12380 PyObject
*resultobj
= 0;
12381 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12382 wxRect
*result
= 0 ;
12385 PyObject
*swig_obj
[1] ;
12387 if (!args
) SWIG_fail
;
12388 swig_obj
[0] = args
;
12389 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12390 if (!SWIG_IsOK(res1
)) {
12391 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_rect_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12393 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12394 result
= (wxRect
*)& ((arg1
)->rect
);
12395 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
12402 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_active_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12403 PyObject
*resultobj
= 0;
12404 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12410 PyObject
*swig_obj
[2] ;
12412 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_active_set",2,2,swig_obj
)) SWIG_fail
;
12413 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12414 if (!SWIG_IsOK(res1
)) {
12415 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_active_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12417 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12418 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
12419 if (!SWIG_IsOK(ecode2
)) {
12420 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookPage_active_set" "', expected argument " "2"" of type '" "bool""'");
12422 arg2
= static_cast< bool >(val2
);
12423 if (arg1
) (arg1
)->active
= arg2
;
12425 resultobj
= SWIG_Py_Void();
12432 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_active_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12433 PyObject
*resultobj
= 0;
12434 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12438 PyObject
*swig_obj
[1] ;
12440 if (!args
) SWIG_fail
;
12441 swig_obj
[0] = args
;
12442 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12443 if (!SWIG_IsOK(res1
)) {
12444 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_active_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12446 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12447 result
= (bool) ((arg1
)->active
);
12449 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12457 SWIGINTERN PyObject
*AuiNotebookPage_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12459 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12460 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebookPage
, SWIG_NewClientData(obj
));
12461 return SWIG_Py_Void();
12464 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_id_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12465 PyObject
*resultobj
= 0;
12466 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12472 PyObject
*swig_obj
[2] ;
12474 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_id_set",2,2,swig_obj
)) SWIG_fail
;
12475 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12476 if (!SWIG_IsOK(res1
)) {
12477 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_id_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12479 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12480 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12481 if (!SWIG_IsOK(ecode2
)) {
12482 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_id_set" "', expected argument " "2"" of type '" "int""'");
12484 arg2
= static_cast< int >(val2
);
12485 if (arg1
) (arg1
)->id
= arg2
;
12487 resultobj
= SWIG_Py_Void();
12494 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_id_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12495 PyObject
*resultobj
= 0;
12496 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12500 PyObject
*swig_obj
[1] ;
12502 if (!args
) SWIG_fail
;
12503 swig_obj
[0] = args
;
12504 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12505 if (!SWIG_IsOK(res1
)) {
12506 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_id_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12508 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12509 result
= (int) ((arg1
)->id
);
12510 resultobj
= SWIG_From_int(static_cast< int >(result
));
12517 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_cur_state_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12518 PyObject
*resultobj
= 0;
12519 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12525 PyObject
*swig_obj
[2] ;
12527 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_cur_state_set",2,2,swig_obj
)) SWIG_fail
;
12528 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12529 if (!SWIG_IsOK(res1
)) {
12530 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_cur_state_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12532 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12533 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12534 if (!SWIG_IsOK(ecode2
)) {
12535 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_cur_state_set" "', expected argument " "2"" of type '" "int""'");
12537 arg2
= static_cast< int >(val2
);
12538 if (arg1
) (arg1
)->cur_state
= arg2
;
12540 resultobj
= SWIG_Py_Void();
12547 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_cur_state_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12548 PyObject
*resultobj
= 0;
12549 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12553 PyObject
*swig_obj
[1] ;
12555 if (!args
) SWIG_fail
;
12556 swig_obj
[0] = args
;
12557 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12558 if (!SWIG_IsOK(res1
)) {
12559 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_cur_state_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12561 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12562 result
= (int) ((arg1
)->cur_state
);
12563 resultobj
= SWIG_From_int(static_cast< int >(result
));
12570 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_location_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12571 PyObject
*resultobj
= 0;
12572 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12578 PyObject
*swig_obj
[2] ;
12580 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_location_set",2,2,swig_obj
)) SWIG_fail
;
12581 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12582 if (!SWIG_IsOK(res1
)) {
12583 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_location_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12585 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12586 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12587 if (!SWIG_IsOK(ecode2
)) {
12588 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_location_set" "', expected argument " "2"" of type '" "int""'");
12590 arg2
= static_cast< int >(val2
);
12591 if (arg1
) (arg1
)->location
= arg2
;
12593 resultobj
= SWIG_Py_Void();
12600 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_location_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12601 PyObject
*resultobj
= 0;
12602 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12606 PyObject
*swig_obj
[1] ;
12608 if (!args
) SWIG_fail
;
12609 swig_obj
[0] = args
;
12610 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12611 if (!SWIG_IsOK(res1
)) {
12612 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_location_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12614 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12615 result
= (int) ((arg1
)->location
);
12616 resultobj
= SWIG_From_int(static_cast< int >(result
));
12623 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12624 PyObject
*resultobj
= 0;
12625 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12626 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
12631 PyObject
*swig_obj
[2] ;
12633 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
12634 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12635 if (!SWIG_IsOK(res1
)) {
12636 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_bitmap_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12638 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12639 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
12640 if (!SWIG_IsOK(res2
)) {
12641 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
12643 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
12644 if (arg1
) (arg1
)->bitmap
= *arg2
;
12646 resultobj
= SWIG_Py_Void();
12653 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12654 PyObject
*resultobj
= 0;
12655 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12656 wxBitmap
*result
= 0 ;
12659 PyObject
*swig_obj
[1] ;
12661 if (!args
) SWIG_fail
;
12662 swig_obj
[0] = args
;
12663 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12664 if (!SWIG_IsOK(res1
)) {
12665 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_bitmap_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12667 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12668 result
= (wxBitmap
*)& ((arg1
)->bitmap
);
12669 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
12676 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_dis_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12677 PyObject
*resultobj
= 0;
12678 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12679 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
12684 PyObject
*swig_obj
[2] ;
12686 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_dis_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
12687 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12688 if (!SWIG_IsOK(res1
)) {
12689 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_dis_bitmap_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12691 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12692 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
12693 if (!SWIG_IsOK(res2
)) {
12694 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_dis_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
12696 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
12697 if (arg1
) (arg1
)->dis_bitmap
= *arg2
;
12699 resultobj
= SWIG_Py_Void();
12706 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_dis_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12707 PyObject
*resultobj
= 0;
12708 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12709 wxBitmap
*result
= 0 ;
12712 PyObject
*swig_obj
[1] ;
12714 if (!args
) SWIG_fail
;
12715 swig_obj
[0] = args
;
12716 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12717 if (!SWIG_IsOK(res1
)) {
12718 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_dis_bitmap_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12720 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12721 result
= (wxBitmap
*)& ((arg1
)->dis_bitmap
);
12722 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
12729 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12730 PyObject
*resultobj
= 0;
12731 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12732 wxRect
*arg2
= (wxRect
*) 0 ;
12737 PyObject
*swig_obj
[2] ;
12739 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_rect_set",2,2,swig_obj
)) SWIG_fail
;
12740 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12741 if (!SWIG_IsOK(res1
)) {
12742 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_rect_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12744 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12745 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
12746 if (!SWIG_IsOK(res2
)) {
12747 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
12749 arg2
= reinterpret_cast< wxRect
* >(argp2
);
12750 if (arg1
) (arg1
)->rect
= *arg2
;
12752 resultobj
= SWIG_Py_Void();
12759 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12760 PyObject
*resultobj
= 0;
12761 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12762 wxRect
*result
= 0 ;
12765 PyObject
*swig_obj
[1] ;
12767 if (!args
) SWIG_fail
;
12768 swig_obj
[0] = args
;
12769 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12770 if (!SWIG_IsOK(res1
)) {
12771 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_rect_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12773 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12774 result
= (wxRect
*)& ((arg1
)->rect
);
12775 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
12782 SWIGINTERN PyObject
*AuiTabContainerButton_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12784 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12785 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabContainerButton
, SWIG_NewClientData(obj
));
12786 return SWIG_Py_Void();
12789 SWIGINTERN PyObject
*_wrap_delete_AuiTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12790 PyObject
*resultobj
= 0;
12791 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12794 PyObject
*swig_obj
[1] ;
12796 if (!args
) SWIG_fail
;
12797 swig_obj
[0] = args
;
12798 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabArt
, SWIG_POINTER_DISOWN
| 0 );
12799 if (!SWIG_IsOK(res1
)) {
12800 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabArt" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12802 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12804 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12807 wxPyEndAllowThreads(__tstate
);
12808 if (PyErr_Occurred()) SWIG_fail
;
12810 resultobj
= SWIG_Py_Void();
12817 SWIGINTERN PyObject
*_wrap_AuiTabArt_Clone(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12818 PyObject
*resultobj
= 0;
12819 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12820 wxAuiTabArt
*result
= 0 ;
12823 PyObject
*swig_obj
[1] ;
12825 if (!args
) SWIG_fail
;
12826 swig_obj
[0] = args
;
12827 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12828 if (!SWIG_IsOK(res1
)) {
12829 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_Clone" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12831 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12833 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12834 result
= (wxAuiTabArt
*)(arg1
)->Clone();
12835 wxPyEndAllowThreads(__tstate
);
12836 if (PyErr_Occurred()) SWIG_fail
;
12838 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12845 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12846 PyObject
*resultobj
= 0;
12847 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12853 PyObject
* obj0
= 0 ;
12854 PyObject
* obj1
= 0 ;
12855 char * kwnames
[] = {
12856 (char *) "self",(char *) "flags", NULL
12859 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12860 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12861 if (!SWIG_IsOK(res1
)) {
12862 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetFlags" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12864 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12865 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12866 if (!SWIG_IsOK(ecode2
)) {
12867 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabArt_SetFlags" "', expected argument " "2"" of type '" "int""'");
12869 arg2
= static_cast< int >(val2
);
12871 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12872 (arg1
)->SetFlags(arg2
);
12873 wxPyEndAllowThreads(__tstate
);
12874 if (PyErr_Occurred()) SWIG_fail
;
12876 resultobj
= SWIG_Py_Void();
12883 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetSizingInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12884 PyObject
*resultobj
= 0;
12885 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12893 PyObject
* obj0
= 0 ;
12894 PyObject
* obj1
= 0 ;
12895 PyObject
* obj2
= 0 ;
12896 char * kwnames
[] = {
12897 (char *) "self",(char *) "tab_ctrl_size",(char *) "tab_count", NULL
12900 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabArt_SetSizingInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12901 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12902 if (!SWIG_IsOK(res1
)) {
12903 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetSizingInfo" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12905 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12908 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
12910 ecode3
= SWIG_AsVal_size_t(obj2
, &val3
);
12911 if (!SWIG_IsOK(ecode3
)) {
12912 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabArt_SetSizingInfo" "', expected argument " "3"" of type '" "size_t""'");
12914 arg3
= static_cast< size_t >(val3
);
12916 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12917 (arg1
)->SetSizingInfo((wxSize
const &)*arg2
,arg3
);
12918 wxPyEndAllowThreads(__tstate
);
12919 if (PyErr_Occurred()) SWIG_fail
;
12921 resultobj
= SWIG_Py_Void();
12928 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetNormalFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12929 PyObject
*resultobj
= 0;
12930 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12936 PyObject
* obj0
= 0 ;
12937 PyObject
* obj1
= 0 ;
12938 char * kwnames
[] = {
12939 (char *) "self",(char *) "font", NULL
12942 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetNormalFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12943 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12944 if (!SWIG_IsOK(res1
)) {
12945 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetNormalFont" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12947 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12948 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
12949 if (!SWIG_IsOK(res2
)) {
12950 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12953 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12955 arg2
= reinterpret_cast< wxFont
* >(argp2
);
12957 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12958 (arg1
)->SetNormalFont((wxFont
const &)*arg2
);
12959 wxPyEndAllowThreads(__tstate
);
12960 if (PyErr_Occurred()) SWIG_fail
;
12962 resultobj
= SWIG_Py_Void();
12969 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetSelectedFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12970 PyObject
*resultobj
= 0;
12971 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12977 PyObject
* obj0
= 0 ;
12978 PyObject
* obj1
= 0 ;
12979 char * kwnames
[] = {
12980 (char *) "self",(char *) "font", NULL
12983 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetSelectedFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12984 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12985 if (!SWIG_IsOK(res1
)) {
12986 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetSelectedFont" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12988 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12989 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
12990 if (!SWIG_IsOK(res2
)) {
12991 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12994 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12996 arg2
= reinterpret_cast< wxFont
* >(argp2
);
12998 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12999 (arg1
)->SetSelectedFont((wxFont
const &)*arg2
);
13000 wxPyEndAllowThreads(__tstate
);
13001 if (PyErr_Occurred()) SWIG_fail
;
13003 resultobj
= SWIG_Py_Void();
13010 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetMeasuringFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13011 PyObject
*resultobj
= 0;
13012 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13018 PyObject
* obj0
= 0 ;
13019 PyObject
* obj1
= 0 ;
13020 char * kwnames
[] = {
13021 (char *) "self",(char *) "font", NULL
13024 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetMeasuringFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13025 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13026 if (!SWIG_IsOK(res1
)) {
13027 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetMeasuringFont" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13029 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13030 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
13031 if (!SWIG_IsOK(res2
)) {
13032 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
13035 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
13037 arg2
= reinterpret_cast< wxFont
* >(argp2
);
13039 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13040 (arg1
)->SetMeasuringFont((wxFont
const &)*arg2
);
13041 wxPyEndAllowThreads(__tstate
);
13042 if (PyErr_Occurred()) SWIG_fail
;
13044 resultobj
= SWIG_Py_Void();
13051 SWIGINTERN PyObject
*_wrap_AuiTabArt_DrawBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13052 PyObject
*resultobj
= 0;
13053 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13055 wxWindow
*arg3
= (wxWindow
*) 0 ;
13064 PyObject
* obj0
= 0 ;
13065 PyObject
* obj1
= 0 ;
13066 PyObject
* obj2
= 0 ;
13067 PyObject
* obj3
= 0 ;
13068 char * kwnames
[] = {
13069 (char *) "self",(char *) "dc",(char *) "wnd",(char *) "rect", NULL
13072 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabArt_DrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13073 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13074 if (!SWIG_IsOK(res1
)) {
13075 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_DrawBackground" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13077 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13078 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
13079 if (!SWIG_IsOK(res2
)) {
13080 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
13083 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
13085 arg2
= reinterpret_cast< wxDC
* >(argp2
);
13086 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13087 if (!SWIG_IsOK(res3
)) {
13088 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_DrawBackground" "', expected argument " "3"" of type '" "wxWindow *""'");
13090 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
13093 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
13096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13097 (arg1
)->DrawBackground(*arg2
,arg3
,(wxRect
const &)*arg4
);
13098 wxPyEndAllowThreads(__tstate
);
13099 if (PyErr_Occurred()) SWIG_fail
;
13101 resultobj
= SWIG_Py_Void();
13108 SWIGINTERN PyObject
*_wrap_AuiTabArt_DrawTab(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13109 PyObject
*resultobj
= 0;
13110 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13112 wxWindow
*arg3
= (wxWindow
*) 0 ;
13114 wxString
*arg5
= 0 ;
13115 wxBitmap
*arg6
= 0 ;
13118 wxRect
*arg9
= (wxRect
*) 0 ;
13119 wxRect
*arg10
= (wxRect
*) 0 ;
13120 int *arg11
= (int *) 0 ;
13128 bool temp5
= false ;
13141 PyObject
* obj0
= 0 ;
13142 PyObject
* obj1
= 0 ;
13143 PyObject
* obj2
= 0 ;
13144 PyObject
* obj3
= 0 ;
13145 PyObject
* obj4
= 0 ;
13146 PyObject
* obj5
= 0 ;
13147 PyObject
* obj6
= 0 ;
13148 PyObject
* obj7
= 0 ;
13149 PyObject
* obj8
= 0 ;
13150 PyObject
* obj9
= 0 ;
13151 PyObject
* obj10
= 0 ;
13152 char * kwnames
[] = {
13153 (char *) "self",(char *) "dc",(char *) "wnd",(char *) "in_rect",(char *) "caption",(char *) "bitmap",(char *) "active",(char *) "close_button_state",(char *) "out_tab_rect",(char *) "out_button_rect",(char *) "x_extent", NULL
13156 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOOOOO:AuiTabArt_DrawTab",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
,&obj10
)) SWIG_fail
;
13157 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13158 if (!SWIG_IsOK(res1
)) {
13159 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13161 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13162 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
13163 if (!SWIG_IsOK(res2
)) {
13164 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "2"" of type '" "wxDC &""'");
13167 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawTab" "', expected argument " "2"" of type '" "wxDC &""'");
13169 arg2
= reinterpret_cast< wxDC
* >(argp2
);
13170 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13171 if (!SWIG_IsOK(res3
)) {
13172 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "3"" of type '" "wxWindow *""'");
13174 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
13177 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
13180 arg5
= wxString_in_helper(obj4
);
13181 if (arg5
== NULL
) SWIG_fail
;
13184 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxBitmap
, 0 | 0);
13185 if (!SWIG_IsOK(res6
)) {
13186 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "6"" of type '" "wxBitmap const &""'");
13189 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawTab" "', expected argument " "6"" of type '" "wxBitmap const &""'");
13191 arg6
= reinterpret_cast< wxBitmap
* >(argp6
);
13192 ecode7
= SWIG_AsVal_bool(obj6
, &val7
);
13193 if (!SWIG_IsOK(ecode7
)) {
13194 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "7"" of type '" "bool""'");
13196 arg7
= static_cast< bool >(val7
);
13197 ecode8
= SWIG_AsVal_int(obj7
, &val8
);
13198 if (!SWIG_IsOK(ecode8
)) {
13199 SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "8"" of type '" "int""'");
13201 arg8
= static_cast< int >(val8
);
13202 res9
= SWIG_ConvertPtr(obj8
, &argp9
,SWIGTYPE_p_wxRect
, 0 | 0 );
13203 if (!SWIG_IsOK(res9
)) {
13204 SWIG_exception_fail(SWIG_ArgError(res9
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "9"" of type '" "wxRect *""'");
13206 arg9
= reinterpret_cast< wxRect
* >(argp9
);
13207 res10
= SWIG_ConvertPtr(obj9
, &argp10
,SWIGTYPE_p_wxRect
, 0 | 0 );
13208 if (!SWIG_IsOK(res10
)) {
13209 SWIG_exception_fail(SWIG_ArgError(res10
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "10"" of type '" "wxRect *""'");
13211 arg10
= reinterpret_cast< wxRect
* >(argp10
);
13212 res11
= SWIG_ConvertPtr(obj10
, &argp11
,SWIGTYPE_p_int
, 0 | 0 );
13213 if (!SWIG_IsOK(res11
)) {
13214 SWIG_exception_fail(SWIG_ArgError(res11
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "11"" of type '" "int *""'");
13216 arg11
= reinterpret_cast< int * >(argp11
);
13218 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13219 (arg1
)->DrawTab(*arg2
,arg3
,(wxRect
const &)*arg4
,(wxString
const &)*arg5
,(wxBitmap
const &)*arg6
,arg7
,arg8
,arg9
,arg10
,arg11
);
13220 wxPyEndAllowThreads(__tstate
);
13221 if (PyErr_Occurred()) SWIG_fail
;
13223 resultobj
= SWIG_Py_Void();
13238 SWIGINTERN PyObject
*_wrap_AuiTabArt_DrawButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13239 PyObject
*resultobj
= 0;
13240 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13242 wxWindow
*arg3
= (wxWindow
*) 0 ;
13247 wxBitmap
*arg8
= 0 ;
13248 wxRect
*arg9
= (wxRect
*) 0 ;
13266 PyObject
* obj0
= 0 ;
13267 PyObject
* obj1
= 0 ;
13268 PyObject
* obj2
= 0 ;
13269 PyObject
* obj3
= 0 ;
13270 PyObject
* obj4
= 0 ;
13271 PyObject
* obj5
= 0 ;
13272 PyObject
* obj6
= 0 ;
13273 PyObject
* obj7
= 0 ;
13274 PyObject
* obj8
= 0 ;
13275 char * kwnames
[] = {
13276 (char *) "self",(char *) "dc",(char *) "wnd",(char *) "in_rect",(char *) "bitmap_id",(char *) "button_state",(char *) "orientation",(char *) "bitmap_override",(char *) "out_rect", NULL
13279 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOOO:AuiTabArt_DrawButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) SWIG_fail
;
13280 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13281 if (!SWIG_IsOK(res1
)) {
13282 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13284 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13285 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
13286 if (!SWIG_IsOK(res2
)) {
13287 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "2"" of type '" "wxDC &""'");
13290 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawButton" "', expected argument " "2"" of type '" "wxDC &""'");
13292 arg2
= reinterpret_cast< wxDC
* >(argp2
);
13293 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13294 if (!SWIG_IsOK(res3
)) {
13295 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "3"" of type '" "wxWindow *""'");
13297 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
13300 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
13302 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
13303 if (!SWIG_IsOK(ecode5
)) {
13304 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "5"" of type '" "int""'");
13306 arg5
= static_cast< int >(val5
);
13307 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
13308 if (!SWIG_IsOK(ecode6
)) {
13309 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "6"" of type '" "int""'");
13311 arg6
= static_cast< int >(val6
);
13312 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
13313 if (!SWIG_IsOK(ecode7
)) {
13314 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "7"" of type '" "int""'");
13316 arg7
= static_cast< int >(val7
);
13317 res8
= SWIG_ConvertPtr(obj7
, &argp8
, SWIGTYPE_p_wxBitmap
, 0 | 0);
13318 if (!SWIG_IsOK(res8
)) {
13319 SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "8"" of type '" "wxBitmap const &""'");
13322 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawButton" "', expected argument " "8"" of type '" "wxBitmap const &""'");
13324 arg8
= reinterpret_cast< wxBitmap
* >(argp8
);
13325 res9
= SWIG_ConvertPtr(obj8
, &argp9
,SWIGTYPE_p_wxRect
, 0 | 0 );
13326 if (!SWIG_IsOK(res9
)) {
13327 SWIG_exception_fail(SWIG_ArgError(res9
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "9"" of type '" "wxRect *""'");
13329 arg9
= reinterpret_cast< wxRect
* >(argp9
);
13331 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13332 (arg1
)->DrawButton(*arg2
,arg3
,(wxRect
const &)*arg4
,arg5
,arg6
,arg7
,(wxBitmap
const &)*arg8
,arg9
);
13333 wxPyEndAllowThreads(__tstate
);
13334 if (PyErr_Occurred()) SWIG_fail
;
13336 resultobj
= SWIG_Py_Void();
13343 SWIGINTERN PyObject
*_wrap_AuiTabArt_GetIndentSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13344 PyObject
*resultobj
= 0;
13345 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13349 PyObject
*swig_obj
[1] ;
13351 if (!args
) SWIG_fail
;
13352 swig_obj
[0] = args
;
13353 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13354 if (!SWIG_IsOK(res1
)) {
13355 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_GetIndentSize" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13357 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13359 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13360 result
= (int)(arg1
)->GetIndentSize();
13361 wxPyEndAllowThreads(__tstate
);
13362 if (PyErr_Occurred()) SWIG_fail
;
13364 resultobj
= SWIG_From_int(static_cast< int >(result
));
13371 SWIGINTERN PyObject
*_wrap_AuiTabArt_GetTabSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13372 PyObject
*resultobj
= 0;
13373 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13375 wxWindow
*arg3
= (wxWindow
*) 0 ;
13376 wxString
*arg4
= 0 ;
13377 wxBitmap
*arg5
= 0 ;
13380 int *arg8
= (int *) 0 ;
13388 bool temp4
= false ;
13397 PyObject
* obj0
= 0 ;
13398 PyObject
* obj1
= 0 ;
13399 PyObject
* obj2
= 0 ;
13400 PyObject
* obj3
= 0 ;
13401 PyObject
* obj4
= 0 ;
13402 PyObject
* obj5
= 0 ;
13403 PyObject
* obj6
= 0 ;
13404 PyObject
* obj7
= 0 ;
13405 char * kwnames
[] = {
13406 (char *) "self",(char *) "dc",(char *) "wnd",(char *) "caption",(char *) "bitmap",(char *) "active",(char *) "close_button_state",(char *) "x_extent", NULL
13409 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOO:AuiTabArt_GetTabSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
13410 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13411 if (!SWIG_IsOK(res1
)) {
13412 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13414 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13415 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
13416 if (!SWIG_IsOK(res2
)) {
13417 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "2"" of type '" "wxDC &""'");
13420 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_GetTabSize" "', expected argument " "2"" of type '" "wxDC &""'");
13422 arg2
= reinterpret_cast< wxDC
* >(argp2
);
13423 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13424 if (!SWIG_IsOK(res3
)) {
13425 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "3"" of type '" "wxWindow *""'");
13427 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
13429 arg4
= wxString_in_helper(obj3
);
13430 if (arg4
== NULL
) SWIG_fail
;
13433 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
, 0 | 0);
13434 if (!SWIG_IsOK(res5
)) {
13435 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "5"" of type '" "wxBitmap const &""'");
13438 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_GetTabSize" "', expected argument " "5"" of type '" "wxBitmap const &""'");
13440 arg5
= reinterpret_cast< wxBitmap
* >(argp5
);
13441 ecode6
= SWIG_AsVal_bool(obj5
, &val6
);
13442 if (!SWIG_IsOK(ecode6
)) {
13443 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "6"" of type '" "bool""'");
13445 arg6
= static_cast< bool >(val6
);
13446 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
13447 if (!SWIG_IsOK(ecode7
)) {
13448 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "7"" of type '" "int""'");
13450 arg7
= static_cast< int >(val7
);
13451 res8
= SWIG_ConvertPtr(obj7
, &argp8
,SWIGTYPE_p_int
, 0 | 0 );
13452 if (!SWIG_IsOK(res8
)) {
13453 SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "8"" of type '" "int *""'");
13455 arg8
= reinterpret_cast< int * >(argp8
);
13457 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13458 result
= (arg1
)->GetTabSize(*arg2
,arg3
,(wxString
const &)*arg4
,(wxBitmap
const &)*arg5
,arg6
,arg7
,arg8
);
13459 wxPyEndAllowThreads(__tstate
);
13460 if (PyErr_Occurred()) SWIG_fail
;
13462 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
13477 SWIGINTERN PyObject
*_wrap_AuiTabArt_ShowWindowList(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13478 PyObject
*resultobj
= 0;
13479 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13480 wxWindow
*arg2
= (wxWindow
*) 0 ;
13481 wxArrayString
*arg3
= 0 ;
13488 bool temp3
= false ;
13491 PyObject
* obj0
= 0 ;
13492 PyObject
* obj1
= 0 ;
13493 PyObject
* obj2
= 0 ;
13494 PyObject
* obj3
= 0 ;
13495 char * kwnames
[] = {
13496 (char *) "self",(char *) "wnd",(char *) "items",(char *) "active_idx", NULL
13499 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabArt_ShowWindowList",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13500 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13501 if (!SWIG_IsOK(res1
)) {
13502 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_ShowWindowList" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13504 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13505 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13506 if (!SWIG_IsOK(res2
)) {
13507 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_ShowWindowList" "', expected argument " "2"" of type '" "wxWindow *""'");
13509 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13511 if (! PySequence_Check(obj2
)) {
13512 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
13515 arg3
= new wxArrayString
;
13517 int i
, len
=PySequence_Length(obj2
);
13518 for (i
=0; i
<len
; i
++) {
13519 PyObject
* item
= PySequence_GetItem(obj2
, i
);
13520 wxString
* s
= wxString_in_helper(item
);
13521 if (PyErr_Occurred()) SWIG_fail
;
13527 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
13528 if (!SWIG_IsOK(ecode4
)) {
13529 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiTabArt_ShowWindowList" "', expected argument " "4"" of type '" "int""'");
13531 arg4
= static_cast< int >(val4
);
13533 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13534 result
= (int)(arg1
)->ShowWindowList(arg2
,(wxArrayString
const &)*arg3
,arg4
);
13535 wxPyEndAllowThreads(__tstate
);
13536 if (PyErr_Occurred()) SWIG_fail
;
13538 resultobj
= SWIG_From_int(static_cast< int >(result
));
13540 if (temp3
) delete arg3
;
13545 if (temp3
) delete arg3
;
13551 SWIGINTERN PyObject
*_wrap_AuiTabArt_GetBestTabCtrlSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13552 PyObject
*resultobj
= 0;
13553 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13554 wxWindow
*arg2
= (wxWindow
*) 0 ;
13555 wxAuiNotebookPageArray
*arg3
= 0 ;
13565 PyObject
* obj0
= 0 ;
13566 PyObject
* obj1
= 0 ;
13567 PyObject
* obj2
= 0 ;
13568 PyObject
* obj3
= 0 ;
13569 char * kwnames
[] = {
13570 (char *) "self",(char *) "wnd",(char *) "pages",(char *) "required_bmp_size", NULL
13573 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabArt_GetBestTabCtrlSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13574 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13575 if (!SWIG_IsOK(res1
)) {
13576 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13578 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13579 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13580 if (!SWIG_IsOK(res2
)) {
13581 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "2"" of type '" "wxWindow *""'");
13583 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13584 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPageArray
, 0 );
13585 if (!SWIG_IsOK(res3
)) {
13586 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "3"" of type '" "wxAuiNotebookPageArray &""'");
13589 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "3"" of type '" "wxAuiNotebookPageArray &""'");
13591 arg3
= reinterpret_cast< wxAuiNotebookPageArray
* >(argp3
);
13594 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
13597 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13598 result
= (int)(arg1
)->GetBestTabCtrlSize(arg2
,*arg3
,(wxSize
const &)*arg4
);
13599 wxPyEndAllowThreads(__tstate
);
13600 if (PyErr_Occurred()) SWIG_fail
;
13602 resultobj
= SWIG_From_int(static_cast< int >(result
));
13609 SWIGINTERN PyObject
*AuiTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13611 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13612 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabArt
, SWIG_NewClientData(obj
));
13613 return SWIG_Py_Void();
13616 SWIGINTERN PyObject
*_wrap_new_AuiDefaultTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13617 PyObject
*resultobj
= 0;
13618 wxAuiDefaultTabArt
*result
= 0 ;
13620 if (!SWIG_Python_UnpackTuple(args
,"new_AuiDefaultTabArt",0,0,0)) SWIG_fail
;
13622 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13623 result
= (wxAuiDefaultTabArt
*)new wxAuiDefaultTabArt();
13624 wxPyEndAllowThreads(__tstate
);
13625 if (PyErr_Occurred()) SWIG_fail
;
13627 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDefaultTabArt
, SWIG_POINTER_NEW
| 0 );
13634 SWIGINTERN PyObject
*_wrap_delete_AuiDefaultTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13635 PyObject
*resultobj
= 0;
13636 wxAuiDefaultTabArt
*arg1
= (wxAuiDefaultTabArt
*) 0 ;
13639 PyObject
*swig_obj
[1] ;
13641 if (!args
) SWIG_fail
;
13642 swig_obj
[0] = args
;
13643 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDefaultTabArt
, SWIG_POINTER_DISOWN
| 0 );
13644 if (!SWIG_IsOK(res1
)) {
13645 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDefaultTabArt" "', expected argument " "1"" of type '" "wxAuiDefaultTabArt *""'");
13647 arg1
= reinterpret_cast< wxAuiDefaultTabArt
* >(argp1
);
13649 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13652 wxPyEndAllowThreads(__tstate
);
13653 if (PyErr_Occurred()) SWIG_fail
;
13655 resultobj
= SWIG_Py_Void();
13662 SWIGINTERN PyObject
*AuiDefaultTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13664 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13665 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDefaultTabArt
, SWIG_NewClientData(obj
));
13666 return SWIG_Py_Void();
13669 SWIGINTERN PyObject
*AuiDefaultTabArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13670 return SWIG_Python_InitShadowInstance(args
);
13673 SWIGINTERN PyObject
*_wrap_new_AuiSimpleTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13674 PyObject
*resultobj
= 0;
13675 wxAuiSimpleTabArt
*result
= 0 ;
13677 if (!SWIG_Python_UnpackTuple(args
,"new_AuiSimpleTabArt",0,0,0)) SWIG_fail
;
13679 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13680 result
= (wxAuiSimpleTabArt
*)new wxAuiSimpleTabArt();
13681 wxPyEndAllowThreads(__tstate
);
13682 if (PyErr_Occurred()) SWIG_fail
;
13684 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiSimpleTabArt
, SWIG_POINTER_NEW
| 0 );
13691 SWIGINTERN PyObject
*_wrap_delete_AuiSimpleTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13692 PyObject
*resultobj
= 0;
13693 wxAuiSimpleTabArt
*arg1
= (wxAuiSimpleTabArt
*) 0 ;
13696 PyObject
*swig_obj
[1] ;
13698 if (!args
) SWIG_fail
;
13699 swig_obj
[0] = args
;
13700 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiSimpleTabArt
, SWIG_POINTER_DISOWN
| 0 );
13701 if (!SWIG_IsOK(res1
)) {
13702 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiSimpleTabArt" "', expected argument " "1"" of type '" "wxAuiSimpleTabArt *""'");
13704 arg1
= reinterpret_cast< wxAuiSimpleTabArt
* >(argp1
);
13706 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13709 wxPyEndAllowThreads(__tstate
);
13710 if (PyErr_Occurred()) SWIG_fail
;
13712 resultobj
= SWIG_Py_Void();
13719 SWIGINTERN PyObject
*AuiSimpleTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13721 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13722 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiSimpleTabArt
, SWIG_NewClientData(obj
));
13723 return SWIG_Py_Void();
13726 SWIGINTERN PyObject
*AuiSimpleTabArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13727 return SWIG_Python_InitShadowInstance(args
);
13730 SWIGINTERN PyObject
*_wrap_new_AuiTabContainer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13731 PyObject
*resultobj
= 0;
13732 wxAuiTabContainer
*result
= 0 ;
13734 if (!SWIG_Python_UnpackTuple(args
,"new_AuiTabContainer",0,0,0)) SWIG_fail
;
13736 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13737 result
= (wxAuiTabContainer
*)new wxAuiTabContainer();
13738 wxPyEndAllowThreads(__tstate
);
13739 if (PyErr_Occurred()) SWIG_fail
;
13741 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabContainer
, SWIG_POINTER_NEW
| 0 );
13748 SWIGINTERN PyObject
*_wrap_delete_AuiTabContainer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13749 PyObject
*resultobj
= 0;
13750 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13753 PyObject
*swig_obj
[1] ;
13755 if (!args
) SWIG_fail
;
13756 swig_obj
[0] = args
;
13757 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, SWIG_POINTER_DISOWN
| 0 );
13758 if (!SWIG_IsOK(res1
)) {
13759 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabContainer" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13761 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13763 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13766 wxPyEndAllowThreads(__tstate
);
13767 if (PyErr_Occurred()) SWIG_fail
;
13769 resultobj
= SWIG_Py_Void();
13776 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13777 PyObject
*resultobj
= 0;
13778 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13779 wxAuiTabArt
*arg2
= (wxAuiTabArt
*) 0 ;
13784 PyObject
* obj0
= 0 ;
13785 PyObject
* obj1
= 0 ;
13786 char * kwnames
[] = {
13787 (char *) "self",(char *) "art", NULL
13790 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13791 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13792 if (!SWIG_IsOK(res1
)) {
13793 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13795 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13796 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13797 if (!SWIG_IsOK(res2
)) {
13798 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiTabArt *""'");
13800 arg2
= reinterpret_cast< wxAuiTabArt
* >(argp2
);
13802 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13803 (arg1
)->SetArtProvider(arg2
);
13804 wxPyEndAllowThreads(__tstate
);
13805 if (PyErr_Occurred()) SWIG_fail
;
13807 resultobj
= SWIG_Py_Void();
13814 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13815 PyObject
*resultobj
= 0;
13816 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13817 wxAuiTabArt
*result
= 0 ;
13820 PyObject
*swig_obj
[1] ;
13822 if (!args
) SWIG_fail
;
13823 swig_obj
[0] = args
;
13824 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13825 if (!SWIG_IsOK(res1
)) {
13826 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13828 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13830 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13831 result
= (wxAuiTabArt
*)((wxAuiTabContainer
const *)arg1
)->GetArtProvider();
13832 wxPyEndAllowThreads(__tstate
);
13833 if (PyErr_Occurred()) SWIG_fail
;
13835 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13842 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13843 PyObject
*resultobj
= 0;
13844 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13850 PyObject
* obj0
= 0 ;
13851 PyObject
* obj1
= 0 ;
13852 char * kwnames
[] = {
13853 (char *) "self",(char *) "flags", NULL
13856 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13857 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13858 if (!SWIG_IsOK(res1
)) {
13859 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetFlags" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13861 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13862 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13863 if (!SWIG_IsOK(ecode2
)) {
13864 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetFlags" "', expected argument " "2"" of type '" "int""'");
13866 arg2
= static_cast< int >(val2
);
13868 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13869 (arg1
)->SetFlags(arg2
);
13870 wxPyEndAllowThreads(__tstate
);
13871 if (PyErr_Occurred()) SWIG_fail
;
13873 resultobj
= SWIG_Py_Void();
13880 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13881 PyObject
*resultobj
= 0;
13882 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13886 PyObject
*swig_obj
[1] ;
13888 if (!args
) SWIG_fail
;
13889 swig_obj
[0] = args
;
13890 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13891 if (!SWIG_IsOK(res1
)) {
13892 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetFlags" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13894 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13896 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13897 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetFlags();
13898 wxPyEndAllowThreads(__tstate
);
13899 if (PyErr_Occurred()) SWIG_fail
;
13901 resultobj
= SWIG_From_int(static_cast< int >(result
));
13908 SWIGINTERN PyObject
*_wrap_AuiTabContainer_AddPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13909 PyObject
*resultobj
= 0;
13910 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13911 wxWindow
*arg2
= (wxWindow
*) 0 ;
13912 wxAuiNotebookPage
*arg3
= 0 ;
13920 PyObject
* obj0
= 0 ;
13921 PyObject
* obj1
= 0 ;
13922 PyObject
* obj2
= 0 ;
13923 char * kwnames
[] = {
13924 (char *) "self",(char *) "page",(char *) "info", NULL
13927 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabContainer_AddPage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13928 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13929 if (!SWIG_IsOK(res1
)) {
13930 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13932 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13933 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13934 if (!SWIG_IsOK(res2
)) {
13935 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "2"" of type '" "wxWindow *""'");
13937 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13938 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0);
13939 if (!SWIG_IsOK(res3
)) {
13940 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
13943 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
13945 arg3
= reinterpret_cast< wxAuiNotebookPage
* >(argp3
);
13947 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13948 result
= (bool)(arg1
)->AddPage(arg2
,(wxAuiNotebookPage
const &)*arg3
);
13949 wxPyEndAllowThreads(__tstate
);
13950 if (PyErr_Occurred()) SWIG_fail
;
13953 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13961 SWIGINTERN PyObject
*_wrap_AuiTabContainer_InsertPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13962 PyObject
*resultobj
= 0;
13963 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13964 wxWindow
*arg2
= (wxWindow
*) 0 ;
13965 wxAuiNotebookPage
*arg3
= 0 ;
13976 PyObject
* obj0
= 0 ;
13977 PyObject
* obj1
= 0 ;
13978 PyObject
* obj2
= 0 ;
13979 PyObject
* obj3
= 0 ;
13980 char * kwnames
[] = {
13981 (char *) "self",(char *) "page",(char *) "info",(char *) "idx", NULL
13984 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13985 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13986 if (!SWIG_IsOK(res1
)) {
13987 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13989 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13990 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13991 if (!SWIG_IsOK(res2
)) {
13992 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "2"" of type '" "wxWindow *""'");
13994 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13995 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0);
13996 if (!SWIG_IsOK(res3
)) {
13997 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
14000 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_InsertPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
14002 arg3
= reinterpret_cast< wxAuiNotebookPage
* >(argp3
);
14003 ecode4
= SWIG_AsVal_size_t(obj3
, &val4
);
14004 if (!SWIG_IsOK(ecode4
)) {
14005 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "4"" of type '" "size_t""'");
14007 arg4
= static_cast< size_t >(val4
);
14009 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14010 result
= (bool)(arg1
)->InsertPage(arg2
,(wxAuiNotebookPage
const &)*arg3
,arg4
);
14011 wxPyEndAllowThreads(__tstate
);
14012 if (PyErr_Occurred()) SWIG_fail
;
14015 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14023 SWIGINTERN PyObject
*_wrap_AuiTabContainer_MovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14024 PyObject
*resultobj
= 0;
14025 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14026 wxWindow
*arg2
= (wxWindow
*) 0 ;
14035 PyObject
* obj0
= 0 ;
14036 PyObject
* obj1
= 0 ;
14037 PyObject
* obj2
= 0 ;
14038 char * kwnames
[] = {
14039 (char *) "self",(char *) "page",(char *) "new_idx", NULL
14042 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabContainer_MovePage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14043 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14044 if (!SWIG_IsOK(res1
)) {
14045 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14047 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14048 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14049 if (!SWIG_IsOK(res2
)) {
14050 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "2"" of type '" "wxWindow *""'");
14052 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
14053 ecode3
= SWIG_AsVal_size_t(obj2
, &val3
);
14054 if (!SWIG_IsOK(ecode3
)) {
14055 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "3"" of type '" "size_t""'");
14057 arg3
= static_cast< size_t >(val3
);
14059 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14060 result
= (bool)(arg1
)->MovePage(arg2
,arg3
);
14061 wxPyEndAllowThreads(__tstate
);
14062 if (PyErr_Occurred()) SWIG_fail
;
14065 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14073 SWIGINTERN PyObject
*_wrap_AuiTabContainer_RemovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14074 PyObject
*resultobj
= 0;
14075 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14076 wxWindow
*arg2
= (wxWindow
*) 0 ;
14082 PyObject
* obj0
= 0 ;
14083 PyObject
* obj1
= 0 ;
14084 char * kwnames
[] = {
14085 (char *) "self",(char *) "page", NULL
14088 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_RemovePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14089 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14090 if (!SWIG_IsOK(res1
)) {
14091 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_RemovePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14093 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14094 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14095 if (!SWIG_IsOK(res2
)) {
14096 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_RemovePage" "', expected argument " "2"" of type '" "wxWindow *""'");
14098 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
14100 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14101 result
= (bool)(arg1
)->RemovePage(arg2
);
14102 wxPyEndAllowThreads(__tstate
);
14103 if (PyErr_Occurred()) SWIG_fail
;
14106 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14114 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
14115 PyObject
*resultobj
= 0;
14116 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14117 wxWindow
*arg2
= (wxWindow
*) 0 ;
14124 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
14125 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14126 if (!SWIG_IsOK(res1
)) {
14127 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14129 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14130 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14131 if (!SWIG_IsOK(res2
)) {
14132 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "2"" of type '" "wxWindow *""'");
14134 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
14136 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14137 result
= (bool)(arg1
)->SetActivePage(arg2
);
14138 wxPyEndAllowThreads(__tstate
);
14139 if (PyErr_Occurred()) SWIG_fail
;
14142 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14150 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
14151 PyObject
*resultobj
= 0;
14152 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14160 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
14161 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14162 if (!SWIG_IsOK(res1
)) {
14163 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14165 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14166 ecode2
= SWIG_AsVal_size_t(swig_obj
[1], &val2
);
14167 if (!SWIG_IsOK(ecode2
)) {
14168 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "2"" of type '" "size_t""'");
14170 arg2
= static_cast< size_t >(val2
);
14172 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14173 result
= (bool)(arg1
)->SetActivePage(arg2
);
14174 wxPyEndAllowThreads(__tstate
);
14175 if (PyErr_Occurred()) SWIG_fail
;
14178 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14186 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage(PyObject
*self
, PyObject
*args
) {
14190 if (!(argc
= SWIG_Python_UnpackTuple(args
,"AuiTabContainer_SetActivePage",0,2,argv
))) SWIG_fail
;
14196 int res
= SWIG_ConvertPtr(argv
[1], &vptr
, SWIGTYPE_p_wxWindow
, 0);
14197 _v
= SWIG_CheckState(res
);
14199 if (!_v
) goto check_1
;
14200 return _wrap_AuiTabContainer_SetActivePage__SWIG_0(self
, argc
, argv
);
14205 return _wrap_AuiTabContainer_SetActivePage__SWIG_1(self
, argc
, argv
);
14209 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'AuiTabContainer_SetActivePage'");
14214 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetNoneActive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14215 PyObject
*resultobj
= 0;
14216 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14219 PyObject
*swig_obj
[1] ;
14221 if (!args
) SWIG_fail
;
14222 swig_obj
[0] = args
;
14223 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14224 if (!SWIG_IsOK(res1
)) {
14225 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetNoneActive" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14227 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14229 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14230 (arg1
)->SetNoneActive();
14231 wxPyEndAllowThreads(__tstate
);
14232 if (PyErr_Occurred()) SWIG_fail
;
14234 resultobj
= SWIG_Py_Void();
14241 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetActivePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14242 PyObject
*resultobj
= 0;
14243 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14247 PyObject
*swig_obj
[1] ;
14249 if (!args
) SWIG_fail
;
14250 swig_obj
[0] = args
;
14251 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14252 if (!SWIG_IsOK(res1
)) {
14253 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14255 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14257 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14258 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetActivePage();
14259 wxPyEndAllowThreads(__tstate
);
14260 if (PyErr_Occurred()) SWIG_fail
;
14262 resultobj
= SWIG_From_int(static_cast< int >(result
));
14269 SWIGINTERN PyObject
*_wrap_AuiTabContainer_TabHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14270 PyObject
*resultobj
= 0;
14271 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14274 wxWindow
**arg4
= (wxWindow
**) 0 ;
14284 PyObject
* obj0
= 0 ;
14285 PyObject
* obj1
= 0 ;
14286 PyObject
* obj2
= 0 ;
14287 PyObject
* obj3
= 0 ;
14288 char * kwnames
[] = {
14289 (char *) "self",(char *) "x",(char *) "y",(char *) "hit", NULL
14292 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_TabHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
14293 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14294 if (!SWIG_IsOK(res1
)) {
14295 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14297 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14298 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14299 if (!SWIG_IsOK(ecode2
)) {
14300 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "2"" of type '" "int""'");
14302 arg2
= static_cast< int >(val2
);
14303 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14304 if (!SWIG_IsOK(ecode3
)) {
14305 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "3"" of type '" "int""'");
14307 arg3
= static_cast< int >(val3
);
14308 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_p_wxWindow
, 0 | 0 );
14309 if (!SWIG_IsOK(res4
)) {
14310 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "4"" of type '" "wxWindow **""'");
14312 arg4
= reinterpret_cast< wxWindow
** >(argp4
);
14314 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14315 result
= (bool)((wxAuiTabContainer
const *)arg1
)->TabHitTest(arg2
,arg3
,arg4
);
14316 wxPyEndAllowThreads(__tstate
);
14317 if (PyErr_Occurred()) SWIG_fail
;
14320 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14328 SWIGINTERN PyObject
*_wrap_AuiTabContainer_ButtonHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14329 PyObject
*resultobj
= 0;
14330 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14333 wxAuiTabContainerButton
**arg4
= (wxAuiTabContainerButton
**) 0 ;
14343 PyObject
* obj0
= 0 ;
14344 PyObject
* obj1
= 0 ;
14345 PyObject
* obj2
= 0 ;
14346 PyObject
* obj3
= 0 ;
14347 char * kwnames
[] = {
14348 (char *) "self",(char *) "x",(char *) "y",(char *) "hit", NULL
14351 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_ButtonHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
14352 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14353 if (!SWIG_IsOK(res1
)) {
14354 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14356 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14357 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14358 if (!SWIG_IsOK(ecode2
)) {
14359 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "2"" of type '" "int""'");
14361 arg2
= static_cast< int >(val2
);
14362 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14363 if (!SWIG_IsOK(ecode3
)) {
14364 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "3"" of type '" "int""'");
14366 arg3
= static_cast< int >(val3
);
14367 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_p_wxAuiTabContainerButton
, 0 | 0 );
14368 if (!SWIG_IsOK(res4
)) {
14369 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "4"" of type '" "wxAuiTabContainerButton **""'");
14371 arg4
= reinterpret_cast< wxAuiTabContainerButton
** >(argp4
);
14373 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14374 result
= (bool)((wxAuiTabContainer
const *)arg1
)->ButtonHitTest(arg2
,arg3
,arg4
);
14375 wxPyEndAllowThreads(__tstate
);
14376 if (PyErr_Occurred()) SWIG_fail
;
14379 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14387 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetWindowFromIdx(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14388 PyObject
*resultobj
= 0;
14389 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14391 wxWindow
*result
= 0 ;
14396 PyObject
* obj0
= 0 ;
14397 PyObject
* obj1
= 0 ;
14398 char * kwnames
[] = {
14399 (char *) "self",(char *) "idx", NULL
14402 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetWindowFromIdx",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14403 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14404 if (!SWIG_IsOK(res1
)) {
14405 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetWindowFromIdx" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14407 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14408 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14409 if (!SWIG_IsOK(ecode2
)) {
14410 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_GetWindowFromIdx" "', expected argument " "2"" of type '" "size_t""'");
14412 arg2
= static_cast< size_t >(val2
);
14414 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14415 result
= (wxWindow
*)((wxAuiTabContainer
const *)arg1
)->GetWindowFromIdx(arg2
);
14416 wxPyEndAllowThreads(__tstate
);
14417 if (PyErr_Occurred()) SWIG_fail
;
14420 resultobj
= wxPyMake_wxObject(result
, 0);
14428 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetIdxFromWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14429 PyObject
*resultobj
= 0;
14430 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14431 wxWindow
*arg2
= (wxWindow
*) 0 ;
14437 PyObject
* obj0
= 0 ;
14438 PyObject
* obj1
= 0 ;
14439 char * kwnames
[] = {
14440 (char *) "self",(char *) "page", NULL
14443 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetIdxFromWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14444 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14445 if (!SWIG_IsOK(res1
)) {
14446 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetIdxFromWindow" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14448 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14449 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14450 if (!SWIG_IsOK(res2
)) {
14451 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_GetIdxFromWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
14453 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
14455 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14456 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetIdxFromWindow(arg2
);
14457 wxPyEndAllowThreads(__tstate
);
14458 if (PyErr_Occurred()) SWIG_fail
;
14460 resultobj
= SWIG_From_int(static_cast< int >(result
));
14467 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPageCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14468 PyObject
*resultobj
= 0;
14469 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14473 PyObject
*swig_obj
[1] ;
14475 if (!args
) SWIG_fail
;
14476 swig_obj
[0] = args
;
14477 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14478 if (!SWIG_IsOK(res1
)) {
14479 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPageCount" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14481 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14483 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14484 result
= (size_t)((wxAuiTabContainer
const *)arg1
)->GetPageCount();
14485 wxPyEndAllowThreads(__tstate
);
14486 if (PyErr_Occurred()) SWIG_fail
;
14488 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14495 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14496 PyObject
*resultobj
= 0;
14497 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14499 wxAuiNotebookPage
*result
= 0 ;
14504 PyObject
* obj0
= 0 ;
14505 PyObject
* obj1
= 0 ;
14506 char * kwnames
[] = {
14507 (char *) "self",(char *) "idx", NULL
14510 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14511 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14512 if (!SWIG_IsOK(res1
)) {
14513 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14515 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14516 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14517 if (!SWIG_IsOK(ecode2
)) {
14518 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_GetPage" "', expected argument " "2"" of type '" "size_t""'");
14520 arg2
= static_cast< size_t >(val2
);
14522 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14524 wxAuiNotebookPage
&_result_ref
= (arg1
)->GetPage(arg2
);
14525 result
= (wxAuiNotebookPage
*) &_result_ref
;
14527 wxPyEndAllowThreads(__tstate
);
14528 if (PyErr_Occurred()) SWIG_fail
;
14530 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
14537 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14538 PyObject
*resultobj
= 0;
14539 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14540 wxAuiNotebookPageArray
*result
= 0 ;
14543 PyObject
*swig_obj
[1] ;
14545 if (!args
) SWIG_fail
;
14546 swig_obj
[0] = args
;
14547 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14548 if (!SWIG_IsOK(res1
)) {
14549 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPages" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14551 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14553 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14555 wxAuiNotebookPageArray
&_result_ref
= (arg1
)->GetPages();
14556 result
= (wxAuiNotebookPageArray
*) &_result_ref
;
14558 wxPyEndAllowThreads(__tstate
);
14559 if (PyErr_Occurred()) SWIG_fail
;
14561 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookPageArray
, 0 | 0 );
14568 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetNormalFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14569 PyObject
*resultobj
= 0;
14570 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14576 PyObject
* obj0
= 0 ;
14577 PyObject
* obj1
= 0 ;
14578 char * kwnames
[] = {
14579 (char *) "self",(char *) "normal_font", NULL
14582 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetNormalFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14583 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14584 if (!SWIG_IsOK(res1
)) {
14585 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14587 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14588 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
14589 if (!SWIG_IsOK(res2
)) {
14590 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14593 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14595 arg2
= reinterpret_cast< wxFont
* >(argp2
);
14597 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14598 (arg1
)->SetNormalFont((wxFont
const &)*arg2
);
14599 wxPyEndAllowThreads(__tstate
);
14600 if (PyErr_Occurred()) SWIG_fail
;
14602 resultobj
= SWIG_Py_Void();
14609 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetSelectedFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14610 PyObject
*resultobj
= 0;
14611 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14617 PyObject
* obj0
= 0 ;
14618 PyObject
* obj1
= 0 ;
14619 char * kwnames
[] = {
14620 (char *) "self",(char *) "selected_font", NULL
14623 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetSelectedFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14624 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14625 if (!SWIG_IsOK(res1
)) {
14626 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14628 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14629 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
14630 if (!SWIG_IsOK(res2
)) {
14631 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14634 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14636 arg2
= reinterpret_cast< wxFont
* >(argp2
);
14638 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14639 (arg1
)->SetSelectedFont((wxFont
const &)*arg2
);
14640 wxPyEndAllowThreads(__tstate
);
14641 if (PyErr_Occurred()) SWIG_fail
;
14643 resultobj
= SWIG_Py_Void();
14650 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetMeasuringFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14651 PyObject
*resultobj
= 0;
14652 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14658 PyObject
* obj0
= 0 ;
14659 PyObject
* obj1
= 0 ;
14660 char * kwnames
[] = {
14661 (char *) "self",(char *) "measuring_font", NULL
14664 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetMeasuringFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14665 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14666 if (!SWIG_IsOK(res1
)) {
14667 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14669 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14670 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
14671 if (!SWIG_IsOK(res2
)) {
14672 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14675 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14677 arg2
= reinterpret_cast< wxFont
* >(argp2
);
14679 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14680 (arg1
)->SetMeasuringFont((wxFont
const &)*arg2
);
14681 wxPyEndAllowThreads(__tstate
);
14682 if (PyErr_Occurred()) SWIG_fail
;
14684 resultobj
= SWIG_Py_Void();
14691 SWIGINTERN PyObject
*_wrap_AuiTabContainer_DoShowHide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14692 PyObject
*resultobj
= 0;
14693 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14696 PyObject
*swig_obj
[1] ;
14698 if (!args
) SWIG_fail
;
14699 swig_obj
[0] = args
;
14700 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14701 if (!SWIG_IsOK(res1
)) {
14702 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_DoShowHide" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14704 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14706 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14707 (arg1
)->DoShowHide();
14708 wxPyEndAllowThreads(__tstate
);
14709 if (PyErr_Occurred()) SWIG_fail
;
14711 resultobj
= SWIG_Py_Void();
14718 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14719 PyObject
*resultobj
= 0;
14720 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14725 PyObject
* obj0
= 0 ;
14726 PyObject
* obj1
= 0 ;
14727 char * kwnames
[] = {
14728 (char *) "self",(char *) "rect", NULL
14731 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14732 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14733 if (!SWIG_IsOK(res1
)) {
14734 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetRect" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14736 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14739 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
14742 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14743 (arg1
)->SetRect((wxRect
const &)*arg2
);
14744 wxPyEndAllowThreads(__tstate
);
14745 if (PyErr_Occurred()) SWIG_fail
;
14747 resultobj
= SWIG_Py_Void();
14754 SWIGINTERN PyObject
*_wrap_AuiTabContainer_RemoveButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14755 PyObject
*resultobj
= 0;
14756 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14762 PyObject
* obj0
= 0 ;
14763 PyObject
* obj1
= 0 ;
14764 char * kwnames
[] = {
14765 (char *) "self",(char *) "id", NULL
14768 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_RemoveButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14769 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14770 if (!SWIG_IsOK(res1
)) {
14771 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_RemoveButton" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14773 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14774 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14775 if (!SWIG_IsOK(ecode2
)) {
14776 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_RemoveButton" "', expected argument " "2"" of type '" "int""'");
14778 arg2
= static_cast< int >(val2
);
14780 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14781 (arg1
)->RemoveButton(arg2
);
14782 wxPyEndAllowThreads(__tstate
);
14783 if (PyErr_Occurred()) SWIG_fail
;
14785 resultobj
= SWIG_Py_Void();
14792 SWIGINTERN PyObject
*_wrap_AuiTabContainer_AddButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14793 PyObject
*resultobj
= 0;
14794 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14797 wxBitmap
const &arg4_defvalue
= wxNullBitmap
;
14798 wxBitmap
*arg4
= (wxBitmap
*) &arg4_defvalue
;
14799 wxBitmap
const &arg5_defvalue
= wxNullBitmap
;
14800 wxBitmap
*arg5
= (wxBitmap
*) &arg5_defvalue
;
14811 PyObject
* obj0
= 0 ;
14812 PyObject
* obj1
= 0 ;
14813 PyObject
* obj2
= 0 ;
14814 PyObject
* obj3
= 0 ;
14815 PyObject
* obj4
= 0 ;
14816 char * kwnames
[] = {
14817 (char *) "self",(char *) "id",(char *) "location",(char *) "normal_bitmap",(char *) "disabled_bitmap", NULL
14820 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:AuiTabContainer_AddButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
14821 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14822 if (!SWIG_IsOK(res1
)) {
14823 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14825 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14826 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14827 if (!SWIG_IsOK(ecode2
)) {
14828 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "2"" of type '" "int""'");
14830 arg2
= static_cast< int >(val2
);
14831 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14832 if (!SWIG_IsOK(ecode3
)) {
14833 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "3"" of type '" "int""'");
14835 arg3
= static_cast< int >(val3
);
14837 res4
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxBitmap
, 0 | 0);
14838 if (!SWIG_IsOK(res4
)) {
14839 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "4"" of type '" "wxBitmap const &""'");
14842 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddButton" "', expected argument " "4"" of type '" "wxBitmap const &""'");
14844 arg4
= reinterpret_cast< wxBitmap
* >(argp4
);
14847 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
, 0 | 0);
14848 if (!SWIG_IsOK(res5
)) {
14849 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "5"" of type '" "wxBitmap const &""'");
14852 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddButton" "', expected argument " "5"" of type '" "wxBitmap const &""'");
14854 arg5
= reinterpret_cast< wxBitmap
* >(argp5
);
14857 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14858 (arg1
)->AddButton(arg2
,arg3
,(wxBitmap
const &)*arg4
,(wxBitmap
const &)*arg5
);
14859 wxPyEndAllowThreads(__tstate
);
14860 if (PyErr_Occurred()) SWIG_fail
;
14862 resultobj
= SWIG_Py_Void();
14869 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetTabOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14870 PyObject
*resultobj
= 0;
14871 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14875 PyObject
*swig_obj
[1] ;
14877 if (!args
) SWIG_fail
;
14878 swig_obj
[0] = args
;
14879 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14880 if (!SWIG_IsOK(res1
)) {
14881 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetTabOffset" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14883 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14885 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14886 result
= (size_t)((wxAuiTabContainer
const *)arg1
)->GetTabOffset();
14887 wxPyEndAllowThreads(__tstate
);
14888 if (PyErr_Occurred()) SWIG_fail
;
14890 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14897 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetTabOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14898 PyObject
*resultobj
= 0;
14899 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14905 PyObject
* obj0
= 0 ;
14906 PyObject
* obj1
= 0 ;
14907 char * kwnames
[] = {
14908 (char *) "self",(char *) "offset", NULL
14911 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetTabOffset",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14912 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14913 if (!SWIG_IsOK(res1
)) {
14914 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetTabOffset" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14916 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14917 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14918 if (!SWIG_IsOK(ecode2
)) {
14919 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetTabOffset" "', expected argument " "2"" of type '" "size_t""'");
14921 arg2
= static_cast< size_t >(val2
);
14923 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14924 (arg1
)->SetTabOffset(arg2
);
14925 wxPyEndAllowThreads(__tstate
);
14926 if (PyErr_Occurred()) SWIG_fail
;
14928 resultobj
= SWIG_Py_Void();
14935 SWIGINTERN PyObject
*AuiTabContainer_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14937 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
14938 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabContainer
, SWIG_NewClientData(obj
));
14939 return SWIG_Py_Void();
14942 SWIGINTERN PyObject
*AuiTabContainer_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14943 return SWIG_Python_InitShadowInstance(args
);
14946 SWIGINTERN PyObject
*_wrap_new_AuiTabCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14947 PyObject
*resultobj
= 0;
14948 wxWindow
*arg1
= (wxWindow
*) 0 ;
14949 int arg2
= (int) wxID_ANY
;
14950 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
14951 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
14952 wxSize
const &arg4_defvalue
= wxDefaultSize
;
14953 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
14954 long arg5
= (long) 0 ;
14955 wxAuiTabCtrl
*result
= 0 ;
14964 PyObject
* obj0
= 0 ;
14965 PyObject
* obj1
= 0 ;
14966 PyObject
* obj2
= 0 ;
14967 PyObject
* obj3
= 0 ;
14968 PyObject
* obj4
= 0 ;
14969 char * kwnames
[] = {
14970 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
14973 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_AuiTabCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
14974 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14975 if (!SWIG_IsOK(res1
)) {
14976 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiTabCtrl" "', expected argument " "1"" of type '" "wxWindow *""'");
14978 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
14980 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14981 if (!SWIG_IsOK(ecode2
)) {
14982 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiTabCtrl" "', expected argument " "2"" of type '" "int""'");
14984 arg2
= static_cast< int >(val2
);
14989 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
14995 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
14999 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
15000 if (!SWIG_IsOK(ecode5
)) {
15001 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiTabCtrl" "', expected argument " "5"" of type '" "long""'");
15003 arg5
= static_cast< long >(val5
);
15006 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15007 result
= (wxAuiTabCtrl
*)new wxAuiTabCtrl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
15008 wxPyEndAllowThreads(__tstate
);
15009 if (PyErr_Occurred()) SWIG_fail
;
15011 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabCtrl
, SWIG_POINTER_NEW
| 0 );
15018 SWIGINTERN PyObject
*_wrap_delete_AuiTabCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15019 PyObject
*resultobj
= 0;
15020 wxAuiTabCtrl
*arg1
= (wxAuiTabCtrl
*) 0 ;
15023 PyObject
*swig_obj
[1] ;
15025 if (!args
) SWIG_fail
;
15026 swig_obj
[0] = args
;
15027 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabCtrl
, SWIG_POINTER_DISOWN
| 0 );
15028 if (!SWIG_IsOK(res1
)) {
15029 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabCtrl" "', expected argument " "1"" of type '" "wxAuiTabCtrl *""'");
15031 arg1
= reinterpret_cast< wxAuiTabCtrl
* >(argp1
);
15033 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15036 wxPyEndAllowThreads(__tstate
);
15037 if (PyErr_Occurred()) SWIG_fail
;
15039 resultobj
= SWIG_Py_Void();
15046 SWIGINTERN PyObject
*AuiTabCtrl_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15048 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15049 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabCtrl
, SWIG_NewClientData(obj
));
15050 return SWIG_Py_Void();
15053 SWIGINTERN PyObject
*AuiTabCtrl_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15054 return SWIG_Python_InitShadowInstance(args
);
15057 SWIGINTERN PyObject
*_wrap_new_PreAuiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15058 PyObject
*resultobj
= 0;
15059 wxAuiNotebook
*result
= 0 ;
15061 if (!SWIG_Python_UnpackTuple(args
,"new_PreAuiNotebook",0,0,0)) SWIG_fail
;
15063 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15064 result
= (wxAuiNotebook
*)new wxAuiNotebook();
15065 wxPyEndAllowThreads(__tstate
);
15066 if (PyErr_Occurred()) SWIG_fail
;
15068 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_OWN
| 0 );
15075 SWIGINTERN PyObject
*_wrap_new_AuiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15076 PyObject
*resultobj
= 0;
15077 wxWindow
*arg1
= (wxWindow
*) 0 ;
15078 int arg2
= (int) wxID_ANY
;
15079 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
15080 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
15081 wxSize
const &arg4_defvalue
= wxDefaultSize
;
15082 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
15083 long arg5
= (long) wxAUI_NB_DEFAULT_STYLE
;
15084 wxAuiNotebook
*result
= 0 ;
15093 PyObject
* obj0
= 0 ;
15094 PyObject
* obj1
= 0 ;
15095 PyObject
* obj2
= 0 ;
15096 PyObject
* obj3
= 0 ;
15097 PyObject
* obj4
= 0 ;
15098 char * kwnames
[] = {
15099 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
15102 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_AuiNotebook",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
15103 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15104 if (!SWIG_IsOK(res1
)) {
15105 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiNotebook" "', expected argument " "1"" of type '" "wxWindow *""'");
15107 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
15109 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15110 if (!SWIG_IsOK(ecode2
)) {
15111 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiNotebook" "', expected argument " "2"" of type '" "int""'");
15113 arg2
= static_cast< int >(val2
);
15118 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
15124 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
15128 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
15129 if (!SWIG_IsOK(ecode5
)) {
15130 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiNotebook" "', expected argument " "5"" of type '" "long""'");
15132 arg5
= static_cast< long >(val5
);
15135 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15136 result
= (wxAuiNotebook
*)new wxAuiNotebook(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
15137 wxPyEndAllowThreads(__tstate
);
15138 if (PyErr_Occurred()) SWIG_fail
;
15140 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_NEW
| 0 );
15147 SWIGINTERN PyObject
*_wrap_delete_AuiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15148 PyObject
*resultobj
= 0;
15149 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15152 PyObject
*swig_obj
[1] ;
15154 if (!args
) SWIG_fail
;
15155 swig_obj
[0] = args
;
15156 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_DISOWN
| 0 );
15157 if (!SWIG_IsOK(res1
)) {
15158 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiNotebook" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15160 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15162 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15165 wxPyEndAllowThreads(__tstate
);
15166 if (PyErr_Occurred()) SWIG_fail
;
15168 resultobj
= SWIG_Py_Void();
15175 SWIGINTERN PyObject
*_wrap_AuiNotebook_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15176 PyObject
*resultobj
= 0;
15177 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15178 wxWindow
*arg2
= (wxWindow
*) 0 ;
15179 int arg3
= (int) wxID_ANY
;
15180 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
15181 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
15182 wxSize
const &arg5_defvalue
= wxDefaultSize
;
15183 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
15184 long arg6
= (long) 0 ;
15196 PyObject
* obj0
= 0 ;
15197 PyObject
* obj1
= 0 ;
15198 PyObject
* obj2
= 0 ;
15199 PyObject
* obj3
= 0 ;
15200 PyObject
* obj4
= 0 ;
15201 PyObject
* obj5
= 0 ;
15202 char * kwnames
[] = {
15203 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
15206 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:AuiNotebook_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
15207 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15208 if (!SWIG_IsOK(res1
)) {
15209 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_Create" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15211 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15212 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15213 if (!SWIG_IsOK(res2
)) {
15214 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
15216 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
15218 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15219 if (!SWIG_IsOK(ecode3
)) {
15220 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiNotebook_Create" "', expected argument " "3"" of type '" "int""'");
15222 arg3
= static_cast< int >(val3
);
15227 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
15233 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
15237 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
15238 if (!SWIG_IsOK(ecode6
)) {
15239 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiNotebook_Create" "', expected argument " "6"" of type '" "long""'");
15241 arg6
= static_cast< long >(val6
);
15244 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15245 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
);
15246 wxPyEndAllowThreads(__tstate
);
15247 if (PyErr_Occurred()) SWIG_fail
;
15250 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15258 SWIGINTERN PyObject
*_wrap_AuiNotebook_AddPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15259 PyObject
*resultobj
= 0;
15260 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15261 wxWindow
*arg2
= (wxWindow
*) 0 ;
15262 wxString
*arg3
= 0 ;
15263 bool arg4
= (bool) false ;
15264 wxBitmap
const &arg5_defvalue
= wxNullBitmap
;
15265 wxBitmap
*arg5
= (wxBitmap
*) &arg5_defvalue
;
15271 bool temp3
= false ;
15276 PyObject
* obj0
= 0 ;
15277 PyObject
* obj1
= 0 ;
15278 PyObject
* obj2
= 0 ;
15279 PyObject
* obj3
= 0 ;
15280 PyObject
* obj4
= 0 ;
15281 char * kwnames
[] = {
15282 (char *) "self",(char *) "page",(char *) "caption",(char *) "select",(char *) "bitmap", NULL
15285 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:AuiNotebook_AddPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
15286 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15287 if (!SWIG_IsOK(res1
)) {
15288 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_AddPage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15290 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15291 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15292 if (!SWIG_IsOK(res2
)) {
15293 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_AddPage" "', expected argument " "2"" of type '" "wxWindow *""'");
15295 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
15297 arg3
= wxString_in_helper(obj2
);
15298 if (arg3
== NULL
) SWIG_fail
;
15302 ecode4
= SWIG_AsVal_bool(obj3
, &val4
);
15303 if (!SWIG_IsOK(ecode4
)) {
15304 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiNotebook_AddPage" "', expected argument " "4"" of type '" "bool""'");
15306 arg4
= static_cast< bool >(val4
);
15309 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
, 0 | 0);
15310 if (!SWIG_IsOK(res5
)) {
15311 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiNotebook_AddPage" "', expected argument " "5"" of type '" "wxBitmap const &""'");
15314 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiNotebook_AddPage" "', expected argument " "5"" of type '" "wxBitmap const &""'");
15316 arg5
= reinterpret_cast< wxBitmap
* >(argp5
);
15319 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15320 result
= (bool)(arg1
)->AddPage(arg2
,(wxString
const &)*arg3
,arg4
,(wxBitmap
const &)*arg5
);
15321 wxPyEndAllowThreads(__tstate
);
15322 if (PyErr_Occurred()) SWIG_fail
;
15325 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15341 SWIGINTERN PyObject
*_wrap_AuiNotebook_InsertPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15342 PyObject
*resultobj
= 0;
15343 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15345 wxWindow
*arg3
= (wxWindow
*) 0 ;
15346 wxString
*arg4
= 0 ;
15347 bool arg5
= (bool) false ;
15348 wxBitmap
const &arg6_defvalue
= wxNullBitmap
;
15349 wxBitmap
*arg6
= (wxBitmap
*) &arg6_defvalue
;
15357 bool temp4
= false ;
15362 PyObject
* obj0
= 0 ;
15363 PyObject
* obj1
= 0 ;
15364 PyObject
* obj2
= 0 ;
15365 PyObject
* obj3
= 0 ;
15366 PyObject
* obj4
= 0 ;
15367 PyObject
* obj5
= 0 ;
15368 char * kwnames
[] = {
15369 (char *) "self",(char *) "page_idx",(char *) "page",(char *) "caption",(char *) "select",(char *) "bitmap", NULL
15372 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:AuiNotebook_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
15373 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15374 if (!SWIG_IsOK(res1
)) {
15375 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15377 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15378 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15379 if (!SWIG_IsOK(ecode2
)) {
15380 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "2"" of type '" "size_t""'");
15382 arg2
= static_cast< size_t >(val2
);
15383 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15384 if (!SWIG_IsOK(res3
)) {
15385 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "3"" of type '" "wxWindow *""'");
15387 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
15389 arg4
= wxString_in_helper(obj3
);
15390 if (arg4
== NULL
) SWIG_fail
;
15394 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
15395 if (!SWIG_IsOK(ecode5
)) {
15396 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "5"" of type '" "bool""'");
15398 arg5
= static_cast< bool >(val5
);
15401 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxBitmap
, 0 | 0);
15402 if (!SWIG_IsOK(res6
)) {
15403 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "6"" of type '" "wxBitmap const &""'");
15406 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiNotebook_InsertPage" "', expected argument " "6"" of type '" "wxBitmap const &""'");
15408 arg6
= reinterpret_cast< wxBitmap
* >(argp6
);
15411 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15412 result
= (bool)(arg1
)->InsertPage(arg2
,arg3
,(wxString
const &)*arg4
,arg5
,(wxBitmap
const &)*arg6
);
15413 wxPyEndAllowThreads(__tstate
);
15414 if (PyErr_Occurred()) SWIG_fail
;
15417 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15433 SWIGINTERN PyObject
*_wrap_AuiNotebook_DeletePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15434 PyObject
*resultobj
= 0;
15435 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15442 PyObject
* obj0
= 0 ;
15443 PyObject
* obj1
= 0 ;
15444 char * kwnames
[] = {
15445 (char *) "self",(char *) "page", NULL
15448 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_DeletePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15449 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15450 if (!SWIG_IsOK(res1
)) {
15451 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_DeletePage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15453 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15454 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15455 if (!SWIG_IsOK(ecode2
)) {
15456 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_DeletePage" "', expected argument " "2"" of type '" "size_t""'");
15458 arg2
= static_cast< size_t >(val2
);
15460 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15461 result
= (bool)(arg1
)->DeletePage(arg2
);
15462 wxPyEndAllowThreads(__tstate
);
15463 if (PyErr_Occurred()) SWIG_fail
;
15466 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15474 SWIGINTERN PyObject
*_wrap_AuiNotebook_RemovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15475 PyObject
*resultobj
= 0;
15476 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15483 PyObject
* obj0
= 0 ;
15484 PyObject
* obj1
= 0 ;
15485 char * kwnames
[] = {
15486 (char *) "self",(char *) "page", NULL
15489 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_RemovePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15490 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15491 if (!SWIG_IsOK(res1
)) {
15492 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_RemovePage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15494 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15495 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15496 if (!SWIG_IsOK(ecode2
)) {
15497 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_RemovePage" "', expected argument " "2"" of type '" "size_t""'");
15499 arg2
= static_cast< size_t >(val2
);
15501 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15502 result
= (bool)(arg1
)->RemovePage(arg2
);
15503 wxPyEndAllowThreads(__tstate
);
15504 if (PyErr_Occurred()) SWIG_fail
;
15507 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15515 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetPageText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15516 PyObject
*resultobj
= 0;
15517 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15519 wxString
*arg3
= 0 ;
15525 bool temp3
= false ;
15526 PyObject
* obj0
= 0 ;
15527 PyObject
* obj1
= 0 ;
15528 PyObject
* obj2
= 0 ;
15529 char * kwnames
[] = {
15530 (char *) "self",(char *) "page",(char *) "text", NULL
15533 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiNotebook_SetPageText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15534 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15535 if (!SWIG_IsOK(res1
)) {
15536 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetPageText" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15538 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15539 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15540 if (!SWIG_IsOK(ecode2
)) {
15541 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetPageText" "', expected argument " "2"" of type '" "size_t""'");
15543 arg2
= static_cast< size_t >(val2
);
15545 arg3
= wxString_in_helper(obj2
);
15546 if (arg3
== NULL
) SWIG_fail
;
15550 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15551 result
= (bool)(arg1
)->SetPageText(arg2
,(wxString
const &)*arg3
);
15552 wxPyEndAllowThreads(__tstate
);
15553 if (PyErr_Occurred()) SWIG_fail
;
15556 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15572 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetPageBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15573 PyObject
*resultobj
= 0;
15574 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15576 wxBitmap
*arg3
= 0 ;
15584 PyObject
* obj0
= 0 ;
15585 PyObject
* obj1
= 0 ;
15586 PyObject
* obj2
= 0 ;
15587 char * kwnames
[] = {
15588 (char *) "self",(char *) "page",(char *) "bitmap", NULL
15591 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiNotebook_SetPageBitmap",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15592 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15593 if (!SWIG_IsOK(res1
)) {
15594 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15596 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15597 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15598 if (!SWIG_IsOK(ecode2
)) {
15599 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "2"" of type '" "size_t""'");
15601 arg2
= static_cast< size_t >(val2
);
15602 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
, 0 | 0);
15603 if (!SWIG_IsOK(res3
)) {
15604 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");
15607 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");
15609 arg3
= reinterpret_cast< wxBitmap
* >(argp3
);
15611 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15612 result
= (bool)(arg1
)->SetPageBitmap(arg2
,(wxBitmap
const &)*arg3
);
15613 wxPyEndAllowThreads(__tstate
);
15614 if (PyErr_Occurred()) SWIG_fail
;
15617 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15625 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15626 PyObject
*resultobj
= 0;
15627 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15634 PyObject
* obj0
= 0 ;
15635 PyObject
* obj1
= 0 ;
15636 char * kwnames
[] = {
15637 (char *) "self",(char *) "new_page", NULL
15640 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15641 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15642 if (!SWIG_IsOK(res1
)) {
15643 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetSelection" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15645 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15646 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15647 if (!SWIG_IsOK(ecode2
)) {
15648 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetSelection" "', expected argument " "2"" of type '" "size_t""'");
15650 arg2
= static_cast< size_t >(val2
);
15652 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15653 result
= (size_t)(arg1
)->SetSelection(arg2
);
15654 wxPyEndAllowThreads(__tstate
);
15655 if (PyErr_Occurred()) SWIG_fail
;
15657 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
15664 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15665 PyObject
*resultobj
= 0;
15666 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15670 PyObject
*swig_obj
[1] ;
15672 if (!args
) SWIG_fail
;
15673 swig_obj
[0] = args
;
15674 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15675 if (!SWIG_IsOK(res1
)) {
15676 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetSelection" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15678 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15680 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15681 result
= (int)((wxAuiNotebook
const *)arg1
)->GetSelection();
15682 wxPyEndAllowThreads(__tstate
);
15683 if (PyErr_Occurred()) SWIG_fail
;
15685 resultobj
= SWIG_From_int(static_cast< int >(result
));
15692 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetPageCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15693 PyObject
*resultobj
= 0;
15694 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15698 PyObject
*swig_obj
[1] ;
15700 if (!args
) SWIG_fail
;
15701 swig_obj
[0] = args
;
15702 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15703 if (!SWIG_IsOK(res1
)) {
15704 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPageCount" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15706 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15708 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15709 result
= (size_t)((wxAuiNotebook
const *)arg1
)->GetPageCount();
15710 wxPyEndAllowThreads(__tstate
);
15711 if (PyErr_Occurred()) SWIG_fail
;
15713 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
15720 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15721 PyObject
*resultobj
= 0;
15722 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15724 wxWindow
*result
= 0 ;
15729 PyObject
* obj0
= 0 ;
15730 PyObject
* obj1
= 0 ;
15731 char * kwnames
[] = {
15732 (char *) "self",(char *) "page_idx", NULL
15735 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_GetPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15736 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15737 if (!SWIG_IsOK(res1
)) {
15738 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPage" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15740 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15741 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15742 if (!SWIG_IsOK(ecode2
)) {
15743 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_GetPage" "', expected argument " "2"" of type '" "size_t""'");
15745 arg2
= static_cast< size_t >(val2
);
15747 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15748 result
= (wxWindow
*)((wxAuiNotebook
const *)arg1
)->GetPage(arg2
);
15749 wxPyEndAllowThreads(__tstate
);
15750 if (PyErr_Occurred()) SWIG_fail
;
15753 resultobj
= wxPyMake_wxObject(result
, 0);
15761 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetPageIndex(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15762 PyObject
*resultobj
= 0;
15763 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15764 wxWindow
*arg2
= (wxWindow
*) 0 ;
15770 PyObject
* obj0
= 0 ;
15771 PyObject
* obj1
= 0 ;
15772 char * kwnames
[] = {
15773 (char *) "self",(char *) "page_wnd", NULL
15776 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_GetPageIndex",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15777 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15778 if (!SWIG_IsOK(res1
)) {
15779 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPageIndex" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15781 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15782 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15783 if (!SWIG_IsOK(res2
)) {
15784 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_GetPageIndex" "', expected argument " "2"" of type '" "wxWindow *""'");
15786 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
15788 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15789 result
= (int)((wxAuiNotebook
const *)arg1
)->GetPageIndex(arg2
);
15790 wxPyEndAllowThreads(__tstate
);
15791 if (PyErr_Occurred()) SWIG_fail
;
15793 resultobj
= SWIG_From_int(static_cast< int >(result
));
15800 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15801 PyObject
*resultobj
= 0;
15802 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15803 wxAuiTabArt
*arg2
= (wxAuiTabArt
*) 0 ;
15808 PyObject
* obj0
= 0 ;
15809 PyObject
* obj1
= 0 ;
15810 char * kwnames
[] = {
15811 (char *) "self",(char *) "art", NULL
15814 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15815 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15816 if (!SWIG_IsOK(res1
)) {
15817 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15819 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15820 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
15821 if (!SWIG_IsOK(res2
)) {
15822 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiTabArt *""'");
15824 arg2
= reinterpret_cast< wxAuiTabArt
* >(argp2
);
15826 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15827 (arg1
)->SetArtProvider(arg2
);
15828 wxPyEndAllowThreads(__tstate
);
15829 if (PyErr_Occurred()) SWIG_fail
;
15831 resultobj
= SWIG_Py_Void();
15838 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15839 PyObject
*resultobj
= 0;
15840 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15841 wxAuiTabArt
*result
= 0 ;
15844 PyObject
*swig_obj
[1] ;
15846 if (!args
) SWIG_fail
;
15847 swig_obj
[0] = args
;
15848 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15849 if (!SWIG_IsOK(res1
)) {
15850 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15852 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15854 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15855 result
= (wxAuiTabArt
*)((wxAuiNotebook
const *)arg1
)->GetArtProvider();
15856 wxPyEndAllowThreads(__tstate
);
15857 if (PyErr_Occurred()) SWIG_fail
;
15859 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
15866 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetUniformBitmapSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15867 PyObject
*resultobj
= 0;
15868 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15873 PyObject
* obj0
= 0 ;
15874 PyObject
* obj1
= 0 ;
15875 char * kwnames
[] = {
15876 (char *) "self",(char *) "size", NULL
15879 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetUniformBitmapSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15880 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15881 if (!SWIG_IsOK(res1
)) {
15882 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetUniformBitmapSize" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15884 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15887 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
15890 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15891 (arg1
)->SetUniformBitmapSize((wxSize
const &)*arg2
);
15892 wxPyEndAllowThreads(__tstate
);
15893 if (PyErr_Occurred()) SWIG_fail
;
15895 resultobj
= SWIG_Py_Void();
15902 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetTabCtrlHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15903 PyObject
*resultobj
= 0;
15904 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15910 PyObject
* obj0
= 0 ;
15911 PyObject
* obj1
= 0 ;
15912 char * kwnames
[] = {
15913 (char *) "self",(char *) "height", NULL
15916 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetTabCtrlHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15917 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15918 if (!SWIG_IsOK(res1
)) {
15919 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetTabCtrlHeight" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15921 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15922 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15923 if (!SWIG_IsOK(ecode2
)) {
15924 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetTabCtrlHeight" "', expected argument " "2"" of type '" "int""'");
15926 arg2
= static_cast< int >(val2
);
15928 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15929 (arg1
)->SetTabCtrlHeight(arg2
);
15930 wxPyEndAllowThreads(__tstate
);
15931 if (PyErr_Occurred()) SWIG_fail
;
15933 resultobj
= SWIG_Py_Void();
15940 SWIGINTERN PyObject
*AuiNotebook_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15942 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15943 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebook
, SWIG_NewClientData(obj
));
15944 return SWIG_Py_Void();
15947 SWIGINTERN PyObject
*AuiNotebook_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15948 return SWIG_Python_InitShadowInstance(args
);
15951 SWIGINTERN PyObject
*PyAuiDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15953 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15954 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyAuiDockArt
, SWIG_NewClientData(obj
));
15955 return SWIG_Py_Void();
15958 SWIGINTERN PyObject
*PyAuiTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15960 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15961 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyAuiTabArt
, SWIG_NewClientData(obj
));
15962 return SWIG_Py_Void();
15965 static PyMethodDef SwigMethods
[] = {
15966 { (char *)"new_AuiPaneInfo", (PyCFunction
)_wrap_new_AuiPaneInfo
, METH_NOARGS
, NULL
},
15967 { (char *)"delete_AuiPaneInfo", (PyCFunction
)_wrap_delete_AuiPaneInfo
, METH_O
, NULL
},
15968 { (char *)"AuiPaneInfo_SafeSet", (PyCFunction
) _wrap_AuiPaneInfo_SafeSet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15969 { (char *)"AuiPaneInfo_IsOk", (PyCFunction
)_wrap_AuiPaneInfo_IsOk
, METH_O
, NULL
},
15970 { (char *)"AuiPaneInfo_IsFixed", (PyCFunction
)_wrap_AuiPaneInfo_IsFixed
, METH_O
, NULL
},
15971 { (char *)"AuiPaneInfo_IsResizable", (PyCFunction
)_wrap_AuiPaneInfo_IsResizable
, METH_O
, NULL
},
15972 { (char *)"AuiPaneInfo_IsShown", (PyCFunction
)_wrap_AuiPaneInfo_IsShown
, METH_O
, NULL
},
15973 { (char *)"AuiPaneInfo_IsFloating", (PyCFunction
)_wrap_AuiPaneInfo_IsFloating
, METH_O
, NULL
},
15974 { (char *)"AuiPaneInfo_IsDocked", (PyCFunction
)_wrap_AuiPaneInfo_IsDocked
, METH_O
, NULL
},
15975 { (char *)"AuiPaneInfo_IsToolbar", (PyCFunction
)_wrap_AuiPaneInfo_IsToolbar
, METH_O
, NULL
},
15976 { (char *)"AuiPaneInfo_IsTopDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsTopDockable
, METH_O
, NULL
},
15977 { (char *)"AuiPaneInfo_IsBottomDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsBottomDockable
, METH_O
, NULL
},
15978 { (char *)"AuiPaneInfo_IsLeftDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsLeftDockable
, METH_O
, NULL
},
15979 { (char *)"AuiPaneInfo_IsRightDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsRightDockable
, METH_O
, NULL
},
15980 { (char *)"AuiPaneInfo_IsFloatable", (PyCFunction
)_wrap_AuiPaneInfo_IsFloatable
, METH_O
, NULL
},
15981 { (char *)"AuiPaneInfo_IsMovable", (PyCFunction
)_wrap_AuiPaneInfo_IsMovable
, METH_O
, NULL
},
15982 { (char *)"AuiPaneInfo_IsDestroyOnClose", (PyCFunction
)_wrap_AuiPaneInfo_IsDestroyOnClose
, METH_O
, NULL
},
15983 { (char *)"AuiPaneInfo_IsMaximized", (PyCFunction
)_wrap_AuiPaneInfo_IsMaximized
, METH_O
, NULL
},
15984 { (char *)"AuiPaneInfo_HasCaption", (PyCFunction
)_wrap_AuiPaneInfo_HasCaption
, METH_O
, NULL
},
15985 { (char *)"AuiPaneInfo_HasGripper", (PyCFunction
)_wrap_AuiPaneInfo_HasGripper
, METH_O
, NULL
},
15986 { (char *)"AuiPaneInfo_HasBorder", (PyCFunction
)_wrap_AuiPaneInfo_HasBorder
, METH_O
, NULL
},
15987 { (char *)"AuiPaneInfo_HasCloseButton", (PyCFunction
)_wrap_AuiPaneInfo_HasCloseButton
, METH_O
, NULL
},
15988 { (char *)"AuiPaneInfo_HasMaximizeButton", (PyCFunction
)_wrap_AuiPaneInfo_HasMaximizeButton
, METH_O
, NULL
},
15989 { (char *)"AuiPaneInfo_HasMinimizeButton", (PyCFunction
)_wrap_AuiPaneInfo_HasMinimizeButton
, METH_O
, NULL
},
15990 { (char *)"AuiPaneInfo_HasPinButton", (PyCFunction
)_wrap_AuiPaneInfo_HasPinButton
, METH_O
, NULL
},
15991 { (char *)"AuiPaneInfo_HasGripperTop", (PyCFunction
)_wrap_AuiPaneInfo_HasGripperTop
, METH_O
, NULL
},
15992 { (char *)"AuiPaneInfo_Window", (PyCFunction
) _wrap_AuiPaneInfo_Window
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15993 { (char *)"AuiPaneInfo_Name", (PyCFunction
) _wrap_AuiPaneInfo_Name
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15994 { (char *)"AuiPaneInfo_Caption", (PyCFunction
) _wrap_AuiPaneInfo_Caption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15995 { (char *)"AuiPaneInfo_Left", (PyCFunction
)_wrap_AuiPaneInfo_Left
, METH_O
, NULL
},
15996 { (char *)"AuiPaneInfo_Right", (PyCFunction
)_wrap_AuiPaneInfo_Right
, METH_O
, NULL
},
15997 { (char *)"AuiPaneInfo_Top", (PyCFunction
)_wrap_AuiPaneInfo_Top
, METH_O
, NULL
},
15998 { (char *)"AuiPaneInfo_Bottom", (PyCFunction
)_wrap_AuiPaneInfo_Bottom
, METH_O
, NULL
},
15999 { (char *)"AuiPaneInfo_Center", (PyCFunction
)_wrap_AuiPaneInfo_Center
, METH_O
, NULL
},
16000 { (char *)"AuiPaneInfo_Centre", (PyCFunction
)_wrap_AuiPaneInfo_Centre
, METH_O
, NULL
},
16001 { (char *)"AuiPaneInfo_Direction", (PyCFunction
) _wrap_AuiPaneInfo_Direction
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16002 { (char *)"AuiPaneInfo_Layer", (PyCFunction
) _wrap_AuiPaneInfo_Layer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16003 { (char *)"AuiPaneInfo_Row", (PyCFunction
) _wrap_AuiPaneInfo_Row
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16004 { (char *)"AuiPaneInfo_Position", (PyCFunction
) _wrap_AuiPaneInfo_Position
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16005 { (char *)"AuiPaneInfo_BestSize", (PyCFunction
) _wrap_AuiPaneInfo_BestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16006 { (char *)"AuiPaneInfo_MinSize", (PyCFunction
) _wrap_AuiPaneInfo_MinSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16007 { (char *)"AuiPaneInfo_MaxSize", (PyCFunction
) _wrap_AuiPaneInfo_MaxSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16008 { (char *)"AuiPaneInfo_FloatingPosition", (PyCFunction
) _wrap_AuiPaneInfo_FloatingPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16009 { (char *)"AuiPaneInfo_FloatingSize", (PyCFunction
) _wrap_AuiPaneInfo_FloatingSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16010 { (char *)"AuiPaneInfo_Fixed", (PyCFunction
)_wrap_AuiPaneInfo_Fixed
, METH_O
, NULL
},
16011 { (char *)"AuiPaneInfo_Resizable", (PyCFunction
) _wrap_AuiPaneInfo_Resizable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16012 { (char *)"AuiPaneInfo_Dock", (PyCFunction
)_wrap_AuiPaneInfo_Dock
, METH_O
, NULL
},
16013 { (char *)"AuiPaneInfo_Float", (PyCFunction
)_wrap_AuiPaneInfo_Float
, METH_O
, NULL
},
16014 { (char *)"AuiPaneInfo_Hide", (PyCFunction
)_wrap_AuiPaneInfo_Hide
, METH_O
, NULL
},
16015 { (char *)"AuiPaneInfo_Show", (PyCFunction
) _wrap_AuiPaneInfo_Show
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16016 { (char *)"AuiPaneInfo_CaptionVisible", (PyCFunction
) _wrap_AuiPaneInfo_CaptionVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16017 { (char *)"AuiPaneInfo_Maximize", (PyCFunction
)_wrap_AuiPaneInfo_Maximize
, METH_O
, NULL
},
16018 { (char *)"AuiPaneInfo_Restore", (PyCFunction
)_wrap_AuiPaneInfo_Restore
, METH_O
, NULL
},
16019 { (char *)"AuiPaneInfo_PaneBorder", (PyCFunction
) _wrap_AuiPaneInfo_PaneBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16020 { (char *)"AuiPaneInfo_Gripper", (PyCFunction
) _wrap_AuiPaneInfo_Gripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16021 { (char *)"AuiPaneInfo_GripperTop", (PyCFunction
) _wrap_AuiPaneInfo_GripperTop
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16022 { (char *)"AuiPaneInfo_CloseButton", (PyCFunction
) _wrap_AuiPaneInfo_CloseButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16023 { (char *)"AuiPaneInfo_MaximizeButton", (PyCFunction
) _wrap_AuiPaneInfo_MaximizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16024 { (char *)"AuiPaneInfo_MinimizeButton", (PyCFunction
) _wrap_AuiPaneInfo_MinimizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16025 { (char *)"AuiPaneInfo_PinButton", (PyCFunction
) _wrap_AuiPaneInfo_PinButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16026 { (char *)"AuiPaneInfo_DestroyOnClose", (PyCFunction
) _wrap_AuiPaneInfo_DestroyOnClose
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16027 { (char *)"AuiPaneInfo_TopDockable", (PyCFunction
) _wrap_AuiPaneInfo_TopDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16028 { (char *)"AuiPaneInfo_BottomDockable", (PyCFunction
) _wrap_AuiPaneInfo_BottomDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16029 { (char *)"AuiPaneInfo_LeftDockable", (PyCFunction
) _wrap_AuiPaneInfo_LeftDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16030 { (char *)"AuiPaneInfo_RightDockable", (PyCFunction
) _wrap_AuiPaneInfo_RightDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16031 { (char *)"AuiPaneInfo_Floatable", (PyCFunction
) _wrap_AuiPaneInfo_Floatable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16032 { (char *)"AuiPaneInfo_Movable", (PyCFunction
) _wrap_AuiPaneInfo_Movable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16033 { (char *)"AuiPaneInfo_Dockable", (PyCFunction
) _wrap_AuiPaneInfo_Dockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16034 { (char *)"AuiPaneInfo_DefaultPane", (PyCFunction
)_wrap_AuiPaneInfo_DefaultPane
, METH_O
, NULL
},
16035 { (char *)"AuiPaneInfo_CentrePane", (PyCFunction
)_wrap_AuiPaneInfo_CentrePane
, METH_O
, NULL
},
16036 { (char *)"AuiPaneInfo_CenterPane", (PyCFunction
)_wrap_AuiPaneInfo_CenterPane
, METH_O
, NULL
},
16037 { (char *)"AuiPaneInfo_ToolbarPane", (PyCFunction
)_wrap_AuiPaneInfo_ToolbarPane
, METH_O
, NULL
},
16038 { (char *)"AuiPaneInfo_SetFlag", (PyCFunction
) _wrap_AuiPaneInfo_SetFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16039 { (char *)"AuiPaneInfo_HasFlag", (PyCFunction
) _wrap_AuiPaneInfo_HasFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16040 { (char *)"AuiPaneInfo_name_set", _wrap_AuiPaneInfo_name_set
, METH_VARARGS
, NULL
},
16041 { (char *)"AuiPaneInfo_name_get", (PyCFunction
)_wrap_AuiPaneInfo_name_get
, METH_O
, NULL
},
16042 { (char *)"AuiPaneInfo_caption_set", _wrap_AuiPaneInfo_caption_set
, METH_VARARGS
, NULL
},
16043 { (char *)"AuiPaneInfo_caption_get", (PyCFunction
)_wrap_AuiPaneInfo_caption_get
, METH_O
, NULL
},
16044 { (char *)"AuiPaneInfo_window_set", _wrap_AuiPaneInfo_window_set
, METH_VARARGS
, NULL
},
16045 { (char *)"AuiPaneInfo_window_get", (PyCFunction
)_wrap_AuiPaneInfo_window_get
, METH_O
, NULL
},
16046 { (char *)"AuiPaneInfo_frame_set", _wrap_AuiPaneInfo_frame_set
, METH_VARARGS
, NULL
},
16047 { (char *)"AuiPaneInfo_frame_get", (PyCFunction
)_wrap_AuiPaneInfo_frame_get
, METH_O
, NULL
},
16048 { (char *)"AuiPaneInfo_state_set", _wrap_AuiPaneInfo_state_set
, METH_VARARGS
, NULL
},
16049 { (char *)"AuiPaneInfo_state_get", (PyCFunction
)_wrap_AuiPaneInfo_state_get
, METH_O
, NULL
},
16050 { (char *)"AuiPaneInfo_dock_direction_set", _wrap_AuiPaneInfo_dock_direction_set
, METH_VARARGS
, NULL
},
16051 { (char *)"AuiPaneInfo_dock_direction_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_direction_get
, METH_O
, NULL
},
16052 { (char *)"AuiPaneInfo_dock_layer_set", _wrap_AuiPaneInfo_dock_layer_set
, METH_VARARGS
, NULL
},
16053 { (char *)"AuiPaneInfo_dock_layer_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_layer_get
, METH_O
, NULL
},
16054 { (char *)"AuiPaneInfo_dock_row_set", _wrap_AuiPaneInfo_dock_row_set
, METH_VARARGS
, NULL
},
16055 { (char *)"AuiPaneInfo_dock_row_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_row_get
, METH_O
, NULL
},
16056 { (char *)"AuiPaneInfo_dock_pos_set", _wrap_AuiPaneInfo_dock_pos_set
, METH_VARARGS
, NULL
},
16057 { (char *)"AuiPaneInfo_dock_pos_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_pos_get
, METH_O
, NULL
},
16058 { (char *)"AuiPaneInfo_best_size_set", _wrap_AuiPaneInfo_best_size_set
, METH_VARARGS
, NULL
},
16059 { (char *)"AuiPaneInfo_best_size_get", (PyCFunction
)_wrap_AuiPaneInfo_best_size_get
, METH_O
, NULL
},
16060 { (char *)"AuiPaneInfo_min_size_set", _wrap_AuiPaneInfo_min_size_set
, METH_VARARGS
, NULL
},
16061 { (char *)"AuiPaneInfo_min_size_get", (PyCFunction
)_wrap_AuiPaneInfo_min_size_get
, METH_O
, NULL
},
16062 { (char *)"AuiPaneInfo_max_size_set", _wrap_AuiPaneInfo_max_size_set
, METH_VARARGS
, NULL
},
16063 { (char *)"AuiPaneInfo_max_size_get", (PyCFunction
)_wrap_AuiPaneInfo_max_size_get
, METH_O
, NULL
},
16064 { (char *)"AuiPaneInfo_floating_pos_set", _wrap_AuiPaneInfo_floating_pos_set
, METH_VARARGS
, NULL
},
16065 { (char *)"AuiPaneInfo_floating_pos_get", (PyCFunction
)_wrap_AuiPaneInfo_floating_pos_get
, METH_O
, NULL
},
16066 { (char *)"AuiPaneInfo_floating_size_set", _wrap_AuiPaneInfo_floating_size_set
, METH_VARARGS
, NULL
},
16067 { (char *)"AuiPaneInfo_floating_size_get", (PyCFunction
)_wrap_AuiPaneInfo_floating_size_get
, METH_O
, NULL
},
16068 { (char *)"AuiPaneInfo_dock_proportion_set", _wrap_AuiPaneInfo_dock_proportion_set
, METH_VARARGS
, NULL
},
16069 { (char *)"AuiPaneInfo_dock_proportion_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_proportion_get
, METH_O
, NULL
},
16070 { (char *)"AuiPaneInfo_buttons_set", _wrap_AuiPaneInfo_buttons_set
, METH_VARARGS
, NULL
},
16071 { (char *)"AuiPaneInfo_buttons_get", (PyCFunction
)_wrap_AuiPaneInfo_buttons_get
, METH_O
, NULL
},
16072 { (char *)"AuiPaneInfo_rect_set", _wrap_AuiPaneInfo_rect_set
, METH_VARARGS
, NULL
},
16073 { (char *)"AuiPaneInfo_rect_get", (PyCFunction
)_wrap_AuiPaneInfo_rect_get
, METH_O
, NULL
},
16074 { (char *)"AuiPaneInfo_swigregister", AuiPaneInfo_swigregister
, METH_VARARGS
, NULL
},
16075 { (char *)"AuiPaneInfo_swiginit", AuiPaneInfo_swiginit
, METH_VARARGS
, NULL
},
16076 { (char *)"new_AuiManager", (PyCFunction
) _wrap_new_AuiManager
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16077 { (char *)"delete_AuiManager", (PyCFunction
)_wrap_delete_AuiManager
, METH_O
, NULL
},
16078 { (char *)"AuiManager_UnInit", (PyCFunction
)_wrap_AuiManager_UnInit
, METH_O
, NULL
},
16079 { (char *)"AuiManager_SetFlags", (PyCFunction
) _wrap_AuiManager_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16080 { (char *)"AuiManager_GetFlags", (PyCFunction
)_wrap_AuiManager_GetFlags
, METH_O
, NULL
},
16081 { (char *)"AuiManager_SetManagedWindow", (PyCFunction
) _wrap_AuiManager_SetManagedWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16082 { (char *)"AuiManager_GetManagedWindow", (PyCFunction
)_wrap_AuiManager_GetManagedWindow
, METH_O
, NULL
},
16083 { (char *)"AuiManager_GetManager", (PyCFunction
) _wrap_AuiManager_GetManager
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16084 { (char *)"AuiManager_SetArtProvider", (PyCFunction
) _wrap_AuiManager_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16085 { (char *)"AuiManager_GetArtProvider", (PyCFunction
)_wrap_AuiManager_GetArtProvider
, METH_O
, NULL
},
16086 { (char *)"AuiManager__GetPaneByWidget", (PyCFunction
) _wrap_AuiManager__GetPaneByWidget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16087 { (char *)"AuiManager__GetPaneByName", (PyCFunction
) _wrap_AuiManager__GetPaneByName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16088 { (char *)"AuiManager_GetAllPanes", (PyCFunction
)_wrap_AuiManager_GetAllPanes
, METH_O
, NULL
},
16089 { (char *)"AuiManager__AddPane1", (PyCFunction
) _wrap_AuiManager__AddPane1
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16090 { (char *)"AuiManager_AddPane", (PyCFunction
) _wrap_AuiManager_AddPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16091 { (char *)"AuiManager__AddPane2", (PyCFunction
) _wrap_AuiManager__AddPane2
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16092 { (char *)"AuiManager_InsertPane", (PyCFunction
) _wrap_AuiManager_InsertPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16093 { (char *)"AuiManager_DetachPane", (PyCFunction
) _wrap_AuiManager_DetachPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16094 { (char *)"AuiManager_Update", (PyCFunction
)_wrap_AuiManager_Update
, METH_O
, NULL
},
16095 { (char *)"AuiManager_SavePaneInfo", (PyCFunction
) _wrap_AuiManager_SavePaneInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16096 { (char *)"AuiManager_LoadPaneInfo", (PyCFunction
) _wrap_AuiManager_LoadPaneInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16097 { (char *)"AuiManager_SavePerspective", (PyCFunction
)_wrap_AuiManager_SavePerspective
, METH_O
, NULL
},
16098 { (char *)"AuiManager_LoadPerspective", (PyCFunction
) _wrap_AuiManager_LoadPerspective
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16099 { (char *)"AuiManager_SetDockSizeConstraint", (PyCFunction
) _wrap_AuiManager_SetDockSizeConstraint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16100 { (char *)"AuiManager_GetDockSizeConstraint", (PyCFunction
) _wrap_AuiManager_GetDockSizeConstraint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16101 { (char *)"AuiManager_ClosePane", (PyCFunction
) _wrap_AuiManager_ClosePane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16102 { (char *)"AuiManager_MaximizePane", (PyCFunction
) _wrap_AuiManager_MaximizePane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16103 { (char *)"AuiManager_RestorePane", (PyCFunction
) _wrap_AuiManager_RestorePane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16104 { (char *)"AuiManager_RestoreMaximizedPane", (PyCFunction
)_wrap_AuiManager_RestoreMaximizedPane
, METH_O
, NULL
},
16105 { (char *)"AuiManager_CreateFloatingFrame", (PyCFunction
) _wrap_AuiManager_CreateFloatingFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16106 { (char *)"AuiManager_StartPaneDrag", (PyCFunction
) _wrap_AuiManager_StartPaneDrag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16107 { (char *)"AuiManager_CalculateHintRect", (PyCFunction
) _wrap_AuiManager_CalculateHintRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16108 { (char *)"AuiManager_DrawHintRect", (PyCFunction
) _wrap_AuiManager_DrawHintRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16109 { (char *)"AuiManager_ShowHint", (PyCFunction
) _wrap_AuiManager_ShowHint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16110 { (char *)"AuiManager_HideHint", (PyCFunction
)_wrap_AuiManager_HideHint
, METH_O
, NULL
},
16111 { (char *)"AuiManager_OnRender", (PyCFunction
) _wrap_AuiManager_OnRender
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16112 { (char *)"AuiManager_OnPaneButton", (PyCFunction
) _wrap_AuiManager_OnPaneButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16113 { (char *)"AuiManager_swigregister", AuiManager_swigregister
, METH_VARARGS
, NULL
},
16114 { (char *)"AuiManager_swiginit", AuiManager_swiginit
, METH_VARARGS
, NULL
},
16115 { (char *)"new_AuiManagerEvent", (PyCFunction
) _wrap_new_AuiManagerEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16116 { (char *)"AuiManagerEvent_Clone", (PyCFunction
)_wrap_AuiManagerEvent_Clone
, METH_O
, NULL
},
16117 { (char *)"AuiManagerEvent_SetManager", (PyCFunction
) _wrap_AuiManagerEvent_SetManager
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16118 { (char *)"AuiManagerEvent_SetPane", (PyCFunction
) _wrap_AuiManagerEvent_SetPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16119 { (char *)"AuiManagerEvent_SetButton", (PyCFunction
) _wrap_AuiManagerEvent_SetButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16120 { (char *)"AuiManagerEvent_SetDC", (PyCFunction
) _wrap_AuiManagerEvent_SetDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16121 { (char *)"AuiManagerEvent_GetManager", (PyCFunction
)_wrap_AuiManagerEvent_GetManager
, METH_O
, NULL
},
16122 { (char *)"AuiManagerEvent_GetPane", (PyCFunction
)_wrap_AuiManagerEvent_GetPane
, METH_O
, NULL
},
16123 { (char *)"AuiManagerEvent_GetButton", (PyCFunction
)_wrap_AuiManagerEvent_GetButton
, METH_O
, NULL
},
16124 { (char *)"AuiManagerEvent_GetDC", (PyCFunction
)_wrap_AuiManagerEvent_GetDC
, METH_O
, NULL
},
16125 { (char *)"AuiManagerEvent_Veto", (PyCFunction
) _wrap_AuiManagerEvent_Veto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16126 { (char *)"AuiManagerEvent_GetVeto", (PyCFunction
)_wrap_AuiManagerEvent_GetVeto
, METH_O
, NULL
},
16127 { (char *)"AuiManagerEvent_SetCanVeto", (PyCFunction
) _wrap_AuiManagerEvent_SetCanVeto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16128 { (char *)"AuiManagerEvent_CanVeto", (PyCFunction
)_wrap_AuiManagerEvent_CanVeto
, METH_O
, NULL
},
16129 { (char *)"AuiManagerEvent_manager_set", _wrap_AuiManagerEvent_manager_set
, METH_VARARGS
, NULL
},
16130 { (char *)"AuiManagerEvent_manager_get", (PyCFunction
)_wrap_AuiManagerEvent_manager_get
, METH_O
, NULL
},
16131 { (char *)"AuiManagerEvent_pane_set", _wrap_AuiManagerEvent_pane_set
, METH_VARARGS
, NULL
},
16132 { (char *)"AuiManagerEvent_pane_get", (PyCFunction
)_wrap_AuiManagerEvent_pane_get
, METH_O
, NULL
},
16133 { (char *)"AuiManagerEvent_button_set", _wrap_AuiManagerEvent_button_set
, METH_VARARGS
, NULL
},
16134 { (char *)"AuiManagerEvent_button_get", (PyCFunction
)_wrap_AuiManagerEvent_button_get
, METH_O
, NULL
},
16135 { (char *)"AuiManagerEvent_veto_flag_set", _wrap_AuiManagerEvent_veto_flag_set
, METH_VARARGS
, NULL
},
16136 { (char *)"AuiManagerEvent_veto_flag_get", (PyCFunction
)_wrap_AuiManagerEvent_veto_flag_get
, METH_O
, NULL
},
16137 { (char *)"AuiManagerEvent_canveto_flag_set", _wrap_AuiManagerEvent_canveto_flag_set
, METH_VARARGS
, NULL
},
16138 { (char *)"AuiManagerEvent_canveto_flag_get", (PyCFunction
)_wrap_AuiManagerEvent_canveto_flag_get
, METH_O
, NULL
},
16139 { (char *)"AuiManagerEvent_dc_set", _wrap_AuiManagerEvent_dc_set
, METH_VARARGS
, NULL
},
16140 { (char *)"AuiManagerEvent_dc_get", (PyCFunction
)_wrap_AuiManagerEvent_dc_get
, METH_O
, NULL
},
16141 { (char *)"AuiManagerEvent_swigregister", AuiManagerEvent_swigregister
, METH_VARARGS
, NULL
},
16142 { (char *)"AuiManagerEvent_swiginit", AuiManagerEvent_swiginit
, METH_VARARGS
, NULL
},
16143 { (char *)"new_AuiDockInfo", (PyCFunction
)_wrap_new_AuiDockInfo
, METH_NOARGS
, NULL
},
16144 { (char *)"AuiDockInfo_IsOk", (PyCFunction
)_wrap_AuiDockInfo_IsOk
, METH_O
, NULL
},
16145 { (char *)"AuiDockInfo_IsHorizontal", (PyCFunction
)_wrap_AuiDockInfo_IsHorizontal
, METH_O
, NULL
},
16146 { (char *)"AuiDockInfo_IsVertical", (PyCFunction
)_wrap_AuiDockInfo_IsVertical
, METH_O
, NULL
},
16147 { (char *)"AuiDockInfo_panes_set", _wrap_AuiDockInfo_panes_set
, METH_VARARGS
, NULL
},
16148 { (char *)"AuiDockInfo_panes_get", (PyCFunction
)_wrap_AuiDockInfo_panes_get
, METH_O
, NULL
},
16149 { (char *)"AuiDockInfo_rect_set", _wrap_AuiDockInfo_rect_set
, METH_VARARGS
, NULL
},
16150 { (char *)"AuiDockInfo_rect_get", (PyCFunction
)_wrap_AuiDockInfo_rect_get
, METH_O
, NULL
},
16151 { (char *)"AuiDockInfo_dock_direction_set", _wrap_AuiDockInfo_dock_direction_set
, METH_VARARGS
, NULL
},
16152 { (char *)"AuiDockInfo_dock_direction_get", (PyCFunction
)_wrap_AuiDockInfo_dock_direction_get
, METH_O
, NULL
},
16153 { (char *)"AuiDockInfo_dock_layer_set", _wrap_AuiDockInfo_dock_layer_set
, METH_VARARGS
, NULL
},
16154 { (char *)"AuiDockInfo_dock_layer_get", (PyCFunction
)_wrap_AuiDockInfo_dock_layer_get
, METH_O
, NULL
},
16155 { (char *)"AuiDockInfo_dock_row_set", _wrap_AuiDockInfo_dock_row_set
, METH_VARARGS
, NULL
},
16156 { (char *)"AuiDockInfo_dock_row_get", (PyCFunction
)_wrap_AuiDockInfo_dock_row_get
, METH_O
, NULL
},
16157 { (char *)"AuiDockInfo_size_set", _wrap_AuiDockInfo_size_set
, METH_VARARGS
, NULL
},
16158 { (char *)"AuiDockInfo_size_get", (PyCFunction
)_wrap_AuiDockInfo_size_get
, METH_O
, NULL
},
16159 { (char *)"AuiDockInfo_min_size_set", _wrap_AuiDockInfo_min_size_set
, METH_VARARGS
, NULL
},
16160 { (char *)"AuiDockInfo_min_size_get", (PyCFunction
)_wrap_AuiDockInfo_min_size_get
, METH_O
, NULL
},
16161 { (char *)"AuiDockInfo_resizable_set", _wrap_AuiDockInfo_resizable_set
, METH_VARARGS
, NULL
},
16162 { (char *)"AuiDockInfo_resizable_get", (PyCFunction
)_wrap_AuiDockInfo_resizable_get
, METH_O
, NULL
},
16163 { (char *)"AuiDockInfo_toolbar_set", _wrap_AuiDockInfo_toolbar_set
, METH_VARARGS
, NULL
},
16164 { (char *)"AuiDockInfo_toolbar_get", (PyCFunction
)_wrap_AuiDockInfo_toolbar_get
, METH_O
, NULL
},
16165 { (char *)"AuiDockInfo_fixed_set", _wrap_AuiDockInfo_fixed_set
, METH_VARARGS
, NULL
},
16166 { (char *)"AuiDockInfo_fixed_get", (PyCFunction
)_wrap_AuiDockInfo_fixed_get
, METH_O
, NULL
},
16167 { (char *)"AuiDockInfo_reserved1_set", _wrap_AuiDockInfo_reserved1_set
, METH_VARARGS
, NULL
},
16168 { (char *)"AuiDockInfo_reserved1_get", (PyCFunction
)_wrap_AuiDockInfo_reserved1_get
, METH_O
, NULL
},
16169 { (char *)"delete_AuiDockInfo", (PyCFunction
)_wrap_delete_AuiDockInfo
, METH_O
, NULL
},
16170 { (char *)"AuiDockInfo_swigregister", AuiDockInfo_swigregister
, METH_VARARGS
, NULL
},
16171 { (char *)"AuiDockInfo_swiginit", AuiDockInfo_swiginit
, METH_VARARGS
, NULL
},
16172 { (char *)"AuiDockUIPart_type_set", _wrap_AuiDockUIPart_type_set
, METH_VARARGS
, NULL
},
16173 { (char *)"AuiDockUIPart_type_get", (PyCFunction
)_wrap_AuiDockUIPart_type_get
, METH_O
, NULL
},
16174 { (char *)"AuiDockUIPart_orientation_set", _wrap_AuiDockUIPart_orientation_set
, METH_VARARGS
, NULL
},
16175 { (char *)"AuiDockUIPart_orientation_get", (PyCFunction
)_wrap_AuiDockUIPart_orientation_get
, METH_O
, NULL
},
16176 { (char *)"AuiDockUIPart_dock_set", _wrap_AuiDockUIPart_dock_set
, METH_VARARGS
, NULL
},
16177 { (char *)"AuiDockUIPart_dock_get", (PyCFunction
)_wrap_AuiDockUIPart_dock_get
, METH_O
, NULL
},
16178 { (char *)"AuiDockUIPart_pane_set", _wrap_AuiDockUIPart_pane_set
, METH_VARARGS
, NULL
},
16179 { (char *)"AuiDockUIPart_pane_get", (PyCFunction
)_wrap_AuiDockUIPart_pane_get
, METH_O
, NULL
},
16180 { (char *)"AuiDockUIPart_button_set", _wrap_AuiDockUIPart_button_set
, METH_VARARGS
, NULL
},
16181 { (char *)"AuiDockUIPart_button_get", (PyCFunction
)_wrap_AuiDockUIPart_button_get
, METH_O
, NULL
},
16182 { (char *)"AuiDockUIPart_cont_sizer_set", _wrap_AuiDockUIPart_cont_sizer_set
, METH_VARARGS
, NULL
},
16183 { (char *)"AuiDockUIPart_cont_sizer_get", (PyCFunction
)_wrap_AuiDockUIPart_cont_sizer_get
, METH_O
, NULL
},
16184 { (char *)"AuiDockUIPart_sizer_item_set", _wrap_AuiDockUIPart_sizer_item_set
, METH_VARARGS
, NULL
},
16185 { (char *)"AuiDockUIPart_sizer_item_get", (PyCFunction
)_wrap_AuiDockUIPart_sizer_item_get
, METH_O
, NULL
},
16186 { (char *)"AuiDockUIPart_rect_set", _wrap_AuiDockUIPart_rect_set
, METH_VARARGS
, NULL
},
16187 { (char *)"AuiDockUIPart_rect_get", (PyCFunction
)_wrap_AuiDockUIPart_rect_get
, METH_O
, NULL
},
16188 { (char *)"delete_AuiDockUIPart", (PyCFunction
)_wrap_delete_AuiDockUIPart
, METH_O
, NULL
},
16189 { (char *)"AuiDockUIPart_swigregister", AuiDockUIPart_swigregister
, METH_VARARGS
, NULL
},
16190 { (char *)"AuiPaneButton_button_id_set", _wrap_AuiPaneButton_button_id_set
, METH_VARARGS
, NULL
},
16191 { (char *)"AuiPaneButton_button_id_get", (PyCFunction
)_wrap_AuiPaneButton_button_id_get
, METH_O
, NULL
},
16192 { (char *)"delete_AuiPaneButton", (PyCFunction
)_wrap_delete_AuiPaneButton
, METH_O
, NULL
},
16193 { (char *)"AuiPaneButton_swigregister", AuiPaneButton_swigregister
, METH_VARARGS
, NULL
},
16194 { (char *)"delete_AuiDockArt", (PyCFunction
)_wrap_delete_AuiDockArt
, METH_O
, NULL
},
16195 { (char *)"AuiDockArt_GetMetric", (PyCFunction
) _wrap_AuiDockArt_GetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16196 { (char *)"AuiDockArt_SetMetric", (PyCFunction
) _wrap_AuiDockArt_SetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16197 { (char *)"AuiDockArt_SetFont", (PyCFunction
) _wrap_AuiDockArt_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16198 { (char *)"AuiDockArt_GetFont", (PyCFunction
) _wrap_AuiDockArt_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16199 { (char *)"AuiDockArt_GetColour", (PyCFunction
) _wrap_AuiDockArt_GetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16200 { (char *)"AuiDockArt_SetColour", (PyCFunction
) _wrap_AuiDockArt_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16201 { (char *)"AuiDockArt_GetColor", (PyCFunction
) _wrap_AuiDockArt_GetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16202 { (char *)"AuiDockArt_SetColor", (PyCFunction
) _wrap_AuiDockArt_SetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16203 { (char *)"AuiDockArt_DrawSash", (PyCFunction
) _wrap_AuiDockArt_DrawSash
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16204 { (char *)"AuiDockArt_DrawBackground", (PyCFunction
) _wrap_AuiDockArt_DrawBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16205 { (char *)"AuiDockArt_DrawCaption", (PyCFunction
) _wrap_AuiDockArt_DrawCaption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16206 { (char *)"AuiDockArt_DrawGripper", (PyCFunction
) _wrap_AuiDockArt_DrawGripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16207 { (char *)"AuiDockArt_DrawBorder", (PyCFunction
) _wrap_AuiDockArt_DrawBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16208 { (char *)"AuiDockArt_DrawPaneButton", (PyCFunction
) _wrap_AuiDockArt_DrawPaneButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16209 { (char *)"AuiDockArt_swigregister", AuiDockArt_swigregister
, METH_VARARGS
, NULL
},
16210 { (char *)"new_AuiDefaultDockArt", (PyCFunction
)_wrap_new_AuiDefaultDockArt
, METH_NOARGS
, NULL
},
16211 { (char *)"AuiDefaultDockArt_swigregister", AuiDefaultDockArt_swigregister
, METH_VARARGS
, NULL
},
16212 { (char *)"AuiDefaultDockArt_swiginit", AuiDefaultDockArt_swiginit
, METH_VARARGS
, NULL
},
16213 { (char *)"new_AuiFloatingFrame", (PyCFunction
) _wrap_new_AuiFloatingFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16214 { (char *)"delete_AuiFloatingFrame", (PyCFunction
)_wrap_delete_AuiFloatingFrame
, METH_O
, NULL
},
16215 { (char *)"AuiFloatingFrame_SetPaneWindow", (PyCFunction
) _wrap_AuiFloatingFrame_SetPaneWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16216 { (char *)"AuiFloatingFrame_GetOwnerManager", (PyCFunction
)_wrap_AuiFloatingFrame_GetOwnerManager
, METH_O
, NULL
},
16217 { (char *)"AuiFloatingFrame_swigregister", AuiFloatingFrame_swigregister
, METH_VARARGS
, NULL
},
16218 { (char *)"AuiFloatingFrame_swiginit", AuiFloatingFrame_swiginit
, METH_VARARGS
, NULL
},
16219 { (char *)"new_AuiNotebookEvent", (PyCFunction
) _wrap_new_AuiNotebookEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16220 { (char *)"AuiNotebookEvent_SetSelection", (PyCFunction
) _wrap_AuiNotebookEvent_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16221 { (char *)"AuiNotebookEvent_GetSelection", (PyCFunction
)_wrap_AuiNotebookEvent_GetSelection
, METH_O
, NULL
},
16222 { (char *)"AuiNotebookEvent_SetOldSelection", (PyCFunction
) _wrap_AuiNotebookEvent_SetOldSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16223 { (char *)"AuiNotebookEvent_GetOldSelection", (PyCFunction
)_wrap_AuiNotebookEvent_GetOldSelection
, METH_O
, NULL
},
16224 { (char *)"AuiNotebookEvent_SetDragSource", (PyCFunction
) _wrap_AuiNotebookEvent_SetDragSource
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16225 { (char *)"AuiNotebookEvent_GetDragSource", (PyCFunction
)_wrap_AuiNotebookEvent_GetDragSource
, METH_O
, NULL
},
16226 { (char *)"AuiNotebookEvent_old_selection_set", _wrap_AuiNotebookEvent_old_selection_set
, METH_VARARGS
, NULL
},
16227 { (char *)"AuiNotebookEvent_old_selection_get", (PyCFunction
)_wrap_AuiNotebookEvent_old_selection_get
, METH_O
, NULL
},
16228 { (char *)"AuiNotebookEvent_selection_set", _wrap_AuiNotebookEvent_selection_set
, METH_VARARGS
, NULL
},
16229 { (char *)"AuiNotebookEvent_selection_get", (PyCFunction
)_wrap_AuiNotebookEvent_selection_get
, METH_O
, NULL
},
16230 { (char *)"AuiNotebookEvent_drag_source_set", _wrap_AuiNotebookEvent_drag_source_set
, METH_VARARGS
, NULL
},
16231 { (char *)"AuiNotebookEvent_drag_source_get", (PyCFunction
)_wrap_AuiNotebookEvent_drag_source_get
, METH_O
, NULL
},
16232 { (char *)"AuiNotebookEvent_swigregister", AuiNotebookEvent_swigregister
, METH_VARARGS
, NULL
},
16233 { (char *)"AuiNotebookEvent_swiginit", AuiNotebookEvent_swiginit
, METH_VARARGS
, NULL
},
16234 { (char *)"AuiNotebookPage_window_set", _wrap_AuiNotebookPage_window_set
, METH_VARARGS
, NULL
},
16235 { (char *)"AuiNotebookPage_window_get", (PyCFunction
)_wrap_AuiNotebookPage_window_get
, METH_O
, NULL
},
16236 { (char *)"AuiNotebookPage_caption_set", _wrap_AuiNotebookPage_caption_set
, METH_VARARGS
, NULL
},
16237 { (char *)"AuiNotebookPage_caption_get", (PyCFunction
)_wrap_AuiNotebookPage_caption_get
, METH_O
, NULL
},
16238 { (char *)"AuiNotebookPage_bitmap_set", _wrap_AuiNotebookPage_bitmap_set
, METH_VARARGS
, NULL
},
16239 { (char *)"AuiNotebookPage_bitmap_get", (PyCFunction
)_wrap_AuiNotebookPage_bitmap_get
, METH_O
, NULL
},
16240 { (char *)"AuiNotebookPage_rect_set", _wrap_AuiNotebookPage_rect_set
, METH_VARARGS
, NULL
},
16241 { (char *)"AuiNotebookPage_rect_get", (PyCFunction
)_wrap_AuiNotebookPage_rect_get
, METH_O
, NULL
},
16242 { (char *)"AuiNotebookPage_active_set", _wrap_AuiNotebookPage_active_set
, METH_VARARGS
, NULL
},
16243 { (char *)"AuiNotebookPage_active_get", (PyCFunction
)_wrap_AuiNotebookPage_active_get
, METH_O
, NULL
},
16244 { (char *)"AuiNotebookPage_swigregister", AuiNotebookPage_swigregister
, METH_VARARGS
, NULL
},
16245 { (char *)"AuiTabContainerButton_id_set", _wrap_AuiTabContainerButton_id_set
, METH_VARARGS
, NULL
},
16246 { (char *)"AuiTabContainerButton_id_get", (PyCFunction
)_wrap_AuiTabContainerButton_id_get
, METH_O
, NULL
},
16247 { (char *)"AuiTabContainerButton_cur_state_set", _wrap_AuiTabContainerButton_cur_state_set
, METH_VARARGS
, NULL
},
16248 { (char *)"AuiTabContainerButton_cur_state_get", (PyCFunction
)_wrap_AuiTabContainerButton_cur_state_get
, METH_O
, NULL
},
16249 { (char *)"AuiTabContainerButton_location_set", _wrap_AuiTabContainerButton_location_set
, METH_VARARGS
, NULL
},
16250 { (char *)"AuiTabContainerButton_location_get", (PyCFunction
)_wrap_AuiTabContainerButton_location_get
, METH_O
, NULL
},
16251 { (char *)"AuiTabContainerButton_bitmap_set", _wrap_AuiTabContainerButton_bitmap_set
, METH_VARARGS
, NULL
},
16252 { (char *)"AuiTabContainerButton_bitmap_get", (PyCFunction
)_wrap_AuiTabContainerButton_bitmap_get
, METH_O
, NULL
},
16253 { (char *)"AuiTabContainerButton_dis_bitmap_set", _wrap_AuiTabContainerButton_dis_bitmap_set
, METH_VARARGS
, NULL
},
16254 { (char *)"AuiTabContainerButton_dis_bitmap_get", (PyCFunction
)_wrap_AuiTabContainerButton_dis_bitmap_get
, METH_O
, NULL
},
16255 { (char *)"AuiTabContainerButton_rect_set", _wrap_AuiTabContainerButton_rect_set
, METH_VARARGS
, NULL
},
16256 { (char *)"AuiTabContainerButton_rect_get", (PyCFunction
)_wrap_AuiTabContainerButton_rect_get
, METH_O
, NULL
},
16257 { (char *)"AuiTabContainerButton_swigregister", AuiTabContainerButton_swigregister
, METH_VARARGS
, NULL
},
16258 { (char *)"delete_AuiTabArt", (PyCFunction
)_wrap_delete_AuiTabArt
, METH_O
, NULL
},
16259 { (char *)"AuiTabArt_Clone", (PyCFunction
)_wrap_AuiTabArt_Clone
, METH_O
, NULL
},
16260 { (char *)"AuiTabArt_SetFlags", (PyCFunction
) _wrap_AuiTabArt_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16261 { (char *)"AuiTabArt_SetSizingInfo", (PyCFunction
) _wrap_AuiTabArt_SetSizingInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16262 { (char *)"AuiTabArt_SetNormalFont", (PyCFunction
) _wrap_AuiTabArt_SetNormalFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16263 { (char *)"AuiTabArt_SetSelectedFont", (PyCFunction
) _wrap_AuiTabArt_SetSelectedFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16264 { (char *)"AuiTabArt_SetMeasuringFont", (PyCFunction
) _wrap_AuiTabArt_SetMeasuringFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16265 { (char *)"AuiTabArt_DrawBackground", (PyCFunction
) _wrap_AuiTabArt_DrawBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16266 { (char *)"AuiTabArt_DrawTab", (PyCFunction
) _wrap_AuiTabArt_DrawTab
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16267 { (char *)"AuiTabArt_DrawButton", (PyCFunction
) _wrap_AuiTabArt_DrawButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16268 { (char *)"AuiTabArt_GetIndentSize", (PyCFunction
)_wrap_AuiTabArt_GetIndentSize
, METH_O
, NULL
},
16269 { (char *)"AuiTabArt_GetTabSize", (PyCFunction
) _wrap_AuiTabArt_GetTabSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16270 { (char *)"AuiTabArt_ShowWindowList", (PyCFunction
) _wrap_AuiTabArt_ShowWindowList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16271 { (char *)"AuiTabArt_GetBestTabCtrlSize", (PyCFunction
) _wrap_AuiTabArt_GetBestTabCtrlSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16272 { (char *)"AuiTabArt_swigregister", AuiTabArt_swigregister
, METH_VARARGS
, NULL
},
16273 { (char *)"new_AuiDefaultTabArt", (PyCFunction
)_wrap_new_AuiDefaultTabArt
, METH_NOARGS
, NULL
},
16274 { (char *)"delete_AuiDefaultTabArt", (PyCFunction
)_wrap_delete_AuiDefaultTabArt
, METH_O
, NULL
},
16275 { (char *)"AuiDefaultTabArt_swigregister", AuiDefaultTabArt_swigregister
, METH_VARARGS
, NULL
},
16276 { (char *)"AuiDefaultTabArt_swiginit", AuiDefaultTabArt_swiginit
, METH_VARARGS
, NULL
},
16277 { (char *)"new_AuiSimpleTabArt", (PyCFunction
)_wrap_new_AuiSimpleTabArt
, METH_NOARGS
, NULL
},
16278 { (char *)"delete_AuiSimpleTabArt", (PyCFunction
)_wrap_delete_AuiSimpleTabArt
, METH_O
, NULL
},
16279 { (char *)"AuiSimpleTabArt_swigregister", AuiSimpleTabArt_swigregister
, METH_VARARGS
, NULL
},
16280 { (char *)"AuiSimpleTabArt_swiginit", AuiSimpleTabArt_swiginit
, METH_VARARGS
, NULL
},
16281 { (char *)"new_AuiTabContainer", (PyCFunction
)_wrap_new_AuiTabContainer
, METH_NOARGS
, NULL
},
16282 { (char *)"delete_AuiTabContainer", (PyCFunction
)_wrap_delete_AuiTabContainer
, METH_O
, NULL
},
16283 { (char *)"AuiTabContainer_SetArtProvider", (PyCFunction
) _wrap_AuiTabContainer_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16284 { (char *)"AuiTabContainer_GetArtProvider", (PyCFunction
)_wrap_AuiTabContainer_GetArtProvider
, METH_O
, NULL
},
16285 { (char *)"AuiTabContainer_SetFlags", (PyCFunction
) _wrap_AuiTabContainer_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16286 { (char *)"AuiTabContainer_GetFlags", (PyCFunction
)_wrap_AuiTabContainer_GetFlags
, METH_O
, NULL
},
16287 { (char *)"AuiTabContainer_AddPage", (PyCFunction
) _wrap_AuiTabContainer_AddPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16288 { (char *)"AuiTabContainer_InsertPage", (PyCFunction
) _wrap_AuiTabContainer_InsertPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16289 { (char *)"AuiTabContainer_MovePage", (PyCFunction
) _wrap_AuiTabContainer_MovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16290 { (char *)"AuiTabContainer_RemovePage", (PyCFunction
) _wrap_AuiTabContainer_RemovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16291 { (char *)"AuiTabContainer_SetActivePage", _wrap_AuiTabContainer_SetActivePage
, METH_VARARGS
, NULL
},
16292 { (char *)"AuiTabContainer_SetNoneActive", (PyCFunction
)_wrap_AuiTabContainer_SetNoneActive
, METH_O
, NULL
},
16293 { (char *)"AuiTabContainer_GetActivePage", (PyCFunction
)_wrap_AuiTabContainer_GetActivePage
, METH_O
, NULL
},
16294 { (char *)"AuiTabContainer_TabHitTest", (PyCFunction
) _wrap_AuiTabContainer_TabHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16295 { (char *)"AuiTabContainer_ButtonHitTest", (PyCFunction
) _wrap_AuiTabContainer_ButtonHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16296 { (char *)"AuiTabContainer_GetWindowFromIdx", (PyCFunction
) _wrap_AuiTabContainer_GetWindowFromIdx
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16297 { (char *)"AuiTabContainer_GetIdxFromWindow", (PyCFunction
) _wrap_AuiTabContainer_GetIdxFromWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16298 { (char *)"AuiTabContainer_GetPageCount", (PyCFunction
)_wrap_AuiTabContainer_GetPageCount
, METH_O
, NULL
},
16299 { (char *)"AuiTabContainer_GetPage", (PyCFunction
) _wrap_AuiTabContainer_GetPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16300 { (char *)"AuiTabContainer_GetPages", (PyCFunction
)_wrap_AuiTabContainer_GetPages
, METH_O
, NULL
},
16301 { (char *)"AuiTabContainer_SetNormalFont", (PyCFunction
) _wrap_AuiTabContainer_SetNormalFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16302 { (char *)"AuiTabContainer_SetSelectedFont", (PyCFunction
) _wrap_AuiTabContainer_SetSelectedFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16303 { (char *)"AuiTabContainer_SetMeasuringFont", (PyCFunction
) _wrap_AuiTabContainer_SetMeasuringFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16304 { (char *)"AuiTabContainer_DoShowHide", (PyCFunction
)_wrap_AuiTabContainer_DoShowHide
, METH_O
, NULL
},
16305 { (char *)"AuiTabContainer_SetRect", (PyCFunction
) _wrap_AuiTabContainer_SetRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16306 { (char *)"AuiTabContainer_RemoveButton", (PyCFunction
) _wrap_AuiTabContainer_RemoveButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16307 { (char *)"AuiTabContainer_AddButton", (PyCFunction
) _wrap_AuiTabContainer_AddButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16308 { (char *)"AuiTabContainer_GetTabOffset", (PyCFunction
)_wrap_AuiTabContainer_GetTabOffset
, METH_O
, NULL
},
16309 { (char *)"AuiTabContainer_SetTabOffset", (PyCFunction
) _wrap_AuiTabContainer_SetTabOffset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16310 { (char *)"AuiTabContainer_swigregister", AuiTabContainer_swigregister
, METH_VARARGS
, NULL
},
16311 { (char *)"AuiTabContainer_swiginit", AuiTabContainer_swiginit
, METH_VARARGS
, NULL
},
16312 { (char *)"new_AuiTabCtrl", (PyCFunction
) _wrap_new_AuiTabCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16313 { (char *)"delete_AuiTabCtrl", (PyCFunction
)_wrap_delete_AuiTabCtrl
, METH_O
, NULL
},
16314 { (char *)"AuiTabCtrl_swigregister", AuiTabCtrl_swigregister
, METH_VARARGS
, NULL
},
16315 { (char *)"AuiTabCtrl_swiginit", AuiTabCtrl_swiginit
, METH_VARARGS
, NULL
},
16316 { (char *)"new_PreAuiNotebook", (PyCFunction
)_wrap_new_PreAuiNotebook
, METH_NOARGS
, NULL
},
16317 { (char *)"new_AuiNotebook", (PyCFunction
) _wrap_new_AuiNotebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16318 { (char *)"delete_AuiNotebook", (PyCFunction
)_wrap_delete_AuiNotebook
, METH_O
, NULL
},
16319 { (char *)"AuiNotebook_Create", (PyCFunction
) _wrap_AuiNotebook_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16320 { (char *)"AuiNotebook_AddPage", (PyCFunction
) _wrap_AuiNotebook_AddPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16321 { (char *)"AuiNotebook_InsertPage", (PyCFunction
) _wrap_AuiNotebook_InsertPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16322 { (char *)"AuiNotebook_DeletePage", (PyCFunction
) _wrap_AuiNotebook_DeletePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16323 { (char *)"AuiNotebook_RemovePage", (PyCFunction
) _wrap_AuiNotebook_RemovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16324 { (char *)"AuiNotebook_SetPageText", (PyCFunction
) _wrap_AuiNotebook_SetPageText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16325 { (char *)"AuiNotebook_SetPageBitmap", (PyCFunction
) _wrap_AuiNotebook_SetPageBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16326 { (char *)"AuiNotebook_SetSelection", (PyCFunction
) _wrap_AuiNotebook_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16327 { (char *)"AuiNotebook_GetSelection", (PyCFunction
)_wrap_AuiNotebook_GetSelection
, METH_O
, NULL
},
16328 { (char *)"AuiNotebook_GetPageCount", (PyCFunction
)_wrap_AuiNotebook_GetPageCount
, METH_O
, NULL
},
16329 { (char *)"AuiNotebook_GetPage", (PyCFunction
) _wrap_AuiNotebook_GetPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16330 { (char *)"AuiNotebook_GetPageIndex", (PyCFunction
) _wrap_AuiNotebook_GetPageIndex
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16331 { (char *)"AuiNotebook_SetArtProvider", (PyCFunction
) _wrap_AuiNotebook_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16332 { (char *)"AuiNotebook_GetArtProvider", (PyCFunction
)_wrap_AuiNotebook_GetArtProvider
, METH_O
, NULL
},
16333 { (char *)"AuiNotebook_SetUniformBitmapSize", (PyCFunction
) _wrap_AuiNotebook_SetUniformBitmapSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16334 { (char *)"AuiNotebook_SetTabCtrlHeight", (PyCFunction
) _wrap_AuiNotebook_SetTabCtrlHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16335 { (char *)"AuiNotebook_swigregister", AuiNotebook_swigregister
, METH_VARARGS
, NULL
},
16336 { (char *)"AuiNotebook_swiginit", AuiNotebook_swiginit
, METH_VARARGS
, NULL
},
16337 { (char *)"PyAuiDockArt_swigregister", PyAuiDockArt_swigregister
, METH_VARARGS
, NULL
},
16338 { (char *)"PyAuiTabArt_swigregister", PyAuiTabArt_swigregister
, METH_VARARGS
, NULL
},
16339 { NULL
, NULL
, 0, NULL
}
16343 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
16345 static void *_p_wxAuiFloatingFrameTo_p_wxMiniFrame(void *x
) {
16346 return (void *)((wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
16348 static void *_p_wxBoxSizerTo_p_wxSizer(void *x
) {
16349 return (void *)((wxSizer
*) ((wxBoxSizer
*) x
));
16351 static void *_p_wxStaticBoxSizerTo_p_wxSizer(void *x
) {
16352 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
16354 static void *_p_wxStdDialogButtonSizerTo_p_wxSizer(void *x
) {
16355 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
16357 static void *_p_wxGridBagSizerTo_p_wxSizer(void *x
) {
16358 return (void *)((wxSizer
*) (wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
16360 static void *_p_wxGridSizerTo_p_wxSizer(void *x
) {
16361 return (void *)((wxSizer
*) ((wxGridSizer
*) x
));
16363 static void *_p_wxFlexGridSizerTo_p_wxSizer(void *x
) {
16364 return (void *)((wxSizer
*) (wxGridSizer
*) ((wxFlexGridSizer
*) x
));
16366 static void *_p_wxPySizerTo_p_wxSizer(void *x
) {
16367 return (void *)((wxSizer
*) ((wxPySizer
*) x
));
16369 static void *_p_wxAuiDefaultTabArtTo_p_wxAuiTabArt(void *x
) {
16370 return (void *)((wxAuiTabArt
*) ((wxAuiDefaultTabArt
*) x
));
16372 static void *_p_wxAuiSimpleTabArtTo_p_wxAuiTabArt(void *x
) {
16373 return (void *)((wxAuiTabArt
*) ((wxAuiSimpleTabArt
*) x
));
16375 static void *_p_wxPyAuiTabArtTo_p_wxAuiTabArt(void *x
) {
16376 return (void *)((wxAuiTabArt
*) (wxAuiDefaultTabArt
*) ((wxPyAuiTabArt
*) x
));
16378 static void *_p_wxSplitterEventTo_p_wxNotifyEvent(void *x
) {
16379 return (void *)((wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
16381 static void *_p_wxAuiNotebookEventTo_p_wxNotifyEvent(void *x
) {
16382 return (void *)((wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
16384 static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x
) {
16385 return (void *)((wxTopLevelWindow
*) ((wxFrame
*) x
));
16387 static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x
) {
16388 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMiniFrame
*) x
));
16390 static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x
) {
16391 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFontDialog
*) x
));
16393 static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x
) {
16394 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxDirDialog
*) x
));
16396 static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x
) {
16397 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxColourDialog
*) x
));
16399 static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x
) {
16400 return (void *)((wxTopLevelWindow
*) ((wxDialog
*) x
));
16402 static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x
) {
16403 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxSplashScreen
*) x
));
16405 static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x
) {
16406 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIParentFrame
*) x
));
16408 static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x
) {
16409 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIChildFrame
*) x
));
16411 static void *_p_wxAuiFloatingFrameTo_p_wxTopLevelWindow(void *x
) {
16412 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
16414 static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x
) {
16415 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMessageDialog
*) x
));
16417 static void *_p_wxNumberEntryDialogTo_p_wxTopLevelWindow(void *x
) {
16418 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxNumberEntryDialog
*) x
));
16420 static void *_p_wxPasswordEntryDialogTo_p_wxTopLevelWindow(void *x
) {
16421 return (void *)((wxTopLevelWindow
*) (wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
16423 static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x
) {
16424 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxTextEntryDialog
*) x
));
16426 static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
16427 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxSingleChoiceDialog
*) x
));
16429 static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
16430 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMultiChoiceDialog
*) x
));
16432 static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x
) {
16433 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFileDialog
*) x
));
16435 static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x
) {
16436 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxProgressDialog
*) x
));
16438 static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x
) {
16439 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFindReplaceDialog
*) x
));
16441 static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
16442 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxPreviewFrame
*) x
));
16444 static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
16445 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
16447 static void *_p_wxSplashScreenTo_p_wxWindow(void *x
) {
16448 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
16450 static void *_p_wxMiniFrameTo_p_wxWindow(void *x
) {
16451 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
16453 static void *_p_wxPyPanelTo_p_wxWindow(void *x
) {
16454 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyPanel
*) x
));
16456 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
16457 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
16459 static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x
) {
16460 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
16462 static void *_p_wxProgressDialogTo_p_wxWindow(void *x
) {
16463 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
16465 static void *_p_wxMessageDialogTo_p_wxWindow(void *x
) {
16466 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
16468 static void *_p_wxNumberEntryDialogTo_p_wxWindow(void *x
) {
16469 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
16471 static void *_p_wxPasswordEntryDialogTo_p_wxWindow(void *x
) {
16472 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
16474 static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x
) {
16475 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
16477 static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x
) {
16478 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
16480 static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x
) {
16481 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
16483 static void *_p_wxFileDialogTo_p_wxWindow(void *x
) {
16484 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
16486 static void *_p_wxPanelTo_p_wxWindow(void *x
) {
16487 return (void *)((wxWindow
*) ((wxPanel
*) x
));
16489 static void *_p_wxStatusBarTo_p_wxWindow(void *x
) {
16490 return (void *)((wxWindow
*) ((wxStatusBar
*) x
));
16492 static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x
) {
16493 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyVScrolledWindow
*) x
));
16495 static void *_p_wxTipWindowTo_p_wxWindow(void *x
) {
16496 return (void *)((wxWindow
*) (wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
16498 static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x
) {
16499 return (void *)((wxWindow
*) (wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
16501 static void *_p_wxPopupWindowTo_p_wxWindow(void *x
) {
16502 return (void *)((wxWindow
*) ((wxPopupWindow
*) x
));
16504 static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x
) {
16505 return (void *)((wxWindow
*) (wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
16507 static void *_p_wxScrolledWindowTo_p_wxWindow(void *x
) {
16508 return (void *)((wxWindow
*) (wxPanel
*) ((wxScrolledWindow
*) x
));
16510 static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x
) {
16511 return (void *)((wxWindow
*) ((wxTopLevelWindow
*) x
));
16513 static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x
) {
16514 return (void *)((wxWindow
*) ((wxSplashScreenWindow
*) x
));
16516 static void *_p_wxSplitterWindowTo_p_wxWindow(void *x
) {
16517 return (void *)((wxWindow
*) ((wxSplitterWindow
*) x
));
16519 static void *_p_wxSashWindowTo_p_wxWindow(void *x
) {
16520 return (void *)((wxWindow
*) ((wxSashWindow
*) x
));
16522 static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x
) {
16523 return (void *)((wxWindow
*) ((wxMDIClientWindow
*) x
));
16525 static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x
) {
16526 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
16528 static void *_p_wxControlTo_p_wxWindow(void *x
) {
16529 return (void *)((wxWindow
*) ((wxControl
*) x
));
16531 static void *_p_wxPreviewFrameTo_p_wxWindow(void *x
) {
16532 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
16534 static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x
) {
16535 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
16537 static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x
) {
16538 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
16540 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
16541 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
16543 static void *_p_wxPyWindowTo_p_wxWindow(void *x
) {
16544 return (void *)((wxWindow
*) ((wxPyWindow
*) x
));
16546 static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x
) {
16547 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
16549 static void *_p_wxSimpleHtmlListBoxTo_p_wxWindow(void *x
) {
16550 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*)(wxPyHtmlListBox
*) ((wxSimpleHtmlListBox
*) x
));
16552 static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x
) {
16553 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
16555 static void *_p_wxPyVListBoxTo_p_wxWindow(void *x
) {
16556 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
16558 static void *_p_wxAuiNotebookTo_p_wxWindow(void *x
) {
16559 return (void *)((wxWindow
*) (wxControl
*) ((wxAuiNotebook
*) x
));
16561 static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x
) {
16562 return (void *)((wxWindow
*) (wxPanel
*) ((wxPreviewControlBar
*) x
));
16564 static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x
) {
16565 return (void *)((wxWindow
*) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
16567 static void *_p_wxAuiTabCtrlTo_p_wxWindow(void *x
) {
16568 return (void *)((wxWindow
*) (wxControl
*) ((wxAuiTabCtrl
*) x
));
16570 static void *_p_wxFrameTo_p_wxWindow(void *x
) {
16571 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxFrame
*) x
));
16573 static void *_p_wxFontDialogTo_p_wxWindow(void *x
) {
16574 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
16576 static void *_p_wxDirDialogTo_p_wxWindow(void *x
) {
16577 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
16579 static void *_p_wxColourDialogTo_p_wxWindow(void *x
) {
16580 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
16582 static void *_p_wxDialogTo_p_wxWindow(void *x
) {
16583 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxDialog
*) x
));
16585 static void *_p_wxAuiFloatingFrameTo_p_wxWindow(void *x
) {
16586 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
16588 static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x
) {
16589 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
16591 static void *_p_p_wxSplashScreenTo_p_p_wxWindow(void *x
) {
16592 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
**) x
));
16594 static void *_p_p_wxMiniFrameTo_p_p_wxWindow(void *x
) {
16595 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
**) x
));
16597 static void *_p_p_wxPyPanelTo_p_p_wxWindow(void *x
) {
16598 return (void *)((wxWindow
**) (wxPanel
*) ((wxPyPanel
**) x
));
16600 static void *_p_p_wxMenuBarTo_p_p_wxWindow(void *x
) {
16601 return (void *)((wxWindow
**) ((wxMenuBar
**) x
));
16603 static void *_p_p_wxFindReplaceDialogTo_p_p_wxWindow(void *x
) {
16604 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
**) x
));
16606 static void *_p_p_wxProgressDialogTo_p_p_wxWindow(void *x
) {
16607 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
**) x
));
16609 static void *_p_p_wxMessageDialogTo_p_p_wxWindow(void *x
) {
16610 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
**) x
));
16612 static void *_p_p_wxNumberEntryDialogTo_p_p_wxWindow(void *x
) {
16613 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
**) x
));
16615 static void *_p_p_wxPasswordEntryDialogTo_p_p_wxWindow(void *x
) {
16616 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
**) x
));
16618 static void *_p_p_wxTextEntryDialogTo_p_p_wxWindow(void *x
) {
16619 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
**) x
));
16621 static void *_p_p_wxSingleChoiceDialogTo_p_p_wxWindow(void *x
) {
16622 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
**) x
));
16624 static void *_p_p_wxMultiChoiceDialogTo_p_p_wxWindow(void *x
) {
16625 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
**) x
));
16627 static void *_p_p_wxFileDialogTo_p_p_wxWindow(void *x
) {
16628 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
**) x
));
16630 static void *_p_p_wxPanelTo_p_p_wxWindow(void *x
) {
16631 return (void *)((wxWindow
**) ((wxPanel
**) x
));
16633 static void *_p_p_wxStatusBarTo_p_p_wxWindow(void *x
) {
16634 return (void *)((wxWindow
**) ((wxStatusBar
**) x
));
16636 static void *_p_p_wxPyVScrolledWindowTo_p_p_wxWindow(void *x
) {
16637 return (void *)((wxWindow
**) (wxPanel
*) ((wxPyVScrolledWindow
**) x
));
16639 static void *_p_p_wxTipWindowTo_p_p_wxWindow(void *x
) {
16640 return (void *)((wxWindow
**) (wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
**) x
));
16642 static void *_p_p_wxPyPopupTransientWindowTo_p_p_wxWindow(void *x
) {
16643 return (void *)((wxWindow
**) (wxPopupWindow
*) ((wxPyPopupTransientWindow
**) x
));
16645 static void *_p_p_wxPopupWindowTo_p_p_wxWindow(void *x
) {
16646 return (void *)((wxWindow
**) ((wxPopupWindow
**) x
));
16648 static void *_p_p_wxSashLayoutWindowTo_p_p_wxWindow(void *x
) {
16649 return (void *)((wxWindow
**) (wxSashWindow
*) ((wxSashLayoutWindow
**) x
));
16651 static void *_p_p_wxScrolledWindowTo_p_p_wxWindow(void *x
) {
16652 return (void *)((wxWindow
**) (wxPanel
*) ((wxScrolledWindow
**) x
));
16654 static void *_p_p_wxTopLevelWindowTo_p_p_wxWindow(void *x
) {
16655 return (void *)((wxWindow
**) ((wxTopLevelWindow
**) x
));
16657 static void *_p_p_wxSplashScreenWindowTo_p_p_wxWindow(void *x
) {
16658 return (void *)((wxWindow
**) ((wxSplashScreenWindow
**) x
));
16660 static void *_p_p_wxSplitterWindowTo_p_p_wxWindow(void *x
) {
16661 return (void *)((wxWindow
**) ((wxSplitterWindow
**) x
));
16663 static void *_p_p_wxSashWindowTo_p_p_wxWindow(void *x
) {
16664 return (void *)((wxWindow
**) ((wxSashWindow
**) x
));
16666 static void *_p_p_wxMDIClientWindowTo_p_p_wxWindow(void *x
) {
16667 return (void *)((wxWindow
**) ((wxMDIClientWindow
**) x
));
16669 static void *_p_p_wxPyScrolledWindowTo_p_p_wxWindow(void *x
) {
16670 return (void *)((wxWindow
**) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
**) x
));
16672 static void *_p_p_wxControlTo_p_p_wxWindow(void *x
) {
16673 return (void *)((wxWindow
**) ((wxControl
**) x
));
16675 static void *_p_p_wxPreviewFrameTo_p_p_wxWindow(void *x
) {
16676 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
**) x
));
16678 static void *_p_p_wxPyPreviewFrameTo_p_p_wxWindow(void *x
) {
16679 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
**) x
));
16681 static void *_p_p_wxMDIChildFrameTo_p_p_wxWindow(void *x
) {
16682 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
**) x
));
16684 static void *_p_p_wxControlWithItemsTo_p_p_wxWindow(void *x
) {
16685 return (void *)((wxWindow
**) (wxControl
*) ((wxControlWithItems
**) x
));
16687 static void *_p_p_wxPyWindowTo_p_p_wxWindow(void *x
) {
16688 return (void *)((wxWindow
**) ((wxPyWindow
**) x
));
16690 static void *_p_p_wxPreviewCanvasTo_p_p_wxWindow(void *x
) {
16691 return (void *)((wxWindow
**) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
**) x
));
16693 static void *_p_p_wxSimpleHtmlListBoxTo_p_p_wxWindow(void *x
) {
16694 return (void *)((wxWindow
**) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*)(wxPyHtmlListBox
*) ((wxSimpleHtmlListBox
**) x
));
16696 static void *_p_p_wxPyHtmlListBoxTo_p_p_wxWindow(void *x
) {
16697 return (void *)((wxWindow
**) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
**) x
));
16699 static void *_p_p_wxPyVListBoxTo_p_p_wxWindow(void *x
) {
16700 return (void *)((wxWindow
**) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
**) x
));
16702 static void *_p_p_wxAuiNotebookTo_p_p_wxWindow(void *x
) {
16703 return (void *)((wxWindow
**) (wxControl
*) ((wxAuiNotebook
**) x
));
16705 static void *_p_p_wxPreviewControlBarTo_p_p_wxWindow(void *x
) {
16706 return (void *)((wxWindow
**) (wxPanel
*) ((wxPreviewControlBar
**) x
));
16708 static void *_p_p_wxPyPreviewControlBarTo_p_p_wxWindow(void *x
) {
16709 return (void *)((wxWindow
**) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
**) x
));
16711 static void *_p_p_wxAuiTabCtrlTo_p_p_wxWindow(void *x
) {
16712 return (void *)((wxWindow
**) (wxControl
*) ((wxAuiTabCtrl
**) x
));
16714 static void *_p_p_wxFrameTo_p_p_wxWindow(void *x
) {
16715 return (void *)((wxWindow
**) (wxTopLevelWindow
*) ((wxFrame
**) x
));
16717 static void *_p_p_wxFontDialogTo_p_p_wxWindow(void *x
) {
16718 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
**) x
));
16720 static void *_p_p_wxDirDialogTo_p_p_wxWindow(void *x
) {
16721 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
**) x
));
16723 static void *_p_p_wxColourDialogTo_p_p_wxWindow(void *x
) {
16724 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
**) x
));
16726 static void *_p_p_wxDialogTo_p_p_wxWindow(void *x
) {
16727 return (void *)((wxWindow
**) (wxTopLevelWindow
*) ((wxDialog
**) x
));
16729 static void *_p_p_wxAuiFloatingFrameTo_p_p_wxWindow(void *x
) {
16730 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
**) x
));
16732 static void *_p_p_wxMDIParentFrameTo_p_p_wxWindow(void *x
) {
16733 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
**) x
));
16735 static void *_p_wxControlWithItemsTo_p_wxControl(void *x
) {
16736 return (void *)((wxControl
*) ((wxControlWithItems
*) x
));
16738 static void *_p_wxAuiTabCtrlTo_p_wxControl(void *x
) {
16739 return (void *)((wxControl
*) ((wxAuiTabCtrl
*) x
));
16741 static void *_p_wxAuiNotebookTo_p_wxControl(void *x
) {
16742 return (void *)((wxControl
*) ((wxAuiNotebook
*) x
));
16744 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
16745 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
16747 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
16748 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
16750 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
16751 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
16753 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
16754 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
16756 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
16757 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
16759 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
16760 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
16762 static void *_p_wxSplitterEventTo_p_wxEvent(void *x
) {
16763 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
16765 static void *_p_wxAuiManagerEventTo_p_wxEvent(void *x
) {
16766 return (void *)((wxEvent
*) ((wxAuiManagerEvent
*) x
));
16768 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
16769 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
16771 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
16772 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
16774 static void *_p_wxFindDialogEventTo_p_wxEvent(void *x
) {
16775 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
16777 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
16778 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
16780 static void *_p_wxMouseCaptureLostEventTo_p_wxEvent(void *x
) {
16781 return (void *)((wxEvent
*) ((wxMouseCaptureLostEvent
*) x
));
16783 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
16784 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
16786 static void *_p_wxCalculateLayoutEventTo_p_wxEvent(void *x
) {
16787 return (void *)((wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
16789 static void *_p_wxAuiNotebookEventTo_p_wxEvent(void *x
) {
16790 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
16792 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
16793 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
16795 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
16796 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
16798 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
16799 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
16801 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
16802 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
16804 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
16805 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
16807 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
16808 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
16810 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
16811 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
16813 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
16814 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
16816 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
16817 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
16819 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
16820 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
16822 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
16823 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
16825 static void *_p_wxClipboardTextEventTo_p_wxEvent(void *x
) {
16826 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
16828 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
16829 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
16831 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
16832 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
16834 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
16835 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
16837 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
16838 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
16840 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
16841 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
16843 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
16844 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
16846 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
16847 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
16849 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
16850 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
16852 static void *_p_wxSashEventTo_p_wxEvent(void *x
) {
16853 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxSashEvent
*) x
));
16855 static void *_p_wxQueryLayoutInfoEventTo_p_wxEvent(void *x
) {
16856 return (void *)((wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
16858 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
16859 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
16861 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
16862 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
16864 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
16865 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
16867 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
16868 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
16870 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
16871 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
16873 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
16874 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
16876 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
16877 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
16879 static void *_p_wxTaskBarIconEventTo_p_wxEvent(void *x
) {
16880 return (void *)((wxEvent
*) ((wxTaskBarIconEvent
*) x
));
16882 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
16883 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
16885 static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x
) {
16886 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
16888 static void *_p_wxPreviewFrameTo_p_wxObject(void *x
) {
16889 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
16891 static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x
) {
16892 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
16894 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
16895 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
16897 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
16898 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
16900 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
16901 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
16903 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
16904 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
16906 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
16907 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
16909 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
16910 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
16912 static void *_p_wxSizerTo_p_wxObject(void *x
) {
16913 return (void *)((wxObject
*) ((wxSizer
*) x
));
16915 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
16916 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
16918 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
16919 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
16921 static void *_p_wxPyPanelTo_p_wxObject(void *x
) {
16922 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
16924 static void *_p_wxEventTo_p_wxObject(void *x
) {
16925 return (void *)((wxObject
*) ((wxEvent
*) x
));
16927 static void *_p_wxFontDataTo_p_wxObject(void *x
) {
16928 return (void *)((wxObject
*) ((wxFontData
*) x
));
16930 static void *_p_wxPrintDataTo_p_wxObject(void *x
) {
16931 return (void *)((wxObject
*) ((wxPrintData
*) x
));
16933 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
16934 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
16936 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
16937 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
16939 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
16940 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
16942 static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x
) {
16943 return (void *)((wxObject
*) ((wxLayoutAlgorithm
*) x
));
16945 static void *_p_wxPyTaskBarIconTo_p_wxObject(void *x
) {
16946 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
16948 static void *_p_wxFindDialogEventTo_p_wxObject(void *x
) {
16949 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
16951 static void *_p_wxAuiTabCtrlTo_p_wxObject(void *x
) {
16952 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxAuiTabCtrl
*) x
));
16954 static void *_p_wxClipboardTextEventTo_p_wxObject(void *x
) {
16955 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
16957 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
16958 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
16960 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
16961 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
16963 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
16964 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
16966 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
16967 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
16969 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
16970 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
16972 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
16973 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
16975 static void *_p_wxPreviewCanvasTo_p_wxObject(void *x
) {
16976 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
16978 static void *_p_wxControlTo_p_wxObject(void *x
) {
16979 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
16981 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
16982 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
16984 static void *_p_wxSplitterEventTo_p_wxObject(void *x
) {
16985 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
16987 static void *_p_wxAuiManagerEventTo_p_wxObject(void *x
) {
16988 return (void *)((wxObject
*) (wxEvent
*) ((wxAuiManagerEvent
*) x
));
16990 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
16991 return (void *)((wxObject
*) ((wxFSFile
*) x
));
16993 static void *_p_wxFindReplaceDataTo_p_wxObject(void *x
) {
16994 return (void *)((wxObject
*) ((wxFindReplaceData
*) x
));
16996 static void *_p_wxAuiFloatingFrameTo_p_wxObject(void *x
) {
16997 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
16999 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
17000 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
17002 static void *_p_wxMDIChildFrameTo_p_wxObject(void *x
) {
17003 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
17005 static void *_p_wxAuiNotebookTo_p_wxObject(void *x
) {
17006 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxAuiNotebook
*) x
));
17008 static void *_p_wxColourDataTo_p_wxObject(void *x
) {
17009 return (void *)((wxObject
*) ((wxColourData
*) x
));
17011 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
17012 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
17014 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
17015 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
17017 static void *_p_wxPyWindowTo_p_wxObject(void *x
) {
17018 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPyWindow
*) x
));
17020 static void *_p_wxSplashScreenTo_p_wxObject(void *x
) {
17021 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
17023 static void *_p_wxFileDialogTo_p_wxObject(void *x
) {
17024 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
17026 static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x
) {
17027 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
17029 static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x
) {
17030 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
17032 static void *_p_wxTextEntryDialogTo_p_wxObject(void *x
) {
17033 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
17035 static void *_p_wxPasswordEntryDialogTo_p_wxObject(void *x
) {
17036 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
17038 static void *_p_wxNumberEntryDialogTo_p_wxObject(void *x
) {
17039 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
17041 static void *_p_wxMessageDialogTo_p_wxObject(void *x
) {
17042 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
17044 static void *_p_wxProgressDialogTo_p_wxObject(void *x
) {
17045 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
17047 static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x
) {
17048 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
17050 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
17051 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
17053 static void *_p_wxPrinterTo_p_wxObject(void *x
) {
17054 return (void *)((wxObject
*) ((wxPrinter
*) x
));
17056 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
17057 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
17059 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
17060 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
17062 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
17063 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
17065 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
17066 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
17068 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
17069 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
17071 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
17072 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
17074 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
17075 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
17077 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
17078 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
17080 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
17081 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
17083 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
17084 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
17086 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
17087 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
17089 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
17090 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
17092 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
17093 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
17095 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
17096 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
17098 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
17099 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
17101 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
17102 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
17104 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
17105 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
17107 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
17108 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
17110 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
17111 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
17113 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
17114 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
17116 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
17117 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
17119 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
17120 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
17122 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
17123 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
17125 static void *_p_wxTGAHandlerTo_p_wxObject(void *x
) {
17126 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTGAHandler
*) x
));
17128 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
17129 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
17131 static void *_p_wxMouseCaptureLostEventTo_p_wxObject(void *x
) {
17132 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureLostEvent
*) x
));
17134 static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x
) {
17135 return (void *)((wxObject
*) (wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
17137 static void *_p_wxPyVListBoxTo_p_wxObject(void *x
) {
17138 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
17140 static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x
) {
17141 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
17143 static void *_p_wxSimpleHtmlListBoxTo_p_wxObject(void *x
) {
17144 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*)(wxPyHtmlListBox
*) ((wxSimpleHtmlListBox
*) x
));
17146 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
17147 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
17149 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
17150 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
17152 static void *_p_wxMiniFrameTo_p_wxObject(void *x
) {
17153 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
17155 static void *_p_wxImageTo_p_wxObject(void *x
) {
17156 return (void *)((wxObject
*) ((wxImage
*) x
));
17158 static void *_p_wxFrameTo_p_wxObject(void *x
) {
17159 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
17161 static void *_p_wxPyPrintoutTo_p_wxObject(void *x
) {
17162 return (void *)((wxObject
*) ((wxPyPrintout
*) x
));
17164 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
17165 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
17167 static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x
) {
17168 return (void *)((wxObject
*) (wxEvent
*) ((wxTaskBarIconEvent
*) x
));
17170 static void *_p_wxStatusBarTo_p_wxObject(void *x
) {
17171 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxStatusBar
*) x
));
17173 static void *_p_wxAuiManagerTo_p_wxObject(void *x
) {
17174 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxAuiManager
*) x
));
17176 static void *_p_wxMDIParentFrameTo_p_wxObject(void *x
) {
17177 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
17179 static void *_p_wxAuiNotebookEventTo_p_wxObject(void *x
) {
17180 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
17182 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
17183 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
17185 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
17186 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
17188 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
17189 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
17191 static void *_p_wxWindowTo_p_wxObject(void *x
) {
17192 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
17194 static void *_p_wxMenuTo_p_wxObject(void *x
) {
17195 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
17197 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
17198 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
17200 static void *_p_wxScrolledWindowTo_p_wxObject(void *x
) {
17201 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
17203 static void *_p_wxTopLevelWindowTo_p_wxObject(void *x
) {
17204 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxTopLevelWindow
*) x
));
17206 static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x
) {
17207 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplashScreenWindow
*) x
));
17209 static void *_p_wxSplitterWindowTo_p_wxObject(void *x
) {
17210 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplitterWindow
*) x
));
17212 static void *_p_wxSashWindowTo_p_wxObject(void *x
) {
17213 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSashWindow
*) x
));
17215 static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x
) {
17216 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
17218 static void *_p_wxPopupWindowTo_p_wxObject(void *x
) {
17219 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPopupWindow
*) x
));
17221 static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x
) {
17222 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
17224 static void *_p_wxTipWindowTo_p_wxObject(void *x
) {
17225 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
17227 static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x
) {
17228 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
17230 static void *_p_wxMDIClientWindowTo_p_wxObject(void *x
) {
17231 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMDIClientWindow
*) x
));
17233 static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x
) {
17234 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
17236 static void *_p_wxSashEventTo_p_wxObject(void *x
) {
17237 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxSashEvent
*) x
));
17239 static void *_p_wxPrintPreviewTo_p_wxObject(void *x
) {
17240 return (void *)((wxObject
*) ((wxPrintPreview
*) x
));
17242 static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x
) {
17243 return (void *)((wxObject
*) (wxPrintPreview
*) ((wxPyPrintPreview
*) x
));
17245 static void *_p_wxPanelTo_p_wxObject(void *x
) {
17246 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPanel
*) x
));
17248 static void *_p_wxDialogTo_p_wxObject(void *x
) {
17249 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
17251 static void *_p_wxColourDialogTo_p_wxObject(void *x
) {
17252 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
17254 static void *_p_wxDirDialogTo_p_wxObject(void *x
) {
17255 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
17257 static void *_p_wxFontDialogTo_p_wxObject(void *x
) {
17258 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
17260 static void *_p_wxPageSetupDialogTo_p_wxObject(void *x
) {
17261 return (void *)((wxObject
*) ((wxPageSetupDialog
*) x
));
17263 static void *_p_wxPrintDialogTo_p_wxObject(void *x
) {
17264 return (void *)((wxObject
*) ((wxPrintDialog
*) x
));
17266 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
17267 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
17269 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
17270 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
17272 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
17273 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
17275 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
17276 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
17278 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
17279 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
17281 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
17282 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
17284 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
17285 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
17287 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
17288 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
17290 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
17291 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
17293 static void *_p_wxPreviewControlBarTo_p_wxObject(void *x
) {
17294 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
17296 static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x
) {
17297 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
17299 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
17300 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
17302 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
17303 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
17305 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
17306 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
17308 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
17309 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
17311 static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x
) {
17312 return (void *)((wxObject
*) ((wxPageSetupDialogData
*) x
));
17314 static void *_p_wxPrintDialogDataTo_p_wxObject(void *x
) {
17315 return (void *)((wxObject
*) ((wxPrintDialogData
*) x
));
17317 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
17318 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
17320 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
17321 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
17323 static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x
) {
17324 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
17326 static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x
) {
17327 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
17329 static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x
) {
17330 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
17332 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
17333 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
17335 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
17336 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
17338 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
17339 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
17341 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
17342 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
17344 static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x
) {
17345 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
17347 static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x
) {
17348 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
17350 static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x
) {
17351 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
17353 static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x
) {
17354 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
17356 static void *_p_wxPasswordEntryDialogTo_p_wxEvtHandler(void *x
) {
17357 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
17359 static void *_p_wxNumberEntryDialogTo_p_wxEvtHandler(void *x
) {
17360 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
17362 static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x
) {
17363 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
17365 static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x
) {
17366 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
17368 static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x
) {
17369 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
17371 static void *_p_wxPanelTo_p_wxEvtHandler(void *x
) {
17372 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPanel
*) x
));
17374 static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x
) {
17375 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxStatusBar
*) x
));
17377 static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x
) {
17378 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
17380 static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x
) {
17381 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
17383 static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x
) {
17384 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
17386 static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x
) {
17387 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPopupWindow
*) x
));
17389 static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x
) {
17390 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
17392 static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x
) {
17393 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSashWindow
*) x
));
17395 static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x
) {
17396 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplitterWindow
*) x
));
17398 static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x
) {
17399 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplashScreenWindow
*) x
));
17401 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
17402 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
17404 static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x
) {
17405 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
17407 static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x
) {
17408 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxTopLevelWindow
*) x
));
17410 static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x
) {
17411 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMDIClientWindow
*) x
));
17413 static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x
) {
17414 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
17416 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
17417 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
17419 static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x
) {
17420 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
17422 static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x
) {
17423 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
17425 static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x
) {
17426 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
17428 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
17429 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
17431 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
17432 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
17434 static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x
) {
17435 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPyWindow
*) x
));
17437 static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x
) {
17438 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
17440 static void *_p_wxSimpleHtmlListBoxTo_p_wxEvtHandler(void *x
) {
17441 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*)(wxPyHtmlListBox
*) ((wxSimpleHtmlListBox
*) x
));
17443 static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x
) {
17444 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
17446 static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x
) {
17447 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
17449 static void *_p_wxAuiNotebookTo_p_wxEvtHandler(void *x
) {
17450 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxAuiNotebook
*) x
));
17452 static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x
) {
17453 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
17455 static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x
) {
17456 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
17458 static void *_p_wxPyTaskBarIconTo_p_wxEvtHandler(void *x
) {
17459 return (void *)((wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
17461 static void *_p_wxAuiTabCtrlTo_p_wxEvtHandler(void *x
) {
17462 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxAuiTabCtrl
*) x
));
17464 static void *_p_wxFrameTo_p_wxEvtHandler(void *x
) {
17465 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
17467 static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x
) {
17468 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
17470 static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x
) {
17471 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
17473 static void *_p_wxDialogTo_p_wxEvtHandler(void *x
) {
17474 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
17476 static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x
) {
17477 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
17479 static void *_p_wxAuiFloatingFrameTo_p_wxEvtHandler(void *x
) {
17480 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
17482 static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x
) {
17483 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
17485 static void *_p_wxAuiManagerTo_p_wxEvtHandler(void *x
) {
17486 return (void *)((wxEvtHandler
*) ((wxAuiManager
*) x
));
17488 static void *_p_wxAuiTabCtrlTo_p_wxAuiTabContainer(void *x
) {
17489 return (void *)((wxAuiTabContainer
*) ((wxAuiTabCtrl
*) x
));
17491 static void *_p_wxGBSizerItemTo_p_wxSizerItem(void *x
) {
17492 return (void *)((wxSizerItem
*) ((wxGBSizerItem
*) x
));
17494 static void *_p_wxMDIChildFrameTo_p_wxFrame(void *x
) {
17495 return (void *)((wxFrame
*) ((wxMDIChildFrame
*) x
));
17497 static void *_p_wxProgressDialogTo_p_wxFrame(void *x
) {
17498 return (void *)((wxFrame
*) ((wxProgressDialog
*) x
));
17500 static void *_p_wxPreviewFrameTo_p_wxFrame(void *x
) {
17501 return (void *)((wxFrame
*) ((wxPreviewFrame
*) x
));
17503 static void *_p_wxPyPreviewFrameTo_p_wxFrame(void *x
) {
17504 return (void *)((wxFrame
*) (wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
17506 static void *_p_wxMiniFrameTo_p_wxFrame(void *x
) {
17507 return (void *)((wxFrame
*) ((wxMiniFrame
*) x
));
17509 static void *_p_wxSplashScreenTo_p_wxFrame(void *x
) {
17510 return (void *)((wxFrame
*) ((wxSplashScreen
*) x
));
17512 static void *_p_wxMDIParentFrameTo_p_wxFrame(void *x
) {
17513 return (void *)((wxFrame
*) ((wxMDIParentFrame
*) x
));
17515 static void *_p_wxAuiFloatingFrameTo_p_wxFrame(void *x
) {
17516 return (void *)((wxFrame
*) (wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
17518 static void *_p_wxSashEventTo_p_wxCommandEvent(void *x
) {
17519 return (void *)((wxCommandEvent
*) ((wxSashEvent
*) x
));
17521 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) {
17522 return (void *)((wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
17524 static void *_p_wxSplitterEventTo_p_wxCommandEvent(void *x
) {
17525 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
17527 static void *_p_wxClipboardTextEventTo_p_wxCommandEvent(void *x
) {
17528 return (void *)((wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
17530 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) {
17531 return (void *)((wxCommandEvent
*) ((wxScrollEvent
*) x
));
17533 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) {
17534 return (void *)((wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
17536 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) {
17537 return (void *)((wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
17539 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) {
17540 return (void *)((wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
17542 static void *_p_wxAuiNotebookEventTo_p_wxCommandEvent(void *x
) {
17543 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
17545 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) {
17546 return (void *)((wxCommandEvent
*) ((wxDateEvent
*) x
));
17548 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) {
17549 return (void *)((wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
17551 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) {
17552 return (void *)((wxCommandEvent
*) ((wxNotifyEvent
*) x
));
17554 static void *_p_wxFindDialogEventTo_p_wxCommandEvent(void *x
) {
17555 return (void *)((wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
17557 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) {
17558 return (void *)((wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
17560 static void *_p_wxAuiDefaultDockArtTo_p_wxAuiDockArt(void *x
) {
17561 return (void *)((wxAuiDockArt
*) ((wxAuiDefaultDockArt
*) x
));
17563 static void *_p_wxPyAuiDockArtTo_p_wxAuiDockArt(void *x
) {
17564 return (void *)((wxAuiDockArt
*) (wxAuiDefaultDockArt
*) ((wxPyAuiDockArt
*) x
));
17566 static void *_p_wxPyAuiDockArtTo_p_wxAuiDefaultDockArt(void *x
) {
17567 return (void *)((wxAuiDefaultDockArt
*) ((wxPyAuiDockArt
*) x
));
17569 static void *_p_wxPyAuiTabArtTo_p_wxAuiDefaultTabArt(void *x
) {
17570 return (void *)((wxAuiDefaultTabArt
*) ((wxPyAuiTabArt
*) x
));
17572 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, (void*)0, 0};
17573 static swig_type_info _swigt__p_double
= {"_p_double", "double *", 0, 0, (void*)0, 0};
17574 static swig_type_info _swigt__p_form_ops_t
= {"_p_form_ops_t", "enum form_ops_t *|form_ops_t *", 0, 0, (void*)0, 0};
17575 static swig_type_info _swigt__p_int
= {"_p_int", "int *", 0, 0, (void*)0, 0};
17576 static swig_type_info _swigt__p_p_wxAuiTabContainerButton
= {"_p_p_wxAuiTabContainerButton", "wxAuiTabContainerButton **", 0, 0, (void*)0, 0};
17577 static swig_type_info _swigt__p_p_wxWindow
= {"_p_p_wxWindow", "wxWindow **", 0, 0, (void*)0, 0};
17578 static swig_type_info _swigt__p_p_wxSplashScreen
= {"_p_p_wxSplashScreen", 0, 0, 0, 0, 0};
17579 static swig_type_info _swigt__p_p_wxMiniFrame
= {"_p_p_wxMiniFrame", 0, 0, 0, 0, 0};
17580 static swig_type_info _swigt__p_p_wxPyPanel
= {"_p_p_wxPyPanel", 0, 0, 0, 0, 0};
17581 static swig_type_info _swigt__p_p_wxMenuBar
= {"_p_p_wxMenuBar", 0, 0, 0, 0, 0};
17582 static swig_type_info _swigt__p_p_wxFindReplaceDialog
= {"_p_p_wxFindReplaceDialog", 0, 0, 0, 0, 0};
17583 static swig_type_info _swigt__p_p_wxProgressDialog
= {"_p_p_wxProgressDialog", 0, 0, 0, 0, 0};
17584 static swig_type_info _swigt__p_p_wxMessageDialog
= {"_p_p_wxMessageDialog", 0, 0, 0, 0, 0};
17585 static swig_type_info _swigt__p_p_wxNumberEntryDialog
= {"_p_p_wxNumberEntryDialog", 0, 0, 0, 0, 0};
17586 static swig_type_info _swigt__p_p_wxPasswordEntryDialog
= {"_p_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0};
17587 static swig_type_info _swigt__p_p_wxTextEntryDialog
= {"_p_p_wxTextEntryDialog", 0, 0, 0, 0, 0};
17588 static swig_type_info _swigt__p_p_wxSingleChoiceDialog
= {"_p_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0};
17589 static swig_type_info _swigt__p_p_wxMultiChoiceDialog
= {"_p_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0};
17590 static swig_type_info _swigt__p_p_wxFileDialog
= {"_p_p_wxFileDialog", 0, 0, 0, 0, 0};
17591 static swig_type_info _swigt__p_p_wxPanel
= {"_p_p_wxPanel", 0, 0, 0, 0, 0};
17592 static swig_type_info _swigt__p_p_wxStatusBar
= {"_p_p_wxStatusBar", 0, 0, 0, 0, 0};
17593 static swig_type_info _swigt__p_p_wxPyVScrolledWindow
= {"_p_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0};
17594 static swig_type_info _swigt__p_p_wxTipWindow
= {"_p_p_wxTipWindow", 0, 0, 0, 0, 0};
17595 static swig_type_info _swigt__p_p_wxPyPopupTransientWindow
= {"_p_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0};
17596 static swig_type_info _swigt__p_p_wxPopupWindow
= {"_p_p_wxPopupWindow", 0, 0, 0, 0, 0};
17597 static swig_type_info _swigt__p_p_wxSashLayoutWindow
= {"_p_p_wxSashLayoutWindow", 0, 0, 0, 0, 0};
17598 static swig_type_info _swigt__p_p_wxScrolledWindow
= {"_p_p_wxScrolledWindow", 0, 0, 0, 0, 0};
17599 static swig_type_info _swigt__p_p_wxTopLevelWindow
= {"_p_p_wxTopLevelWindow", 0, 0, 0, 0, 0};
17600 static swig_type_info _swigt__p_p_wxSplashScreenWindow
= {"_p_p_wxSplashScreenWindow", 0, 0, 0, 0, 0};
17601 static swig_type_info _swigt__p_p_wxSplitterWindow
= {"_p_p_wxSplitterWindow", 0, 0, 0, 0, 0};
17602 static swig_type_info _swigt__p_p_wxSashWindow
= {"_p_p_wxSashWindow", 0, 0, 0, 0, 0};
17603 static swig_type_info _swigt__p_p_wxMDIClientWindow
= {"_p_p_wxMDIClientWindow", 0, 0, 0, 0, 0};
17604 static swig_type_info _swigt__p_p_wxPyScrolledWindow
= {"_p_p_wxPyScrolledWindow", 0, 0, 0, 0, 0};
17605 static swig_type_info _swigt__p_p_wxPreviewFrame
= {"_p_p_wxPreviewFrame", 0, 0, 0, 0, 0};
17606 static swig_type_info _swigt__p_p_wxPyPreviewFrame
= {"_p_p_wxPyPreviewFrame", 0, 0, 0, 0, 0};
17607 static swig_type_info _swigt__p_p_wxControl
= {"_p_p_wxControl", 0, 0, 0, 0, 0};
17608 static swig_type_info _swigt__p_p_wxMDIChildFrame
= {"_p_p_wxMDIChildFrame", 0, 0, 0, 0, 0};
17609 static swig_type_info _swigt__p_p_wxControlWithItems
= {"_p_p_wxControlWithItems", 0, 0, 0, 0, 0};
17610 static swig_type_info _swigt__p_p_wxPyWindow
= {"_p_p_wxPyWindow", 0, 0, 0, 0, 0};
17611 static swig_type_info _swigt__p_p_wxPreviewCanvas
= {"_p_p_wxPreviewCanvas", 0, 0, 0, 0, 0};
17612 static swig_type_info _swigt__p_p_wxSimpleHtmlListBox
= {"_p_p_wxSimpleHtmlListBox", 0, 0, 0, 0, 0};
17613 static swig_type_info _swigt__p_p_wxPyHtmlListBox
= {"_p_p_wxPyHtmlListBox", 0, 0, 0, 0, 0};
17614 static swig_type_info _swigt__p_p_wxPyVListBox
= {"_p_p_wxPyVListBox", 0, 0, 0, 0, 0};
17615 static swig_type_info _swigt__p_p_wxAuiNotebook
= {"_p_p_wxAuiNotebook", 0, 0, 0, 0, 0};
17616 static swig_type_info _swigt__p_p_wxPreviewControlBar
= {"_p_p_wxPreviewControlBar", 0, 0, 0, 0, 0};
17617 static swig_type_info _swigt__p_p_wxPyPreviewControlBar
= {"_p_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0};
17618 static swig_type_info _swigt__p_p_wxAuiTabCtrl
= {"_p_p_wxAuiTabCtrl", 0, 0, 0, 0, 0};
17619 static swig_type_info _swigt__p_p_wxFrame
= {"_p_p_wxFrame", 0, 0, 0, 0, 0};
17620 static swig_type_info _swigt__p_p_wxFontDialog
= {"_p_p_wxFontDialog", 0, 0, 0, 0, 0};
17621 static swig_type_info _swigt__p_p_wxDirDialog
= {"_p_p_wxDirDialog", 0, 0, 0, 0, 0};
17622 static swig_type_info _swigt__p_p_wxColourDialog
= {"_p_p_wxColourDialog", 0, 0, 0, 0, 0};
17623 static swig_type_info _swigt__p_p_wxDialog
= {"_p_p_wxDialog", 0, 0, 0, 0, 0};
17624 static swig_type_info _swigt__p_p_wxAuiFloatingFrame
= {"_p_p_wxAuiFloatingFrame", 0, 0, 0, 0, 0};
17625 static swig_type_info _swigt__p_p_wxMDIParentFrame
= {"_p_p_wxMDIParentFrame", 0, 0, 0, 0, 0};
17626 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0};
17627 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0};
17628 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxUIntPtr *", 0, 0, (void*)0, 0};
17629 static swig_type_info _swigt__p_wxArrayString
= {"_p_wxArrayString", "wxArrayString *", 0, 0, (void*)0, 0};
17630 static swig_type_info _swigt__p_wxAuiDefaultDockArt
= {"_p_wxAuiDefaultDockArt", "wxAuiDefaultDockArt *", 0, 0, (void*)0, 0};
17631 static swig_type_info _swigt__p_wxAuiDefaultTabArt
= {"_p_wxAuiDefaultTabArt", "wxAuiDefaultTabArt *", 0, 0, (void*)0, 0};
17632 static swig_type_info _swigt__p_wxAuiDockArt
= {"_p_wxAuiDockArt", "wxAuiDockArt *", 0, 0, (void*)0, 0};
17633 static swig_type_info _swigt__p_wxAuiDockInfo
= {"_p_wxAuiDockInfo", "wxAuiDockInfo *", 0, 0, (void*)0, 0};
17634 static swig_type_info _swigt__p_wxAuiDockUIPart
= {"_p_wxAuiDockUIPart", "wxAuiDockUIPart *", 0, 0, (void*)0, 0};
17635 static swig_type_info _swigt__p_wxAuiFloatingFrame
= {"_p_wxAuiFloatingFrame", "wxAuiFloatingFrame *", 0, 0, (void*)0, 0};
17636 static swig_type_info _swigt__p_wxAuiManager
= {"_p_wxAuiManager", "wxAuiManager *", 0, 0, (void*)0, 0};
17637 static swig_type_info _swigt__p_wxAuiManagerEvent
= {"_p_wxAuiManagerEvent", "wxAuiManagerEvent *", 0, 0, (void*)0, 0};
17638 static swig_type_info _swigt__p_wxAuiNotebook
= {"_p_wxAuiNotebook", "wxAuiNotebook *", 0, 0, (void*)0, 0};
17639 static swig_type_info _swigt__p_wxAuiNotebookEvent
= {"_p_wxAuiNotebookEvent", "wxAuiNotebookEvent *", 0, 0, (void*)0, 0};
17640 static swig_type_info _swigt__p_wxAuiNotebookPage
= {"_p_wxAuiNotebookPage", "wxAuiNotebookPage *", 0, 0, (void*)0, 0};
17641 static swig_type_info _swigt__p_wxAuiNotebookPageArray
= {"_p_wxAuiNotebookPageArray", "wxAuiNotebookPageArray *", 0, 0, (void*)0, 0};
17642 static swig_type_info _swigt__p_wxAuiPaneButton
= {"_p_wxAuiPaneButton", "wxAuiPaneButton *", 0, 0, (void*)0, 0};
17643 static swig_type_info _swigt__p_wxAuiPaneButtonArray
= {"_p_wxAuiPaneButtonArray", "wxAuiPaneButtonArray *", 0, 0, (void*)0, 0};
17644 static swig_type_info _swigt__p_wxAuiPaneInfo
= {"_p_wxAuiPaneInfo", "wxAuiPaneInfo *", 0, 0, (void*)0, 0};
17645 static swig_type_info _swigt__p_wxAuiPaneInfoPtrArray
= {"_p_wxAuiPaneInfoPtrArray", "wxAuiPaneInfoPtrArray *", 0, 0, (void*)0, 0};
17646 static swig_type_info _swigt__p_wxAuiSimpleTabArt
= {"_p_wxAuiSimpleTabArt", "wxAuiSimpleTabArt *", 0, 0, (void*)0, 0};
17647 static swig_type_info _swigt__p_wxAuiTabArt
= {"_p_wxAuiTabArt", "wxAuiTabArt *", 0, 0, (void*)0, 0};
17648 static swig_type_info _swigt__p_wxAuiTabContainer
= {"_p_wxAuiTabContainer", "wxAuiTabContainer *", 0, 0, (void*)0, 0};
17649 static swig_type_info _swigt__p_wxAuiTabContainerButton
= {"_p_wxAuiTabContainerButton", "wxAuiTabContainerButton *", 0, 0, (void*)0, 0};
17650 static swig_type_info _swigt__p_wxAuiTabCtrl
= {"_p_wxAuiTabCtrl", "wxAuiTabCtrl *", 0, 0, (void*)0, 0};
17651 static swig_type_info _swigt__p_wxBitmap
= {"_p_wxBitmap", "wxBitmap *", 0, 0, (void*)0, 0};
17652 static swig_type_info _swigt__p_wxColor
= {"_p_wxColor", "wxColor *", 0, 0, (void*)0, 0};
17653 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0};
17654 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", "wxCommandEvent *", 0, 0, (void*)0, 0};
17655 static swig_type_info _swigt__p_wxSashEvent
= {"_p_wxSashEvent", 0, 0, 0, 0, 0};
17656 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0};
17657 static swig_type_info _swigt__p_wxSplitterEvent
= {"_p_wxSplitterEvent", 0, 0, 0, 0, 0};
17658 static swig_type_info _swigt__p_wxClipboardTextEvent
= {"_p_wxClipboardTextEvent", 0, 0, 0, 0, 0};
17659 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0};
17660 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0};
17661 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0};
17662 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0};
17663 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0, 0};
17664 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0};
17665 static swig_type_info _swigt__p_wxFindDialogEvent
= {"_p_wxFindDialogEvent", 0, 0, 0, 0, 0};
17666 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0};
17667 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", "wxControl *", 0, 0, (void*)0, 0};
17668 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0};
17669 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0};
17670 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0};
17671 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0};
17672 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0, 0};
17673 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0, 0};
17674 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0};
17675 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0};
17676 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0};
17677 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0};
17678 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0, 0};
17679 static swig_type_info _swigt__p_wxMouseCaptureLostEvent
= {"_p_wxMouseCaptureLostEvent", 0, 0, 0, 0, 0};
17680 static swig_type_info _swigt__p_wxCalculateLayoutEvent
= {"_p_wxCalculateLayoutEvent", 0, 0, 0, 0, 0};
17681 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0};
17682 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0};
17683 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0};
17684 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0};
17685 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0, 0};
17686 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0};
17687 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0};
17688 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0};
17689 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0};
17690 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0};
17691 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0};
17692 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0};
17693 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0};
17694 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0};
17695 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0};
17696 static swig_type_info _swigt__p_wxQueryLayoutInfoEvent
= {"_p_wxQueryLayoutInfoEvent", 0, 0, 0, 0, 0};
17697 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0, 0};
17698 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0};
17699 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0};
17700 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", 0, 0, 0, 0, 0};
17701 static swig_type_info _swigt__p_wxTaskBarIconEvent
= {"_p_wxTaskBarIconEvent", 0, 0, 0, 0, 0};
17702 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0};
17703 static swig_type_info _swigt__p_wxSplashScreen
= {"_p_wxSplashScreen", 0, 0, 0, 0, 0};
17704 static swig_type_info _swigt__p_wxPyPanel
= {"_p_wxPyPanel", 0, 0, 0, 0, 0};
17705 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", 0, 0, 0, 0, 0};
17706 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", 0, 0, 0, 0, 0};
17707 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0, 0};
17708 static swig_type_info _swigt__p_wxNumberEntryDialog
= {"_p_wxNumberEntryDialog", 0, 0, 0, 0, 0};
17709 static swig_type_info _swigt__p_wxPasswordEntryDialog
= {"_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0};
17710 static swig_type_info _swigt__p_wxFileDialog
= {"_p_wxFileDialog", 0, 0, 0, 0, 0};
17711 static swig_type_info _swigt__p_wxFindReplaceDialog
= {"_p_wxFindReplaceDialog", 0, 0, 0, 0, 0};
17712 static swig_type_info _swigt__p_wxProgressDialog
= {"_p_wxProgressDialog", 0, 0, 0, 0, 0};
17713 static swig_type_info _swigt__p_wxMessageDialog
= {"_p_wxMessageDialog", 0, 0, 0, 0, 0};
17714 static swig_type_info _swigt__p_wxTextEntryDialog
= {"_p_wxTextEntryDialog", 0, 0, 0, 0, 0};
17715 static swig_type_info _swigt__p_wxSingleChoiceDialog
= {"_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0};
17716 static swig_type_info _swigt__p_wxMultiChoiceDialog
= {"_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0};
17717 static swig_type_info _swigt__p_wxPanel
= {"_p_wxPanel", 0, 0, 0, 0, 0};
17718 static swig_type_info _swigt__p_wxStatusBar
= {"_p_wxStatusBar", 0, 0, 0, 0, 0};
17719 static swig_type_info _swigt__p_wxSashWindow
= {"_p_wxSashWindow", 0, 0, 0, 0, 0};
17720 static swig_type_info _swigt__p_wxScrolledWindow
= {"_p_wxScrolledWindow", 0, 0, 0, 0, 0};
17721 static swig_type_info _swigt__p_wxMDIClientWindow
= {"_p_wxMDIClientWindow", 0, 0, 0, 0, 0};
17722 static swig_type_info _swigt__p_wxPyScrolledWindow
= {"_p_wxPyScrolledWindow", 0, 0, 0, 0, 0};
17723 static swig_type_info _swigt__p_wxSplitterWindow
= {"_p_wxSplitterWindow", 0, 0, 0, 0, 0};
17724 static swig_type_info _swigt__p_wxSplashScreenWindow
= {"_p_wxSplashScreenWindow", 0, 0, 0, 0, 0};
17725 static swig_type_info _swigt__p_wxSashLayoutWindow
= {"_p_wxSashLayoutWindow", 0, 0, 0, 0, 0};
17726 static swig_type_info _swigt__p_wxPopupWindow
= {"_p_wxPopupWindow", 0, 0, 0, 0, 0};
17727 static swig_type_info _swigt__p_wxPyPopupTransientWindow
= {"_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0};
17728 static swig_type_info _swigt__p_wxTipWindow
= {"_p_wxTipWindow", 0, 0, 0, 0, 0};
17729 static swig_type_info _swigt__p_wxPyVScrolledWindow
= {"_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0};
17730 static swig_type_info _swigt__p_wxPyPreviewFrame
= {"_p_wxPyPreviewFrame", 0, 0, 0, 0, 0};
17731 static swig_type_info _swigt__p_wxPreviewFrame
= {"_p_wxPreviewFrame", 0, 0, 0, 0, 0};
17732 static swig_type_info _swigt__p_wxMDIChildFrame
= {"_p_wxMDIChildFrame", 0, 0, 0, 0, 0};
17733 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0, 0};
17734 static swig_type_info _swigt__p_wxPyWindow
= {"_p_wxPyWindow", 0, 0, 0, 0, 0};
17735 static swig_type_info _swigt__p_wxPreviewCanvas
= {"_p_wxPreviewCanvas", 0, 0, 0, 0, 0};
17736 static swig_type_info _swigt__p_wxSimpleHtmlListBox
= {"_p_wxSimpleHtmlListBox", 0, 0, 0, 0, 0};
17737 static swig_type_info _swigt__p_wxPyHtmlListBox
= {"_p_wxPyHtmlListBox", 0, 0, 0, 0, 0};
17738 static swig_type_info _swigt__p_wxPyVListBox
= {"_p_wxPyVListBox", 0, 0, 0, 0, 0};
17739 static swig_type_info _swigt__p_wxPreviewControlBar
= {"_p_wxPreviewControlBar", 0, 0, 0, 0, 0};
17740 static swig_type_info _swigt__p_wxPyPreviewControlBar
= {"_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0};
17741 static swig_type_info _swigt__p_wxPyTaskBarIcon
= {"_p_wxPyTaskBarIcon", 0, 0, 0, 0, 0};
17742 static swig_type_info _swigt__p_wxFontDialog
= {"_p_wxFontDialog", 0, 0, 0, 0, 0};
17743 static swig_type_info _swigt__p_wxDirDialog
= {"_p_wxDirDialog", 0, 0, 0, 0, 0};
17744 static swig_type_info _swigt__p_wxColourDialog
= {"_p_wxColourDialog", 0, 0, 0, 0, 0};
17745 static swig_type_info _swigt__p_wxDialog
= {"_p_wxDialog", 0, 0, 0, 0, 0};
17746 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", 0, 0, 0, 0, 0};
17747 static swig_type_info _swigt__p_wxMDIParentFrame
= {"_p_wxMDIParentFrame", 0, 0, 0, 0, 0};
17748 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0};
17749 static swig_type_info _swigt__p_wxFrame
= {"_p_wxFrame", "wxFrame *", 0, 0, (void*)0, 0};
17750 static swig_type_info _swigt__p_wxMiniFrame
= {"_p_wxMiniFrame", "wxMiniFrame *", 0, 0, (void*)0, 0};
17751 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", "wxNotifyEvent *", 0, 0, (void*)0, 0};
17752 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0};
17753 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0};
17754 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0};
17755 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0};
17756 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0};
17757 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0};
17758 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0};
17759 static swig_type_info _swigt__p_wxFontData
= {"_p_wxFontData", 0, 0, 0, 0, 0};
17760 static swig_type_info _swigt__p_wxPrintData
= {"_p_wxPrintData", 0, 0, 0, 0, 0};
17761 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0, 0};
17762 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0};
17763 static swig_type_info _swigt__p_wxLayoutAlgorithm
= {"_p_wxLayoutAlgorithm", 0, 0, 0, 0, 0};
17764 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0, 0};
17765 static swig_type_info _swigt__p_wxFindReplaceData
= {"_p_wxFindReplaceData", 0, 0, 0, 0, 0};
17766 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0, 0};
17767 static swig_type_info _swigt__p_wxColourData
= {"_p_wxColourData", 0, 0, 0, 0, 0};
17768 static swig_type_info _swigt__p_wxPrinter
= {"_p_wxPrinter", 0, 0, 0, 0, 0};
17769 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0, 0};
17770 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0};
17771 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0};
17772 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0};
17773 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0};
17774 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0};
17775 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0, 0};
17776 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0, 0};
17777 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0, 0};
17778 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0};
17779 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0};
17780 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0, 0};
17781 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0};
17782 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0};
17783 static swig_type_info _swigt__p_wxTGAHandler
= {"_p_wxTGAHandler", 0, 0, 0, 0, 0};
17784 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0};
17785 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0};
17786 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0, 0};
17787 static swig_type_info _swigt__p_wxPyPrintout
= {"_p_wxPyPrintout", 0, 0, 0, 0, 0};
17788 static swig_type_info _swigt__p_wxPrintPreview
= {"_p_wxPrintPreview", 0, 0, 0, 0, 0};
17789 static swig_type_info _swigt__p_wxPyPrintPreview
= {"_p_wxPyPrintPreview", 0, 0, 0, 0, 0};
17790 static swig_type_info _swigt__p_wxPageSetupDialog
= {"_p_wxPageSetupDialog", 0, 0, 0, 0, 0};
17791 static swig_type_info _swigt__p_wxPrintDialog
= {"_p_wxPrintDialog", 0, 0, 0, 0, 0};
17792 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", 0, 0, 0, 0, 0};
17793 static swig_type_info _swigt__p_wxPageSetupDialogData
= {"_p_wxPageSetupDialogData", 0, 0, 0, 0, 0};
17794 static swig_type_info _swigt__p_wxPrintDialogData
= {"_p_wxPrintDialogData", 0, 0, 0, 0, 0};
17795 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0};
17796 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0};
17797 static swig_type_info _swigt__p_wxPyAuiDockArt
= {"_p_wxPyAuiDockArt", "wxPyAuiDockArt *", 0, 0, (void*)0, 0};
17798 static swig_type_info _swigt__p_wxPyAuiTabArt
= {"_p_wxPyAuiTabArt", "wxPyAuiTabArt *", 0, 0, (void*)0, 0};
17799 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0};
17800 static swig_type_info _swigt__p_wxSize
= {"_p_wxSize", "wxSize *", 0, 0, (void*)0, 0};
17801 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", "wxSizer *", 0, 0, (void*)0, 0};
17802 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", "wxSizerItem *", 0, 0, (void*)0, 0};
17803 static swig_type_info _swigt__p_wxString
= {"_p_wxString", "wxString *", 0, 0, (void*)0, 0};
17804 static swig_type_info _swigt__p_wxTopLevelWindow
= {"_p_wxTopLevelWindow", "wxTopLevelWindow *", 0, 0, (void*)0, 0};
17805 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0};
17807 static swig_type_info
*swig_type_initial
[] = {
17810 &_swigt__p_form_ops_t
,
17812 &_swigt__p_p_wxAuiFloatingFrame
,
17813 &_swigt__p_p_wxAuiNotebook
,
17814 &_swigt__p_p_wxAuiTabContainerButton
,
17815 &_swigt__p_p_wxAuiTabCtrl
,
17816 &_swigt__p_p_wxColourDialog
,
17817 &_swigt__p_p_wxControl
,
17818 &_swigt__p_p_wxControlWithItems
,
17819 &_swigt__p_p_wxDialog
,
17820 &_swigt__p_p_wxDirDialog
,
17821 &_swigt__p_p_wxFileDialog
,
17822 &_swigt__p_p_wxFindReplaceDialog
,
17823 &_swigt__p_p_wxFontDialog
,
17824 &_swigt__p_p_wxFrame
,
17825 &_swigt__p_p_wxMDIChildFrame
,
17826 &_swigt__p_p_wxMDIClientWindow
,
17827 &_swigt__p_p_wxMDIParentFrame
,
17828 &_swigt__p_p_wxMenuBar
,
17829 &_swigt__p_p_wxMessageDialog
,
17830 &_swigt__p_p_wxMiniFrame
,
17831 &_swigt__p_p_wxMultiChoiceDialog
,
17832 &_swigt__p_p_wxNumberEntryDialog
,
17833 &_swigt__p_p_wxPanel
,
17834 &_swigt__p_p_wxPasswordEntryDialog
,
17835 &_swigt__p_p_wxPopupWindow
,
17836 &_swigt__p_p_wxPreviewCanvas
,
17837 &_swigt__p_p_wxPreviewControlBar
,
17838 &_swigt__p_p_wxPreviewFrame
,
17839 &_swigt__p_p_wxProgressDialog
,
17840 &_swigt__p_p_wxPyHtmlListBox
,
17841 &_swigt__p_p_wxPyPanel
,
17842 &_swigt__p_p_wxPyPopupTransientWindow
,
17843 &_swigt__p_p_wxPyPreviewControlBar
,
17844 &_swigt__p_p_wxPyPreviewFrame
,
17845 &_swigt__p_p_wxPyScrolledWindow
,
17846 &_swigt__p_p_wxPyVListBox
,
17847 &_swigt__p_p_wxPyVScrolledWindow
,
17848 &_swigt__p_p_wxPyWindow
,
17849 &_swigt__p_p_wxSashLayoutWindow
,
17850 &_swigt__p_p_wxSashWindow
,
17851 &_swigt__p_p_wxScrolledWindow
,
17852 &_swigt__p_p_wxSimpleHtmlListBox
,
17853 &_swigt__p_p_wxSingleChoiceDialog
,
17854 &_swigt__p_p_wxSplashScreen
,
17855 &_swigt__p_p_wxSplashScreenWindow
,
17856 &_swigt__p_p_wxSplitterWindow
,
17857 &_swigt__p_p_wxStatusBar
,
17858 &_swigt__p_p_wxTextEntryDialog
,
17859 &_swigt__p_p_wxTipWindow
,
17860 &_swigt__p_p_wxTopLevelWindow
,
17861 &_swigt__p_p_wxWindow
,
17862 &_swigt__p_unsigned_char
,
17863 &_swigt__p_unsigned_int
,
17864 &_swigt__p_unsigned_long
,
17865 &_swigt__p_wxANIHandler
,
17866 &_swigt__p_wxAcceleratorTable
,
17867 &_swigt__p_wxActivateEvent
,
17868 &_swigt__p_wxArrayString
,
17869 &_swigt__p_wxAuiDefaultDockArt
,
17870 &_swigt__p_wxAuiDefaultTabArt
,
17871 &_swigt__p_wxAuiDockArt
,
17872 &_swigt__p_wxAuiDockInfo
,
17873 &_swigt__p_wxAuiDockUIPart
,
17874 &_swigt__p_wxAuiFloatingFrame
,
17875 &_swigt__p_wxAuiManager
,
17876 &_swigt__p_wxAuiManagerEvent
,
17877 &_swigt__p_wxAuiNotebook
,
17878 &_swigt__p_wxAuiNotebookEvent
,
17879 &_swigt__p_wxAuiNotebookPage
,
17880 &_swigt__p_wxAuiNotebookPageArray
,
17881 &_swigt__p_wxAuiPaneButton
,
17882 &_swigt__p_wxAuiPaneButtonArray
,
17883 &_swigt__p_wxAuiPaneInfo
,
17884 &_swigt__p_wxAuiPaneInfoPtrArray
,
17885 &_swigt__p_wxAuiSimpleTabArt
,
17886 &_swigt__p_wxAuiTabArt
,
17887 &_swigt__p_wxAuiTabContainer
,
17888 &_swigt__p_wxAuiTabContainerButton
,
17889 &_swigt__p_wxAuiTabCtrl
,
17890 &_swigt__p_wxBMPHandler
,
17891 &_swigt__p_wxBitmap
,
17892 &_swigt__p_wxBoxSizer
,
17893 &_swigt__p_wxCURHandler
,
17894 &_swigt__p_wxCalculateLayoutEvent
,
17895 &_swigt__p_wxChildFocusEvent
,
17896 &_swigt__p_wxClipboardTextEvent
,
17897 &_swigt__p_wxCloseEvent
,
17898 &_swigt__p_wxColor
,
17899 &_swigt__p_wxColour
,
17900 &_swigt__p_wxColourData
,
17901 &_swigt__p_wxColourDialog
,
17902 &_swigt__p_wxCommandEvent
,
17903 &_swigt__p_wxContextMenuEvent
,
17904 &_swigt__p_wxControl
,
17905 &_swigt__p_wxControlWithItems
,
17907 &_swigt__p_wxDateEvent
,
17908 &_swigt__p_wxDialog
,
17909 &_swigt__p_wxDirDialog
,
17910 &_swigt__p_wxDisplayChangedEvent
,
17911 &_swigt__p_wxDropFilesEvent
,
17912 &_swigt__p_wxDuplexMode
,
17913 &_swigt__p_wxEraseEvent
,
17914 &_swigt__p_wxEvent
,
17915 &_swigt__p_wxEvtHandler
,
17916 &_swigt__p_wxFSFile
,
17917 &_swigt__p_wxFileDialog
,
17918 &_swigt__p_wxFileSystem
,
17919 &_swigt__p_wxFindDialogEvent
,
17920 &_swigt__p_wxFindReplaceData
,
17921 &_swigt__p_wxFindReplaceDialog
,
17922 &_swigt__p_wxFlexGridSizer
,
17923 &_swigt__p_wxFocusEvent
,
17925 &_swigt__p_wxFontData
,
17926 &_swigt__p_wxFontDialog
,
17927 &_swigt__p_wxFrame
,
17928 &_swigt__p_wxGBSizerItem
,
17929 &_swigt__p_wxGIFHandler
,
17930 &_swigt__p_wxGridBagSizer
,
17931 &_swigt__p_wxGridSizer
,
17932 &_swigt__p_wxICOHandler
,
17933 &_swigt__p_wxIconizeEvent
,
17934 &_swigt__p_wxIdleEvent
,
17935 &_swigt__p_wxImage
,
17936 &_swigt__p_wxImageHandler
,
17937 &_swigt__p_wxIndividualLayoutConstraint
,
17938 &_swigt__p_wxInitDialogEvent
,
17939 &_swigt__p_wxJPEGHandler
,
17940 &_swigt__p_wxKeyEvent
,
17941 &_swigt__p_wxLayoutAlgorithm
,
17942 &_swigt__p_wxLayoutConstraints
,
17943 &_swigt__p_wxMDIChildFrame
,
17944 &_swigt__p_wxMDIClientWindow
,
17945 &_swigt__p_wxMDIParentFrame
,
17946 &_swigt__p_wxMaximizeEvent
,
17948 &_swigt__p_wxMenuBar
,
17949 &_swigt__p_wxMenuEvent
,
17950 &_swigt__p_wxMenuItem
,
17951 &_swigt__p_wxMessageDialog
,
17952 &_swigt__p_wxMiniFrame
,
17953 &_swigt__p_wxMouseCaptureChangedEvent
,
17954 &_swigt__p_wxMouseCaptureLostEvent
,
17955 &_swigt__p_wxMouseEvent
,
17956 &_swigt__p_wxMoveEvent
,
17957 &_swigt__p_wxMultiChoiceDialog
,
17958 &_swigt__p_wxNavigationKeyEvent
,
17959 &_swigt__p_wxNcPaintEvent
,
17960 &_swigt__p_wxNotifyEvent
,
17961 &_swigt__p_wxNumberEntryDialog
,
17962 &_swigt__p_wxObject
,
17963 &_swigt__p_wxPCXHandler
,
17964 &_swigt__p_wxPNGHandler
,
17965 &_swigt__p_wxPNMHandler
,
17966 &_swigt__p_wxPageSetupDialog
,
17967 &_swigt__p_wxPageSetupDialogData
,
17968 &_swigt__p_wxPaintEvent
,
17969 &_swigt__p_wxPaletteChangedEvent
,
17970 &_swigt__p_wxPanel
,
17971 &_swigt__p_wxPaperSize
,
17972 &_swigt__p_wxPasswordEntryDialog
,
17973 &_swigt__p_wxPoint
,
17974 &_swigt__p_wxPopupWindow
,
17975 &_swigt__p_wxPreviewCanvas
,
17976 &_swigt__p_wxPreviewControlBar
,
17977 &_swigt__p_wxPreviewFrame
,
17978 &_swigt__p_wxPrintData
,
17979 &_swigt__p_wxPrintDialog
,
17980 &_swigt__p_wxPrintDialogData
,
17981 &_swigt__p_wxPrintPreview
,
17982 &_swigt__p_wxPrinter
,
17983 &_swigt__p_wxProgressDialog
,
17984 &_swigt__p_wxPyApp
,
17985 &_swigt__p_wxPyAuiDockArt
,
17986 &_swigt__p_wxPyAuiTabArt
,
17987 &_swigt__p_wxPyCommandEvent
,
17988 &_swigt__p_wxPyEvent
,
17989 &_swigt__p_wxPyHtmlListBox
,
17990 &_swigt__p_wxPyImageHandler
,
17991 &_swigt__p_wxPyPanel
,
17992 &_swigt__p_wxPyPopupTransientWindow
,
17993 &_swigt__p_wxPyPreviewControlBar
,
17994 &_swigt__p_wxPyPreviewFrame
,
17995 &_swigt__p_wxPyPrintPreview
,
17996 &_swigt__p_wxPyPrintout
,
17997 &_swigt__p_wxPyScrolledWindow
,
17998 &_swigt__p_wxPySizer
,
17999 &_swigt__p_wxPyTaskBarIcon
,
18000 &_swigt__p_wxPyVListBox
,
18001 &_swigt__p_wxPyVScrolledWindow
,
18002 &_swigt__p_wxPyValidator
,
18003 &_swigt__p_wxPyWindow
,
18004 &_swigt__p_wxQueryLayoutInfoEvent
,
18005 &_swigt__p_wxQueryNewPaletteEvent
,
18007 &_swigt__p_wxSashEvent
,
18008 &_swigt__p_wxSashLayoutWindow
,
18009 &_swigt__p_wxSashWindow
,
18010 &_swigt__p_wxScrollEvent
,
18011 &_swigt__p_wxScrollWinEvent
,
18012 &_swigt__p_wxScrolledWindow
,
18013 &_swigt__p_wxSetCursorEvent
,
18014 &_swigt__p_wxShowEvent
,
18015 &_swigt__p_wxSimpleHtmlListBox
,
18016 &_swigt__p_wxSingleChoiceDialog
,
18018 &_swigt__p_wxSizeEvent
,
18019 &_swigt__p_wxSizer
,
18020 &_swigt__p_wxSizerItem
,
18021 &_swigt__p_wxSplashScreen
,
18022 &_swigt__p_wxSplashScreenWindow
,
18023 &_swigt__p_wxSplitterEvent
,
18024 &_swigt__p_wxSplitterWindow
,
18025 &_swigt__p_wxStaticBoxSizer
,
18026 &_swigt__p_wxStatusBar
,
18027 &_swigt__p_wxStdDialogButtonSizer
,
18028 &_swigt__p_wxString
,
18029 &_swigt__p_wxSysColourChangedEvent
,
18030 &_swigt__p_wxTGAHandler
,
18031 &_swigt__p_wxTIFFHandler
,
18032 &_swigt__p_wxTaskBarIconEvent
,
18033 &_swigt__p_wxTextEntryDialog
,
18034 &_swigt__p_wxTipWindow
,
18035 &_swigt__p_wxTopLevelWindow
,
18036 &_swigt__p_wxUpdateUIEvent
,
18037 &_swigt__p_wxValidator
,
18038 &_swigt__p_wxWindow
,
18039 &_swigt__p_wxWindowCreateEvent
,
18040 &_swigt__p_wxWindowDestroyEvent
,
18041 &_swigt__p_wxXPMHandler
,
18044 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
18045 static swig_cast_info _swigc__p_double
[] = { {&_swigt__p_double
, 0, 0, 0},{0, 0, 0, 0}};
18046 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
18047 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
18048 static swig_cast_info _swigc__p_p_wxAuiTabContainerButton
[] = { {&_swigt__p_p_wxAuiTabContainerButton
, 0, 0, 0},{0, 0, 0, 0}};
18049 static swig_cast_info _swigc__p_p_wxSplashScreen
[] = {{&_swigt__p_p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
18050 static swig_cast_info _swigc__p_p_wxMiniFrame
[] = {{&_swigt__p_p_wxMiniFrame
, 0, 0, 0},{0, 0, 0, 0}};
18051 static swig_cast_info _swigc__p_p_wxPyPanel
[] = {{&_swigt__p_p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
18052 static swig_cast_info _swigc__p_p_wxMenuBar
[] = {{&_swigt__p_p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
18053 static swig_cast_info _swigc__p_p_wxFindReplaceDialog
[] = {{&_swigt__p_p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
18054 static swig_cast_info _swigc__p_p_wxProgressDialog
[] = {{&_swigt__p_p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
18055 static swig_cast_info _swigc__p_p_wxMessageDialog
[] = {{&_swigt__p_p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
18056 static swig_cast_info _swigc__p_p_wxNumberEntryDialog
[] = {{&_swigt__p_p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
18057 static swig_cast_info _swigc__p_p_wxPasswordEntryDialog
[] = {{&_swigt__p_p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
18058 static swig_cast_info _swigc__p_p_wxTextEntryDialog
[] = {{&_swigt__p_p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
18059 static swig_cast_info _swigc__p_p_wxSingleChoiceDialog
[] = {{&_swigt__p_p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
18060 static swig_cast_info _swigc__p_p_wxMultiChoiceDialog
[] = {{&_swigt__p_p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
18061 static swig_cast_info _swigc__p_p_wxFileDialog
[] = {{&_swigt__p_p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
18062 static swig_cast_info _swigc__p_p_wxPanel
[] = {{&_swigt__p_p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}};
18063 static swig_cast_info _swigc__p_p_wxStatusBar
[] = {{&_swigt__p_p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
18064 static swig_cast_info _swigc__p_p_wxPyVScrolledWindow
[] = {{&_swigt__p_p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
18065 static swig_cast_info _swigc__p_p_wxTipWindow
[] = {{&_swigt__p_p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
18066 static swig_cast_info _swigc__p_p_wxPyPopupTransientWindow
[] = {{&_swigt__p_p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}};
18067 static swig_cast_info _swigc__p_p_wxPopupWindow
[] = {{&_swigt__p_p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}};
18068 static swig_cast_info _swigc__p_p_wxSashLayoutWindow
[] = {{&_swigt__p_p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
18069 static swig_cast_info _swigc__p_p_wxScrolledWindow
[] = {{&_swigt__p_p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
18070 static swig_cast_info _swigc__p_p_wxTopLevelWindow
[] = {{&_swigt__p_p_wxTopLevelWindow
, 0, 0, 0},{0, 0, 0, 0}};
18071 static swig_cast_info _swigc__p_p_wxSplashScreenWindow
[] = {{&_swigt__p_p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
18072 static swig_cast_info _swigc__p_p_wxSplitterWindow
[] = {{&_swigt__p_p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
18073 static swig_cast_info _swigc__p_p_wxSashWindow
[] = {{&_swigt__p_p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}};
18074 static swig_cast_info _swigc__p_p_wxMDIClientWindow
[] = {{&_swigt__p_p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
18075 static swig_cast_info _swigc__p_p_wxPyScrolledWindow
[] = {{&_swigt__p_p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
18076 static swig_cast_info _swigc__p_p_wxPreviewFrame
[] = {{&_swigt__p_p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
18077 static swig_cast_info _swigc__p_p_wxPyPreviewFrame
[] = {{&_swigt__p_p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
18078 static swig_cast_info _swigc__p_p_wxControl
[] = {{&_swigt__p_p_wxControl
, 0, 0, 0},{0, 0, 0, 0}};
18079 static swig_cast_info _swigc__p_p_wxMDIChildFrame
[] = {{&_swigt__p_p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
18080 static swig_cast_info _swigc__p_p_wxControlWithItems
[] = {{&_swigt__p_p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
18081 static swig_cast_info _swigc__p_p_wxPyWindow
[] = {{&_swigt__p_p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
18082 static swig_cast_info _swigc__p_p_wxPreviewCanvas
[] = {{&_swigt__p_p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
18083 static swig_cast_info _swigc__p_p_wxSimpleHtmlListBox
[] = {{&_swigt__p_p_wxSimpleHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
18084 static swig_cast_info _swigc__p_p_wxPyHtmlListBox
[] = {{&_swigt__p_p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
18085 static swig_cast_info _swigc__p_p_wxPyVListBox
[] = {{&_swigt__p_p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}};
18086 static swig_cast_info _swigc__p_p_wxAuiNotebook
[] = {{&_swigt__p_p_wxAuiNotebook
, 0, 0, 0},{0, 0, 0, 0}};
18087 static swig_cast_info _swigc__p_p_wxPreviewControlBar
[] = {{&_swigt__p_p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
18088 static swig_cast_info _swigc__p_p_wxPyPreviewControlBar
[] = {{&_swigt__p_p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
18089 static swig_cast_info _swigc__p_p_wxAuiTabCtrl
[] = {{&_swigt__p_p_wxAuiTabCtrl
, 0, 0, 0},{0, 0, 0, 0}};
18090 static swig_cast_info _swigc__p_p_wxFrame
[] = {{&_swigt__p_p_wxFrame
, 0, 0, 0},{0, 0, 0, 0}};
18091 static swig_cast_info _swigc__p_p_wxFontDialog
[] = {{&_swigt__p_p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
18092 static swig_cast_info _swigc__p_p_wxDirDialog
[] = {{&_swigt__p_p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
18093 static swig_cast_info _swigc__p_p_wxColourDialog
[] = {{&_swigt__p_p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
18094 static swig_cast_info _swigc__p_p_wxDialog
[] = {{&_swigt__p_p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}};
18095 static swig_cast_info _swigc__p_p_wxAuiFloatingFrame
[] = {{&_swigt__p_p_wxAuiFloatingFrame
, 0, 0, 0},{0, 0, 0, 0}};
18096 static swig_cast_info _swigc__p_p_wxMDIParentFrame
[] = {{&_swigt__p_p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
18097 static swig_cast_info _swigc__p_p_wxWindow
[] = { {&_swigt__p_p_wxSplashScreen
, _p_p_wxSplashScreenTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxMiniFrame
, _p_p_wxMiniFrameTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyPanel
, _p_p_wxPyPanelTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxMenuBar
, _p_p_wxMenuBarTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxFindReplaceDialog
, _p_p_wxFindReplaceDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxProgressDialog
, _p_p_wxProgressDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxMessageDialog
, _p_p_wxMessageDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxNumberEntryDialog
, _p_p_wxNumberEntryDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPasswordEntryDialog
, _p_p_wxPasswordEntryDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxTextEntryDialog
, _p_p_wxTextEntryDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxSingleChoiceDialog
, _p_p_wxSingleChoiceDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxMultiChoiceDialog
, _p_p_wxMultiChoiceDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxFileDialog
, _p_p_wxFileDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPanel
, _p_p_wxPanelTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxStatusBar
, _p_p_wxStatusBarTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyVScrolledWindow
, _p_p_wxPyVScrolledWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxTipWindow
, _p_p_wxTipWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyPopupTransientWindow
, _p_p_wxPyPopupTransientWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPopupWindow
, _p_p_wxPopupWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxSashLayoutWindow
, _p_p_wxSashLayoutWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxScrolledWindow
, _p_p_wxScrolledWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxTopLevelWindow
, _p_p_wxTopLevelWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxSplashScreenWindow
, _p_p_wxSplashScreenWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxSplitterWindow
, _p_p_wxSplitterWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxSashWindow
, _p_p_wxSashWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxMDIClientWindow
, _p_p_wxMDIClientWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyScrolledWindow
, _p_p_wxPyScrolledWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxWindow
, 0, 0, 0}, {&_swigt__p_p_wxPreviewFrame
, _p_p_wxPreviewFrameTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyPreviewFrame
, _p_p_wxPyPreviewFrameTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxControl
, _p_p_wxControlTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxMDIChildFrame
, _p_p_wxMDIChildFrameTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxControlWithItems
, _p_p_wxControlWithItemsTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyWindow
, _p_p_wxPyWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPreviewCanvas
, _p_p_wxPreviewCanvasTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxSimpleHtmlListBox
, _p_p_wxSimpleHtmlListBoxTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyHtmlListBox
, _p_p_wxPyHtmlListBoxTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyVListBox
, _p_p_wxPyVListBoxTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxAuiNotebook
, _p_p_wxAuiNotebookTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPreviewControlBar
, _p_p_wxPreviewControlBarTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyPreviewControlBar
, _p_p_wxPyPreviewControlBarTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxAuiTabCtrl
, _p_p_wxAuiTabCtrlTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxFrame
, _p_p_wxFrameTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxFontDialog
, _p_p_wxFontDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxDirDialog
, _p_p_wxDirDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxColourDialog
, _p_p_wxColourDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxDialog
, _p_p_wxDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxAuiFloatingFrame
, _p_p_wxAuiFloatingFrameTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxMDIParentFrame
, _p_p_wxMDIParentFrameTo_p_p_wxWindow
, 0, 0},{0, 0, 0, 0}};
18098 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
18099 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
18100 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
18101 static swig_cast_info _swigc__p_wxArrayString
[] = { {&_swigt__p_wxArrayString
, 0, 0, 0},{0, 0, 0, 0}};
18102 static swig_cast_info _swigc__p_wxAuiDefaultDockArt
[] = { {&_swigt__p_wxAuiDefaultDockArt
, 0, 0, 0}, {&_swigt__p_wxPyAuiDockArt
, _p_wxPyAuiDockArtTo_p_wxAuiDefaultDockArt
, 0, 0},{0, 0, 0, 0}};
18103 static swig_cast_info _swigc__p_wxAuiDefaultTabArt
[] = { {&_swigt__p_wxAuiDefaultTabArt
, 0, 0, 0}, {&_swigt__p_wxPyAuiTabArt
, _p_wxPyAuiTabArtTo_p_wxAuiDefaultTabArt
, 0, 0},{0, 0, 0, 0}};
18104 static swig_cast_info _swigc__p_wxAuiDockArt
[] = { {&_swigt__p_wxAuiDockArt
, 0, 0, 0}, {&_swigt__p_wxAuiDefaultDockArt
, _p_wxAuiDefaultDockArtTo_p_wxAuiDockArt
, 0, 0}, {&_swigt__p_wxPyAuiDockArt
, _p_wxPyAuiDockArtTo_p_wxAuiDockArt
, 0, 0},{0, 0, 0, 0}};
18105 static swig_cast_info _swigc__p_wxAuiDockInfo
[] = { {&_swigt__p_wxAuiDockInfo
, 0, 0, 0},{0, 0, 0, 0}};
18106 static swig_cast_info _swigc__p_wxAuiDockUIPart
[] = { {&_swigt__p_wxAuiDockUIPart
, 0, 0, 0},{0, 0, 0, 0}};
18107 static swig_cast_info _swigc__p_wxAuiFloatingFrame
[] = { {&_swigt__p_wxAuiFloatingFrame
, 0, 0, 0},{0, 0, 0, 0}};
18108 static swig_cast_info _swigc__p_wxAuiManager
[] = { {&_swigt__p_wxAuiManager
, 0, 0, 0},{0, 0, 0, 0}};
18109 static swig_cast_info _swigc__p_wxAuiManagerEvent
[] = { {&_swigt__p_wxAuiManagerEvent
, 0, 0, 0},{0, 0, 0, 0}};
18110 static swig_cast_info _swigc__p_wxAuiNotebook
[] = { {&_swigt__p_wxAuiNotebook
, 0, 0, 0},{0, 0, 0, 0}};
18111 static swig_cast_info _swigc__p_wxAuiNotebookEvent
[] = { {&_swigt__p_wxAuiNotebookEvent
, 0, 0, 0},{0, 0, 0, 0}};
18112 static swig_cast_info _swigc__p_wxAuiNotebookPage
[] = { {&_swigt__p_wxAuiNotebookPage
, 0, 0, 0},{0, 0, 0, 0}};
18113 static swig_cast_info _swigc__p_wxAuiNotebookPageArray
[] = { {&_swigt__p_wxAuiNotebookPageArray
, 0, 0, 0},{0, 0, 0, 0}};
18114 static swig_cast_info _swigc__p_wxAuiPaneButton
[] = { {&_swigt__p_wxAuiPaneButton
, 0, 0, 0},{0, 0, 0, 0}};
18115 static swig_cast_info _swigc__p_wxAuiPaneButtonArray
[] = { {&_swigt__p_wxAuiPaneButtonArray
, 0, 0, 0},{0, 0, 0, 0}};
18116 static swig_cast_info _swigc__p_wxAuiPaneInfo
[] = { {&_swigt__p_wxAuiPaneInfo
, 0, 0, 0},{0, 0, 0, 0}};
18117 static swig_cast_info _swigc__p_wxAuiPaneInfoPtrArray
[] = { {&_swigt__p_wxAuiPaneInfoPtrArray
, 0, 0, 0},{0, 0, 0, 0}};
18118 static swig_cast_info _swigc__p_wxAuiSimpleTabArt
[] = { {&_swigt__p_wxAuiSimpleTabArt
, 0, 0, 0},{0, 0, 0, 0}};
18119 static swig_cast_info _swigc__p_wxAuiTabArt
[] = { {&_swigt__p_wxAuiDefaultTabArt
, _p_wxAuiDefaultTabArtTo_p_wxAuiTabArt
, 0, 0}, {&_swigt__p_wxAuiTabArt
, 0, 0, 0}, {&_swigt__p_wxPyAuiTabArt
, _p_wxPyAuiTabArtTo_p_wxAuiTabArt
, 0, 0}, {&_swigt__p_wxAuiSimpleTabArt
, _p_wxAuiSimpleTabArtTo_p_wxAuiTabArt
, 0, 0},{0, 0, 0, 0}};
18120 static swig_cast_info _swigc__p_wxAuiTabContainer
[] = { {&_swigt__p_wxAuiTabContainer
, 0, 0, 0}, {&_swigt__p_wxAuiTabCtrl
, _p_wxAuiTabCtrlTo_p_wxAuiTabContainer
, 0, 0},{0, 0, 0, 0}};
18121 static swig_cast_info _swigc__p_wxAuiTabContainerButton
[] = { {&_swigt__p_wxAuiTabContainerButton
, 0, 0, 0},{0, 0, 0, 0}};
18122 static swig_cast_info _swigc__p_wxAuiTabCtrl
[] = { {&_swigt__p_wxAuiTabCtrl
, 0, 0, 0},{0, 0, 0, 0}};
18123 static swig_cast_info _swigc__p_wxBitmap
[] = { {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}};
18124 static swig_cast_info _swigc__p_wxColor
[] = { {&_swigt__p_wxColor
, 0, 0, 0},{0, 0, 0, 0}};
18125 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
18126 static swig_cast_info _swigc__p_wxSashEvent
[] = {{&_swigt__p_wxSashEvent
, 0, 0, 0},{0, 0, 0, 0}};
18127 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
18128 static swig_cast_info _swigc__p_wxSplitterEvent
[] = {{&_swigt__p_wxSplitterEvent
, 0, 0, 0},{0, 0, 0, 0}};
18129 static swig_cast_info _swigc__p_wxClipboardTextEvent
[] = {{&_swigt__p_wxClipboardTextEvent
, 0, 0, 0},{0, 0, 0, 0}};
18130 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
18131 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
18132 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
18133 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
18134 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
18135 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
18136 static swig_cast_info _swigc__p_wxFindDialogEvent
[] = {{&_swigt__p_wxFindDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
18137 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
18138 static swig_cast_info _swigc__p_wxCommandEvent
[] = { {&_swigt__p_wxSashEvent
, _p_wxSashEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxSplitterEvent
, _p_wxSplitterEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_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_wxAuiNotebookEvent
, _p_wxAuiNotebookEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxFindDialogEvent
, _p_wxFindDialogEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxCommandEvent
, 0, 0},{0, 0, 0, 0}};
18139 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
18140 static swig_cast_info _swigc__p_wxControl
[] = { {&_swigt__p_wxControl
, 0, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxControl
, 0, 0}, {&_swigt__p_wxAuiTabCtrl
, _p_wxAuiTabCtrlTo_p_wxControl
, 0, 0}, {&_swigt__p_wxAuiNotebook
, _p_wxAuiNotebookTo_p_wxControl
, 0, 0},{0, 0, 0, 0}};
18141 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
18142 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
18143 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
18144 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
18145 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
18146 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
18147 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
18148 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
18149 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
18150 static swig_cast_info _swigc__p_wxMouseCaptureLostEvent
[] = {{&_swigt__p_wxMouseCaptureLostEvent
, 0, 0, 0},{0, 0, 0, 0}};
18151 static swig_cast_info _swigc__p_wxCalculateLayoutEvent
[] = {{&_swigt__p_wxCalculateLayoutEvent
, 0, 0, 0},{0, 0, 0, 0}};
18152 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
18153 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
18154 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
18155 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
18156 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
18157 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
18158 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
18159 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
18160 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
18161 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
18162 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
18163 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
18164 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
18165 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
18166 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
18167 static swig_cast_info _swigc__p_wxQueryLayoutInfoEvent
[] = {{&_swigt__p_wxQueryLayoutInfoEvent
, 0, 0, 0},{0, 0, 0, 0}};
18168 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
18169 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
18170 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
18171 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
18172 static swig_cast_info _swigc__p_wxTaskBarIconEvent
[] = {{&_swigt__p_wxTaskBarIconEvent
, 0, 0, 0},{0, 0, 0, 0}};
18173 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_wxSetCursorEvent
, _p_wxSetCursorEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSplitterEvent
, _p_wxSplitterEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxAuiManagerEvent
, _p_wxAuiManagerEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxFindDialogEvent
, _p_wxFindDialogEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMouseCaptureLostEvent
, _p_wxMouseCaptureLostEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxCalculateLayoutEvent
, _p_wxCalculateLayoutEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxAuiNotebookEvent
, _p_wxAuiNotebookEventTo_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_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPaletteChangedEvent
, _p_wxPaletteChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxDisplayChangedEvent
, _p_wxDisplayChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMouseCaptureChangedEvent
, _p_wxMouseCaptureChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSysColourChangedEvent
, _p_wxSysColourChangedEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxDropFilesEvent
, _p_wxDropFilesEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxFocusEvent
, _p_wxFocusEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSashEvent
, _p_wxSashEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxQueryLayoutInfoEvent
, _p_wxQueryLayoutInfoEventTo_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_wxScrollWinEvent
, _p_wxScrollWinEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxTaskBarIconEvent
, _p_wxTaskBarIconEventTo_p_wxEvent
, 0, 0},{0, 0, 0, 0}};
18174 static swig_cast_info _swigc__p_wxSplashScreen
[] = {{&_swigt__p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
18175 static swig_cast_info _swigc__p_wxPyPanel
[] = {{&_swigt__p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
18176 static swig_cast_info _swigc__p_wxMenuBar
[] = {{&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
18177 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}};
18178 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
18179 static swig_cast_info _swigc__p_wxNumberEntryDialog
[] = {{&_swigt__p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
18180 static swig_cast_info _swigc__p_wxPasswordEntryDialog
[] = {{&_swigt__p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
18181 static swig_cast_info _swigc__p_wxFileDialog
[] = {{&_swigt__p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
18182 static swig_cast_info _swigc__p_wxFindReplaceDialog
[] = {{&_swigt__p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
18183 static swig_cast_info _swigc__p_wxProgressDialog
[] = {{&_swigt__p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
18184 static swig_cast_info _swigc__p_wxMessageDialog
[] = {{&_swigt__p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
18185 static swig_cast_info _swigc__p_wxTextEntryDialog
[] = {{&_swigt__p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
18186 static swig_cast_info _swigc__p_wxSingleChoiceDialog
[] = {{&_swigt__p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
18187 static swig_cast_info _swigc__p_wxMultiChoiceDialog
[] = {{&_swigt__p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
18188 static swig_cast_info _swigc__p_wxPanel
[] = {{&_swigt__p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}};
18189 static swig_cast_info _swigc__p_wxStatusBar
[] = {{&_swigt__p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
18190 static swig_cast_info _swigc__p_wxSashWindow
[] = {{&_swigt__p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}};
18191 static swig_cast_info _swigc__p_wxScrolledWindow
[] = {{&_swigt__p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
18192 static swig_cast_info _swigc__p_wxMDIClientWindow
[] = {{&_swigt__p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
18193 static swig_cast_info _swigc__p_wxPyScrolledWindow
[] = {{&_swigt__p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
18194 static swig_cast_info _swigc__p_wxSplitterWindow
[] = {{&_swigt__p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
18195 static swig_cast_info _swigc__p_wxSplashScreenWindow
[] = {{&_swigt__p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
18196 static swig_cast_info _swigc__p_wxSashLayoutWindow
[] = {{&_swigt__p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
18197 static swig_cast_info _swigc__p_wxPopupWindow
[] = {{&_swigt__p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}};
18198 static swig_cast_info _swigc__p_wxPyPopupTransientWindow
[] = {{&_swigt__p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}};
18199 static swig_cast_info _swigc__p_wxTipWindow
[] = {{&_swigt__p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
18200 static swig_cast_info _swigc__p_wxPyVScrolledWindow
[] = {{&_swigt__p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
18201 static swig_cast_info _swigc__p_wxPyPreviewFrame
[] = {{&_swigt__p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
18202 static swig_cast_info _swigc__p_wxPreviewFrame
[] = {{&_swigt__p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
18203 static swig_cast_info _swigc__p_wxMDIChildFrame
[] = {{&_swigt__p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
18204 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
18205 static swig_cast_info _swigc__p_wxPyWindow
[] = {{&_swigt__p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
18206 static swig_cast_info _swigc__p_wxPreviewCanvas
[] = {{&_swigt__p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
18207 static swig_cast_info _swigc__p_wxSimpleHtmlListBox
[] = {{&_swigt__p_wxSimpleHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
18208 static swig_cast_info _swigc__p_wxPyHtmlListBox
[] = {{&_swigt__p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
18209 static swig_cast_info _swigc__p_wxPyVListBox
[] = {{&_swigt__p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}};
18210 static swig_cast_info _swigc__p_wxPreviewControlBar
[] = {{&_swigt__p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
18211 static swig_cast_info _swigc__p_wxPyPreviewControlBar
[] = {{&_swigt__p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
18212 static swig_cast_info _swigc__p_wxPyTaskBarIcon
[] = {{&_swigt__p_wxPyTaskBarIcon
, 0, 0, 0},{0, 0, 0, 0}};
18213 static swig_cast_info _swigc__p_wxFontDialog
[] = {{&_swigt__p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
18214 static swig_cast_info _swigc__p_wxDirDialog
[] = {{&_swigt__p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
18215 static swig_cast_info _swigc__p_wxColourDialog
[] = {{&_swigt__p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
18216 static swig_cast_info _swigc__p_wxDialog
[] = {{&_swigt__p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}};
18217 static swig_cast_info _swigc__p_wxMenu
[] = {{&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
18218 static swig_cast_info _swigc__p_wxMDIParentFrame
[] = {{&_swigt__p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
18219 static swig_cast_info _swigc__p_wxEvtHandler
[] = { {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxEvtHandler
, 0, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSimpleHtmlListBox
, _p_wxSimpleHtmlListBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxAuiNotebook
, _p_wxAuiNotebookTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyTaskBarIcon
, _p_wxPyTaskBarIconTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxAuiTabCtrl
, _p_wxAuiTabCtrlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMenu
, _p_wxMenuTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxAuiManager
, _p_wxAuiManagerTo_p_wxEvtHandler
, 0, 0},{0, 0, 0, 0}};
18220 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
18221 static swig_cast_info _swigc__p_wxFrame
[] = { {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxFrame
, 0, 0, 0}, {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxFrame
, 0, 0},{0, 0, 0, 0}};
18222 static swig_cast_info _swigc__p_wxMiniFrame
[] = { {&_swigt__p_wxMiniFrame
, 0, 0, 0}, {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxMiniFrame
, 0, 0},{0, 0, 0, 0}};
18223 static swig_cast_info _swigc__p_wxNotifyEvent
[] = { {&_swigt__p_wxSplitterEvent
, _p_wxSplitterEventTo_p_wxNotifyEvent
, 0, 0}, {&_swigt__p_wxAuiNotebookEvent
, _p_wxAuiNotebookEventTo_p_wxNotifyEvent
, 0, 0}, {&_swigt__p_wxNotifyEvent
, 0, 0, 0},{0, 0, 0, 0}};
18224 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
18225 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
18226 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
18227 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
18228 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
18229 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
18230 static swig_cast_info _swigc__p_wxFontData
[] = {{&_swigt__p_wxFontData
, 0, 0, 0},{0, 0, 0, 0}};
18231 static swig_cast_info _swigc__p_wxPrintData
[] = {{&_swigt__p_wxPrintData
, 0, 0, 0},{0, 0, 0, 0}};
18232 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
18233 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
18234 static swig_cast_info _swigc__p_wxLayoutAlgorithm
[] = {{&_swigt__p_wxLayoutAlgorithm
, 0, 0, 0},{0, 0, 0, 0}};
18235 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
18236 static swig_cast_info _swigc__p_wxFindReplaceData
[] = {{&_swigt__p_wxFindReplaceData
, 0, 0, 0},{0, 0, 0, 0}};
18237 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
18238 static swig_cast_info _swigc__p_wxColourData
[] = {{&_swigt__p_wxColourData
, 0, 0, 0},{0, 0, 0, 0}};
18239 static swig_cast_info _swigc__p_wxPrinter
[] = {{&_swigt__p_wxPrinter
, 0, 0, 0},{0, 0, 0, 0}};
18240 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
18241 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
18242 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
18243 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
18244 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
18245 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
18246 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
18247 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
18248 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
18249 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
18250 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
18251 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
18252 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
18253 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
18254 static swig_cast_info _swigc__p_wxTGAHandler
[] = {{&_swigt__p_wxTGAHandler
, 0, 0, 0},{0, 0, 0, 0}};
18255 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
18256 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
18257 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
18258 static swig_cast_info _swigc__p_wxPyPrintout
[] = {{&_swigt__p_wxPyPrintout
, 0, 0, 0},{0, 0, 0, 0}};
18259 static swig_cast_info _swigc__p_wxPrintPreview
[] = {{&_swigt__p_wxPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
18260 static swig_cast_info _swigc__p_wxPyPrintPreview
[] = {{&_swigt__p_wxPyPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
18261 static swig_cast_info _swigc__p_wxPageSetupDialog
[] = {{&_swigt__p_wxPageSetupDialog
, 0, 0, 0},{0, 0, 0, 0}};
18262 static swig_cast_info _swigc__p_wxPrintDialog
[] = {{&_swigt__p_wxPrintDialog
, 0, 0, 0},{0, 0, 0, 0}};
18263 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
18264 static swig_cast_info _swigc__p_wxPageSetupDialogData
[] = {{&_swigt__p_wxPageSetupDialogData
, 0, 0, 0},{0, 0, 0, 0}};
18265 static swig_cast_info _swigc__p_wxPrintDialogData
[] = {{&_swigt__p_wxPrintDialogData
, 0, 0, 0},{0, 0, 0, 0}};
18266 static swig_cast_info _swigc__p_wxObject
[] = { {&_swigt__p_wxQueryLayoutInfoEvent
, _p_wxQueryLayoutInfoEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxLayoutConstraints
, _p_wxLayoutConstraintsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizerItem
, _p_wxSizerItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGBSizerItem
, _p_wxGBSizerItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_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_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenu
, _p_wxMenuTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFontData
, _p_wxFontDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintData
, _p_wxPrintDataTo_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_wxPyTaskBarIcon
, _p_wxPyTaskBarIconTo_p_wxObject
, 0, 0}, {&_swigt__p_wxLayoutAlgorithm
, _p_wxLayoutAlgorithmTo_p_wxObject
, 0, 0}, {&_swigt__p_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFindDialogEvent
, _p_wxFindDialogEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAuiTabCtrl
, _p_wxAuiTabCtrlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPaintEvent
, _p_wxPaintEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNcPaintEvent
, _p_wxNcPaintEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_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_wxSysColourChangedEvent
, _p_wxSysColourChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxObject
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSetCursorEvent
, _p_wxSetCursorEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplitterEvent
, _p_wxSplitterEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAuiManagerEvent
, _p_wxAuiManagerEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFSFile
, _p_wxFSFileTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFindReplaceData
, _p_wxFindReplaceDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPySizer
, _p_wxPySizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAuiNotebook
, _p_wxAuiNotebookTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxColourData
, _p_wxColourDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxShowEvent
, _p_wxShowEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrinter
, _p_wxPrinterTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxQueryNewPaletteEvent
, _p_wxQueryNewPaletteEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMaximizeEvent
, _p_wxMaximizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIconizeEvent
, _p_wxIconizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxActivateEvent
, _p_wxActivateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizeEvent
, _p_wxSizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMoveEvent
, _p_wxMoveEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuItem
, _p_wxMenuItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMouseCaptureLostEvent
, _p_wxMouseCaptureLostEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCalculateLayoutEvent
, _p_wxCalculateLayoutEventTo_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_wxANIHandler
, _p_wxANIHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCURHandler
, _p_wxCURHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxICOHandler
, _p_wxICOHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBMPHandler
, _p_wxBMPHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyImageHandler
, _p_wxPyImageHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxImageHandler
, _p_wxImageHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxXPMHandler
, _p_wxXPMHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTIFFHandler
, _p_wxTIFFHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTGAHandler
, _p_wxTGAHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEvtHandler
, _p_wxEvtHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSimpleHtmlListBox
, _p_wxSimpleHtmlListBoxTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStdDialogButtonSizer
, _p_wxStdDialogButtonSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAcceleratorTable
, _p_wxAcceleratorTableTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxImage
, _p_wxImageTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPrintout
, _p_wxPyPrintoutTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTaskBarIconEvent
, _p_wxTaskBarIconEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrollWinEvent
, _p_wxScrollWinEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAuiManager
, _p_wxAuiManagerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAuiNotebookEvent
, _p_wxAuiNotebookEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_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_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSashEvent
, _p_wxSashEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintPreview
, _p_wxPrintPreviewTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPrintPreview
, _p_wxPyPrintPreviewTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPageSetupDialog
, _p_wxPageSetupDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintDialog
, _p_wxPrintDialogTo_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_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_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_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_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPageSetupDialogData
, _p_wxPageSetupDialogDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintDialogData
, _p_wxPrintDialogDataTo_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}};
18267 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
18268 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
18269 static swig_cast_info _swigc__p_wxPyAuiDockArt
[] = { {&_swigt__p_wxPyAuiDockArt
, 0, 0, 0},{0, 0, 0, 0}};
18270 static swig_cast_info _swigc__p_wxPyAuiTabArt
[] = { {&_swigt__p_wxPyAuiTabArt
, 0, 0, 0},{0, 0, 0, 0}};
18271 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
18272 static swig_cast_info _swigc__p_wxSize
[] = { {&_swigt__p_wxSize
, 0, 0, 0},{0, 0, 0, 0}};
18273 static swig_cast_info _swigc__p_wxSizer
[] = { {&_swigt__p_wxSizer
, 0, 0, 0}, {&_swigt__p_wxBoxSizer
, _p_wxBoxSizerTo_p_wxSizer
, 0, 0}, {&_swigt__p_wxStaticBoxSizer
, _p_wxStaticBoxSizerTo_p_wxSizer
, 0, 0}, {&_swigt__p_wxStdDialogButtonSizer
, _p_wxStdDialogButtonSizerTo_p_wxSizer
, 0, 0}, {&_swigt__p_wxGridBagSizer
, _p_wxGridBagSizerTo_p_wxSizer
, 0, 0}, {&_swigt__p_wxGridSizer
, _p_wxGridSizerTo_p_wxSizer
, 0, 0}, {&_swigt__p_wxFlexGridSizer
, _p_wxFlexGridSizerTo_p_wxSizer
, 0, 0}, {&_swigt__p_wxPySizer
, _p_wxPySizerTo_p_wxSizer
, 0, 0},{0, 0, 0, 0}};
18274 static swig_cast_info _swigc__p_wxSizerItem
[] = { {&_swigt__p_wxSizerItem
, 0, 0, 0}, {&_swigt__p_wxGBSizerItem
, _p_wxGBSizerItemTo_p_wxSizerItem
, 0, 0},{0, 0, 0, 0}};
18275 static swig_cast_info _swigc__p_wxString
[] = { {&_swigt__p_wxString
, 0, 0, 0},{0, 0, 0, 0}};
18276 static swig_cast_info _swigc__p_wxTopLevelWindow
[] = { {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, 0, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxTopLevelWindow
, 0, 0},{0, 0, 0, 0}};
18277 static swig_cast_info _swigc__p_wxWindow
[] = { {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxWindow
, 0, 0, 0}, {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSimpleHtmlListBox
, _p_wxSimpleHtmlListBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxAuiNotebook
, _p_wxAuiNotebookTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxAuiTabCtrl
, _p_wxAuiTabCtrlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxWindow
, 0, 0},{0, 0, 0, 0}};
18279 static swig_cast_info
*swig_cast_initial
[] = {
18282 _swigc__p_form_ops_t
,
18284 _swigc__p_p_wxAuiFloatingFrame
,
18285 _swigc__p_p_wxAuiNotebook
,
18286 _swigc__p_p_wxAuiTabContainerButton
,
18287 _swigc__p_p_wxAuiTabCtrl
,
18288 _swigc__p_p_wxColourDialog
,
18289 _swigc__p_p_wxControl
,
18290 _swigc__p_p_wxControlWithItems
,
18291 _swigc__p_p_wxDialog
,
18292 _swigc__p_p_wxDirDialog
,
18293 _swigc__p_p_wxFileDialog
,
18294 _swigc__p_p_wxFindReplaceDialog
,
18295 _swigc__p_p_wxFontDialog
,
18296 _swigc__p_p_wxFrame
,
18297 _swigc__p_p_wxMDIChildFrame
,
18298 _swigc__p_p_wxMDIClientWindow
,
18299 _swigc__p_p_wxMDIParentFrame
,
18300 _swigc__p_p_wxMenuBar
,
18301 _swigc__p_p_wxMessageDialog
,
18302 _swigc__p_p_wxMiniFrame
,
18303 _swigc__p_p_wxMultiChoiceDialog
,
18304 _swigc__p_p_wxNumberEntryDialog
,
18305 _swigc__p_p_wxPanel
,
18306 _swigc__p_p_wxPasswordEntryDialog
,
18307 _swigc__p_p_wxPopupWindow
,
18308 _swigc__p_p_wxPreviewCanvas
,
18309 _swigc__p_p_wxPreviewControlBar
,
18310 _swigc__p_p_wxPreviewFrame
,
18311 _swigc__p_p_wxProgressDialog
,
18312 _swigc__p_p_wxPyHtmlListBox
,
18313 _swigc__p_p_wxPyPanel
,
18314 _swigc__p_p_wxPyPopupTransientWindow
,
18315 _swigc__p_p_wxPyPreviewControlBar
,
18316 _swigc__p_p_wxPyPreviewFrame
,
18317 _swigc__p_p_wxPyScrolledWindow
,
18318 _swigc__p_p_wxPyVListBox
,
18319 _swigc__p_p_wxPyVScrolledWindow
,
18320 _swigc__p_p_wxPyWindow
,
18321 _swigc__p_p_wxSashLayoutWindow
,
18322 _swigc__p_p_wxSashWindow
,
18323 _swigc__p_p_wxScrolledWindow
,
18324 _swigc__p_p_wxSimpleHtmlListBox
,
18325 _swigc__p_p_wxSingleChoiceDialog
,
18326 _swigc__p_p_wxSplashScreen
,
18327 _swigc__p_p_wxSplashScreenWindow
,
18328 _swigc__p_p_wxSplitterWindow
,
18329 _swigc__p_p_wxStatusBar
,
18330 _swigc__p_p_wxTextEntryDialog
,
18331 _swigc__p_p_wxTipWindow
,
18332 _swigc__p_p_wxTopLevelWindow
,
18333 _swigc__p_p_wxWindow
,
18334 _swigc__p_unsigned_char
,
18335 _swigc__p_unsigned_int
,
18336 _swigc__p_unsigned_long
,
18337 _swigc__p_wxANIHandler
,
18338 _swigc__p_wxAcceleratorTable
,
18339 _swigc__p_wxActivateEvent
,
18340 _swigc__p_wxArrayString
,
18341 _swigc__p_wxAuiDefaultDockArt
,
18342 _swigc__p_wxAuiDefaultTabArt
,
18343 _swigc__p_wxAuiDockArt
,
18344 _swigc__p_wxAuiDockInfo
,
18345 _swigc__p_wxAuiDockUIPart
,
18346 _swigc__p_wxAuiFloatingFrame
,
18347 _swigc__p_wxAuiManager
,
18348 _swigc__p_wxAuiManagerEvent
,
18349 _swigc__p_wxAuiNotebook
,
18350 _swigc__p_wxAuiNotebookEvent
,
18351 _swigc__p_wxAuiNotebookPage
,
18352 _swigc__p_wxAuiNotebookPageArray
,
18353 _swigc__p_wxAuiPaneButton
,
18354 _swigc__p_wxAuiPaneButtonArray
,
18355 _swigc__p_wxAuiPaneInfo
,
18356 _swigc__p_wxAuiPaneInfoPtrArray
,
18357 _swigc__p_wxAuiSimpleTabArt
,
18358 _swigc__p_wxAuiTabArt
,
18359 _swigc__p_wxAuiTabContainer
,
18360 _swigc__p_wxAuiTabContainerButton
,
18361 _swigc__p_wxAuiTabCtrl
,
18362 _swigc__p_wxBMPHandler
,
18363 _swigc__p_wxBitmap
,
18364 _swigc__p_wxBoxSizer
,
18365 _swigc__p_wxCURHandler
,
18366 _swigc__p_wxCalculateLayoutEvent
,
18367 _swigc__p_wxChildFocusEvent
,
18368 _swigc__p_wxClipboardTextEvent
,
18369 _swigc__p_wxCloseEvent
,
18371 _swigc__p_wxColour
,
18372 _swigc__p_wxColourData
,
18373 _swigc__p_wxColourDialog
,
18374 _swigc__p_wxCommandEvent
,
18375 _swigc__p_wxContextMenuEvent
,
18376 _swigc__p_wxControl
,
18377 _swigc__p_wxControlWithItems
,
18379 _swigc__p_wxDateEvent
,
18380 _swigc__p_wxDialog
,
18381 _swigc__p_wxDirDialog
,
18382 _swigc__p_wxDisplayChangedEvent
,
18383 _swigc__p_wxDropFilesEvent
,
18384 _swigc__p_wxDuplexMode
,
18385 _swigc__p_wxEraseEvent
,
18387 _swigc__p_wxEvtHandler
,
18388 _swigc__p_wxFSFile
,
18389 _swigc__p_wxFileDialog
,
18390 _swigc__p_wxFileSystem
,
18391 _swigc__p_wxFindDialogEvent
,
18392 _swigc__p_wxFindReplaceData
,
18393 _swigc__p_wxFindReplaceDialog
,
18394 _swigc__p_wxFlexGridSizer
,
18395 _swigc__p_wxFocusEvent
,
18397 _swigc__p_wxFontData
,
18398 _swigc__p_wxFontDialog
,
18400 _swigc__p_wxGBSizerItem
,
18401 _swigc__p_wxGIFHandler
,
18402 _swigc__p_wxGridBagSizer
,
18403 _swigc__p_wxGridSizer
,
18404 _swigc__p_wxICOHandler
,
18405 _swigc__p_wxIconizeEvent
,
18406 _swigc__p_wxIdleEvent
,
18408 _swigc__p_wxImageHandler
,
18409 _swigc__p_wxIndividualLayoutConstraint
,
18410 _swigc__p_wxInitDialogEvent
,
18411 _swigc__p_wxJPEGHandler
,
18412 _swigc__p_wxKeyEvent
,
18413 _swigc__p_wxLayoutAlgorithm
,
18414 _swigc__p_wxLayoutConstraints
,
18415 _swigc__p_wxMDIChildFrame
,
18416 _swigc__p_wxMDIClientWindow
,
18417 _swigc__p_wxMDIParentFrame
,
18418 _swigc__p_wxMaximizeEvent
,
18420 _swigc__p_wxMenuBar
,
18421 _swigc__p_wxMenuEvent
,
18422 _swigc__p_wxMenuItem
,
18423 _swigc__p_wxMessageDialog
,
18424 _swigc__p_wxMiniFrame
,
18425 _swigc__p_wxMouseCaptureChangedEvent
,
18426 _swigc__p_wxMouseCaptureLostEvent
,
18427 _swigc__p_wxMouseEvent
,
18428 _swigc__p_wxMoveEvent
,
18429 _swigc__p_wxMultiChoiceDialog
,
18430 _swigc__p_wxNavigationKeyEvent
,
18431 _swigc__p_wxNcPaintEvent
,
18432 _swigc__p_wxNotifyEvent
,
18433 _swigc__p_wxNumberEntryDialog
,
18434 _swigc__p_wxObject
,
18435 _swigc__p_wxPCXHandler
,
18436 _swigc__p_wxPNGHandler
,
18437 _swigc__p_wxPNMHandler
,
18438 _swigc__p_wxPageSetupDialog
,
18439 _swigc__p_wxPageSetupDialogData
,
18440 _swigc__p_wxPaintEvent
,
18441 _swigc__p_wxPaletteChangedEvent
,
18443 _swigc__p_wxPaperSize
,
18444 _swigc__p_wxPasswordEntryDialog
,
18446 _swigc__p_wxPopupWindow
,
18447 _swigc__p_wxPreviewCanvas
,
18448 _swigc__p_wxPreviewControlBar
,
18449 _swigc__p_wxPreviewFrame
,
18450 _swigc__p_wxPrintData
,
18451 _swigc__p_wxPrintDialog
,
18452 _swigc__p_wxPrintDialogData
,
18453 _swigc__p_wxPrintPreview
,
18454 _swigc__p_wxPrinter
,
18455 _swigc__p_wxProgressDialog
,
18457 _swigc__p_wxPyAuiDockArt
,
18458 _swigc__p_wxPyAuiTabArt
,
18459 _swigc__p_wxPyCommandEvent
,
18460 _swigc__p_wxPyEvent
,
18461 _swigc__p_wxPyHtmlListBox
,
18462 _swigc__p_wxPyImageHandler
,
18463 _swigc__p_wxPyPanel
,
18464 _swigc__p_wxPyPopupTransientWindow
,
18465 _swigc__p_wxPyPreviewControlBar
,
18466 _swigc__p_wxPyPreviewFrame
,
18467 _swigc__p_wxPyPrintPreview
,
18468 _swigc__p_wxPyPrintout
,
18469 _swigc__p_wxPyScrolledWindow
,
18470 _swigc__p_wxPySizer
,
18471 _swigc__p_wxPyTaskBarIcon
,
18472 _swigc__p_wxPyVListBox
,
18473 _swigc__p_wxPyVScrolledWindow
,
18474 _swigc__p_wxPyValidator
,
18475 _swigc__p_wxPyWindow
,
18476 _swigc__p_wxQueryLayoutInfoEvent
,
18477 _swigc__p_wxQueryNewPaletteEvent
,
18479 _swigc__p_wxSashEvent
,
18480 _swigc__p_wxSashLayoutWindow
,
18481 _swigc__p_wxSashWindow
,
18482 _swigc__p_wxScrollEvent
,
18483 _swigc__p_wxScrollWinEvent
,
18484 _swigc__p_wxScrolledWindow
,
18485 _swigc__p_wxSetCursorEvent
,
18486 _swigc__p_wxShowEvent
,
18487 _swigc__p_wxSimpleHtmlListBox
,
18488 _swigc__p_wxSingleChoiceDialog
,
18490 _swigc__p_wxSizeEvent
,
18492 _swigc__p_wxSizerItem
,
18493 _swigc__p_wxSplashScreen
,
18494 _swigc__p_wxSplashScreenWindow
,
18495 _swigc__p_wxSplitterEvent
,
18496 _swigc__p_wxSplitterWindow
,
18497 _swigc__p_wxStaticBoxSizer
,
18498 _swigc__p_wxStatusBar
,
18499 _swigc__p_wxStdDialogButtonSizer
,
18500 _swigc__p_wxString
,
18501 _swigc__p_wxSysColourChangedEvent
,
18502 _swigc__p_wxTGAHandler
,
18503 _swigc__p_wxTIFFHandler
,
18504 _swigc__p_wxTaskBarIconEvent
,
18505 _swigc__p_wxTextEntryDialog
,
18506 _swigc__p_wxTipWindow
,
18507 _swigc__p_wxTopLevelWindow
,
18508 _swigc__p_wxUpdateUIEvent
,
18509 _swigc__p_wxValidator
,
18510 _swigc__p_wxWindow
,
18511 _swigc__p_wxWindowCreateEvent
,
18512 _swigc__p_wxWindowDestroyEvent
,
18513 _swigc__p_wxXPMHandler
,
18517 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
18519 static swig_const_info swig_const_table
[] = {
18520 {0, 0, 0, 0.0, 0, 0}};
18525 /* -----------------------------------------------------------------------------
18526 * Type initialization:
18527 * This problem is tough by the requirement that no dynamic
18528 * memory is used. Also, since swig_type_info structures store pointers to
18529 * swig_cast_info structures and swig_cast_info structures store pointers back
18530 * to swig_type_info structures, we need some lookup code at initialization.
18531 * The idea is that swig generates all the structures that are needed.
18532 * The runtime then collects these partially filled structures.
18533 * The SWIG_InitializeModule function takes these initial arrays out of
18534 * swig_module, and does all the lookup, filling in the swig_module.types
18535 * array with the correct data and linking the correct swig_cast_info
18536 * structures together.
18538 * The generated swig_type_info structures are assigned staticly to an initial
18539 * array. We just loop though that array, and handle each type individually.
18540 * First we lookup if this type has been already loaded, and if so, use the
18541 * loaded structure instead of the generated one. Then we have to fill in the
18542 * cast linked list. The cast data is initially stored in something like a
18543 * two-dimensional array. Each row corresponds to a type (there are the same
18544 * number of rows as there are in the swig_type_initial array). Each entry in
18545 * a column is one of the swig_cast_info structures for that type.
18546 * The cast_initial array is actually an array of arrays, because each row has
18547 * a variable number of columns. So to actually build the cast linked list,
18548 * we find the array of casts associated with the type, and loop through it
18549 * adding the casts to the list. The one last trick we need to do is making
18550 * sure the type pointer in the swig_cast_info struct is correct.
18552 * First off, we lookup the cast->type name to see if it is already loaded.
18553 * There are three cases to handle:
18554 * 1) If the cast->type has already been loaded AND the type we are adding
18555 * casting info to has not been loaded (it is in this module), THEN we
18556 * replace the cast->type pointer with the type pointer that has already
18558 * 2) If BOTH types (the one we are adding casting info to, and the
18559 * cast->type) are loaded, THEN the cast info has already been loaded by
18560 * the previous module so we just ignore it.
18561 * 3) Finally, if cast->type has not already been loaded, then we add that
18562 * swig_cast_info to the linked list (because the cast->type) pointer will
18564 * ----------------------------------------------------------------------------- */
18574 #define SWIGRUNTIME_DEBUG
18578 SWIG_InitializeModule(void *clientdata
) {
18580 swig_module_info
*module_head
;
18581 static int init_run
= 0;
18583 clientdata
= clientdata
;
18585 if (init_run
) return;
18588 /* Initialize the swig_module */
18589 swig_module
.type_initial
= swig_type_initial
;
18590 swig_module
.cast_initial
= swig_cast_initial
;
18592 /* Try and load any already created modules */
18593 module_head
= SWIG_GetModule(clientdata
);
18595 swig_module
.next
= module_head
->next
;
18596 module_head
->next
= &swig_module
;
18598 /* This is the first module loaded */
18599 swig_module
.next
= &swig_module
;
18600 SWIG_SetModule(clientdata
, &swig_module
);
18603 /* Now work on filling in swig_module.types */
18604 #ifdef SWIGRUNTIME_DEBUG
18605 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
18607 for (i
= 0; i
< swig_module
.size
; ++i
) {
18608 swig_type_info
*type
= 0;
18609 swig_type_info
*ret
;
18610 swig_cast_info
*cast
;
18612 #ifdef SWIGRUNTIME_DEBUG
18613 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
18616 /* if there is another module already loaded */
18617 if (swig_module
.next
!= &swig_module
) {
18618 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
18621 /* Overwrite clientdata field */
18622 #ifdef SWIGRUNTIME_DEBUG
18623 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
18625 if (swig_module
.type_initial
[i
]->clientdata
) {
18626 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
18627 #ifdef SWIGRUNTIME_DEBUG
18628 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
18632 type
= swig_module
.type_initial
[i
];
18635 /* Insert casting types */
18636 cast
= swig_module
.cast_initial
[i
];
18637 while (cast
->type
) {
18638 /* Don't need to add information already in the list */
18640 #ifdef SWIGRUNTIME_DEBUG
18641 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
18643 if (swig_module
.next
!= &swig_module
) {
18644 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
18645 #ifdef SWIGRUNTIME_DEBUG
18646 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
18650 if (type
== swig_module
.type_initial
[i
]) {
18651 #ifdef SWIGRUNTIME_DEBUG
18652 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
18657 /* Check for casting already in the list */
18658 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
18659 #ifdef SWIGRUNTIME_DEBUG
18660 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
18662 if (!ocast
) ret
= 0;
18667 #ifdef SWIGRUNTIME_DEBUG
18668 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
18671 type
->cast
->prev
= cast
;
18672 cast
->next
= type
->cast
;
18678 /* Set entry in modules->types array equal to the type */
18679 swig_module
.types
[i
] = type
;
18681 swig_module
.types
[i
] = 0;
18683 #ifdef SWIGRUNTIME_DEBUG
18684 printf("**** SWIG_InitializeModule: Cast List ******\n");
18685 for (i
= 0; i
< swig_module
.size
; ++i
) {
18687 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
18688 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
18689 while (cast
->type
) {
18690 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
18694 printf("---- Total casts: %d\n",j
);
18696 printf("**** SWIG_InitializeModule: Cast List ******\n");
18700 /* This function will propagate the clientdata field of type to
18701 * any new swig_type_info structures that have been added into the list
18702 * of equivalent types. It is like calling
18703 * SWIG_TypeClientData(type, clientdata) a second time.
18706 SWIG_PropagateClientData(void) {
18708 swig_cast_info
*equiv
;
18709 static int init_run
= 0;
18711 if (init_run
) return;
18714 for (i
= 0; i
< swig_module
.size
; i
++) {
18715 if (swig_module
.types
[i
]->clientdata
) {
18716 equiv
= swig_module
.types
[i
]->cast
;
18718 if (!equiv
->converter
) {
18719 if (equiv
->type
&& !equiv
->type
->clientdata
)
18720 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
18722 equiv
= equiv
->next
;
18742 /* Python-specific SWIG API */
18743 #define SWIG_newvarlink() SWIG_Python_newvarlink()
18744 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
18745 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
18747 /* -----------------------------------------------------------------------------
18748 * global variable support code.
18749 * ----------------------------------------------------------------------------- */
18751 typedef struct swig_globalvar
{
18752 char *name
; /* Name of global variable */
18753 PyObject
*(*get_attr
)(void); /* Return the current value */
18754 int (*set_attr
)(PyObject
*); /* Set the value */
18755 struct swig_globalvar
*next
;
18758 typedef struct swig_varlinkobject
{
18760 swig_globalvar
*vars
;
18761 } swig_varlinkobject
;
18763 SWIGINTERN PyObject
*
18764 swig_varlink_repr(swig_varlinkobject
*SWIGUNUSEDPARM(v
)) {
18765 return PyString_FromString("<Swig global variables>");
18768 SWIGINTERN PyObject
*
18769 swig_varlink_str(swig_varlinkobject
*v
) {
18770 PyObject
*str
= PyString_FromString("(");
18771 swig_globalvar
*var
;
18772 for (var
= v
->vars
; var
; var
=var
->next
) {
18773 PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
));
18774 if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", "));
18776 PyString_ConcatAndDel(&str
,PyString_FromString(")"));
18781 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) {
18782 PyObject
*str
= swig_varlink_str(v
);
18783 fprintf(fp
,"Swig global variables ");
18784 fprintf(fp
,"%s\n", PyString_AsString(str
));
18790 swig_varlink_dealloc(swig_varlinkobject
*v
) {
18791 swig_globalvar
*var
= v
->vars
;
18793 swig_globalvar
*n
= var
->next
;
18800 SWIGINTERN PyObject
*
18801 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
18802 PyObject
*res
= NULL
;
18803 swig_globalvar
*var
= v
->vars
;
18805 if (strcmp(var
->name
,n
) == 0) {
18806 res
= (*var
->get_attr
)();
18811 if (res
== NULL
&& !PyErr_Occurred()) {
18812 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
18818 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
18820 swig_globalvar
*var
= v
->vars
;
18822 if (strcmp(var
->name
,n
) == 0) {
18823 res
= (*var
->set_attr
)(p
);
18828 if (res
== 1 && !PyErr_Occurred()) {
18829 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
18834 SWIGINTERN PyTypeObject
*
18835 swig_varlink_type(void) {
18836 static char varlink__doc__
[] = "Swig var link object";
18837 static PyTypeObject varlink_type
;
18838 static int type_init
= 0;
18840 const PyTypeObject tmp
18842 PyObject_HEAD_INIT(NULL
)
18843 0, /* Number of items in variable part (ob_size) */
18844 (char *)"swigvarlink", /* Type name (tp_name) */
18845 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
18846 0, /* Itemsize (tp_itemsize) */
18847 (destructor
) swig_varlink_dealloc
, /* Deallocator (tp_dealloc) */
18848 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
18849 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
18850 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
18851 0, /* tp_compare */
18852 (reprfunc
) swig_varlink_repr
, /* tp_repr */
18853 0, /* tp_as_number */
18854 0, /* tp_as_sequence */
18855 0, /* tp_as_mapping */
18858 (reprfunc
)swig_varlink_str
, /* tp_str */
18859 0, /* tp_getattro */
18860 0, /* tp_setattro */
18861 0, /* tp_as_buffer */
18863 varlink__doc__
, /* tp_doc */
18864 0, /* tp_traverse */
18866 0, /* tp_richcompare */
18867 0, /* tp_weaklistoffset */
18868 #if PY_VERSION_HEX >= 0x02020000
18869 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
18871 #if PY_VERSION_HEX >= 0x02030000
18874 #ifdef COUNT_ALLOCS
18875 0,0,0,0 /* tp_alloc -> tp_next */
18878 varlink_type
= tmp
;
18879 varlink_type
.ob_type
= &PyType_Type
;
18882 return &varlink_type
;
18885 /* Create a variable linking object for use later */
18886 SWIGINTERN PyObject
*
18887 SWIG_Python_newvarlink(void) {
18888 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
18892 return ((PyObject
*) result
);
18896 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
18897 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
18898 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
18900 size_t size
= strlen(name
)+1;
18901 gv
->name
= (char *)malloc(size
);
18903 strncpy(gv
->name
,name
,size
);
18904 gv
->get_attr
= get_attr
;
18905 gv
->set_attr
= set_attr
;
18906 gv
->next
= v
->vars
;
18912 SWIGINTERN PyObject
*
18914 static PyObject
*_SWIG_globals
= 0;
18915 if (!_SWIG_globals
) _SWIG_globals
= SWIG_newvarlink();
18916 return _SWIG_globals
;
18919 /* -----------------------------------------------------------------------------
18920 * constants/methods manipulation
18921 * ----------------------------------------------------------------------------- */
18923 /* Install Constants */
18925 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
18928 for (i
= 0; constants
[i
].type
; ++i
) {
18929 switch(constants
[i
].type
) {
18930 case SWIG_PY_POINTER
:
18931 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
18933 case SWIG_PY_BINARY
:
18934 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
18941 PyDict_SetItemString(d
, constants
[i
].name
, obj
);
18947 /* -----------------------------------------------------------------------------*/
18948 /* Fix SwigMethods to carry the callback ptrs when needed */
18949 /* -----------------------------------------------------------------------------*/
18952 SWIG_Python_FixMethods(PyMethodDef
*methods
,
18953 swig_const_info
*const_table
,
18954 swig_type_info
**types
,
18955 swig_type_info
**types_initial
) {
18957 for (i
= 0; methods
[i
].ml_name
; ++i
) {
18958 const char *c
= methods
[i
].ml_doc
;
18959 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
18961 swig_const_info
*ci
= 0;
18962 const char *name
= c
+ 10;
18963 for (j
= 0; const_table
[j
].type
; ++j
) {
18964 if (strncmp(const_table
[j
].name
, name
,
18965 strlen(const_table
[j
].name
)) == 0) {
18966 ci
= &(const_table
[j
]);
18971 size_t shift
= (ci
->ptype
) - types
;
18972 swig_type_info
*ty
= types_initial
[shift
];
18973 size_t ldoc
= (c
- methods
[i
].ml_doc
);
18974 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
18975 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
18978 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
18980 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
18982 strncpy(buff
, "swig_ptr: ", 10);
18984 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
18985 methods
[i
].ml_doc
= ndoc
;
18997 /* -----------------------------------------------------------------------------*
18998 * Partial Init method
18999 * -----------------------------------------------------------------------------*/
19004 SWIGEXPORT
void SWIG_init(void) {
19007 /* Fix SwigMethods to carry the callback ptrs when needed */
19008 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
19010 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
19011 d
= PyModule_GetDict(m
);
19013 SWIG_InitializeModule(0);
19014 SWIG_InstallConstants(d
,swig_const_table
);
19017 SWIG_Python_SetConstant(d
, "USE_AUI",SWIG_From_int(static_cast< int >(1)));
19018 SWIG_Python_SetConstant(d
, "AUI_DOCK_NONE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_NONE
)));
19019 SWIG_Python_SetConstant(d
, "AUI_DOCK_TOP",SWIG_From_int(static_cast< int >(wxAUI_DOCK_TOP
)));
19020 SWIG_Python_SetConstant(d
, "AUI_DOCK_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_RIGHT
)));
19021 SWIG_Python_SetConstant(d
, "AUI_DOCK_BOTTOM",SWIG_From_int(static_cast< int >(wxAUI_DOCK_BOTTOM
)));
19022 SWIG_Python_SetConstant(d
, "AUI_DOCK_LEFT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_LEFT
)));
19023 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTER",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTER
)));
19024 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTRE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTRE
)));
19025 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_FLOATING",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_FLOATING
)));
19026 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_ACTIVE_PANE",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_ACTIVE_PANE
)));
19027 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_DRAG",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_DRAG
)));
19028 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_HINT
)));
19029 SWIG_Python_SetConstant(d
, "AUI_MGR_VENETIAN_BLINDS_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_VENETIAN_BLINDS_HINT
)));
19030 SWIG_Python_SetConstant(d
, "AUI_MGR_RECTANGLE_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_RECTANGLE_HINT
)));
19031 SWIG_Python_SetConstant(d
, "AUI_MGR_HINT_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_HINT_FADE
)));
19032 SWIG_Python_SetConstant(d
, "AUI_MGR_NO_VENETIAN_BLINDS_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_NO_VENETIAN_BLINDS_FADE
)));
19033 SWIG_Python_SetConstant(d
, "AUI_MGR_DEFAULT",SWIG_From_int(static_cast< int >(wxAUI_MGR_DEFAULT
)));
19034 SWIG_Python_SetConstant(d
, "AUI_DOCKART_SASH_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_SASH_SIZE
)));
19035 SWIG_Python_SetConstant(d
, "AUI_DOCKART_CAPTION_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_CAPTION_SIZE
)));
19036 SWIG_Python_SetConstant(d
, "AUI_DOCKART_GRIPPER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_GRIPPER_SIZE
)));
19037 SWIG_Python_SetConstant(d
, "AUI_DOCKART_PANE_BORDER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_PANE_BORDER_SIZE
)));
19038 SWIG_Python_SetConstant(d
, "AUI_DOCKART_PANE_BUTTON_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_PANE_BUTTON_SIZE
)));
19039 SWIG_Python_SetConstant(d
, "AUI_DOCKART_BACKGROUND_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_BACKGROUND_COLOUR
)));
19040 SWIG_Python_SetConstant(d
, "AUI_DOCKART_SASH_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_SASH_COLOUR
)));
19041 SWIG_Python_SetConstant(d
, "AUI_DOCKART_ACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_ACTIVE_CAPTION_COLOUR
)));
19042 SWIG_Python_SetConstant(d
, "AUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR
)));
19043 SWIG_Python_SetConstant(d
, "AUI_DOCKART_INACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_INACTIVE_CAPTION_COLOUR
)));
19044 SWIG_Python_SetConstant(d
, "AUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR
)));
19045 SWIG_Python_SetConstant(d
, "AUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR
)));
19046 SWIG_Python_SetConstant(d
, "AUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR
)));
19047 SWIG_Python_SetConstant(d
, "AUI_DOCKART_BORDER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_BORDER_COLOUR
)));
19048 SWIG_Python_SetConstant(d
, "AUI_DOCKART_GRIPPER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_GRIPPER_COLOUR
)));
19049 SWIG_Python_SetConstant(d
, "AUI_DOCKART_CAPTION_FONT",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_CAPTION_FONT
)));
19050 SWIG_Python_SetConstant(d
, "AUI_DOCKART_GRADIENT_TYPE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_GRADIENT_TYPE
)));
19051 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_NONE",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_NONE
)));
19052 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_VERTICAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_VERTICAL
)));
19053 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_HORIZONTAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_HORIZONTAL
)));
19054 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_NORMAL",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_NORMAL
)));
19055 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_HOVER",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_HOVER
)));
19056 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_PRESSED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_PRESSED
)));
19057 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_DISABLED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_DISABLED
)));
19058 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_HIDDEN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_HIDDEN
)));
19059 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_CHECKED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_CHECKED
)));
19060 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CLOSE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CLOSE
)));
19061 SWIG_Python_SetConstant(d
, "AUI_BUTTON_MAXIMIZE_RESTORE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_MAXIMIZE_RESTORE
)));
19062 SWIG_Python_SetConstant(d
, "AUI_BUTTON_MINIMIZE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_MINIMIZE
)));
19063 SWIG_Python_SetConstant(d
, "AUI_BUTTON_PIN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_PIN
)));
19064 SWIG_Python_SetConstant(d
, "AUI_BUTTON_OPTIONS",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_OPTIONS
)));
19065 SWIG_Python_SetConstant(d
, "AUI_BUTTON_WINDOWLIST",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_WINDOWLIST
)));
19066 SWIG_Python_SetConstant(d
, "AUI_BUTTON_LEFT",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_LEFT
)));
19067 SWIG_Python_SetConstant(d
, "AUI_BUTTON_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_RIGHT
)));
19068 SWIG_Python_SetConstant(d
, "AUI_BUTTON_UP",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_UP
)));
19069 SWIG_Python_SetConstant(d
, "AUI_BUTTON_DOWN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_DOWN
)));
19070 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM1",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM1
)));
19071 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM2",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM2
)));
19072 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM3",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM3
)));
19073 SWIG_Python_SetConstant(d
, "AUI_INSERT_PANE",SWIG_From_int(static_cast< int >(wxAUI_INSERT_PANE
)));
19074 SWIG_Python_SetConstant(d
, "AUI_INSERT_ROW",SWIG_From_int(static_cast< int >(wxAUI_INSERT_ROW
)));
19075 SWIG_Python_SetConstant(d
, "AUI_INSERT_DOCK",SWIG_From_int(static_cast< int >(wxAUI_INSERT_DOCK
)));
19076 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals());
19077 SWIG_addvarlink(SWIG_globals(),(char*)"AuiNullDockInfo",AuiNullDockInfo_get
, AuiNullDockInfo_set
);
19078 SWIG_addvarlink(SWIG_globals(),(char*)"AuiNullPaneInfo",AuiNullPaneInfo_get
, AuiNullPaneInfo_set
);
19079 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionFloating",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionFloating
)));
19080 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionHidden",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionHidden
)));
19081 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionLeftDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionLeftDockable
)));
19082 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionRightDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionRightDockable
)));
19083 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionTopDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionTopDockable
)));
19084 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionBottomDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionBottomDockable
)));
19085 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionFloatable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionFloatable
)));
19086 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionMovable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionMovable
)));
19087 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionResizable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionResizable
)));
19088 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionPaneBorder",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionPaneBorder
)));
19089 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionCaption",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionCaption
)));
19090 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionGripper",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionGripper
)));
19091 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionDestroyOnClose",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionDestroyOnClose
)));
19092 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionToolbar",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionToolbar
)));
19093 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionActive",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionActive
)));
19094 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionGripperTop",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionGripperTop
)));
19095 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionMaximized",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionMaximized
)));
19096 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonClose",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonClose
)));
19097 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonMaximize",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonMaximize
)));
19098 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonMinimize",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonMinimize
)));
19099 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonPin",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonPin
)));
19100 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonCustom1",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonCustom1
)));
19101 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonCustom2",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonCustom2
)));
19102 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonCustom3",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonCustom3
)));
19103 SWIG_Python_SetConstant(d
, "AuiPaneInfo_savedHiddenState",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::savedHiddenState
)));
19104 SWIG_Python_SetConstant(d
, "AuiPaneInfo_actionPane",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::actionPane
)));
19105 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeCaption",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeCaption
)));
19106 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeGripper",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeGripper
)));
19107 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeDock",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeDock
)));
19108 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeDockSizer",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeDockSizer
)));
19109 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePane",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePane
)));
19110 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePaneSizer",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePaneSizer
)));
19111 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeBackground",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeBackground
)));
19112 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePaneBorder",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePaneBorder
)));
19113 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePaneButton",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePaneButton
)));
19114 PyDict_SetItemString(d
, "wxEVT_AUI_PANE_BUTTON", PyInt_FromLong(wxEVT_AUI_PANE_BUTTON
));
19115 PyDict_SetItemString(d
, "wxEVT_AUI_PANE_CLOSE", PyInt_FromLong(wxEVT_AUI_PANE_CLOSE
));
19116 PyDict_SetItemString(d
, "wxEVT_AUI_PANE_MAXIMIZE", PyInt_FromLong(wxEVT_AUI_PANE_MAXIMIZE
));
19117 PyDict_SetItemString(d
, "wxEVT_AUI_PANE_RESTORE", PyInt_FromLong(wxEVT_AUI_PANE_RESTORE
));
19118 PyDict_SetItemString(d
, "wxEVT_AUI_RENDER", PyInt_FromLong(wxEVT_AUI_RENDER
));
19119 PyDict_SetItemString(d
, "wxEVT_AUI_FIND_MANAGER", PyInt_FromLong(wxEVT_AUI_FIND_MANAGER
));
19120 SWIG_Python_SetConstant(d
, "AUI_NB_TOP",SWIG_From_int(static_cast< int >(wxAUI_NB_TOP
)));
19121 SWIG_Python_SetConstant(d
, "AUI_NB_LEFT",SWIG_From_int(static_cast< int >(wxAUI_NB_LEFT
)));
19122 SWIG_Python_SetConstant(d
, "AUI_NB_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_NB_RIGHT
)));
19123 SWIG_Python_SetConstant(d
, "AUI_NB_BOTTOM",SWIG_From_int(static_cast< int >(wxAUI_NB_BOTTOM
)));
19124 SWIG_Python_SetConstant(d
, "AUI_NB_TAB_SPLIT",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_SPLIT
)));
19125 SWIG_Python_SetConstant(d
, "AUI_NB_TAB_MOVE",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_MOVE
)));
19126 SWIG_Python_SetConstant(d
, "AUI_NB_TAB_EXTERNAL_MOVE",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_EXTERNAL_MOVE
)));
19127 SWIG_Python_SetConstant(d
, "AUI_NB_TAB_FIXED_WIDTH",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_FIXED_WIDTH
)));
19128 SWIG_Python_SetConstant(d
, "AUI_NB_SCROLL_BUTTONS",SWIG_From_int(static_cast< int >(wxAUI_NB_SCROLL_BUTTONS
)));
19129 SWIG_Python_SetConstant(d
, "AUI_NB_WINDOWLIST_BUTTON",SWIG_From_int(static_cast< int >(wxAUI_NB_WINDOWLIST_BUTTON
)));
19130 SWIG_Python_SetConstant(d
, "AUI_NB_CLOSE_BUTTON",SWIG_From_int(static_cast< int >(wxAUI_NB_CLOSE_BUTTON
)));
19131 SWIG_Python_SetConstant(d
, "AUI_NB_CLOSE_ON_ACTIVE_TAB",SWIG_From_int(static_cast< int >(wxAUI_NB_CLOSE_ON_ACTIVE_TAB
)));
19132 SWIG_Python_SetConstant(d
, "AUI_NB_CLOSE_ON_ALL_TABS",SWIG_From_int(static_cast< int >(wxAUI_NB_CLOSE_ON_ALL_TABS
)));
19133 SWIG_Python_SetConstant(d
, "AUI_NB_DEFAULT_STYLE",SWIG_From_int(static_cast< int >(wxAUI_NB_DEFAULT_STYLE
)));
19134 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE
));
19135 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED
));
19136 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING
));
19137 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_BUTTON", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_BUTTON
));
19138 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG
));
19139 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_END_DRAG", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG
));
19140 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION
));
19141 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND
));