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_form_ops_t swig_types[1]
2468 #define SWIGTYPE_p_int swig_types[2]
2469 #define SWIGTYPE_p_p_wxAuiFloatingFrame swig_types[3]
2470 #define SWIGTYPE_p_p_wxAuiNotebook swig_types[4]
2471 #define SWIGTYPE_p_p_wxAuiTabContainerButton swig_types[5]
2472 #define SWIGTYPE_p_p_wxAuiTabCtrl swig_types[6]
2473 #define SWIGTYPE_p_p_wxColourDialog swig_types[7]
2474 #define SWIGTYPE_p_p_wxControl swig_types[8]
2475 #define SWIGTYPE_p_p_wxControlWithItems swig_types[9]
2476 #define SWIGTYPE_p_p_wxDialog swig_types[10]
2477 #define SWIGTYPE_p_p_wxDirDialog swig_types[11]
2478 #define SWIGTYPE_p_p_wxFileDialog swig_types[12]
2479 #define SWIGTYPE_p_p_wxFindReplaceDialog swig_types[13]
2480 #define SWIGTYPE_p_p_wxFontDialog swig_types[14]
2481 #define SWIGTYPE_p_p_wxFrame swig_types[15]
2482 #define SWIGTYPE_p_p_wxMDIChildFrame swig_types[16]
2483 #define SWIGTYPE_p_p_wxMDIClientWindow swig_types[17]
2484 #define SWIGTYPE_p_p_wxMDIParentFrame swig_types[18]
2485 #define SWIGTYPE_p_p_wxMenuBar swig_types[19]
2486 #define SWIGTYPE_p_p_wxMessageDialog swig_types[20]
2487 #define SWIGTYPE_p_p_wxMiniFrame swig_types[21]
2488 #define SWIGTYPE_p_p_wxMultiChoiceDialog swig_types[22]
2489 #define SWIGTYPE_p_p_wxNumberEntryDialog swig_types[23]
2490 #define SWIGTYPE_p_p_wxPanel swig_types[24]
2491 #define SWIGTYPE_p_p_wxPasswordEntryDialog swig_types[25]
2492 #define SWIGTYPE_p_p_wxPopupWindow swig_types[26]
2493 #define SWIGTYPE_p_p_wxPreviewCanvas swig_types[27]
2494 #define SWIGTYPE_p_p_wxPreviewControlBar swig_types[28]
2495 #define SWIGTYPE_p_p_wxPreviewFrame swig_types[29]
2496 #define SWIGTYPE_p_p_wxProgressDialog swig_types[30]
2497 #define SWIGTYPE_p_p_wxPyHtmlListBox swig_types[31]
2498 #define SWIGTYPE_p_p_wxPyPanel swig_types[32]
2499 #define SWIGTYPE_p_p_wxPyPopupTransientWindow swig_types[33]
2500 #define SWIGTYPE_p_p_wxPyPreviewControlBar swig_types[34]
2501 #define SWIGTYPE_p_p_wxPyPreviewFrame swig_types[35]
2502 #define SWIGTYPE_p_p_wxPyScrolledWindow swig_types[36]
2503 #define SWIGTYPE_p_p_wxPyVListBox swig_types[37]
2504 #define SWIGTYPE_p_p_wxPyVScrolledWindow swig_types[38]
2505 #define SWIGTYPE_p_p_wxPyWindow swig_types[39]
2506 #define SWIGTYPE_p_p_wxSashLayoutWindow swig_types[40]
2507 #define SWIGTYPE_p_p_wxSashWindow swig_types[41]
2508 #define SWIGTYPE_p_p_wxScrolledWindow swig_types[42]
2509 #define SWIGTYPE_p_p_wxSimpleHtmlListBox swig_types[43]
2510 #define SWIGTYPE_p_p_wxSingleChoiceDialog swig_types[44]
2511 #define SWIGTYPE_p_p_wxSplashScreen swig_types[45]
2512 #define SWIGTYPE_p_p_wxSplashScreenWindow swig_types[46]
2513 #define SWIGTYPE_p_p_wxSplitterWindow swig_types[47]
2514 #define SWIGTYPE_p_p_wxStatusBar swig_types[48]
2515 #define SWIGTYPE_p_p_wxTextEntryDialog swig_types[49]
2516 #define SWIGTYPE_p_p_wxTipWindow swig_types[50]
2517 #define SWIGTYPE_p_p_wxTopLevelWindow swig_types[51]
2518 #define SWIGTYPE_p_p_wxWindow swig_types[52]
2519 #define SWIGTYPE_p_unsigned_char swig_types[53]
2520 #define SWIGTYPE_p_unsigned_int swig_types[54]
2521 #define SWIGTYPE_p_unsigned_long swig_types[55]
2522 #define SWIGTYPE_p_wxANIHandler swig_types[56]
2523 #define SWIGTYPE_p_wxAcceleratorTable swig_types[57]
2524 #define SWIGTYPE_p_wxActivateEvent swig_types[58]
2525 #define SWIGTYPE_p_wxArrayString swig_types[59]
2526 #define SWIGTYPE_p_wxAuiDefaultDockArt swig_types[60]
2527 #define SWIGTYPE_p_wxAuiDefaultTabArt swig_types[61]
2528 #define SWIGTYPE_p_wxAuiDockArt swig_types[62]
2529 #define SWIGTYPE_p_wxAuiDockInfo swig_types[63]
2530 #define SWIGTYPE_p_wxAuiDockUIPart swig_types[64]
2531 #define SWIGTYPE_p_wxAuiFloatingFrame swig_types[65]
2532 #define SWIGTYPE_p_wxAuiManager swig_types[66]
2533 #define SWIGTYPE_p_wxAuiManagerEvent swig_types[67]
2534 #define SWIGTYPE_p_wxAuiNotebook swig_types[68]
2535 #define SWIGTYPE_p_wxAuiNotebookEvent swig_types[69]
2536 #define SWIGTYPE_p_wxAuiNotebookPage swig_types[70]
2537 #define SWIGTYPE_p_wxAuiNotebookPageArray swig_types[71]
2538 #define SWIGTYPE_p_wxAuiPaneButton swig_types[72]
2539 #define SWIGTYPE_p_wxAuiPaneButtonArray swig_types[73]
2540 #define SWIGTYPE_p_wxAuiPaneInfo swig_types[74]
2541 #define SWIGTYPE_p_wxAuiPaneInfoPtrArray swig_types[75]
2542 #define SWIGTYPE_p_wxAuiSimpleTabArt swig_types[76]
2543 #define SWIGTYPE_p_wxAuiTabArt swig_types[77]
2544 #define SWIGTYPE_p_wxAuiTabContainer swig_types[78]
2545 #define SWIGTYPE_p_wxAuiTabContainerButton swig_types[79]
2546 #define SWIGTYPE_p_wxAuiTabCtrl swig_types[80]
2547 #define SWIGTYPE_p_wxBMPHandler swig_types[81]
2548 #define SWIGTYPE_p_wxBitmap swig_types[82]
2549 #define SWIGTYPE_p_wxBoxSizer swig_types[83]
2550 #define SWIGTYPE_p_wxCURHandler swig_types[84]
2551 #define SWIGTYPE_p_wxCalculateLayoutEvent swig_types[85]
2552 #define SWIGTYPE_p_wxChildFocusEvent swig_types[86]
2553 #define SWIGTYPE_p_wxClipboardTextEvent swig_types[87]
2554 #define SWIGTYPE_p_wxCloseEvent swig_types[88]
2555 #define SWIGTYPE_p_wxColor swig_types[89]
2556 #define SWIGTYPE_p_wxColour swig_types[90]
2557 #define SWIGTYPE_p_wxColourData swig_types[91]
2558 #define SWIGTYPE_p_wxColourDialog swig_types[92]
2559 #define SWIGTYPE_p_wxCommandEvent swig_types[93]
2560 #define SWIGTYPE_p_wxContextMenuEvent swig_types[94]
2561 #define SWIGTYPE_p_wxControl swig_types[95]
2562 #define SWIGTYPE_p_wxControlWithItems swig_types[96]
2563 #define SWIGTYPE_p_wxDC swig_types[97]
2564 #define SWIGTYPE_p_wxDateEvent swig_types[98]
2565 #define SWIGTYPE_p_wxDialog swig_types[99]
2566 #define SWIGTYPE_p_wxDirDialog swig_types[100]
2567 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[101]
2568 #define SWIGTYPE_p_wxDropFilesEvent swig_types[102]
2569 #define SWIGTYPE_p_wxDuplexMode swig_types[103]
2570 #define SWIGTYPE_p_wxEraseEvent swig_types[104]
2571 #define SWIGTYPE_p_wxEvent swig_types[105]
2572 #define SWIGTYPE_p_wxEvtHandler swig_types[106]
2573 #define SWIGTYPE_p_wxFSFile swig_types[107]
2574 #define SWIGTYPE_p_wxFileDialog swig_types[108]
2575 #define SWIGTYPE_p_wxFileSystem swig_types[109]
2576 #define SWIGTYPE_p_wxFindDialogEvent swig_types[110]
2577 #define SWIGTYPE_p_wxFindReplaceData swig_types[111]
2578 #define SWIGTYPE_p_wxFindReplaceDialog swig_types[112]
2579 #define SWIGTYPE_p_wxFlexGridSizer swig_types[113]
2580 #define SWIGTYPE_p_wxFocusEvent swig_types[114]
2581 #define SWIGTYPE_p_wxFont swig_types[115]
2582 #define SWIGTYPE_p_wxFontData swig_types[116]
2583 #define SWIGTYPE_p_wxFontDialog swig_types[117]
2584 #define SWIGTYPE_p_wxFrame swig_types[118]
2585 #define SWIGTYPE_p_wxGBSizerItem swig_types[119]
2586 #define SWIGTYPE_p_wxGIFHandler swig_types[120]
2587 #define SWIGTYPE_p_wxGridBagSizer swig_types[121]
2588 #define SWIGTYPE_p_wxGridSizer swig_types[122]
2589 #define SWIGTYPE_p_wxICOHandler swig_types[123]
2590 #define SWIGTYPE_p_wxIconizeEvent swig_types[124]
2591 #define SWIGTYPE_p_wxIdleEvent swig_types[125]
2592 #define SWIGTYPE_p_wxImage swig_types[126]
2593 #define SWIGTYPE_p_wxImageHandler swig_types[127]
2594 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[128]
2595 #define SWIGTYPE_p_wxInitDialogEvent swig_types[129]
2596 #define SWIGTYPE_p_wxJPEGHandler swig_types[130]
2597 #define SWIGTYPE_p_wxKeyEvent swig_types[131]
2598 #define SWIGTYPE_p_wxLayoutAlgorithm swig_types[132]
2599 #define SWIGTYPE_p_wxLayoutConstraints swig_types[133]
2600 #define SWIGTYPE_p_wxMDIChildFrame swig_types[134]
2601 #define SWIGTYPE_p_wxMDIClientWindow swig_types[135]
2602 #define SWIGTYPE_p_wxMDIParentFrame swig_types[136]
2603 #define SWIGTYPE_p_wxMaximizeEvent swig_types[137]
2604 #define SWIGTYPE_p_wxMenu swig_types[138]
2605 #define SWIGTYPE_p_wxMenuBar swig_types[139]
2606 #define SWIGTYPE_p_wxMenuEvent swig_types[140]
2607 #define SWIGTYPE_p_wxMenuItem swig_types[141]
2608 #define SWIGTYPE_p_wxMessageDialog swig_types[142]
2609 #define SWIGTYPE_p_wxMiniFrame swig_types[143]
2610 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[144]
2611 #define SWIGTYPE_p_wxMouseCaptureLostEvent swig_types[145]
2612 #define SWIGTYPE_p_wxMouseEvent swig_types[146]
2613 #define SWIGTYPE_p_wxMoveEvent swig_types[147]
2614 #define SWIGTYPE_p_wxMultiChoiceDialog swig_types[148]
2615 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[149]
2616 #define SWIGTYPE_p_wxNcPaintEvent swig_types[150]
2617 #define SWIGTYPE_p_wxNotifyEvent swig_types[151]
2618 #define SWIGTYPE_p_wxNumberEntryDialog swig_types[152]
2619 #define SWIGTYPE_p_wxObject swig_types[153]
2620 #define SWIGTYPE_p_wxPCXHandler swig_types[154]
2621 #define SWIGTYPE_p_wxPNGHandler swig_types[155]
2622 #define SWIGTYPE_p_wxPNMHandler swig_types[156]
2623 #define SWIGTYPE_p_wxPageSetupDialog swig_types[157]
2624 #define SWIGTYPE_p_wxPageSetupDialogData swig_types[158]
2625 #define SWIGTYPE_p_wxPaintEvent swig_types[159]
2626 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[160]
2627 #define SWIGTYPE_p_wxPanel swig_types[161]
2628 #define SWIGTYPE_p_wxPaperSize swig_types[162]
2629 #define SWIGTYPE_p_wxPasswordEntryDialog swig_types[163]
2630 #define SWIGTYPE_p_wxPoint swig_types[164]
2631 #define SWIGTYPE_p_wxPopupWindow swig_types[165]
2632 #define SWIGTYPE_p_wxPreviewCanvas swig_types[166]
2633 #define SWIGTYPE_p_wxPreviewControlBar swig_types[167]
2634 #define SWIGTYPE_p_wxPreviewFrame swig_types[168]
2635 #define SWIGTYPE_p_wxPrintData swig_types[169]
2636 #define SWIGTYPE_p_wxPrintDialog swig_types[170]
2637 #define SWIGTYPE_p_wxPrintDialogData swig_types[171]
2638 #define SWIGTYPE_p_wxPrintPreview swig_types[172]
2639 #define SWIGTYPE_p_wxPrinter swig_types[173]
2640 #define SWIGTYPE_p_wxProgressDialog swig_types[174]
2641 #define SWIGTYPE_p_wxPyApp swig_types[175]
2642 #define SWIGTYPE_p_wxPyAuiDockArt swig_types[176]
2643 #define SWIGTYPE_p_wxPyAuiTabArt swig_types[177]
2644 #define SWIGTYPE_p_wxPyCommandEvent swig_types[178]
2645 #define SWIGTYPE_p_wxPyEvent swig_types[179]
2646 #define SWIGTYPE_p_wxPyHtmlListBox swig_types[180]
2647 #define SWIGTYPE_p_wxPyImageHandler swig_types[181]
2648 #define SWIGTYPE_p_wxPyPanel swig_types[182]
2649 #define SWIGTYPE_p_wxPyPopupTransientWindow swig_types[183]
2650 #define SWIGTYPE_p_wxPyPreviewControlBar swig_types[184]
2651 #define SWIGTYPE_p_wxPyPreviewFrame swig_types[185]
2652 #define SWIGTYPE_p_wxPyPrintPreview swig_types[186]
2653 #define SWIGTYPE_p_wxPyPrintout swig_types[187]
2654 #define SWIGTYPE_p_wxPyScrolledWindow swig_types[188]
2655 #define SWIGTYPE_p_wxPySizer swig_types[189]
2656 #define SWIGTYPE_p_wxPyTaskBarIcon swig_types[190]
2657 #define SWIGTYPE_p_wxPyVListBox swig_types[191]
2658 #define SWIGTYPE_p_wxPyVScrolledWindow swig_types[192]
2659 #define SWIGTYPE_p_wxPyValidator swig_types[193]
2660 #define SWIGTYPE_p_wxPyWindow swig_types[194]
2661 #define SWIGTYPE_p_wxQueryLayoutInfoEvent swig_types[195]
2662 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[196]
2663 #define SWIGTYPE_p_wxRect swig_types[197]
2664 #define SWIGTYPE_p_wxSashEvent swig_types[198]
2665 #define SWIGTYPE_p_wxSashLayoutWindow swig_types[199]
2666 #define SWIGTYPE_p_wxSashWindow swig_types[200]
2667 #define SWIGTYPE_p_wxScrollEvent swig_types[201]
2668 #define SWIGTYPE_p_wxScrollWinEvent swig_types[202]
2669 #define SWIGTYPE_p_wxScrolledWindow swig_types[203]
2670 #define SWIGTYPE_p_wxSetCursorEvent swig_types[204]
2671 #define SWIGTYPE_p_wxShowEvent swig_types[205]
2672 #define SWIGTYPE_p_wxSimpleHtmlListBox swig_types[206]
2673 #define SWIGTYPE_p_wxSingleChoiceDialog swig_types[207]
2674 #define SWIGTYPE_p_wxSize swig_types[208]
2675 #define SWIGTYPE_p_wxSizeEvent swig_types[209]
2676 #define SWIGTYPE_p_wxSizer swig_types[210]
2677 #define SWIGTYPE_p_wxSizerItem swig_types[211]
2678 #define SWIGTYPE_p_wxSplashScreen swig_types[212]
2679 #define SWIGTYPE_p_wxSplashScreenWindow swig_types[213]
2680 #define SWIGTYPE_p_wxSplitterEvent swig_types[214]
2681 #define SWIGTYPE_p_wxSplitterWindow swig_types[215]
2682 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[216]
2683 #define SWIGTYPE_p_wxStatusBar swig_types[217]
2684 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[218]
2685 #define SWIGTYPE_p_wxString swig_types[219]
2686 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[220]
2687 #define SWIGTYPE_p_wxTGAHandler swig_types[221]
2688 #define SWIGTYPE_p_wxTIFFHandler swig_types[222]
2689 #define SWIGTYPE_p_wxTaskBarIconEvent swig_types[223]
2690 #define SWIGTYPE_p_wxTextEntryDialog swig_types[224]
2691 #define SWIGTYPE_p_wxTipWindow swig_types[225]
2692 #define SWIGTYPE_p_wxTopLevelWindow swig_types[226]
2693 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[227]
2694 #define SWIGTYPE_p_wxValidator swig_types[228]
2695 #define SWIGTYPE_p_wxWindow swig_types[229]
2696 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[230]
2697 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[231]
2698 #define SWIGTYPE_p_wxXPMHandler swig_types[232]
2699 static swig_type_info
*swig_types
[234];
2700 static swig_module_info swig_module
= {swig_types
, 233, 0, 0, 0, 0};
2701 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2702 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
2704 /* -------- TYPES TABLE (END) -------- */
2706 #if (PY_VERSION_HEX <= 0x02000000)
2707 # if !defined(SWIG_PYTHON_CLASSIC)
2708 # error "This python version requires to use swig with the '-classic' option"
2711 #if (PY_VERSION_HEX <= 0x02020000)
2712 # error "This python version requires to use swig with the '-nomodern' option"
2714 #if (PY_VERSION_HEX <= 0x02020000)
2715 # error "This python version requires to use swig with the '-nomodernargs' option"
2718 # error "This python version requires to use swig with the '-nofastunpack' option"
2721 /*-----------------------------------------------
2723 ------------------------------------------------*/
2724 #define SWIG_init init_aui
2726 #define SWIG_name "_aui"
2728 #define SWIGVERSION 0x010329
2731 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
2732 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))
2735 #include <stdexcept>
2739 class PyObject_ptr
{
2744 PyObject_ptr() :_obj(0)
2748 PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
)
2753 PyObject_ptr(PyObject
*obj
, bool initial_ref
= true) :_obj(obj
)
2755 if (initial_ref
) Py_XINCREF(_obj
);
2758 PyObject_ptr
& operator=(const PyObject_ptr
& item
)
2760 Py_XINCREF(item
._obj
);
2771 operator PyObject
*() const
2776 PyObject
*operator->() const
2785 struct PyObject_var
: PyObject_ptr
{
2786 PyObject_var(PyObject
* obj
= 0) : PyObject_ptr(obj
, false) { }
2788 PyObject_var
& operator = (PyObject
* obj
)
2798 #include "wx/wxPython/wxPython.h"
2799 #include "wx/wxPython/pyclasses.h"
2800 #include <wx/aui/aui.h>
2803 #define SWIG_From_long PyInt_FromLong
2806 SWIGINTERNINLINE PyObject
*
2807 SWIG_From_int (int value
)
2809 return SWIG_From_long (value
);
2815 # define LLONG_MIN LONG_LONG_MIN
2818 # define LLONG_MAX LONG_LONG_MAX
2821 # define ULLONG_MAX ULONG_LONG_MAX
2826 SWIG_AsVal_long (PyObject
* obj
, long* val
)
2828 if (PyNumber_Check(obj
)) {
2829 if (val
) *val
= PyInt_AsLong(obj
);
2832 return SWIG_TypeError
;
2837 SWIG_AsVal_int (PyObject
* obj
, int *val
)
2840 int res
= SWIG_AsVal_long (obj
, &v
);
2841 if (SWIG_IsOK(res
)) {
2842 if ((v
< INT_MIN
|| v
> INT_MAX
)) {
2843 return SWIG_OverflowError
;
2845 if (val
) *val
= static_cast< int >(v
);
2853 SWIG_AsVal_bool (PyObject
*obj
, bool *val
)
2855 if (obj
== Py_True
) {
2856 if (val
) *val
= true;
2858 } else if (obj
== Py_False
) {
2859 if (val
) *val
= false;
2863 int res
= SWIG_AddCast(SWIG_AsVal_long (obj
, val
? &v
: 0));
2864 if (SWIG_IsOK(res
) && val
) *val
= v
? true : false;
2869 SWIGINTERN
void delete_wxAuiDockInfo(wxAuiDockInfo
*self
){}
2870 SWIGINTERN
void delete_wxAuiDockUIPart(wxAuiDockUIPart
*self
){}
2871 SWIGINTERN
void delete_wxAuiPaneButton(wxAuiPaneButton
*self
){}
2874 SWIG_AsVal_unsigned_SS_long (PyObject
* obj
, unsigned long* val
)
2877 if (SWIG_AsVal_long(obj
, &v
) && v
< 0) {
2878 return SWIG_TypeError
;
2881 *val
= (unsigned long)v
;
2886 SWIGINTERNINLINE
int
2887 SWIG_AsVal_size_t (PyObject
* obj
, size_t *val
)
2890 int res
= SWIG_AsVal_unsigned_SS_long (obj
, val
? &v
: 0);
2891 if (SWIG_IsOK(res
) && val
) *val
= static_cast< size_t >(v
);
2896 SWIGINTERNINLINE PyObject
*
2897 SWIG_From_unsigned_SS_long (unsigned long value
)
2899 return (value
> LONG_MAX
) ?
2900 PyLong_FromUnsignedLong(value
) : PyInt_FromLong(static_cast< long >(value
));
2904 SWIGINTERNINLINE PyObject
*
2905 SWIG_From_size_t (size_t value
)
2907 return SWIG_From_unsigned_SS_long (static_cast< unsigned long >(value
));
2911 // A wxDocArt class that knows how to forward virtuals to Python methods
2912 class wxPyAuiDockArt
: public wxAuiDefaultDockArt
2914 wxPyAuiDockArt() : wxAuiDefaultDockArt() {}
2916 DEC_PYCALLBACK_INT_INT(GetMetric
);
2917 DEC_PYCALLBACK_VOID_INTINT(SetMetric
);
2918 DEC_PYCALLBACK__INTFONT(SetFont
);
2919 DEC_PYCALLBACK_FONT_INT(GetFont
);
2920 DEC_PYCALLBACK_COLOUR_INT(GetColour
);
2921 DEC_PYCALLBACK__INTCOLOUR(SetColour
);
2923 virtual void DrawSash(wxDC
& dc
,
2929 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2930 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawSash"))) {
2931 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2932 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2933 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2934 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiO)",
2935 odc
, owin
, orientation
, orect
));
2940 wxPyEndBlockThreads(blocked
);
2942 wxAuiDefaultDockArt::DrawSash(dc
, window
, orientation
, rect
);
2945 virtual void DrawBackground(wxDC
& dc
,
2951 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2952 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBackground"))) {
2953 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2954 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2955 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2956 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiO)",
2957 odc
, owin
, orientation
, orect
));
2962 wxPyEndBlockThreads(blocked
);
2964 wxAuiDefaultDockArt::DrawBackground(dc
, window
, orientation
, rect
);
2967 virtual void DrawCaption(wxDC
& dc
,
2969 const wxString
& text
,
2971 wxAuiPaneInfo
& pane
)
2974 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2975 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawCaption"))) {
2976 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2977 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2978 PyObject
* otext
= wx2PyString(text
);
2979 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2980 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
2981 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOOOO)",
2982 odc
, owin
, otext
, orect
, opane
));
2989 wxPyEndBlockThreads(blocked
);
2991 wxAuiDefaultDockArt::DrawCaption(dc
, window
, text
, rect
, pane
);
2994 virtual void DrawGripper(wxDC
& dc
,
2997 wxAuiPaneInfo
& pane
)
3000 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3001 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawGripper"))) {
3002 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3003 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3004 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3005 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
3006 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOOO)", odc
, owin
, orect
, opane
));
3011 wxPyEndBlockThreads(blocked
);
3013 wxAuiDefaultDockArt::DrawGripper(dc
, window
, rect
, pane
);
3016 virtual void DrawBorder(wxDC
& dc
,
3019 wxAuiPaneInfo
& pane
)
3022 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3023 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBorder"))) {
3024 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3025 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3026 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3027 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
3028 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOO)", odc
, orect
, opane
));
3034 wxPyEndBlockThreads(blocked
);
3036 wxAuiDefaultDockArt::DrawBorder(dc
, window
, rect
, pane
);
3039 virtual void DrawPaneButton(wxDC
& dc
,
3044 wxAuiPaneInfo
& pane
)
3047 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3048 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawPaneButton"))) {
3049 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3050 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3051 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3052 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
3053 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiIOO)",
3054 odc
, owin
, button
, button_state
,
3061 wxPyEndBlockThreads(blocked
);
3063 wxAuiDefaultDockArt::DrawPaneButton(dc
, window
, button
, button_state
, rect
, pane
);
3070 IMP_PYCALLBACK_INT_INT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, GetMetric
);
3071 IMP_PYCALLBACK_VOID_INTINT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, SetMetric
);
3072 IMP_PYCALLBACK__INTFONT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, SetFont
);
3073 IMP_PYCALLBACK_FONT_INT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, GetFont
);
3074 IMP_PYCALLBACK_COLOUR_INT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, GetColour
);
3075 IMP_PYCALLBACK__INTCOLOUR(wxPyAuiDockArt
, wxAuiDefaultDockArt
, SetColour
);
3079 // A wxTabArt class that knows how to forward virtuals to Python methods
3080 class wxPyAuiTabArt
: public wxAuiDefaultTabArt
3082 wxPyAuiTabArt() : wxAuiDefaultTabArt() {}
3085 virtual void DrawBackground( wxDC
& dc
,
3087 const wxRect
& rect
)
3090 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3091 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBackground"))) {
3092 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3093 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3094 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3095 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOO)", odc
, ownd
, orect
));
3100 wxPyEndBlockThreads(blocked
);
3102 wxAuiDefaultTabArt::DrawBackground(dc
, wnd
, rect
);
3105 virtual void DrawTab( wxDC
& dc
,
3107 const wxRect
& in_rect
,
3108 const wxString
& caption
,
3109 const wxBitmap
& bitmap
,
3111 int close_button_state
,
3112 wxRect
* out_tab_rect
,
3113 wxRect
* out_button_rect
,
3117 const char* errmsg
= "DrawTab should return a sequence containing (tab_rect, button_rect, x_extent)";
3118 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3119 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawTab"))) {
3120 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3121 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3122 PyObject
* orect
= wxPyConstructObject((void*)&in_rect
, wxT("wxRect"), 0);
3123 PyObject
* otext
= wx2PyString(caption
);
3124 PyObject
* obmp
= wxPyMake_wxObject((wxObject
*)&bitmap
, false);
3126 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue(
3128 odc
, ownd
, orect
, otext
, obmp
,
3129 (int)active
, close_button_state
));
3131 if (PySequence_Check(ro
) && PyObject_Length(ro
) == 3) {
3132 PyObject
* o1
= PySequence_GetItem(ro
, 0);
3133 PyObject
* o2
= PySequence_GetItem(ro
, 1);
3134 PyObject
* o3
= PySequence_GetItem(ro
, 2);
3135 if (!wxRect_helper(o1
, &out_tab_rect
))
3136 PyErr_SetString(PyExc_TypeError
, errmsg
);
3137 else if (!wxRect_helper(o2
, &out_button_rect
))
3138 PyErr_SetString(PyExc_TypeError
, errmsg
);
3139 else if (!PyInt_Check(o3
))
3140 PyErr_SetString(PyExc_TypeError
, errmsg
);
3142 *x_extent
= PyInt_AsLong(o3
);
3149 PyErr_SetString(PyExc_TypeError
, errmsg
);
3160 wxPyEndBlockThreads(blocked
);
3162 wxAuiDefaultTabArt::DrawTab(dc
, wnd
, in_rect
, caption
, bitmap
, active
, close_button_state
, out_tab_rect
, out_button_rect
, x_extent
);
3166 virtual void DrawButton( wxDC
& dc
,
3168 const wxRect
& in_rect
,
3172 const wxBitmap
& bitmap_override
,
3176 const char* errmsg
= "DrawButton should return a wxRect";
3177 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3178 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawButton"))) {
3179 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3180 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3181 PyObject
* orect
= wxPyConstructObject((void*)&in_rect
, wxT("wxRect"), 0);
3182 PyObject
* obmp
= wxPyConstructObject((void*)&bitmap_override
, wxT("wxBitmap"), 0);
3184 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("(OOOiiiO)", odc
, ownd
, orect
,
3185 bitmap_id
, button_state
, orientation
,
3188 if (!wxRect_helper(ro
, &out_rect
))
3189 PyErr_SetString(PyExc_TypeError
, errmsg
);
3198 wxPyEndBlockThreads(blocked
);
3200 wxAuiDefaultTabArt::DrawButton(dc
, wnd
, in_rect
, bitmap_id
, button_state
, orientation
, bitmap_override
, out_rect
);
3204 virtual wxSize
GetTabSize( wxDC
& dc
,
3206 const wxString
& caption
,
3207 const wxBitmap
& bitmap
,
3209 int close_button_state
,
3213 wxSize rv
, *prv
= &rv
;
3214 const char* errmsg
= "GetTabSize should return a sequence containing (size, x_extent)";
3215 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3216 if ((found
= wxPyCBH_findCallback(m_myInst
, "GetTabSize"))) {
3217 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3218 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3219 PyObject
* otext
= wx2PyString(caption
);
3220 PyObject
* obmp
= wxPyMake_wxObject((wxObject
*)&bitmap
, false);
3222 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue(
3223 "(OOOOii)", odc
, ownd
, otext
, obmp
, (int)active
, close_button_state
));
3225 if (PySequence_Check(ro
) && PyObject_Length(ro
) == 2) {
3226 PyObject
* o1
= PySequence_GetItem(ro
, 0);
3227 PyObject
* o2
= PySequence_GetItem(ro
, 1);
3228 if (!wxSize_helper(o1
, &prv
))
3229 PyErr_SetString(PyExc_TypeError
, errmsg
);
3230 else if (!PyInt_Check(o2
))
3231 PyErr_SetString(PyExc_TypeError
, errmsg
);
3233 *x_extent
= PyInt_AsLong(o2
);
3239 PyErr_SetString(PyExc_TypeError
, errmsg
);
3249 wxPyEndBlockThreads(blocked
);
3251 rv
= wxAuiDefaultTabArt::GetTabSize(dc
, wnd
, caption
, bitmap
, active
, close_button_state
, x_extent
);
3256 // virtual int ShowWindowList(
3258 // const wxArrayString& items,
3261 // virtual int GetBestTabCtrlSize(wxWindow* wnd,
3262 // wxAuiNotebookPageArray& pages);
3263 // virtual wxAuiTabArt* Clone();
3264 // virtual void SetFlags(unsigned int flags);
3265 // virtual void SetSizingInfo(const wxSize& tab_ctrl_size,
3266 // size_t tab_count);
3267 // virtual int GetIndentSize();
3271 DEC_PYCALLBACK__FONT(SetNormalFont
);
3272 DEC_PYCALLBACK__FONT(SetSelectedFont
);
3273 DEC_PYCALLBACK__FONT(SetMeasuringFont
);
3274 // DEC_PYCALLBACK_INT_WIN(GetBestTabCtrlSize);
3280 IMP_PYCALLBACK__FONT(wxPyAuiTabArt
, wxAuiDefaultTabArt
, SetNormalFont
);
3281 IMP_PYCALLBACK__FONT(wxPyAuiTabArt
, wxAuiDefaultTabArt
, SetSelectedFont
);
3282 IMP_PYCALLBACK__FONT(wxPyAuiTabArt
, wxAuiDefaultTabArt
, SetMeasuringFont
);
3283 //IMP_PYCALLBACK_INT_WIN(wxPyAuiTabArt, wxAuiDefaultTabArt, GetBestTabCtrlSize);
3288 SWIGINTERN
int AuiNullDockInfo_set(PyObject
*_val
) {
3291 int res
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxAuiDockInfo
, 0 | 0);
3292 if (!SWIG_IsOK(res
)) {
3293 SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxAuiNullDockInfo""' of type '""wxAuiDockInfo""'");
3296 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxAuiNullDockInfo""' of type '""wxAuiDockInfo""'");
3298 wxAuiDockInfo
* temp
;
3299 temp
= reinterpret_cast< wxAuiDockInfo
* >(argp
);
3300 wxAuiNullDockInfo
= *temp
;
3301 if (SWIG_IsNewObj(res
)) delete temp
;
3310 SWIGINTERN PyObject
*AuiNullDockInfo_get(void) {
3311 PyObject
*pyobj
= 0;
3313 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxAuiNullDockInfo
), SWIGTYPE_p_wxAuiDockInfo
, 0 );
3318 SWIGINTERN
int AuiNullPaneInfo_set(PyObject
*_val
) {
3321 int res
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
3322 if (!SWIG_IsOK(res
)) {
3323 SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxAuiNullPaneInfo""' of type '""wxAuiPaneInfo""'");
3326 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxAuiNullPaneInfo""' of type '""wxAuiPaneInfo""'");
3328 wxAuiPaneInfo
* temp
;
3329 temp
= reinterpret_cast< wxAuiPaneInfo
* >(argp
);
3330 wxAuiNullPaneInfo
= *temp
;
3331 if (SWIG_IsNewObj(res
)) delete temp
;
3340 SWIGINTERN PyObject
*AuiNullPaneInfo_get(void) {
3341 PyObject
*pyobj
= 0;
3343 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxAuiNullPaneInfo
), SWIGTYPE_p_wxAuiPaneInfo
, 0 );
3348 SWIGINTERN PyObject
*_wrap_new_AuiPaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3349 PyObject
*resultobj
= 0;
3350 wxAuiPaneInfo
*result
= 0 ;
3352 if (!SWIG_Python_UnpackTuple(args
,"new_AuiPaneInfo",0,0,0)) SWIG_fail
;
3354 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3355 result
= (wxAuiPaneInfo
*)new wxAuiPaneInfo();
3356 wxPyEndAllowThreads(__tstate
);
3357 if (PyErr_Occurred()) SWIG_fail
;
3359 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_NEW
| 0 );
3366 SWIGINTERN PyObject
*_wrap_delete_AuiPaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3367 PyObject
*resultobj
= 0;
3368 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3371 PyObject
*swig_obj
[1] ;
3373 if (!args
) SWIG_fail
;
3375 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
3376 if (!SWIG_IsOK(res1
)) {
3377 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiPaneInfo" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
3379 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3381 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3384 wxPyEndAllowThreads(__tstate
);
3385 if (PyErr_Occurred()) SWIG_fail
;
3387 resultobj
= SWIG_Py_Void();
3394 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_SafeSet(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3395 PyObject
*resultobj
= 0;
3396 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3397 wxAuiPaneInfo arg2
;
3402 PyObject
* obj0
= 0 ;
3403 PyObject
* obj1
= 0 ;
3404 char * kwnames
[] = {
3405 (char *) "self",(char *) "source", NULL
3408 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_SafeSet",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3409 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3410 if (!SWIG_IsOK(res1
)) {
3411 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_SafeSet" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
3413 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3415 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
3416 if (!SWIG_IsOK(res2
)) {
3417 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_SafeSet" "', expected argument " "2"" of type '" "wxAuiPaneInfo""'");
3420 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiPaneInfo_SafeSet" "', expected argument " "2"" of type '" "wxAuiPaneInfo""'");
3422 wxAuiPaneInfo
* temp
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
3424 if (SWIG_IsNewObj(res2
)) delete temp
;
3428 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3429 (arg1
)->SafeSet(arg2
);
3430 wxPyEndAllowThreads(__tstate
);
3431 if (PyErr_Occurred()) SWIG_fail
;
3433 resultobj
= SWIG_Py_Void();
3440 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3441 PyObject
*resultobj
= 0;
3442 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3446 PyObject
*swig_obj
[1] ;
3448 if (!args
) SWIG_fail
;
3450 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3451 if (!SWIG_IsOK(res1
)) {
3452 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsOk" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3454 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3456 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3457 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsOk();
3458 wxPyEndAllowThreads(__tstate
);
3459 if (PyErr_Occurred()) SWIG_fail
;
3462 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3470 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsFixed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3471 PyObject
*resultobj
= 0;
3472 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3476 PyObject
*swig_obj
[1] ;
3478 if (!args
) SWIG_fail
;
3480 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3481 if (!SWIG_IsOK(res1
)) {
3482 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsFixed" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3484 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3486 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3487 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsFixed();
3488 wxPyEndAllowThreads(__tstate
);
3489 if (PyErr_Occurred()) SWIG_fail
;
3492 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3500 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsResizable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3501 PyObject
*resultobj
= 0;
3502 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3506 PyObject
*swig_obj
[1] ;
3508 if (!args
) SWIG_fail
;
3510 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3511 if (!SWIG_IsOK(res1
)) {
3512 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsResizable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3514 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3516 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3517 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsResizable();
3518 wxPyEndAllowThreads(__tstate
);
3519 if (PyErr_Occurred()) SWIG_fail
;
3522 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3530 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsShown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3531 PyObject
*resultobj
= 0;
3532 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3536 PyObject
*swig_obj
[1] ;
3538 if (!args
) SWIG_fail
;
3540 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3541 if (!SWIG_IsOK(res1
)) {
3542 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsShown" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3544 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3546 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3547 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsShown();
3548 wxPyEndAllowThreads(__tstate
);
3549 if (PyErr_Occurred()) SWIG_fail
;
3552 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3560 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsFloating(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3561 PyObject
*resultobj
= 0;
3562 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3566 PyObject
*swig_obj
[1] ;
3568 if (!args
) SWIG_fail
;
3570 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3571 if (!SWIG_IsOK(res1
)) {
3572 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsFloating" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3574 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3576 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3577 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsFloating();
3578 wxPyEndAllowThreads(__tstate
);
3579 if (PyErr_Occurred()) SWIG_fail
;
3582 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3590 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsDocked(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3591 PyObject
*resultobj
= 0;
3592 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3596 PyObject
*swig_obj
[1] ;
3598 if (!args
) SWIG_fail
;
3600 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3601 if (!SWIG_IsOK(res1
)) {
3602 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsDocked" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3604 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3606 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3607 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsDocked();
3608 wxPyEndAllowThreads(__tstate
);
3609 if (PyErr_Occurred()) SWIG_fail
;
3612 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3620 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsToolbar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3621 PyObject
*resultobj
= 0;
3622 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3626 PyObject
*swig_obj
[1] ;
3628 if (!args
) SWIG_fail
;
3630 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3631 if (!SWIG_IsOK(res1
)) {
3632 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsToolbar" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3634 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3636 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3637 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsToolbar();
3638 wxPyEndAllowThreads(__tstate
);
3639 if (PyErr_Occurred()) SWIG_fail
;
3642 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3650 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsTopDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3651 PyObject
*resultobj
= 0;
3652 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3656 PyObject
*swig_obj
[1] ;
3658 if (!args
) SWIG_fail
;
3660 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3661 if (!SWIG_IsOK(res1
)) {
3662 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsTopDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3664 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3666 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3667 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsTopDockable();
3668 wxPyEndAllowThreads(__tstate
);
3669 if (PyErr_Occurred()) SWIG_fail
;
3672 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3680 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsBottomDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3681 PyObject
*resultobj
= 0;
3682 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3686 PyObject
*swig_obj
[1] ;
3688 if (!args
) SWIG_fail
;
3690 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3691 if (!SWIG_IsOK(res1
)) {
3692 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsBottomDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3694 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3696 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3697 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsBottomDockable();
3698 wxPyEndAllowThreads(__tstate
);
3699 if (PyErr_Occurred()) SWIG_fail
;
3702 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3710 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsLeftDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3711 PyObject
*resultobj
= 0;
3712 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3716 PyObject
*swig_obj
[1] ;
3718 if (!args
) SWIG_fail
;
3720 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3721 if (!SWIG_IsOK(res1
)) {
3722 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsLeftDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3724 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3726 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3727 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsLeftDockable();
3728 wxPyEndAllowThreads(__tstate
);
3729 if (PyErr_Occurred()) SWIG_fail
;
3732 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3740 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsRightDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3741 PyObject
*resultobj
= 0;
3742 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3746 PyObject
*swig_obj
[1] ;
3748 if (!args
) SWIG_fail
;
3750 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3751 if (!SWIG_IsOK(res1
)) {
3752 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsRightDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3754 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3756 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3757 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsRightDockable();
3758 wxPyEndAllowThreads(__tstate
);
3759 if (PyErr_Occurred()) SWIG_fail
;
3762 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3770 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsFloatable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3771 PyObject
*resultobj
= 0;
3772 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3776 PyObject
*swig_obj
[1] ;
3778 if (!args
) SWIG_fail
;
3780 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3781 if (!SWIG_IsOK(res1
)) {
3782 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsFloatable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3784 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3786 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3787 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsFloatable();
3788 wxPyEndAllowThreads(__tstate
);
3789 if (PyErr_Occurred()) SWIG_fail
;
3792 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3800 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsMovable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3801 PyObject
*resultobj
= 0;
3802 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3806 PyObject
*swig_obj
[1] ;
3808 if (!args
) SWIG_fail
;
3810 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3811 if (!SWIG_IsOK(res1
)) {
3812 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsMovable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3814 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3816 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3817 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsMovable();
3818 wxPyEndAllowThreads(__tstate
);
3819 if (PyErr_Occurred()) SWIG_fail
;
3822 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3830 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsDestroyOnClose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3831 PyObject
*resultobj
= 0;
3832 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3836 PyObject
*swig_obj
[1] ;
3838 if (!args
) SWIG_fail
;
3840 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3841 if (!SWIG_IsOK(res1
)) {
3842 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsDestroyOnClose" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3844 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3846 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3847 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsDestroyOnClose();
3848 wxPyEndAllowThreads(__tstate
);
3849 if (PyErr_Occurred()) SWIG_fail
;
3852 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3860 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsMaximized(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3861 PyObject
*resultobj
= 0;
3862 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3866 PyObject
*swig_obj
[1] ;
3868 if (!args
) SWIG_fail
;
3870 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3871 if (!SWIG_IsOK(res1
)) {
3872 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsMaximized" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3874 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3876 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3877 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsMaximized();
3878 wxPyEndAllowThreads(__tstate
);
3879 if (PyErr_Occurred()) SWIG_fail
;
3882 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3890 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasCaption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3891 PyObject
*resultobj
= 0;
3892 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3896 PyObject
*swig_obj
[1] ;
3898 if (!args
) SWIG_fail
;
3900 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3901 if (!SWIG_IsOK(res1
)) {
3902 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasCaption" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3904 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3906 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3907 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasCaption();
3908 wxPyEndAllowThreads(__tstate
);
3909 if (PyErr_Occurred()) SWIG_fail
;
3912 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3920 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasGripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3921 PyObject
*resultobj
= 0;
3922 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3926 PyObject
*swig_obj
[1] ;
3928 if (!args
) SWIG_fail
;
3930 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3931 if (!SWIG_IsOK(res1
)) {
3932 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasGripper" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3934 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3936 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3937 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasGripper();
3938 wxPyEndAllowThreads(__tstate
);
3939 if (PyErr_Occurred()) SWIG_fail
;
3942 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3950 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3951 PyObject
*resultobj
= 0;
3952 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3956 PyObject
*swig_obj
[1] ;
3958 if (!args
) SWIG_fail
;
3960 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3961 if (!SWIG_IsOK(res1
)) {
3962 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasBorder" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3964 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3966 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3967 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasBorder();
3968 wxPyEndAllowThreads(__tstate
);
3969 if (PyErr_Occurred()) SWIG_fail
;
3972 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3980 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasCloseButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3981 PyObject
*resultobj
= 0;
3982 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3986 PyObject
*swig_obj
[1] ;
3988 if (!args
) SWIG_fail
;
3990 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3991 if (!SWIG_IsOK(res1
)) {
3992 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasCloseButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3994 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3996 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3997 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasCloseButton();
3998 wxPyEndAllowThreads(__tstate
);
3999 if (PyErr_Occurred()) SWIG_fail
;
4002 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4010 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasMaximizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4011 PyObject
*resultobj
= 0;
4012 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4016 PyObject
*swig_obj
[1] ;
4018 if (!args
) SWIG_fail
;
4020 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4021 if (!SWIG_IsOK(res1
)) {
4022 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasMaximizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4024 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4026 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4027 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasMaximizeButton();
4028 wxPyEndAllowThreads(__tstate
);
4029 if (PyErr_Occurred()) SWIG_fail
;
4032 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4040 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasMinimizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4041 PyObject
*resultobj
= 0;
4042 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4046 PyObject
*swig_obj
[1] ;
4048 if (!args
) SWIG_fail
;
4050 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4051 if (!SWIG_IsOK(res1
)) {
4052 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasMinimizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4054 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4056 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4057 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasMinimizeButton();
4058 wxPyEndAllowThreads(__tstate
);
4059 if (PyErr_Occurred()) SWIG_fail
;
4062 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4070 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasPinButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4071 PyObject
*resultobj
= 0;
4072 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4076 PyObject
*swig_obj
[1] ;
4078 if (!args
) SWIG_fail
;
4080 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4081 if (!SWIG_IsOK(res1
)) {
4082 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasPinButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4084 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4086 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4087 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasPinButton();
4088 wxPyEndAllowThreads(__tstate
);
4089 if (PyErr_Occurred()) SWIG_fail
;
4092 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4100 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasGripperTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4101 PyObject
*resultobj
= 0;
4102 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4106 PyObject
*swig_obj
[1] ;
4108 if (!args
) SWIG_fail
;
4110 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4111 if (!SWIG_IsOK(res1
)) {
4112 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasGripperTop" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4114 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4116 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4117 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasGripperTop();
4118 wxPyEndAllowThreads(__tstate
);
4119 if (PyErr_Occurred()) SWIG_fail
;
4122 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4130 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Window(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4131 PyObject
*resultobj
= 0;
4132 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4133 wxWindow
*arg2
= (wxWindow
*) 0 ;
4134 wxAuiPaneInfo
*result
= 0 ;
4139 PyObject
* obj0
= 0 ;
4140 PyObject
* obj1
= 0 ;
4141 char * kwnames
[] = {
4142 (char *) "self",(char *) "w", NULL
4145 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Window",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4146 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4147 if (!SWIG_IsOK(res1
)) {
4148 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Window" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4150 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4151 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
4152 if (!SWIG_IsOK(res2
)) {
4153 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_Window" "', expected argument " "2"" of type '" "wxWindow *""'");
4155 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
4157 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4159 wxAuiPaneInfo
&_result_ref
= (arg1
)->Window(arg2
);
4160 result
= (wxAuiPaneInfo
*) &_result_ref
;
4162 wxPyEndAllowThreads(__tstate
);
4163 if (PyErr_Occurred()) SWIG_fail
;
4166 resultobj
= obj0
; Py_INCREF(resultobj
);
4174 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Name(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4175 PyObject
*resultobj
= 0;
4176 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4177 wxString
*arg2
= 0 ;
4178 wxAuiPaneInfo
*result
= 0 ;
4181 bool temp2
= false ;
4182 PyObject
* obj0
= 0 ;
4183 PyObject
* obj1
= 0 ;
4184 char * kwnames
[] = {
4185 (char *) "self",(char *) "n", NULL
4188 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Name",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4189 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4190 if (!SWIG_IsOK(res1
)) {
4191 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Name" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4193 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4195 arg2
= wxString_in_helper(obj1
);
4196 if (arg2
== NULL
) SWIG_fail
;
4200 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4202 wxAuiPaneInfo
&_result_ref
= (arg1
)->Name((wxString
const &)*arg2
);
4203 result
= (wxAuiPaneInfo
*) &_result_ref
;
4205 wxPyEndAllowThreads(__tstate
);
4206 if (PyErr_Occurred()) SWIG_fail
;
4209 resultobj
= obj0
; Py_INCREF(resultobj
);
4225 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Caption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4226 PyObject
*resultobj
= 0;
4227 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4228 wxString
*arg2
= 0 ;
4229 wxAuiPaneInfo
*result
= 0 ;
4232 bool temp2
= false ;
4233 PyObject
* obj0
= 0 ;
4234 PyObject
* obj1
= 0 ;
4235 char * kwnames
[] = {
4236 (char *) "self",(char *) "c", NULL
4239 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Caption",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4240 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4241 if (!SWIG_IsOK(res1
)) {
4242 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Caption" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4244 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4246 arg2
= wxString_in_helper(obj1
);
4247 if (arg2
== NULL
) SWIG_fail
;
4251 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4253 wxAuiPaneInfo
&_result_ref
= (arg1
)->Caption((wxString
const &)*arg2
);
4254 result
= (wxAuiPaneInfo
*) &_result_ref
;
4256 wxPyEndAllowThreads(__tstate
);
4257 if (PyErr_Occurred()) SWIG_fail
;
4260 resultobj
= obj0
; Py_INCREF(resultobj
);
4276 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Left(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4277 PyObject
*resultobj
= 0;
4278 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4279 wxAuiPaneInfo
*result
= 0 ;
4282 PyObject
*swig_obj
[1] ;
4284 if (!args
) SWIG_fail
;
4286 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4287 if (!SWIG_IsOK(res1
)) {
4288 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Left" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4290 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4292 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4294 wxAuiPaneInfo
&_result_ref
= (arg1
)->Left();
4295 result
= (wxAuiPaneInfo
*) &_result_ref
;
4297 wxPyEndAllowThreads(__tstate
);
4298 if (PyErr_Occurred()) SWIG_fail
;
4301 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4309 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Right(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4310 PyObject
*resultobj
= 0;
4311 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4312 wxAuiPaneInfo
*result
= 0 ;
4315 PyObject
*swig_obj
[1] ;
4317 if (!args
) SWIG_fail
;
4319 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4320 if (!SWIG_IsOK(res1
)) {
4321 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Right" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4323 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4325 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4327 wxAuiPaneInfo
&_result_ref
= (arg1
)->Right();
4328 result
= (wxAuiPaneInfo
*) &_result_ref
;
4330 wxPyEndAllowThreads(__tstate
);
4331 if (PyErr_Occurred()) SWIG_fail
;
4334 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4342 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Top(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4343 PyObject
*resultobj
= 0;
4344 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4345 wxAuiPaneInfo
*result
= 0 ;
4348 PyObject
*swig_obj
[1] ;
4350 if (!args
) SWIG_fail
;
4352 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4353 if (!SWIG_IsOK(res1
)) {
4354 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Top" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4356 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4358 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4360 wxAuiPaneInfo
&_result_ref
= (arg1
)->Top();
4361 result
= (wxAuiPaneInfo
*) &_result_ref
;
4363 wxPyEndAllowThreads(__tstate
);
4364 if (PyErr_Occurred()) SWIG_fail
;
4367 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4375 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Bottom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4376 PyObject
*resultobj
= 0;
4377 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4378 wxAuiPaneInfo
*result
= 0 ;
4381 PyObject
*swig_obj
[1] ;
4383 if (!args
) SWIG_fail
;
4385 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4386 if (!SWIG_IsOK(res1
)) {
4387 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Bottom" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4389 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4391 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4393 wxAuiPaneInfo
&_result_ref
= (arg1
)->Bottom();
4394 result
= (wxAuiPaneInfo
*) &_result_ref
;
4396 wxPyEndAllowThreads(__tstate
);
4397 if (PyErr_Occurred()) SWIG_fail
;
4400 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4408 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Center(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4409 PyObject
*resultobj
= 0;
4410 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4411 wxAuiPaneInfo
*result
= 0 ;
4414 PyObject
*swig_obj
[1] ;
4416 if (!args
) SWIG_fail
;
4418 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4419 if (!SWIG_IsOK(res1
)) {
4420 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Center" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4422 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4424 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4426 wxAuiPaneInfo
&_result_ref
= (arg1
)->Center();
4427 result
= (wxAuiPaneInfo
*) &_result_ref
;
4429 wxPyEndAllowThreads(__tstate
);
4430 if (PyErr_Occurred()) SWIG_fail
;
4433 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4441 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Centre(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4442 PyObject
*resultobj
= 0;
4443 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4444 wxAuiPaneInfo
*result
= 0 ;
4447 PyObject
*swig_obj
[1] ;
4449 if (!args
) SWIG_fail
;
4451 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4452 if (!SWIG_IsOK(res1
)) {
4453 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Centre" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4455 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4457 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4459 wxAuiPaneInfo
&_result_ref
= (arg1
)->Centre();
4460 result
= (wxAuiPaneInfo
*) &_result_ref
;
4462 wxPyEndAllowThreads(__tstate
);
4463 if (PyErr_Occurred()) SWIG_fail
;
4466 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4474 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Direction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4475 PyObject
*resultobj
= 0;
4476 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4478 wxAuiPaneInfo
*result
= 0 ;
4483 PyObject
* obj0
= 0 ;
4484 PyObject
* obj1
= 0 ;
4485 char * kwnames
[] = {
4486 (char *) "self",(char *) "direction", NULL
4489 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Direction",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4490 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4491 if (!SWIG_IsOK(res1
)) {
4492 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Direction" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4494 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4495 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4496 if (!SWIG_IsOK(ecode2
)) {
4497 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Direction" "', expected argument " "2"" of type '" "int""'");
4499 arg2
= static_cast< int >(val2
);
4501 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4503 wxAuiPaneInfo
&_result_ref
= (arg1
)->Direction(arg2
);
4504 result
= (wxAuiPaneInfo
*) &_result_ref
;
4506 wxPyEndAllowThreads(__tstate
);
4507 if (PyErr_Occurred()) SWIG_fail
;
4510 resultobj
= obj0
; Py_INCREF(resultobj
);
4518 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Layer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4519 PyObject
*resultobj
= 0;
4520 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4522 wxAuiPaneInfo
*result
= 0 ;
4527 PyObject
* obj0
= 0 ;
4528 PyObject
* obj1
= 0 ;
4529 char * kwnames
[] = {
4530 (char *) "self",(char *) "layer", NULL
4533 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Layer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4534 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4535 if (!SWIG_IsOK(res1
)) {
4536 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Layer" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4538 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4539 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4540 if (!SWIG_IsOK(ecode2
)) {
4541 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Layer" "', expected argument " "2"" of type '" "int""'");
4543 arg2
= static_cast< int >(val2
);
4545 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4547 wxAuiPaneInfo
&_result_ref
= (arg1
)->Layer(arg2
);
4548 result
= (wxAuiPaneInfo
*) &_result_ref
;
4550 wxPyEndAllowThreads(__tstate
);
4551 if (PyErr_Occurred()) SWIG_fail
;
4554 resultobj
= obj0
; Py_INCREF(resultobj
);
4562 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Row(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4563 PyObject
*resultobj
= 0;
4564 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4566 wxAuiPaneInfo
*result
= 0 ;
4571 PyObject
* obj0
= 0 ;
4572 PyObject
* obj1
= 0 ;
4573 char * kwnames
[] = {
4574 (char *) "self",(char *) "row", NULL
4577 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Row",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4578 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4579 if (!SWIG_IsOK(res1
)) {
4580 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Row" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4582 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4583 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4584 if (!SWIG_IsOK(ecode2
)) {
4585 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Row" "', expected argument " "2"" of type '" "int""'");
4587 arg2
= static_cast< int >(val2
);
4589 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4591 wxAuiPaneInfo
&_result_ref
= (arg1
)->Row(arg2
);
4592 result
= (wxAuiPaneInfo
*) &_result_ref
;
4594 wxPyEndAllowThreads(__tstate
);
4595 if (PyErr_Occurred()) SWIG_fail
;
4598 resultobj
= obj0
; Py_INCREF(resultobj
);
4606 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Position(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4607 PyObject
*resultobj
= 0;
4608 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4610 wxAuiPaneInfo
*result
= 0 ;
4615 PyObject
* obj0
= 0 ;
4616 PyObject
* obj1
= 0 ;
4617 char * kwnames
[] = {
4618 (char *) "self",(char *) "pos", NULL
4621 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Position",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4622 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4623 if (!SWIG_IsOK(res1
)) {
4624 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Position" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4626 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4627 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4628 if (!SWIG_IsOK(ecode2
)) {
4629 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Position" "', expected argument " "2"" of type '" "int""'");
4631 arg2
= static_cast< int >(val2
);
4633 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4635 wxAuiPaneInfo
&_result_ref
= (arg1
)->Position(arg2
);
4636 result
= (wxAuiPaneInfo
*) &_result_ref
;
4638 wxPyEndAllowThreads(__tstate
);
4639 if (PyErr_Occurred()) SWIG_fail
;
4642 resultobj
= obj0
; Py_INCREF(resultobj
);
4650 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_BestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4651 PyObject
*resultobj
= 0;
4652 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4654 wxAuiPaneInfo
*result
= 0 ;
4658 PyObject
* obj0
= 0 ;
4659 PyObject
* obj1
= 0 ;
4660 char * kwnames
[] = {
4661 (char *) "self",(char *) "size", NULL
4664 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_BestSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4665 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4666 if (!SWIG_IsOK(res1
)) {
4667 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_BestSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4669 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4672 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4675 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4677 wxAuiPaneInfo
&_result_ref
= (arg1
)->BestSize((wxSize
const &)*arg2
);
4678 result
= (wxAuiPaneInfo
*) &_result_ref
;
4680 wxPyEndAllowThreads(__tstate
);
4681 if (PyErr_Occurred()) SWIG_fail
;
4684 resultobj
= obj0
; Py_INCREF(resultobj
);
4692 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MinSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4693 PyObject
*resultobj
= 0;
4694 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4696 wxAuiPaneInfo
*result
= 0 ;
4700 PyObject
* obj0
= 0 ;
4701 PyObject
* obj1
= 0 ;
4702 char * kwnames
[] = {
4703 (char *) "self",(char *) "size", NULL
4706 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_MinSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4707 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4708 if (!SWIG_IsOK(res1
)) {
4709 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MinSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4711 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4714 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4717 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4719 wxAuiPaneInfo
&_result_ref
= (arg1
)->MinSize((wxSize
const &)*arg2
);
4720 result
= (wxAuiPaneInfo
*) &_result_ref
;
4722 wxPyEndAllowThreads(__tstate
);
4723 if (PyErr_Occurred()) SWIG_fail
;
4726 resultobj
= obj0
; Py_INCREF(resultobj
);
4734 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MaxSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4735 PyObject
*resultobj
= 0;
4736 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4738 wxAuiPaneInfo
*result
= 0 ;
4742 PyObject
* obj0
= 0 ;
4743 PyObject
* obj1
= 0 ;
4744 char * kwnames
[] = {
4745 (char *) "self",(char *) "size", NULL
4748 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_MaxSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4749 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4750 if (!SWIG_IsOK(res1
)) {
4751 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MaxSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4753 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4756 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4759 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4761 wxAuiPaneInfo
&_result_ref
= (arg1
)->MaxSize((wxSize
const &)*arg2
);
4762 result
= (wxAuiPaneInfo
*) &_result_ref
;
4764 wxPyEndAllowThreads(__tstate
);
4765 if (PyErr_Occurred()) SWIG_fail
;
4768 resultobj
= obj0
; Py_INCREF(resultobj
);
4776 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_FloatingPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4777 PyObject
*resultobj
= 0;
4778 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4780 wxAuiPaneInfo
*result
= 0 ;
4784 PyObject
* obj0
= 0 ;
4785 PyObject
* obj1
= 0 ;
4786 char * kwnames
[] = {
4787 (char *) "self",(char *) "pos", NULL
4790 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_FloatingPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4791 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4792 if (!SWIG_IsOK(res1
)) {
4793 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_FloatingPosition" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4795 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4798 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
4801 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4803 wxAuiPaneInfo
&_result_ref
= (arg1
)->FloatingPosition((wxPoint
const &)*arg2
);
4804 result
= (wxAuiPaneInfo
*) &_result_ref
;
4806 wxPyEndAllowThreads(__tstate
);
4807 if (PyErr_Occurred()) SWIG_fail
;
4810 resultobj
= obj0
; Py_INCREF(resultobj
);
4818 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_FloatingSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4819 PyObject
*resultobj
= 0;
4820 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4822 wxAuiPaneInfo
*result
= 0 ;
4826 PyObject
* obj0
= 0 ;
4827 PyObject
* obj1
= 0 ;
4828 char * kwnames
[] = {
4829 (char *) "self",(char *) "size", NULL
4832 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_FloatingSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4833 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4834 if (!SWIG_IsOK(res1
)) {
4835 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_FloatingSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4837 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4840 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4843 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4845 wxAuiPaneInfo
&_result_ref
= (arg1
)->FloatingSize((wxSize
const &)*arg2
);
4846 result
= (wxAuiPaneInfo
*) &_result_ref
;
4848 wxPyEndAllowThreads(__tstate
);
4849 if (PyErr_Occurred()) SWIG_fail
;
4852 resultobj
= obj0
; Py_INCREF(resultobj
);
4860 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Fixed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4861 PyObject
*resultobj
= 0;
4862 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4863 wxAuiPaneInfo
*result
= 0 ;
4866 PyObject
*swig_obj
[1] ;
4868 if (!args
) SWIG_fail
;
4870 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4871 if (!SWIG_IsOK(res1
)) {
4872 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Fixed" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4874 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4876 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4878 wxAuiPaneInfo
&_result_ref
= (arg1
)->Fixed();
4879 result
= (wxAuiPaneInfo
*) &_result_ref
;
4881 wxPyEndAllowThreads(__tstate
);
4882 if (PyErr_Occurred()) SWIG_fail
;
4885 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4893 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Resizable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4894 PyObject
*resultobj
= 0;
4895 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4896 bool arg2
= (bool) true ;
4897 wxAuiPaneInfo
*result
= 0 ;
4902 PyObject
* obj0
= 0 ;
4903 PyObject
* obj1
= 0 ;
4904 char * kwnames
[] = {
4905 (char *) "self",(char *) "resizable", NULL
4908 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Resizable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4909 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4910 if (!SWIG_IsOK(res1
)) {
4911 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Resizable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4913 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4915 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4916 if (!SWIG_IsOK(ecode2
)) {
4917 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Resizable" "', expected argument " "2"" of type '" "bool""'");
4919 arg2
= static_cast< bool >(val2
);
4922 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4924 wxAuiPaneInfo
&_result_ref
= (arg1
)->Resizable(arg2
);
4925 result
= (wxAuiPaneInfo
*) &_result_ref
;
4927 wxPyEndAllowThreads(__tstate
);
4928 if (PyErr_Occurred()) SWIG_fail
;
4931 resultobj
= obj0
; Py_INCREF(resultobj
);
4939 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Dock(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4940 PyObject
*resultobj
= 0;
4941 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4942 wxAuiPaneInfo
*result
= 0 ;
4945 PyObject
*swig_obj
[1] ;
4947 if (!args
) SWIG_fail
;
4949 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4950 if (!SWIG_IsOK(res1
)) {
4951 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Dock" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4953 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4955 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4957 wxAuiPaneInfo
&_result_ref
= (arg1
)->Dock();
4958 result
= (wxAuiPaneInfo
*) &_result_ref
;
4960 wxPyEndAllowThreads(__tstate
);
4961 if (PyErr_Occurred()) SWIG_fail
;
4964 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4972 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Float(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4973 PyObject
*resultobj
= 0;
4974 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4975 wxAuiPaneInfo
*result
= 0 ;
4978 PyObject
*swig_obj
[1] ;
4980 if (!args
) SWIG_fail
;
4982 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4983 if (!SWIG_IsOK(res1
)) {
4984 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Float" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4986 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4988 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4990 wxAuiPaneInfo
&_result_ref
= (arg1
)->Float();
4991 result
= (wxAuiPaneInfo
*) &_result_ref
;
4993 wxPyEndAllowThreads(__tstate
);
4994 if (PyErr_Occurred()) SWIG_fail
;
4997 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5005 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Hide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5006 PyObject
*resultobj
= 0;
5007 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5008 wxAuiPaneInfo
*result
= 0 ;
5011 PyObject
*swig_obj
[1] ;
5013 if (!args
) SWIG_fail
;
5015 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5016 if (!SWIG_IsOK(res1
)) {
5017 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Hide" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5019 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5021 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5023 wxAuiPaneInfo
&_result_ref
= (arg1
)->Hide();
5024 result
= (wxAuiPaneInfo
*) &_result_ref
;
5026 wxPyEndAllowThreads(__tstate
);
5027 if (PyErr_Occurred()) SWIG_fail
;
5030 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5038 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Show(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5039 PyObject
*resultobj
= 0;
5040 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5041 bool arg2
= (bool) true ;
5042 wxAuiPaneInfo
*result
= 0 ;
5047 PyObject
* obj0
= 0 ;
5048 PyObject
* obj1
= 0 ;
5049 char * kwnames
[] = {
5050 (char *) "self",(char *) "show", NULL
5053 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Show",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5054 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5055 if (!SWIG_IsOK(res1
)) {
5056 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Show" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5058 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5060 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5061 if (!SWIG_IsOK(ecode2
)) {
5062 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Show" "', expected argument " "2"" of type '" "bool""'");
5064 arg2
= static_cast< bool >(val2
);
5067 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5069 wxAuiPaneInfo
&_result_ref
= (arg1
)->Show(arg2
);
5070 result
= (wxAuiPaneInfo
*) &_result_ref
;
5072 wxPyEndAllowThreads(__tstate
);
5073 if (PyErr_Occurred()) SWIG_fail
;
5076 resultobj
= obj0
; Py_INCREF(resultobj
);
5084 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CaptionVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5085 PyObject
*resultobj
= 0;
5086 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5087 bool arg2
= (bool) true ;
5088 wxAuiPaneInfo
*result
= 0 ;
5093 PyObject
* obj0
= 0 ;
5094 PyObject
* obj1
= 0 ;
5095 char * kwnames
[] = {
5096 (char *) "self",(char *) "visible", NULL
5099 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_CaptionVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5100 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5101 if (!SWIG_IsOK(res1
)) {
5102 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CaptionVisible" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5104 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5106 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5107 if (!SWIG_IsOK(ecode2
)) {
5108 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_CaptionVisible" "', expected argument " "2"" of type '" "bool""'");
5110 arg2
= static_cast< bool >(val2
);
5113 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5115 wxAuiPaneInfo
&_result_ref
= (arg1
)->CaptionVisible(arg2
);
5116 result
= (wxAuiPaneInfo
*) &_result_ref
;
5118 wxPyEndAllowThreads(__tstate
);
5119 if (PyErr_Occurred()) SWIG_fail
;
5122 resultobj
= obj0
; Py_INCREF(resultobj
);
5130 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Maximize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5131 PyObject
*resultobj
= 0;
5132 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5133 wxAuiPaneInfo
*result
= 0 ;
5136 PyObject
*swig_obj
[1] ;
5138 if (!args
) SWIG_fail
;
5140 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5141 if (!SWIG_IsOK(res1
)) {
5142 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Maximize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5144 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5146 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5148 wxAuiPaneInfo
&_result_ref
= (arg1
)->Maximize();
5149 result
= (wxAuiPaneInfo
*) &_result_ref
;
5151 wxPyEndAllowThreads(__tstate
);
5152 if (PyErr_Occurred()) SWIG_fail
;
5155 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5163 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Restore(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5164 PyObject
*resultobj
= 0;
5165 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5166 wxAuiPaneInfo
*result
= 0 ;
5169 PyObject
*swig_obj
[1] ;
5171 if (!args
) SWIG_fail
;
5173 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5174 if (!SWIG_IsOK(res1
)) {
5175 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Restore" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5177 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5179 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5181 wxAuiPaneInfo
&_result_ref
= (arg1
)->Restore();
5182 result
= (wxAuiPaneInfo
*) &_result_ref
;
5184 wxPyEndAllowThreads(__tstate
);
5185 if (PyErr_Occurred()) SWIG_fail
;
5188 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5196 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_PaneBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5197 PyObject
*resultobj
= 0;
5198 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5199 bool arg2
= (bool) true ;
5200 wxAuiPaneInfo
*result
= 0 ;
5205 PyObject
* obj0
= 0 ;
5206 PyObject
* obj1
= 0 ;
5207 char * kwnames
[] = {
5208 (char *) "self",(char *) "visible", NULL
5211 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_PaneBorder",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5212 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5213 if (!SWIG_IsOK(res1
)) {
5214 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_PaneBorder" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5216 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5218 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5219 if (!SWIG_IsOK(ecode2
)) {
5220 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_PaneBorder" "', expected argument " "2"" of type '" "bool""'");
5222 arg2
= static_cast< bool >(val2
);
5225 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5227 wxAuiPaneInfo
&_result_ref
= (arg1
)->PaneBorder(arg2
);
5228 result
= (wxAuiPaneInfo
*) &_result_ref
;
5230 wxPyEndAllowThreads(__tstate
);
5231 if (PyErr_Occurred()) SWIG_fail
;
5234 resultobj
= obj0
; Py_INCREF(resultobj
);
5242 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Gripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5243 PyObject
*resultobj
= 0;
5244 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5245 bool arg2
= (bool) true ;
5246 wxAuiPaneInfo
*result
= 0 ;
5251 PyObject
* obj0
= 0 ;
5252 PyObject
* obj1
= 0 ;
5253 char * kwnames
[] = {
5254 (char *) "self",(char *) "visible", NULL
5257 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Gripper",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5258 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5259 if (!SWIG_IsOK(res1
)) {
5260 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Gripper" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5262 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5264 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5265 if (!SWIG_IsOK(ecode2
)) {
5266 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Gripper" "', expected argument " "2"" of type '" "bool""'");
5268 arg2
= static_cast< bool >(val2
);
5271 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5273 wxAuiPaneInfo
&_result_ref
= (arg1
)->Gripper(arg2
);
5274 result
= (wxAuiPaneInfo
*) &_result_ref
;
5276 wxPyEndAllowThreads(__tstate
);
5277 if (PyErr_Occurred()) SWIG_fail
;
5280 resultobj
= obj0
; Py_INCREF(resultobj
);
5288 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_GripperTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5289 PyObject
*resultobj
= 0;
5290 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5291 bool arg2
= (bool) true ;
5292 wxAuiPaneInfo
*result
= 0 ;
5297 PyObject
* obj0
= 0 ;
5298 PyObject
* obj1
= 0 ;
5299 char * kwnames
[] = {
5300 (char *) "self",(char *) "attop", NULL
5303 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_GripperTop",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5304 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5305 if (!SWIG_IsOK(res1
)) {
5306 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_GripperTop" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5308 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5310 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5311 if (!SWIG_IsOK(ecode2
)) {
5312 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_GripperTop" "', expected argument " "2"" of type '" "bool""'");
5314 arg2
= static_cast< bool >(val2
);
5317 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5319 wxAuiPaneInfo
&_result_ref
= (arg1
)->GripperTop(arg2
);
5320 result
= (wxAuiPaneInfo
*) &_result_ref
;
5322 wxPyEndAllowThreads(__tstate
);
5323 if (PyErr_Occurred()) SWIG_fail
;
5326 resultobj
= obj0
; Py_INCREF(resultobj
);
5334 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CloseButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5335 PyObject
*resultobj
= 0;
5336 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5337 bool arg2
= (bool) true ;
5338 wxAuiPaneInfo
*result
= 0 ;
5343 PyObject
* obj0
= 0 ;
5344 PyObject
* obj1
= 0 ;
5345 char * kwnames
[] = {
5346 (char *) "self",(char *) "visible", NULL
5349 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_CloseButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5350 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5351 if (!SWIG_IsOK(res1
)) {
5352 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CloseButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5354 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5356 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5357 if (!SWIG_IsOK(ecode2
)) {
5358 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_CloseButton" "', expected argument " "2"" of type '" "bool""'");
5360 arg2
= static_cast< bool >(val2
);
5363 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5365 wxAuiPaneInfo
&_result_ref
= (arg1
)->CloseButton(arg2
);
5366 result
= (wxAuiPaneInfo
*) &_result_ref
;
5368 wxPyEndAllowThreads(__tstate
);
5369 if (PyErr_Occurred()) SWIG_fail
;
5372 resultobj
= obj0
; Py_INCREF(resultobj
);
5380 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MaximizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5381 PyObject
*resultobj
= 0;
5382 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5383 bool arg2
= (bool) true ;
5384 wxAuiPaneInfo
*result
= 0 ;
5389 PyObject
* obj0
= 0 ;
5390 PyObject
* obj1
= 0 ;
5391 char * kwnames
[] = {
5392 (char *) "self",(char *) "visible", NULL
5395 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_MaximizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5396 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5397 if (!SWIG_IsOK(res1
)) {
5398 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MaximizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5400 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5402 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5403 if (!SWIG_IsOK(ecode2
)) {
5404 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_MaximizeButton" "', expected argument " "2"" of type '" "bool""'");
5406 arg2
= static_cast< bool >(val2
);
5409 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5411 wxAuiPaneInfo
&_result_ref
= (arg1
)->MaximizeButton(arg2
);
5412 result
= (wxAuiPaneInfo
*) &_result_ref
;
5414 wxPyEndAllowThreads(__tstate
);
5415 if (PyErr_Occurred()) SWIG_fail
;
5418 resultobj
= obj0
; Py_INCREF(resultobj
);
5426 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MinimizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5427 PyObject
*resultobj
= 0;
5428 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5429 bool arg2
= (bool) true ;
5430 wxAuiPaneInfo
*result
= 0 ;
5435 PyObject
* obj0
= 0 ;
5436 PyObject
* obj1
= 0 ;
5437 char * kwnames
[] = {
5438 (char *) "self",(char *) "visible", NULL
5441 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_MinimizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5442 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5443 if (!SWIG_IsOK(res1
)) {
5444 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MinimizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5446 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5448 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5449 if (!SWIG_IsOK(ecode2
)) {
5450 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_MinimizeButton" "', expected argument " "2"" of type '" "bool""'");
5452 arg2
= static_cast< bool >(val2
);
5455 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5457 wxAuiPaneInfo
&_result_ref
= (arg1
)->MinimizeButton(arg2
);
5458 result
= (wxAuiPaneInfo
*) &_result_ref
;
5460 wxPyEndAllowThreads(__tstate
);
5461 if (PyErr_Occurred()) SWIG_fail
;
5464 resultobj
= obj0
; Py_INCREF(resultobj
);
5472 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_PinButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5473 PyObject
*resultobj
= 0;
5474 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5475 bool arg2
= (bool) true ;
5476 wxAuiPaneInfo
*result
= 0 ;
5481 PyObject
* obj0
= 0 ;
5482 PyObject
* obj1
= 0 ;
5483 char * kwnames
[] = {
5484 (char *) "self",(char *) "visible", NULL
5487 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_PinButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5488 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5489 if (!SWIG_IsOK(res1
)) {
5490 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_PinButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5492 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5494 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5495 if (!SWIG_IsOK(ecode2
)) {
5496 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_PinButton" "', expected argument " "2"" of type '" "bool""'");
5498 arg2
= static_cast< bool >(val2
);
5501 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5503 wxAuiPaneInfo
&_result_ref
= (arg1
)->PinButton(arg2
);
5504 result
= (wxAuiPaneInfo
*) &_result_ref
;
5506 wxPyEndAllowThreads(__tstate
);
5507 if (PyErr_Occurred()) SWIG_fail
;
5510 resultobj
= obj0
; Py_INCREF(resultobj
);
5518 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_DestroyOnClose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5519 PyObject
*resultobj
= 0;
5520 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5521 bool arg2
= (bool) true ;
5522 wxAuiPaneInfo
*result
= 0 ;
5527 PyObject
* obj0
= 0 ;
5528 PyObject
* obj1
= 0 ;
5529 char * kwnames
[] = {
5530 (char *) "self",(char *) "b", NULL
5533 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_DestroyOnClose",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5534 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5535 if (!SWIG_IsOK(res1
)) {
5536 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_DestroyOnClose" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5538 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5540 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5541 if (!SWIG_IsOK(ecode2
)) {
5542 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_DestroyOnClose" "', expected argument " "2"" of type '" "bool""'");
5544 arg2
= static_cast< bool >(val2
);
5547 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5549 wxAuiPaneInfo
&_result_ref
= (arg1
)->DestroyOnClose(arg2
);
5550 result
= (wxAuiPaneInfo
*) &_result_ref
;
5552 wxPyEndAllowThreads(__tstate
);
5553 if (PyErr_Occurred()) SWIG_fail
;
5556 resultobj
= obj0
; Py_INCREF(resultobj
);
5564 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_TopDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5565 PyObject
*resultobj
= 0;
5566 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5567 bool arg2
= (bool) true ;
5568 wxAuiPaneInfo
*result
= 0 ;
5573 PyObject
* obj0
= 0 ;
5574 PyObject
* obj1
= 0 ;
5575 char * kwnames
[] = {
5576 (char *) "self",(char *) "b", NULL
5579 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_TopDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5580 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5581 if (!SWIG_IsOK(res1
)) {
5582 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_TopDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5584 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5586 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5587 if (!SWIG_IsOK(ecode2
)) {
5588 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_TopDockable" "', expected argument " "2"" of type '" "bool""'");
5590 arg2
= static_cast< bool >(val2
);
5593 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5595 wxAuiPaneInfo
&_result_ref
= (arg1
)->TopDockable(arg2
);
5596 result
= (wxAuiPaneInfo
*) &_result_ref
;
5598 wxPyEndAllowThreads(__tstate
);
5599 if (PyErr_Occurred()) SWIG_fail
;
5602 resultobj
= obj0
; Py_INCREF(resultobj
);
5610 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_BottomDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5611 PyObject
*resultobj
= 0;
5612 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5613 bool arg2
= (bool) true ;
5614 wxAuiPaneInfo
*result
= 0 ;
5619 PyObject
* obj0
= 0 ;
5620 PyObject
* obj1
= 0 ;
5621 char * kwnames
[] = {
5622 (char *) "self",(char *) "b", NULL
5625 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_BottomDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5626 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5627 if (!SWIG_IsOK(res1
)) {
5628 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_BottomDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5630 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5632 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5633 if (!SWIG_IsOK(ecode2
)) {
5634 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_BottomDockable" "', expected argument " "2"" of type '" "bool""'");
5636 arg2
= static_cast< bool >(val2
);
5639 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5641 wxAuiPaneInfo
&_result_ref
= (arg1
)->BottomDockable(arg2
);
5642 result
= (wxAuiPaneInfo
*) &_result_ref
;
5644 wxPyEndAllowThreads(__tstate
);
5645 if (PyErr_Occurred()) SWIG_fail
;
5648 resultobj
= obj0
; Py_INCREF(resultobj
);
5656 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_LeftDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5657 PyObject
*resultobj
= 0;
5658 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5659 bool arg2
= (bool) true ;
5660 wxAuiPaneInfo
*result
= 0 ;
5665 PyObject
* obj0
= 0 ;
5666 PyObject
* obj1
= 0 ;
5667 char * kwnames
[] = {
5668 (char *) "self",(char *) "b", NULL
5671 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_LeftDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5672 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5673 if (!SWIG_IsOK(res1
)) {
5674 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_LeftDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5676 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5678 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5679 if (!SWIG_IsOK(ecode2
)) {
5680 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_LeftDockable" "', expected argument " "2"" of type '" "bool""'");
5682 arg2
= static_cast< bool >(val2
);
5685 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5687 wxAuiPaneInfo
&_result_ref
= (arg1
)->LeftDockable(arg2
);
5688 result
= (wxAuiPaneInfo
*) &_result_ref
;
5690 wxPyEndAllowThreads(__tstate
);
5691 if (PyErr_Occurred()) SWIG_fail
;
5694 resultobj
= obj0
; Py_INCREF(resultobj
);
5702 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_RightDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5703 PyObject
*resultobj
= 0;
5704 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5705 bool arg2
= (bool) true ;
5706 wxAuiPaneInfo
*result
= 0 ;
5711 PyObject
* obj0
= 0 ;
5712 PyObject
* obj1
= 0 ;
5713 char * kwnames
[] = {
5714 (char *) "self",(char *) "b", NULL
5717 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_RightDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5718 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5719 if (!SWIG_IsOK(res1
)) {
5720 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_RightDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5722 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5724 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5725 if (!SWIG_IsOK(ecode2
)) {
5726 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_RightDockable" "', expected argument " "2"" of type '" "bool""'");
5728 arg2
= static_cast< bool >(val2
);
5731 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5733 wxAuiPaneInfo
&_result_ref
= (arg1
)->RightDockable(arg2
);
5734 result
= (wxAuiPaneInfo
*) &_result_ref
;
5736 wxPyEndAllowThreads(__tstate
);
5737 if (PyErr_Occurred()) SWIG_fail
;
5740 resultobj
= obj0
; Py_INCREF(resultobj
);
5748 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Floatable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5749 PyObject
*resultobj
= 0;
5750 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5751 bool arg2
= (bool) true ;
5752 wxAuiPaneInfo
*result
= 0 ;
5757 PyObject
* obj0
= 0 ;
5758 PyObject
* obj1
= 0 ;
5759 char * kwnames
[] = {
5760 (char *) "self",(char *) "b", NULL
5763 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Floatable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5764 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5765 if (!SWIG_IsOK(res1
)) {
5766 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Floatable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5768 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5770 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5771 if (!SWIG_IsOK(ecode2
)) {
5772 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Floatable" "', expected argument " "2"" of type '" "bool""'");
5774 arg2
= static_cast< bool >(val2
);
5777 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5779 wxAuiPaneInfo
&_result_ref
= (arg1
)->Floatable(arg2
);
5780 result
= (wxAuiPaneInfo
*) &_result_ref
;
5782 wxPyEndAllowThreads(__tstate
);
5783 if (PyErr_Occurred()) SWIG_fail
;
5786 resultobj
= obj0
; Py_INCREF(resultobj
);
5794 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Movable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5795 PyObject
*resultobj
= 0;
5796 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5797 bool arg2
= (bool) true ;
5798 wxAuiPaneInfo
*result
= 0 ;
5803 PyObject
* obj0
= 0 ;
5804 PyObject
* obj1
= 0 ;
5805 char * kwnames
[] = {
5806 (char *) "self",(char *) "b", NULL
5809 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Movable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5810 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5811 if (!SWIG_IsOK(res1
)) {
5812 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Movable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5814 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5816 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5817 if (!SWIG_IsOK(ecode2
)) {
5818 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Movable" "', expected argument " "2"" of type '" "bool""'");
5820 arg2
= static_cast< bool >(val2
);
5823 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5825 wxAuiPaneInfo
&_result_ref
= (arg1
)->Movable(arg2
);
5826 result
= (wxAuiPaneInfo
*) &_result_ref
;
5828 wxPyEndAllowThreads(__tstate
);
5829 if (PyErr_Occurred()) SWIG_fail
;
5832 resultobj
= obj0
; Py_INCREF(resultobj
);
5840 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_SaveHidden(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5841 PyObject
*resultobj
= 0;
5842 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5843 wxAuiPaneInfo
*result
= 0 ;
5846 PyObject
*swig_obj
[1] ;
5848 if (!args
) SWIG_fail
;
5850 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5851 if (!SWIG_IsOK(res1
)) {
5852 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_SaveHidden" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5854 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5856 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5858 wxAuiPaneInfo
&_result_ref
= (arg1
)->SaveHidden();
5859 result
= (wxAuiPaneInfo
*) &_result_ref
;
5861 wxPyEndAllowThreads(__tstate
);
5862 if (PyErr_Occurred()) SWIG_fail
;
5865 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5873 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_RestoreHidden(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5874 PyObject
*resultobj
= 0;
5875 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5876 wxAuiPaneInfo
*result
= 0 ;
5879 PyObject
*swig_obj
[1] ;
5881 if (!args
) SWIG_fail
;
5883 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5884 if (!SWIG_IsOK(res1
)) {
5885 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_RestoreHidden" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5887 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5889 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5891 wxAuiPaneInfo
&_result_ref
= (arg1
)->RestoreHidden();
5892 result
= (wxAuiPaneInfo
*) &_result_ref
;
5894 wxPyEndAllowThreads(__tstate
);
5895 if (PyErr_Occurred()) SWIG_fail
;
5898 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5906 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Dockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5907 PyObject
*resultobj
= 0;
5908 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5909 bool arg2
= (bool) true ;
5910 wxAuiPaneInfo
*result
= 0 ;
5915 PyObject
* obj0
= 0 ;
5916 PyObject
* obj1
= 0 ;
5917 char * kwnames
[] = {
5918 (char *) "self",(char *) "b", NULL
5921 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Dockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5922 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5923 if (!SWIG_IsOK(res1
)) {
5924 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Dockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5926 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5928 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5929 if (!SWIG_IsOK(ecode2
)) {
5930 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Dockable" "', expected argument " "2"" of type '" "bool""'");
5932 arg2
= static_cast< bool >(val2
);
5935 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5937 wxAuiPaneInfo
&_result_ref
= (arg1
)->Dockable(arg2
);
5938 result
= (wxAuiPaneInfo
*) &_result_ref
;
5940 wxPyEndAllowThreads(__tstate
);
5941 if (PyErr_Occurred()) SWIG_fail
;
5944 resultobj
= obj0
; Py_INCREF(resultobj
);
5952 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_DefaultPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5953 PyObject
*resultobj
= 0;
5954 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5955 wxAuiPaneInfo
*result
= 0 ;
5958 PyObject
*swig_obj
[1] ;
5960 if (!args
) SWIG_fail
;
5962 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5963 if (!SWIG_IsOK(res1
)) {
5964 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_DefaultPane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5966 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5968 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5970 wxAuiPaneInfo
&_result_ref
= (arg1
)->DefaultPane();
5971 result
= (wxAuiPaneInfo
*) &_result_ref
;
5973 wxPyEndAllowThreads(__tstate
);
5974 if (PyErr_Occurred()) SWIG_fail
;
5977 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5985 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CentrePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5986 PyObject
*resultobj
= 0;
5987 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5988 wxAuiPaneInfo
*result
= 0 ;
5991 PyObject
*swig_obj
[1] ;
5993 if (!args
) SWIG_fail
;
5995 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5996 if (!SWIG_IsOK(res1
)) {
5997 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CentrePane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5999 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6001 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6003 wxAuiPaneInfo
&_result_ref
= (arg1
)->CentrePane();
6004 result
= (wxAuiPaneInfo
*) &_result_ref
;
6006 wxPyEndAllowThreads(__tstate
);
6007 if (PyErr_Occurred()) SWIG_fail
;
6010 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
6018 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CenterPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6019 PyObject
*resultobj
= 0;
6020 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6021 wxAuiPaneInfo
*result
= 0 ;
6024 PyObject
*swig_obj
[1] ;
6026 if (!args
) SWIG_fail
;
6028 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6029 if (!SWIG_IsOK(res1
)) {
6030 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CenterPane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6032 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6034 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6036 wxAuiPaneInfo
&_result_ref
= (arg1
)->CenterPane();
6037 result
= (wxAuiPaneInfo
*) &_result_ref
;
6039 wxPyEndAllowThreads(__tstate
);
6040 if (PyErr_Occurred()) SWIG_fail
;
6043 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
6051 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_ToolbarPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6052 PyObject
*resultobj
= 0;
6053 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6054 wxAuiPaneInfo
*result
= 0 ;
6057 PyObject
*swig_obj
[1] ;
6059 if (!args
) SWIG_fail
;
6061 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6062 if (!SWIG_IsOK(res1
)) {
6063 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_ToolbarPane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6065 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6067 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6069 wxAuiPaneInfo
&_result_ref
= (arg1
)->ToolbarPane();
6070 result
= (wxAuiPaneInfo
*) &_result_ref
;
6072 wxPyEndAllowThreads(__tstate
);
6073 if (PyErr_Occurred()) SWIG_fail
;
6076 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
6084 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_SetFlag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6085 PyObject
*resultobj
= 0;
6086 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6089 wxAuiPaneInfo
*result
= 0 ;
6096 PyObject
* obj0
= 0 ;
6097 PyObject
* obj1
= 0 ;
6098 PyObject
* obj2
= 0 ;
6099 char * kwnames
[] = {
6100 (char *) "self",(char *) "flag",(char *) "option_state", NULL
6103 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiPaneInfo_SetFlag",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6104 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6105 if (!SWIG_IsOK(res1
)) {
6106 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_SetFlag" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6108 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6109 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6110 if (!SWIG_IsOK(ecode2
)) {
6111 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_SetFlag" "', expected argument " "2"" of type '" "int""'");
6113 arg2
= static_cast< int >(val2
);
6114 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
6115 if (!SWIG_IsOK(ecode3
)) {
6116 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiPaneInfo_SetFlag" "', expected argument " "3"" of type '" "bool""'");
6118 arg3
= static_cast< bool >(val3
);
6120 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6122 wxAuiPaneInfo
&_result_ref
= (arg1
)->SetFlag(arg2
,arg3
);
6123 result
= (wxAuiPaneInfo
*) &_result_ref
;
6125 wxPyEndAllowThreads(__tstate
);
6126 if (PyErr_Occurred()) SWIG_fail
;
6129 resultobj
= obj0
; Py_INCREF(resultobj
);
6137 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasFlag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6138 PyObject
*resultobj
= 0;
6139 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6146 PyObject
* obj0
= 0 ;
6147 PyObject
* obj1
= 0 ;
6148 char * kwnames
[] = {
6149 (char *) "self",(char *) "flag", NULL
6152 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_HasFlag",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6153 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6154 if (!SWIG_IsOK(res1
)) {
6155 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasFlag" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
6157 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6158 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6159 if (!SWIG_IsOK(ecode2
)) {
6160 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_HasFlag" "', expected argument " "2"" of type '" "int""'");
6162 arg2
= static_cast< int >(val2
);
6164 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6165 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasFlag(arg2
);
6166 wxPyEndAllowThreads(__tstate
);
6167 if (PyErr_Occurred()) SWIG_fail
;
6170 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6178 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_name_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6179 PyObject
*resultobj
= 0;
6180 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6181 wxString
*arg2
= (wxString
*) 0 ;
6184 bool temp2
= false ;
6185 PyObject
*swig_obj
[2] ;
6187 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_name_set",2,2,swig_obj
)) SWIG_fail
;
6188 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6189 if (!SWIG_IsOK(res1
)) {
6190 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_name_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6192 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6194 arg2
= wxString_in_helper(swig_obj
[1]);
6195 if (arg2
== NULL
) SWIG_fail
;
6198 if (arg1
) (arg1
)->name
= *arg2
;
6200 resultobj
= SWIG_Py_Void();
6215 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_name_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6216 PyObject
*resultobj
= 0;
6217 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6218 wxString
*result
= 0 ;
6221 PyObject
*swig_obj
[1] ;
6223 if (!args
) SWIG_fail
;
6225 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6226 if (!SWIG_IsOK(res1
)) {
6227 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_name_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6229 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6230 result
= (wxString
*)& ((arg1
)->name
);
6233 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
6235 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
6244 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_caption_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6245 PyObject
*resultobj
= 0;
6246 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6247 wxString
*arg2
= (wxString
*) 0 ;
6250 bool temp2
= false ;
6251 PyObject
*swig_obj
[2] ;
6253 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_caption_set",2,2,swig_obj
)) SWIG_fail
;
6254 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6255 if (!SWIG_IsOK(res1
)) {
6256 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_caption_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6258 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6260 arg2
= wxString_in_helper(swig_obj
[1]);
6261 if (arg2
== NULL
) SWIG_fail
;
6264 if (arg1
) (arg1
)->caption
= *arg2
;
6266 resultobj
= SWIG_Py_Void();
6281 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_caption_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6282 PyObject
*resultobj
= 0;
6283 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6284 wxString
*result
= 0 ;
6287 PyObject
*swig_obj
[1] ;
6289 if (!args
) SWIG_fail
;
6291 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6292 if (!SWIG_IsOK(res1
)) {
6293 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_caption_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6295 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6296 result
= (wxString
*)& ((arg1
)->caption
);
6299 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
6301 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
6310 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_window_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6311 PyObject
*resultobj
= 0;
6312 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6313 wxWindow
*arg2
= (wxWindow
*) 0 ;
6318 PyObject
*swig_obj
[2] ;
6320 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_window_set",2,2,swig_obj
)) SWIG_fail
;
6321 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6322 if (!SWIG_IsOK(res1
)) {
6323 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_window_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6325 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6326 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN
| 0 );
6327 if (!SWIG_IsOK(res2
)) {
6328 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_window_set" "', expected argument " "2"" of type '" "wxWindow *""'");
6330 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
6331 if (arg1
) (arg1
)->window
= arg2
;
6333 resultobj
= SWIG_Py_Void();
6340 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_window_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6341 PyObject
*resultobj
= 0;
6342 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6343 wxWindow
*result
= 0 ;
6346 PyObject
*swig_obj
[1] ;
6348 if (!args
) SWIG_fail
;
6350 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6351 if (!SWIG_IsOK(res1
)) {
6352 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_window_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6354 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6355 result
= (wxWindow
*) ((arg1
)->window
);
6357 resultobj
= wxPyMake_wxObject(result
, 0);
6365 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_frame_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6366 PyObject
*resultobj
= 0;
6367 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6368 wxFrame
*arg2
= (wxFrame
*) 0 ;
6373 PyObject
*swig_obj
[2] ;
6375 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_frame_set",2,2,swig_obj
)) SWIG_fail
;
6376 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6377 if (!SWIG_IsOK(res1
)) {
6378 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_frame_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6380 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6381 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxFrame
, SWIG_POINTER_DISOWN
| 0 );
6382 if (!SWIG_IsOK(res2
)) {
6383 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_frame_set" "', expected argument " "2"" of type '" "wxFrame *""'");
6385 arg2
= reinterpret_cast< wxFrame
* >(argp2
);
6386 if (arg1
) (arg1
)->frame
= arg2
;
6388 resultobj
= SWIG_Py_Void();
6395 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_frame_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6396 PyObject
*resultobj
= 0;
6397 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6398 wxFrame
*result
= 0 ;
6401 PyObject
*swig_obj
[1] ;
6403 if (!args
) SWIG_fail
;
6405 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6406 if (!SWIG_IsOK(res1
)) {
6407 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_frame_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6409 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6410 result
= (wxFrame
*) ((arg1
)->frame
);
6412 resultobj
= wxPyMake_wxObject(result
, 0);
6420 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_state_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6421 PyObject
*resultobj
= 0;
6422 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6428 PyObject
*swig_obj
[2] ;
6430 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_state_set",2,2,swig_obj
)) SWIG_fail
;
6431 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6432 if (!SWIG_IsOK(res1
)) {
6433 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_state_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6435 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6436 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6437 if (!SWIG_IsOK(ecode2
)) {
6438 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_state_set" "', expected argument " "2"" of type '" "int""'");
6440 arg2
= static_cast< int >(val2
);
6441 if (arg1
) (arg1
)->state
= arg2
;
6443 resultobj
= SWIG_Py_Void();
6450 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_state_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6451 PyObject
*resultobj
= 0;
6452 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6456 PyObject
*swig_obj
[1] ;
6458 if (!args
) SWIG_fail
;
6460 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6461 if (!SWIG_IsOK(res1
)) {
6462 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_state_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6464 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6465 result
= (int) ((arg1
)->state
);
6466 resultobj
= SWIG_From_int(static_cast< int >(result
));
6473 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_direction_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6474 PyObject
*resultobj
= 0;
6475 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6481 PyObject
*swig_obj
[2] ;
6483 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
;
6484 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6485 if (!SWIG_IsOK(res1
)) {
6486 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6488 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6489 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6490 if (!SWIG_IsOK(ecode2
)) {
6491 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'");
6493 arg2
= static_cast< int >(val2
);
6494 if (arg1
) (arg1
)->dock_direction
= arg2
;
6496 resultobj
= SWIG_Py_Void();
6503 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_direction_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6504 PyObject
*resultobj
= 0;
6505 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6509 PyObject
*swig_obj
[1] ;
6511 if (!args
) SWIG_fail
;
6513 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6514 if (!SWIG_IsOK(res1
)) {
6515 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6517 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6518 result
= (int) ((arg1
)->dock_direction
);
6519 resultobj
= SWIG_From_int(static_cast< int >(result
));
6526 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_layer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6527 PyObject
*resultobj
= 0;
6528 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6534 PyObject
*swig_obj
[2] ;
6536 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
;
6537 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6538 if (!SWIG_IsOK(res1
)) {
6539 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6541 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6542 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6543 if (!SWIG_IsOK(ecode2
)) {
6544 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'");
6546 arg2
= static_cast< int >(val2
);
6547 if (arg1
) (arg1
)->dock_layer
= arg2
;
6549 resultobj
= SWIG_Py_Void();
6556 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_layer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6557 PyObject
*resultobj
= 0;
6558 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6562 PyObject
*swig_obj
[1] ;
6564 if (!args
) SWIG_fail
;
6566 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6567 if (!SWIG_IsOK(res1
)) {
6568 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6570 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6571 result
= (int) ((arg1
)->dock_layer
);
6572 resultobj
= SWIG_From_int(static_cast< int >(result
));
6579 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_row_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6580 PyObject
*resultobj
= 0;
6581 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6587 PyObject
*swig_obj
[2] ;
6589 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
;
6590 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6591 if (!SWIG_IsOK(res1
)) {
6592 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_row_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6594 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6595 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6596 if (!SWIG_IsOK(ecode2
)) {
6597 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'");
6599 arg2
= static_cast< int >(val2
);
6600 if (arg1
) (arg1
)->dock_row
= arg2
;
6602 resultobj
= SWIG_Py_Void();
6609 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_row_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6610 PyObject
*resultobj
= 0;
6611 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6615 PyObject
*swig_obj
[1] ;
6617 if (!args
) SWIG_fail
;
6619 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6620 if (!SWIG_IsOK(res1
)) {
6621 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_row_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6623 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6624 result
= (int) ((arg1
)->dock_row
);
6625 resultobj
= SWIG_From_int(static_cast< int >(result
));
6632 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_pos_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6633 PyObject
*resultobj
= 0;
6634 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6640 PyObject
*swig_obj
[2] ;
6642 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_pos_set",2,2,swig_obj
)) SWIG_fail
;
6643 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6644 if (!SWIG_IsOK(res1
)) {
6645 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_pos_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6647 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6648 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6649 if (!SWIG_IsOK(ecode2
)) {
6650 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_pos_set" "', expected argument " "2"" of type '" "int""'");
6652 arg2
= static_cast< int >(val2
);
6653 if (arg1
) (arg1
)->dock_pos
= arg2
;
6655 resultobj
= SWIG_Py_Void();
6662 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_pos_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6663 PyObject
*resultobj
= 0;
6664 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6668 PyObject
*swig_obj
[1] ;
6670 if (!args
) SWIG_fail
;
6672 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6673 if (!SWIG_IsOK(res1
)) {
6674 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_pos_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6676 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6677 result
= (int) ((arg1
)->dock_pos
);
6678 resultobj
= SWIG_From_int(static_cast< int >(result
));
6685 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_best_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6686 PyObject
*resultobj
= 0;
6687 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6688 wxSize
*arg2
= (wxSize
*) 0 ;
6693 PyObject
*swig_obj
[2] ;
6695 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_best_size_set",2,2,swig_obj
)) SWIG_fail
;
6696 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6697 if (!SWIG_IsOK(res1
)) {
6698 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_best_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6700 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6701 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6702 if (!SWIG_IsOK(res2
)) {
6703 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_best_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6705 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6706 if (arg1
) (arg1
)->best_size
= *arg2
;
6708 resultobj
= SWIG_Py_Void();
6715 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_best_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6716 PyObject
*resultobj
= 0;
6717 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6718 wxSize
*result
= 0 ;
6721 PyObject
*swig_obj
[1] ;
6723 if (!args
) SWIG_fail
;
6725 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6726 if (!SWIG_IsOK(res1
)) {
6727 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_best_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6729 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6730 result
= (wxSize
*)& ((arg1
)->best_size
);
6731 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6738 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_min_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6739 PyObject
*resultobj
= 0;
6740 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6741 wxSize
*arg2
= (wxSize
*) 0 ;
6746 PyObject
*swig_obj
[2] ;
6748 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
;
6749 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6750 if (!SWIG_IsOK(res1
)) {
6751 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_min_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6753 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6754 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6755 if (!SWIG_IsOK(res2
)) {
6756 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_min_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6758 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6759 if (arg1
) (arg1
)->min_size
= *arg2
;
6761 resultobj
= SWIG_Py_Void();
6768 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_min_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6769 PyObject
*resultobj
= 0;
6770 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6771 wxSize
*result
= 0 ;
6774 PyObject
*swig_obj
[1] ;
6776 if (!args
) SWIG_fail
;
6778 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6779 if (!SWIG_IsOK(res1
)) {
6780 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_min_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6782 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6783 result
= (wxSize
*)& ((arg1
)->min_size
);
6784 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6791 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_max_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6792 PyObject
*resultobj
= 0;
6793 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6794 wxSize
*arg2
= (wxSize
*) 0 ;
6799 PyObject
*swig_obj
[2] ;
6801 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_max_size_set",2,2,swig_obj
)) SWIG_fail
;
6802 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6803 if (!SWIG_IsOK(res1
)) {
6804 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_max_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6806 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6807 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6808 if (!SWIG_IsOK(res2
)) {
6809 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_max_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6811 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6812 if (arg1
) (arg1
)->max_size
= *arg2
;
6814 resultobj
= SWIG_Py_Void();
6821 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_max_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6822 PyObject
*resultobj
= 0;
6823 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6824 wxSize
*result
= 0 ;
6827 PyObject
*swig_obj
[1] ;
6829 if (!args
) SWIG_fail
;
6831 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6832 if (!SWIG_IsOK(res1
)) {
6833 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_max_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6835 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6836 result
= (wxSize
*)& ((arg1
)->max_size
);
6837 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6844 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_pos_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6845 PyObject
*resultobj
= 0;
6846 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6847 wxPoint
*arg2
= (wxPoint
*) 0 ;
6852 PyObject
*swig_obj
[2] ;
6854 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_floating_pos_set",2,2,swig_obj
)) SWIG_fail
;
6855 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6856 if (!SWIG_IsOK(res1
)) {
6857 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_pos_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6859 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6860 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPoint
, 0 | 0 );
6861 if (!SWIG_IsOK(res2
)) {
6862 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_floating_pos_set" "', expected argument " "2"" of type '" "wxPoint *""'");
6864 arg2
= reinterpret_cast< wxPoint
* >(argp2
);
6865 if (arg1
) (arg1
)->floating_pos
= *arg2
;
6867 resultobj
= SWIG_Py_Void();
6874 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_pos_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6875 PyObject
*resultobj
= 0;
6876 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6877 wxPoint
*result
= 0 ;
6880 PyObject
*swig_obj
[1] ;
6882 if (!args
) SWIG_fail
;
6884 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6885 if (!SWIG_IsOK(res1
)) {
6886 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_pos_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6888 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6889 result
= (wxPoint
*)& ((arg1
)->floating_pos
);
6890 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPoint
, 0 | 0 );
6897 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6898 PyObject
*resultobj
= 0;
6899 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6900 wxSize
*arg2
= (wxSize
*) 0 ;
6905 PyObject
*swig_obj
[2] ;
6907 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_floating_size_set",2,2,swig_obj
)) SWIG_fail
;
6908 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6909 if (!SWIG_IsOK(res1
)) {
6910 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6912 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6913 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6914 if (!SWIG_IsOK(res2
)) {
6915 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_floating_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6917 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6918 if (arg1
) (arg1
)->floating_size
= *arg2
;
6920 resultobj
= SWIG_Py_Void();
6927 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6928 PyObject
*resultobj
= 0;
6929 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6930 wxSize
*result
= 0 ;
6933 PyObject
*swig_obj
[1] ;
6935 if (!args
) SWIG_fail
;
6937 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6938 if (!SWIG_IsOK(res1
)) {
6939 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6941 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6942 result
= (wxSize
*)& ((arg1
)->floating_size
);
6943 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6950 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_proportion_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6951 PyObject
*resultobj
= 0;
6952 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6958 PyObject
*swig_obj
[2] ;
6960 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_proportion_set",2,2,swig_obj
)) SWIG_fail
;
6961 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6962 if (!SWIG_IsOK(res1
)) {
6963 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_proportion_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6965 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6966 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6967 if (!SWIG_IsOK(ecode2
)) {
6968 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_proportion_set" "', expected argument " "2"" of type '" "int""'");
6970 arg2
= static_cast< int >(val2
);
6971 if (arg1
) (arg1
)->dock_proportion
= arg2
;
6973 resultobj
= SWIG_Py_Void();
6980 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_proportion_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6981 PyObject
*resultobj
= 0;
6982 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6986 PyObject
*swig_obj
[1] ;
6988 if (!args
) SWIG_fail
;
6990 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6991 if (!SWIG_IsOK(res1
)) {
6992 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_proportion_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6994 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6995 result
= (int) ((arg1
)->dock_proportion
);
6996 resultobj
= SWIG_From_int(static_cast< int >(result
));
7003 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_buttons_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7004 PyObject
*resultobj
= 0;
7005 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
7006 wxAuiPaneButtonArray arg2
;
7011 PyObject
*swig_obj
[2] ;
7013 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_buttons_set",2,2,swig_obj
)) SWIG_fail
;
7014 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7015 if (!SWIG_IsOK(res1
)) {
7016 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_buttons_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
7018 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
7020 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxAuiPaneButtonArray
, 0 | 0);
7021 if (!SWIG_IsOK(res2
)) {
7022 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxAuiPaneButtonArray""'");
7025 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiPaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxAuiPaneButtonArray""'");
7027 wxAuiPaneButtonArray
* temp
= reinterpret_cast< wxAuiPaneButtonArray
* >(argp2
);
7029 if (SWIG_IsNewObj(res2
)) delete temp
;
7032 if (arg1
) (arg1
)->buttons
= arg2
;
7034 resultobj
= SWIG_Py_Void();
7041 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_buttons_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7042 PyObject
*resultobj
= 0;
7043 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
7044 wxAuiPaneButtonArray result
;
7047 PyObject
*swig_obj
[1] ;
7049 if (!args
) SWIG_fail
;
7051 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7052 if (!SWIG_IsOK(res1
)) {
7053 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_buttons_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
7055 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
7056 result
= ((arg1
)->buttons
);
7057 resultobj
= SWIG_NewPointerObj((new wxAuiPaneButtonArray(static_cast< const wxAuiPaneButtonArray
& >(result
))), SWIGTYPE_p_wxAuiPaneButtonArray
, SWIG_POINTER_OWN
| 0 );
7064 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7065 PyObject
*resultobj
= 0;
7066 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
7067 wxRect
*arg2
= (wxRect
*) 0 ;
7072 PyObject
*swig_obj
[2] ;
7074 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_rect_set",2,2,swig_obj
)) SWIG_fail
;
7075 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7076 if (!SWIG_IsOK(res1
)) {
7077 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_rect_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
7079 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
7080 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
7081 if (!SWIG_IsOK(res2
)) {
7082 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
7084 arg2
= reinterpret_cast< wxRect
* >(argp2
);
7085 if (arg1
) (arg1
)->rect
= *arg2
;
7087 resultobj
= SWIG_Py_Void();
7094 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7095 PyObject
*resultobj
= 0;
7096 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
7097 wxRect
*result
= 0 ;
7100 PyObject
*swig_obj
[1] ;
7102 if (!args
) SWIG_fail
;
7104 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7105 if (!SWIG_IsOK(res1
)) {
7106 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_rect_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
7108 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
7109 result
= (wxRect
*)& ((arg1
)->rect
);
7110 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
7117 SWIGINTERN PyObject
*AuiPaneInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7119 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7120 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiPaneInfo
, SWIG_NewClientData(obj
));
7121 return SWIG_Py_Void();
7124 SWIGINTERN PyObject
*AuiPaneInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7125 return SWIG_Python_InitShadowInstance(args
);
7128 SWIGINTERN PyObject
*_wrap_new_AuiManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7129 PyObject
*resultobj
= 0;
7130 wxWindow
*arg1
= (wxWindow
*) NULL
;
7131 int arg2
= (int) wxAUI_MGR_DEFAULT
;
7132 wxAuiManager
*result
= 0 ;
7137 PyObject
* obj0
= 0 ;
7138 PyObject
* obj1
= 0 ;
7139 char * kwnames
[] = {
7140 (char *) "managed_wnd",(char *) "flags", NULL
7143 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_AuiManager",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7145 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7146 if (!SWIG_IsOK(res1
)) {
7147 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiManager" "', expected argument " "1"" of type '" "wxWindow *""'");
7149 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
7152 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7153 if (!SWIG_IsOK(ecode2
)) {
7154 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiManager" "', expected argument " "2"" of type '" "int""'");
7156 arg2
= static_cast< int >(val2
);
7159 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7160 result
= (wxAuiManager
*)new wxAuiManager(arg1
,arg2
);
7161 wxPyEndAllowThreads(__tstate
);
7162 if (PyErr_Occurred()) SWIG_fail
;
7164 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, SWIG_POINTER_NEW
| 0 );
7171 SWIGINTERN PyObject
*_wrap_delete_AuiManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7172 PyObject
*resultobj
= 0;
7173 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7176 PyObject
*swig_obj
[1] ;
7178 if (!args
) SWIG_fail
;
7180 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, SWIG_POINTER_DISOWN
| 0 );
7181 if (!SWIG_IsOK(res1
)) {
7182 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiManager" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7184 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7186 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7189 wxPyEndAllowThreads(__tstate
);
7190 if (PyErr_Occurred()) SWIG_fail
;
7192 resultobj
= SWIG_Py_Void();
7199 SWIGINTERN PyObject
*_wrap_AuiManager_UnInit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7200 PyObject
*resultobj
= 0;
7201 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7204 PyObject
*swig_obj
[1] ;
7206 if (!args
) SWIG_fail
;
7208 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7209 if (!SWIG_IsOK(res1
)) {
7210 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_UnInit" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7212 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7214 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7216 wxPyEndAllowThreads(__tstate
);
7217 if (PyErr_Occurred()) SWIG_fail
;
7219 resultobj
= SWIG_Py_Void();
7226 SWIGINTERN PyObject
*_wrap_AuiManager_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7227 PyObject
*resultobj
= 0;
7228 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7234 PyObject
* obj0
= 0 ;
7235 PyObject
* obj1
= 0 ;
7236 char * kwnames
[] = {
7237 (char *) "self",(char *) "flags", NULL
7240 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7241 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7242 if (!SWIG_IsOK(res1
)) {
7243 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetFlags" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7245 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7246 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7247 if (!SWIG_IsOK(ecode2
)) {
7248 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManager_SetFlags" "', expected argument " "2"" of type '" "int""'");
7250 arg2
= static_cast< int >(val2
);
7252 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7253 (arg1
)->SetFlags(arg2
);
7254 wxPyEndAllowThreads(__tstate
);
7255 if (PyErr_Occurred()) SWIG_fail
;
7257 resultobj
= SWIG_Py_Void();
7264 SWIGINTERN PyObject
*_wrap_AuiManager_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7265 PyObject
*resultobj
= 0;
7266 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7270 PyObject
*swig_obj
[1] ;
7272 if (!args
) SWIG_fail
;
7274 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7275 if (!SWIG_IsOK(res1
)) {
7276 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetFlags" "', expected argument " "1"" of type '" "wxAuiManager const *""'");
7278 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7280 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7281 result
= (int)((wxAuiManager
const *)arg1
)->GetFlags();
7282 wxPyEndAllowThreads(__tstate
);
7283 if (PyErr_Occurred()) SWIG_fail
;
7285 resultobj
= SWIG_From_int(static_cast< int >(result
));
7292 SWIGINTERN PyObject
*_wrap_AuiManager_SetManagedWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7293 PyObject
*resultobj
= 0;
7294 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7295 wxWindow
*arg2
= (wxWindow
*) 0 ;
7300 PyObject
* obj0
= 0 ;
7301 PyObject
* obj1
= 0 ;
7302 char * kwnames
[] = {
7303 (char *) "self",(char *) "managed_wnd", NULL
7306 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SetManagedWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7307 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7308 if (!SWIG_IsOK(res1
)) {
7309 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetManagedWindow" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7311 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7312 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7313 if (!SWIG_IsOK(res2
)) {
7314 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_SetManagedWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
7316 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7318 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7319 (arg1
)->SetManagedWindow(arg2
);
7320 wxPyEndAllowThreads(__tstate
);
7321 if (PyErr_Occurred()) SWIG_fail
;
7323 resultobj
= SWIG_Py_Void();
7330 SWIGINTERN PyObject
*_wrap_AuiManager_GetManagedWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7331 PyObject
*resultobj
= 0;
7332 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7333 wxWindow
*result
= 0 ;
7336 PyObject
*swig_obj
[1] ;
7338 if (!args
) SWIG_fail
;
7340 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7341 if (!SWIG_IsOK(res1
)) {
7342 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetManagedWindow" "', expected argument " "1"" of type '" "wxAuiManager const *""'");
7344 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7346 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7347 result
= (wxWindow
*)((wxAuiManager
const *)arg1
)->GetManagedWindow();
7348 wxPyEndAllowThreads(__tstate
);
7349 if (PyErr_Occurred()) SWIG_fail
;
7352 resultobj
= wxPyMake_wxObject(result
, 0);
7360 SWIGINTERN PyObject
*_wrap_AuiManager_GetManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7361 PyObject
*resultobj
= 0;
7362 wxWindow
*arg1
= (wxWindow
*) 0 ;
7363 wxAuiManager
*result
= 0 ;
7366 PyObject
* obj0
= 0 ;
7367 char * kwnames
[] = {
7368 (char *) "window", NULL
7371 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:AuiManager_GetManager",kwnames
,&obj0
)) SWIG_fail
;
7372 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7373 if (!SWIG_IsOK(res1
)) {
7374 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetManager" "', expected argument " "1"" of type '" "wxWindow *""'");
7376 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
7378 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7379 result
= (wxAuiManager
*)wxAuiManager::GetManager(arg1
);
7380 wxPyEndAllowThreads(__tstate
);
7381 if (PyErr_Occurred()) SWIG_fail
;
7383 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7390 SWIGINTERN PyObject
*_wrap_AuiManager_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7391 PyObject
*resultobj
= 0;
7392 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7393 wxAuiDockArt
*arg2
= (wxAuiDockArt
*) 0 ;
7397 PyObject
* obj0
= 0 ;
7398 PyObject
* obj1
= 0 ;
7399 char * kwnames
[] = {
7400 (char *) "self",(char *) "art_provider", NULL
7403 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7404 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7405 if (!SWIG_IsOK(res1
)) {
7406 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7408 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7409 res2
= SWIG_ConvertPtr(obj1
, SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxAuiDockArt
, SWIG_POINTER_DISOWN
| 0 );
7410 if (!SWIG_IsOK(res2
)) {
7411 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiDockArt *""'");
7414 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7415 (arg1
)->SetArtProvider(arg2
);
7416 wxPyEndAllowThreads(__tstate
);
7417 if (PyErr_Occurred()) SWIG_fail
;
7419 resultobj
= SWIG_Py_Void();
7426 SWIGINTERN PyObject
*_wrap_AuiManager_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7427 PyObject
*resultobj
= 0;
7428 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7429 wxAuiDockArt
*result
= 0 ;
7432 PyObject
*swig_obj
[1] ;
7434 if (!args
) SWIG_fail
;
7436 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7437 if (!SWIG_IsOK(res1
)) {
7438 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiManager const *""'");
7440 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7442 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7443 result
= (wxAuiDockArt
*)((wxAuiManager
const *)arg1
)->GetArtProvider();
7444 wxPyEndAllowThreads(__tstate
);
7445 if (PyErr_Occurred()) SWIG_fail
;
7447 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
7454 SWIGINTERN PyObject
*_wrap_AuiManager__GetPaneByWidget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7455 PyObject
*resultobj
= 0;
7456 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7457 wxWindow
*arg2
= (wxWindow
*) 0 ;
7458 wxAuiPaneInfo
*result
= 0 ;
7463 PyObject
* obj0
= 0 ;
7464 PyObject
* obj1
= 0 ;
7465 char * kwnames
[] = {
7466 (char *) "self",(char *) "window", NULL
7469 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager__GetPaneByWidget",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7470 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7471 if (!SWIG_IsOK(res1
)) {
7472 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__GetPaneByWidget" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7474 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7475 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7476 if (!SWIG_IsOK(res2
)) {
7477 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager__GetPaneByWidget" "', expected argument " "2"" of type '" "wxWindow *""'");
7479 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7481 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7483 wxAuiPaneInfo
&_result_ref
= (arg1
)->GetPane(arg2
);
7484 result
= (wxAuiPaneInfo
*) &_result_ref
;
7486 wxPyEndAllowThreads(__tstate
);
7487 if (PyErr_Occurred()) SWIG_fail
;
7489 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7496 SWIGINTERN PyObject
*_wrap_AuiManager__GetPaneByName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7497 PyObject
*resultobj
= 0;
7498 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7499 wxString
*arg2
= 0 ;
7500 wxAuiPaneInfo
*result
= 0 ;
7503 bool temp2
= false ;
7504 PyObject
* obj0
= 0 ;
7505 PyObject
* obj1
= 0 ;
7506 char * kwnames
[] = {
7507 (char *) "self",(char *) "name", NULL
7510 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager__GetPaneByName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7511 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7512 if (!SWIG_IsOK(res1
)) {
7513 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__GetPaneByName" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7515 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7517 arg2
= wxString_in_helper(obj1
);
7518 if (arg2
== NULL
) SWIG_fail
;
7522 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7524 wxAuiPaneInfo
&_result_ref
= (arg1
)->GetPane((wxString
const &)*arg2
);
7525 result
= (wxAuiPaneInfo
*) &_result_ref
;
7527 wxPyEndAllowThreads(__tstate
);
7528 if (PyErr_Occurred()) SWIG_fail
;
7530 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7545 SWIGINTERN PyObject
*_wrap_AuiManager_GetAllPanes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7546 PyObject
*resultobj
= 0;
7547 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7548 wxAuiPaneInfoArray
*result
= 0 ;
7551 PyObject
*swig_obj
[1] ;
7553 if (!args
) SWIG_fail
;
7555 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7556 if (!SWIG_IsOK(res1
)) {
7557 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetAllPanes" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7559 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7561 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7563 wxAuiPaneInfoArray
&_result_ref
= (arg1
)->GetAllPanes();
7564 result
= (wxAuiPaneInfoArray
*) &_result_ref
;
7566 wxPyEndAllowThreads(__tstate
);
7567 if (PyErr_Occurred()) SWIG_fail
;
7570 resultobj
= PyList_New(0);
7571 for (size_t i
=0; i
< result
->GetCount(); i
++) {
7572 PyObject
* pane_obj
= SWIG_NewPointerObj((void*)(&result
->Item(i
)), SWIGTYPE_p_wxAuiPaneInfo
, 0);
7573 PyList_Append(resultobj
, pane_obj
);
7582 SWIGINTERN PyObject
*_wrap_AuiManager__AddPane1(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7583 PyObject
*resultobj
= 0;
7584 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7585 wxWindow
*arg2
= (wxWindow
*) 0 ;
7586 wxAuiPaneInfo
*arg3
= 0 ;
7594 PyObject
* obj0
= 0 ;
7595 PyObject
* obj1
= 0 ;
7596 PyObject
* obj2
= 0 ;
7597 char * kwnames
[] = {
7598 (char *) "self",(char *) "window",(char *) "pane_info", NULL
7601 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager__AddPane1",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7602 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7603 if (!SWIG_IsOK(res1
)) {
7604 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__AddPane1" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7606 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7607 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7608 if (!SWIG_IsOK(res2
)) {
7609 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager__AddPane1" "', expected argument " "2"" of type '" "wxWindow *""'");
7611 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7612 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
7613 if (!SWIG_IsOK(res3
)) {
7614 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager__AddPane1" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7617 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager__AddPane1" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7619 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
7621 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7622 result
= (bool)(arg1
)->AddPane(arg2
,(wxAuiPaneInfo
const &)*arg3
);
7623 wxPyEndAllowThreads(__tstate
);
7624 if (PyErr_Occurred()) SWIG_fail
;
7627 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7635 SWIGINTERN PyObject
*_wrap_AuiManager_AddPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7636 PyObject
*resultobj
= 0;
7637 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7638 wxWindow
*arg2
= (wxWindow
*) 0 ;
7639 wxAuiPaneInfo
*arg3
= 0 ;
7649 PyObject
* obj0
= 0 ;
7650 PyObject
* obj1
= 0 ;
7651 PyObject
* obj2
= 0 ;
7652 PyObject
* obj3
= 0 ;
7653 char * kwnames
[] = {
7654 (char *) "self",(char *) "window",(char *) "pane_info",(char *) "drop_pos", NULL
7657 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiManager_AddPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7658 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7659 if (!SWIG_IsOK(res1
)) {
7660 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_AddPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7662 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7663 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7664 if (!SWIG_IsOK(res2
)) {
7665 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_AddPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7667 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7668 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
7669 if (!SWIG_IsOK(res3
)) {
7670 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_AddPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7673 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_AddPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7675 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
7678 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7681 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7682 result
= (bool)(arg1
)->AddPane(arg2
,(wxAuiPaneInfo
const &)*arg3
,(wxPoint
const &)*arg4
);
7683 wxPyEndAllowThreads(__tstate
);
7684 if (PyErr_Occurred()) SWIG_fail
;
7687 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7695 SWIGINTERN PyObject
*_wrap_AuiManager__AddPane2(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7696 PyObject
*resultobj
= 0;
7697 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7698 wxWindow
*arg2
= (wxWindow
*) 0 ;
7699 int arg3
= (int) wxLEFT
;
7700 wxString
const &arg4_defvalue
= wxEmptyString
;
7701 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
7709 bool temp4
= false ;
7710 PyObject
* obj0
= 0 ;
7711 PyObject
* obj1
= 0 ;
7712 PyObject
* obj2
= 0 ;
7713 PyObject
* obj3
= 0 ;
7714 char * kwnames
[] = {
7715 (char *) "self",(char *) "window",(char *) "direction",(char *) "caption", NULL
7718 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:AuiManager__AddPane2",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7719 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7720 if (!SWIG_IsOK(res1
)) {
7721 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__AddPane2" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7723 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7724 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7725 if (!SWIG_IsOK(res2
)) {
7726 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager__AddPane2" "', expected argument " "2"" of type '" "wxWindow *""'");
7728 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7730 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
7731 if (!SWIG_IsOK(ecode3
)) {
7732 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiManager__AddPane2" "', expected argument " "3"" of type '" "int""'");
7734 arg3
= static_cast< int >(val3
);
7738 arg4
= wxString_in_helper(obj3
);
7739 if (arg4
== NULL
) SWIG_fail
;
7744 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7745 result
= (bool)(arg1
)->AddPane(arg2
,arg3
,(wxString
const &)*arg4
);
7746 wxPyEndAllowThreads(__tstate
);
7747 if (PyErr_Occurred()) SWIG_fail
;
7750 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7766 SWIGINTERN PyObject
*_wrap_AuiManager_InsertPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7767 PyObject
*resultobj
= 0;
7768 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7769 wxWindow
*arg2
= (wxWindow
*) 0 ;
7770 wxAuiPaneInfo
*arg3
= 0 ;
7771 int arg4
= (int) wxAUI_INSERT_PANE
;
7781 PyObject
* obj0
= 0 ;
7782 PyObject
* obj1
= 0 ;
7783 PyObject
* obj2
= 0 ;
7784 PyObject
* obj3
= 0 ;
7785 char * kwnames
[] = {
7786 (char *) "self",(char *) "window",(char *) "insert_location",(char *) "insert_level", NULL
7789 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:AuiManager_InsertPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7790 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7791 if (!SWIG_IsOK(res1
)) {
7792 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_InsertPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7794 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7795 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7796 if (!SWIG_IsOK(res2
)) {
7797 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_InsertPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7799 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7800 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
7801 if (!SWIG_IsOK(res3
)) {
7802 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_InsertPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7805 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_InsertPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7807 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
7809 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
7810 if (!SWIG_IsOK(ecode4
)) {
7811 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiManager_InsertPane" "', expected argument " "4"" of type '" "int""'");
7813 arg4
= static_cast< int >(val4
);
7816 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7817 result
= (bool)(arg1
)->InsertPane(arg2
,(wxAuiPaneInfo
const &)*arg3
,arg4
);
7818 wxPyEndAllowThreads(__tstate
);
7819 if (PyErr_Occurred()) SWIG_fail
;
7822 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7830 SWIGINTERN PyObject
*_wrap_AuiManager_DetachPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7831 PyObject
*resultobj
= 0;
7832 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7833 wxWindow
*arg2
= (wxWindow
*) 0 ;
7839 PyObject
* obj0
= 0 ;
7840 PyObject
* obj1
= 0 ;
7841 char * kwnames
[] = {
7842 (char *) "self",(char *) "window", NULL
7845 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_DetachPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7846 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7847 if (!SWIG_IsOK(res1
)) {
7848 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_DetachPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7850 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7851 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7852 if (!SWIG_IsOK(res2
)) {
7853 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_DetachPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7855 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7857 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7858 result
= (bool)(arg1
)->DetachPane(arg2
);
7859 wxPyEndAllowThreads(__tstate
);
7860 if (PyErr_Occurred()) SWIG_fail
;
7863 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7871 SWIGINTERN PyObject
*_wrap_AuiManager_ClosePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7872 PyObject
*resultobj
= 0;
7873 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7874 wxAuiPaneInfo
*arg2
= 0 ;
7879 PyObject
* obj0
= 0 ;
7880 PyObject
* obj1
= 0 ;
7881 char * kwnames
[] = {
7882 (char *) "self",(char *) "pane_info", NULL
7885 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_ClosePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7886 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7887 if (!SWIG_IsOK(res1
)) {
7888 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_ClosePane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7890 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7891 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
7892 if (!SWIG_IsOK(res2
)) {
7893 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_ClosePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7896 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_ClosePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7898 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
7900 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7901 (arg1
)->ClosePane(*arg2
);
7902 wxPyEndAllowThreads(__tstate
);
7903 if (PyErr_Occurred()) SWIG_fail
;
7905 resultobj
= SWIG_Py_Void();
7912 SWIGINTERN PyObject
*_wrap_AuiManager_MaximizePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7913 PyObject
*resultobj
= 0;
7914 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7915 wxAuiPaneInfo
*arg2
= 0 ;
7920 PyObject
* obj0
= 0 ;
7921 PyObject
* obj1
= 0 ;
7922 char * kwnames
[] = {
7923 (char *) "self",(char *) "pane_info", NULL
7926 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_MaximizePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7927 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7928 if (!SWIG_IsOK(res1
)) {
7929 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_MaximizePane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7931 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7932 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
7933 if (!SWIG_IsOK(res2
)) {
7934 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_MaximizePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7937 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_MaximizePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7939 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
7941 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7942 (arg1
)->MaximizePane(*arg2
);
7943 wxPyEndAllowThreads(__tstate
);
7944 if (PyErr_Occurred()) SWIG_fail
;
7946 resultobj
= SWIG_Py_Void();
7953 SWIGINTERN PyObject
*_wrap_AuiManager_RestorePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7954 PyObject
*resultobj
= 0;
7955 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7956 wxAuiPaneInfo
*arg2
= 0 ;
7961 PyObject
* obj0
= 0 ;
7962 PyObject
* obj1
= 0 ;
7963 char * kwnames
[] = {
7964 (char *) "self",(char *) "pane_info", NULL
7967 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_RestorePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7968 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7969 if (!SWIG_IsOK(res1
)) {
7970 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_RestorePane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7972 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7973 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
7974 if (!SWIG_IsOK(res2
)) {
7975 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_RestorePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7978 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_RestorePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7980 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
7982 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7983 (arg1
)->RestorePane(*arg2
);
7984 wxPyEndAllowThreads(__tstate
);
7985 if (PyErr_Occurred()) SWIG_fail
;
7987 resultobj
= SWIG_Py_Void();
7994 SWIGINTERN PyObject
*_wrap_AuiManager_RestoreMaximizedPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7995 PyObject
*resultobj
= 0;
7996 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7999 PyObject
*swig_obj
[1] ;
8001 if (!args
) SWIG_fail
;
8003 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8004 if (!SWIG_IsOK(res1
)) {
8005 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_RestoreMaximizedPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8007 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8009 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8010 (arg1
)->RestoreMaximizedPane();
8011 wxPyEndAllowThreads(__tstate
);
8012 if (PyErr_Occurred()) SWIG_fail
;
8014 resultobj
= SWIG_Py_Void();
8021 SWIGINTERN PyObject
*_wrap_AuiManager_SavePaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8022 PyObject
*resultobj
= 0;
8023 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8024 wxAuiPaneInfo
*arg2
= 0 ;
8030 PyObject
* obj0
= 0 ;
8031 PyObject
* obj1
= 0 ;
8032 char * kwnames
[] = {
8033 (char *) "self",(char *) "pane", NULL
8036 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SavePaneInfo",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8037 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8038 if (!SWIG_IsOK(res1
)) {
8039 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SavePaneInfo" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8041 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8042 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
8043 if (!SWIG_IsOK(res2
)) {
8044 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_SavePaneInfo" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8047 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_SavePaneInfo" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8049 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
8051 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8052 result
= (arg1
)->SavePaneInfo(*arg2
);
8053 wxPyEndAllowThreads(__tstate
);
8054 if (PyErr_Occurred()) SWIG_fail
;
8058 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
8060 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
8069 SWIGINTERN PyObject
*_wrap_AuiManager_LoadPaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8070 PyObject
*resultobj
= 0;
8071 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8073 wxAuiPaneInfo
*arg3
= 0 ;
8078 PyObject
* obj0
= 0 ;
8079 PyObject
* obj1
= 0 ;
8080 PyObject
* obj2
= 0 ;
8081 char * kwnames
[] = {
8082 (char *) "self",(char *) "pane_part",(char *) "pane", NULL
8085 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_LoadPaneInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8086 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8087 if (!SWIG_IsOK(res1
)) {
8088 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_LoadPaneInfo" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8090 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8092 wxString
* sptr
= wxString_in_helper(obj1
);
8093 if (sptr
== NULL
) SWIG_fail
;
8097 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
8098 if (!SWIG_IsOK(res3
)) {
8099 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_LoadPaneInfo" "', expected argument " "3"" of type '" "wxAuiPaneInfo &""'");
8102 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_LoadPaneInfo" "', expected argument " "3"" of type '" "wxAuiPaneInfo &""'");
8104 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
8106 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8107 (arg1
)->LoadPaneInfo(arg2
,*arg3
);
8108 wxPyEndAllowThreads(__tstate
);
8109 if (PyErr_Occurred()) SWIG_fail
;
8111 resultobj
= SWIG_Py_Void();
8118 SWIGINTERN PyObject
*_wrap_AuiManager_SavePerspective(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8119 PyObject
*resultobj
= 0;
8120 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8124 PyObject
*swig_obj
[1] ;
8126 if (!args
) SWIG_fail
;
8128 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8129 if (!SWIG_IsOK(res1
)) {
8130 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SavePerspective" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8132 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8134 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8135 result
= (arg1
)->SavePerspective();
8136 wxPyEndAllowThreads(__tstate
);
8137 if (PyErr_Occurred()) SWIG_fail
;
8141 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
8143 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
8152 SWIGINTERN PyObject
*_wrap_AuiManager_LoadPerspective(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8153 PyObject
*resultobj
= 0;
8154 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8155 wxString
*arg2
= 0 ;
8156 bool arg3
= (bool) true ;
8160 bool temp2
= false ;
8163 PyObject
* obj0
= 0 ;
8164 PyObject
* obj1
= 0 ;
8165 PyObject
* obj2
= 0 ;
8166 char * kwnames
[] = {
8167 (char *) "self",(char *) "perspective",(char *) "update", NULL
8170 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:AuiManager_LoadPerspective",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8171 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8172 if (!SWIG_IsOK(res1
)) {
8173 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_LoadPerspective" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8175 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8177 arg2
= wxString_in_helper(obj1
);
8178 if (arg2
== NULL
) SWIG_fail
;
8182 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
8183 if (!SWIG_IsOK(ecode3
)) {
8184 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiManager_LoadPerspective" "', expected argument " "3"" of type '" "bool""'");
8186 arg3
= static_cast< bool >(val3
);
8189 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8190 result
= (bool)(arg1
)->LoadPerspective((wxString
const &)*arg2
,arg3
);
8191 wxPyEndAllowThreads(__tstate
);
8192 if (PyErr_Occurred()) SWIG_fail
;
8195 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8211 SWIGINTERN PyObject
*_wrap_AuiManager_Update(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8212 PyObject
*resultobj
= 0;
8213 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8216 PyObject
*swig_obj
[1] ;
8218 if (!args
) SWIG_fail
;
8220 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8221 if (!SWIG_IsOK(res1
)) {
8222 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_Update" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8224 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8226 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8228 wxPyEndAllowThreads(__tstate
);
8229 if (PyErr_Occurred()) SWIG_fail
;
8231 resultobj
= SWIG_Py_Void();
8238 SWIGINTERN PyObject
*_wrap_AuiManager_CreateFloatingFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8239 PyObject
*resultobj
= 0;
8240 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8241 wxWindow
*arg2
= (wxWindow
*) 0 ;
8242 wxAuiPaneInfo
*arg3
= 0 ;
8243 wxAuiFloatingFrame
*result
= 0 ;
8250 PyObject
* obj0
= 0 ;
8251 PyObject
* obj1
= 0 ;
8252 PyObject
* obj2
= 0 ;
8253 char * kwnames
[] = {
8254 (char *) "self",(char *) "parent",(char *) "p", NULL
8257 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_CreateFloatingFrame",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8258 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8259 if (!SWIG_IsOK(res1
)) {
8260 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8262 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8263 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8264 if (!SWIG_IsOK(res2
)) {
8265 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "2"" of type '" "wxWindow *""'");
8267 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8268 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
8269 if (!SWIG_IsOK(res3
)) {
8270 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
8273 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
8275 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
8277 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8278 result
= (wxAuiFloatingFrame
*)(arg1
)->CreateFloatingFrame(arg2
,(wxAuiPaneInfo
const &)*arg3
);
8279 wxPyEndAllowThreads(__tstate
);
8280 if (PyErr_Occurred()) SWIG_fail
;
8282 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiFloatingFrame
, 0 | 0 );
8289 SWIGINTERN PyObject
*_wrap_AuiManager_CalculateHintRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8290 PyObject
*resultobj
= 0;
8291 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8292 wxWindow
*arg2
= (wxWindow
*) 0 ;
8302 PyObject
* obj0
= 0 ;
8303 PyObject
* obj1
= 0 ;
8304 PyObject
* obj2
= 0 ;
8305 PyObject
* obj3
= 0 ;
8306 char * kwnames
[] = {
8307 (char *) "self",(char *) "pane_window",(char *) "pt",(char *) "offset", NULL
8310 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiManager_CalculateHintRect",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
8311 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8312 if (!SWIG_IsOK(res1
)) {
8313 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_CalculateHintRect" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8315 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8316 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8317 if (!SWIG_IsOK(res2
)) {
8318 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_CalculateHintRect" "', expected argument " "2"" of type '" "wxWindow *""'");
8320 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8323 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
8327 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
8330 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8331 result
= (arg1
)->CalculateHintRect(arg2
,(wxPoint
const &)*arg3
,(wxPoint
const &)*arg4
);
8332 wxPyEndAllowThreads(__tstate
);
8333 if (PyErr_Occurred()) SWIG_fail
;
8335 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
8342 SWIGINTERN PyObject
*_wrap_AuiManager_DrawHintRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8343 PyObject
*resultobj
= 0;
8344 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8345 wxWindow
*arg2
= (wxWindow
*) 0 ;
8354 PyObject
* obj0
= 0 ;
8355 PyObject
* obj1
= 0 ;
8356 PyObject
* obj2
= 0 ;
8357 PyObject
* obj3
= 0 ;
8358 char * kwnames
[] = {
8359 (char *) "self",(char *) "pane_window",(char *) "pt",(char *) "offset", NULL
8362 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiManager_DrawHintRect",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
8363 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8364 if (!SWIG_IsOK(res1
)) {
8365 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_DrawHintRect" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8367 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8368 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8369 if (!SWIG_IsOK(res2
)) {
8370 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_DrawHintRect" "', expected argument " "2"" of type '" "wxWindow *""'");
8372 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8375 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
8379 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
8382 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8383 (arg1
)->DrawHintRect(arg2
,(wxPoint
const &)*arg3
,(wxPoint
const &)*arg4
);
8384 wxPyEndAllowThreads(__tstate
);
8385 if (PyErr_Occurred()) SWIG_fail
;
8387 resultobj
= SWIG_Py_Void();
8394 SWIGINTERN PyObject
*_wrap_AuiManager_ShowHint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8395 PyObject
*resultobj
= 0;
8396 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8401 PyObject
* obj0
= 0 ;
8402 PyObject
* obj1
= 0 ;
8403 char * kwnames
[] = {
8404 (char *) "self",(char *) "rect", NULL
8407 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_ShowHint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8408 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8409 if (!SWIG_IsOK(res1
)) {
8410 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_ShowHint" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8412 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8415 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
8418 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8419 (arg1
)->ShowHint((wxRect
const &)*arg2
);
8420 wxPyEndAllowThreads(__tstate
);
8421 if (PyErr_Occurred()) SWIG_fail
;
8423 resultobj
= SWIG_Py_Void();
8430 SWIGINTERN PyObject
*_wrap_AuiManager_HideHint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8431 PyObject
*resultobj
= 0;
8432 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8435 PyObject
*swig_obj
[1] ;
8437 if (!args
) SWIG_fail
;
8439 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8440 if (!SWIG_IsOK(res1
)) {
8441 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_HideHint" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8443 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8445 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8447 wxPyEndAllowThreads(__tstate
);
8448 if (PyErr_Occurred()) SWIG_fail
;
8450 resultobj
= SWIG_Py_Void();
8457 SWIGINTERN PyObject
*_wrap_AuiManager_OnRender(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8458 PyObject
*resultobj
= 0;
8459 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8460 wxAuiManagerEvent
*arg2
= 0 ;
8465 PyObject
* obj0
= 0 ;
8466 PyObject
* obj1
= 0 ;
8467 char * kwnames
[] = {
8468 (char *) "self",(char *) "evt", NULL
8471 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_OnRender",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8472 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8473 if (!SWIG_IsOK(res1
)) {
8474 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_OnRender" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8476 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8477 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiManagerEvent
, 0 );
8478 if (!SWIG_IsOK(res2
)) {
8479 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_OnRender" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8482 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_OnRender" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8484 arg2
= reinterpret_cast< wxAuiManagerEvent
* >(argp2
);
8486 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8487 (arg1
)->OnRender(*arg2
);
8488 wxPyEndAllowThreads(__tstate
);
8489 if (PyErr_Occurred()) SWIG_fail
;
8491 resultobj
= SWIG_Py_Void();
8498 SWIGINTERN PyObject
*_wrap_AuiManager_OnPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8499 PyObject
*resultobj
= 0;
8500 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8501 wxAuiManagerEvent
*arg2
= 0 ;
8506 PyObject
* obj0
= 0 ;
8507 PyObject
* obj1
= 0 ;
8508 char * kwnames
[] = {
8509 (char *) "self",(char *) "evt", NULL
8512 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_OnPaneButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8513 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8514 if (!SWIG_IsOK(res1
)) {
8515 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_OnPaneButton" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8517 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8518 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiManagerEvent
, 0 );
8519 if (!SWIG_IsOK(res2
)) {
8520 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_OnPaneButton" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8523 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_OnPaneButton" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8525 arg2
= reinterpret_cast< wxAuiManagerEvent
* >(argp2
);
8527 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8528 (arg1
)->OnPaneButton(*arg2
);
8529 wxPyEndAllowThreads(__tstate
);
8530 if (PyErr_Occurred()) SWIG_fail
;
8532 resultobj
= SWIG_Py_Void();
8539 SWIGINTERN PyObject
*AuiManager_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8541 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8542 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiManager
, SWIG_NewClientData(obj
));
8543 return SWIG_Py_Void();
8546 SWIGINTERN PyObject
*AuiManager_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8547 return SWIG_Python_InitShadowInstance(args
);
8550 SWIGINTERN PyObject
*_wrap_new_AuiManagerEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8551 PyObject
*resultobj
= 0;
8552 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
8553 wxAuiManagerEvent
*result
= 0 ;
8556 PyObject
* obj0
= 0 ;
8557 char * kwnames
[] = {
8558 (char *) "type", NULL
8561 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_AuiManagerEvent",kwnames
,&obj0
)) SWIG_fail
;
8563 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
8564 if (!SWIG_IsOK(ecode1
)) {
8565 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_AuiManagerEvent" "', expected argument " "1"" of type '" "wxEventType""'");
8567 arg1
= static_cast< wxEventType
>(val1
);
8570 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8571 result
= (wxAuiManagerEvent
*)new wxAuiManagerEvent(arg1
);
8572 wxPyEndAllowThreads(__tstate
);
8573 if (PyErr_Occurred()) SWIG_fail
;
8575 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManagerEvent
, SWIG_POINTER_NEW
| 0 );
8582 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_Clone(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8583 PyObject
*resultobj
= 0;
8584 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8585 wxEvent
*result
= 0 ;
8588 PyObject
*swig_obj
[1] ;
8590 if (!args
) SWIG_fail
;
8592 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8593 if (!SWIG_IsOK(res1
)) {
8594 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_Clone" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8596 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8598 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8599 result
= (wxEvent
*)((wxAuiManagerEvent
const *)arg1
)->Clone();
8600 wxPyEndAllowThreads(__tstate
);
8601 if (PyErr_Occurred()) SWIG_fail
;
8603 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxEvent
, 0 | 0 );
8610 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8611 PyObject
*resultobj
= 0;
8612 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8613 wxAuiManager
*arg2
= (wxAuiManager
*) 0 ;
8618 PyObject
* obj0
= 0 ;
8619 PyObject
* obj1
= 0 ;
8620 char * kwnames
[] = {
8621 (char *) "self",(char *) "mgr", NULL
8624 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetManager",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8625 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8626 if (!SWIG_IsOK(res1
)) {
8627 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetManager" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8629 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8630 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8631 if (!SWIG_IsOK(res2
)) {
8632 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_SetManager" "', expected argument " "2"" of type '" "wxAuiManager *""'");
8634 arg2
= reinterpret_cast< wxAuiManager
* >(argp2
);
8636 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8637 (arg1
)->SetManager(arg2
);
8638 wxPyEndAllowThreads(__tstate
);
8639 if (PyErr_Occurred()) SWIG_fail
;
8641 resultobj
= SWIG_Py_Void();
8648 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8649 PyObject
*resultobj
= 0;
8650 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8651 wxAuiPaneInfo
*arg2
= (wxAuiPaneInfo
*) 0 ;
8656 PyObject
* obj0
= 0 ;
8657 PyObject
* obj1
= 0 ;
8658 char * kwnames
[] = {
8659 (char *) "self",(char *) "p", NULL
8662 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8663 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8664 if (!SWIG_IsOK(res1
)) {
8665 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetPane" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8667 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8668 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
8669 if (!SWIG_IsOK(res2
)) {
8670 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_SetPane" "', expected argument " "2"" of type '" "wxAuiPaneInfo *""'");
8672 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
8674 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8675 (arg1
)->SetPane(arg2
);
8676 wxPyEndAllowThreads(__tstate
);
8677 if (PyErr_Occurred()) SWIG_fail
;
8679 resultobj
= SWIG_Py_Void();
8686 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8687 PyObject
*resultobj
= 0;
8688 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8694 PyObject
* obj0
= 0 ;
8695 PyObject
* obj1
= 0 ;
8696 char * kwnames
[] = {
8697 (char *) "self",(char *) "b", NULL
8700 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8701 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8702 if (!SWIG_IsOK(res1
)) {
8703 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetButton" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8705 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8706 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8707 if (!SWIG_IsOK(ecode2
)) {
8708 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_SetButton" "', expected argument " "2"" of type '" "int""'");
8710 arg2
= static_cast< int >(val2
);
8712 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8713 (arg1
)->SetButton(arg2
);
8714 wxPyEndAllowThreads(__tstate
);
8715 if (PyErr_Occurred()) SWIG_fail
;
8717 resultobj
= SWIG_Py_Void();
8724 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8725 PyObject
*resultobj
= 0;
8726 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8727 wxDC
*arg2
= (wxDC
*) 0 ;
8732 PyObject
* obj0
= 0 ;
8733 PyObject
* obj1
= 0 ;
8734 char * kwnames
[] = {
8735 (char *) "self",(char *) "pdc", NULL
8738 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetDC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8739 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8740 if (!SWIG_IsOK(res1
)) {
8741 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetDC" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8743 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8744 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
8745 if (!SWIG_IsOK(res2
)) {
8746 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_SetDC" "', expected argument " "2"" of type '" "wxDC *""'");
8748 arg2
= reinterpret_cast< wxDC
* >(argp2
);
8750 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8751 (arg1
)->SetDC(arg2
);
8752 wxPyEndAllowThreads(__tstate
);
8753 if (PyErr_Occurred()) SWIG_fail
;
8755 resultobj
= SWIG_Py_Void();
8762 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8763 PyObject
*resultobj
= 0;
8764 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8765 wxAuiManager
*result
= 0 ;
8768 PyObject
*swig_obj
[1] ;
8770 if (!args
) SWIG_fail
;
8772 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8773 if (!SWIG_IsOK(res1
)) {
8774 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetManager" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8776 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8778 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8779 result
= (wxAuiManager
*)((wxAuiManagerEvent
const *)arg1
)->GetManager();
8780 wxPyEndAllowThreads(__tstate
);
8781 if (PyErr_Occurred()) SWIG_fail
;
8783 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8790 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8791 PyObject
*resultobj
= 0;
8792 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8793 wxAuiPaneInfo
*result
= 0 ;
8796 PyObject
*swig_obj
[1] ;
8798 if (!args
) SWIG_fail
;
8800 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8801 if (!SWIG_IsOK(res1
)) {
8802 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetPane" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8804 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8806 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8807 result
= (wxAuiPaneInfo
*)((wxAuiManagerEvent
const *)arg1
)->GetPane();
8808 wxPyEndAllowThreads(__tstate
);
8809 if (PyErr_Occurred()) SWIG_fail
;
8811 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
8818 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8819 PyObject
*resultobj
= 0;
8820 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8824 PyObject
*swig_obj
[1] ;
8826 if (!args
) SWIG_fail
;
8828 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8829 if (!SWIG_IsOK(res1
)) {
8830 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetButton" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8832 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8834 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8835 result
= (int)((wxAuiManagerEvent
const *)arg1
)->GetButton();
8836 wxPyEndAllowThreads(__tstate
);
8837 if (PyErr_Occurred()) SWIG_fail
;
8839 resultobj
= SWIG_From_int(static_cast< int >(result
));
8846 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8847 PyObject
*resultobj
= 0;
8848 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8852 PyObject
*swig_obj
[1] ;
8854 if (!args
) SWIG_fail
;
8856 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8857 if (!SWIG_IsOK(res1
)) {
8858 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetDC" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8860 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8862 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8863 result
= (wxDC
*)((wxAuiManagerEvent
const *)arg1
)->GetDC();
8864 wxPyEndAllowThreads(__tstate
);
8865 if (PyErr_Occurred()) SWIG_fail
;
8868 resultobj
= wxPyMake_wxObject(result
, (bool)0);
8876 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_Veto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8877 PyObject
*resultobj
= 0;
8878 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8879 bool arg2
= (bool) true ;
8884 PyObject
* obj0
= 0 ;
8885 PyObject
* obj1
= 0 ;
8886 char * kwnames
[] = {
8887 (char *) "self",(char *) "veto", NULL
8890 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiManagerEvent_Veto",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8891 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8892 if (!SWIG_IsOK(res1
)) {
8893 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_Veto" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8895 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8897 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8898 if (!SWIG_IsOK(ecode2
)) {
8899 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_Veto" "', expected argument " "2"" of type '" "bool""'");
8901 arg2
= static_cast< bool >(val2
);
8904 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8906 wxPyEndAllowThreads(__tstate
);
8907 if (PyErr_Occurred()) SWIG_fail
;
8909 resultobj
= SWIG_Py_Void();
8916 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8917 PyObject
*resultobj
= 0;
8918 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8922 PyObject
*swig_obj
[1] ;
8924 if (!args
) SWIG_fail
;
8926 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8927 if (!SWIG_IsOK(res1
)) {
8928 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetVeto" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8930 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8932 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8933 result
= (bool)((wxAuiManagerEvent
const *)arg1
)->GetVeto();
8934 wxPyEndAllowThreads(__tstate
);
8935 if (PyErr_Occurred()) SWIG_fail
;
8938 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8946 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetCanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8947 PyObject
*resultobj
= 0;
8948 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8954 PyObject
* obj0
= 0 ;
8955 PyObject
* obj1
= 0 ;
8956 char * kwnames
[] = {
8957 (char *) "self",(char *) "can_veto", NULL
8960 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetCanVeto",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8961 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8962 if (!SWIG_IsOK(res1
)) {
8963 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetCanVeto" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8965 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8966 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8967 if (!SWIG_IsOK(ecode2
)) {
8968 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_SetCanVeto" "', expected argument " "2"" of type '" "bool""'");
8970 arg2
= static_cast< bool >(val2
);
8972 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8973 (arg1
)->SetCanVeto(arg2
);
8974 wxPyEndAllowThreads(__tstate
);
8975 if (PyErr_Occurred()) SWIG_fail
;
8977 resultobj
= SWIG_Py_Void();
8984 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_CanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8985 PyObject
*resultobj
= 0;
8986 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8990 PyObject
*swig_obj
[1] ;
8992 if (!args
) SWIG_fail
;
8994 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8995 if (!SWIG_IsOK(res1
)) {
8996 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_CanVeto" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8998 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9000 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9001 result
= (bool)((wxAuiManagerEvent
const *)arg1
)->CanVeto();
9002 wxPyEndAllowThreads(__tstate
);
9003 if (PyErr_Occurred()) SWIG_fail
;
9006 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9014 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_manager_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9015 PyObject
*resultobj
= 0;
9016 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9017 wxAuiManager
*arg2
= (wxAuiManager
*) 0 ;
9022 PyObject
*swig_obj
[2] ;
9024 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_manager_set",2,2,swig_obj
)) SWIG_fail
;
9025 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9026 if (!SWIG_IsOK(res1
)) {
9027 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_manager_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9029 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9030 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiManager
, SWIG_POINTER_DISOWN
| 0 );
9031 if (!SWIG_IsOK(res2
)) {
9032 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_manager_set" "', expected argument " "2"" of type '" "wxAuiManager *""'");
9034 arg2
= reinterpret_cast< wxAuiManager
* >(argp2
);
9035 if (arg1
) (arg1
)->manager
= arg2
;
9037 resultobj
= SWIG_Py_Void();
9044 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_manager_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9045 PyObject
*resultobj
= 0;
9046 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9047 wxAuiManager
*result
= 0 ;
9050 PyObject
*swig_obj
[1] ;
9052 if (!args
) SWIG_fail
;
9054 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9055 if (!SWIG_IsOK(res1
)) {
9056 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_manager_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9058 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9059 result
= (wxAuiManager
*) ((arg1
)->manager
);
9060 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 | 0 );
9067 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9068 PyObject
*resultobj
= 0;
9069 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9070 wxAuiPaneInfo
*arg2
= (wxAuiPaneInfo
*) 0 ;
9075 PyObject
*swig_obj
[2] ;
9077 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_pane_set",2,2,swig_obj
)) SWIG_fail
;
9078 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9079 if (!SWIG_IsOK(res1
)) {
9080 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_pane_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9082 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9083 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
9084 if (!SWIG_IsOK(res2
)) {
9085 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_pane_set" "', expected argument " "2"" of type '" "wxAuiPaneInfo *""'");
9087 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
9088 if (arg1
) (arg1
)->pane
= arg2
;
9090 resultobj
= SWIG_Py_Void();
9097 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9098 PyObject
*resultobj
= 0;
9099 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9100 wxAuiPaneInfo
*result
= 0 ;
9103 PyObject
*swig_obj
[1] ;
9105 if (!args
) SWIG_fail
;
9107 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9108 if (!SWIG_IsOK(res1
)) {
9109 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_pane_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9111 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9112 result
= (wxAuiPaneInfo
*) ((arg1
)->pane
);
9113 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
9120 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9121 PyObject
*resultobj
= 0;
9122 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9128 PyObject
*swig_obj
[2] ;
9130 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_button_set",2,2,swig_obj
)) SWIG_fail
;
9131 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9132 if (!SWIG_IsOK(res1
)) {
9133 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_button_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9135 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9136 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9137 if (!SWIG_IsOK(ecode2
)) {
9138 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_button_set" "', expected argument " "2"" of type '" "int""'");
9140 arg2
= static_cast< int >(val2
);
9141 if (arg1
) (arg1
)->button
= arg2
;
9143 resultobj
= SWIG_Py_Void();
9150 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9151 PyObject
*resultobj
= 0;
9152 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9156 PyObject
*swig_obj
[1] ;
9158 if (!args
) SWIG_fail
;
9160 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9161 if (!SWIG_IsOK(res1
)) {
9162 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_button_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9164 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9165 result
= (int) ((arg1
)->button
);
9166 resultobj
= SWIG_From_int(static_cast< int >(result
));
9173 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_veto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9174 PyObject
*resultobj
= 0;
9175 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9181 PyObject
*swig_obj
[2] ;
9183 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_veto_flag_set",2,2,swig_obj
)) SWIG_fail
;
9184 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9185 if (!SWIG_IsOK(res1
)) {
9186 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_veto_flag_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9188 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9189 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9190 if (!SWIG_IsOK(ecode2
)) {
9191 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_veto_flag_set" "', expected argument " "2"" of type '" "bool""'");
9193 arg2
= static_cast< bool >(val2
);
9194 if (arg1
) (arg1
)->veto_flag
= arg2
;
9196 resultobj
= SWIG_Py_Void();
9203 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_veto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9204 PyObject
*resultobj
= 0;
9205 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9209 PyObject
*swig_obj
[1] ;
9211 if (!args
) SWIG_fail
;
9213 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9214 if (!SWIG_IsOK(res1
)) {
9215 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_veto_flag_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9217 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9218 result
= (bool) ((arg1
)->veto_flag
);
9220 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9228 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_canveto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9229 PyObject
*resultobj
= 0;
9230 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9236 PyObject
*swig_obj
[2] ;
9238 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_canveto_flag_set",2,2,swig_obj
)) SWIG_fail
;
9239 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9240 if (!SWIG_IsOK(res1
)) {
9241 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_canveto_flag_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9243 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9244 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9245 if (!SWIG_IsOK(ecode2
)) {
9246 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_canveto_flag_set" "', expected argument " "2"" of type '" "bool""'");
9248 arg2
= static_cast< bool >(val2
);
9249 if (arg1
) (arg1
)->canveto_flag
= arg2
;
9251 resultobj
= SWIG_Py_Void();
9258 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_canveto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9259 PyObject
*resultobj
= 0;
9260 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9264 PyObject
*swig_obj
[1] ;
9266 if (!args
) SWIG_fail
;
9268 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9269 if (!SWIG_IsOK(res1
)) {
9270 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_canveto_flag_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9272 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9273 result
= (bool) ((arg1
)->canveto_flag
);
9275 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9283 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_dc_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9284 PyObject
*resultobj
= 0;
9285 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9286 wxDC
*arg2
= (wxDC
*) 0 ;
9291 PyObject
*swig_obj
[2] ;
9293 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_dc_set",2,2,swig_obj
)) SWIG_fail
;
9294 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9295 if (!SWIG_IsOK(res1
)) {
9296 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_dc_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9298 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9299 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxDC
, SWIG_POINTER_DISOWN
| 0 );
9300 if (!SWIG_IsOK(res2
)) {
9301 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_dc_set" "', expected argument " "2"" of type '" "wxDC *""'");
9303 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9304 if (arg1
) (arg1
)->dc
= arg2
;
9306 resultobj
= SWIG_Py_Void();
9313 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_dc_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9314 PyObject
*resultobj
= 0;
9315 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9319 PyObject
*swig_obj
[1] ;
9321 if (!args
) SWIG_fail
;
9323 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9324 if (!SWIG_IsOK(res1
)) {
9325 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_dc_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9327 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9328 result
= (wxDC
*) ((arg1
)->dc
);
9330 resultobj
= wxPyMake_wxObject(result
, (bool)0);
9338 SWIGINTERN PyObject
*AuiManagerEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9340 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9341 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiManagerEvent
, SWIG_NewClientData(obj
));
9342 return SWIG_Py_Void();
9345 SWIGINTERN PyObject
*AuiManagerEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9346 return SWIG_Python_InitShadowInstance(args
);
9349 SWIGINTERN PyObject
*_wrap_new_AuiDockInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9350 PyObject
*resultobj
= 0;
9351 wxAuiDockInfo
*result
= 0 ;
9353 if (!SWIG_Python_UnpackTuple(args
,"new_AuiDockInfo",0,0,0)) SWIG_fail
;
9355 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9356 result
= (wxAuiDockInfo
*)new wxAuiDockInfo();
9357 wxPyEndAllowThreads(__tstate
);
9358 if (PyErr_Occurred()) SWIG_fail
;
9360 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDockInfo
, SWIG_POINTER_NEW
| 0 );
9367 SWIGINTERN PyObject
*_wrap_AuiDockInfo_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9368 PyObject
*resultobj
= 0;
9369 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9373 PyObject
*swig_obj
[1] ;
9375 if (!args
) SWIG_fail
;
9377 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9378 if (!SWIG_IsOK(res1
)) {
9379 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_IsOk" "', expected argument " "1"" of type '" "wxAuiDockInfo const *""'");
9381 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9383 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9384 result
= (bool)((wxAuiDockInfo
const *)arg1
)->IsOk();
9385 wxPyEndAllowThreads(__tstate
);
9386 if (PyErr_Occurred()) SWIG_fail
;
9389 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9397 SWIGINTERN PyObject
*_wrap_AuiDockInfo_IsHorizontal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9398 PyObject
*resultobj
= 0;
9399 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9403 PyObject
*swig_obj
[1] ;
9405 if (!args
) SWIG_fail
;
9407 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9408 if (!SWIG_IsOK(res1
)) {
9409 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_IsHorizontal" "', expected argument " "1"" of type '" "wxAuiDockInfo const *""'");
9411 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9413 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9414 result
= (bool)((wxAuiDockInfo
const *)arg1
)->IsHorizontal();
9415 wxPyEndAllowThreads(__tstate
);
9416 if (PyErr_Occurred()) SWIG_fail
;
9419 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9427 SWIGINTERN PyObject
*_wrap_AuiDockInfo_IsVertical(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9428 PyObject
*resultobj
= 0;
9429 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9433 PyObject
*swig_obj
[1] ;
9435 if (!args
) SWIG_fail
;
9437 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9438 if (!SWIG_IsOK(res1
)) {
9439 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_IsVertical" "', expected argument " "1"" of type '" "wxAuiDockInfo const *""'");
9441 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9443 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9444 result
= (bool)((wxAuiDockInfo
const *)arg1
)->IsVertical();
9445 wxPyEndAllowThreads(__tstate
);
9446 if (PyErr_Occurred()) SWIG_fail
;
9449 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9457 SWIGINTERN PyObject
*_wrap_AuiDockInfo_panes_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9458 PyObject
*resultobj
= 0;
9459 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9460 wxAuiPaneInfoPtrArray arg2
;
9465 PyObject
*swig_obj
[2] ;
9467 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_panes_set",2,2,swig_obj
)) SWIG_fail
;
9468 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9469 if (!SWIG_IsOK(res1
)) {
9470 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_panes_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9472 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9474 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxAuiPaneInfoPtrArray
, 0 | 0);
9475 if (!SWIG_IsOK(res2
)) {
9476 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockInfo_panes_set" "', expected argument " "2"" of type '" "wxAuiPaneInfoPtrArray""'");
9479 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockInfo_panes_set" "', expected argument " "2"" of type '" "wxAuiPaneInfoPtrArray""'");
9481 wxAuiPaneInfoPtrArray
* temp
= reinterpret_cast< wxAuiPaneInfoPtrArray
* >(argp2
);
9483 if (SWIG_IsNewObj(res2
)) delete temp
;
9486 if (arg1
) (arg1
)->panes
= arg2
;
9488 resultobj
= SWIG_Py_Void();
9495 SWIGINTERN PyObject
*_wrap_AuiDockInfo_panes_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9496 PyObject
*resultobj
= 0;
9497 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9498 wxAuiPaneInfoPtrArray result
;
9501 PyObject
*swig_obj
[1] ;
9503 if (!args
) SWIG_fail
;
9505 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9506 if (!SWIG_IsOK(res1
)) {
9507 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_panes_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9509 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9510 result
= ((arg1
)->panes
);
9511 resultobj
= SWIG_NewPointerObj((new wxAuiPaneInfoPtrArray(static_cast< const wxAuiPaneInfoPtrArray
& >(result
))), SWIGTYPE_p_wxAuiPaneInfoPtrArray
, SWIG_POINTER_OWN
| 0 );
9518 SWIGINTERN PyObject
*_wrap_AuiDockInfo_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9519 PyObject
*resultobj
= 0;
9520 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9521 wxRect
*arg2
= (wxRect
*) 0 ;
9526 PyObject
*swig_obj
[2] ;
9528 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_rect_set",2,2,swig_obj
)) SWIG_fail
;
9529 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9530 if (!SWIG_IsOK(res1
)) {
9531 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_rect_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9533 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9534 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
9535 if (!SWIG_IsOK(res2
)) {
9536 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
9538 arg2
= reinterpret_cast< wxRect
* >(argp2
);
9539 if (arg1
) (arg1
)->rect
= *arg2
;
9541 resultobj
= SWIG_Py_Void();
9548 SWIGINTERN PyObject
*_wrap_AuiDockInfo_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9549 PyObject
*resultobj
= 0;
9550 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9551 wxRect
*result
= 0 ;
9554 PyObject
*swig_obj
[1] ;
9556 if (!args
) SWIG_fail
;
9558 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9559 if (!SWIG_IsOK(res1
)) {
9560 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_rect_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9562 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9563 result
= (wxRect
*)& ((arg1
)->rect
);
9564 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
9571 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_direction_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9572 PyObject
*resultobj
= 0;
9573 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9579 PyObject
*swig_obj
[2] ;
9581 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
;
9582 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9583 if (!SWIG_IsOK(res1
)) {
9584 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9586 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9587 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9588 if (!SWIG_IsOK(ecode2
)) {
9589 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'");
9591 arg2
= static_cast< int >(val2
);
9592 if (arg1
) (arg1
)->dock_direction
= arg2
;
9594 resultobj
= SWIG_Py_Void();
9601 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_direction_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9602 PyObject
*resultobj
= 0;
9603 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9607 PyObject
*swig_obj
[1] ;
9609 if (!args
) SWIG_fail
;
9611 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9612 if (!SWIG_IsOK(res1
)) {
9613 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9615 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9616 result
= (int) ((arg1
)->dock_direction
);
9617 resultobj
= SWIG_From_int(static_cast< int >(result
));
9624 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_layer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9625 PyObject
*resultobj
= 0;
9626 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9632 PyObject
*swig_obj
[2] ;
9634 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
;
9635 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9636 if (!SWIG_IsOK(res1
)) {
9637 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9639 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9640 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9641 if (!SWIG_IsOK(ecode2
)) {
9642 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'");
9644 arg2
= static_cast< int >(val2
);
9645 if (arg1
) (arg1
)->dock_layer
= arg2
;
9647 resultobj
= SWIG_Py_Void();
9654 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_layer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9655 PyObject
*resultobj
= 0;
9656 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9660 PyObject
*swig_obj
[1] ;
9662 if (!args
) SWIG_fail
;
9664 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9665 if (!SWIG_IsOK(res1
)) {
9666 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9668 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9669 result
= (int) ((arg1
)->dock_layer
);
9670 resultobj
= SWIG_From_int(static_cast< int >(result
));
9677 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_row_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9678 PyObject
*resultobj
= 0;
9679 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9685 PyObject
*swig_obj
[2] ;
9687 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
;
9688 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9689 if (!SWIG_IsOK(res1
)) {
9690 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_row_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9692 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9693 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9694 if (!SWIG_IsOK(ecode2
)) {
9695 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'");
9697 arg2
= static_cast< int >(val2
);
9698 if (arg1
) (arg1
)->dock_row
= arg2
;
9700 resultobj
= SWIG_Py_Void();
9707 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_row_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9708 PyObject
*resultobj
= 0;
9709 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9713 PyObject
*swig_obj
[1] ;
9715 if (!args
) SWIG_fail
;
9717 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9718 if (!SWIG_IsOK(res1
)) {
9719 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_row_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9721 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9722 result
= (int) ((arg1
)->dock_row
);
9723 resultobj
= SWIG_From_int(static_cast< int >(result
));
9730 SWIGINTERN PyObject
*_wrap_AuiDockInfo_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9731 PyObject
*resultobj
= 0;
9732 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9738 PyObject
*swig_obj
[2] ;
9740 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_size_set",2,2,swig_obj
)) SWIG_fail
;
9741 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9742 if (!SWIG_IsOK(res1
)) {
9743 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_size_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9745 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9746 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9747 if (!SWIG_IsOK(ecode2
)) {
9748 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_size_set" "', expected argument " "2"" of type '" "int""'");
9750 arg2
= static_cast< int >(val2
);
9751 if (arg1
) (arg1
)->size
= arg2
;
9753 resultobj
= SWIG_Py_Void();
9760 SWIGINTERN PyObject
*_wrap_AuiDockInfo_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9761 PyObject
*resultobj
= 0;
9762 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9766 PyObject
*swig_obj
[1] ;
9768 if (!args
) SWIG_fail
;
9770 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9771 if (!SWIG_IsOK(res1
)) {
9772 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_size_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9774 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9775 result
= (int) ((arg1
)->size
);
9776 resultobj
= SWIG_From_int(static_cast< int >(result
));
9783 SWIGINTERN PyObject
*_wrap_AuiDockInfo_min_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9784 PyObject
*resultobj
= 0;
9785 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9791 PyObject
*swig_obj
[2] ;
9793 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
;
9794 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9795 if (!SWIG_IsOK(res1
)) {
9796 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_min_size_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9798 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9799 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9800 if (!SWIG_IsOK(ecode2
)) {
9801 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_min_size_set" "', expected argument " "2"" of type '" "int""'");
9803 arg2
= static_cast< int >(val2
);
9804 if (arg1
) (arg1
)->min_size
= arg2
;
9806 resultobj
= SWIG_Py_Void();
9813 SWIGINTERN PyObject
*_wrap_AuiDockInfo_min_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9814 PyObject
*resultobj
= 0;
9815 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9819 PyObject
*swig_obj
[1] ;
9821 if (!args
) SWIG_fail
;
9823 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9824 if (!SWIG_IsOK(res1
)) {
9825 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_min_size_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9827 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9828 result
= (int) ((arg1
)->min_size
);
9829 resultobj
= SWIG_From_int(static_cast< int >(result
));
9836 SWIGINTERN PyObject
*_wrap_AuiDockInfo_resizable_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9837 PyObject
*resultobj
= 0;
9838 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9844 PyObject
*swig_obj
[2] ;
9846 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_resizable_set",2,2,swig_obj
)) SWIG_fail
;
9847 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9848 if (!SWIG_IsOK(res1
)) {
9849 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_resizable_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9851 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9852 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9853 if (!SWIG_IsOK(ecode2
)) {
9854 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_resizable_set" "', expected argument " "2"" of type '" "bool""'");
9856 arg2
= static_cast< bool >(val2
);
9857 if (arg1
) (arg1
)->resizable
= arg2
;
9859 resultobj
= SWIG_Py_Void();
9866 SWIGINTERN PyObject
*_wrap_AuiDockInfo_resizable_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9867 PyObject
*resultobj
= 0;
9868 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9872 PyObject
*swig_obj
[1] ;
9874 if (!args
) SWIG_fail
;
9876 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9877 if (!SWIG_IsOK(res1
)) {
9878 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_resizable_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9880 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9881 result
= (bool) ((arg1
)->resizable
);
9883 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9891 SWIGINTERN PyObject
*_wrap_AuiDockInfo_toolbar_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9892 PyObject
*resultobj
= 0;
9893 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9899 PyObject
*swig_obj
[2] ;
9901 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_toolbar_set",2,2,swig_obj
)) SWIG_fail
;
9902 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9903 if (!SWIG_IsOK(res1
)) {
9904 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_toolbar_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9906 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9907 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9908 if (!SWIG_IsOK(ecode2
)) {
9909 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_toolbar_set" "', expected argument " "2"" of type '" "bool""'");
9911 arg2
= static_cast< bool >(val2
);
9912 if (arg1
) (arg1
)->toolbar
= arg2
;
9914 resultobj
= SWIG_Py_Void();
9921 SWIGINTERN PyObject
*_wrap_AuiDockInfo_toolbar_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9922 PyObject
*resultobj
= 0;
9923 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9927 PyObject
*swig_obj
[1] ;
9929 if (!args
) SWIG_fail
;
9931 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9932 if (!SWIG_IsOK(res1
)) {
9933 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_toolbar_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9935 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9936 result
= (bool) ((arg1
)->toolbar
);
9938 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9946 SWIGINTERN PyObject
*_wrap_AuiDockInfo_fixed_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9947 PyObject
*resultobj
= 0;
9948 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9954 PyObject
*swig_obj
[2] ;
9956 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_fixed_set",2,2,swig_obj
)) SWIG_fail
;
9957 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9958 if (!SWIG_IsOK(res1
)) {
9959 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_fixed_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9961 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9962 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9963 if (!SWIG_IsOK(ecode2
)) {
9964 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_fixed_set" "', expected argument " "2"" of type '" "bool""'");
9966 arg2
= static_cast< bool >(val2
);
9967 if (arg1
) (arg1
)->fixed
= arg2
;
9969 resultobj
= SWIG_Py_Void();
9976 SWIGINTERN PyObject
*_wrap_AuiDockInfo_fixed_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9977 PyObject
*resultobj
= 0;
9978 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9982 PyObject
*swig_obj
[1] ;
9984 if (!args
) SWIG_fail
;
9986 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9987 if (!SWIG_IsOK(res1
)) {
9988 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_fixed_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9990 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9991 result
= (bool) ((arg1
)->fixed
);
9993 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10001 SWIGINTERN PyObject
*_wrap_delete_AuiDockInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10002 PyObject
*resultobj
= 0;
10003 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
10006 PyObject
*swig_obj
[1] ;
10008 if (!args
) SWIG_fail
;
10009 swig_obj
[0] = args
;
10010 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, SWIG_POINTER_DISOWN
| 0 );
10011 if (!SWIG_IsOK(res1
)) {
10012 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDockInfo" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
10014 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
10016 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10017 delete_wxAuiDockInfo(arg1
);
10019 wxPyEndAllowThreads(__tstate
);
10020 if (PyErr_Occurred()) SWIG_fail
;
10022 resultobj
= SWIG_Py_Void();
10029 SWIGINTERN PyObject
*AuiDockInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10031 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10032 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDockInfo
, SWIG_NewClientData(obj
));
10033 return SWIG_Py_Void();
10036 SWIGINTERN PyObject
*AuiDockInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10037 return SWIG_Python_InitShadowInstance(args
);
10040 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_type_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10041 PyObject
*resultobj
= 0;
10042 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10048 PyObject
*swig_obj
[2] ;
10050 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_type_set",2,2,swig_obj
)) SWIG_fail
;
10051 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10052 if (!SWIG_IsOK(res1
)) {
10053 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_type_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10055 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10056 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
10057 if (!SWIG_IsOK(ecode2
)) {
10058 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockUIPart_type_set" "', expected argument " "2"" of type '" "int""'");
10060 arg2
= static_cast< int >(val2
);
10061 if (arg1
) (arg1
)->type
= arg2
;
10063 resultobj
= SWIG_Py_Void();
10070 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_type_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10071 PyObject
*resultobj
= 0;
10072 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10076 PyObject
*swig_obj
[1] ;
10078 if (!args
) SWIG_fail
;
10079 swig_obj
[0] = args
;
10080 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10081 if (!SWIG_IsOK(res1
)) {
10082 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_type_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10084 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10085 result
= (int) ((arg1
)->type
);
10086 resultobj
= SWIG_From_int(static_cast< int >(result
));
10093 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_orientation_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10094 PyObject
*resultobj
= 0;
10095 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10101 PyObject
*swig_obj
[2] ;
10103 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_orientation_set",2,2,swig_obj
)) SWIG_fail
;
10104 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10105 if (!SWIG_IsOK(res1
)) {
10106 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_orientation_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10108 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10109 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
10110 if (!SWIG_IsOK(ecode2
)) {
10111 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockUIPart_orientation_set" "', expected argument " "2"" of type '" "int""'");
10113 arg2
= static_cast< int >(val2
);
10114 if (arg1
) (arg1
)->orientation
= arg2
;
10116 resultobj
= SWIG_Py_Void();
10123 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_orientation_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10124 PyObject
*resultobj
= 0;
10125 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10129 PyObject
*swig_obj
[1] ;
10131 if (!args
) SWIG_fail
;
10132 swig_obj
[0] = args
;
10133 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10134 if (!SWIG_IsOK(res1
)) {
10135 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_orientation_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10137 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10138 result
= (int) ((arg1
)->orientation
);
10139 resultobj
= SWIG_From_int(static_cast< int >(result
));
10146 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_dock_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10147 PyObject
*resultobj
= 0;
10148 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10149 wxAuiDockInfo
*arg2
= (wxAuiDockInfo
*) 0 ;
10154 PyObject
*swig_obj
[2] ;
10156 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_dock_set",2,2,swig_obj
)) SWIG_fail
;
10157 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10158 if (!SWIG_IsOK(res1
)) {
10159 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_dock_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10161 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10162 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiDockInfo
, SWIG_POINTER_DISOWN
| 0 );
10163 if (!SWIG_IsOK(res2
)) {
10164 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_dock_set" "', expected argument " "2"" of type '" "wxAuiDockInfo *""'");
10166 arg2
= reinterpret_cast< wxAuiDockInfo
* >(argp2
);
10167 if (arg1
) (arg1
)->dock
= arg2
;
10169 resultobj
= SWIG_Py_Void();
10176 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_dock_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10177 PyObject
*resultobj
= 0;
10178 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10179 wxAuiDockInfo
*result
= 0 ;
10182 PyObject
*swig_obj
[1] ;
10184 if (!args
) SWIG_fail
;
10185 swig_obj
[0] = args
;
10186 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10187 if (!SWIG_IsOK(res1
)) {
10188 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_dock_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10190 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10191 result
= (wxAuiDockInfo
*) ((arg1
)->dock
);
10192 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
10199 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10200 PyObject
*resultobj
= 0;
10201 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10202 wxAuiPaneInfo
*arg2
= (wxAuiPaneInfo
*) 0 ;
10207 PyObject
*swig_obj
[2] ;
10209 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_pane_set",2,2,swig_obj
)) SWIG_fail
;
10210 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10211 if (!SWIG_IsOK(res1
)) {
10212 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_pane_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10214 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10215 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
10216 if (!SWIG_IsOK(res2
)) {
10217 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_pane_set" "', expected argument " "2"" of type '" "wxAuiPaneInfo *""'");
10219 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
10220 if (arg1
) (arg1
)->pane
= arg2
;
10222 resultobj
= SWIG_Py_Void();
10229 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10230 PyObject
*resultobj
= 0;
10231 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10232 wxAuiPaneInfo
*result
= 0 ;
10235 PyObject
*swig_obj
[1] ;
10237 if (!args
) SWIG_fail
;
10238 swig_obj
[0] = args
;
10239 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10240 if (!SWIG_IsOK(res1
)) {
10241 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_pane_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10243 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10244 result
= (wxAuiPaneInfo
*) ((arg1
)->pane
);
10245 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
10252 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10253 PyObject
*resultobj
= 0;
10254 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10255 wxAuiPaneButton
*arg2
= (wxAuiPaneButton
*) 0 ;
10260 PyObject
*swig_obj
[2] ;
10262 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_button_set",2,2,swig_obj
)) SWIG_fail
;
10263 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10264 if (!SWIG_IsOK(res1
)) {
10265 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_button_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10267 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10268 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiPaneButton
, SWIG_POINTER_DISOWN
| 0 );
10269 if (!SWIG_IsOK(res2
)) {
10270 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_button_set" "', expected argument " "2"" of type '" "wxAuiPaneButton *""'");
10272 arg2
= reinterpret_cast< wxAuiPaneButton
* >(argp2
);
10273 if (arg1
) (arg1
)->button
= arg2
;
10275 resultobj
= SWIG_Py_Void();
10282 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10283 PyObject
*resultobj
= 0;
10284 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10285 wxAuiPaneButton
*result
= 0 ;
10288 PyObject
*swig_obj
[1] ;
10290 if (!args
) SWIG_fail
;
10291 swig_obj
[0] = args
;
10292 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10293 if (!SWIG_IsOK(res1
)) {
10294 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_button_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10296 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10297 result
= (wxAuiPaneButton
*) ((arg1
)->button
);
10298 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneButton
, 0 | 0 );
10305 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_cont_sizer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10306 PyObject
*resultobj
= 0;
10307 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10308 wxSizer
*arg2
= (wxSizer
*) 0 ;
10313 PyObject
*swig_obj
[2] ;
10315 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_cont_sizer_set",2,2,swig_obj
)) SWIG_fail
;
10316 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10317 if (!SWIG_IsOK(res1
)) {
10318 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_cont_sizer_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10320 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10321 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizer
, SWIG_POINTER_DISOWN
| 0 );
10322 if (!SWIG_IsOK(res2
)) {
10323 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_cont_sizer_set" "', expected argument " "2"" of type '" "wxSizer *""'");
10325 arg2
= reinterpret_cast< wxSizer
* >(argp2
);
10326 if (arg1
) (arg1
)->cont_sizer
= arg2
;
10328 resultobj
= SWIG_Py_Void();
10335 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_cont_sizer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10336 PyObject
*resultobj
= 0;
10337 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10338 wxSizer
*result
= 0 ;
10341 PyObject
*swig_obj
[1] ;
10343 if (!args
) SWIG_fail
;
10344 swig_obj
[0] = args
;
10345 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10346 if (!SWIG_IsOK(res1
)) {
10347 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_cont_sizer_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10349 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10350 result
= (wxSizer
*) ((arg1
)->cont_sizer
);
10352 resultobj
= wxPyMake_wxObject(result
, (bool)0);
10360 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_sizer_item_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10361 PyObject
*resultobj
= 0;
10362 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10363 wxSizerItem
*arg2
= (wxSizerItem
*) 0 ;
10368 PyObject
*swig_obj
[2] ;
10370 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_sizer_item_set",2,2,swig_obj
)) SWIG_fail
;
10371 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10372 if (!SWIG_IsOK(res1
)) {
10373 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_sizer_item_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10375 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10376 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizerItem
, SWIG_POINTER_DISOWN
| 0 );
10377 if (!SWIG_IsOK(res2
)) {
10378 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_sizer_item_set" "', expected argument " "2"" of type '" "wxSizerItem *""'");
10380 arg2
= reinterpret_cast< wxSizerItem
* >(argp2
);
10381 if (arg1
) (arg1
)->sizer_item
= arg2
;
10383 resultobj
= SWIG_Py_Void();
10390 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_sizer_item_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10391 PyObject
*resultobj
= 0;
10392 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10393 wxSizerItem
*result
= 0 ;
10396 PyObject
*swig_obj
[1] ;
10398 if (!args
) SWIG_fail
;
10399 swig_obj
[0] = args
;
10400 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10401 if (!SWIG_IsOK(res1
)) {
10402 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_sizer_item_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10404 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10405 result
= (wxSizerItem
*) ((arg1
)->sizer_item
);
10406 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSizerItem
, 0 | 0 );
10413 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10414 PyObject
*resultobj
= 0;
10415 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10416 wxRect
*arg2
= (wxRect
*) 0 ;
10421 PyObject
*swig_obj
[2] ;
10423 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_rect_set",2,2,swig_obj
)) SWIG_fail
;
10424 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10425 if (!SWIG_IsOK(res1
)) {
10426 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_rect_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10428 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10429 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
10430 if (!SWIG_IsOK(res2
)) {
10431 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
10433 arg2
= reinterpret_cast< wxRect
* >(argp2
);
10434 if (arg1
) (arg1
)->rect
= *arg2
;
10436 resultobj
= SWIG_Py_Void();
10443 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10444 PyObject
*resultobj
= 0;
10445 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10446 wxRect
*result
= 0 ;
10449 PyObject
*swig_obj
[1] ;
10451 if (!args
) SWIG_fail
;
10452 swig_obj
[0] = args
;
10453 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10454 if (!SWIG_IsOK(res1
)) {
10455 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_rect_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10457 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10458 result
= (wxRect
*)& ((arg1
)->rect
);
10459 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
10466 SWIGINTERN PyObject
*_wrap_delete_AuiDockUIPart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10467 PyObject
*resultobj
= 0;
10468 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10471 PyObject
*swig_obj
[1] ;
10473 if (!args
) SWIG_fail
;
10474 swig_obj
[0] = args
;
10475 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, SWIG_POINTER_DISOWN
| 0 );
10476 if (!SWIG_IsOK(res1
)) {
10477 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDockUIPart" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10479 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10481 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10482 delete_wxAuiDockUIPart(arg1
);
10484 wxPyEndAllowThreads(__tstate
);
10485 if (PyErr_Occurred()) SWIG_fail
;
10487 resultobj
= SWIG_Py_Void();
10494 SWIGINTERN PyObject
*AuiDockUIPart_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10496 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10497 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDockUIPart
, SWIG_NewClientData(obj
));
10498 return SWIG_Py_Void();
10501 SWIGINTERN PyObject
*_wrap_AuiPaneButton_button_id_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10502 PyObject
*resultobj
= 0;
10503 wxAuiPaneButton
*arg1
= (wxAuiPaneButton
*) 0 ;
10509 PyObject
*swig_obj
[2] ;
10511 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneButton_button_id_set",2,2,swig_obj
)) SWIG_fail
;
10512 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneButton
, 0 | 0 );
10513 if (!SWIG_IsOK(res1
)) {
10514 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneButton_button_id_set" "', expected argument " "1"" of type '" "wxAuiPaneButton *""'");
10516 arg1
= reinterpret_cast< wxAuiPaneButton
* >(argp1
);
10517 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
10518 if (!SWIG_IsOK(ecode2
)) {
10519 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneButton_button_id_set" "', expected argument " "2"" of type '" "int""'");
10521 arg2
= static_cast< int >(val2
);
10522 if (arg1
) (arg1
)->button_id
= arg2
;
10524 resultobj
= SWIG_Py_Void();
10531 SWIGINTERN PyObject
*_wrap_AuiPaneButton_button_id_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10532 PyObject
*resultobj
= 0;
10533 wxAuiPaneButton
*arg1
= (wxAuiPaneButton
*) 0 ;
10537 PyObject
*swig_obj
[1] ;
10539 if (!args
) SWIG_fail
;
10540 swig_obj
[0] = args
;
10541 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneButton
, 0 | 0 );
10542 if (!SWIG_IsOK(res1
)) {
10543 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneButton_button_id_get" "', expected argument " "1"" of type '" "wxAuiPaneButton *""'");
10545 arg1
= reinterpret_cast< wxAuiPaneButton
* >(argp1
);
10546 result
= (int) ((arg1
)->button_id
);
10547 resultobj
= SWIG_From_int(static_cast< int >(result
));
10554 SWIGINTERN PyObject
*_wrap_delete_AuiPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10555 PyObject
*resultobj
= 0;
10556 wxAuiPaneButton
*arg1
= (wxAuiPaneButton
*) 0 ;
10559 PyObject
*swig_obj
[1] ;
10561 if (!args
) SWIG_fail
;
10562 swig_obj
[0] = args
;
10563 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneButton
, SWIG_POINTER_DISOWN
| 0 );
10564 if (!SWIG_IsOK(res1
)) {
10565 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiPaneButton" "', expected argument " "1"" of type '" "wxAuiPaneButton *""'");
10567 arg1
= reinterpret_cast< wxAuiPaneButton
* >(argp1
);
10569 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10570 delete_wxAuiPaneButton(arg1
);
10572 wxPyEndAllowThreads(__tstate
);
10573 if (PyErr_Occurred()) SWIG_fail
;
10575 resultobj
= SWIG_Py_Void();
10582 SWIGINTERN PyObject
*AuiPaneButton_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10584 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10585 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiPaneButton
, SWIG_NewClientData(obj
));
10586 return SWIG_Py_Void();
10589 SWIGINTERN PyObject
*_wrap_delete_AuiDockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10590 PyObject
*resultobj
= 0;
10591 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10594 PyObject
*swig_obj
[1] ;
10596 if (!args
) SWIG_fail
;
10597 swig_obj
[0] = args
;
10598 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockArt
, SWIG_POINTER_DISOWN
| 0 );
10599 if (!SWIG_IsOK(res1
)) {
10600 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDockArt" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10602 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10604 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10607 wxPyEndAllowThreads(__tstate
);
10608 if (PyErr_Occurred()) SWIG_fail
;
10610 resultobj
= SWIG_Py_Void();
10617 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10618 PyObject
*resultobj
= 0;
10619 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10626 PyObject
* obj0
= 0 ;
10627 PyObject
* obj1
= 0 ;
10628 char * kwnames
[] = {
10629 (char *) "self",(char *) "id", NULL
10632 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetMetric",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10633 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10634 if (!SWIG_IsOK(res1
)) {
10635 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetMetric" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10637 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10638 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10639 if (!SWIG_IsOK(ecode2
)) {
10640 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetMetric" "', expected argument " "2"" of type '" "int""'");
10642 arg2
= static_cast< int >(val2
);
10644 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10645 result
= (int)(arg1
)->GetMetric(arg2
);
10646 wxPyEndAllowThreads(__tstate
);
10647 if (PyErr_Occurred()) SWIG_fail
;
10649 resultobj
= SWIG_From_int(static_cast< int >(result
));
10656 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10657 PyObject
*resultobj
= 0;
10658 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10667 PyObject
* obj0
= 0 ;
10668 PyObject
* obj1
= 0 ;
10669 PyObject
* obj2
= 0 ;
10670 char * kwnames
[] = {
10671 (char *) "self",(char *) "id",(char *) "new_val", NULL
10674 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetMetric",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10675 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10676 if (!SWIG_IsOK(res1
)) {
10677 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetMetric" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10679 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10680 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10681 if (!SWIG_IsOK(ecode2
)) {
10682 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetMetric" "', expected argument " "2"" of type '" "int""'");
10684 arg2
= static_cast< int >(val2
);
10685 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10686 if (!SWIG_IsOK(ecode3
)) {
10687 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiDockArt_SetMetric" "', expected argument " "3"" of type '" "int""'");
10689 arg3
= static_cast< int >(val3
);
10691 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10692 (arg1
)->SetMetric(arg2
,arg3
);
10693 wxPyEndAllowThreads(__tstate
);
10694 if (PyErr_Occurred()) SWIG_fail
;
10696 resultobj
= SWIG_Py_Void();
10703 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10704 PyObject
*resultobj
= 0;
10705 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10714 PyObject
* obj0
= 0 ;
10715 PyObject
* obj1
= 0 ;
10716 PyObject
* obj2
= 0 ;
10717 char * kwnames
[] = {
10718 (char *) "self",(char *) "id",(char *) "font", NULL
10721 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetFont",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10722 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10723 if (!SWIG_IsOK(res1
)) {
10724 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetFont" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10726 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10727 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10728 if (!SWIG_IsOK(ecode2
)) {
10729 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetFont" "', expected argument " "2"" of type '" "int""'");
10731 arg2
= static_cast< int >(val2
);
10732 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxFont
, 0 | 0);
10733 if (!SWIG_IsOK(res3
)) {
10734 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
10737 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
10739 arg3
= reinterpret_cast< wxFont
* >(argp3
);
10741 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10742 (arg1
)->SetFont(arg2
,(wxFont
const &)*arg3
);
10743 wxPyEndAllowThreads(__tstate
);
10744 if (PyErr_Occurred()) SWIG_fail
;
10746 resultobj
= SWIG_Py_Void();
10753 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10754 PyObject
*resultobj
= 0;
10755 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10762 PyObject
* obj0
= 0 ;
10763 PyObject
* obj1
= 0 ;
10764 char * kwnames
[] = {
10765 (char *) "self",(char *) "id", NULL
10768 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10769 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10770 if (!SWIG_IsOK(res1
)) {
10771 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetFont" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10773 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10774 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10775 if (!SWIG_IsOK(ecode2
)) {
10776 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetFont" "', expected argument " "2"" of type '" "int""'");
10778 arg2
= static_cast< int >(val2
);
10780 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10781 result
= (arg1
)->GetFont(arg2
);
10782 wxPyEndAllowThreads(__tstate
);
10783 if (PyErr_Occurred()) SWIG_fail
;
10785 resultobj
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
10792 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10793 PyObject
*resultobj
= 0;
10794 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10801 PyObject
* obj0
= 0 ;
10802 PyObject
* obj1
= 0 ;
10803 char * kwnames
[] = {
10804 (char *) "self",(char *) "id", NULL
10807 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10808 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10809 if (!SWIG_IsOK(res1
)) {
10810 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetColour" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10812 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10813 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10814 if (!SWIG_IsOK(ecode2
)) {
10815 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetColour" "', expected argument " "2"" of type '" "int""'");
10817 arg2
= static_cast< int >(val2
);
10819 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10820 result
= (arg1
)->GetColour(arg2
);
10821 wxPyEndAllowThreads(__tstate
);
10822 if (PyErr_Occurred()) SWIG_fail
;
10824 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
10831 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10832 PyObject
*resultobj
= 0;
10833 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10835 wxColor
*arg3
= 0 ;
10842 PyObject
* obj0
= 0 ;
10843 PyObject
* obj1
= 0 ;
10844 PyObject
* obj2
= 0 ;
10845 char * kwnames
[] = {
10846 (char *) "self",(char *) "id",(char *) "colour", NULL
10849 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10850 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10851 if (!SWIG_IsOK(res1
)) {
10852 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetColour" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10854 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10855 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10856 if (!SWIG_IsOK(ecode2
)) {
10857 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetColour" "', expected argument " "2"" of type '" "int""'");
10859 arg2
= static_cast< int >(val2
);
10860 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxColor
, 0 | 0);
10861 if (!SWIG_IsOK(res3
)) {
10862 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_SetColour" "', expected argument " "3"" of type '" "wxColor const &""'");
10865 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_SetColour" "', expected argument " "3"" of type '" "wxColor const &""'");
10867 arg3
= reinterpret_cast< wxColor
* >(argp3
);
10869 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10870 (arg1
)->SetColour(arg2
,(wxColor
const &)*arg3
);
10871 wxPyEndAllowThreads(__tstate
);
10872 if (PyErr_Occurred()) SWIG_fail
;
10874 resultobj
= SWIG_Py_Void();
10881 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10882 PyObject
*resultobj
= 0;
10883 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10890 PyObject
* obj0
= 0 ;
10891 PyObject
* obj1
= 0 ;
10892 char * kwnames
[] = {
10893 (char *) "self",(char *) "id", NULL
10896 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetColor",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10897 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10898 if (!SWIG_IsOK(res1
)) {
10899 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetColor" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10901 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10902 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10903 if (!SWIG_IsOK(ecode2
)) {
10904 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetColor" "', expected argument " "2"" of type '" "int""'");
10906 arg2
= static_cast< int >(val2
);
10908 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10909 result
= (arg1
)->GetColor(arg2
);
10910 wxPyEndAllowThreads(__tstate
);
10911 if (PyErr_Occurred()) SWIG_fail
;
10913 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
10920 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10921 PyObject
*resultobj
= 0;
10922 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10924 wxColour
*arg3
= 0 ;
10930 PyObject
* obj0
= 0 ;
10931 PyObject
* obj1
= 0 ;
10932 PyObject
* obj2
= 0 ;
10933 char * kwnames
[] = {
10934 (char *) "self",(char *) "id",(char *) "color", NULL
10937 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetColor",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10938 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10939 if (!SWIG_IsOK(res1
)) {
10940 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetColor" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10942 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10943 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10944 if (!SWIG_IsOK(ecode2
)) {
10945 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetColor" "', expected argument " "2"" of type '" "int""'");
10947 arg2
= static_cast< int >(val2
);
10950 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
10953 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10954 (arg1
)->SetColor(arg2
,(wxColour
const &)*arg3
);
10955 wxPyEndAllowThreads(__tstate
);
10956 if (PyErr_Occurred()) SWIG_fail
;
10958 resultobj
= SWIG_Py_Void();
10965 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawSash(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10966 PyObject
*resultobj
= 0;
10967 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10969 wxWindow
*arg3
= (wxWindow
*) 0 ;
10981 PyObject
* obj0
= 0 ;
10982 PyObject
* obj1
= 0 ;
10983 PyObject
* obj2
= 0 ;
10984 PyObject
* obj3
= 0 ;
10985 PyObject
* obj4
= 0 ;
10986 char * kwnames
[] = {
10987 (char *) "self",(char *) "dc",(char *) "window",(char *) "orientation",(char *) "rect", NULL
10990 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawSash",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10991 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10992 if (!SWIG_IsOK(res1
)) {
10993 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10995 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10996 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10997 if (!SWIG_IsOK(res2
)) {
10998 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
11001 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
11003 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11004 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11005 if (!SWIG_IsOK(res3
)) {
11006 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "3"" of type '" "wxWindow *""'");
11008 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11009 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11010 if (!SWIG_IsOK(ecode4
)) {
11011 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "4"" of type '" "int""'");
11013 arg4
= static_cast< int >(val4
);
11016 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
11019 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11020 (arg1
)->DrawSash(*arg2
,arg3
,arg4
,(wxRect
const &)*arg5
);
11021 wxPyEndAllowThreads(__tstate
);
11022 if (PyErr_Occurred()) SWIG_fail
;
11024 resultobj
= SWIG_Py_Void();
11031 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11032 PyObject
*resultobj
= 0;
11033 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11035 wxWindow
*arg3
= (wxWindow
*) 0 ;
11047 PyObject
* obj0
= 0 ;
11048 PyObject
* obj1
= 0 ;
11049 PyObject
* obj2
= 0 ;
11050 PyObject
* obj3
= 0 ;
11051 PyObject
* obj4
= 0 ;
11052 char * kwnames
[] = {
11053 (char *) "self",(char *) "dc",(char *) "window",(char *) "orientation",(char *) "rect", NULL
11056 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11057 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11058 if (!SWIG_IsOK(res1
)) {
11059 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11061 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11062 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11063 if (!SWIG_IsOK(res2
)) {
11064 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
11067 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
11069 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11070 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11071 if (!SWIG_IsOK(res3
)) {
11072 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "3"" of type '" "wxWindow *""'");
11074 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11075 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11076 if (!SWIG_IsOK(ecode4
)) {
11077 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "4"" of type '" "int""'");
11079 arg4
= static_cast< int >(val4
);
11082 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
11085 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11086 (arg1
)->DrawBackground(*arg2
,arg3
,arg4
,(wxRect
const &)*arg5
);
11087 wxPyEndAllowThreads(__tstate
);
11088 if (PyErr_Occurred()) SWIG_fail
;
11090 resultobj
= SWIG_Py_Void();
11097 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawCaption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11098 PyObject
*resultobj
= 0;
11099 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11101 wxWindow
*arg3
= (wxWindow
*) 0 ;
11102 wxString
*arg4
= 0 ;
11104 wxAuiPaneInfo
*arg6
= 0 ;
11111 bool temp4
= false ;
11115 PyObject
* obj0
= 0 ;
11116 PyObject
* obj1
= 0 ;
11117 PyObject
* obj2
= 0 ;
11118 PyObject
* obj3
= 0 ;
11119 PyObject
* obj4
= 0 ;
11120 PyObject
* obj5
= 0 ;
11121 char * kwnames
[] = {
11122 (char *) "self",(char *) "dc",(char *) "window",(char *) "text",(char *) "rect",(char *) "pane", NULL
11125 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:AuiDockArt_DrawCaption",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
11126 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11127 if (!SWIG_IsOK(res1
)) {
11128 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11130 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11131 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11132 if (!SWIG_IsOK(res2
)) {
11133 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
11136 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
11138 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11139 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11140 if (!SWIG_IsOK(res3
)) {
11141 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "3"" of type '" "wxWindow *""'");
11143 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11145 arg4
= wxString_in_helper(obj3
);
11146 if (arg4
== NULL
) SWIG_fail
;
11151 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
11153 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
11154 if (!SWIG_IsOK(res6
)) {
11155 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "6"" of type '" "wxAuiPaneInfo &""'");
11158 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawCaption" "', expected argument " "6"" of type '" "wxAuiPaneInfo &""'");
11160 arg6
= reinterpret_cast< wxAuiPaneInfo
* >(argp6
);
11162 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11163 (arg1
)->DrawCaption(*arg2
,arg3
,(wxString
const &)*arg4
,(wxRect
const &)*arg5
,*arg6
);
11164 wxPyEndAllowThreads(__tstate
);
11165 if (PyErr_Occurred()) SWIG_fail
;
11167 resultobj
= SWIG_Py_Void();
11182 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawGripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11183 PyObject
*resultobj
= 0;
11184 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11186 wxWindow
*arg3
= (wxWindow
*) 0 ;
11188 wxAuiPaneInfo
*arg5
= 0 ;
11198 PyObject
* obj0
= 0 ;
11199 PyObject
* obj1
= 0 ;
11200 PyObject
* obj2
= 0 ;
11201 PyObject
* obj3
= 0 ;
11202 PyObject
* obj4
= 0 ;
11203 char * kwnames
[] = {
11204 (char *) "self",(char *) "dc",(char *) "window",(char *) "rect",(char *) "pane", NULL
11207 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawGripper",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11208 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11209 if (!SWIG_IsOK(res1
)) {
11210 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11212 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11213 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11214 if (!SWIG_IsOK(res2
)) {
11215 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
11218 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
11220 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11221 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11222 if (!SWIG_IsOK(res3
)) {
11223 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "3"" of type '" "wxWindow *""'");
11225 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11228 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
11230 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
11231 if (!SWIG_IsOK(res5
)) {
11232 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11235 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawGripper" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11237 arg5
= reinterpret_cast< wxAuiPaneInfo
* >(argp5
);
11239 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11240 (arg1
)->DrawGripper(*arg2
,arg3
,(wxRect
const &)*arg4
,*arg5
);
11241 wxPyEndAllowThreads(__tstate
);
11242 if (PyErr_Occurred()) SWIG_fail
;
11244 resultobj
= SWIG_Py_Void();
11251 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11252 PyObject
*resultobj
= 0;
11253 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11255 wxWindow
*arg3
= (wxWindow
*) 0 ;
11257 wxAuiPaneInfo
*arg5
= 0 ;
11267 PyObject
* obj0
= 0 ;
11268 PyObject
* obj1
= 0 ;
11269 PyObject
* obj2
= 0 ;
11270 PyObject
* obj3
= 0 ;
11271 PyObject
* obj4
= 0 ;
11272 char * kwnames
[] = {
11273 (char *) "self",(char *) "dc",(char *) "window",(char *) "rect",(char *) "pane", NULL
11276 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawBorder",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11277 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11278 if (!SWIG_IsOK(res1
)) {
11279 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11281 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11282 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11283 if (!SWIG_IsOK(res2
)) {
11284 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
11287 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
11289 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11290 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11291 if (!SWIG_IsOK(res3
)) {
11292 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "3"" of type '" "wxWindow *""'");
11294 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11297 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
11299 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
11300 if (!SWIG_IsOK(res5
)) {
11301 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11304 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawBorder" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11306 arg5
= reinterpret_cast< wxAuiPaneInfo
* >(argp5
);
11308 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11309 (arg1
)->DrawBorder(*arg2
,arg3
,(wxRect
const &)*arg4
,*arg5
);
11310 wxPyEndAllowThreads(__tstate
);
11311 if (PyErr_Occurred()) SWIG_fail
;
11313 resultobj
= SWIG_Py_Void();
11320 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11321 PyObject
*resultobj
= 0;
11322 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11324 wxWindow
*arg3
= (wxWindow
*) 0 ;
11328 wxAuiPaneInfo
*arg7
= 0 ;
11342 PyObject
* obj0
= 0 ;
11343 PyObject
* obj1
= 0 ;
11344 PyObject
* obj2
= 0 ;
11345 PyObject
* obj3
= 0 ;
11346 PyObject
* obj4
= 0 ;
11347 PyObject
* obj5
= 0 ;
11348 PyObject
* obj6
= 0 ;
11349 char * kwnames
[] = {
11350 (char *) "self",(char *) "dc",(char *) "window",(char *) "button",(char *) "button_state",(char *) "rect",(char *) "pane", NULL
11353 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:AuiDockArt_DrawPaneButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
11354 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11355 if (!SWIG_IsOK(res1
)) {
11356 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11358 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11359 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11360 if (!SWIG_IsOK(res2
)) {
11361 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
11364 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
11366 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11367 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11368 if (!SWIG_IsOK(res3
)) {
11369 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "3"" of type '" "wxWindow *""'");
11371 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11372 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11373 if (!SWIG_IsOK(ecode4
)) {
11374 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "4"" of type '" "int""'");
11376 arg4
= static_cast< int >(val4
);
11377 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
11378 if (!SWIG_IsOK(ecode5
)) {
11379 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "5"" of type '" "int""'");
11381 arg5
= static_cast< int >(val5
);
11384 if ( ! wxRect_helper(obj5
, &arg6
)) SWIG_fail
;
11386 res7
= SWIG_ConvertPtr(obj6
, &argp7
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
11387 if (!SWIG_IsOK(res7
)) {
11388 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "7"" of type '" "wxAuiPaneInfo &""'");
11391 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "7"" of type '" "wxAuiPaneInfo &""'");
11393 arg7
= reinterpret_cast< wxAuiPaneInfo
* >(argp7
);
11395 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11396 (arg1
)->DrawPaneButton(*arg2
,arg3
,arg4
,arg5
,(wxRect
const &)*arg6
,*arg7
);
11397 wxPyEndAllowThreads(__tstate
);
11398 if (PyErr_Occurred()) SWIG_fail
;
11400 resultobj
= SWIG_Py_Void();
11407 SWIGINTERN PyObject
*AuiDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11409 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11410 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDockArt
, SWIG_NewClientData(obj
));
11411 return SWIG_Py_Void();
11414 SWIGINTERN PyObject
*_wrap_new_AuiDefaultDockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11415 PyObject
*resultobj
= 0;
11416 wxAuiDefaultDockArt
*result
= 0 ;
11418 if (!SWIG_Python_UnpackTuple(args
,"new_AuiDefaultDockArt",0,0,0)) SWIG_fail
;
11420 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11421 result
= (wxAuiDefaultDockArt
*)new wxAuiDefaultDockArt();
11422 wxPyEndAllowThreads(__tstate
);
11423 if (PyErr_Occurred()) SWIG_fail
;
11425 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDefaultDockArt
, SWIG_POINTER_NEW
| 0 );
11432 SWIGINTERN PyObject
*AuiDefaultDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11434 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11435 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDefaultDockArt
, SWIG_NewClientData(obj
));
11436 return SWIG_Py_Void();
11439 SWIGINTERN PyObject
*AuiDefaultDockArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11440 return SWIG_Python_InitShadowInstance(args
);
11443 SWIGINTERN PyObject
*_wrap_new_AuiFloatingFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11444 PyObject
*resultobj
= 0;
11445 wxWindow
*arg1
= (wxWindow
*) 0 ;
11446 wxAuiManager
*arg2
= (wxAuiManager
*) 0 ;
11447 wxAuiPaneInfo
*arg3
= 0 ;
11448 int arg4
= (int) wxID_ANY
;
11449 long arg5
= (long) wxRESIZE_BORDER
|wxSYSTEM_MENU
|wxCAPTION
|wxFRAME_NO_TASKBAR
|wxFRAME_FLOAT_ON_PARENT
|wxCLIP_CHILDREN
;
11450 wxAuiFloatingFrame
*result
= 0 ;
11461 PyObject
* obj0
= 0 ;
11462 PyObject
* obj1
= 0 ;
11463 PyObject
* obj2
= 0 ;
11464 PyObject
* obj3
= 0 ;
11465 PyObject
* obj4
= 0 ;
11466 char * kwnames
[] = {
11467 (char *) "parent",(char *) "owner_mgr",(char *) "pane",(char *) "id",(char *) "style", NULL
11470 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:new_AuiFloatingFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11471 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11472 if (!SWIG_IsOK(res1
)) {
11473 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiFloatingFrame" "', expected argument " "1"" of type '" "wxWindow *""'");
11475 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
11476 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
11477 if (!SWIG_IsOK(res2
)) {
11478 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_AuiFloatingFrame" "', expected argument " "2"" of type '" "wxAuiManager *""'");
11480 arg2
= reinterpret_cast< wxAuiManager
* >(argp2
);
11481 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
11482 if (!SWIG_IsOK(res3
)) {
11483 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_AuiFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
11486 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_AuiFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
11488 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
11490 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11491 if (!SWIG_IsOK(ecode4
)) {
11492 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_AuiFloatingFrame" "', expected argument " "4"" of type '" "int""'");
11494 arg4
= static_cast< int >(val4
);
11497 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
11498 if (!SWIG_IsOK(ecode5
)) {
11499 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiFloatingFrame" "', expected argument " "5"" of type '" "long""'");
11501 arg5
= static_cast< long >(val5
);
11504 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11505 result
= (wxAuiFloatingFrame
*)new wxAuiFloatingFrame(arg1
,arg2
,(wxAuiPaneInfo
const &)*arg3
,arg4
,arg5
);
11506 wxPyEndAllowThreads(__tstate
);
11507 if (PyErr_Occurred()) SWIG_fail
;
11509 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiFloatingFrame
, SWIG_POINTER_NEW
| 0 );
11516 SWIGINTERN PyObject
*_wrap_delete_AuiFloatingFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11517 PyObject
*resultobj
= 0;
11518 wxAuiFloatingFrame
*arg1
= (wxAuiFloatingFrame
*) 0 ;
11521 PyObject
*swig_obj
[1] ;
11523 if (!args
) SWIG_fail
;
11524 swig_obj
[0] = args
;
11525 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiFloatingFrame
, SWIG_POINTER_DISOWN
| 0 );
11526 if (!SWIG_IsOK(res1
)) {
11527 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiFloatingFrame" "', expected argument " "1"" of type '" "wxAuiFloatingFrame *""'");
11529 arg1
= reinterpret_cast< wxAuiFloatingFrame
* >(argp1
);
11531 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11534 wxPyEndAllowThreads(__tstate
);
11535 if (PyErr_Occurred()) SWIG_fail
;
11537 resultobj
= SWIG_Py_Void();
11544 SWIGINTERN PyObject
*_wrap_AuiFloatingFrame_SetPaneWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11545 PyObject
*resultobj
= 0;
11546 wxAuiFloatingFrame
*arg1
= (wxAuiFloatingFrame
*) 0 ;
11547 wxAuiPaneInfo
*arg2
= 0 ;
11552 PyObject
* obj0
= 0 ;
11553 PyObject
* obj1
= 0 ;
11554 char * kwnames
[] = {
11555 (char *) "self",(char *) "pane", NULL
11558 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiFloatingFrame_SetPaneWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11559 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiFloatingFrame
, 0 | 0 );
11560 if (!SWIG_IsOK(res1
)) {
11561 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiFloatingFrame_SetPaneWindow" "', expected argument " "1"" of type '" "wxAuiFloatingFrame *""'");
11563 arg1
= reinterpret_cast< wxAuiFloatingFrame
* >(argp1
);
11564 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
11565 if (!SWIG_IsOK(res2
)) {
11566 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiFloatingFrame_SetPaneWindow" "', expected argument " "2"" of type '" "wxAuiPaneInfo const &""'");
11569 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiFloatingFrame_SetPaneWindow" "', expected argument " "2"" of type '" "wxAuiPaneInfo const &""'");
11571 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
11573 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11574 (arg1
)->SetPaneWindow((wxAuiPaneInfo
const &)*arg2
);
11575 wxPyEndAllowThreads(__tstate
);
11576 if (PyErr_Occurred()) SWIG_fail
;
11578 resultobj
= SWIG_Py_Void();
11585 SWIGINTERN PyObject
*_wrap_AuiFloatingFrame_GetOwnerManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11586 PyObject
*resultobj
= 0;
11587 wxAuiFloatingFrame
*arg1
= (wxAuiFloatingFrame
*) 0 ;
11588 wxAuiManager
*result
= 0 ;
11591 PyObject
*swig_obj
[1] ;
11593 if (!args
) SWIG_fail
;
11594 swig_obj
[0] = args
;
11595 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiFloatingFrame
, 0 | 0 );
11596 if (!SWIG_IsOK(res1
)) {
11597 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiFloatingFrame_GetOwnerManager" "', expected argument " "1"" of type '" "wxAuiFloatingFrame const *""'");
11599 arg1
= reinterpret_cast< wxAuiFloatingFrame
* >(argp1
);
11601 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11602 result
= (wxAuiManager
*)((wxAuiFloatingFrame
const *)arg1
)->GetOwnerManager();
11603 wxPyEndAllowThreads(__tstate
);
11604 if (PyErr_Occurred()) SWIG_fail
;
11606 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 | 0 );
11613 SWIGINTERN PyObject
*AuiFloatingFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11615 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11616 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiFloatingFrame
, SWIG_NewClientData(obj
));
11617 return SWIG_Py_Void();
11620 SWIGINTERN PyObject
*AuiFloatingFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11621 return SWIG_Python_InitShadowInstance(args
);
11624 SWIGINTERN PyObject
*_wrap_new_AuiNotebookEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11625 PyObject
*resultobj
= 0;
11626 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
11627 int arg2
= (int) 0 ;
11628 wxAuiNotebookEvent
*result
= 0 ;
11633 PyObject
* obj0
= 0 ;
11634 PyObject
* obj1
= 0 ;
11635 char * kwnames
[] = {
11636 (char *) "command_type",(char *) "win_id", NULL
11639 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_AuiNotebookEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11641 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
11642 if (!SWIG_IsOK(ecode1
)) {
11643 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_AuiNotebookEvent" "', expected argument " "1"" of type '" "wxEventType""'");
11645 arg1
= static_cast< wxEventType
>(val1
);
11648 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11649 if (!SWIG_IsOK(ecode2
)) {
11650 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiNotebookEvent" "', expected argument " "2"" of type '" "int""'");
11652 arg2
= static_cast< int >(val2
);
11655 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11656 result
= (wxAuiNotebookEvent
*)new wxAuiNotebookEvent(arg1
,arg2
);
11657 wxPyEndAllowThreads(__tstate
);
11658 if (PyErr_Occurred()) SWIG_fail
;
11660 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookEvent
, SWIG_POINTER_NEW
| 0 );
11667 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11668 PyObject
*resultobj
= 0;
11669 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11675 PyObject
* obj0
= 0 ;
11676 PyObject
* obj1
= 0 ;
11677 char * kwnames
[] = {
11678 (char *) "self",(char *) "s", NULL
11681 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11682 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11683 if (!SWIG_IsOK(res1
)) {
11684 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11686 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11687 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11688 if (!SWIG_IsOK(ecode2
)) {
11689 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_SetSelection" "', expected argument " "2"" of type '" "int""'");
11691 arg2
= static_cast< int >(val2
);
11693 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11694 (arg1
)->SetSelection(arg2
);
11695 wxPyEndAllowThreads(__tstate
);
11696 if (PyErr_Occurred()) SWIG_fail
;
11698 resultobj
= SWIG_Py_Void();
11705 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11706 PyObject
*resultobj
= 0;
11707 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11711 PyObject
*swig_obj
[1] ;
11713 if (!args
) SWIG_fail
;
11714 swig_obj
[0] = args
;
11715 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11716 if (!SWIG_IsOK(res1
)) {
11717 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
11719 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11721 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11722 result
= (int)((wxAuiNotebookEvent
const *)arg1
)->GetSelection();
11723 wxPyEndAllowThreads(__tstate
);
11724 if (PyErr_Occurred()) SWIG_fail
;
11726 resultobj
= SWIG_From_int(static_cast< int >(result
));
11733 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetOldSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11734 PyObject
*resultobj
= 0;
11735 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11741 PyObject
* obj0
= 0 ;
11742 PyObject
* obj1
= 0 ;
11743 char * kwnames
[] = {
11744 (char *) "self",(char *) "s", NULL
11747 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetOldSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11748 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11749 if (!SWIG_IsOK(res1
)) {
11750 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetOldSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11752 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11753 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11754 if (!SWIG_IsOK(ecode2
)) {
11755 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_SetOldSelection" "', expected argument " "2"" of type '" "int""'");
11757 arg2
= static_cast< int >(val2
);
11759 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11760 (arg1
)->SetOldSelection(arg2
);
11761 wxPyEndAllowThreads(__tstate
);
11762 if (PyErr_Occurred()) SWIG_fail
;
11764 resultobj
= SWIG_Py_Void();
11771 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetOldSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11772 PyObject
*resultobj
= 0;
11773 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11777 PyObject
*swig_obj
[1] ;
11779 if (!args
) SWIG_fail
;
11780 swig_obj
[0] = args
;
11781 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11782 if (!SWIG_IsOK(res1
)) {
11783 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetOldSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
11785 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11787 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11788 result
= (int)((wxAuiNotebookEvent
const *)arg1
)->GetOldSelection();
11789 wxPyEndAllowThreads(__tstate
);
11790 if (PyErr_Occurred()) SWIG_fail
;
11792 resultobj
= SWIG_From_int(static_cast< int >(result
));
11799 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetDragSource(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11800 PyObject
*resultobj
= 0;
11801 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11802 wxAuiNotebook
*arg2
= (wxAuiNotebook
*) 0 ;
11807 PyObject
* obj0
= 0 ;
11808 PyObject
* obj1
= 0 ;
11809 char * kwnames
[] = {
11810 (char *) "self",(char *) "s", NULL
11813 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetDragSource",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11814 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11815 if (!SWIG_IsOK(res1
)) {
11816 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetDragSource" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11818 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11819 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
11820 if (!SWIG_IsOK(res2
)) {
11821 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookEvent_SetDragSource" "', expected argument " "2"" of type '" "wxAuiNotebook *""'");
11823 arg2
= reinterpret_cast< wxAuiNotebook
* >(argp2
);
11825 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11826 (arg1
)->SetDragSource(arg2
);
11827 wxPyEndAllowThreads(__tstate
);
11828 if (PyErr_Occurred()) SWIG_fail
;
11830 resultobj
= SWIG_Py_Void();
11837 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetDragSource(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11838 PyObject
*resultobj
= 0;
11839 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11840 wxAuiNotebook
*result
= 0 ;
11843 PyObject
*swig_obj
[1] ;
11845 if (!args
) SWIG_fail
;
11846 swig_obj
[0] = args
;
11847 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11848 if (!SWIG_IsOK(res1
)) {
11849 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetDragSource" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
11851 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11853 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11854 result
= (wxAuiNotebook
*)((wxAuiNotebookEvent
const *)arg1
)->GetDragSource();
11855 wxPyEndAllowThreads(__tstate
);
11856 if (PyErr_Occurred()) SWIG_fail
;
11858 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
11865 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_old_selection_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11866 PyObject
*resultobj
= 0;
11867 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11873 PyObject
*swig_obj
[2] ;
11875 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_old_selection_set",2,2,swig_obj
)) SWIG_fail
;
11876 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11877 if (!SWIG_IsOK(res1
)) {
11878 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_old_selection_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11880 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11881 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
11882 if (!SWIG_IsOK(ecode2
)) {
11883 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_old_selection_set" "', expected argument " "2"" of type '" "int""'");
11885 arg2
= static_cast< int >(val2
);
11886 if (arg1
) (arg1
)->old_selection
= arg2
;
11888 resultobj
= SWIG_Py_Void();
11895 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_old_selection_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11896 PyObject
*resultobj
= 0;
11897 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11901 PyObject
*swig_obj
[1] ;
11903 if (!args
) SWIG_fail
;
11904 swig_obj
[0] = args
;
11905 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11906 if (!SWIG_IsOK(res1
)) {
11907 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_old_selection_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11909 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11910 result
= (int) ((arg1
)->old_selection
);
11911 resultobj
= SWIG_From_int(static_cast< int >(result
));
11918 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_selection_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11919 PyObject
*resultobj
= 0;
11920 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11926 PyObject
*swig_obj
[2] ;
11928 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_selection_set",2,2,swig_obj
)) SWIG_fail
;
11929 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11930 if (!SWIG_IsOK(res1
)) {
11931 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_selection_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11933 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11934 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
11935 if (!SWIG_IsOK(ecode2
)) {
11936 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_selection_set" "', expected argument " "2"" of type '" "int""'");
11938 arg2
= static_cast< int >(val2
);
11939 if (arg1
) (arg1
)->selection
= arg2
;
11941 resultobj
= SWIG_Py_Void();
11948 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_selection_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11949 PyObject
*resultobj
= 0;
11950 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11954 PyObject
*swig_obj
[1] ;
11956 if (!args
) SWIG_fail
;
11957 swig_obj
[0] = args
;
11958 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11959 if (!SWIG_IsOK(res1
)) {
11960 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_selection_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11962 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11963 result
= (int) ((arg1
)->selection
);
11964 resultobj
= SWIG_From_int(static_cast< int >(result
));
11971 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_drag_source_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11972 PyObject
*resultobj
= 0;
11973 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11974 wxAuiNotebook
*arg2
= (wxAuiNotebook
*) 0 ;
11979 PyObject
*swig_obj
[2] ;
11981 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_drag_source_set",2,2,swig_obj
)) SWIG_fail
;
11982 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11983 if (!SWIG_IsOK(res1
)) {
11984 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_drag_source_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11986 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11987 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_DISOWN
| 0 );
11988 if (!SWIG_IsOK(res2
)) {
11989 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookEvent_drag_source_set" "', expected argument " "2"" of type '" "wxAuiNotebook *""'");
11991 arg2
= reinterpret_cast< wxAuiNotebook
* >(argp2
);
11992 if (arg1
) (arg1
)->drag_source
= arg2
;
11994 resultobj
= SWIG_Py_Void();
12001 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_drag_source_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12002 PyObject
*resultobj
= 0;
12003 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12004 wxAuiNotebook
*result
= 0 ;
12007 PyObject
*swig_obj
[1] ;
12009 if (!args
) SWIG_fail
;
12010 swig_obj
[0] = args
;
12011 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12012 if (!SWIG_IsOK(res1
)) {
12013 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_drag_source_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12015 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12016 result
= (wxAuiNotebook
*) ((arg1
)->drag_source
);
12017 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
12024 SWIGINTERN PyObject
*AuiNotebookEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12026 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12027 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebookEvent
, SWIG_NewClientData(obj
));
12028 return SWIG_Py_Void();
12031 SWIGINTERN PyObject
*AuiNotebookEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12032 return SWIG_Python_InitShadowInstance(args
);
12035 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_window_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12036 PyObject
*resultobj
= 0;
12037 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12038 wxWindow
*arg2
= (wxWindow
*) 0 ;
12043 PyObject
*swig_obj
[2] ;
12045 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_window_set",2,2,swig_obj
)) SWIG_fail
;
12046 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12047 if (!SWIG_IsOK(res1
)) {
12048 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_window_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12050 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12051 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN
| 0 );
12052 if (!SWIG_IsOK(res2
)) {
12053 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_window_set" "', expected argument " "2"" of type '" "wxWindow *""'");
12055 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12056 if (arg1
) (arg1
)->window
= arg2
;
12058 resultobj
= SWIG_Py_Void();
12065 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_window_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12066 PyObject
*resultobj
= 0;
12067 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12068 wxWindow
*result
= 0 ;
12071 PyObject
*swig_obj
[1] ;
12073 if (!args
) SWIG_fail
;
12074 swig_obj
[0] = args
;
12075 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12076 if (!SWIG_IsOK(res1
)) {
12077 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_window_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12079 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12080 result
= (wxWindow
*) ((arg1
)->window
);
12082 resultobj
= wxPyMake_wxObject(result
, 0);
12090 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_caption_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12091 PyObject
*resultobj
= 0;
12092 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12093 wxString
*arg2
= (wxString
*) 0 ;
12096 bool temp2
= false ;
12097 PyObject
*swig_obj
[2] ;
12099 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_caption_set",2,2,swig_obj
)) SWIG_fail
;
12100 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12101 if (!SWIG_IsOK(res1
)) {
12102 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_caption_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12104 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12106 arg2
= wxString_in_helper(swig_obj
[1]);
12107 if (arg2
== NULL
) SWIG_fail
;
12110 if (arg1
) (arg1
)->caption
= *arg2
;
12112 resultobj
= SWIG_Py_Void();
12127 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_caption_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12128 PyObject
*resultobj
= 0;
12129 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12130 wxString
*result
= 0 ;
12133 PyObject
*swig_obj
[1] ;
12135 if (!args
) SWIG_fail
;
12136 swig_obj
[0] = args
;
12137 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12138 if (!SWIG_IsOK(res1
)) {
12139 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_caption_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12141 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12142 result
= (wxString
*)& ((arg1
)->caption
);
12145 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
12147 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
12156 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12157 PyObject
*resultobj
= 0;
12158 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12159 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
12164 PyObject
*swig_obj
[2] ;
12166 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
12167 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12168 if (!SWIG_IsOK(res1
)) {
12169 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_bitmap_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12171 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12172 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
12173 if (!SWIG_IsOK(res2
)) {
12174 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
12176 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
12177 if (arg1
) (arg1
)->bitmap
= *arg2
;
12179 resultobj
= SWIG_Py_Void();
12186 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12187 PyObject
*resultobj
= 0;
12188 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12189 wxBitmap
*result
= 0 ;
12192 PyObject
*swig_obj
[1] ;
12194 if (!args
) SWIG_fail
;
12195 swig_obj
[0] = args
;
12196 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12197 if (!SWIG_IsOK(res1
)) {
12198 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_bitmap_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12200 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12201 result
= (wxBitmap
*)& ((arg1
)->bitmap
);
12202 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
12209 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12210 PyObject
*resultobj
= 0;
12211 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12212 wxRect
*arg2
= (wxRect
*) 0 ;
12217 PyObject
*swig_obj
[2] ;
12219 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_rect_set",2,2,swig_obj
)) SWIG_fail
;
12220 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12221 if (!SWIG_IsOK(res1
)) {
12222 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_rect_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12224 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12225 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
12226 if (!SWIG_IsOK(res2
)) {
12227 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
12229 arg2
= reinterpret_cast< wxRect
* >(argp2
);
12230 if (arg1
) (arg1
)->rect
= *arg2
;
12232 resultobj
= SWIG_Py_Void();
12239 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12240 PyObject
*resultobj
= 0;
12241 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12242 wxRect
*result
= 0 ;
12245 PyObject
*swig_obj
[1] ;
12247 if (!args
) SWIG_fail
;
12248 swig_obj
[0] = args
;
12249 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12250 if (!SWIG_IsOK(res1
)) {
12251 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_rect_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12253 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12254 result
= (wxRect
*)& ((arg1
)->rect
);
12255 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
12262 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_active_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12263 PyObject
*resultobj
= 0;
12264 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12270 PyObject
*swig_obj
[2] ;
12272 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_active_set",2,2,swig_obj
)) SWIG_fail
;
12273 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12274 if (!SWIG_IsOK(res1
)) {
12275 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_active_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12277 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12278 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
12279 if (!SWIG_IsOK(ecode2
)) {
12280 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookPage_active_set" "', expected argument " "2"" of type '" "bool""'");
12282 arg2
= static_cast< bool >(val2
);
12283 if (arg1
) (arg1
)->active
= arg2
;
12285 resultobj
= SWIG_Py_Void();
12292 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_active_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12293 PyObject
*resultobj
= 0;
12294 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12298 PyObject
*swig_obj
[1] ;
12300 if (!args
) SWIG_fail
;
12301 swig_obj
[0] = args
;
12302 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12303 if (!SWIG_IsOK(res1
)) {
12304 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_active_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12306 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12307 result
= (bool) ((arg1
)->active
);
12309 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12317 SWIGINTERN PyObject
*AuiNotebookPage_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12319 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12320 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebookPage
, SWIG_NewClientData(obj
));
12321 return SWIG_Py_Void();
12324 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_id_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12325 PyObject
*resultobj
= 0;
12326 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12332 PyObject
*swig_obj
[2] ;
12334 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_id_set",2,2,swig_obj
)) SWIG_fail
;
12335 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12336 if (!SWIG_IsOK(res1
)) {
12337 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_id_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12339 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12340 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12341 if (!SWIG_IsOK(ecode2
)) {
12342 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_id_set" "', expected argument " "2"" of type '" "int""'");
12344 arg2
= static_cast< int >(val2
);
12345 if (arg1
) (arg1
)->id
= arg2
;
12347 resultobj
= SWIG_Py_Void();
12354 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_id_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12355 PyObject
*resultobj
= 0;
12356 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12360 PyObject
*swig_obj
[1] ;
12362 if (!args
) SWIG_fail
;
12363 swig_obj
[0] = args
;
12364 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12365 if (!SWIG_IsOK(res1
)) {
12366 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_id_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12368 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12369 result
= (int) ((arg1
)->id
);
12370 resultobj
= SWIG_From_int(static_cast< int >(result
));
12377 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_cur_state_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12378 PyObject
*resultobj
= 0;
12379 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12385 PyObject
*swig_obj
[2] ;
12387 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_cur_state_set",2,2,swig_obj
)) SWIG_fail
;
12388 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12389 if (!SWIG_IsOK(res1
)) {
12390 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_cur_state_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12392 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12393 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12394 if (!SWIG_IsOK(ecode2
)) {
12395 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_cur_state_set" "', expected argument " "2"" of type '" "int""'");
12397 arg2
= static_cast< int >(val2
);
12398 if (arg1
) (arg1
)->cur_state
= arg2
;
12400 resultobj
= SWIG_Py_Void();
12407 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_cur_state_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12408 PyObject
*resultobj
= 0;
12409 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12413 PyObject
*swig_obj
[1] ;
12415 if (!args
) SWIG_fail
;
12416 swig_obj
[0] = args
;
12417 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12418 if (!SWIG_IsOK(res1
)) {
12419 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_cur_state_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12421 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12422 result
= (int) ((arg1
)->cur_state
);
12423 resultobj
= SWIG_From_int(static_cast< int >(result
));
12430 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_location_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12431 PyObject
*resultobj
= 0;
12432 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12438 PyObject
*swig_obj
[2] ;
12440 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_location_set",2,2,swig_obj
)) SWIG_fail
;
12441 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12442 if (!SWIG_IsOK(res1
)) {
12443 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_location_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12445 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12446 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12447 if (!SWIG_IsOK(ecode2
)) {
12448 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_location_set" "', expected argument " "2"" of type '" "int""'");
12450 arg2
= static_cast< int >(val2
);
12451 if (arg1
) (arg1
)->location
= arg2
;
12453 resultobj
= SWIG_Py_Void();
12460 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_location_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12461 PyObject
*resultobj
= 0;
12462 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12466 PyObject
*swig_obj
[1] ;
12468 if (!args
) SWIG_fail
;
12469 swig_obj
[0] = args
;
12470 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12471 if (!SWIG_IsOK(res1
)) {
12472 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_location_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12474 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12475 result
= (int) ((arg1
)->location
);
12476 resultobj
= SWIG_From_int(static_cast< int >(result
));
12483 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12484 PyObject
*resultobj
= 0;
12485 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12486 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
12491 PyObject
*swig_obj
[2] ;
12493 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
12494 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12495 if (!SWIG_IsOK(res1
)) {
12496 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_bitmap_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12498 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12499 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
12500 if (!SWIG_IsOK(res2
)) {
12501 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
12503 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
12504 if (arg1
) (arg1
)->bitmap
= *arg2
;
12506 resultobj
= SWIG_Py_Void();
12513 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12514 PyObject
*resultobj
= 0;
12515 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12516 wxBitmap
*result
= 0 ;
12519 PyObject
*swig_obj
[1] ;
12521 if (!args
) SWIG_fail
;
12522 swig_obj
[0] = args
;
12523 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12524 if (!SWIG_IsOK(res1
)) {
12525 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_bitmap_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12527 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12528 result
= (wxBitmap
*)& ((arg1
)->bitmap
);
12529 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
12536 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_dis_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12537 PyObject
*resultobj
= 0;
12538 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12539 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
12544 PyObject
*swig_obj
[2] ;
12546 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_dis_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
12547 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12548 if (!SWIG_IsOK(res1
)) {
12549 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_dis_bitmap_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12551 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12552 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
12553 if (!SWIG_IsOK(res2
)) {
12554 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_dis_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
12556 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
12557 if (arg1
) (arg1
)->dis_bitmap
= *arg2
;
12559 resultobj
= SWIG_Py_Void();
12566 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_dis_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12567 PyObject
*resultobj
= 0;
12568 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12569 wxBitmap
*result
= 0 ;
12572 PyObject
*swig_obj
[1] ;
12574 if (!args
) SWIG_fail
;
12575 swig_obj
[0] = args
;
12576 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12577 if (!SWIG_IsOK(res1
)) {
12578 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_dis_bitmap_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12580 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12581 result
= (wxBitmap
*)& ((arg1
)->dis_bitmap
);
12582 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
12589 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12590 PyObject
*resultobj
= 0;
12591 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12592 wxRect
*arg2
= (wxRect
*) 0 ;
12597 PyObject
*swig_obj
[2] ;
12599 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_rect_set",2,2,swig_obj
)) SWIG_fail
;
12600 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12601 if (!SWIG_IsOK(res1
)) {
12602 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_rect_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12604 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12605 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
12606 if (!SWIG_IsOK(res2
)) {
12607 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
12609 arg2
= reinterpret_cast< wxRect
* >(argp2
);
12610 if (arg1
) (arg1
)->rect
= *arg2
;
12612 resultobj
= SWIG_Py_Void();
12619 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12620 PyObject
*resultobj
= 0;
12621 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12622 wxRect
*result
= 0 ;
12625 PyObject
*swig_obj
[1] ;
12627 if (!args
) SWIG_fail
;
12628 swig_obj
[0] = args
;
12629 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12630 if (!SWIG_IsOK(res1
)) {
12631 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_rect_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12633 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12634 result
= (wxRect
*)& ((arg1
)->rect
);
12635 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
12642 SWIGINTERN PyObject
*AuiTabContainerButton_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12644 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12645 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabContainerButton
, SWIG_NewClientData(obj
));
12646 return SWIG_Py_Void();
12649 SWIGINTERN PyObject
*_wrap_delete_AuiTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12650 PyObject
*resultobj
= 0;
12651 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12654 PyObject
*swig_obj
[1] ;
12656 if (!args
) SWIG_fail
;
12657 swig_obj
[0] = args
;
12658 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabArt
, SWIG_POINTER_DISOWN
| 0 );
12659 if (!SWIG_IsOK(res1
)) {
12660 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabArt" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12662 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12664 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12667 wxPyEndAllowThreads(__tstate
);
12668 if (PyErr_Occurred()) SWIG_fail
;
12670 resultobj
= SWIG_Py_Void();
12677 SWIGINTERN PyObject
*_wrap_AuiTabArt_Clone(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12678 PyObject
*resultobj
= 0;
12679 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12680 wxAuiTabArt
*result
= 0 ;
12683 PyObject
*swig_obj
[1] ;
12685 if (!args
) SWIG_fail
;
12686 swig_obj
[0] = args
;
12687 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12688 if (!SWIG_IsOK(res1
)) {
12689 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_Clone" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12691 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12693 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12694 result
= (wxAuiTabArt
*)(arg1
)->Clone();
12695 wxPyEndAllowThreads(__tstate
);
12696 if (PyErr_Occurred()) SWIG_fail
;
12698 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12705 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12706 PyObject
*resultobj
= 0;
12707 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12713 PyObject
* obj0
= 0 ;
12714 PyObject
* obj1
= 0 ;
12715 char * kwnames
[] = {
12716 (char *) "self",(char *) "flags", NULL
12719 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12720 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12721 if (!SWIG_IsOK(res1
)) {
12722 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetFlags" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12724 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12725 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12726 if (!SWIG_IsOK(ecode2
)) {
12727 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabArt_SetFlags" "', expected argument " "2"" of type '" "int""'");
12729 arg2
= static_cast< int >(val2
);
12731 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12732 (arg1
)->SetFlags(arg2
);
12733 wxPyEndAllowThreads(__tstate
);
12734 if (PyErr_Occurred()) SWIG_fail
;
12736 resultobj
= SWIG_Py_Void();
12743 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetSizingInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12744 PyObject
*resultobj
= 0;
12745 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12753 PyObject
* obj0
= 0 ;
12754 PyObject
* obj1
= 0 ;
12755 PyObject
* obj2
= 0 ;
12756 char * kwnames
[] = {
12757 (char *) "self",(char *) "tab_ctrl_size",(char *) "tab_count", NULL
12760 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabArt_SetSizingInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12761 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12762 if (!SWIG_IsOK(res1
)) {
12763 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetSizingInfo" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12765 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12768 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
12770 ecode3
= SWIG_AsVal_size_t(obj2
, &val3
);
12771 if (!SWIG_IsOK(ecode3
)) {
12772 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabArt_SetSizingInfo" "', expected argument " "3"" of type '" "size_t""'");
12774 arg3
= static_cast< size_t >(val3
);
12776 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12777 (arg1
)->SetSizingInfo((wxSize
const &)*arg2
,arg3
);
12778 wxPyEndAllowThreads(__tstate
);
12779 if (PyErr_Occurred()) SWIG_fail
;
12781 resultobj
= SWIG_Py_Void();
12788 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetNormalFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12789 PyObject
*resultobj
= 0;
12790 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12796 PyObject
* obj0
= 0 ;
12797 PyObject
* obj1
= 0 ;
12798 char * kwnames
[] = {
12799 (char *) "self",(char *) "font", NULL
12802 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetNormalFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12803 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12804 if (!SWIG_IsOK(res1
)) {
12805 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetNormalFont" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12807 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12808 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
12809 if (!SWIG_IsOK(res2
)) {
12810 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12813 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12815 arg2
= reinterpret_cast< wxFont
* >(argp2
);
12817 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12818 (arg1
)->SetNormalFont((wxFont
const &)*arg2
);
12819 wxPyEndAllowThreads(__tstate
);
12820 if (PyErr_Occurred()) SWIG_fail
;
12822 resultobj
= SWIG_Py_Void();
12829 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetSelectedFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12830 PyObject
*resultobj
= 0;
12831 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12837 PyObject
* obj0
= 0 ;
12838 PyObject
* obj1
= 0 ;
12839 char * kwnames
[] = {
12840 (char *) "self",(char *) "font", NULL
12843 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetSelectedFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12844 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12845 if (!SWIG_IsOK(res1
)) {
12846 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetSelectedFont" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12848 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12849 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
12850 if (!SWIG_IsOK(res2
)) {
12851 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12854 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12856 arg2
= reinterpret_cast< wxFont
* >(argp2
);
12858 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12859 (arg1
)->SetSelectedFont((wxFont
const &)*arg2
);
12860 wxPyEndAllowThreads(__tstate
);
12861 if (PyErr_Occurred()) SWIG_fail
;
12863 resultobj
= SWIG_Py_Void();
12870 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetMeasuringFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12871 PyObject
*resultobj
= 0;
12872 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12878 PyObject
* obj0
= 0 ;
12879 PyObject
* obj1
= 0 ;
12880 char * kwnames
[] = {
12881 (char *) "self",(char *) "font", NULL
12884 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetMeasuringFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12885 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12886 if (!SWIG_IsOK(res1
)) {
12887 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetMeasuringFont" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12889 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12890 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
12891 if (!SWIG_IsOK(res2
)) {
12892 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12895 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12897 arg2
= reinterpret_cast< wxFont
* >(argp2
);
12899 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12900 (arg1
)->SetMeasuringFont((wxFont
const &)*arg2
);
12901 wxPyEndAllowThreads(__tstate
);
12902 if (PyErr_Occurred()) SWIG_fail
;
12904 resultobj
= SWIG_Py_Void();
12911 SWIGINTERN PyObject
*_wrap_AuiTabArt_DrawBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12912 PyObject
*resultobj
= 0;
12913 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12915 wxWindow
*arg3
= (wxWindow
*) 0 ;
12924 PyObject
* obj0
= 0 ;
12925 PyObject
* obj1
= 0 ;
12926 PyObject
* obj2
= 0 ;
12927 PyObject
* obj3
= 0 ;
12928 char * kwnames
[] = {
12929 (char *) "self",(char *) "dc",(char *) "wnd",(char *) "rect", NULL
12932 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabArt_DrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
12933 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12934 if (!SWIG_IsOK(res1
)) {
12935 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_DrawBackground" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12937 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12938 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
12939 if (!SWIG_IsOK(res2
)) {
12940 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
12943 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
12945 arg2
= reinterpret_cast< wxDC
* >(argp2
);
12946 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12947 if (!SWIG_IsOK(res3
)) {
12948 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_DrawBackground" "', expected argument " "3"" of type '" "wxWindow *""'");
12950 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
12953 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
12956 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12957 (arg1
)->DrawBackground(*arg2
,arg3
,(wxRect
const &)*arg4
);
12958 wxPyEndAllowThreads(__tstate
);
12959 if (PyErr_Occurred()) SWIG_fail
;
12961 resultobj
= SWIG_Py_Void();
12968 SWIGINTERN PyObject
*_wrap_AuiTabArt_DrawTab(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12969 PyObject
*resultobj
= 0;
12970 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12972 wxWindow
*arg3
= (wxWindow
*) 0 ;
12974 wxString
*arg5
= 0 ;
12975 wxBitmap
*arg6
= 0 ;
12978 wxRect
*arg9
= (wxRect
*) 0 ;
12979 wxRect
*arg10
= (wxRect
*) 0 ;
12980 int *arg11
= (int *) 0 ;
12988 bool temp5
= false ;
13001 PyObject
* obj0
= 0 ;
13002 PyObject
* obj1
= 0 ;
13003 PyObject
* obj2
= 0 ;
13004 PyObject
* obj3
= 0 ;
13005 PyObject
* obj4
= 0 ;
13006 PyObject
* obj5
= 0 ;
13007 PyObject
* obj6
= 0 ;
13008 PyObject
* obj7
= 0 ;
13009 PyObject
* obj8
= 0 ;
13010 PyObject
* obj9
= 0 ;
13011 PyObject
* obj10
= 0 ;
13012 char * kwnames
[] = {
13013 (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
13016 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOOOOO:AuiTabArt_DrawTab",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
,&obj10
)) SWIG_fail
;
13017 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13018 if (!SWIG_IsOK(res1
)) {
13019 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13021 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13022 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
13023 if (!SWIG_IsOK(res2
)) {
13024 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "2"" of type '" "wxDC &""'");
13027 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawTab" "', expected argument " "2"" of type '" "wxDC &""'");
13029 arg2
= reinterpret_cast< wxDC
* >(argp2
);
13030 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13031 if (!SWIG_IsOK(res3
)) {
13032 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "3"" of type '" "wxWindow *""'");
13034 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
13037 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
13040 arg5
= wxString_in_helper(obj4
);
13041 if (arg5
== NULL
) SWIG_fail
;
13044 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxBitmap
, 0 | 0);
13045 if (!SWIG_IsOK(res6
)) {
13046 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "6"" of type '" "wxBitmap const &""'");
13049 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawTab" "', expected argument " "6"" of type '" "wxBitmap const &""'");
13051 arg6
= reinterpret_cast< wxBitmap
* >(argp6
);
13052 ecode7
= SWIG_AsVal_bool(obj6
, &val7
);
13053 if (!SWIG_IsOK(ecode7
)) {
13054 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "7"" of type '" "bool""'");
13056 arg7
= static_cast< bool >(val7
);
13057 ecode8
= SWIG_AsVal_int(obj7
, &val8
);
13058 if (!SWIG_IsOK(ecode8
)) {
13059 SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "8"" of type '" "int""'");
13061 arg8
= static_cast< int >(val8
);
13062 res9
= SWIG_ConvertPtr(obj8
, &argp9
,SWIGTYPE_p_wxRect
, 0 | 0 );
13063 if (!SWIG_IsOK(res9
)) {
13064 SWIG_exception_fail(SWIG_ArgError(res9
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "9"" of type '" "wxRect *""'");
13066 arg9
= reinterpret_cast< wxRect
* >(argp9
);
13067 res10
= SWIG_ConvertPtr(obj9
, &argp10
,SWIGTYPE_p_wxRect
, 0 | 0 );
13068 if (!SWIG_IsOK(res10
)) {
13069 SWIG_exception_fail(SWIG_ArgError(res10
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "10"" of type '" "wxRect *""'");
13071 arg10
= reinterpret_cast< wxRect
* >(argp10
);
13072 res11
= SWIG_ConvertPtr(obj10
, &argp11
,SWIGTYPE_p_int
, 0 | 0 );
13073 if (!SWIG_IsOK(res11
)) {
13074 SWIG_exception_fail(SWIG_ArgError(res11
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "11"" of type '" "int *""'");
13076 arg11
= reinterpret_cast< int * >(argp11
);
13078 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13079 (arg1
)->DrawTab(*arg2
,arg3
,(wxRect
const &)*arg4
,(wxString
const &)*arg5
,(wxBitmap
const &)*arg6
,arg7
,arg8
,arg9
,arg10
,arg11
);
13080 wxPyEndAllowThreads(__tstate
);
13081 if (PyErr_Occurred()) SWIG_fail
;
13083 resultobj
= SWIG_Py_Void();
13098 SWIGINTERN PyObject
*_wrap_AuiTabArt_DrawButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13099 PyObject
*resultobj
= 0;
13100 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13102 wxWindow
*arg3
= (wxWindow
*) 0 ;
13107 wxBitmap
*arg8
= 0 ;
13108 wxRect
*arg9
= (wxRect
*) 0 ;
13126 PyObject
* obj0
= 0 ;
13127 PyObject
* obj1
= 0 ;
13128 PyObject
* obj2
= 0 ;
13129 PyObject
* obj3
= 0 ;
13130 PyObject
* obj4
= 0 ;
13131 PyObject
* obj5
= 0 ;
13132 PyObject
* obj6
= 0 ;
13133 PyObject
* obj7
= 0 ;
13134 PyObject
* obj8
= 0 ;
13135 char * kwnames
[] = {
13136 (char *) "self",(char *) "dc",(char *) "wnd",(char *) "in_rect",(char *) "bitmap_id",(char *) "button_state",(char *) "orientation",(char *) "bitmap_override",(char *) "out_rect", NULL
13139 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOOO:AuiTabArt_DrawButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) SWIG_fail
;
13140 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13141 if (!SWIG_IsOK(res1
)) {
13142 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13144 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13145 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
13146 if (!SWIG_IsOK(res2
)) {
13147 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "2"" of type '" "wxDC &""'");
13150 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawButton" "', expected argument " "2"" of type '" "wxDC &""'");
13152 arg2
= reinterpret_cast< wxDC
* >(argp2
);
13153 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13154 if (!SWIG_IsOK(res3
)) {
13155 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "3"" of type '" "wxWindow *""'");
13157 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
13160 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
13162 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
13163 if (!SWIG_IsOK(ecode5
)) {
13164 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "5"" of type '" "int""'");
13166 arg5
= static_cast< int >(val5
);
13167 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
13168 if (!SWIG_IsOK(ecode6
)) {
13169 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "6"" of type '" "int""'");
13171 arg6
= static_cast< int >(val6
);
13172 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
13173 if (!SWIG_IsOK(ecode7
)) {
13174 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "7"" of type '" "int""'");
13176 arg7
= static_cast< int >(val7
);
13177 res8
= SWIG_ConvertPtr(obj7
, &argp8
, SWIGTYPE_p_wxBitmap
, 0 | 0);
13178 if (!SWIG_IsOK(res8
)) {
13179 SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "8"" of type '" "wxBitmap const &""'");
13182 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawButton" "', expected argument " "8"" of type '" "wxBitmap const &""'");
13184 arg8
= reinterpret_cast< wxBitmap
* >(argp8
);
13185 res9
= SWIG_ConvertPtr(obj8
, &argp9
,SWIGTYPE_p_wxRect
, 0 | 0 );
13186 if (!SWIG_IsOK(res9
)) {
13187 SWIG_exception_fail(SWIG_ArgError(res9
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "9"" of type '" "wxRect *""'");
13189 arg9
= reinterpret_cast< wxRect
* >(argp9
);
13191 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13192 (arg1
)->DrawButton(*arg2
,arg3
,(wxRect
const &)*arg4
,arg5
,arg6
,arg7
,(wxBitmap
const &)*arg8
,arg9
);
13193 wxPyEndAllowThreads(__tstate
);
13194 if (PyErr_Occurred()) SWIG_fail
;
13196 resultobj
= SWIG_Py_Void();
13203 SWIGINTERN PyObject
*_wrap_AuiTabArt_GetIndentSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13204 PyObject
*resultobj
= 0;
13205 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13209 PyObject
*swig_obj
[1] ;
13211 if (!args
) SWIG_fail
;
13212 swig_obj
[0] = args
;
13213 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13214 if (!SWIG_IsOK(res1
)) {
13215 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_GetIndentSize" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13217 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13219 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13220 result
= (int)(arg1
)->GetIndentSize();
13221 wxPyEndAllowThreads(__tstate
);
13222 if (PyErr_Occurred()) SWIG_fail
;
13224 resultobj
= SWIG_From_int(static_cast< int >(result
));
13231 SWIGINTERN PyObject
*_wrap_AuiTabArt_GetTabSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13232 PyObject
*resultobj
= 0;
13233 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13235 wxWindow
*arg3
= (wxWindow
*) 0 ;
13236 wxString
*arg4
= 0 ;
13237 wxBitmap
*arg5
= 0 ;
13240 int *arg8
= (int *) 0 ;
13248 bool temp4
= false ;
13257 PyObject
* obj0
= 0 ;
13258 PyObject
* obj1
= 0 ;
13259 PyObject
* obj2
= 0 ;
13260 PyObject
* obj3
= 0 ;
13261 PyObject
* obj4
= 0 ;
13262 PyObject
* obj5
= 0 ;
13263 PyObject
* obj6
= 0 ;
13264 PyObject
* obj7
= 0 ;
13265 char * kwnames
[] = {
13266 (char *) "self",(char *) "dc",(char *) "wnd",(char *) "caption",(char *) "bitmap",(char *) "active",(char *) "close_button_state",(char *) "x_extent", NULL
13269 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOO:AuiTabArt_GetTabSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
13270 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13271 if (!SWIG_IsOK(res1
)) {
13272 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13274 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13275 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
13276 if (!SWIG_IsOK(res2
)) {
13277 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "2"" of type '" "wxDC &""'");
13280 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_GetTabSize" "', expected argument " "2"" of type '" "wxDC &""'");
13282 arg2
= reinterpret_cast< wxDC
* >(argp2
);
13283 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13284 if (!SWIG_IsOK(res3
)) {
13285 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "3"" of type '" "wxWindow *""'");
13287 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
13289 arg4
= wxString_in_helper(obj3
);
13290 if (arg4
== NULL
) SWIG_fail
;
13293 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
, 0 | 0);
13294 if (!SWIG_IsOK(res5
)) {
13295 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "5"" of type '" "wxBitmap const &""'");
13298 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_GetTabSize" "', expected argument " "5"" of type '" "wxBitmap const &""'");
13300 arg5
= reinterpret_cast< wxBitmap
* >(argp5
);
13301 ecode6
= SWIG_AsVal_bool(obj5
, &val6
);
13302 if (!SWIG_IsOK(ecode6
)) {
13303 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "6"" of type '" "bool""'");
13305 arg6
= static_cast< bool >(val6
);
13306 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
13307 if (!SWIG_IsOK(ecode7
)) {
13308 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "7"" of type '" "int""'");
13310 arg7
= static_cast< int >(val7
);
13311 res8
= SWIG_ConvertPtr(obj7
, &argp8
,SWIGTYPE_p_int
, 0 | 0 );
13312 if (!SWIG_IsOK(res8
)) {
13313 SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "8"" of type '" "int *""'");
13315 arg8
= reinterpret_cast< int * >(argp8
);
13317 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13318 result
= (arg1
)->GetTabSize(*arg2
,arg3
,(wxString
const &)*arg4
,(wxBitmap
const &)*arg5
,arg6
,arg7
,arg8
);
13319 wxPyEndAllowThreads(__tstate
);
13320 if (PyErr_Occurred()) SWIG_fail
;
13322 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
13337 SWIGINTERN PyObject
*_wrap_AuiTabArt_ShowWindowList(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13338 PyObject
*resultobj
= 0;
13339 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13340 wxWindow
*arg2
= (wxWindow
*) 0 ;
13341 wxArrayString
*arg3
= 0 ;
13348 bool temp3
= false ;
13351 PyObject
* obj0
= 0 ;
13352 PyObject
* obj1
= 0 ;
13353 PyObject
* obj2
= 0 ;
13354 PyObject
* obj3
= 0 ;
13355 char * kwnames
[] = {
13356 (char *) "self",(char *) "wnd",(char *) "items",(char *) "active_idx", NULL
13359 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabArt_ShowWindowList",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13360 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13361 if (!SWIG_IsOK(res1
)) {
13362 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_ShowWindowList" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13364 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13365 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13366 if (!SWIG_IsOK(res2
)) {
13367 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_ShowWindowList" "', expected argument " "2"" of type '" "wxWindow *""'");
13369 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13371 if (! PySequence_Check(obj2
)) {
13372 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
13375 arg3
= new wxArrayString
;
13377 int i
, len
=PySequence_Length(obj2
);
13378 for (i
=0; i
<len
; i
++) {
13379 PyObject
* item
= PySequence_GetItem(obj2
, i
);
13380 wxString
* s
= wxString_in_helper(item
);
13381 if (PyErr_Occurred()) SWIG_fail
;
13387 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
13388 if (!SWIG_IsOK(ecode4
)) {
13389 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiTabArt_ShowWindowList" "', expected argument " "4"" of type '" "int""'");
13391 arg4
= static_cast< int >(val4
);
13393 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13394 result
= (int)(arg1
)->ShowWindowList(arg2
,(wxArrayString
const &)*arg3
,arg4
);
13395 wxPyEndAllowThreads(__tstate
);
13396 if (PyErr_Occurred()) SWIG_fail
;
13398 resultobj
= SWIG_From_int(static_cast< int >(result
));
13400 if (temp3
) delete arg3
;
13405 if (temp3
) delete arg3
;
13411 SWIGINTERN PyObject
*_wrap_AuiTabArt_GetBestTabCtrlSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13412 PyObject
*resultobj
= 0;
13413 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13414 wxWindow
*arg2
= (wxWindow
*) 0 ;
13415 wxAuiNotebookPageArray
*arg3
= 0 ;
13425 PyObject
* obj0
= 0 ;
13426 PyObject
* obj1
= 0 ;
13427 PyObject
* obj2
= 0 ;
13428 PyObject
* obj3
= 0 ;
13429 char * kwnames
[] = {
13430 (char *) "self",(char *) "wnd",(char *) "pages",(char *) "required_bmp_size", NULL
13433 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabArt_GetBestTabCtrlSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13434 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13435 if (!SWIG_IsOK(res1
)) {
13436 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13438 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13439 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13440 if (!SWIG_IsOK(res2
)) {
13441 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "2"" of type '" "wxWindow *""'");
13443 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13444 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPageArray
, 0 );
13445 if (!SWIG_IsOK(res3
)) {
13446 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "3"" of type '" "wxAuiNotebookPageArray &""'");
13449 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "3"" of type '" "wxAuiNotebookPageArray &""'");
13451 arg3
= reinterpret_cast< wxAuiNotebookPageArray
* >(argp3
);
13454 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
13457 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13458 result
= (int)(arg1
)->GetBestTabCtrlSize(arg2
,*arg3
,(wxSize
const &)*arg4
);
13459 wxPyEndAllowThreads(__tstate
);
13460 if (PyErr_Occurred()) SWIG_fail
;
13462 resultobj
= SWIG_From_int(static_cast< int >(result
));
13469 SWIGINTERN PyObject
*AuiTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13471 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13472 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabArt
, SWIG_NewClientData(obj
));
13473 return SWIG_Py_Void();
13476 SWIGINTERN PyObject
*_wrap_new_AuiDefaultTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13477 PyObject
*resultobj
= 0;
13478 wxAuiDefaultTabArt
*result
= 0 ;
13480 if (!SWIG_Python_UnpackTuple(args
,"new_AuiDefaultTabArt",0,0,0)) SWIG_fail
;
13482 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13483 result
= (wxAuiDefaultTabArt
*)new wxAuiDefaultTabArt();
13484 wxPyEndAllowThreads(__tstate
);
13485 if (PyErr_Occurred()) SWIG_fail
;
13487 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDefaultTabArt
, SWIG_POINTER_NEW
| 0 );
13494 SWIGINTERN PyObject
*_wrap_delete_AuiDefaultTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13495 PyObject
*resultobj
= 0;
13496 wxAuiDefaultTabArt
*arg1
= (wxAuiDefaultTabArt
*) 0 ;
13499 PyObject
*swig_obj
[1] ;
13501 if (!args
) SWIG_fail
;
13502 swig_obj
[0] = args
;
13503 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDefaultTabArt
, SWIG_POINTER_DISOWN
| 0 );
13504 if (!SWIG_IsOK(res1
)) {
13505 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDefaultTabArt" "', expected argument " "1"" of type '" "wxAuiDefaultTabArt *""'");
13507 arg1
= reinterpret_cast< wxAuiDefaultTabArt
* >(argp1
);
13509 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13512 wxPyEndAllowThreads(__tstate
);
13513 if (PyErr_Occurred()) SWIG_fail
;
13515 resultobj
= SWIG_Py_Void();
13522 SWIGINTERN PyObject
*AuiDefaultTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13524 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13525 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDefaultTabArt
, SWIG_NewClientData(obj
));
13526 return SWIG_Py_Void();
13529 SWIGINTERN PyObject
*AuiDefaultTabArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13530 return SWIG_Python_InitShadowInstance(args
);
13533 SWIGINTERN PyObject
*_wrap_new_AuiSimpleTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13534 PyObject
*resultobj
= 0;
13535 wxAuiSimpleTabArt
*result
= 0 ;
13537 if (!SWIG_Python_UnpackTuple(args
,"new_AuiSimpleTabArt",0,0,0)) SWIG_fail
;
13539 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13540 result
= (wxAuiSimpleTabArt
*)new wxAuiSimpleTabArt();
13541 wxPyEndAllowThreads(__tstate
);
13542 if (PyErr_Occurred()) SWIG_fail
;
13544 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiSimpleTabArt
, SWIG_POINTER_NEW
| 0 );
13551 SWIGINTERN PyObject
*_wrap_delete_AuiSimpleTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13552 PyObject
*resultobj
= 0;
13553 wxAuiSimpleTabArt
*arg1
= (wxAuiSimpleTabArt
*) 0 ;
13556 PyObject
*swig_obj
[1] ;
13558 if (!args
) SWIG_fail
;
13559 swig_obj
[0] = args
;
13560 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiSimpleTabArt
, SWIG_POINTER_DISOWN
| 0 );
13561 if (!SWIG_IsOK(res1
)) {
13562 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiSimpleTabArt" "', expected argument " "1"" of type '" "wxAuiSimpleTabArt *""'");
13564 arg1
= reinterpret_cast< wxAuiSimpleTabArt
* >(argp1
);
13566 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13569 wxPyEndAllowThreads(__tstate
);
13570 if (PyErr_Occurred()) SWIG_fail
;
13572 resultobj
= SWIG_Py_Void();
13579 SWIGINTERN PyObject
*AuiSimpleTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13581 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13582 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiSimpleTabArt
, SWIG_NewClientData(obj
));
13583 return SWIG_Py_Void();
13586 SWIGINTERN PyObject
*AuiSimpleTabArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13587 return SWIG_Python_InitShadowInstance(args
);
13590 SWIGINTERN PyObject
*_wrap_new_AuiTabContainer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13591 PyObject
*resultobj
= 0;
13592 wxAuiTabContainer
*result
= 0 ;
13594 if (!SWIG_Python_UnpackTuple(args
,"new_AuiTabContainer",0,0,0)) SWIG_fail
;
13596 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13597 result
= (wxAuiTabContainer
*)new wxAuiTabContainer();
13598 wxPyEndAllowThreads(__tstate
);
13599 if (PyErr_Occurred()) SWIG_fail
;
13601 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabContainer
, SWIG_POINTER_NEW
| 0 );
13608 SWIGINTERN PyObject
*_wrap_delete_AuiTabContainer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13609 PyObject
*resultobj
= 0;
13610 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13613 PyObject
*swig_obj
[1] ;
13615 if (!args
) SWIG_fail
;
13616 swig_obj
[0] = args
;
13617 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, SWIG_POINTER_DISOWN
| 0 );
13618 if (!SWIG_IsOK(res1
)) {
13619 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabContainer" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13621 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13623 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13626 wxPyEndAllowThreads(__tstate
);
13627 if (PyErr_Occurred()) SWIG_fail
;
13629 resultobj
= SWIG_Py_Void();
13636 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13637 PyObject
*resultobj
= 0;
13638 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13639 wxAuiTabArt
*arg2
= (wxAuiTabArt
*) 0 ;
13644 PyObject
* obj0
= 0 ;
13645 PyObject
* obj1
= 0 ;
13646 char * kwnames
[] = {
13647 (char *) "self",(char *) "art", NULL
13650 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13651 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13652 if (!SWIG_IsOK(res1
)) {
13653 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13655 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13656 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13657 if (!SWIG_IsOK(res2
)) {
13658 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiTabArt *""'");
13660 arg2
= reinterpret_cast< wxAuiTabArt
* >(argp2
);
13662 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13663 (arg1
)->SetArtProvider(arg2
);
13664 wxPyEndAllowThreads(__tstate
);
13665 if (PyErr_Occurred()) SWIG_fail
;
13667 resultobj
= SWIG_Py_Void();
13674 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13675 PyObject
*resultobj
= 0;
13676 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13677 wxAuiTabArt
*result
= 0 ;
13680 PyObject
*swig_obj
[1] ;
13682 if (!args
) SWIG_fail
;
13683 swig_obj
[0] = args
;
13684 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13685 if (!SWIG_IsOK(res1
)) {
13686 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13688 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13690 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13691 result
= (wxAuiTabArt
*)((wxAuiTabContainer
const *)arg1
)->GetArtProvider();
13692 wxPyEndAllowThreads(__tstate
);
13693 if (PyErr_Occurred()) SWIG_fail
;
13695 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13702 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13703 PyObject
*resultobj
= 0;
13704 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13710 PyObject
* obj0
= 0 ;
13711 PyObject
* obj1
= 0 ;
13712 char * kwnames
[] = {
13713 (char *) "self",(char *) "flags", NULL
13716 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13717 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13718 if (!SWIG_IsOK(res1
)) {
13719 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetFlags" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13721 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13722 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13723 if (!SWIG_IsOK(ecode2
)) {
13724 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetFlags" "', expected argument " "2"" of type '" "int""'");
13726 arg2
= static_cast< int >(val2
);
13728 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13729 (arg1
)->SetFlags(arg2
);
13730 wxPyEndAllowThreads(__tstate
);
13731 if (PyErr_Occurred()) SWIG_fail
;
13733 resultobj
= SWIG_Py_Void();
13740 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13741 PyObject
*resultobj
= 0;
13742 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13746 PyObject
*swig_obj
[1] ;
13748 if (!args
) SWIG_fail
;
13749 swig_obj
[0] = args
;
13750 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13751 if (!SWIG_IsOK(res1
)) {
13752 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetFlags" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13754 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13756 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13757 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetFlags();
13758 wxPyEndAllowThreads(__tstate
);
13759 if (PyErr_Occurred()) SWIG_fail
;
13761 resultobj
= SWIG_From_int(static_cast< int >(result
));
13768 SWIGINTERN PyObject
*_wrap_AuiTabContainer_AddPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13769 PyObject
*resultobj
= 0;
13770 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13771 wxWindow
*arg2
= (wxWindow
*) 0 ;
13772 wxAuiNotebookPage
*arg3
= 0 ;
13780 PyObject
* obj0
= 0 ;
13781 PyObject
* obj1
= 0 ;
13782 PyObject
* obj2
= 0 ;
13783 char * kwnames
[] = {
13784 (char *) "self",(char *) "page",(char *) "info", NULL
13787 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabContainer_AddPage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13788 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13789 if (!SWIG_IsOK(res1
)) {
13790 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13792 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13793 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13794 if (!SWIG_IsOK(res2
)) {
13795 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "2"" of type '" "wxWindow *""'");
13797 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13798 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0);
13799 if (!SWIG_IsOK(res3
)) {
13800 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
13803 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
13805 arg3
= reinterpret_cast< wxAuiNotebookPage
* >(argp3
);
13807 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13808 result
= (bool)(arg1
)->AddPage(arg2
,(wxAuiNotebookPage
const &)*arg3
);
13809 wxPyEndAllowThreads(__tstate
);
13810 if (PyErr_Occurred()) SWIG_fail
;
13813 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13821 SWIGINTERN PyObject
*_wrap_AuiTabContainer_InsertPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13822 PyObject
*resultobj
= 0;
13823 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13824 wxWindow
*arg2
= (wxWindow
*) 0 ;
13825 wxAuiNotebookPage
*arg3
= 0 ;
13836 PyObject
* obj0
= 0 ;
13837 PyObject
* obj1
= 0 ;
13838 PyObject
* obj2
= 0 ;
13839 PyObject
* obj3
= 0 ;
13840 char * kwnames
[] = {
13841 (char *) "self",(char *) "page",(char *) "info",(char *) "idx", NULL
13844 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13845 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13846 if (!SWIG_IsOK(res1
)) {
13847 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13849 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13850 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13851 if (!SWIG_IsOK(res2
)) {
13852 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "2"" of type '" "wxWindow *""'");
13854 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13855 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0);
13856 if (!SWIG_IsOK(res3
)) {
13857 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
13860 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_InsertPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
13862 arg3
= reinterpret_cast< wxAuiNotebookPage
* >(argp3
);
13863 ecode4
= SWIG_AsVal_size_t(obj3
, &val4
);
13864 if (!SWIG_IsOK(ecode4
)) {
13865 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "4"" of type '" "size_t""'");
13867 arg4
= static_cast< size_t >(val4
);
13869 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13870 result
= (bool)(arg1
)->InsertPage(arg2
,(wxAuiNotebookPage
const &)*arg3
,arg4
);
13871 wxPyEndAllowThreads(__tstate
);
13872 if (PyErr_Occurred()) SWIG_fail
;
13875 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13883 SWIGINTERN PyObject
*_wrap_AuiTabContainer_MovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13884 PyObject
*resultobj
= 0;
13885 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13886 wxWindow
*arg2
= (wxWindow
*) 0 ;
13895 PyObject
* obj0
= 0 ;
13896 PyObject
* obj1
= 0 ;
13897 PyObject
* obj2
= 0 ;
13898 char * kwnames
[] = {
13899 (char *) "self",(char *) "page",(char *) "new_idx", NULL
13902 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabContainer_MovePage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13903 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13904 if (!SWIG_IsOK(res1
)) {
13905 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13907 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13908 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13909 if (!SWIG_IsOK(res2
)) {
13910 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "2"" of type '" "wxWindow *""'");
13912 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13913 ecode3
= SWIG_AsVal_size_t(obj2
, &val3
);
13914 if (!SWIG_IsOK(ecode3
)) {
13915 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "3"" of type '" "size_t""'");
13917 arg3
= static_cast< size_t >(val3
);
13919 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13920 result
= (bool)(arg1
)->MovePage(arg2
,arg3
);
13921 wxPyEndAllowThreads(__tstate
);
13922 if (PyErr_Occurred()) SWIG_fail
;
13925 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13933 SWIGINTERN PyObject
*_wrap_AuiTabContainer_RemovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13934 PyObject
*resultobj
= 0;
13935 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13936 wxWindow
*arg2
= (wxWindow
*) 0 ;
13942 PyObject
* obj0
= 0 ;
13943 PyObject
* obj1
= 0 ;
13944 char * kwnames
[] = {
13945 (char *) "self",(char *) "page", NULL
13948 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_RemovePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13949 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13950 if (!SWIG_IsOK(res1
)) {
13951 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_RemovePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13953 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13954 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13955 if (!SWIG_IsOK(res2
)) {
13956 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_RemovePage" "', expected argument " "2"" of type '" "wxWindow *""'");
13958 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13960 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13961 result
= (bool)(arg1
)->RemovePage(arg2
);
13962 wxPyEndAllowThreads(__tstate
);
13963 if (PyErr_Occurred()) SWIG_fail
;
13966 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13974 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
13975 PyObject
*resultobj
= 0;
13976 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13977 wxWindow
*arg2
= (wxWindow
*) 0 ;
13984 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
13985 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13986 if (!SWIG_IsOK(res1
)) {
13987 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13989 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13990 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13991 if (!SWIG_IsOK(res2
)) {
13992 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "2"" of type '" "wxWindow *""'");
13994 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13996 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13997 result
= (bool)(arg1
)->SetActivePage(arg2
);
13998 wxPyEndAllowThreads(__tstate
);
13999 if (PyErr_Occurred()) SWIG_fail
;
14002 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14010 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
14011 PyObject
*resultobj
= 0;
14012 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14020 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
14021 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14022 if (!SWIG_IsOK(res1
)) {
14023 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14025 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14026 ecode2
= SWIG_AsVal_size_t(swig_obj
[1], &val2
);
14027 if (!SWIG_IsOK(ecode2
)) {
14028 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "2"" of type '" "size_t""'");
14030 arg2
= static_cast< size_t >(val2
);
14032 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14033 result
= (bool)(arg1
)->SetActivePage(arg2
);
14034 wxPyEndAllowThreads(__tstate
);
14035 if (PyErr_Occurred()) SWIG_fail
;
14038 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14046 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage(PyObject
*self
, PyObject
*args
) {
14050 if (!(argc
= SWIG_Python_UnpackTuple(args
,"AuiTabContainer_SetActivePage",0,2,argv
))) SWIG_fail
;
14056 int res
= SWIG_ConvertPtr(argv
[1], &vptr
, SWIGTYPE_p_wxWindow
, 0);
14057 _v
= SWIG_CheckState(res
);
14059 if (!_v
) goto check_1
;
14060 return _wrap_AuiTabContainer_SetActivePage__SWIG_0(self
, argc
, argv
);
14065 return _wrap_AuiTabContainer_SetActivePage__SWIG_1(self
, argc
, argv
);
14069 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'AuiTabContainer_SetActivePage'");
14074 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetNoneActive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14075 PyObject
*resultobj
= 0;
14076 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14079 PyObject
*swig_obj
[1] ;
14081 if (!args
) SWIG_fail
;
14082 swig_obj
[0] = args
;
14083 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14084 if (!SWIG_IsOK(res1
)) {
14085 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetNoneActive" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14087 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14089 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14090 (arg1
)->SetNoneActive();
14091 wxPyEndAllowThreads(__tstate
);
14092 if (PyErr_Occurred()) SWIG_fail
;
14094 resultobj
= SWIG_Py_Void();
14101 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetActivePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14102 PyObject
*resultobj
= 0;
14103 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14107 PyObject
*swig_obj
[1] ;
14109 if (!args
) SWIG_fail
;
14110 swig_obj
[0] = args
;
14111 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14112 if (!SWIG_IsOK(res1
)) {
14113 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14115 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14117 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14118 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetActivePage();
14119 wxPyEndAllowThreads(__tstate
);
14120 if (PyErr_Occurred()) SWIG_fail
;
14122 resultobj
= SWIG_From_int(static_cast< int >(result
));
14129 SWIGINTERN PyObject
*_wrap_AuiTabContainer_TabHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14130 PyObject
*resultobj
= 0;
14131 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14134 wxWindow
**arg4
= (wxWindow
**) 0 ;
14144 PyObject
* obj0
= 0 ;
14145 PyObject
* obj1
= 0 ;
14146 PyObject
* obj2
= 0 ;
14147 PyObject
* obj3
= 0 ;
14148 char * kwnames
[] = {
14149 (char *) "self",(char *) "x",(char *) "y",(char *) "hit", NULL
14152 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_TabHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
14153 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14154 if (!SWIG_IsOK(res1
)) {
14155 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14157 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14158 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14159 if (!SWIG_IsOK(ecode2
)) {
14160 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "2"" of type '" "int""'");
14162 arg2
= static_cast< int >(val2
);
14163 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14164 if (!SWIG_IsOK(ecode3
)) {
14165 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "3"" of type '" "int""'");
14167 arg3
= static_cast< int >(val3
);
14168 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_p_wxWindow
, 0 | 0 );
14169 if (!SWIG_IsOK(res4
)) {
14170 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "4"" of type '" "wxWindow **""'");
14172 arg4
= reinterpret_cast< wxWindow
** >(argp4
);
14174 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14175 result
= (bool)((wxAuiTabContainer
const *)arg1
)->TabHitTest(arg2
,arg3
,arg4
);
14176 wxPyEndAllowThreads(__tstate
);
14177 if (PyErr_Occurred()) SWIG_fail
;
14180 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14188 SWIGINTERN PyObject
*_wrap_AuiTabContainer_ButtonHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14189 PyObject
*resultobj
= 0;
14190 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14193 wxAuiTabContainerButton
**arg4
= (wxAuiTabContainerButton
**) 0 ;
14203 PyObject
* obj0
= 0 ;
14204 PyObject
* obj1
= 0 ;
14205 PyObject
* obj2
= 0 ;
14206 PyObject
* obj3
= 0 ;
14207 char * kwnames
[] = {
14208 (char *) "self",(char *) "x",(char *) "y",(char *) "hit", NULL
14211 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_ButtonHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
14212 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14213 if (!SWIG_IsOK(res1
)) {
14214 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14216 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14217 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14218 if (!SWIG_IsOK(ecode2
)) {
14219 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "2"" of type '" "int""'");
14221 arg2
= static_cast< int >(val2
);
14222 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14223 if (!SWIG_IsOK(ecode3
)) {
14224 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "3"" of type '" "int""'");
14226 arg3
= static_cast< int >(val3
);
14227 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_p_wxAuiTabContainerButton
, 0 | 0 );
14228 if (!SWIG_IsOK(res4
)) {
14229 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "4"" of type '" "wxAuiTabContainerButton **""'");
14231 arg4
= reinterpret_cast< wxAuiTabContainerButton
** >(argp4
);
14233 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14234 result
= (bool)((wxAuiTabContainer
const *)arg1
)->ButtonHitTest(arg2
,arg3
,arg4
);
14235 wxPyEndAllowThreads(__tstate
);
14236 if (PyErr_Occurred()) SWIG_fail
;
14239 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14247 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetWindowFromIdx(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14248 PyObject
*resultobj
= 0;
14249 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14251 wxWindow
*result
= 0 ;
14256 PyObject
* obj0
= 0 ;
14257 PyObject
* obj1
= 0 ;
14258 char * kwnames
[] = {
14259 (char *) "self",(char *) "idx", NULL
14262 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetWindowFromIdx",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14263 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14264 if (!SWIG_IsOK(res1
)) {
14265 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetWindowFromIdx" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14267 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14268 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14269 if (!SWIG_IsOK(ecode2
)) {
14270 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_GetWindowFromIdx" "', expected argument " "2"" of type '" "size_t""'");
14272 arg2
= static_cast< size_t >(val2
);
14274 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14275 result
= (wxWindow
*)((wxAuiTabContainer
const *)arg1
)->GetWindowFromIdx(arg2
);
14276 wxPyEndAllowThreads(__tstate
);
14277 if (PyErr_Occurred()) SWIG_fail
;
14280 resultobj
= wxPyMake_wxObject(result
, 0);
14288 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetIdxFromWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14289 PyObject
*resultobj
= 0;
14290 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14291 wxWindow
*arg2
= (wxWindow
*) 0 ;
14297 PyObject
* obj0
= 0 ;
14298 PyObject
* obj1
= 0 ;
14299 char * kwnames
[] = {
14300 (char *) "self",(char *) "page", NULL
14303 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetIdxFromWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14304 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14305 if (!SWIG_IsOK(res1
)) {
14306 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetIdxFromWindow" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14308 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14309 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14310 if (!SWIG_IsOK(res2
)) {
14311 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_GetIdxFromWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
14313 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
14315 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14316 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetIdxFromWindow(arg2
);
14317 wxPyEndAllowThreads(__tstate
);
14318 if (PyErr_Occurred()) SWIG_fail
;
14320 resultobj
= SWIG_From_int(static_cast< int >(result
));
14327 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPageCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14328 PyObject
*resultobj
= 0;
14329 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14333 PyObject
*swig_obj
[1] ;
14335 if (!args
) SWIG_fail
;
14336 swig_obj
[0] = args
;
14337 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14338 if (!SWIG_IsOK(res1
)) {
14339 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPageCount" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14341 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14343 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14344 result
= (size_t)((wxAuiTabContainer
const *)arg1
)->GetPageCount();
14345 wxPyEndAllowThreads(__tstate
);
14346 if (PyErr_Occurred()) SWIG_fail
;
14348 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14355 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14356 PyObject
*resultobj
= 0;
14357 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14359 wxAuiNotebookPage
*result
= 0 ;
14364 PyObject
* obj0
= 0 ;
14365 PyObject
* obj1
= 0 ;
14366 char * kwnames
[] = {
14367 (char *) "self",(char *) "idx", NULL
14370 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14371 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14372 if (!SWIG_IsOK(res1
)) {
14373 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14375 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14376 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14377 if (!SWIG_IsOK(ecode2
)) {
14378 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_GetPage" "', expected argument " "2"" of type '" "size_t""'");
14380 arg2
= static_cast< size_t >(val2
);
14382 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14384 wxAuiNotebookPage
&_result_ref
= (arg1
)->GetPage(arg2
);
14385 result
= (wxAuiNotebookPage
*) &_result_ref
;
14387 wxPyEndAllowThreads(__tstate
);
14388 if (PyErr_Occurred()) SWIG_fail
;
14390 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
14397 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14398 PyObject
*resultobj
= 0;
14399 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14400 wxAuiNotebookPageArray
*result
= 0 ;
14403 PyObject
*swig_obj
[1] ;
14405 if (!args
) SWIG_fail
;
14406 swig_obj
[0] = args
;
14407 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14408 if (!SWIG_IsOK(res1
)) {
14409 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPages" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14411 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14413 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14415 wxAuiNotebookPageArray
&_result_ref
= (arg1
)->GetPages();
14416 result
= (wxAuiNotebookPageArray
*) &_result_ref
;
14418 wxPyEndAllowThreads(__tstate
);
14419 if (PyErr_Occurred()) SWIG_fail
;
14421 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookPageArray
, 0 | 0 );
14428 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetNormalFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14429 PyObject
*resultobj
= 0;
14430 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14436 PyObject
* obj0
= 0 ;
14437 PyObject
* obj1
= 0 ;
14438 char * kwnames
[] = {
14439 (char *) "self",(char *) "normal_font", NULL
14442 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetNormalFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14443 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14444 if (!SWIG_IsOK(res1
)) {
14445 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14447 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14448 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
14449 if (!SWIG_IsOK(res2
)) {
14450 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14453 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14455 arg2
= reinterpret_cast< wxFont
* >(argp2
);
14457 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14458 (arg1
)->SetNormalFont((wxFont
const &)*arg2
);
14459 wxPyEndAllowThreads(__tstate
);
14460 if (PyErr_Occurred()) SWIG_fail
;
14462 resultobj
= SWIG_Py_Void();
14469 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetSelectedFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14470 PyObject
*resultobj
= 0;
14471 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14477 PyObject
* obj0
= 0 ;
14478 PyObject
* obj1
= 0 ;
14479 char * kwnames
[] = {
14480 (char *) "self",(char *) "selected_font", NULL
14483 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetSelectedFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14484 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14485 if (!SWIG_IsOK(res1
)) {
14486 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14488 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14489 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
14490 if (!SWIG_IsOK(res2
)) {
14491 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14494 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14496 arg2
= reinterpret_cast< wxFont
* >(argp2
);
14498 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14499 (arg1
)->SetSelectedFont((wxFont
const &)*arg2
);
14500 wxPyEndAllowThreads(__tstate
);
14501 if (PyErr_Occurred()) SWIG_fail
;
14503 resultobj
= SWIG_Py_Void();
14510 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetMeasuringFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14511 PyObject
*resultobj
= 0;
14512 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14518 PyObject
* obj0
= 0 ;
14519 PyObject
* obj1
= 0 ;
14520 char * kwnames
[] = {
14521 (char *) "self",(char *) "measuring_font", NULL
14524 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetMeasuringFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14525 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14526 if (!SWIG_IsOK(res1
)) {
14527 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14529 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14530 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
14531 if (!SWIG_IsOK(res2
)) {
14532 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14535 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14537 arg2
= reinterpret_cast< wxFont
* >(argp2
);
14539 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14540 (arg1
)->SetMeasuringFont((wxFont
const &)*arg2
);
14541 wxPyEndAllowThreads(__tstate
);
14542 if (PyErr_Occurred()) SWIG_fail
;
14544 resultobj
= SWIG_Py_Void();
14551 SWIGINTERN PyObject
*_wrap_AuiTabContainer_DoShowHide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14552 PyObject
*resultobj
= 0;
14553 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14556 PyObject
*swig_obj
[1] ;
14558 if (!args
) SWIG_fail
;
14559 swig_obj
[0] = args
;
14560 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14561 if (!SWIG_IsOK(res1
)) {
14562 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_DoShowHide" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14564 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14566 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14567 (arg1
)->DoShowHide();
14568 wxPyEndAllowThreads(__tstate
);
14569 if (PyErr_Occurred()) SWIG_fail
;
14571 resultobj
= SWIG_Py_Void();
14578 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14579 PyObject
*resultobj
= 0;
14580 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14585 PyObject
* obj0
= 0 ;
14586 PyObject
* obj1
= 0 ;
14587 char * kwnames
[] = {
14588 (char *) "self",(char *) "rect", NULL
14591 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14592 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14593 if (!SWIG_IsOK(res1
)) {
14594 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetRect" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14596 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14599 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
14602 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14603 (arg1
)->SetRect((wxRect
const &)*arg2
);
14604 wxPyEndAllowThreads(__tstate
);
14605 if (PyErr_Occurred()) SWIG_fail
;
14607 resultobj
= SWIG_Py_Void();
14614 SWIGINTERN PyObject
*_wrap_AuiTabContainer_RemoveButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14615 PyObject
*resultobj
= 0;
14616 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14622 PyObject
* obj0
= 0 ;
14623 PyObject
* obj1
= 0 ;
14624 char * kwnames
[] = {
14625 (char *) "self",(char *) "id", NULL
14628 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_RemoveButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14629 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14630 if (!SWIG_IsOK(res1
)) {
14631 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_RemoveButton" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14633 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14634 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14635 if (!SWIG_IsOK(ecode2
)) {
14636 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_RemoveButton" "', expected argument " "2"" of type '" "int""'");
14638 arg2
= static_cast< int >(val2
);
14640 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14641 (arg1
)->RemoveButton(arg2
);
14642 wxPyEndAllowThreads(__tstate
);
14643 if (PyErr_Occurred()) SWIG_fail
;
14645 resultobj
= SWIG_Py_Void();
14652 SWIGINTERN PyObject
*_wrap_AuiTabContainer_AddButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14653 PyObject
*resultobj
= 0;
14654 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14657 wxBitmap
const &arg4_defvalue
= wxNullBitmap
;
14658 wxBitmap
*arg4
= (wxBitmap
*) &arg4_defvalue
;
14659 wxBitmap
const &arg5_defvalue
= wxNullBitmap
;
14660 wxBitmap
*arg5
= (wxBitmap
*) &arg5_defvalue
;
14671 PyObject
* obj0
= 0 ;
14672 PyObject
* obj1
= 0 ;
14673 PyObject
* obj2
= 0 ;
14674 PyObject
* obj3
= 0 ;
14675 PyObject
* obj4
= 0 ;
14676 char * kwnames
[] = {
14677 (char *) "self",(char *) "id",(char *) "location",(char *) "normal_bitmap",(char *) "disabled_bitmap", NULL
14680 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:AuiTabContainer_AddButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
14681 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14682 if (!SWIG_IsOK(res1
)) {
14683 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14685 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14686 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14687 if (!SWIG_IsOK(ecode2
)) {
14688 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "2"" of type '" "int""'");
14690 arg2
= static_cast< int >(val2
);
14691 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14692 if (!SWIG_IsOK(ecode3
)) {
14693 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "3"" of type '" "int""'");
14695 arg3
= static_cast< int >(val3
);
14697 res4
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxBitmap
, 0 | 0);
14698 if (!SWIG_IsOK(res4
)) {
14699 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "4"" of type '" "wxBitmap const &""'");
14702 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddButton" "', expected argument " "4"" of type '" "wxBitmap const &""'");
14704 arg4
= reinterpret_cast< wxBitmap
* >(argp4
);
14707 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
, 0 | 0);
14708 if (!SWIG_IsOK(res5
)) {
14709 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "5"" of type '" "wxBitmap const &""'");
14712 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddButton" "', expected argument " "5"" of type '" "wxBitmap const &""'");
14714 arg5
= reinterpret_cast< wxBitmap
* >(argp5
);
14717 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14718 (arg1
)->AddButton(arg2
,arg3
,(wxBitmap
const &)*arg4
,(wxBitmap
const &)*arg5
);
14719 wxPyEndAllowThreads(__tstate
);
14720 if (PyErr_Occurred()) SWIG_fail
;
14722 resultobj
= SWIG_Py_Void();
14729 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetTabOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14730 PyObject
*resultobj
= 0;
14731 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14735 PyObject
*swig_obj
[1] ;
14737 if (!args
) SWIG_fail
;
14738 swig_obj
[0] = args
;
14739 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14740 if (!SWIG_IsOK(res1
)) {
14741 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetTabOffset" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14743 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14745 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14746 result
= (size_t)((wxAuiTabContainer
const *)arg1
)->GetTabOffset();
14747 wxPyEndAllowThreads(__tstate
);
14748 if (PyErr_Occurred()) SWIG_fail
;
14750 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14757 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetTabOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14758 PyObject
*resultobj
= 0;
14759 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14765 PyObject
* obj0
= 0 ;
14766 PyObject
* obj1
= 0 ;
14767 char * kwnames
[] = {
14768 (char *) "self",(char *) "offset", NULL
14771 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetTabOffset",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14772 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14773 if (!SWIG_IsOK(res1
)) {
14774 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetTabOffset" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14776 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14777 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14778 if (!SWIG_IsOK(ecode2
)) {
14779 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetTabOffset" "', expected argument " "2"" of type '" "size_t""'");
14781 arg2
= static_cast< size_t >(val2
);
14783 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14784 (arg1
)->SetTabOffset(arg2
);
14785 wxPyEndAllowThreads(__tstate
);
14786 if (PyErr_Occurred()) SWIG_fail
;
14788 resultobj
= SWIG_Py_Void();
14795 SWIGINTERN PyObject
*AuiTabContainer_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14797 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
14798 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabContainer
, SWIG_NewClientData(obj
));
14799 return SWIG_Py_Void();
14802 SWIGINTERN PyObject
*AuiTabContainer_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14803 return SWIG_Python_InitShadowInstance(args
);
14806 SWIGINTERN PyObject
*_wrap_new_AuiTabCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14807 PyObject
*resultobj
= 0;
14808 wxWindow
*arg1
= (wxWindow
*) 0 ;
14809 int arg2
= (int) wxID_ANY
;
14810 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
14811 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
14812 wxSize
const &arg4_defvalue
= wxDefaultSize
;
14813 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
14814 long arg5
= (long) 0 ;
14815 wxAuiTabCtrl
*result
= 0 ;
14824 PyObject
* obj0
= 0 ;
14825 PyObject
* obj1
= 0 ;
14826 PyObject
* obj2
= 0 ;
14827 PyObject
* obj3
= 0 ;
14828 PyObject
* obj4
= 0 ;
14829 char * kwnames
[] = {
14830 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
14833 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_AuiTabCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
14834 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14835 if (!SWIG_IsOK(res1
)) {
14836 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiTabCtrl" "', expected argument " "1"" of type '" "wxWindow *""'");
14838 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
14840 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14841 if (!SWIG_IsOK(ecode2
)) {
14842 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiTabCtrl" "', expected argument " "2"" of type '" "int""'");
14844 arg2
= static_cast< int >(val2
);
14849 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
14855 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
14859 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
14860 if (!SWIG_IsOK(ecode5
)) {
14861 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiTabCtrl" "', expected argument " "5"" of type '" "long""'");
14863 arg5
= static_cast< long >(val5
);
14866 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14867 result
= (wxAuiTabCtrl
*)new wxAuiTabCtrl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
14868 wxPyEndAllowThreads(__tstate
);
14869 if (PyErr_Occurred()) SWIG_fail
;
14871 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabCtrl
, SWIG_POINTER_NEW
| 0 );
14878 SWIGINTERN PyObject
*_wrap_delete_AuiTabCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14879 PyObject
*resultobj
= 0;
14880 wxAuiTabCtrl
*arg1
= (wxAuiTabCtrl
*) 0 ;
14883 PyObject
*swig_obj
[1] ;
14885 if (!args
) SWIG_fail
;
14886 swig_obj
[0] = args
;
14887 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabCtrl
, SWIG_POINTER_DISOWN
| 0 );
14888 if (!SWIG_IsOK(res1
)) {
14889 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabCtrl" "', expected argument " "1"" of type '" "wxAuiTabCtrl *""'");
14891 arg1
= reinterpret_cast< wxAuiTabCtrl
* >(argp1
);
14893 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14896 wxPyEndAllowThreads(__tstate
);
14897 if (PyErr_Occurred()) SWIG_fail
;
14899 resultobj
= SWIG_Py_Void();
14906 SWIGINTERN PyObject
*AuiTabCtrl_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14908 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
14909 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabCtrl
, SWIG_NewClientData(obj
));
14910 return SWIG_Py_Void();
14913 SWIGINTERN PyObject
*AuiTabCtrl_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14914 return SWIG_Python_InitShadowInstance(args
);
14917 SWIGINTERN PyObject
*_wrap_new_PreAuiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14918 PyObject
*resultobj
= 0;
14919 wxAuiNotebook
*result
= 0 ;
14921 if (!SWIG_Python_UnpackTuple(args
,"new_PreAuiNotebook",0,0,0)) SWIG_fail
;
14923 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14924 result
= (wxAuiNotebook
*)new wxAuiNotebook();
14925 wxPyEndAllowThreads(__tstate
);
14926 if (PyErr_Occurred()) SWIG_fail
;
14928 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_OWN
| 0 );
14935 SWIGINTERN PyObject
*_wrap_new_AuiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14936 PyObject
*resultobj
= 0;
14937 wxWindow
*arg1
= (wxWindow
*) 0 ;
14938 int arg2
= (int) wxID_ANY
;
14939 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
14940 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
14941 wxSize
const &arg4_defvalue
= wxDefaultSize
;
14942 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
14943 long arg5
= (long) wxAUI_NB_DEFAULT_STYLE
;
14944 wxAuiNotebook
*result
= 0 ;
14953 PyObject
* obj0
= 0 ;
14954 PyObject
* obj1
= 0 ;
14955 PyObject
* obj2
= 0 ;
14956 PyObject
* obj3
= 0 ;
14957 PyObject
* obj4
= 0 ;
14958 char * kwnames
[] = {
14959 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
14962 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_AuiNotebook",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
14963 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14964 if (!SWIG_IsOK(res1
)) {
14965 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiNotebook" "', expected argument " "1"" of type '" "wxWindow *""'");
14967 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
14969 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14970 if (!SWIG_IsOK(ecode2
)) {
14971 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiNotebook" "', expected argument " "2"" of type '" "int""'");
14973 arg2
= static_cast< int >(val2
);
14978 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
14984 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
14988 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
14989 if (!SWIG_IsOK(ecode5
)) {
14990 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiNotebook" "', expected argument " "5"" of type '" "long""'");
14992 arg5
= static_cast< long >(val5
);
14995 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14996 result
= (wxAuiNotebook
*)new wxAuiNotebook(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
14997 wxPyEndAllowThreads(__tstate
);
14998 if (PyErr_Occurred()) SWIG_fail
;
15000 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_NEW
| 0 );
15007 SWIGINTERN PyObject
*_wrap_delete_AuiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15008 PyObject
*resultobj
= 0;
15009 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15012 PyObject
*swig_obj
[1] ;
15014 if (!args
) SWIG_fail
;
15015 swig_obj
[0] = args
;
15016 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_DISOWN
| 0 );
15017 if (!SWIG_IsOK(res1
)) {
15018 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiNotebook" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15020 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15022 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15025 wxPyEndAllowThreads(__tstate
);
15026 if (PyErr_Occurred()) SWIG_fail
;
15028 resultobj
= SWIG_Py_Void();
15035 SWIGINTERN PyObject
*_wrap_AuiNotebook_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15036 PyObject
*resultobj
= 0;
15037 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15038 wxWindow
*arg2
= (wxWindow
*) 0 ;
15039 int arg3
= (int) wxID_ANY
;
15040 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
15041 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
15042 wxSize
const &arg5_defvalue
= wxDefaultSize
;
15043 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
15044 long arg6
= (long) 0 ;
15056 PyObject
* obj0
= 0 ;
15057 PyObject
* obj1
= 0 ;
15058 PyObject
* obj2
= 0 ;
15059 PyObject
* obj3
= 0 ;
15060 PyObject
* obj4
= 0 ;
15061 PyObject
* obj5
= 0 ;
15062 char * kwnames
[] = {
15063 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
15066 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:AuiNotebook_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
15067 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15068 if (!SWIG_IsOK(res1
)) {
15069 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_Create" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15071 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15072 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15073 if (!SWIG_IsOK(res2
)) {
15074 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
15076 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
15078 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15079 if (!SWIG_IsOK(ecode3
)) {
15080 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiNotebook_Create" "', expected argument " "3"" of type '" "int""'");
15082 arg3
= static_cast< int >(val3
);
15087 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
15093 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
15097 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
15098 if (!SWIG_IsOK(ecode6
)) {
15099 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiNotebook_Create" "', expected argument " "6"" of type '" "long""'");
15101 arg6
= static_cast< long >(val6
);
15104 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15105 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
);
15106 wxPyEndAllowThreads(__tstate
);
15107 if (PyErr_Occurred()) SWIG_fail
;
15110 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15118 SWIGINTERN PyObject
*_wrap_AuiNotebook_AddPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15119 PyObject
*resultobj
= 0;
15120 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15121 wxWindow
*arg2
= (wxWindow
*) 0 ;
15122 wxString
*arg3
= 0 ;
15123 bool arg4
= (bool) false ;
15124 wxBitmap
const &arg5_defvalue
= wxNullBitmap
;
15125 wxBitmap
*arg5
= (wxBitmap
*) &arg5_defvalue
;
15131 bool temp3
= false ;
15136 PyObject
* obj0
= 0 ;
15137 PyObject
* obj1
= 0 ;
15138 PyObject
* obj2
= 0 ;
15139 PyObject
* obj3
= 0 ;
15140 PyObject
* obj4
= 0 ;
15141 char * kwnames
[] = {
15142 (char *) "self",(char *) "page",(char *) "caption",(char *) "select",(char *) "bitmap", NULL
15145 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:AuiNotebook_AddPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
15146 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15147 if (!SWIG_IsOK(res1
)) {
15148 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_AddPage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15150 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15151 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15152 if (!SWIG_IsOK(res2
)) {
15153 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_AddPage" "', expected argument " "2"" of type '" "wxWindow *""'");
15155 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
15157 arg3
= wxString_in_helper(obj2
);
15158 if (arg3
== NULL
) SWIG_fail
;
15162 ecode4
= SWIG_AsVal_bool(obj3
, &val4
);
15163 if (!SWIG_IsOK(ecode4
)) {
15164 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiNotebook_AddPage" "', expected argument " "4"" of type '" "bool""'");
15166 arg4
= static_cast< bool >(val4
);
15169 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
, 0 | 0);
15170 if (!SWIG_IsOK(res5
)) {
15171 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiNotebook_AddPage" "', expected argument " "5"" of type '" "wxBitmap const &""'");
15174 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiNotebook_AddPage" "', expected argument " "5"" of type '" "wxBitmap const &""'");
15176 arg5
= reinterpret_cast< wxBitmap
* >(argp5
);
15179 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15180 result
= (bool)(arg1
)->AddPage(arg2
,(wxString
const &)*arg3
,arg4
,(wxBitmap
const &)*arg5
);
15181 wxPyEndAllowThreads(__tstate
);
15182 if (PyErr_Occurred()) SWIG_fail
;
15185 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15201 SWIGINTERN PyObject
*_wrap_AuiNotebook_InsertPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15202 PyObject
*resultobj
= 0;
15203 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15205 wxWindow
*arg3
= (wxWindow
*) 0 ;
15206 wxString
*arg4
= 0 ;
15207 bool arg5
= (bool) false ;
15208 wxBitmap
const &arg6_defvalue
= wxNullBitmap
;
15209 wxBitmap
*arg6
= (wxBitmap
*) &arg6_defvalue
;
15217 bool temp4
= false ;
15222 PyObject
* obj0
= 0 ;
15223 PyObject
* obj1
= 0 ;
15224 PyObject
* obj2
= 0 ;
15225 PyObject
* obj3
= 0 ;
15226 PyObject
* obj4
= 0 ;
15227 PyObject
* obj5
= 0 ;
15228 char * kwnames
[] = {
15229 (char *) "self",(char *) "page_idx",(char *) "page",(char *) "caption",(char *) "select",(char *) "bitmap", NULL
15232 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:AuiNotebook_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
15233 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15234 if (!SWIG_IsOK(res1
)) {
15235 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15237 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15238 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15239 if (!SWIG_IsOK(ecode2
)) {
15240 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "2"" of type '" "size_t""'");
15242 arg2
= static_cast< size_t >(val2
);
15243 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15244 if (!SWIG_IsOK(res3
)) {
15245 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "3"" of type '" "wxWindow *""'");
15247 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
15249 arg4
= wxString_in_helper(obj3
);
15250 if (arg4
== NULL
) SWIG_fail
;
15254 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
15255 if (!SWIG_IsOK(ecode5
)) {
15256 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "5"" of type '" "bool""'");
15258 arg5
= static_cast< bool >(val5
);
15261 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxBitmap
, 0 | 0);
15262 if (!SWIG_IsOK(res6
)) {
15263 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "6"" of type '" "wxBitmap const &""'");
15266 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiNotebook_InsertPage" "', expected argument " "6"" of type '" "wxBitmap const &""'");
15268 arg6
= reinterpret_cast< wxBitmap
* >(argp6
);
15271 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15272 result
= (bool)(arg1
)->InsertPage(arg2
,arg3
,(wxString
const &)*arg4
,arg5
,(wxBitmap
const &)*arg6
);
15273 wxPyEndAllowThreads(__tstate
);
15274 if (PyErr_Occurred()) SWIG_fail
;
15277 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15293 SWIGINTERN PyObject
*_wrap_AuiNotebook_DeletePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15294 PyObject
*resultobj
= 0;
15295 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15302 PyObject
* obj0
= 0 ;
15303 PyObject
* obj1
= 0 ;
15304 char * kwnames
[] = {
15305 (char *) "self",(char *) "page", NULL
15308 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_DeletePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15309 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15310 if (!SWIG_IsOK(res1
)) {
15311 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_DeletePage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15313 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15314 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15315 if (!SWIG_IsOK(ecode2
)) {
15316 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_DeletePage" "', expected argument " "2"" of type '" "size_t""'");
15318 arg2
= static_cast< size_t >(val2
);
15320 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15321 result
= (bool)(arg1
)->DeletePage(arg2
);
15322 wxPyEndAllowThreads(__tstate
);
15323 if (PyErr_Occurred()) SWIG_fail
;
15326 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15334 SWIGINTERN PyObject
*_wrap_AuiNotebook_RemovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15335 PyObject
*resultobj
= 0;
15336 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15343 PyObject
* obj0
= 0 ;
15344 PyObject
* obj1
= 0 ;
15345 char * kwnames
[] = {
15346 (char *) "self",(char *) "page", NULL
15349 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_RemovePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15350 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15351 if (!SWIG_IsOK(res1
)) {
15352 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_RemovePage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15354 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15355 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15356 if (!SWIG_IsOK(ecode2
)) {
15357 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_RemovePage" "', expected argument " "2"" of type '" "size_t""'");
15359 arg2
= static_cast< size_t >(val2
);
15361 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15362 result
= (bool)(arg1
)->RemovePage(arg2
);
15363 wxPyEndAllowThreads(__tstate
);
15364 if (PyErr_Occurred()) SWIG_fail
;
15367 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15375 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetPageText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15376 PyObject
*resultobj
= 0;
15377 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15379 wxString
*arg3
= 0 ;
15385 bool temp3
= false ;
15386 PyObject
* obj0
= 0 ;
15387 PyObject
* obj1
= 0 ;
15388 PyObject
* obj2
= 0 ;
15389 char * kwnames
[] = {
15390 (char *) "self",(char *) "page",(char *) "text", NULL
15393 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiNotebook_SetPageText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15394 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15395 if (!SWIG_IsOK(res1
)) {
15396 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetPageText" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15398 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15399 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15400 if (!SWIG_IsOK(ecode2
)) {
15401 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetPageText" "', expected argument " "2"" of type '" "size_t""'");
15403 arg2
= static_cast< size_t >(val2
);
15405 arg3
= wxString_in_helper(obj2
);
15406 if (arg3
== NULL
) SWIG_fail
;
15410 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15411 result
= (bool)(arg1
)->SetPageText(arg2
,(wxString
const &)*arg3
);
15412 wxPyEndAllowThreads(__tstate
);
15413 if (PyErr_Occurred()) SWIG_fail
;
15416 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15432 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetPageBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15433 PyObject
*resultobj
= 0;
15434 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15436 wxBitmap
*arg3
= 0 ;
15444 PyObject
* obj0
= 0 ;
15445 PyObject
* obj1
= 0 ;
15446 PyObject
* obj2
= 0 ;
15447 char * kwnames
[] = {
15448 (char *) "self",(char *) "page",(char *) "bitmap", NULL
15451 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiNotebook_SetPageBitmap",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15452 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15453 if (!SWIG_IsOK(res1
)) {
15454 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15456 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15457 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15458 if (!SWIG_IsOK(ecode2
)) {
15459 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "2"" of type '" "size_t""'");
15461 arg2
= static_cast< size_t >(val2
);
15462 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
, 0 | 0);
15463 if (!SWIG_IsOK(res3
)) {
15464 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");
15467 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");
15469 arg3
= reinterpret_cast< wxBitmap
* >(argp3
);
15471 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15472 result
= (bool)(arg1
)->SetPageBitmap(arg2
,(wxBitmap
const &)*arg3
);
15473 wxPyEndAllowThreads(__tstate
);
15474 if (PyErr_Occurred()) SWIG_fail
;
15477 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15485 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15486 PyObject
*resultobj
= 0;
15487 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15494 PyObject
* obj0
= 0 ;
15495 PyObject
* obj1
= 0 ;
15496 char * kwnames
[] = {
15497 (char *) "self",(char *) "new_page", NULL
15500 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15501 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15502 if (!SWIG_IsOK(res1
)) {
15503 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetSelection" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15505 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15506 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15507 if (!SWIG_IsOK(ecode2
)) {
15508 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetSelection" "', expected argument " "2"" of type '" "size_t""'");
15510 arg2
= static_cast< size_t >(val2
);
15512 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15513 result
= (size_t)(arg1
)->SetSelection(arg2
);
15514 wxPyEndAllowThreads(__tstate
);
15515 if (PyErr_Occurred()) SWIG_fail
;
15517 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
15524 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15525 PyObject
*resultobj
= 0;
15526 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15530 PyObject
*swig_obj
[1] ;
15532 if (!args
) SWIG_fail
;
15533 swig_obj
[0] = args
;
15534 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15535 if (!SWIG_IsOK(res1
)) {
15536 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetSelection" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15538 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15540 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15541 result
= (int)((wxAuiNotebook
const *)arg1
)->GetSelection();
15542 wxPyEndAllowThreads(__tstate
);
15543 if (PyErr_Occurred()) SWIG_fail
;
15545 resultobj
= SWIG_From_int(static_cast< int >(result
));
15552 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetPageCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15553 PyObject
*resultobj
= 0;
15554 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15558 PyObject
*swig_obj
[1] ;
15560 if (!args
) SWIG_fail
;
15561 swig_obj
[0] = args
;
15562 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15563 if (!SWIG_IsOK(res1
)) {
15564 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPageCount" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15566 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15568 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15569 result
= (size_t)((wxAuiNotebook
const *)arg1
)->GetPageCount();
15570 wxPyEndAllowThreads(__tstate
);
15571 if (PyErr_Occurred()) SWIG_fail
;
15573 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
15580 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15581 PyObject
*resultobj
= 0;
15582 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15584 wxWindow
*result
= 0 ;
15589 PyObject
* obj0
= 0 ;
15590 PyObject
* obj1
= 0 ;
15591 char * kwnames
[] = {
15592 (char *) "self",(char *) "page_idx", NULL
15595 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_GetPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15596 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15597 if (!SWIG_IsOK(res1
)) {
15598 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPage" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15600 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15601 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15602 if (!SWIG_IsOK(ecode2
)) {
15603 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_GetPage" "', expected argument " "2"" of type '" "size_t""'");
15605 arg2
= static_cast< size_t >(val2
);
15607 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15608 result
= (wxWindow
*)((wxAuiNotebook
const *)arg1
)->GetPage(arg2
);
15609 wxPyEndAllowThreads(__tstate
);
15610 if (PyErr_Occurred()) SWIG_fail
;
15613 resultobj
= wxPyMake_wxObject(result
, 0);
15621 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetPageIndex(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15622 PyObject
*resultobj
= 0;
15623 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15624 wxWindow
*arg2
= (wxWindow
*) 0 ;
15630 PyObject
* obj0
= 0 ;
15631 PyObject
* obj1
= 0 ;
15632 char * kwnames
[] = {
15633 (char *) "self",(char *) "page_wnd", NULL
15636 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_GetPageIndex",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15637 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15638 if (!SWIG_IsOK(res1
)) {
15639 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPageIndex" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15641 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15642 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15643 if (!SWIG_IsOK(res2
)) {
15644 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_GetPageIndex" "', expected argument " "2"" of type '" "wxWindow *""'");
15646 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
15648 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15649 result
= (int)((wxAuiNotebook
const *)arg1
)->GetPageIndex(arg2
);
15650 wxPyEndAllowThreads(__tstate
);
15651 if (PyErr_Occurred()) SWIG_fail
;
15653 resultobj
= SWIG_From_int(static_cast< int >(result
));
15660 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15661 PyObject
*resultobj
= 0;
15662 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15663 wxAuiTabArt
*arg2
= (wxAuiTabArt
*) 0 ;
15668 PyObject
* obj0
= 0 ;
15669 PyObject
* obj1
= 0 ;
15670 char * kwnames
[] = {
15671 (char *) "self",(char *) "art", NULL
15674 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15675 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15676 if (!SWIG_IsOK(res1
)) {
15677 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15679 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15680 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
15681 if (!SWIG_IsOK(res2
)) {
15682 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiTabArt *""'");
15684 arg2
= reinterpret_cast< wxAuiTabArt
* >(argp2
);
15686 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15687 (arg1
)->SetArtProvider(arg2
);
15688 wxPyEndAllowThreads(__tstate
);
15689 if (PyErr_Occurred()) SWIG_fail
;
15691 resultobj
= SWIG_Py_Void();
15698 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15699 PyObject
*resultobj
= 0;
15700 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15701 wxAuiTabArt
*result
= 0 ;
15704 PyObject
*swig_obj
[1] ;
15706 if (!args
) SWIG_fail
;
15707 swig_obj
[0] = args
;
15708 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15709 if (!SWIG_IsOK(res1
)) {
15710 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15712 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15714 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15715 result
= (wxAuiTabArt
*)((wxAuiNotebook
const *)arg1
)->GetArtProvider();
15716 wxPyEndAllowThreads(__tstate
);
15717 if (PyErr_Occurred()) SWIG_fail
;
15719 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
15726 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetUniformBitmapSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15727 PyObject
*resultobj
= 0;
15728 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15733 PyObject
* obj0
= 0 ;
15734 PyObject
* obj1
= 0 ;
15735 char * kwnames
[] = {
15736 (char *) "self",(char *) "size", NULL
15739 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetUniformBitmapSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15740 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15741 if (!SWIG_IsOK(res1
)) {
15742 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetUniformBitmapSize" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15744 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15747 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
15750 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15751 (arg1
)->SetUniformBitmapSize((wxSize
const &)*arg2
);
15752 wxPyEndAllowThreads(__tstate
);
15753 if (PyErr_Occurred()) SWIG_fail
;
15755 resultobj
= SWIG_Py_Void();
15762 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetTabCtrlHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15763 PyObject
*resultobj
= 0;
15764 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15770 PyObject
* obj0
= 0 ;
15771 PyObject
* obj1
= 0 ;
15772 char * kwnames
[] = {
15773 (char *) "self",(char *) "height", NULL
15776 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetTabCtrlHeight",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_SetTabCtrlHeight" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15781 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15782 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15783 if (!SWIG_IsOK(ecode2
)) {
15784 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetTabCtrlHeight" "', expected argument " "2"" of type '" "int""'");
15786 arg2
= static_cast< int >(val2
);
15788 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15789 (arg1
)->SetTabCtrlHeight(arg2
);
15790 wxPyEndAllowThreads(__tstate
);
15791 if (PyErr_Occurred()) SWIG_fail
;
15793 resultobj
= SWIG_Py_Void();
15800 SWIGINTERN PyObject
*AuiNotebook_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15802 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15803 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebook
, SWIG_NewClientData(obj
));
15804 return SWIG_Py_Void();
15807 SWIGINTERN PyObject
*AuiNotebook_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15808 return SWIG_Python_InitShadowInstance(args
);
15811 SWIGINTERN PyObject
*PyAuiDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15813 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15814 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyAuiDockArt
, SWIG_NewClientData(obj
));
15815 return SWIG_Py_Void();
15818 SWIGINTERN PyObject
*PyAuiTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15820 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15821 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyAuiTabArt
, SWIG_NewClientData(obj
));
15822 return SWIG_Py_Void();
15825 static PyMethodDef SwigMethods
[] = {
15826 { (char *)"new_AuiPaneInfo", (PyCFunction
)_wrap_new_AuiPaneInfo
, METH_NOARGS
, NULL
},
15827 { (char *)"delete_AuiPaneInfo", (PyCFunction
)_wrap_delete_AuiPaneInfo
, METH_O
, NULL
},
15828 { (char *)"AuiPaneInfo_SafeSet", (PyCFunction
) _wrap_AuiPaneInfo_SafeSet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15829 { (char *)"AuiPaneInfo_IsOk", (PyCFunction
)_wrap_AuiPaneInfo_IsOk
, METH_O
, NULL
},
15830 { (char *)"AuiPaneInfo_IsFixed", (PyCFunction
)_wrap_AuiPaneInfo_IsFixed
, METH_O
, NULL
},
15831 { (char *)"AuiPaneInfo_IsResizable", (PyCFunction
)_wrap_AuiPaneInfo_IsResizable
, METH_O
, NULL
},
15832 { (char *)"AuiPaneInfo_IsShown", (PyCFunction
)_wrap_AuiPaneInfo_IsShown
, METH_O
, NULL
},
15833 { (char *)"AuiPaneInfo_IsFloating", (PyCFunction
)_wrap_AuiPaneInfo_IsFloating
, METH_O
, NULL
},
15834 { (char *)"AuiPaneInfo_IsDocked", (PyCFunction
)_wrap_AuiPaneInfo_IsDocked
, METH_O
, NULL
},
15835 { (char *)"AuiPaneInfo_IsToolbar", (PyCFunction
)_wrap_AuiPaneInfo_IsToolbar
, METH_O
, NULL
},
15836 { (char *)"AuiPaneInfo_IsTopDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsTopDockable
, METH_O
, NULL
},
15837 { (char *)"AuiPaneInfo_IsBottomDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsBottomDockable
, METH_O
, NULL
},
15838 { (char *)"AuiPaneInfo_IsLeftDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsLeftDockable
, METH_O
, NULL
},
15839 { (char *)"AuiPaneInfo_IsRightDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsRightDockable
, METH_O
, NULL
},
15840 { (char *)"AuiPaneInfo_IsFloatable", (PyCFunction
)_wrap_AuiPaneInfo_IsFloatable
, METH_O
, NULL
},
15841 { (char *)"AuiPaneInfo_IsMovable", (PyCFunction
)_wrap_AuiPaneInfo_IsMovable
, METH_O
, NULL
},
15842 { (char *)"AuiPaneInfo_IsDestroyOnClose", (PyCFunction
)_wrap_AuiPaneInfo_IsDestroyOnClose
, METH_O
, NULL
},
15843 { (char *)"AuiPaneInfo_IsMaximized", (PyCFunction
)_wrap_AuiPaneInfo_IsMaximized
, METH_O
, NULL
},
15844 { (char *)"AuiPaneInfo_HasCaption", (PyCFunction
)_wrap_AuiPaneInfo_HasCaption
, METH_O
, NULL
},
15845 { (char *)"AuiPaneInfo_HasGripper", (PyCFunction
)_wrap_AuiPaneInfo_HasGripper
, METH_O
, NULL
},
15846 { (char *)"AuiPaneInfo_HasBorder", (PyCFunction
)_wrap_AuiPaneInfo_HasBorder
, METH_O
, NULL
},
15847 { (char *)"AuiPaneInfo_HasCloseButton", (PyCFunction
)_wrap_AuiPaneInfo_HasCloseButton
, METH_O
, NULL
},
15848 { (char *)"AuiPaneInfo_HasMaximizeButton", (PyCFunction
)_wrap_AuiPaneInfo_HasMaximizeButton
, METH_O
, NULL
},
15849 { (char *)"AuiPaneInfo_HasMinimizeButton", (PyCFunction
)_wrap_AuiPaneInfo_HasMinimizeButton
, METH_O
, NULL
},
15850 { (char *)"AuiPaneInfo_HasPinButton", (PyCFunction
)_wrap_AuiPaneInfo_HasPinButton
, METH_O
, NULL
},
15851 { (char *)"AuiPaneInfo_HasGripperTop", (PyCFunction
)_wrap_AuiPaneInfo_HasGripperTop
, METH_O
, NULL
},
15852 { (char *)"AuiPaneInfo_Window", (PyCFunction
) _wrap_AuiPaneInfo_Window
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15853 { (char *)"AuiPaneInfo_Name", (PyCFunction
) _wrap_AuiPaneInfo_Name
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15854 { (char *)"AuiPaneInfo_Caption", (PyCFunction
) _wrap_AuiPaneInfo_Caption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15855 { (char *)"AuiPaneInfo_Left", (PyCFunction
)_wrap_AuiPaneInfo_Left
, METH_O
, NULL
},
15856 { (char *)"AuiPaneInfo_Right", (PyCFunction
)_wrap_AuiPaneInfo_Right
, METH_O
, NULL
},
15857 { (char *)"AuiPaneInfo_Top", (PyCFunction
)_wrap_AuiPaneInfo_Top
, METH_O
, NULL
},
15858 { (char *)"AuiPaneInfo_Bottom", (PyCFunction
)_wrap_AuiPaneInfo_Bottom
, METH_O
, NULL
},
15859 { (char *)"AuiPaneInfo_Center", (PyCFunction
)_wrap_AuiPaneInfo_Center
, METH_O
, NULL
},
15860 { (char *)"AuiPaneInfo_Centre", (PyCFunction
)_wrap_AuiPaneInfo_Centre
, METH_O
, NULL
},
15861 { (char *)"AuiPaneInfo_Direction", (PyCFunction
) _wrap_AuiPaneInfo_Direction
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15862 { (char *)"AuiPaneInfo_Layer", (PyCFunction
) _wrap_AuiPaneInfo_Layer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15863 { (char *)"AuiPaneInfo_Row", (PyCFunction
) _wrap_AuiPaneInfo_Row
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15864 { (char *)"AuiPaneInfo_Position", (PyCFunction
) _wrap_AuiPaneInfo_Position
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15865 { (char *)"AuiPaneInfo_BestSize", (PyCFunction
) _wrap_AuiPaneInfo_BestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15866 { (char *)"AuiPaneInfo_MinSize", (PyCFunction
) _wrap_AuiPaneInfo_MinSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15867 { (char *)"AuiPaneInfo_MaxSize", (PyCFunction
) _wrap_AuiPaneInfo_MaxSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15868 { (char *)"AuiPaneInfo_FloatingPosition", (PyCFunction
) _wrap_AuiPaneInfo_FloatingPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15869 { (char *)"AuiPaneInfo_FloatingSize", (PyCFunction
) _wrap_AuiPaneInfo_FloatingSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15870 { (char *)"AuiPaneInfo_Fixed", (PyCFunction
)_wrap_AuiPaneInfo_Fixed
, METH_O
, NULL
},
15871 { (char *)"AuiPaneInfo_Resizable", (PyCFunction
) _wrap_AuiPaneInfo_Resizable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15872 { (char *)"AuiPaneInfo_Dock", (PyCFunction
)_wrap_AuiPaneInfo_Dock
, METH_O
, NULL
},
15873 { (char *)"AuiPaneInfo_Float", (PyCFunction
)_wrap_AuiPaneInfo_Float
, METH_O
, NULL
},
15874 { (char *)"AuiPaneInfo_Hide", (PyCFunction
)_wrap_AuiPaneInfo_Hide
, METH_O
, NULL
},
15875 { (char *)"AuiPaneInfo_Show", (PyCFunction
) _wrap_AuiPaneInfo_Show
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15876 { (char *)"AuiPaneInfo_CaptionVisible", (PyCFunction
) _wrap_AuiPaneInfo_CaptionVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15877 { (char *)"AuiPaneInfo_Maximize", (PyCFunction
)_wrap_AuiPaneInfo_Maximize
, METH_O
, NULL
},
15878 { (char *)"AuiPaneInfo_Restore", (PyCFunction
)_wrap_AuiPaneInfo_Restore
, METH_O
, NULL
},
15879 { (char *)"AuiPaneInfo_PaneBorder", (PyCFunction
) _wrap_AuiPaneInfo_PaneBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15880 { (char *)"AuiPaneInfo_Gripper", (PyCFunction
) _wrap_AuiPaneInfo_Gripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15881 { (char *)"AuiPaneInfo_GripperTop", (PyCFunction
) _wrap_AuiPaneInfo_GripperTop
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15882 { (char *)"AuiPaneInfo_CloseButton", (PyCFunction
) _wrap_AuiPaneInfo_CloseButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15883 { (char *)"AuiPaneInfo_MaximizeButton", (PyCFunction
) _wrap_AuiPaneInfo_MaximizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15884 { (char *)"AuiPaneInfo_MinimizeButton", (PyCFunction
) _wrap_AuiPaneInfo_MinimizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15885 { (char *)"AuiPaneInfo_PinButton", (PyCFunction
) _wrap_AuiPaneInfo_PinButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15886 { (char *)"AuiPaneInfo_DestroyOnClose", (PyCFunction
) _wrap_AuiPaneInfo_DestroyOnClose
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15887 { (char *)"AuiPaneInfo_TopDockable", (PyCFunction
) _wrap_AuiPaneInfo_TopDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15888 { (char *)"AuiPaneInfo_BottomDockable", (PyCFunction
) _wrap_AuiPaneInfo_BottomDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15889 { (char *)"AuiPaneInfo_LeftDockable", (PyCFunction
) _wrap_AuiPaneInfo_LeftDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15890 { (char *)"AuiPaneInfo_RightDockable", (PyCFunction
) _wrap_AuiPaneInfo_RightDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15891 { (char *)"AuiPaneInfo_Floatable", (PyCFunction
) _wrap_AuiPaneInfo_Floatable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15892 { (char *)"AuiPaneInfo_Movable", (PyCFunction
) _wrap_AuiPaneInfo_Movable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15893 { (char *)"AuiPaneInfo_SaveHidden", (PyCFunction
)_wrap_AuiPaneInfo_SaveHidden
, METH_O
, NULL
},
15894 { (char *)"AuiPaneInfo_RestoreHidden", (PyCFunction
)_wrap_AuiPaneInfo_RestoreHidden
, METH_O
, NULL
},
15895 { (char *)"AuiPaneInfo_Dockable", (PyCFunction
) _wrap_AuiPaneInfo_Dockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15896 { (char *)"AuiPaneInfo_DefaultPane", (PyCFunction
)_wrap_AuiPaneInfo_DefaultPane
, METH_O
, NULL
},
15897 { (char *)"AuiPaneInfo_CentrePane", (PyCFunction
)_wrap_AuiPaneInfo_CentrePane
, METH_O
, NULL
},
15898 { (char *)"AuiPaneInfo_CenterPane", (PyCFunction
)_wrap_AuiPaneInfo_CenterPane
, METH_O
, NULL
},
15899 { (char *)"AuiPaneInfo_ToolbarPane", (PyCFunction
)_wrap_AuiPaneInfo_ToolbarPane
, METH_O
, NULL
},
15900 { (char *)"AuiPaneInfo_SetFlag", (PyCFunction
) _wrap_AuiPaneInfo_SetFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15901 { (char *)"AuiPaneInfo_HasFlag", (PyCFunction
) _wrap_AuiPaneInfo_HasFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15902 { (char *)"AuiPaneInfo_name_set", _wrap_AuiPaneInfo_name_set
, METH_VARARGS
, NULL
},
15903 { (char *)"AuiPaneInfo_name_get", (PyCFunction
)_wrap_AuiPaneInfo_name_get
, METH_O
, NULL
},
15904 { (char *)"AuiPaneInfo_caption_set", _wrap_AuiPaneInfo_caption_set
, METH_VARARGS
, NULL
},
15905 { (char *)"AuiPaneInfo_caption_get", (PyCFunction
)_wrap_AuiPaneInfo_caption_get
, METH_O
, NULL
},
15906 { (char *)"AuiPaneInfo_window_set", _wrap_AuiPaneInfo_window_set
, METH_VARARGS
, NULL
},
15907 { (char *)"AuiPaneInfo_window_get", (PyCFunction
)_wrap_AuiPaneInfo_window_get
, METH_O
, NULL
},
15908 { (char *)"AuiPaneInfo_frame_set", _wrap_AuiPaneInfo_frame_set
, METH_VARARGS
, NULL
},
15909 { (char *)"AuiPaneInfo_frame_get", (PyCFunction
)_wrap_AuiPaneInfo_frame_get
, METH_O
, NULL
},
15910 { (char *)"AuiPaneInfo_state_set", _wrap_AuiPaneInfo_state_set
, METH_VARARGS
, NULL
},
15911 { (char *)"AuiPaneInfo_state_get", (PyCFunction
)_wrap_AuiPaneInfo_state_get
, METH_O
, NULL
},
15912 { (char *)"AuiPaneInfo_dock_direction_set", _wrap_AuiPaneInfo_dock_direction_set
, METH_VARARGS
, NULL
},
15913 { (char *)"AuiPaneInfo_dock_direction_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_direction_get
, METH_O
, NULL
},
15914 { (char *)"AuiPaneInfo_dock_layer_set", _wrap_AuiPaneInfo_dock_layer_set
, METH_VARARGS
, NULL
},
15915 { (char *)"AuiPaneInfo_dock_layer_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_layer_get
, METH_O
, NULL
},
15916 { (char *)"AuiPaneInfo_dock_row_set", _wrap_AuiPaneInfo_dock_row_set
, METH_VARARGS
, NULL
},
15917 { (char *)"AuiPaneInfo_dock_row_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_row_get
, METH_O
, NULL
},
15918 { (char *)"AuiPaneInfo_dock_pos_set", _wrap_AuiPaneInfo_dock_pos_set
, METH_VARARGS
, NULL
},
15919 { (char *)"AuiPaneInfo_dock_pos_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_pos_get
, METH_O
, NULL
},
15920 { (char *)"AuiPaneInfo_best_size_set", _wrap_AuiPaneInfo_best_size_set
, METH_VARARGS
, NULL
},
15921 { (char *)"AuiPaneInfo_best_size_get", (PyCFunction
)_wrap_AuiPaneInfo_best_size_get
, METH_O
, NULL
},
15922 { (char *)"AuiPaneInfo_min_size_set", _wrap_AuiPaneInfo_min_size_set
, METH_VARARGS
, NULL
},
15923 { (char *)"AuiPaneInfo_min_size_get", (PyCFunction
)_wrap_AuiPaneInfo_min_size_get
, METH_O
, NULL
},
15924 { (char *)"AuiPaneInfo_max_size_set", _wrap_AuiPaneInfo_max_size_set
, METH_VARARGS
, NULL
},
15925 { (char *)"AuiPaneInfo_max_size_get", (PyCFunction
)_wrap_AuiPaneInfo_max_size_get
, METH_O
, NULL
},
15926 { (char *)"AuiPaneInfo_floating_pos_set", _wrap_AuiPaneInfo_floating_pos_set
, METH_VARARGS
, NULL
},
15927 { (char *)"AuiPaneInfo_floating_pos_get", (PyCFunction
)_wrap_AuiPaneInfo_floating_pos_get
, METH_O
, NULL
},
15928 { (char *)"AuiPaneInfo_floating_size_set", _wrap_AuiPaneInfo_floating_size_set
, METH_VARARGS
, NULL
},
15929 { (char *)"AuiPaneInfo_floating_size_get", (PyCFunction
)_wrap_AuiPaneInfo_floating_size_get
, METH_O
, NULL
},
15930 { (char *)"AuiPaneInfo_dock_proportion_set", _wrap_AuiPaneInfo_dock_proportion_set
, METH_VARARGS
, NULL
},
15931 { (char *)"AuiPaneInfo_dock_proportion_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_proportion_get
, METH_O
, NULL
},
15932 { (char *)"AuiPaneInfo_buttons_set", _wrap_AuiPaneInfo_buttons_set
, METH_VARARGS
, NULL
},
15933 { (char *)"AuiPaneInfo_buttons_get", (PyCFunction
)_wrap_AuiPaneInfo_buttons_get
, METH_O
, NULL
},
15934 { (char *)"AuiPaneInfo_rect_set", _wrap_AuiPaneInfo_rect_set
, METH_VARARGS
, NULL
},
15935 { (char *)"AuiPaneInfo_rect_get", (PyCFunction
)_wrap_AuiPaneInfo_rect_get
, METH_O
, NULL
},
15936 { (char *)"AuiPaneInfo_swigregister", AuiPaneInfo_swigregister
, METH_VARARGS
, NULL
},
15937 { (char *)"AuiPaneInfo_swiginit", AuiPaneInfo_swiginit
, METH_VARARGS
, NULL
},
15938 { (char *)"new_AuiManager", (PyCFunction
) _wrap_new_AuiManager
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15939 { (char *)"delete_AuiManager", (PyCFunction
)_wrap_delete_AuiManager
, METH_O
, NULL
},
15940 { (char *)"AuiManager_UnInit", (PyCFunction
)_wrap_AuiManager_UnInit
, METH_O
, NULL
},
15941 { (char *)"AuiManager_SetFlags", (PyCFunction
) _wrap_AuiManager_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15942 { (char *)"AuiManager_GetFlags", (PyCFunction
)_wrap_AuiManager_GetFlags
, METH_O
, NULL
},
15943 { (char *)"AuiManager_SetManagedWindow", (PyCFunction
) _wrap_AuiManager_SetManagedWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15944 { (char *)"AuiManager_GetManagedWindow", (PyCFunction
)_wrap_AuiManager_GetManagedWindow
, METH_O
, NULL
},
15945 { (char *)"AuiManager_GetManager", (PyCFunction
) _wrap_AuiManager_GetManager
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15946 { (char *)"AuiManager_SetArtProvider", (PyCFunction
) _wrap_AuiManager_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15947 { (char *)"AuiManager_GetArtProvider", (PyCFunction
)_wrap_AuiManager_GetArtProvider
, METH_O
, NULL
},
15948 { (char *)"AuiManager__GetPaneByWidget", (PyCFunction
) _wrap_AuiManager__GetPaneByWidget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15949 { (char *)"AuiManager__GetPaneByName", (PyCFunction
) _wrap_AuiManager__GetPaneByName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15950 { (char *)"AuiManager_GetAllPanes", (PyCFunction
)_wrap_AuiManager_GetAllPanes
, METH_O
, NULL
},
15951 { (char *)"AuiManager__AddPane1", (PyCFunction
) _wrap_AuiManager__AddPane1
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15952 { (char *)"AuiManager_AddPane", (PyCFunction
) _wrap_AuiManager_AddPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15953 { (char *)"AuiManager__AddPane2", (PyCFunction
) _wrap_AuiManager__AddPane2
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15954 { (char *)"AuiManager_InsertPane", (PyCFunction
) _wrap_AuiManager_InsertPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15955 { (char *)"AuiManager_DetachPane", (PyCFunction
) _wrap_AuiManager_DetachPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15956 { (char *)"AuiManager_ClosePane", (PyCFunction
) _wrap_AuiManager_ClosePane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15957 { (char *)"AuiManager_MaximizePane", (PyCFunction
) _wrap_AuiManager_MaximizePane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15958 { (char *)"AuiManager_RestorePane", (PyCFunction
) _wrap_AuiManager_RestorePane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15959 { (char *)"AuiManager_RestoreMaximizedPane", (PyCFunction
)_wrap_AuiManager_RestoreMaximizedPane
, METH_O
, NULL
},
15960 { (char *)"AuiManager_SavePaneInfo", (PyCFunction
) _wrap_AuiManager_SavePaneInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15961 { (char *)"AuiManager_LoadPaneInfo", (PyCFunction
) _wrap_AuiManager_LoadPaneInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15962 { (char *)"AuiManager_SavePerspective", (PyCFunction
)_wrap_AuiManager_SavePerspective
, METH_O
, NULL
},
15963 { (char *)"AuiManager_LoadPerspective", (PyCFunction
) _wrap_AuiManager_LoadPerspective
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15964 { (char *)"AuiManager_Update", (PyCFunction
)_wrap_AuiManager_Update
, METH_O
, NULL
},
15965 { (char *)"AuiManager_CreateFloatingFrame", (PyCFunction
) _wrap_AuiManager_CreateFloatingFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15966 { (char *)"AuiManager_CalculateHintRect", (PyCFunction
) _wrap_AuiManager_CalculateHintRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15967 { (char *)"AuiManager_DrawHintRect", (PyCFunction
) _wrap_AuiManager_DrawHintRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15968 { (char *)"AuiManager_ShowHint", (PyCFunction
) _wrap_AuiManager_ShowHint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15969 { (char *)"AuiManager_HideHint", (PyCFunction
)_wrap_AuiManager_HideHint
, METH_O
, NULL
},
15970 { (char *)"AuiManager_OnRender", (PyCFunction
) _wrap_AuiManager_OnRender
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15971 { (char *)"AuiManager_OnPaneButton", (PyCFunction
) _wrap_AuiManager_OnPaneButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15972 { (char *)"AuiManager_swigregister", AuiManager_swigregister
, METH_VARARGS
, NULL
},
15973 { (char *)"AuiManager_swiginit", AuiManager_swiginit
, METH_VARARGS
, NULL
},
15974 { (char *)"new_AuiManagerEvent", (PyCFunction
) _wrap_new_AuiManagerEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15975 { (char *)"AuiManagerEvent_Clone", (PyCFunction
)_wrap_AuiManagerEvent_Clone
, METH_O
, NULL
},
15976 { (char *)"AuiManagerEvent_SetManager", (PyCFunction
) _wrap_AuiManagerEvent_SetManager
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15977 { (char *)"AuiManagerEvent_SetPane", (PyCFunction
) _wrap_AuiManagerEvent_SetPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15978 { (char *)"AuiManagerEvent_SetButton", (PyCFunction
) _wrap_AuiManagerEvent_SetButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15979 { (char *)"AuiManagerEvent_SetDC", (PyCFunction
) _wrap_AuiManagerEvent_SetDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15980 { (char *)"AuiManagerEvent_GetManager", (PyCFunction
)_wrap_AuiManagerEvent_GetManager
, METH_O
, NULL
},
15981 { (char *)"AuiManagerEvent_GetPane", (PyCFunction
)_wrap_AuiManagerEvent_GetPane
, METH_O
, NULL
},
15982 { (char *)"AuiManagerEvent_GetButton", (PyCFunction
)_wrap_AuiManagerEvent_GetButton
, METH_O
, NULL
},
15983 { (char *)"AuiManagerEvent_GetDC", (PyCFunction
)_wrap_AuiManagerEvent_GetDC
, METH_O
, NULL
},
15984 { (char *)"AuiManagerEvent_Veto", (PyCFunction
) _wrap_AuiManagerEvent_Veto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15985 { (char *)"AuiManagerEvent_GetVeto", (PyCFunction
)_wrap_AuiManagerEvent_GetVeto
, METH_O
, NULL
},
15986 { (char *)"AuiManagerEvent_SetCanVeto", (PyCFunction
) _wrap_AuiManagerEvent_SetCanVeto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15987 { (char *)"AuiManagerEvent_CanVeto", (PyCFunction
)_wrap_AuiManagerEvent_CanVeto
, METH_O
, NULL
},
15988 { (char *)"AuiManagerEvent_manager_set", _wrap_AuiManagerEvent_manager_set
, METH_VARARGS
, NULL
},
15989 { (char *)"AuiManagerEvent_manager_get", (PyCFunction
)_wrap_AuiManagerEvent_manager_get
, METH_O
, NULL
},
15990 { (char *)"AuiManagerEvent_pane_set", _wrap_AuiManagerEvent_pane_set
, METH_VARARGS
, NULL
},
15991 { (char *)"AuiManagerEvent_pane_get", (PyCFunction
)_wrap_AuiManagerEvent_pane_get
, METH_O
, NULL
},
15992 { (char *)"AuiManagerEvent_button_set", _wrap_AuiManagerEvent_button_set
, METH_VARARGS
, NULL
},
15993 { (char *)"AuiManagerEvent_button_get", (PyCFunction
)_wrap_AuiManagerEvent_button_get
, METH_O
, NULL
},
15994 { (char *)"AuiManagerEvent_veto_flag_set", _wrap_AuiManagerEvent_veto_flag_set
, METH_VARARGS
, NULL
},
15995 { (char *)"AuiManagerEvent_veto_flag_get", (PyCFunction
)_wrap_AuiManagerEvent_veto_flag_get
, METH_O
, NULL
},
15996 { (char *)"AuiManagerEvent_canveto_flag_set", _wrap_AuiManagerEvent_canveto_flag_set
, METH_VARARGS
, NULL
},
15997 { (char *)"AuiManagerEvent_canveto_flag_get", (PyCFunction
)_wrap_AuiManagerEvent_canveto_flag_get
, METH_O
, NULL
},
15998 { (char *)"AuiManagerEvent_dc_set", _wrap_AuiManagerEvent_dc_set
, METH_VARARGS
, NULL
},
15999 { (char *)"AuiManagerEvent_dc_get", (PyCFunction
)_wrap_AuiManagerEvent_dc_get
, METH_O
, NULL
},
16000 { (char *)"AuiManagerEvent_swigregister", AuiManagerEvent_swigregister
, METH_VARARGS
, NULL
},
16001 { (char *)"AuiManagerEvent_swiginit", AuiManagerEvent_swiginit
, METH_VARARGS
, NULL
},
16002 { (char *)"new_AuiDockInfo", (PyCFunction
)_wrap_new_AuiDockInfo
, METH_NOARGS
, NULL
},
16003 { (char *)"AuiDockInfo_IsOk", (PyCFunction
)_wrap_AuiDockInfo_IsOk
, METH_O
, NULL
},
16004 { (char *)"AuiDockInfo_IsHorizontal", (PyCFunction
)_wrap_AuiDockInfo_IsHorizontal
, METH_O
, NULL
},
16005 { (char *)"AuiDockInfo_IsVertical", (PyCFunction
)_wrap_AuiDockInfo_IsVertical
, METH_O
, NULL
},
16006 { (char *)"AuiDockInfo_panes_set", _wrap_AuiDockInfo_panes_set
, METH_VARARGS
, NULL
},
16007 { (char *)"AuiDockInfo_panes_get", (PyCFunction
)_wrap_AuiDockInfo_panes_get
, METH_O
, NULL
},
16008 { (char *)"AuiDockInfo_rect_set", _wrap_AuiDockInfo_rect_set
, METH_VARARGS
, NULL
},
16009 { (char *)"AuiDockInfo_rect_get", (PyCFunction
)_wrap_AuiDockInfo_rect_get
, METH_O
, NULL
},
16010 { (char *)"AuiDockInfo_dock_direction_set", _wrap_AuiDockInfo_dock_direction_set
, METH_VARARGS
, NULL
},
16011 { (char *)"AuiDockInfo_dock_direction_get", (PyCFunction
)_wrap_AuiDockInfo_dock_direction_get
, METH_O
, NULL
},
16012 { (char *)"AuiDockInfo_dock_layer_set", _wrap_AuiDockInfo_dock_layer_set
, METH_VARARGS
, NULL
},
16013 { (char *)"AuiDockInfo_dock_layer_get", (PyCFunction
)_wrap_AuiDockInfo_dock_layer_get
, METH_O
, NULL
},
16014 { (char *)"AuiDockInfo_dock_row_set", _wrap_AuiDockInfo_dock_row_set
, METH_VARARGS
, NULL
},
16015 { (char *)"AuiDockInfo_dock_row_get", (PyCFunction
)_wrap_AuiDockInfo_dock_row_get
, METH_O
, NULL
},
16016 { (char *)"AuiDockInfo_size_set", _wrap_AuiDockInfo_size_set
, METH_VARARGS
, NULL
},
16017 { (char *)"AuiDockInfo_size_get", (PyCFunction
)_wrap_AuiDockInfo_size_get
, METH_O
, NULL
},
16018 { (char *)"AuiDockInfo_min_size_set", _wrap_AuiDockInfo_min_size_set
, METH_VARARGS
, NULL
},
16019 { (char *)"AuiDockInfo_min_size_get", (PyCFunction
)_wrap_AuiDockInfo_min_size_get
, METH_O
, NULL
},
16020 { (char *)"AuiDockInfo_resizable_set", _wrap_AuiDockInfo_resizable_set
, METH_VARARGS
, NULL
},
16021 { (char *)"AuiDockInfo_resizable_get", (PyCFunction
)_wrap_AuiDockInfo_resizable_get
, METH_O
, NULL
},
16022 { (char *)"AuiDockInfo_toolbar_set", _wrap_AuiDockInfo_toolbar_set
, METH_VARARGS
, NULL
},
16023 { (char *)"AuiDockInfo_toolbar_get", (PyCFunction
)_wrap_AuiDockInfo_toolbar_get
, METH_O
, NULL
},
16024 { (char *)"AuiDockInfo_fixed_set", _wrap_AuiDockInfo_fixed_set
, METH_VARARGS
, NULL
},
16025 { (char *)"AuiDockInfo_fixed_get", (PyCFunction
)_wrap_AuiDockInfo_fixed_get
, METH_O
, NULL
},
16026 { (char *)"delete_AuiDockInfo", (PyCFunction
)_wrap_delete_AuiDockInfo
, METH_O
, NULL
},
16027 { (char *)"AuiDockInfo_swigregister", AuiDockInfo_swigregister
, METH_VARARGS
, NULL
},
16028 { (char *)"AuiDockInfo_swiginit", AuiDockInfo_swiginit
, METH_VARARGS
, NULL
},
16029 { (char *)"AuiDockUIPart_type_set", _wrap_AuiDockUIPart_type_set
, METH_VARARGS
, NULL
},
16030 { (char *)"AuiDockUIPart_type_get", (PyCFunction
)_wrap_AuiDockUIPart_type_get
, METH_O
, NULL
},
16031 { (char *)"AuiDockUIPart_orientation_set", _wrap_AuiDockUIPart_orientation_set
, METH_VARARGS
, NULL
},
16032 { (char *)"AuiDockUIPart_orientation_get", (PyCFunction
)_wrap_AuiDockUIPart_orientation_get
, METH_O
, NULL
},
16033 { (char *)"AuiDockUIPart_dock_set", _wrap_AuiDockUIPart_dock_set
, METH_VARARGS
, NULL
},
16034 { (char *)"AuiDockUIPart_dock_get", (PyCFunction
)_wrap_AuiDockUIPart_dock_get
, METH_O
, NULL
},
16035 { (char *)"AuiDockUIPart_pane_set", _wrap_AuiDockUIPart_pane_set
, METH_VARARGS
, NULL
},
16036 { (char *)"AuiDockUIPart_pane_get", (PyCFunction
)_wrap_AuiDockUIPart_pane_get
, METH_O
, NULL
},
16037 { (char *)"AuiDockUIPart_button_set", _wrap_AuiDockUIPart_button_set
, METH_VARARGS
, NULL
},
16038 { (char *)"AuiDockUIPart_button_get", (PyCFunction
)_wrap_AuiDockUIPart_button_get
, METH_O
, NULL
},
16039 { (char *)"AuiDockUIPart_cont_sizer_set", _wrap_AuiDockUIPart_cont_sizer_set
, METH_VARARGS
, NULL
},
16040 { (char *)"AuiDockUIPart_cont_sizer_get", (PyCFunction
)_wrap_AuiDockUIPart_cont_sizer_get
, METH_O
, NULL
},
16041 { (char *)"AuiDockUIPart_sizer_item_set", _wrap_AuiDockUIPart_sizer_item_set
, METH_VARARGS
, NULL
},
16042 { (char *)"AuiDockUIPart_sizer_item_get", (PyCFunction
)_wrap_AuiDockUIPart_sizer_item_get
, METH_O
, NULL
},
16043 { (char *)"AuiDockUIPart_rect_set", _wrap_AuiDockUIPart_rect_set
, METH_VARARGS
, NULL
},
16044 { (char *)"AuiDockUIPart_rect_get", (PyCFunction
)_wrap_AuiDockUIPart_rect_get
, METH_O
, NULL
},
16045 { (char *)"delete_AuiDockUIPart", (PyCFunction
)_wrap_delete_AuiDockUIPart
, METH_O
, NULL
},
16046 { (char *)"AuiDockUIPart_swigregister", AuiDockUIPart_swigregister
, METH_VARARGS
, NULL
},
16047 { (char *)"AuiPaneButton_button_id_set", _wrap_AuiPaneButton_button_id_set
, METH_VARARGS
, NULL
},
16048 { (char *)"AuiPaneButton_button_id_get", (PyCFunction
)_wrap_AuiPaneButton_button_id_get
, METH_O
, NULL
},
16049 { (char *)"delete_AuiPaneButton", (PyCFunction
)_wrap_delete_AuiPaneButton
, METH_O
, NULL
},
16050 { (char *)"AuiPaneButton_swigregister", AuiPaneButton_swigregister
, METH_VARARGS
, NULL
},
16051 { (char *)"delete_AuiDockArt", (PyCFunction
)_wrap_delete_AuiDockArt
, METH_O
, NULL
},
16052 { (char *)"AuiDockArt_GetMetric", (PyCFunction
) _wrap_AuiDockArt_GetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16053 { (char *)"AuiDockArt_SetMetric", (PyCFunction
) _wrap_AuiDockArt_SetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16054 { (char *)"AuiDockArt_SetFont", (PyCFunction
) _wrap_AuiDockArt_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16055 { (char *)"AuiDockArt_GetFont", (PyCFunction
) _wrap_AuiDockArt_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16056 { (char *)"AuiDockArt_GetColour", (PyCFunction
) _wrap_AuiDockArt_GetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16057 { (char *)"AuiDockArt_SetColour", (PyCFunction
) _wrap_AuiDockArt_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16058 { (char *)"AuiDockArt_GetColor", (PyCFunction
) _wrap_AuiDockArt_GetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16059 { (char *)"AuiDockArt_SetColor", (PyCFunction
) _wrap_AuiDockArt_SetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16060 { (char *)"AuiDockArt_DrawSash", (PyCFunction
) _wrap_AuiDockArt_DrawSash
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16061 { (char *)"AuiDockArt_DrawBackground", (PyCFunction
) _wrap_AuiDockArt_DrawBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16062 { (char *)"AuiDockArt_DrawCaption", (PyCFunction
) _wrap_AuiDockArt_DrawCaption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16063 { (char *)"AuiDockArt_DrawGripper", (PyCFunction
) _wrap_AuiDockArt_DrawGripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16064 { (char *)"AuiDockArt_DrawBorder", (PyCFunction
) _wrap_AuiDockArt_DrawBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16065 { (char *)"AuiDockArt_DrawPaneButton", (PyCFunction
) _wrap_AuiDockArt_DrawPaneButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16066 { (char *)"AuiDockArt_swigregister", AuiDockArt_swigregister
, METH_VARARGS
, NULL
},
16067 { (char *)"new_AuiDefaultDockArt", (PyCFunction
)_wrap_new_AuiDefaultDockArt
, METH_NOARGS
, NULL
},
16068 { (char *)"AuiDefaultDockArt_swigregister", AuiDefaultDockArt_swigregister
, METH_VARARGS
, NULL
},
16069 { (char *)"AuiDefaultDockArt_swiginit", AuiDefaultDockArt_swiginit
, METH_VARARGS
, NULL
},
16070 { (char *)"new_AuiFloatingFrame", (PyCFunction
) _wrap_new_AuiFloatingFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16071 { (char *)"delete_AuiFloatingFrame", (PyCFunction
)_wrap_delete_AuiFloatingFrame
, METH_O
, NULL
},
16072 { (char *)"AuiFloatingFrame_SetPaneWindow", (PyCFunction
) _wrap_AuiFloatingFrame_SetPaneWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16073 { (char *)"AuiFloatingFrame_GetOwnerManager", (PyCFunction
)_wrap_AuiFloatingFrame_GetOwnerManager
, METH_O
, NULL
},
16074 { (char *)"AuiFloatingFrame_swigregister", AuiFloatingFrame_swigregister
, METH_VARARGS
, NULL
},
16075 { (char *)"AuiFloatingFrame_swiginit", AuiFloatingFrame_swiginit
, METH_VARARGS
, NULL
},
16076 { (char *)"new_AuiNotebookEvent", (PyCFunction
) _wrap_new_AuiNotebookEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16077 { (char *)"AuiNotebookEvent_SetSelection", (PyCFunction
) _wrap_AuiNotebookEvent_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16078 { (char *)"AuiNotebookEvent_GetSelection", (PyCFunction
)_wrap_AuiNotebookEvent_GetSelection
, METH_O
, NULL
},
16079 { (char *)"AuiNotebookEvent_SetOldSelection", (PyCFunction
) _wrap_AuiNotebookEvent_SetOldSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16080 { (char *)"AuiNotebookEvent_GetOldSelection", (PyCFunction
)_wrap_AuiNotebookEvent_GetOldSelection
, METH_O
, NULL
},
16081 { (char *)"AuiNotebookEvent_SetDragSource", (PyCFunction
) _wrap_AuiNotebookEvent_SetDragSource
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16082 { (char *)"AuiNotebookEvent_GetDragSource", (PyCFunction
)_wrap_AuiNotebookEvent_GetDragSource
, METH_O
, NULL
},
16083 { (char *)"AuiNotebookEvent_old_selection_set", _wrap_AuiNotebookEvent_old_selection_set
, METH_VARARGS
, NULL
},
16084 { (char *)"AuiNotebookEvent_old_selection_get", (PyCFunction
)_wrap_AuiNotebookEvent_old_selection_get
, METH_O
, NULL
},
16085 { (char *)"AuiNotebookEvent_selection_set", _wrap_AuiNotebookEvent_selection_set
, METH_VARARGS
, NULL
},
16086 { (char *)"AuiNotebookEvent_selection_get", (PyCFunction
)_wrap_AuiNotebookEvent_selection_get
, METH_O
, NULL
},
16087 { (char *)"AuiNotebookEvent_drag_source_set", _wrap_AuiNotebookEvent_drag_source_set
, METH_VARARGS
, NULL
},
16088 { (char *)"AuiNotebookEvent_drag_source_get", (PyCFunction
)_wrap_AuiNotebookEvent_drag_source_get
, METH_O
, NULL
},
16089 { (char *)"AuiNotebookEvent_swigregister", AuiNotebookEvent_swigregister
, METH_VARARGS
, NULL
},
16090 { (char *)"AuiNotebookEvent_swiginit", AuiNotebookEvent_swiginit
, METH_VARARGS
, NULL
},
16091 { (char *)"AuiNotebookPage_window_set", _wrap_AuiNotebookPage_window_set
, METH_VARARGS
, NULL
},
16092 { (char *)"AuiNotebookPage_window_get", (PyCFunction
)_wrap_AuiNotebookPage_window_get
, METH_O
, NULL
},
16093 { (char *)"AuiNotebookPage_caption_set", _wrap_AuiNotebookPage_caption_set
, METH_VARARGS
, NULL
},
16094 { (char *)"AuiNotebookPage_caption_get", (PyCFunction
)_wrap_AuiNotebookPage_caption_get
, METH_O
, NULL
},
16095 { (char *)"AuiNotebookPage_bitmap_set", _wrap_AuiNotebookPage_bitmap_set
, METH_VARARGS
, NULL
},
16096 { (char *)"AuiNotebookPage_bitmap_get", (PyCFunction
)_wrap_AuiNotebookPage_bitmap_get
, METH_O
, NULL
},
16097 { (char *)"AuiNotebookPage_rect_set", _wrap_AuiNotebookPage_rect_set
, METH_VARARGS
, NULL
},
16098 { (char *)"AuiNotebookPage_rect_get", (PyCFunction
)_wrap_AuiNotebookPage_rect_get
, METH_O
, NULL
},
16099 { (char *)"AuiNotebookPage_active_set", _wrap_AuiNotebookPage_active_set
, METH_VARARGS
, NULL
},
16100 { (char *)"AuiNotebookPage_active_get", (PyCFunction
)_wrap_AuiNotebookPage_active_get
, METH_O
, NULL
},
16101 { (char *)"AuiNotebookPage_swigregister", AuiNotebookPage_swigregister
, METH_VARARGS
, NULL
},
16102 { (char *)"AuiTabContainerButton_id_set", _wrap_AuiTabContainerButton_id_set
, METH_VARARGS
, NULL
},
16103 { (char *)"AuiTabContainerButton_id_get", (PyCFunction
)_wrap_AuiTabContainerButton_id_get
, METH_O
, NULL
},
16104 { (char *)"AuiTabContainerButton_cur_state_set", _wrap_AuiTabContainerButton_cur_state_set
, METH_VARARGS
, NULL
},
16105 { (char *)"AuiTabContainerButton_cur_state_get", (PyCFunction
)_wrap_AuiTabContainerButton_cur_state_get
, METH_O
, NULL
},
16106 { (char *)"AuiTabContainerButton_location_set", _wrap_AuiTabContainerButton_location_set
, METH_VARARGS
, NULL
},
16107 { (char *)"AuiTabContainerButton_location_get", (PyCFunction
)_wrap_AuiTabContainerButton_location_get
, METH_O
, NULL
},
16108 { (char *)"AuiTabContainerButton_bitmap_set", _wrap_AuiTabContainerButton_bitmap_set
, METH_VARARGS
, NULL
},
16109 { (char *)"AuiTabContainerButton_bitmap_get", (PyCFunction
)_wrap_AuiTabContainerButton_bitmap_get
, METH_O
, NULL
},
16110 { (char *)"AuiTabContainerButton_dis_bitmap_set", _wrap_AuiTabContainerButton_dis_bitmap_set
, METH_VARARGS
, NULL
},
16111 { (char *)"AuiTabContainerButton_dis_bitmap_get", (PyCFunction
)_wrap_AuiTabContainerButton_dis_bitmap_get
, METH_O
, NULL
},
16112 { (char *)"AuiTabContainerButton_rect_set", _wrap_AuiTabContainerButton_rect_set
, METH_VARARGS
, NULL
},
16113 { (char *)"AuiTabContainerButton_rect_get", (PyCFunction
)_wrap_AuiTabContainerButton_rect_get
, METH_O
, NULL
},
16114 { (char *)"AuiTabContainerButton_swigregister", AuiTabContainerButton_swigregister
, METH_VARARGS
, NULL
},
16115 { (char *)"delete_AuiTabArt", (PyCFunction
)_wrap_delete_AuiTabArt
, METH_O
, NULL
},
16116 { (char *)"AuiTabArt_Clone", (PyCFunction
)_wrap_AuiTabArt_Clone
, METH_O
, NULL
},
16117 { (char *)"AuiTabArt_SetFlags", (PyCFunction
) _wrap_AuiTabArt_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16118 { (char *)"AuiTabArt_SetSizingInfo", (PyCFunction
) _wrap_AuiTabArt_SetSizingInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16119 { (char *)"AuiTabArt_SetNormalFont", (PyCFunction
) _wrap_AuiTabArt_SetNormalFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16120 { (char *)"AuiTabArt_SetSelectedFont", (PyCFunction
) _wrap_AuiTabArt_SetSelectedFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16121 { (char *)"AuiTabArt_SetMeasuringFont", (PyCFunction
) _wrap_AuiTabArt_SetMeasuringFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16122 { (char *)"AuiTabArt_DrawBackground", (PyCFunction
) _wrap_AuiTabArt_DrawBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16123 { (char *)"AuiTabArt_DrawTab", (PyCFunction
) _wrap_AuiTabArt_DrawTab
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16124 { (char *)"AuiTabArt_DrawButton", (PyCFunction
) _wrap_AuiTabArt_DrawButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16125 { (char *)"AuiTabArt_GetIndentSize", (PyCFunction
)_wrap_AuiTabArt_GetIndentSize
, METH_O
, NULL
},
16126 { (char *)"AuiTabArt_GetTabSize", (PyCFunction
) _wrap_AuiTabArt_GetTabSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16127 { (char *)"AuiTabArt_ShowWindowList", (PyCFunction
) _wrap_AuiTabArt_ShowWindowList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16128 { (char *)"AuiTabArt_GetBestTabCtrlSize", (PyCFunction
) _wrap_AuiTabArt_GetBestTabCtrlSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16129 { (char *)"AuiTabArt_swigregister", AuiTabArt_swigregister
, METH_VARARGS
, NULL
},
16130 { (char *)"new_AuiDefaultTabArt", (PyCFunction
)_wrap_new_AuiDefaultTabArt
, METH_NOARGS
, NULL
},
16131 { (char *)"delete_AuiDefaultTabArt", (PyCFunction
)_wrap_delete_AuiDefaultTabArt
, METH_O
, NULL
},
16132 { (char *)"AuiDefaultTabArt_swigregister", AuiDefaultTabArt_swigregister
, METH_VARARGS
, NULL
},
16133 { (char *)"AuiDefaultTabArt_swiginit", AuiDefaultTabArt_swiginit
, METH_VARARGS
, NULL
},
16134 { (char *)"new_AuiSimpleTabArt", (PyCFunction
)_wrap_new_AuiSimpleTabArt
, METH_NOARGS
, NULL
},
16135 { (char *)"delete_AuiSimpleTabArt", (PyCFunction
)_wrap_delete_AuiSimpleTabArt
, METH_O
, NULL
},
16136 { (char *)"AuiSimpleTabArt_swigregister", AuiSimpleTabArt_swigregister
, METH_VARARGS
, NULL
},
16137 { (char *)"AuiSimpleTabArt_swiginit", AuiSimpleTabArt_swiginit
, METH_VARARGS
, NULL
},
16138 { (char *)"new_AuiTabContainer", (PyCFunction
)_wrap_new_AuiTabContainer
, METH_NOARGS
, NULL
},
16139 { (char *)"delete_AuiTabContainer", (PyCFunction
)_wrap_delete_AuiTabContainer
, METH_O
, NULL
},
16140 { (char *)"AuiTabContainer_SetArtProvider", (PyCFunction
) _wrap_AuiTabContainer_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16141 { (char *)"AuiTabContainer_GetArtProvider", (PyCFunction
)_wrap_AuiTabContainer_GetArtProvider
, METH_O
, NULL
},
16142 { (char *)"AuiTabContainer_SetFlags", (PyCFunction
) _wrap_AuiTabContainer_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16143 { (char *)"AuiTabContainer_GetFlags", (PyCFunction
)_wrap_AuiTabContainer_GetFlags
, METH_O
, NULL
},
16144 { (char *)"AuiTabContainer_AddPage", (PyCFunction
) _wrap_AuiTabContainer_AddPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16145 { (char *)"AuiTabContainer_InsertPage", (PyCFunction
) _wrap_AuiTabContainer_InsertPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16146 { (char *)"AuiTabContainer_MovePage", (PyCFunction
) _wrap_AuiTabContainer_MovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16147 { (char *)"AuiTabContainer_RemovePage", (PyCFunction
) _wrap_AuiTabContainer_RemovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16148 { (char *)"AuiTabContainer_SetActivePage", _wrap_AuiTabContainer_SetActivePage
, METH_VARARGS
, NULL
},
16149 { (char *)"AuiTabContainer_SetNoneActive", (PyCFunction
)_wrap_AuiTabContainer_SetNoneActive
, METH_O
, NULL
},
16150 { (char *)"AuiTabContainer_GetActivePage", (PyCFunction
)_wrap_AuiTabContainer_GetActivePage
, METH_O
, NULL
},
16151 { (char *)"AuiTabContainer_TabHitTest", (PyCFunction
) _wrap_AuiTabContainer_TabHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16152 { (char *)"AuiTabContainer_ButtonHitTest", (PyCFunction
) _wrap_AuiTabContainer_ButtonHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16153 { (char *)"AuiTabContainer_GetWindowFromIdx", (PyCFunction
) _wrap_AuiTabContainer_GetWindowFromIdx
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16154 { (char *)"AuiTabContainer_GetIdxFromWindow", (PyCFunction
) _wrap_AuiTabContainer_GetIdxFromWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16155 { (char *)"AuiTabContainer_GetPageCount", (PyCFunction
)_wrap_AuiTabContainer_GetPageCount
, METH_O
, NULL
},
16156 { (char *)"AuiTabContainer_GetPage", (PyCFunction
) _wrap_AuiTabContainer_GetPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16157 { (char *)"AuiTabContainer_GetPages", (PyCFunction
)_wrap_AuiTabContainer_GetPages
, METH_O
, NULL
},
16158 { (char *)"AuiTabContainer_SetNormalFont", (PyCFunction
) _wrap_AuiTabContainer_SetNormalFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16159 { (char *)"AuiTabContainer_SetSelectedFont", (PyCFunction
) _wrap_AuiTabContainer_SetSelectedFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16160 { (char *)"AuiTabContainer_SetMeasuringFont", (PyCFunction
) _wrap_AuiTabContainer_SetMeasuringFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16161 { (char *)"AuiTabContainer_DoShowHide", (PyCFunction
)_wrap_AuiTabContainer_DoShowHide
, METH_O
, NULL
},
16162 { (char *)"AuiTabContainer_SetRect", (PyCFunction
) _wrap_AuiTabContainer_SetRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16163 { (char *)"AuiTabContainer_RemoveButton", (PyCFunction
) _wrap_AuiTabContainer_RemoveButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16164 { (char *)"AuiTabContainer_AddButton", (PyCFunction
) _wrap_AuiTabContainer_AddButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16165 { (char *)"AuiTabContainer_GetTabOffset", (PyCFunction
)_wrap_AuiTabContainer_GetTabOffset
, METH_O
, NULL
},
16166 { (char *)"AuiTabContainer_SetTabOffset", (PyCFunction
) _wrap_AuiTabContainer_SetTabOffset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16167 { (char *)"AuiTabContainer_swigregister", AuiTabContainer_swigregister
, METH_VARARGS
, NULL
},
16168 { (char *)"AuiTabContainer_swiginit", AuiTabContainer_swiginit
, METH_VARARGS
, NULL
},
16169 { (char *)"new_AuiTabCtrl", (PyCFunction
) _wrap_new_AuiTabCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16170 { (char *)"delete_AuiTabCtrl", (PyCFunction
)_wrap_delete_AuiTabCtrl
, METH_O
, NULL
},
16171 { (char *)"AuiTabCtrl_swigregister", AuiTabCtrl_swigregister
, METH_VARARGS
, NULL
},
16172 { (char *)"AuiTabCtrl_swiginit", AuiTabCtrl_swiginit
, METH_VARARGS
, NULL
},
16173 { (char *)"new_PreAuiNotebook", (PyCFunction
)_wrap_new_PreAuiNotebook
, METH_NOARGS
, NULL
},
16174 { (char *)"new_AuiNotebook", (PyCFunction
) _wrap_new_AuiNotebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16175 { (char *)"delete_AuiNotebook", (PyCFunction
)_wrap_delete_AuiNotebook
, METH_O
, NULL
},
16176 { (char *)"AuiNotebook_Create", (PyCFunction
) _wrap_AuiNotebook_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16177 { (char *)"AuiNotebook_AddPage", (PyCFunction
) _wrap_AuiNotebook_AddPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16178 { (char *)"AuiNotebook_InsertPage", (PyCFunction
) _wrap_AuiNotebook_InsertPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16179 { (char *)"AuiNotebook_DeletePage", (PyCFunction
) _wrap_AuiNotebook_DeletePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16180 { (char *)"AuiNotebook_RemovePage", (PyCFunction
) _wrap_AuiNotebook_RemovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16181 { (char *)"AuiNotebook_SetPageText", (PyCFunction
) _wrap_AuiNotebook_SetPageText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16182 { (char *)"AuiNotebook_SetPageBitmap", (PyCFunction
) _wrap_AuiNotebook_SetPageBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16183 { (char *)"AuiNotebook_SetSelection", (PyCFunction
) _wrap_AuiNotebook_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16184 { (char *)"AuiNotebook_GetSelection", (PyCFunction
)_wrap_AuiNotebook_GetSelection
, METH_O
, NULL
},
16185 { (char *)"AuiNotebook_GetPageCount", (PyCFunction
)_wrap_AuiNotebook_GetPageCount
, METH_O
, NULL
},
16186 { (char *)"AuiNotebook_GetPage", (PyCFunction
) _wrap_AuiNotebook_GetPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16187 { (char *)"AuiNotebook_GetPageIndex", (PyCFunction
) _wrap_AuiNotebook_GetPageIndex
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16188 { (char *)"AuiNotebook_SetArtProvider", (PyCFunction
) _wrap_AuiNotebook_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16189 { (char *)"AuiNotebook_GetArtProvider", (PyCFunction
)_wrap_AuiNotebook_GetArtProvider
, METH_O
, NULL
},
16190 { (char *)"AuiNotebook_SetUniformBitmapSize", (PyCFunction
) _wrap_AuiNotebook_SetUniformBitmapSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16191 { (char *)"AuiNotebook_SetTabCtrlHeight", (PyCFunction
) _wrap_AuiNotebook_SetTabCtrlHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
16192 { (char *)"AuiNotebook_swigregister", AuiNotebook_swigregister
, METH_VARARGS
, NULL
},
16193 { (char *)"AuiNotebook_swiginit", AuiNotebook_swiginit
, METH_VARARGS
, NULL
},
16194 { (char *)"PyAuiDockArt_swigregister", PyAuiDockArt_swigregister
, METH_VARARGS
, NULL
},
16195 { (char *)"PyAuiTabArt_swigregister", PyAuiTabArt_swigregister
, METH_VARARGS
, NULL
},
16196 { NULL
, NULL
, 0, NULL
}
16200 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
16202 static void *_p_wxAuiFloatingFrameTo_p_wxMiniFrame(void *x
) {
16203 return (void *)((wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
16205 static void *_p_wxBoxSizerTo_p_wxSizer(void *x
) {
16206 return (void *)((wxSizer
*) ((wxBoxSizer
*) x
));
16208 static void *_p_wxStaticBoxSizerTo_p_wxSizer(void *x
) {
16209 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
16211 static void *_p_wxStdDialogButtonSizerTo_p_wxSizer(void *x
) {
16212 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
16214 static void *_p_wxGridBagSizerTo_p_wxSizer(void *x
) {
16215 return (void *)((wxSizer
*) (wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
16217 static void *_p_wxGridSizerTo_p_wxSizer(void *x
) {
16218 return (void *)((wxSizer
*) ((wxGridSizer
*) x
));
16220 static void *_p_wxFlexGridSizerTo_p_wxSizer(void *x
) {
16221 return (void *)((wxSizer
*) (wxGridSizer
*) ((wxFlexGridSizer
*) x
));
16223 static void *_p_wxPySizerTo_p_wxSizer(void *x
) {
16224 return (void *)((wxSizer
*) ((wxPySizer
*) x
));
16226 static void *_p_wxAuiDefaultTabArtTo_p_wxAuiTabArt(void *x
) {
16227 return (void *)((wxAuiTabArt
*) ((wxAuiDefaultTabArt
*) x
));
16229 static void *_p_wxAuiSimpleTabArtTo_p_wxAuiTabArt(void *x
) {
16230 return (void *)((wxAuiTabArt
*) ((wxAuiSimpleTabArt
*) x
));
16232 static void *_p_wxPyAuiTabArtTo_p_wxAuiTabArt(void *x
) {
16233 return (void *)((wxAuiTabArt
*) (wxAuiDefaultTabArt
*) ((wxPyAuiTabArt
*) x
));
16235 static void *_p_wxSplitterEventTo_p_wxNotifyEvent(void *x
) {
16236 return (void *)((wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
16238 static void *_p_wxAuiNotebookEventTo_p_wxNotifyEvent(void *x
) {
16239 return (void *)((wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
16241 static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x
) {
16242 return (void *)((wxTopLevelWindow
*) ((wxFrame
*) x
));
16244 static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x
) {
16245 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMiniFrame
*) x
));
16247 static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x
) {
16248 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFontDialog
*) x
));
16250 static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x
) {
16251 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxDirDialog
*) x
));
16253 static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x
) {
16254 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxColourDialog
*) x
));
16256 static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x
) {
16257 return (void *)((wxTopLevelWindow
*) ((wxDialog
*) x
));
16259 static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x
) {
16260 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxSplashScreen
*) x
));
16262 static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x
) {
16263 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIParentFrame
*) x
));
16265 static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x
) {
16266 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIChildFrame
*) x
));
16268 static void *_p_wxAuiFloatingFrameTo_p_wxTopLevelWindow(void *x
) {
16269 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
16271 static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x
) {
16272 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMessageDialog
*) x
));
16274 static void *_p_wxNumberEntryDialogTo_p_wxTopLevelWindow(void *x
) {
16275 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxNumberEntryDialog
*) x
));
16277 static void *_p_wxPasswordEntryDialogTo_p_wxTopLevelWindow(void *x
) {
16278 return (void *)((wxTopLevelWindow
*) (wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
16280 static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x
) {
16281 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxTextEntryDialog
*) x
));
16283 static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
16284 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxSingleChoiceDialog
*) x
));
16286 static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
16287 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMultiChoiceDialog
*) x
));
16289 static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x
) {
16290 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFileDialog
*) x
));
16292 static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x
) {
16293 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxProgressDialog
*) x
));
16295 static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x
) {
16296 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFindReplaceDialog
*) x
));
16298 static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
16299 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxPreviewFrame
*) x
));
16301 static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
16302 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
16304 static void *_p_wxSplashScreenTo_p_wxWindow(void *x
) {
16305 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
16307 static void *_p_wxMiniFrameTo_p_wxWindow(void *x
) {
16308 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
16310 static void *_p_wxPyPanelTo_p_wxWindow(void *x
) {
16311 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyPanel
*) x
));
16313 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
16314 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
16316 static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x
) {
16317 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
16319 static void *_p_wxProgressDialogTo_p_wxWindow(void *x
) {
16320 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
16322 static void *_p_wxMessageDialogTo_p_wxWindow(void *x
) {
16323 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
16325 static void *_p_wxNumberEntryDialogTo_p_wxWindow(void *x
) {
16326 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
16328 static void *_p_wxPasswordEntryDialogTo_p_wxWindow(void *x
) {
16329 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
16331 static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x
) {
16332 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
16334 static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x
) {
16335 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
16337 static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x
) {
16338 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
16340 static void *_p_wxFileDialogTo_p_wxWindow(void *x
) {
16341 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
16343 static void *_p_wxPanelTo_p_wxWindow(void *x
) {
16344 return (void *)((wxWindow
*) ((wxPanel
*) x
));
16346 static void *_p_wxStatusBarTo_p_wxWindow(void *x
) {
16347 return (void *)((wxWindow
*) ((wxStatusBar
*) x
));
16349 static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x
) {
16350 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyVScrolledWindow
*) x
));
16352 static void *_p_wxTipWindowTo_p_wxWindow(void *x
) {
16353 return (void *)((wxWindow
*) (wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
16355 static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x
) {
16356 return (void *)((wxWindow
*) (wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
16358 static void *_p_wxPopupWindowTo_p_wxWindow(void *x
) {
16359 return (void *)((wxWindow
*) ((wxPopupWindow
*) x
));
16361 static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x
) {
16362 return (void *)((wxWindow
*) (wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
16364 static void *_p_wxScrolledWindowTo_p_wxWindow(void *x
) {
16365 return (void *)((wxWindow
*) (wxPanel
*) ((wxScrolledWindow
*) x
));
16367 static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x
) {
16368 return (void *)((wxWindow
*) ((wxTopLevelWindow
*) x
));
16370 static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x
) {
16371 return (void *)((wxWindow
*) ((wxSplashScreenWindow
*) x
));
16373 static void *_p_wxSplitterWindowTo_p_wxWindow(void *x
) {
16374 return (void *)((wxWindow
*) ((wxSplitterWindow
*) x
));
16376 static void *_p_wxSashWindowTo_p_wxWindow(void *x
) {
16377 return (void *)((wxWindow
*) ((wxSashWindow
*) x
));
16379 static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x
) {
16380 return (void *)((wxWindow
*) ((wxMDIClientWindow
*) x
));
16382 static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x
) {
16383 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
16385 static void *_p_wxControlTo_p_wxWindow(void *x
) {
16386 return (void *)((wxWindow
*) ((wxControl
*) x
));
16388 static void *_p_wxPreviewFrameTo_p_wxWindow(void *x
) {
16389 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
16391 static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x
) {
16392 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
16394 static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x
) {
16395 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
16397 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
16398 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
16400 static void *_p_wxPyWindowTo_p_wxWindow(void *x
) {
16401 return (void *)((wxWindow
*) ((wxPyWindow
*) x
));
16403 static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x
) {
16404 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
16406 static void *_p_wxSimpleHtmlListBoxTo_p_wxWindow(void *x
) {
16407 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*)(wxPyHtmlListBox
*) ((wxSimpleHtmlListBox
*) x
));
16409 static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x
) {
16410 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
16412 static void *_p_wxPyVListBoxTo_p_wxWindow(void *x
) {
16413 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
16415 static void *_p_wxAuiNotebookTo_p_wxWindow(void *x
) {
16416 return (void *)((wxWindow
*) (wxControl
*) ((wxAuiNotebook
*) x
));
16418 static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x
) {
16419 return (void *)((wxWindow
*) (wxPanel
*) ((wxPreviewControlBar
*) x
));
16421 static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x
) {
16422 return (void *)((wxWindow
*) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
16424 static void *_p_wxAuiTabCtrlTo_p_wxWindow(void *x
) {
16425 return (void *)((wxWindow
*) (wxControl
*) ((wxAuiTabCtrl
*) x
));
16427 static void *_p_wxFrameTo_p_wxWindow(void *x
) {
16428 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxFrame
*) x
));
16430 static void *_p_wxFontDialogTo_p_wxWindow(void *x
) {
16431 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
16433 static void *_p_wxDirDialogTo_p_wxWindow(void *x
) {
16434 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
16436 static void *_p_wxColourDialogTo_p_wxWindow(void *x
) {
16437 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
16439 static void *_p_wxDialogTo_p_wxWindow(void *x
) {
16440 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxDialog
*) x
));
16442 static void *_p_wxAuiFloatingFrameTo_p_wxWindow(void *x
) {
16443 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
16445 static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x
) {
16446 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
16448 static void *_p_p_wxSplashScreenTo_p_p_wxWindow(void *x
) {
16449 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
**) x
));
16451 static void *_p_p_wxMiniFrameTo_p_p_wxWindow(void *x
) {
16452 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
**) x
));
16454 static void *_p_p_wxPyPanelTo_p_p_wxWindow(void *x
) {
16455 return (void *)((wxWindow
**) (wxPanel
*) ((wxPyPanel
**) x
));
16457 static void *_p_p_wxMenuBarTo_p_p_wxWindow(void *x
) {
16458 return (void *)((wxWindow
**) ((wxMenuBar
**) x
));
16460 static void *_p_p_wxFindReplaceDialogTo_p_p_wxWindow(void *x
) {
16461 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
**) x
));
16463 static void *_p_p_wxProgressDialogTo_p_p_wxWindow(void *x
) {
16464 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
**) x
));
16466 static void *_p_p_wxMessageDialogTo_p_p_wxWindow(void *x
) {
16467 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
**) x
));
16469 static void *_p_p_wxNumberEntryDialogTo_p_p_wxWindow(void *x
) {
16470 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
**) x
));
16472 static void *_p_p_wxPasswordEntryDialogTo_p_p_wxWindow(void *x
) {
16473 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
**) x
));
16475 static void *_p_p_wxTextEntryDialogTo_p_p_wxWindow(void *x
) {
16476 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
**) x
));
16478 static void *_p_p_wxSingleChoiceDialogTo_p_p_wxWindow(void *x
) {
16479 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
**) x
));
16481 static void *_p_p_wxMultiChoiceDialogTo_p_p_wxWindow(void *x
) {
16482 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
**) x
));
16484 static void *_p_p_wxFileDialogTo_p_p_wxWindow(void *x
) {
16485 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
**) x
));
16487 static void *_p_p_wxPanelTo_p_p_wxWindow(void *x
) {
16488 return (void *)((wxWindow
**) ((wxPanel
**) x
));
16490 static void *_p_p_wxStatusBarTo_p_p_wxWindow(void *x
) {
16491 return (void *)((wxWindow
**) ((wxStatusBar
**) x
));
16493 static void *_p_p_wxPyVScrolledWindowTo_p_p_wxWindow(void *x
) {
16494 return (void *)((wxWindow
**) (wxPanel
*) ((wxPyVScrolledWindow
**) x
));
16496 static void *_p_p_wxTipWindowTo_p_p_wxWindow(void *x
) {
16497 return (void *)((wxWindow
**) (wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
**) x
));
16499 static void *_p_p_wxPyPopupTransientWindowTo_p_p_wxWindow(void *x
) {
16500 return (void *)((wxWindow
**) (wxPopupWindow
*) ((wxPyPopupTransientWindow
**) x
));
16502 static void *_p_p_wxPopupWindowTo_p_p_wxWindow(void *x
) {
16503 return (void *)((wxWindow
**) ((wxPopupWindow
**) x
));
16505 static void *_p_p_wxSashLayoutWindowTo_p_p_wxWindow(void *x
) {
16506 return (void *)((wxWindow
**) (wxSashWindow
*) ((wxSashLayoutWindow
**) x
));
16508 static void *_p_p_wxScrolledWindowTo_p_p_wxWindow(void *x
) {
16509 return (void *)((wxWindow
**) (wxPanel
*) ((wxScrolledWindow
**) x
));
16511 static void *_p_p_wxTopLevelWindowTo_p_p_wxWindow(void *x
) {
16512 return (void *)((wxWindow
**) ((wxTopLevelWindow
**) x
));
16514 static void *_p_p_wxSplashScreenWindowTo_p_p_wxWindow(void *x
) {
16515 return (void *)((wxWindow
**) ((wxSplashScreenWindow
**) x
));
16517 static void *_p_p_wxSplitterWindowTo_p_p_wxWindow(void *x
) {
16518 return (void *)((wxWindow
**) ((wxSplitterWindow
**) x
));
16520 static void *_p_p_wxSashWindowTo_p_p_wxWindow(void *x
) {
16521 return (void *)((wxWindow
**) ((wxSashWindow
**) x
));
16523 static void *_p_p_wxMDIClientWindowTo_p_p_wxWindow(void *x
) {
16524 return (void *)((wxWindow
**) ((wxMDIClientWindow
**) x
));
16526 static void *_p_p_wxPyScrolledWindowTo_p_p_wxWindow(void *x
) {
16527 return (void *)((wxWindow
**) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
**) x
));
16529 static void *_p_p_wxControlTo_p_p_wxWindow(void *x
) {
16530 return (void *)((wxWindow
**) ((wxControl
**) x
));
16532 static void *_p_p_wxPreviewFrameTo_p_p_wxWindow(void *x
) {
16533 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
**) x
));
16535 static void *_p_p_wxPyPreviewFrameTo_p_p_wxWindow(void *x
) {
16536 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
**) x
));
16538 static void *_p_p_wxMDIChildFrameTo_p_p_wxWindow(void *x
) {
16539 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
**) x
));
16541 static void *_p_p_wxControlWithItemsTo_p_p_wxWindow(void *x
) {
16542 return (void *)((wxWindow
**) (wxControl
*) ((wxControlWithItems
**) x
));
16544 static void *_p_p_wxPyWindowTo_p_p_wxWindow(void *x
) {
16545 return (void *)((wxWindow
**) ((wxPyWindow
**) x
));
16547 static void *_p_p_wxPreviewCanvasTo_p_p_wxWindow(void *x
) {
16548 return (void *)((wxWindow
**) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
**) x
));
16550 static void *_p_p_wxSimpleHtmlListBoxTo_p_p_wxWindow(void *x
) {
16551 return (void *)((wxWindow
**) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*)(wxPyHtmlListBox
*) ((wxSimpleHtmlListBox
**) x
));
16553 static void *_p_p_wxPyHtmlListBoxTo_p_p_wxWindow(void *x
) {
16554 return (void *)((wxWindow
**) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
**) x
));
16556 static void *_p_p_wxPyVListBoxTo_p_p_wxWindow(void *x
) {
16557 return (void *)((wxWindow
**) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
**) x
));
16559 static void *_p_p_wxAuiNotebookTo_p_p_wxWindow(void *x
) {
16560 return (void *)((wxWindow
**) (wxControl
*) ((wxAuiNotebook
**) x
));
16562 static void *_p_p_wxPreviewControlBarTo_p_p_wxWindow(void *x
) {
16563 return (void *)((wxWindow
**) (wxPanel
*) ((wxPreviewControlBar
**) x
));
16565 static void *_p_p_wxPyPreviewControlBarTo_p_p_wxWindow(void *x
) {
16566 return (void *)((wxWindow
**) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
**) x
));
16568 static void *_p_p_wxAuiTabCtrlTo_p_p_wxWindow(void *x
) {
16569 return (void *)((wxWindow
**) (wxControl
*) ((wxAuiTabCtrl
**) x
));
16571 static void *_p_p_wxFrameTo_p_p_wxWindow(void *x
) {
16572 return (void *)((wxWindow
**) (wxTopLevelWindow
*) ((wxFrame
**) x
));
16574 static void *_p_p_wxFontDialogTo_p_p_wxWindow(void *x
) {
16575 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
**) x
));
16577 static void *_p_p_wxDirDialogTo_p_p_wxWindow(void *x
) {
16578 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
**) x
));
16580 static void *_p_p_wxColourDialogTo_p_p_wxWindow(void *x
) {
16581 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
**) x
));
16583 static void *_p_p_wxDialogTo_p_p_wxWindow(void *x
) {
16584 return (void *)((wxWindow
**) (wxTopLevelWindow
*) ((wxDialog
**) x
));
16586 static void *_p_p_wxAuiFloatingFrameTo_p_p_wxWindow(void *x
) {
16587 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
**) x
));
16589 static void *_p_p_wxMDIParentFrameTo_p_p_wxWindow(void *x
) {
16590 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
**) x
));
16592 static void *_p_wxControlWithItemsTo_p_wxControl(void *x
) {
16593 return (void *)((wxControl
*) ((wxControlWithItems
*) x
));
16595 static void *_p_wxAuiTabCtrlTo_p_wxControl(void *x
) {
16596 return (void *)((wxControl
*) ((wxAuiTabCtrl
*) x
));
16598 static void *_p_wxAuiNotebookTo_p_wxControl(void *x
) {
16599 return (void *)((wxControl
*) ((wxAuiNotebook
*) x
));
16601 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
16602 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
16604 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
16605 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
16607 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
16608 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
16610 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
16611 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
16613 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
16614 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
16616 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
16617 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
16619 static void *_p_wxSplitterEventTo_p_wxEvent(void *x
) {
16620 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
16622 static void *_p_wxAuiManagerEventTo_p_wxEvent(void *x
) {
16623 return (void *)((wxEvent
*) ((wxAuiManagerEvent
*) x
));
16625 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
16626 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
16628 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
16629 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
16631 static void *_p_wxFindDialogEventTo_p_wxEvent(void *x
) {
16632 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
16634 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
16635 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
16637 static void *_p_wxMouseCaptureLostEventTo_p_wxEvent(void *x
) {
16638 return (void *)((wxEvent
*) ((wxMouseCaptureLostEvent
*) x
));
16640 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
16641 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
16643 static void *_p_wxCalculateLayoutEventTo_p_wxEvent(void *x
) {
16644 return (void *)((wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
16646 static void *_p_wxAuiNotebookEventTo_p_wxEvent(void *x
) {
16647 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
16649 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
16650 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
16652 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
16653 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
16655 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
16656 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
16658 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
16659 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
16661 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
16662 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
16664 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
16665 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
16667 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
16668 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
16670 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
16671 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
16673 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
16674 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
16676 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
16677 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
16679 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
16680 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
16682 static void *_p_wxClipboardTextEventTo_p_wxEvent(void *x
) {
16683 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
16685 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
16686 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
16688 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
16689 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
16691 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
16692 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
16694 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
16695 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
16697 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
16698 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
16700 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
16701 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
16703 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
16704 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
16706 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
16707 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
16709 static void *_p_wxSashEventTo_p_wxEvent(void *x
) {
16710 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxSashEvent
*) x
));
16712 static void *_p_wxQueryLayoutInfoEventTo_p_wxEvent(void *x
) {
16713 return (void *)((wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
16715 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
16716 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
16718 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
16719 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
16721 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
16722 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
16724 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
16725 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
16727 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
16728 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
16730 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
16731 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
16733 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
16734 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
16736 static void *_p_wxTaskBarIconEventTo_p_wxEvent(void *x
) {
16737 return (void *)((wxEvent
*) ((wxTaskBarIconEvent
*) x
));
16739 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
16740 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
16742 static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x
) {
16743 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
16745 static void *_p_wxPreviewFrameTo_p_wxObject(void *x
) {
16746 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
16748 static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x
) {
16749 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
16751 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
16752 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
16754 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
16755 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
16757 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
16758 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
16760 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
16761 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
16763 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
16764 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
16766 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
16767 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
16769 static void *_p_wxSizerTo_p_wxObject(void *x
) {
16770 return (void *)((wxObject
*) ((wxSizer
*) x
));
16772 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
16773 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
16775 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
16776 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
16778 static void *_p_wxPyPanelTo_p_wxObject(void *x
) {
16779 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
16781 static void *_p_wxEventTo_p_wxObject(void *x
) {
16782 return (void *)((wxObject
*) ((wxEvent
*) x
));
16784 static void *_p_wxFontDataTo_p_wxObject(void *x
) {
16785 return (void *)((wxObject
*) ((wxFontData
*) x
));
16787 static void *_p_wxPrintDataTo_p_wxObject(void *x
) {
16788 return (void *)((wxObject
*) ((wxPrintData
*) x
));
16790 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
16791 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
16793 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
16794 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
16796 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
16797 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
16799 static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x
) {
16800 return (void *)((wxObject
*) ((wxLayoutAlgorithm
*) x
));
16802 static void *_p_wxPyTaskBarIconTo_p_wxObject(void *x
) {
16803 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
16805 static void *_p_wxFindDialogEventTo_p_wxObject(void *x
) {
16806 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
16808 static void *_p_wxAuiTabCtrlTo_p_wxObject(void *x
) {
16809 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxAuiTabCtrl
*) x
));
16811 static void *_p_wxClipboardTextEventTo_p_wxObject(void *x
) {
16812 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
16814 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
16815 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
16817 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
16818 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
16820 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
16821 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
16823 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
16824 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
16826 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
16827 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
16829 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
16830 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
16832 static void *_p_wxPreviewCanvasTo_p_wxObject(void *x
) {
16833 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
16835 static void *_p_wxControlTo_p_wxObject(void *x
) {
16836 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
16838 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
16839 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
16841 static void *_p_wxSplitterEventTo_p_wxObject(void *x
) {
16842 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
16844 static void *_p_wxAuiManagerEventTo_p_wxObject(void *x
) {
16845 return (void *)((wxObject
*) (wxEvent
*) ((wxAuiManagerEvent
*) x
));
16847 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
16848 return (void *)((wxObject
*) ((wxFSFile
*) x
));
16850 static void *_p_wxFindReplaceDataTo_p_wxObject(void *x
) {
16851 return (void *)((wxObject
*) ((wxFindReplaceData
*) x
));
16853 static void *_p_wxAuiFloatingFrameTo_p_wxObject(void *x
) {
16854 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
16856 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
16857 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
16859 static void *_p_wxMDIChildFrameTo_p_wxObject(void *x
) {
16860 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
16862 static void *_p_wxAuiNotebookTo_p_wxObject(void *x
) {
16863 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxAuiNotebook
*) x
));
16865 static void *_p_wxColourDataTo_p_wxObject(void *x
) {
16866 return (void *)((wxObject
*) ((wxColourData
*) x
));
16868 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
16869 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
16871 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
16872 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
16874 static void *_p_wxPyWindowTo_p_wxObject(void *x
) {
16875 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPyWindow
*) x
));
16877 static void *_p_wxSplashScreenTo_p_wxObject(void *x
) {
16878 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
16880 static void *_p_wxFileDialogTo_p_wxObject(void *x
) {
16881 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
16883 static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x
) {
16884 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
16886 static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x
) {
16887 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
16889 static void *_p_wxTextEntryDialogTo_p_wxObject(void *x
) {
16890 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
16892 static void *_p_wxPasswordEntryDialogTo_p_wxObject(void *x
) {
16893 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
16895 static void *_p_wxNumberEntryDialogTo_p_wxObject(void *x
) {
16896 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
16898 static void *_p_wxMessageDialogTo_p_wxObject(void *x
) {
16899 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
16901 static void *_p_wxProgressDialogTo_p_wxObject(void *x
) {
16902 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
16904 static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x
) {
16905 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
16907 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
16908 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
16910 static void *_p_wxPrinterTo_p_wxObject(void *x
) {
16911 return (void *)((wxObject
*) ((wxPrinter
*) x
));
16913 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
16914 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
16916 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
16917 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
16919 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
16920 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
16922 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
16923 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
16925 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
16926 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
16928 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
16929 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
16931 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
16932 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
16934 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
16935 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
16937 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
16938 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
16940 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
16941 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
16943 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
16944 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
16946 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
16947 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
16949 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
16950 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
16952 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
16953 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
16955 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
16956 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
16958 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
16959 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
16961 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
16962 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
16964 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
16965 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
16967 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
16968 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
16970 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
16971 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
16973 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
16974 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
16976 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
16977 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
16979 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
16980 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
16982 static void *_p_wxTGAHandlerTo_p_wxObject(void *x
) {
16983 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTGAHandler
*) x
));
16985 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
16986 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
16988 static void *_p_wxMouseCaptureLostEventTo_p_wxObject(void *x
) {
16989 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureLostEvent
*) x
));
16991 static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x
) {
16992 return (void *)((wxObject
*) (wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
16994 static void *_p_wxPyVListBoxTo_p_wxObject(void *x
) {
16995 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
16997 static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x
) {
16998 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
17000 static void *_p_wxSimpleHtmlListBoxTo_p_wxObject(void *x
) {
17001 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*)(wxPyHtmlListBox
*) ((wxSimpleHtmlListBox
*) x
));
17003 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
17004 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
17006 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
17007 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
17009 static void *_p_wxMiniFrameTo_p_wxObject(void *x
) {
17010 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
17012 static void *_p_wxImageTo_p_wxObject(void *x
) {
17013 return (void *)((wxObject
*) ((wxImage
*) x
));
17015 static void *_p_wxFrameTo_p_wxObject(void *x
) {
17016 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
17018 static void *_p_wxPyPrintoutTo_p_wxObject(void *x
) {
17019 return (void *)((wxObject
*) ((wxPyPrintout
*) x
));
17021 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
17022 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
17024 static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x
) {
17025 return (void *)((wxObject
*) (wxEvent
*) ((wxTaskBarIconEvent
*) x
));
17027 static void *_p_wxStatusBarTo_p_wxObject(void *x
) {
17028 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxStatusBar
*) x
));
17030 static void *_p_wxAuiManagerTo_p_wxObject(void *x
) {
17031 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxAuiManager
*) x
));
17033 static void *_p_wxMDIParentFrameTo_p_wxObject(void *x
) {
17034 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
17036 static void *_p_wxAuiNotebookEventTo_p_wxObject(void *x
) {
17037 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
17039 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
17040 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
17042 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
17043 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
17045 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
17046 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
17048 static void *_p_wxWindowTo_p_wxObject(void *x
) {
17049 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
17051 static void *_p_wxMenuTo_p_wxObject(void *x
) {
17052 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
17054 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
17055 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
17057 static void *_p_wxScrolledWindowTo_p_wxObject(void *x
) {
17058 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
17060 static void *_p_wxTopLevelWindowTo_p_wxObject(void *x
) {
17061 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxTopLevelWindow
*) x
));
17063 static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x
) {
17064 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplashScreenWindow
*) x
));
17066 static void *_p_wxSplitterWindowTo_p_wxObject(void *x
) {
17067 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplitterWindow
*) x
));
17069 static void *_p_wxSashWindowTo_p_wxObject(void *x
) {
17070 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSashWindow
*) x
));
17072 static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x
) {
17073 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
17075 static void *_p_wxPopupWindowTo_p_wxObject(void *x
) {
17076 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPopupWindow
*) x
));
17078 static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x
) {
17079 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
17081 static void *_p_wxTipWindowTo_p_wxObject(void *x
) {
17082 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
17084 static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x
) {
17085 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
17087 static void *_p_wxMDIClientWindowTo_p_wxObject(void *x
) {
17088 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMDIClientWindow
*) x
));
17090 static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x
) {
17091 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
17093 static void *_p_wxSashEventTo_p_wxObject(void *x
) {
17094 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxSashEvent
*) x
));
17096 static void *_p_wxPrintPreviewTo_p_wxObject(void *x
) {
17097 return (void *)((wxObject
*) ((wxPrintPreview
*) x
));
17099 static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x
) {
17100 return (void *)((wxObject
*) (wxPrintPreview
*) ((wxPyPrintPreview
*) x
));
17102 static void *_p_wxPanelTo_p_wxObject(void *x
) {
17103 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPanel
*) x
));
17105 static void *_p_wxDialogTo_p_wxObject(void *x
) {
17106 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
17108 static void *_p_wxColourDialogTo_p_wxObject(void *x
) {
17109 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
17111 static void *_p_wxDirDialogTo_p_wxObject(void *x
) {
17112 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
17114 static void *_p_wxFontDialogTo_p_wxObject(void *x
) {
17115 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
17117 static void *_p_wxPageSetupDialogTo_p_wxObject(void *x
) {
17118 return (void *)((wxObject
*) ((wxPageSetupDialog
*) x
));
17120 static void *_p_wxPrintDialogTo_p_wxObject(void *x
) {
17121 return (void *)((wxObject
*) ((wxPrintDialog
*) x
));
17123 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
17124 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
17126 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
17127 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
17129 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
17130 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
17132 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
17133 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
17135 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
17136 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
17138 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
17139 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
17141 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
17142 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
17144 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
17145 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
17147 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
17148 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
17150 static void *_p_wxPreviewControlBarTo_p_wxObject(void *x
) {
17151 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
17153 static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x
) {
17154 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
17156 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
17157 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
17159 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
17160 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
17162 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
17163 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
17165 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
17166 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
17168 static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x
) {
17169 return (void *)((wxObject
*) ((wxPageSetupDialogData
*) x
));
17171 static void *_p_wxPrintDialogDataTo_p_wxObject(void *x
) {
17172 return (void *)((wxObject
*) ((wxPrintDialogData
*) x
));
17174 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
17175 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
17177 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
17178 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
17180 static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x
) {
17181 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
17183 static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x
) {
17184 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
17186 static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x
) {
17187 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
17189 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
17190 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
17192 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
17193 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
17195 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
17196 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
17198 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
17199 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
17201 static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x
) {
17202 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
17204 static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x
) {
17205 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
17207 static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x
) {
17208 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
17210 static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x
) {
17211 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
17213 static void *_p_wxPasswordEntryDialogTo_p_wxEvtHandler(void *x
) {
17214 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
17216 static void *_p_wxNumberEntryDialogTo_p_wxEvtHandler(void *x
) {
17217 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
17219 static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x
) {
17220 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
17222 static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x
) {
17223 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
17225 static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x
) {
17226 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
17228 static void *_p_wxPanelTo_p_wxEvtHandler(void *x
) {
17229 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPanel
*) x
));
17231 static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x
) {
17232 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxStatusBar
*) x
));
17234 static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x
) {
17235 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
17237 static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x
) {
17238 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
17240 static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x
) {
17241 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
17243 static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x
) {
17244 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPopupWindow
*) x
));
17246 static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x
) {
17247 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
17249 static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x
) {
17250 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSashWindow
*) x
));
17252 static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x
) {
17253 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplitterWindow
*) x
));
17255 static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x
) {
17256 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplashScreenWindow
*) x
));
17258 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
17259 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
17261 static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x
) {
17262 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
17264 static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x
) {
17265 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxTopLevelWindow
*) x
));
17267 static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x
) {
17268 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMDIClientWindow
*) x
));
17270 static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x
) {
17271 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
17273 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
17274 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
17276 static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x
) {
17277 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
17279 static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x
) {
17280 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
17282 static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x
) {
17283 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
17285 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
17286 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
17288 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
17289 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
17291 static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x
) {
17292 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPyWindow
*) x
));
17294 static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x
) {
17295 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
17297 static void *_p_wxSimpleHtmlListBoxTo_p_wxEvtHandler(void *x
) {
17298 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*)(wxPyHtmlListBox
*) ((wxSimpleHtmlListBox
*) x
));
17300 static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x
) {
17301 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
17303 static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x
) {
17304 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
17306 static void *_p_wxAuiNotebookTo_p_wxEvtHandler(void *x
) {
17307 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxAuiNotebook
*) x
));
17309 static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x
) {
17310 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
17312 static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x
) {
17313 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
17315 static void *_p_wxPyTaskBarIconTo_p_wxEvtHandler(void *x
) {
17316 return (void *)((wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
17318 static void *_p_wxAuiTabCtrlTo_p_wxEvtHandler(void *x
) {
17319 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxAuiTabCtrl
*) x
));
17321 static void *_p_wxFrameTo_p_wxEvtHandler(void *x
) {
17322 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
17324 static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x
) {
17325 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
17327 static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x
) {
17328 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
17330 static void *_p_wxDialogTo_p_wxEvtHandler(void *x
) {
17331 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
17333 static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x
) {
17334 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
17336 static void *_p_wxAuiFloatingFrameTo_p_wxEvtHandler(void *x
) {
17337 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
17339 static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x
) {
17340 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
17342 static void *_p_wxAuiManagerTo_p_wxEvtHandler(void *x
) {
17343 return (void *)((wxEvtHandler
*) ((wxAuiManager
*) x
));
17345 static void *_p_wxAuiTabCtrlTo_p_wxAuiTabContainer(void *x
) {
17346 return (void *)((wxAuiTabContainer
*) ((wxAuiTabCtrl
*) x
));
17348 static void *_p_wxGBSizerItemTo_p_wxSizerItem(void *x
) {
17349 return (void *)((wxSizerItem
*) ((wxGBSizerItem
*) x
));
17351 static void *_p_wxMDIChildFrameTo_p_wxFrame(void *x
) {
17352 return (void *)((wxFrame
*) ((wxMDIChildFrame
*) x
));
17354 static void *_p_wxProgressDialogTo_p_wxFrame(void *x
) {
17355 return (void *)((wxFrame
*) ((wxProgressDialog
*) x
));
17357 static void *_p_wxPreviewFrameTo_p_wxFrame(void *x
) {
17358 return (void *)((wxFrame
*) ((wxPreviewFrame
*) x
));
17360 static void *_p_wxPyPreviewFrameTo_p_wxFrame(void *x
) {
17361 return (void *)((wxFrame
*) (wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
17363 static void *_p_wxMiniFrameTo_p_wxFrame(void *x
) {
17364 return (void *)((wxFrame
*) ((wxMiniFrame
*) x
));
17366 static void *_p_wxSplashScreenTo_p_wxFrame(void *x
) {
17367 return (void *)((wxFrame
*) ((wxSplashScreen
*) x
));
17369 static void *_p_wxMDIParentFrameTo_p_wxFrame(void *x
) {
17370 return (void *)((wxFrame
*) ((wxMDIParentFrame
*) x
));
17372 static void *_p_wxAuiFloatingFrameTo_p_wxFrame(void *x
) {
17373 return (void *)((wxFrame
*) (wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
17375 static void *_p_wxSashEventTo_p_wxCommandEvent(void *x
) {
17376 return (void *)((wxCommandEvent
*) ((wxSashEvent
*) x
));
17378 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) {
17379 return (void *)((wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
17381 static void *_p_wxSplitterEventTo_p_wxCommandEvent(void *x
) {
17382 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
17384 static void *_p_wxClipboardTextEventTo_p_wxCommandEvent(void *x
) {
17385 return (void *)((wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
17387 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) {
17388 return (void *)((wxCommandEvent
*) ((wxScrollEvent
*) x
));
17390 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) {
17391 return (void *)((wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
17393 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) {
17394 return (void *)((wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
17396 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) {
17397 return (void *)((wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
17399 static void *_p_wxAuiNotebookEventTo_p_wxCommandEvent(void *x
) {
17400 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
17402 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) {
17403 return (void *)((wxCommandEvent
*) ((wxDateEvent
*) x
));
17405 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) {
17406 return (void *)((wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
17408 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) {
17409 return (void *)((wxCommandEvent
*) ((wxNotifyEvent
*) x
));
17411 static void *_p_wxFindDialogEventTo_p_wxCommandEvent(void *x
) {
17412 return (void *)((wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
17414 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) {
17415 return (void *)((wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
17417 static void *_p_wxAuiDefaultDockArtTo_p_wxAuiDockArt(void *x
) {
17418 return (void *)((wxAuiDockArt
*) ((wxAuiDefaultDockArt
*) x
));
17420 static void *_p_wxPyAuiDockArtTo_p_wxAuiDockArt(void *x
) {
17421 return (void *)((wxAuiDockArt
*) (wxAuiDefaultDockArt
*) ((wxPyAuiDockArt
*) x
));
17423 static void *_p_wxPyAuiDockArtTo_p_wxAuiDefaultDockArt(void *x
) {
17424 return (void *)((wxAuiDefaultDockArt
*) ((wxPyAuiDockArt
*) x
));
17426 static void *_p_wxPyAuiTabArtTo_p_wxAuiDefaultTabArt(void *x
) {
17427 return (void *)((wxAuiDefaultTabArt
*) ((wxPyAuiTabArt
*) x
));
17429 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, (void*)0, 0};
17430 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};
17431 static swig_type_info _swigt__p_int
= {"_p_int", "int *", 0, 0, (void*)0, 0};
17432 static swig_type_info _swigt__p_p_wxAuiTabContainerButton
= {"_p_p_wxAuiTabContainerButton", "wxAuiTabContainerButton **", 0, 0, (void*)0, 0};
17433 static swig_type_info _swigt__p_p_wxWindow
= {"_p_p_wxWindow", "wxWindow **", 0, 0, (void*)0, 0};
17434 static swig_type_info _swigt__p_p_wxSplashScreen
= {"_p_p_wxSplashScreen", 0, 0, 0, 0, 0};
17435 static swig_type_info _swigt__p_p_wxMiniFrame
= {"_p_p_wxMiniFrame", 0, 0, 0, 0, 0};
17436 static swig_type_info _swigt__p_p_wxPyPanel
= {"_p_p_wxPyPanel", 0, 0, 0, 0, 0};
17437 static swig_type_info _swigt__p_p_wxMenuBar
= {"_p_p_wxMenuBar", 0, 0, 0, 0, 0};
17438 static swig_type_info _swigt__p_p_wxFindReplaceDialog
= {"_p_p_wxFindReplaceDialog", 0, 0, 0, 0, 0};
17439 static swig_type_info _swigt__p_p_wxProgressDialog
= {"_p_p_wxProgressDialog", 0, 0, 0, 0, 0};
17440 static swig_type_info _swigt__p_p_wxMessageDialog
= {"_p_p_wxMessageDialog", 0, 0, 0, 0, 0};
17441 static swig_type_info _swigt__p_p_wxNumberEntryDialog
= {"_p_p_wxNumberEntryDialog", 0, 0, 0, 0, 0};
17442 static swig_type_info _swigt__p_p_wxPasswordEntryDialog
= {"_p_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0};
17443 static swig_type_info _swigt__p_p_wxTextEntryDialog
= {"_p_p_wxTextEntryDialog", 0, 0, 0, 0, 0};
17444 static swig_type_info _swigt__p_p_wxSingleChoiceDialog
= {"_p_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0};
17445 static swig_type_info _swigt__p_p_wxMultiChoiceDialog
= {"_p_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0};
17446 static swig_type_info _swigt__p_p_wxFileDialog
= {"_p_p_wxFileDialog", 0, 0, 0, 0, 0};
17447 static swig_type_info _swigt__p_p_wxPanel
= {"_p_p_wxPanel", 0, 0, 0, 0, 0};
17448 static swig_type_info _swigt__p_p_wxStatusBar
= {"_p_p_wxStatusBar", 0, 0, 0, 0, 0};
17449 static swig_type_info _swigt__p_p_wxPyVScrolledWindow
= {"_p_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0};
17450 static swig_type_info _swigt__p_p_wxTipWindow
= {"_p_p_wxTipWindow", 0, 0, 0, 0, 0};
17451 static swig_type_info _swigt__p_p_wxPyPopupTransientWindow
= {"_p_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0};
17452 static swig_type_info _swigt__p_p_wxPopupWindow
= {"_p_p_wxPopupWindow", 0, 0, 0, 0, 0};
17453 static swig_type_info _swigt__p_p_wxSashLayoutWindow
= {"_p_p_wxSashLayoutWindow", 0, 0, 0, 0, 0};
17454 static swig_type_info _swigt__p_p_wxScrolledWindow
= {"_p_p_wxScrolledWindow", 0, 0, 0, 0, 0};
17455 static swig_type_info _swigt__p_p_wxTopLevelWindow
= {"_p_p_wxTopLevelWindow", 0, 0, 0, 0, 0};
17456 static swig_type_info _swigt__p_p_wxSplashScreenWindow
= {"_p_p_wxSplashScreenWindow", 0, 0, 0, 0, 0};
17457 static swig_type_info _swigt__p_p_wxSplitterWindow
= {"_p_p_wxSplitterWindow", 0, 0, 0, 0, 0};
17458 static swig_type_info _swigt__p_p_wxSashWindow
= {"_p_p_wxSashWindow", 0, 0, 0, 0, 0};
17459 static swig_type_info _swigt__p_p_wxMDIClientWindow
= {"_p_p_wxMDIClientWindow", 0, 0, 0, 0, 0};
17460 static swig_type_info _swigt__p_p_wxPyScrolledWindow
= {"_p_p_wxPyScrolledWindow", 0, 0, 0, 0, 0};
17461 static swig_type_info _swigt__p_p_wxPreviewFrame
= {"_p_p_wxPreviewFrame", 0, 0, 0, 0, 0};
17462 static swig_type_info _swigt__p_p_wxPyPreviewFrame
= {"_p_p_wxPyPreviewFrame", 0, 0, 0, 0, 0};
17463 static swig_type_info _swigt__p_p_wxControl
= {"_p_p_wxControl", 0, 0, 0, 0, 0};
17464 static swig_type_info _swigt__p_p_wxMDIChildFrame
= {"_p_p_wxMDIChildFrame", 0, 0, 0, 0, 0};
17465 static swig_type_info _swigt__p_p_wxControlWithItems
= {"_p_p_wxControlWithItems", 0, 0, 0, 0, 0};
17466 static swig_type_info _swigt__p_p_wxPyWindow
= {"_p_p_wxPyWindow", 0, 0, 0, 0, 0};
17467 static swig_type_info _swigt__p_p_wxPreviewCanvas
= {"_p_p_wxPreviewCanvas", 0, 0, 0, 0, 0};
17468 static swig_type_info _swigt__p_p_wxSimpleHtmlListBox
= {"_p_p_wxSimpleHtmlListBox", 0, 0, 0, 0, 0};
17469 static swig_type_info _swigt__p_p_wxPyHtmlListBox
= {"_p_p_wxPyHtmlListBox", 0, 0, 0, 0, 0};
17470 static swig_type_info _swigt__p_p_wxPyVListBox
= {"_p_p_wxPyVListBox", 0, 0, 0, 0, 0};
17471 static swig_type_info _swigt__p_p_wxAuiNotebook
= {"_p_p_wxAuiNotebook", 0, 0, 0, 0, 0};
17472 static swig_type_info _swigt__p_p_wxPreviewControlBar
= {"_p_p_wxPreviewControlBar", 0, 0, 0, 0, 0};
17473 static swig_type_info _swigt__p_p_wxPyPreviewControlBar
= {"_p_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0};
17474 static swig_type_info _swigt__p_p_wxAuiTabCtrl
= {"_p_p_wxAuiTabCtrl", 0, 0, 0, 0, 0};
17475 static swig_type_info _swigt__p_p_wxFrame
= {"_p_p_wxFrame", 0, 0, 0, 0, 0};
17476 static swig_type_info _swigt__p_p_wxFontDialog
= {"_p_p_wxFontDialog", 0, 0, 0, 0, 0};
17477 static swig_type_info _swigt__p_p_wxDirDialog
= {"_p_p_wxDirDialog", 0, 0, 0, 0, 0};
17478 static swig_type_info _swigt__p_p_wxColourDialog
= {"_p_p_wxColourDialog", 0, 0, 0, 0, 0};
17479 static swig_type_info _swigt__p_p_wxDialog
= {"_p_p_wxDialog", 0, 0, 0, 0, 0};
17480 static swig_type_info _swigt__p_p_wxAuiFloatingFrame
= {"_p_p_wxAuiFloatingFrame", 0, 0, 0, 0, 0};
17481 static swig_type_info _swigt__p_p_wxMDIParentFrame
= {"_p_p_wxMDIParentFrame", 0, 0, 0, 0, 0};
17482 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0};
17483 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0};
17484 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxUIntPtr *", 0, 0, (void*)0, 0};
17485 static swig_type_info _swigt__p_wxArrayString
= {"_p_wxArrayString", "wxArrayString *", 0, 0, (void*)0, 0};
17486 static swig_type_info _swigt__p_wxAuiDefaultDockArt
= {"_p_wxAuiDefaultDockArt", "wxAuiDefaultDockArt *", 0, 0, (void*)0, 0};
17487 static swig_type_info _swigt__p_wxAuiDefaultTabArt
= {"_p_wxAuiDefaultTabArt", "wxAuiDefaultTabArt *", 0, 0, (void*)0, 0};
17488 static swig_type_info _swigt__p_wxAuiDockArt
= {"_p_wxAuiDockArt", "wxAuiDockArt *", 0, 0, (void*)0, 0};
17489 static swig_type_info _swigt__p_wxAuiDockInfo
= {"_p_wxAuiDockInfo", "wxAuiDockInfo *", 0, 0, (void*)0, 0};
17490 static swig_type_info _swigt__p_wxAuiDockUIPart
= {"_p_wxAuiDockUIPart", "wxAuiDockUIPart *", 0, 0, (void*)0, 0};
17491 static swig_type_info _swigt__p_wxAuiFloatingFrame
= {"_p_wxAuiFloatingFrame", "wxAuiFloatingFrame *", 0, 0, (void*)0, 0};
17492 static swig_type_info _swigt__p_wxAuiManager
= {"_p_wxAuiManager", "wxAuiManager *", 0, 0, (void*)0, 0};
17493 static swig_type_info _swigt__p_wxAuiManagerEvent
= {"_p_wxAuiManagerEvent", "wxAuiManagerEvent *", 0, 0, (void*)0, 0};
17494 static swig_type_info _swigt__p_wxAuiNotebook
= {"_p_wxAuiNotebook", "wxAuiNotebook *", 0, 0, (void*)0, 0};
17495 static swig_type_info _swigt__p_wxAuiNotebookEvent
= {"_p_wxAuiNotebookEvent", "wxAuiNotebookEvent *", 0, 0, (void*)0, 0};
17496 static swig_type_info _swigt__p_wxAuiNotebookPage
= {"_p_wxAuiNotebookPage", "wxAuiNotebookPage *", 0, 0, (void*)0, 0};
17497 static swig_type_info _swigt__p_wxAuiNotebookPageArray
= {"_p_wxAuiNotebookPageArray", "wxAuiNotebookPageArray *", 0, 0, (void*)0, 0};
17498 static swig_type_info _swigt__p_wxAuiPaneButton
= {"_p_wxAuiPaneButton", "wxAuiPaneButton *", 0, 0, (void*)0, 0};
17499 static swig_type_info _swigt__p_wxAuiPaneButtonArray
= {"_p_wxAuiPaneButtonArray", "wxAuiPaneButtonArray *", 0, 0, (void*)0, 0};
17500 static swig_type_info _swigt__p_wxAuiPaneInfo
= {"_p_wxAuiPaneInfo", "wxAuiPaneInfo *", 0, 0, (void*)0, 0};
17501 static swig_type_info _swigt__p_wxAuiPaneInfoPtrArray
= {"_p_wxAuiPaneInfoPtrArray", "wxAuiPaneInfoPtrArray *", 0, 0, (void*)0, 0};
17502 static swig_type_info _swigt__p_wxAuiSimpleTabArt
= {"_p_wxAuiSimpleTabArt", "wxAuiSimpleTabArt *", 0, 0, (void*)0, 0};
17503 static swig_type_info _swigt__p_wxAuiTabArt
= {"_p_wxAuiTabArt", "wxAuiTabArt *", 0, 0, (void*)0, 0};
17504 static swig_type_info _swigt__p_wxAuiTabContainer
= {"_p_wxAuiTabContainer", "wxAuiTabContainer *", 0, 0, (void*)0, 0};
17505 static swig_type_info _swigt__p_wxAuiTabContainerButton
= {"_p_wxAuiTabContainerButton", "wxAuiTabContainerButton *", 0, 0, (void*)0, 0};
17506 static swig_type_info _swigt__p_wxAuiTabCtrl
= {"_p_wxAuiTabCtrl", "wxAuiTabCtrl *", 0, 0, (void*)0, 0};
17507 static swig_type_info _swigt__p_wxBitmap
= {"_p_wxBitmap", "wxBitmap *", 0, 0, (void*)0, 0};
17508 static swig_type_info _swigt__p_wxColor
= {"_p_wxColor", "wxColor *", 0, 0, (void*)0, 0};
17509 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0};
17510 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", "wxCommandEvent *", 0, 0, (void*)0, 0};
17511 static swig_type_info _swigt__p_wxSashEvent
= {"_p_wxSashEvent", 0, 0, 0, 0, 0};
17512 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0};
17513 static swig_type_info _swigt__p_wxSplitterEvent
= {"_p_wxSplitterEvent", 0, 0, 0, 0, 0};
17514 static swig_type_info _swigt__p_wxClipboardTextEvent
= {"_p_wxClipboardTextEvent", 0, 0, 0, 0, 0};
17515 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0};
17516 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0};
17517 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0};
17518 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0};
17519 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0, 0};
17520 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0};
17521 static swig_type_info _swigt__p_wxFindDialogEvent
= {"_p_wxFindDialogEvent", 0, 0, 0, 0, 0};
17522 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0};
17523 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", "wxControl *", 0, 0, (void*)0, 0};
17524 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0};
17525 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0};
17526 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0};
17527 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0};
17528 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0, 0};
17529 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0, 0};
17530 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0};
17531 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0};
17532 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0};
17533 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0};
17534 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0, 0};
17535 static swig_type_info _swigt__p_wxMouseCaptureLostEvent
= {"_p_wxMouseCaptureLostEvent", 0, 0, 0, 0, 0};
17536 static swig_type_info _swigt__p_wxCalculateLayoutEvent
= {"_p_wxCalculateLayoutEvent", 0, 0, 0, 0, 0};
17537 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0};
17538 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0};
17539 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0};
17540 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0};
17541 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0, 0};
17542 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0};
17543 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0};
17544 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0};
17545 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0};
17546 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0};
17547 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0};
17548 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0};
17549 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0};
17550 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0};
17551 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0};
17552 static swig_type_info _swigt__p_wxQueryLayoutInfoEvent
= {"_p_wxQueryLayoutInfoEvent", 0, 0, 0, 0, 0};
17553 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0, 0};
17554 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0};
17555 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0};
17556 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", 0, 0, 0, 0, 0};
17557 static swig_type_info _swigt__p_wxTaskBarIconEvent
= {"_p_wxTaskBarIconEvent", 0, 0, 0, 0, 0};
17558 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0};
17559 static swig_type_info _swigt__p_wxSplashScreen
= {"_p_wxSplashScreen", 0, 0, 0, 0, 0};
17560 static swig_type_info _swigt__p_wxPyPanel
= {"_p_wxPyPanel", 0, 0, 0, 0, 0};
17561 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", 0, 0, 0, 0, 0};
17562 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", 0, 0, 0, 0, 0};
17563 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0, 0};
17564 static swig_type_info _swigt__p_wxNumberEntryDialog
= {"_p_wxNumberEntryDialog", 0, 0, 0, 0, 0};
17565 static swig_type_info _swigt__p_wxPasswordEntryDialog
= {"_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0};
17566 static swig_type_info _swigt__p_wxFileDialog
= {"_p_wxFileDialog", 0, 0, 0, 0, 0};
17567 static swig_type_info _swigt__p_wxFindReplaceDialog
= {"_p_wxFindReplaceDialog", 0, 0, 0, 0, 0};
17568 static swig_type_info _swigt__p_wxProgressDialog
= {"_p_wxProgressDialog", 0, 0, 0, 0, 0};
17569 static swig_type_info _swigt__p_wxMessageDialog
= {"_p_wxMessageDialog", 0, 0, 0, 0, 0};
17570 static swig_type_info _swigt__p_wxTextEntryDialog
= {"_p_wxTextEntryDialog", 0, 0, 0, 0, 0};
17571 static swig_type_info _swigt__p_wxSingleChoiceDialog
= {"_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0};
17572 static swig_type_info _swigt__p_wxMultiChoiceDialog
= {"_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0};
17573 static swig_type_info _swigt__p_wxPanel
= {"_p_wxPanel", 0, 0, 0, 0, 0};
17574 static swig_type_info _swigt__p_wxStatusBar
= {"_p_wxStatusBar", 0, 0, 0, 0, 0};
17575 static swig_type_info _swigt__p_wxSashWindow
= {"_p_wxSashWindow", 0, 0, 0, 0, 0};
17576 static swig_type_info _swigt__p_wxScrolledWindow
= {"_p_wxScrolledWindow", 0, 0, 0, 0, 0};
17577 static swig_type_info _swigt__p_wxMDIClientWindow
= {"_p_wxMDIClientWindow", 0, 0, 0, 0, 0};
17578 static swig_type_info _swigt__p_wxPyScrolledWindow
= {"_p_wxPyScrolledWindow", 0, 0, 0, 0, 0};
17579 static swig_type_info _swigt__p_wxSplitterWindow
= {"_p_wxSplitterWindow", 0, 0, 0, 0, 0};
17580 static swig_type_info _swigt__p_wxSplashScreenWindow
= {"_p_wxSplashScreenWindow", 0, 0, 0, 0, 0};
17581 static swig_type_info _swigt__p_wxSashLayoutWindow
= {"_p_wxSashLayoutWindow", 0, 0, 0, 0, 0};
17582 static swig_type_info _swigt__p_wxPopupWindow
= {"_p_wxPopupWindow", 0, 0, 0, 0, 0};
17583 static swig_type_info _swigt__p_wxPyPopupTransientWindow
= {"_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0};
17584 static swig_type_info _swigt__p_wxTipWindow
= {"_p_wxTipWindow", 0, 0, 0, 0, 0};
17585 static swig_type_info _swigt__p_wxPyVScrolledWindow
= {"_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0};
17586 static swig_type_info _swigt__p_wxPyPreviewFrame
= {"_p_wxPyPreviewFrame", 0, 0, 0, 0, 0};
17587 static swig_type_info _swigt__p_wxPreviewFrame
= {"_p_wxPreviewFrame", 0, 0, 0, 0, 0};
17588 static swig_type_info _swigt__p_wxMDIChildFrame
= {"_p_wxMDIChildFrame", 0, 0, 0, 0, 0};
17589 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0, 0};
17590 static swig_type_info _swigt__p_wxPyWindow
= {"_p_wxPyWindow", 0, 0, 0, 0, 0};
17591 static swig_type_info _swigt__p_wxPreviewCanvas
= {"_p_wxPreviewCanvas", 0, 0, 0, 0, 0};
17592 static swig_type_info _swigt__p_wxSimpleHtmlListBox
= {"_p_wxSimpleHtmlListBox", 0, 0, 0, 0, 0};
17593 static swig_type_info _swigt__p_wxPyHtmlListBox
= {"_p_wxPyHtmlListBox", 0, 0, 0, 0, 0};
17594 static swig_type_info _swigt__p_wxPyVListBox
= {"_p_wxPyVListBox", 0, 0, 0, 0, 0};
17595 static swig_type_info _swigt__p_wxPreviewControlBar
= {"_p_wxPreviewControlBar", 0, 0, 0, 0, 0};
17596 static swig_type_info _swigt__p_wxPyPreviewControlBar
= {"_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0};
17597 static swig_type_info _swigt__p_wxPyTaskBarIcon
= {"_p_wxPyTaskBarIcon", 0, 0, 0, 0, 0};
17598 static swig_type_info _swigt__p_wxFontDialog
= {"_p_wxFontDialog", 0, 0, 0, 0, 0};
17599 static swig_type_info _swigt__p_wxDirDialog
= {"_p_wxDirDialog", 0, 0, 0, 0, 0};
17600 static swig_type_info _swigt__p_wxColourDialog
= {"_p_wxColourDialog", 0, 0, 0, 0, 0};
17601 static swig_type_info _swigt__p_wxDialog
= {"_p_wxDialog", 0, 0, 0, 0, 0};
17602 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", 0, 0, 0, 0, 0};
17603 static swig_type_info _swigt__p_wxMDIParentFrame
= {"_p_wxMDIParentFrame", 0, 0, 0, 0, 0};
17604 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0};
17605 static swig_type_info _swigt__p_wxFrame
= {"_p_wxFrame", "wxFrame *", 0, 0, (void*)0, 0};
17606 static swig_type_info _swigt__p_wxMiniFrame
= {"_p_wxMiniFrame", "wxMiniFrame *", 0, 0, (void*)0, 0};
17607 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", "wxNotifyEvent *", 0, 0, (void*)0, 0};
17608 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0};
17609 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0};
17610 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0};
17611 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0};
17612 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0};
17613 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0};
17614 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0};
17615 static swig_type_info _swigt__p_wxFontData
= {"_p_wxFontData", 0, 0, 0, 0, 0};
17616 static swig_type_info _swigt__p_wxPrintData
= {"_p_wxPrintData", 0, 0, 0, 0, 0};
17617 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0, 0};
17618 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0};
17619 static swig_type_info _swigt__p_wxLayoutAlgorithm
= {"_p_wxLayoutAlgorithm", 0, 0, 0, 0, 0};
17620 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0, 0};
17621 static swig_type_info _swigt__p_wxFindReplaceData
= {"_p_wxFindReplaceData", 0, 0, 0, 0, 0};
17622 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0, 0};
17623 static swig_type_info _swigt__p_wxColourData
= {"_p_wxColourData", 0, 0, 0, 0, 0};
17624 static swig_type_info _swigt__p_wxPrinter
= {"_p_wxPrinter", 0, 0, 0, 0, 0};
17625 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0, 0};
17626 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0};
17627 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0};
17628 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0};
17629 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0};
17630 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0};
17631 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0, 0};
17632 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0, 0};
17633 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0, 0};
17634 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0};
17635 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0};
17636 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0, 0};
17637 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0};
17638 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0};
17639 static swig_type_info _swigt__p_wxTGAHandler
= {"_p_wxTGAHandler", 0, 0, 0, 0, 0};
17640 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0};
17641 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0};
17642 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0, 0};
17643 static swig_type_info _swigt__p_wxPyPrintout
= {"_p_wxPyPrintout", 0, 0, 0, 0, 0};
17644 static swig_type_info _swigt__p_wxPrintPreview
= {"_p_wxPrintPreview", 0, 0, 0, 0, 0};
17645 static swig_type_info _swigt__p_wxPyPrintPreview
= {"_p_wxPyPrintPreview", 0, 0, 0, 0, 0};
17646 static swig_type_info _swigt__p_wxPageSetupDialog
= {"_p_wxPageSetupDialog", 0, 0, 0, 0, 0};
17647 static swig_type_info _swigt__p_wxPrintDialog
= {"_p_wxPrintDialog", 0, 0, 0, 0, 0};
17648 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", 0, 0, 0, 0, 0};
17649 static swig_type_info _swigt__p_wxPageSetupDialogData
= {"_p_wxPageSetupDialogData", 0, 0, 0, 0, 0};
17650 static swig_type_info _swigt__p_wxPrintDialogData
= {"_p_wxPrintDialogData", 0, 0, 0, 0, 0};
17651 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0};
17652 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0};
17653 static swig_type_info _swigt__p_wxPyAuiDockArt
= {"_p_wxPyAuiDockArt", "wxPyAuiDockArt *", 0, 0, (void*)0, 0};
17654 static swig_type_info _swigt__p_wxPyAuiTabArt
= {"_p_wxPyAuiTabArt", "wxPyAuiTabArt *", 0, 0, (void*)0, 0};
17655 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0};
17656 static swig_type_info _swigt__p_wxSize
= {"_p_wxSize", "wxSize *", 0, 0, (void*)0, 0};
17657 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", "wxSizer *", 0, 0, (void*)0, 0};
17658 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", "wxSizerItem *", 0, 0, (void*)0, 0};
17659 static swig_type_info _swigt__p_wxString
= {"_p_wxString", "wxString *", 0, 0, (void*)0, 0};
17660 static swig_type_info _swigt__p_wxTopLevelWindow
= {"_p_wxTopLevelWindow", "wxTopLevelWindow *", 0, 0, (void*)0, 0};
17661 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0};
17663 static swig_type_info
*swig_type_initial
[] = {
17665 &_swigt__p_form_ops_t
,
17667 &_swigt__p_p_wxAuiFloatingFrame
,
17668 &_swigt__p_p_wxAuiNotebook
,
17669 &_swigt__p_p_wxAuiTabContainerButton
,
17670 &_swigt__p_p_wxAuiTabCtrl
,
17671 &_swigt__p_p_wxColourDialog
,
17672 &_swigt__p_p_wxControl
,
17673 &_swigt__p_p_wxControlWithItems
,
17674 &_swigt__p_p_wxDialog
,
17675 &_swigt__p_p_wxDirDialog
,
17676 &_swigt__p_p_wxFileDialog
,
17677 &_swigt__p_p_wxFindReplaceDialog
,
17678 &_swigt__p_p_wxFontDialog
,
17679 &_swigt__p_p_wxFrame
,
17680 &_swigt__p_p_wxMDIChildFrame
,
17681 &_swigt__p_p_wxMDIClientWindow
,
17682 &_swigt__p_p_wxMDIParentFrame
,
17683 &_swigt__p_p_wxMenuBar
,
17684 &_swigt__p_p_wxMessageDialog
,
17685 &_swigt__p_p_wxMiniFrame
,
17686 &_swigt__p_p_wxMultiChoiceDialog
,
17687 &_swigt__p_p_wxNumberEntryDialog
,
17688 &_swigt__p_p_wxPanel
,
17689 &_swigt__p_p_wxPasswordEntryDialog
,
17690 &_swigt__p_p_wxPopupWindow
,
17691 &_swigt__p_p_wxPreviewCanvas
,
17692 &_swigt__p_p_wxPreviewControlBar
,
17693 &_swigt__p_p_wxPreviewFrame
,
17694 &_swigt__p_p_wxProgressDialog
,
17695 &_swigt__p_p_wxPyHtmlListBox
,
17696 &_swigt__p_p_wxPyPanel
,
17697 &_swigt__p_p_wxPyPopupTransientWindow
,
17698 &_swigt__p_p_wxPyPreviewControlBar
,
17699 &_swigt__p_p_wxPyPreviewFrame
,
17700 &_swigt__p_p_wxPyScrolledWindow
,
17701 &_swigt__p_p_wxPyVListBox
,
17702 &_swigt__p_p_wxPyVScrolledWindow
,
17703 &_swigt__p_p_wxPyWindow
,
17704 &_swigt__p_p_wxSashLayoutWindow
,
17705 &_swigt__p_p_wxSashWindow
,
17706 &_swigt__p_p_wxScrolledWindow
,
17707 &_swigt__p_p_wxSimpleHtmlListBox
,
17708 &_swigt__p_p_wxSingleChoiceDialog
,
17709 &_swigt__p_p_wxSplashScreen
,
17710 &_swigt__p_p_wxSplashScreenWindow
,
17711 &_swigt__p_p_wxSplitterWindow
,
17712 &_swigt__p_p_wxStatusBar
,
17713 &_swigt__p_p_wxTextEntryDialog
,
17714 &_swigt__p_p_wxTipWindow
,
17715 &_swigt__p_p_wxTopLevelWindow
,
17716 &_swigt__p_p_wxWindow
,
17717 &_swigt__p_unsigned_char
,
17718 &_swigt__p_unsigned_int
,
17719 &_swigt__p_unsigned_long
,
17720 &_swigt__p_wxANIHandler
,
17721 &_swigt__p_wxAcceleratorTable
,
17722 &_swigt__p_wxActivateEvent
,
17723 &_swigt__p_wxArrayString
,
17724 &_swigt__p_wxAuiDefaultDockArt
,
17725 &_swigt__p_wxAuiDefaultTabArt
,
17726 &_swigt__p_wxAuiDockArt
,
17727 &_swigt__p_wxAuiDockInfo
,
17728 &_swigt__p_wxAuiDockUIPart
,
17729 &_swigt__p_wxAuiFloatingFrame
,
17730 &_swigt__p_wxAuiManager
,
17731 &_swigt__p_wxAuiManagerEvent
,
17732 &_swigt__p_wxAuiNotebook
,
17733 &_swigt__p_wxAuiNotebookEvent
,
17734 &_swigt__p_wxAuiNotebookPage
,
17735 &_swigt__p_wxAuiNotebookPageArray
,
17736 &_swigt__p_wxAuiPaneButton
,
17737 &_swigt__p_wxAuiPaneButtonArray
,
17738 &_swigt__p_wxAuiPaneInfo
,
17739 &_swigt__p_wxAuiPaneInfoPtrArray
,
17740 &_swigt__p_wxAuiSimpleTabArt
,
17741 &_swigt__p_wxAuiTabArt
,
17742 &_swigt__p_wxAuiTabContainer
,
17743 &_swigt__p_wxAuiTabContainerButton
,
17744 &_swigt__p_wxAuiTabCtrl
,
17745 &_swigt__p_wxBMPHandler
,
17746 &_swigt__p_wxBitmap
,
17747 &_swigt__p_wxBoxSizer
,
17748 &_swigt__p_wxCURHandler
,
17749 &_swigt__p_wxCalculateLayoutEvent
,
17750 &_swigt__p_wxChildFocusEvent
,
17751 &_swigt__p_wxClipboardTextEvent
,
17752 &_swigt__p_wxCloseEvent
,
17753 &_swigt__p_wxColor
,
17754 &_swigt__p_wxColour
,
17755 &_swigt__p_wxColourData
,
17756 &_swigt__p_wxColourDialog
,
17757 &_swigt__p_wxCommandEvent
,
17758 &_swigt__p_wxContextMenuEvent
,
17759 &_swigt__p_wxControl
,
17760 &_swigt__p_wxControlWithItems
,
17762 &_swigt__p_wxDateEvent
,
17763 &_swigt__p_wxDialog
,
17764 &_swigt__p_wxDirDialog
,
17765 &_swigt__p_wxDisplayChangedEvent
,
17766 &_swigt__p_wxDropFilesEvent
,
17767 &_swigt__p_wxDuplexMode
,
17768 &_swigt__p_wxEraseEvent
,
17769 &_swigt__p_wxEvent
,
17770 &_swigt__p_wxEvtHandler
,
17771 &_swigt__p_wxFSFile
,
17772 &_swigt__p_wxFileDialog
,
17773 &_swigt__p_wxFileSystem
,
17774 &_swigt__p_wxFindDialogEvent
,
17775 &_swigt__p_wxFindReplaceData
,
17776 &_swigt__p_wxFindReplaceDialog
,
17777 &_swigt__p_wxFlexGridSizer
,
17778 &_swigt__p_wxFocusEvent
,
17780 &_swigt__p_wxFontData
,
17781 &_swigt__p_wxFontDialog
,
17782 &_swigt__p_wxFrame
,
17783 &_swigt__p_wxGBSizerItem
,
17784 &_swigt__p_wxGIFHandler
,
17785 &_swigt__p_wxGridBagSizer
,
17786 &_swigt__p_wxGridSizer
,
17787 &_swigt__p_wxICOHandler
,
17788 &_swigt__p_wxIconizeEvent
,
17789 &_swigt__p_wxIdleEvent
,
17790 &_swigt__p_wxImage
,
17791 &_swigt__p_wxImageHandler
,
17792 &_swigt__p_wxIndividualLayoutConstraint
,
17793 &_swigt__p_wxInitDialogEvent
,
17794 &_swigt__p_wxJPEGHandler
,
17795 &_swigt__p_wxKeyEvent
,
17796 &_swigt__p_wxLayoutAlgorithm
,
17797 &_swigt__p_wxLayoutConstraints
,
17798 &_swigt__p_wxMDIChildFrame
,
17799 &_swigt__p_wxMDIClientWindow
,
17800 &_swigt__p_wxMDIParentFrame
,
17801 &_swigt__p_wxMaximizeEvent
,
17803 &_swigt__p_wxMenuBar
,
17804 &_swigt__p_wxMenuEvent
,
17805 &_swigt__p_wxMenuItem
,
17806 &_swigt__p_wxMessageDialog
,
17807 &_swigt__p_wxMiniFrame
,
17808 &_swigt__p_wxMouseCaptureChangedEvent
,
17809 &_swigt__p_wxMouseCaptureLostEvent
,
17810 &_swigt__p_wxMouseEvent
,
17811 &_swigt__p_wxMoveEvent
,
17812 &_swigt__p_wxMultiChoiceDialog
,
17813 &_swigt__p_wxNavigationKeyEvent
,
17814 &_swigt__p_wxNcPaintEvent
,
17815 &_swigt__p_wxNotifyEvent
,
17816 &_swigt__p_wxNumberEntryDialog
,
17817 &_swigt__p_wxObject
,
17818 &_swigt__p_wxPCXHandler
,
17819 &_swigt__p_wxPNGHandler
,
17820 &_swigt__p_wxPNMHandler
,
17821 &_swigt__p_wxPageSetupDialog
,
17822 &_swigt__p_wxPageSetupDialogData
,
17823 &_swigt__p_wxPaintEvent
,
17824 &_swigt__p_wxPaletteChangedEvent
,
17825 &_swigt__p_wxPanel
,
17826 &_swigt__p_wxPaperSize
,
17827 &_swigt__p_wxPasswordEntryDialog
,
17828 &_swigt__p_wxPoint
,
17829 &_swigt__p_wxPopupWindow
,
17830 &_swigt__p_wxPreviewCanvas
,
17831 &_swigt__p_wxPreviewControlBar
,
17832 &_swigt__p_wxPreviewFrame
,
17833 &_swigt__p_wxPrintData
,
17834 &_swigt__p_wxPrintDialog
,
17835 &_swigt__p_wxPrintDialogData
,
17836 &_swigt__p_wxPrintPreview
,
17837 &_swigt__p_wxPrinter
,
17838 &_swigt__p_wxProgressDialog
,
17839 &_swigt__p_wxPyApp
,
17840 &_swigt__p_wxPyAuiDockArt
,
17841 &_swigt__p_wxPyAuiTabArt
,
17842 &_swigt__p_wxPyCommandEvent
,
17843 &_swigt__p_wxPyEvent
,
17844 &_swigt__p_wxPyHtmlListBox
,
17845 &_swigt__p_wxPyImageHandler
,
17846 &_swigt__p_wxPyPanel
,
17847 &_swigt__p_wxPyPopupTransientWindow
,
17848 &_swigt__p_wxPyPreviewControlBar
,
17849 &_swigt__p_wxPyPreviewFrame
,
17850 &_swigt__p_wxPyPrintPreview
,
17851 &_swigt__p_wxPyPrintout
,
17852 &_swigt__p_wxPyScrolledWindow
,
17853 &_swigt__p_wxPySizer
,
17854 &_swigt__p_wxPyTaskBarIcon
,
17855 &_swigt__p_wxPyVListBox
,
17856 &_swigt__p_wxPyVScrolledWindow
,
17857 &_swigt__p_wxPyValidator
,
17858 &_swigt__p_wxPyWindow
,
17859 &_swigt__p_wxQueryLayoutInfoEvent
,
17860 &_swigt__p_wxQueryNewPaletteEvent
,
17862 &_swigt__p_wxSashEvent
,
17863 &_swigt__p_wxSashLayoutWindow
,
17864 &_swigt__p_wxSashWindow
,
17865 &_swigt__p_wxScrollEvent
,
17866 &_swigt__p_wxScrollWinEvent
,
17867 &_swigt__p_wxScrolledWindow
,
17868 &_swigt__p_wxSetCursorEvent
,
17869 &_swigt__p_wxShowEvent
,
17870 &_swigt__p_wxSimpleHtmlListBox
,
17871 &_swigt__p_wxSingleChoiceDialog
,
17873 &_swigt__p_wxSizeEvent
,
17874 &_swigt__p_wxSizer
,
17875 &_swigt__p_wxSizerItem
,
17876 &_swigt__p_wxSplashScreen
,
17877 &_swigt__p_wxSplashScreenWindow
,
17878 &_swigt__p_wxSplitterEvent
,
17879 &_swigt__p_wxSplitterWindow
,
17880 &_swigt__p_wxStaticBoxSizer
,
17881 &_swigt__p_wxStatusBar
,
17882 &_swigt__p_wxStdDialogButtonSizer
,
17883 &_swigt__p_wxString
,
17884 &_swigt__p_wxSysColourChangedEvent
,
17885 &_swigt__p_wxTGAHandler
,
17886 &_swigt__p_wxTIFFHandler
,
17887 &_swigt__p_wxTaskBarIconEvent
,
17888 &_swigt__p_wxTextEntryDialog
,
17889 &_swigt__p_wxTipWindow
,
17890 &_swigt__p_wxTopLevelWindow
,
17891 &_swigt__p_wxUpdateUIEvent
,
17892 &_swigt__p_wxValidator
,
17893 &_swigt__p_wxWindow
,
17894 &_swigt__p_wxWindowCreateEvent
,
17895 &_swigt__p_wxWindowDestroyEvent
,
17896 &_swigt__p_wxXPMHandler
,
17899 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
17900 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
17901 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
17902 static swig_cast_info _swigc__p_p_wxAuiTabContainerButton
[] = { {&_swigt__p_p_wxAuiTabContainerButton
, 0, 0, 0},{0, 0, 0, 0}};
17903 static swig_cast_info _swigc__p_p_wxSplashScreen
[] = {{&_swigt__p_p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
17904 static swig_cast_info _swigc__p_p_wxMiniFrame
[] = {{&_swigt__p_p_wxMiniFrame
, 0, 0, 0},{0, 0, 0, 0}};
17905 static swig_cast_info _swigc__p_p_wxPyPanel
[] = {{&_swigt__p_p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
17906 static swig_cast_info _swigc__p_p_wxMenuBar
[] = {{&_swigt__p_p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
17907 static swig_cast_info _swigc__p_p_wxFindReplaceDialog
[] = {{&_swigt__p_p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
17908 static swig_cast_info _swigc__p_p_wxProgressDialog
[] = {{&_swigt__p_p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
17909 static swig_cast_info _swigc__p_p_wxMessageDialog
[] = {{&_swigt__p_p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
17910 static swig_cast_info _swigc__p_p_wxNumberEntryDialog
[] = {{&_swigt__p_p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
17911 static swig_cast_info _swigc__p_p_wxPasswordEntryDialog
[] = {{&_swigt__p_p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
17912 static swig_cast_info _swigc__p_p_wxTextEntryDialog
[] = {{&_swigt__p_p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
17913 static swig_cast_info _swigc__p_p_wxSingleChoiceDialog
[] = {{&_swigt__p_p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
17914 static swig_cast_info _swigc__p_p_wxMultiChoiceDialog
[] = {{&_swigt__p_p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
17915 static swig_cast_info _swigc__p_p_wxFileDialog
[] = {{&_swigt__p_p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
17916 static swig_cast_info _swigc__p_p_wxPanel
[] = {{&_swigt__p_p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}};
17917 static swig_cast_info _swigc__p_p_wxStatusBar
[] = {{&_swigt__p_p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
17918 static swig_cast_info _swigc__p_p_wxPyVScrolledWindow
[] = {{&_swigt__p_p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
17919 static swig_cast_info _swigc__p_p_wxTipWindow
[] = {{&_swigt__p_p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
17920 static swig_cast_info _swigc__p_p_wxPyPopupTransientWindow
[] = {{&_swigt__p_p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}};
17921 static swig_cast_info _swigc__p_p_wxPopupWindow
[] = {{&_swigt__p_p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}};
17922 static swig_cast_info _swigc__p_p_wxSashLayoutWindow
[] = {{&_swigt__p_p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
17923 static swig_cast_info _swigc__p_p_wxScrolledWindow
[] = {{&_swigt__p_p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
17924 static swig_cast_info _swigc__p_p_wxTopLevelWindow
[] = {{&_swigt__p_p_wxTopLevelWindow
, 0, 0, 0},{0, 0, 0, 0}};
17925 static swig_cast_info _swigc__p_p_wxSplashScreenWindow
[] = {{&_swigt__p_p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
17926 static swig_cast_info _swigc__p_p_wxSplitterWindow
[] = {{&_swigt__p_p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
17927 static swig_cast_info _swigc__p_p_wxSashWindow
[] = {{&_swigt__p_p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}};
17928 static swig_cast_info _swigc__p_p_wxMDIClientWindow
[] = {{&_swigt__p_p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
17929 static swig_cast_info _swigc__p_p_wxPyScrolledWindow
[] = {{&_swigt__p_p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
17930 static swig_cast_info _swigc__p_p_wxPreviewFrame
[] = {{&_swigt__p_p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
17931 static swig_cast_info _swigc__p_p_wxPyPreviewFrame
[] = {{&_swigt__p_p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
17932 static swig_cast_info _swigc__p_p_wxControl
[] = {{&_swigt__p_p_wxControl
, 0, 0, 0},{0, 0, 0, 0}};
17933 static swig_cast_info _swigc__p_p_wxMDIChildFrame
[] = {{&_swigt__p_p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
17934 static swig_cast_info _swigc__p_p_wxControlWithItems
[] = {{&_swigt__p_p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
17935 static swig_cast_info _swigc__p_p_wxPyWindow
[] = {{&_swigt__p_p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
17936 static swig_cast_info _swigc__p_p_wxPreviewCanvas
[] = {{&_swigt__p_p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
17937 static swig_cast_info _swigc__p_p_wxSimpleHtmlListBox
[] = {{&_swigt__p_p_wxSimpleHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
17938 static swig_cast_info _swigc__p_p_wxPyHtmlListBox
[] = {{&_swigt__p_p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
17939 static swig_cast_info _swigc__p_p_wxPyVListBox
[] = {{&_swigt__p_p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}};
17940 static swig_cast_info _swigc__p_p_wxAuiNotebook
[] = {{&_swigt__p_p_wxAuiNotebook
, 0, 0, 0},{0, 0, 0, 0}};
17941 static swig_cast_info _swigc__p_p_wxPreviewControlBar
[] = {{&_swigt__p_p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
17942 static swig_cast_info _swigc__p_p_wxPyPreviewControlBar
[] = {{&_swigt__p_p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
17943 static swig_cast_info _swigc__p_p_wxAuiTabCtrl
[] = {{&_swigt__p_p_wxAuiTabCtrl
, 0, 0, 0},{0, 0, 0, 0}};
17944 static swig_cast_info _swigc__p_p_wxFrame
[] = {{&_swigt__p_p_wxFrame
, 0, 0, 0},{0, 0, 0, 0}};
17945 static swig_cast_info _swigc__p_p_wxFontDialog
[] = {{&_swigt__p_p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
17946 static swig_cast_info _swigc__p_p_wxDirDialog
[] = {{&_swigt__p_p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
17947 static swig_cast_info _swigc__p_p_wxColourDialog
[] = {{&_swigt__p_p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
17948 static swig_cast_info _swigc__p_p_wxDialog
[] = {{&_swigt__p_p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}};
17949 static swig_cast_info _swigc__p_p_wxAuiFloatingFrame
[] = {{&_swigt__p_p_wxAuiFloatingFrame
, 0, 0, 0},{0, 0, 0, 0}};
17950 static swig_cast_info _swigc__p_p_wxMDIParentFrame
[] = {{&_swigt__p_p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
17951 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}};
17952 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
17953 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
17954 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
17955 static swig_cast_info _swigc__p_wxArrayString
[] = { {&_swigt__p_wxArrayString
, 0, 0, 0},{0, 0, 0, 0}};
17956 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}};
17957 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}};
17958 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}};
17959 static swig_cast_info _swigc__p_wxAuiDockInfo
[] = { {&_swigt__p_wxAuiDockInfo
, 0, 0, 0},{0, 0, 0, 0}};
17960 static swig_cast_info _swigc__p_wxAuiDockUIPart
[] = { {&_swigt__p_wxAuiDockUIPart
, 0, 0, 0},{0, 0, 0, 0}};
17961 static swig_cast_info _swigc__p_wxAuiFloatingFrame
[] = { {&_swigt__p_wxAuiFloatingFrame
, 0, 0, 0},{0, 0, 0, 0}};
17962 static swig_cast_info _swigc__p_wxAuiManager
[] = { {&_swigt__p_wxAuiManager
, 0, 0, 0},{0, 0, 0, 0}};
17963 static swig_cast_info _swigc__p_wxAuiManagerEvent
[] = { {&_swigt__p_wxAuiManagerEvent
, 0, 0, 0},{0, 0, 0, 0}};
17964 static swig_cast_info _swigc__p_wxAuiNotebook
[] = { {&_swigt__p_wxAuiNotebook
, 0, 0, 0},{0, 0, 0, 0}};
17965 static swig_cast_info _swigc__p_wxAuiNotebookEvent
[] = { {&_swigt__p_wxAuiNotebookEvent
, 0, 0, 0},{0, 0, 0, 0}};
17966 static swig_cast_info _swigc__p_wxAuiNotebookPage
[] = { {&_swigt__p_wxAuiNotebookPage
, 0, 0, 0},{0, 0, 0, 0}};
17967 static swig_cast_info _swigc__p_wxAuiNotebookPageArray
[] = { {&_swigt__p_wxAuiNotebookPageArray
, 0, 0, 0},{0, 0, 0, 0}};
17968 static swig_cast_info _swigc__p_wxAuiPaneButton
[] = { {&_swigt__p_wxAuiPaneButton
, 0, 0, 0},{0, 0, 0, 0}};
17969 static swig_cast_info _swigc__p_wxAuiPaneButtonArray
[] = { {&_swigt__p_wxAuiPaneButtonArray
, 0, 0, 0},{0, 0, 0, 0}};
17970 static swig_cast_info _swigc__p_wxAuiPaneInfo
[] = { {&_swigt__p_wxAuiPaneInfo
, 0, 0, 0},{0, 0, 0, 0}};
17971 static swig_cast_info _swigc__p_wxAuiPaneInfoPtrArray
[] = { {&_swigt__p_wxAuiPaneInfoPtrArray
, 0, 0, 0},{0, 0, 0, 0}};
17972 static swig_cast_info _swigc__p_wxAuiSimpleTabArt
[] = { {&_swigt__p_wxAuiSimpleTabArt
, 0, 0, 0},{0, 0, 0, 0}};
17973 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}};
17974 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}};
17975 static swig_cast_info _swigc__p_wxAuiTabContainerButton
[] = { {&_swigt__p_wxAuiTabContainerButton
, 0, 0, 0},{0, 0, 0, 0}};
17976 static swig_cast_info _swigc__p_wxAuiTabCtrl
[] = { {&_swigt__p_wxAuiTabCtrl
, 0, 0, 0},{0, 0, 0, 0}};
17977 static swig_cast_info _swigc__p_wxBitmap
[] = { {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}};
17978 static swig_cast_info _swigc__p_wxColor
[] = { {&_swigt__p_wxColor
, 0, 0, 0},{0, 0, 0, 0}};
17979 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
17980 static swig_cast_info _swigc__p_wxSashEvent
[] = {{&_swigt__p_wxSashEvent
, 0, 0, 0},{0, 0, 0, 0}};
17981 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
17982 static swig_cast_info _swigc__p_wxSplitterEvent
[] = {{&_swigt__p_wxSplitterEvent
, 0, 0, 0},{0, 0, 0, 0}};
17983 static swig_cast_info _swigc__p_wxClipboardTextEvent
[] = {{&_swigt__p_wxClipboardTextEvent
, 0, 0, 0},{0, 0, 0, 0}};
17984 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
17985 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
17986 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
17987 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
17988 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
17989 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
17990 static swig_cast_info _swigc__p_wxFindDialogEvent
[] = {{&_swigt__p_wxFindDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
17991 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
17992 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}};
17993 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
17994 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}};
17995 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
17996 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
17997 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
17998 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
17999 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
18000 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
18001 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
18002 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
18003 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
18004 static swig_cast_info _swigc__p_wxMouseCaptureLostEvent
[] = {{&_swigt__p_wxMouseCaptureLostEvent
, 0, 0, 0},{0, 0, 0, 0}};
18005 static swig_cast_info _swigc__p_wxCalculateLayoutEvent
[] = {{&_swigt__p_wxCalculateLayoutEvent
, 0, 0, 0},{0, 0, 0, 0}};
18006 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
18007 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
18008 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
18009 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
18010 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
18011 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
18012 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
18013 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
18014 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
18015 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
18016 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
18017 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
18018 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
18019 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
18020 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
18021 static swig_cast_info _swigc__p_wxQueryLayoutInfoEvent
[] = {{&_swigt__p_wxQueryLayoutInfoEvent
, 0, 0, 0},{0, 0, 0, 0}};
18022 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
18023 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
18024 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
18025 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
18026 static swig_cast_info _swigc__p_wxTaskBarIconEvent
[] = {{&_swigt__p_wxTaskBarIconEvent
, 0, 0, 0},{0, 0, 0, 0}};
18027 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}};
18028 static swig_cast_info _swigc__p_wxSplashScreen
[] = {{&_swigt__p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
18029 static swig_cast_info _swigc__p_wxPyPanel
[] = {{&_swigt__p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
18030 static swig_cast_info _swigc__p_wxMenuBar
[] = {{&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
18031 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}};
18032 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
18033 static swig_cast_info _swigc__p_wxNumberEntryDialog
[] = {{&_swigt__p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
18034 static swig_cast_info _swigc__p_wxPasswordEntryDialog
[] = {{&_swigt__p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
18035 static swig_cast_info _swigc__p_wxFileDialog
[] = {{&_swigt__p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
18036 static swig_cast_info _swigc__p_wxFindReplaceDialog
[] = {{&_swigt__p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
18037 static swig_cast_info _swigc__p_wxProgressDialog
[] = {{&_swigt__p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
18038 static swig_cast_info _swigc__p_wxMessageDialog
[] = {{&_swigt__p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
18039 static swig_cast_info _swigc__p_wxTextEntryDialog
[] = {{&_swigt__p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
18040 static swig_cast_info _swigc__p_wxSingleChoiceDialog
[] = {{&_swigt__p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
18041 static swig_cast_info _swigc__p_wxMultiChoiceDialog
[] = {{&_swigt__p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
18042 static swig_cast_info _swigc__p_wxPanel
[] = {{&_swigt__p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}};
18043 static swig_cast_info _swigc__p_wxStatusBar
[] = {{&_swigt__p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
18044 static swig_cast_info _swigc__p_wxSashWindow
[] = {{&_swigt__p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}};
18045 static swig_cast_info _swigc__p_wxScrolledWindow
[] = {{&_swigt__p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
18046 static swig_cast_info _swigc__p_wxMDIClientWindow
[] = {{&_swigt__p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
18047 static swig_cast_info _swigc__p_wxPyScrolledWindow
[] = {{&_swigt__p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
18048 static swig_cast_info _swigc__p_wxSplitterWindow
[] = {{&_swigt__p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
18049 static swig_cast_info _swigc__p_wxSplashScreenWindow
[] = {{&_swigt__p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
18050 static swig_cast_info _swigc__p_wxSashLayoutWindow
[] = {{&_swigt__p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
18051 static swig_cast_info _swigc__p_wxPopupWindow
[] = {{&_swigt__p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}};
18052 static swig_cast_info _swigc__p_wxPyPopupTransientWindow
[] = {{&_swigt__p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}};
18053 static swig_cast_info _swigc__p_wxTipWindow
[] = {{&_swigt__p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
18054 static swig_cast_info _swigc__p_wxPyVScrolledWindow
[] = {{&_swigt__p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
18055 static swig_cast_info _swigc__p_wxPyPreviewFrame
[] = {{&_swigt__p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
18056 static swig_cast_info _swigc__p_wxPreviewFrame
[] = {{&_swigt__p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
18057 static swig_cast_info _swigc__p_wxMDIChildFrame
[] = {{&_swigt__p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
18058 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
18059 static swig_cast_info _swigc__p_wxPyWindow
[] = {{&_swigt__p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
18060 static swig_cast_info _swigc__p_wxPreviewCanvas
[] = {{&_swigt__p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
18061 static swig_cast_info _swigc__p_wxSimpleHtmlListBox
[] = {{&_swigt__p_wxSimpleHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
18062 static swig_cast_info _swigc__p_wxPyHtmlListBox
[] = {{&_swigt__p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
18063 static swig_cast_info _swigc__p_wxPyVListBox
[] = {{&_swigt__p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}};
18064 static swig_cast_info _swigc__p_wxPreviewControlBar
[] = {{&_swigt__p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
18065 static swig_cast_info _swigc__p_wxPyPreviewControlBar
[] = {{&_swigt__p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
18066 static swig_cast_info _swigc__p_wxPyTaskBarIcon
[] = {{&_swigt__p_wxPyTaskBarIcon
, 0, 0, 0},{0, 0, 0, 0}};
18067 static swig_cast_info _swigc__p_wxFontDialog
[] = {{&_swigt__p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
18068 static swig_cast_info _swigc__p_wxDirDialog
[] = {{&_swigt__p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
18069 static swig_cast_info _swigc__p_wxColourDialog
[] = {{&_swigt__p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
18070 static swig_cast_info _swigc__p_wxDialog
[] = {{&_swigt__p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}};
18071 static swig_cast_info _swigc__p_wxMenu
[] = {{&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
18072 static swig_cast_info _swigc__p_wxMDIParentFrame
[] = {{&_swigt__p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
18073 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}};
18074 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
18075 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}};
18076 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}};
18077 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}};
18078 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
18079 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
18080 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
18081 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
18082 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
18083 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
18084 static swig_cast_info _swigc__p_wxFontData
[] = {{&_swigt__p_wxFontData
, 0, 0, 0},{0, 0, 0, 0}};
18085 static swig_cast_info _swigc__p_wxPrintData
[] = {{&_swigt__p_wxPrintData
, 0, 0, 0},{0, 0, 0, 0}};
18086 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
18087 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
18088 static swig_cast_info _swigc__p_wxLayoutAlgorithm
[] = {{&_swigt__p_wxLayoutAlgorithm
, 0, 0, 0},{0, 0, 0, 0}};
18089 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
18090 static swig_cast_info _swigc__p_wxFindReplaceData
[] = {{&_swigt__p_wxFindReplaceData
, 0, 0, 0},{0, 0, 0, 0}};
18091 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
18092 static swig_cast_info _swigc__p_wxColourData
[] = {{&_swigt__p_wxColourData
, 0, 0, 0},{0, 0, 0, 0}};
18093 static swig_cast_info _swigc__p_wxPrinter
[] = {{&_swigt__p_wxPrinter
, 0, 0, 0},{0, 0, 0, 0}};
18094 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
18095 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
18096 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
18097 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
18098 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
18099 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
18100 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
18101 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
18102 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
18103 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
18104 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
18105 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
18106 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
18107 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
18108 static swig_cast_info _swigc__p_wxTGAHandler
[] = {{&_swigt__p_wxTGAHandler
, 0, 0, 0},{0, 0, 0, 0}};
18109 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
18110 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
18111 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
18112 static swig_cast_info _swigc__p_wxPyPrintout
[] = {{&_swigt__p_wxPyPrintout
, 0, 0, 0},{0, 0, 0, 0}};
18113 static swig_cast_info _swigc__p_wxPrintPreview
[] = {{&_swigt__p_wxPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
18114 static swig_cast_info _swigc__p_wxPyPrintPreview
[] = {{&_swigt__p_wxPyPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
18115 static swig_cast_info _swigc__p_wxPageSetupDialog
[] = {{&_swigt__p_wxPageSetupDialog
, 0, 0, 0},{0, 0, 0, 0}};
18116 static swig_cast_info _swigc__p_wxPrintDialog
[] = {{&_swigt__p_wxPrintDialog
, 0, 0, 0},{0, 0, 0, 0}};
18117 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
18118 static swig_cast_info _swigc__p_wxPageSetupDialogData
[] = {{&_swigt__p_wxPageSetupDialogData
, 0, 0, 0},{0, 0, 0, 0}};
18119 static swig_cast_info _swigc__p_wxPrintDialogData
[] = {{&_swigt__p_wxPrintDialogData
, 0, 0, 0},{0, 0, 0, 0}};
18120 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}};
18121 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
18122 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
18123 static swig_cast_info _swigc__p_wxPyAuiDockArt
[] = { {&_swigt__p_wxPyAuiDockArt
, 0, 0, 0},{0, 0, 0, 0}};
18124 static swig_cast_info _swigc__p_wxPyAuiTabArt
[] = { {&_swigt__p_wxPyAuiTabArt
, 0, 0, 0},{0, 0, 0, 0}};
18125 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
18126 static swig_cast_info _swigc__p_wxSize
[] = { {&_swigt__p_wxSize
, 0, 0, 0},{0, 0, 0, 0}};
18127 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}};
18128 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}};
18129 static swig_cast_info _swigc__p_wxString
[] = { {&_swigt__p_wxString
, 0, 0, 0},{0, 0, 0, 0}};
18130 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}};
18131 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}};
18133 static swig_cast_info
*swig_cast_initial
[] = {
18135 _swigc__p_form_ops_t
,
18137 _swigc__p_p_wxAuiFloatingFrame
,
18138 _swigc__p_p_wxAuiNotebook
,
18139 _swigc__p_p_wxAuiTabContainerButton
,
18140 _swigc__p_p_wxAuiTabCtrl
,
18141 _swigc__p_p_wxColourDialog
,
18142 _swigc__p_p_wxControl
,
18143 _swigc__p_p_wxControlWithItems
,
18144 _swigc__p_p_wxDialog
,
18145 _swigc__p_p_wxDirDialog
,
18146 _swigc__p_p_wxFileDialog
,
18147 _swigc__p_p_wxFindReplaceDialog
,
18148 _swigc__p_p_wxFontDialog
,
18149 _swigc__p_p_wxFrame
,
18150 _swigc__p_p_wxMDIChildFrame
,
18151 _swigc__p_p_wxMDIClientWindow
,
18152 _swigc__p_p_wxMDIParentFrame
,
18153 _swigc__p_p_wxMenuBar
,
18154 _swigc__p_p_wxMessageDialog
,
18155 _swigc__p_p_wxMiniFrame
,
18156 _swigc__p_p_wxMultiChoiceDialog
,
18157 _swigc__p_p_wxNumberEntryDialog
,
18158 _swigc__p_p_wxPanel
,
18159 _swigc__p_p_wxPasswordEntryDialog
,
18160 _swigc__p_p_wxPopupWindow
,
18161 _swigc__p_p_wxPreviewCanvas
,
18162 _swigc__p_p_wxPreviewControlBar
,
18163 _swigc__p_p_wxPreviewFrame
,
18164 _swigc__p_p_wxProgressDialog
,
18165 _swigc__p_p_wxPyHtmlListBox
,
18166 _swigc__p_p_wxPyPanel
,
18167 _swigc__p_p_wxPyPopupTransientWindow
,
18168 _swigc__p_p_wxPyPreviewControlBar
,
18169 _swigc__p_p_wxPyPreviewFrame
,
18170 _swigc__p_p_wxPyScrolledWindow
,
18171 _swigc__p_p_wxPyVListBox
,
18172 _swigc__p_p_wxPyVScrolledWindow
,
18173 _swigc__p_p_wxPyWindow
,
18174 _swigc__p_p_wxSashLayoutWindow
,
18175 _swigc__p_p_wxSashWindow
,
18176 _swigc__p_p_wxScrolledWindow
,
18177 _swigc__p_p_wxSimpleHtmlListBox
,
18178 _swigc__p_p_wxSingleChoiceDialog
,
18179 _swigc__p_p_wxSplashScreen
,
18180 _swigc__p_p_wxSplashScreenWindow
,
18181 _swigc__p_p_wxSplitterWindow
,
18182 _swigc__p_p_wxStatusBar
,
18183 _swigc__p_p_wxTextEntryDialog
,
18184 _swigc__p_p_wxTipWindow
,
18185 _swigc__p_p_wxTopLevelWindow
,
18186 _swigc__p_p_wxWindow
,
18187 _swigc__p_unsigned_char
,
18188 _swigc__p_unsigned_int
,
18189 _swigc__p_unsigned_long
,
18190 _swigc__p_wxANIHandler
,
18191 _swigc__p_wxAcceleratorTable
,
18192 _swigc__p_wxActivateEvent
,
18193 _swigc__p_wxArrayString
,
18194 _swigc__p_wxAuiDefaultDockArt
,
18195 _swigc__p_wxAuiDefaultTabArt
,
18196 _swigc__p_wxAuiDockArt
,
18197 _swigc__p_wxAuiDockInfo
,
18198 _swigc__p_wxAuiDockUIPart
,
18199 _swigc__p_wxAuiFloatingFrame
,
18200 _swigc__p_wxAuiManager
,
18201 _swigc__p_wxAuiManagerEvent
,
18202 _swigc__p_wxAuiNotebook
,
18203 _swigc__p_wxAuiNotebookEvent
,
18204 _swigc__p_wxAuiNotebookPage
,
18205 _swigc__p_wxAuiNotebookPageArray
,
18206 _swigc__p_wxAuiPaneButton
,
18207 _swigc__p_wxAuiPaneButtonArray
,
18208 _swigc__p_wxAuiPaneInfo
,
18209 _swigc__p_wxAuiPaneInfoPtrArray
,
18210 _swigc__p_wxAuiSimpleTabArt
,
18211 _swigc__p_wxAuiTabArt
,
18212 _swigc__p_wxAuiTabContainer
,
18213 _swigc__p_wxAuiTabContainerButton
,
18214 _swigc__p_wxAuiTabCtrl
,
18215 _swigc__p_wxBMPHandler
,
18216 _swigc__p_wxBitmap
,
18217 _swigc__p_wxBoxSizer
,
18218 _swigc__p_wxCURHandler
,
18219 _swigc__p_wxCalculateLayoutEvent
,
18220 _swigc__p_wxChildFocusEvent
,
18221 _swigc__p_wxClipboardTextEvent
,
18222 _swigc__p_wxCloseEvent
,
18224 _swigc__p_wxColour
,
18225 _swigc__p_wxColourData
,
18226 _swigc__p_wxColourDialog
,
18227 _swigc__p_wxCommandEvent
,
18228 _swigc__p_wxContextMenuEvent
,
18229 _swigc__p_wxControl
,
18230 _swigc__p_wxControlWithItems
,
18232 _swigc__p_wxDateEvent
,
18233 _swigc__p_wxDialog
,
18234 _swigc__p_wxDirDialog
,
18235 _swigc__p_wxDisplayChangedEvent
,
18236 _swigc__p_wxDropFilesEvent
,
18237 _swigc__p_wxDuplexMode
,
18238 _swigc__p_wxEraseEvent
,
18240 _swigc__p_wxEvtHandler
,
18241 _swigc__p_wxFSFile
,
18242 _swigc__p_wxFileDialog
,
18243 _swigc__p_wxFileSystem
,
18244 _swigc__p_wxFindDialogEvent
,
18245 _swigc__p_wxFindReplaceData
,
18246 _swigc__p_wxFindReplaceDialog
,
18247 _swigc__p_wxFlexGridSizer
,
18248 _swigc__p_wxFocusEvent
,
18250 _swigc__p_wxFontData
,
18251 _swigc__p_wxFontDialog
,
18253 _swigc__p_wxGBSizerItem
,
18254 _swigc__p_wxGIFHandler
,
18255 _swigc__p_wxGridBagSizer
,
18256 _swigc__p_wxGridSizer
,
18257 _swigc__p_wxICOHandler
,
18258 _swigc__p_wxIconizeEvent
,
18259 _swigc__p_wxIdleEvent
,
18261 _swigc__p_wxImageHandler
,
18262 _swigc__p_wxIndividualLayoutConstraint
,
18263 _swigc__p_wxInitDialogEvent
,
18264 _swigc__p_wxJPEGHandler
,
18265 _swigc__p_wxKeyEvent
,
18266 _swigc__p_wxLayoutAlgorithm
,
18267 _swigc__p_wxLayoutConstraints
,
18268 _swigc__p_wxMDIChildFrame
,
18269 _swigc__p_wxMDIClientWindow
,
18270 _swigc__p_wxMDIParentFrame
,
18271 _swigc__p_wxMaximizeEvent
,
18273 _swigc__p_wxMenuBar
,
18274 _swigc__p_wxMenuEvent
,
18275 _swigc__p_wxMenuItem
,
18276 _swigc__p_wxMessageDialog
,
18277 _swigc__p_wxMiniFrame
,
18278 _swigc__p_wxMouseCaptureChangedEvent
,
18279 _swigc__p_wxMouseCaptureLostEvent
,
18280 _swigc__p_wxMouseEvent
,
18281 _swigc__p_wxMoveEvent
,
18282 _swigc__p_wxMultiChoiceDialog
,
18283 _swigc__p_wxNavigationKeyEvent
,
18284 _swigc__p_wxNcPaintEvent
,
18285 _swigc__p_wxNotifyEvent
,
18286 _swigc__p_wxNumberEntryDialog
,
18287 _swigc__p_wxObject
,
18288 _swigc__p_wxPCXHandler
,
18289 _swigc__p_wxPNGHandler
,
18290 _swigc__p_wxPNMHandler
,
18291 _swigc__p_wxPageSetupDialog
,
18292 _swigc__p_wxPageSetupDialogData
,
18293 _swigc__p_wxPaintEvent
,
18294 _swigc__p_wxPaletteChangedEvent
,
18296 _swigc__p_wxPaperSize
,
18297 _swigc__p_wxPasswordEntryDialog
,
18299 _swigc__p_wxPopupWindow
,
18300 _swigc__p_wxPreviewCanvas
,
18301 _swigc__p_wxPreviewControlBar
,
18302 _swigc__p_wxPreviewFrame
,
18303 _swigc__p_wxPrintData
,
18304 _swigc__p_wxPrintDialog
,
18305 _swigc__p_wxPrintDialogData
,
18306 _swigc__p_wxPrintPreview
,
18307 _swigc__p_wxPrinter
,
18308 _swigc__p_wxProgressDialog
,
18310 _swigc__p_wxPyAuiDockArt
,
18311 _swigc__p_wxPyAuiTabArt
,
18312 _swigc__p_wxPyCommandEvent
,
18313 _swigc__p_wxPyEvent
,
18314 _swigc__p_wxPyHtmlListBox
,
18315 _swigc__p_wxPyImageHandler
,
18316 _swigc__p_wxPyPanel
,
18317 _swigc__p_wxPyPopupTransientWindow
,
18318 _swigc__p_wxPyPreviewControlBar
,
18319 _swigc__p_wxPyPreviewFrame
,
18320 _swigc__p_wxPyPrintPreview
,
18321 _swigc__p_wxPyPrintout
,
18322 _swigc__p_wxPyScrolledWindow
,
18323 _swigc__p_wxPySizer
,
18324 _swigc__p_wxPyTaskBarIcon
,
18325 _swigc__p_wxPyVListBox
,
18326 _swigc__p_wxPyVScrolledWindow
,
18327 _swigc__p_wxPyValidator
,
18328 _swigc__p_wxPyWindow
,
18329 _swigc__p_wxQueryLayoutInfoEvent
,
18330 _swigc__p_wxQueryNewPaletteEvent
,
18332 _swigc__p_wxSashEvent
,
18333 _swigc__p_wxSashLayoutWindow
,
18334 _swigc__p_wxSashWindow
,
18335 _swigc__p_wxScrollEvent
,
18336 _swigc__p_wxScrollWinEvent
,
18337 _swigc__p_wxScrolledWindow
,
18338 _swigc__p_wxSetCursorEvent
,
18339 _swigc__p_wxShowEvent
,
18340 _swigc__p_wxSimpleHtmlListBox
,
18341 _swigc__p_wxSingleChoiceDialog
,
18343 _swigc__p_wxSizeEvent
,
18345 _swigc__p_wxSizerItem
,
18346 _swigc__p_wxSplashScreen
,
18347 _swigc__p_wxSplashScreenWindow
,
18348 _swigc__p_wxSplitterEvent
,
18349 _swigc__p_wxSplitterWindow
,
18350 _swigc__p_wxStaticBoxSizer
,
18351 _swigc__p_wxStatusBar
,
18352 _swigc__p_wxStdDialogButtonSizer
,
18353 _swigc__p_wxString
,
18354 _swigc__p_wxSysColourChangedEvent
,
18355 _swigc__p_wxTGAHandler
,
18356 _swigc__p_wxTIFFHandler
,
18357 _swigc__p_wxTaskBarIconEvent
,
18358 _swigc__p_wxTextEntryDialog
,
18359 _swigc__p_wxTipWindow
,
18360 _swigc__p_wxTopLevelWindow
,
18361 _swigc__p_wxUpdateUIEvent
,
18362 _swigc__p_wxValidator
,
18363 _swigc__p_wxWindow
,
18364 _swigc__p_wxWindowCreateEvent
,
18365 _swigc__p_wxWindowDestroyEvent
,
18366 _swigc__p_wxXPMHandler
,
18370 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
18372 static swig_const_info swig_const_table
[] = {
18373 {0, 0, 0, 0.0, 0, 0}};
18378 /* -----------------------------------------------------------------------------
18379 * Type initialization:
18380 * This problem is tough by the requirement that no dynamic
18381 * memory is used. Also, since swig_type_info structures store pointers to
18382 * swig_cast_info structures and swig_cast_info structures store pointers back
18383 * to swig_type_info structures, we need some lookup code at initialization.
18384 * The idea is that swig generates all the structures that are needed.
18385 * The runtime then collects these partially filled structures.
18386 * The SWIG_InitializeModule function takes these initial arrays out of
18387 * swig_module, and does all the lookup, filling in the swig_module.types
18388 * array with the correct data and linking the correct swig_cast_info
18389 * structures together.
18391 * The generated swig_type_info structures are assigned staticly to an initial
18392 * array. We just loop though that array, and handle each type individually.
18393 * First we lookup if this type has been already loaded, and if so, use the
18394 * loaded structure instead of the generated one. Then we have to fill in the
18395 * cast linked list. The cast data is initially stored in something like a
18396 * two-dimensional array. Each row corresponds to a type (there are the same
18397 * number of rows as there are in the swig_type_initial array). Each entry in
18398 * a column is one of the swig_cast_info structures for that type.
18399 * The cast_initial array is actually an array of arrays, because each row has
18400 * a variable number of columns. So to actually build the cast linked list,
18401 * we find the array of casts associated with the type, and loop through it
18402 * adding the casts to the list. The one last trick we need to do is making
18403 * sure the type pointer in the swig_cast_info struct is correct.
18405 * First off, we lookup the cast->type name to see if it is already loaded.
18406 * There are three cases to handle:
18407 * 1) If the cast->type has already been loaded AND the type we are adding
18408 * casting info to has not been loaded (it is in this module), THEN we
18409 * replace the cast->type pointer with the type pointer that has already
18411 * 2) If BOTH types (the one we are adding casting info to, and the
18412 * cast->type) are loaded, THEN the cast info has already been loaded by
18413 * the previous module so we just ignore it.
18414 * 3) Finally, if cast->type has not already been loaded, then we add that
18415 * swig_cast_info to the linked list (because the cast->type) pointer will
18417 * ----------------------------------------------------------------------------- */
18427 #define SWIGRUNTIME_DEBUG
18431 SWIG_InitializeModule(void *clientdata
) {
18433 swig_module_info
*module_head
;
18434 static int init_run
= 0;
18436 clientdata
= clientdata
;
18438 if (init_run
) return;
18441 /* Initialize the swig_module */
18442 swig_module
.type_initial
= swig_type_initial
;
18443 swig_module
.cast_initial
= swig_cast_initial
;
18445 /* Try and load any already created modules */
18446 module_head
= SWIG_GetModule(clientdata
);
18448 swig_module
.next
= module_head
->next
;
18449 module_head
->next
= &swig_module
;
18451 /* This is the first module loaded */
18452 swig_module
.next
= &swig_module
;
18453 SWIG_SetModule(clientdata
, &swig_module
);
18456 /* Now work on filling in swig_module.types */
18457 #ifdef SWIGRUNTIME_DEBUG
18458 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
18460 for (i
= 0; i
< swig_module
.size
; ++i
) {
18461 swig_type_info
*type
= 0;
18462 swig_type_info
*ret
;
18463 swig_cast_info
*cast
;
18465 #ifdef SWIGRUNTIME_DEBUG
18466 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
18469 /* if there is another module already loaded */
18470 if (swig_module
.next
!= &swig_module
) {
18471 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
18474 /* Overwrite clientdata field */
18475 #ifdef SWIGRUNTIME_DEBUG
18476 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
18478 if (swig_module
.type_initial
[i
]->clientdata
) {
18479 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
18480 #ifdef SWIGRUNTIME_DEBUG
18481 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
18485 type
= swig_module
.type_initial
[i
];
18488 /* Insert casting types */
18489 cast
= swig_module
.cast_initial
[i
];
18490 while (cast
->type
) {
18491 /* Don't need to add information already in the list */
18493 #ifdef SWIGRUNTIME_DEBUG
18494 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
18496 if (swig_module
.next
!= &swig_module
) {
18497 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
18498 #ifdef SWIGRUNTIME_DEBUG
18499 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
18503 if (type
== swig_module
.type_initial
[i
]) {
18504 #ifdef SWIGRUNTIME_DEBUG
18505 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
18510 /* Check for casting already in the list */
18511 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
18512 #ifdef SWIGRUNTIME_DEBUG
18513 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
18515 if (!ocast
) ret
= 0;
18520 #ifdef SWIGRUNTIME_DEBUG
18521 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
18524 type
->cast
->prev
= cast
;
18525 cast
->next
= type
->cast
;
18531 /* Set entry in modules->types array equal to the type */
18532 swig_module
.types
[i
] = type
;
18534 swig_module
.types
[i
] = 0;
18536 #ifdef SWIGRUNTIME_DEBUG
18537 printf("**** SWIG_InitializeModule: Cast List ******\n");
18538 for (i
= 0; i
< swig_module
.size
; ++i
) {
18540 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
18541 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
18542 while (cast
->type
) {
18543 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
18547 printf("---- Total casts: %d\n",j
);
18549 printf("**** SWIG_InitializeModule: Cast List ******\n");
18553 /* This function will propagate the clientdata field of type to
18554 * any new swig_type_info structures that have been added into the list
18555 * of equivalent types. It is like calling
18556 * SWIG_TypeClientData(type, clientdata) a second time.
18559 SWIG_PropagateClientData(void) {
18561 swig_cast_info
*equiv
;
18562 static int init_run
= 0;
18564 if (init_run
) return;
18567 for (i
= 0; i
< swig_module
.size
; i
++) {
18568 if (swig_module
.types
[i
]->clientdata
) {
18569 equiv
= swig_module
.types
[i
]->cast
;
18571 if (!equiv
->converter
) {
18572 if (equiv
->type
&& !equiv
->type
->clientdata
)
18573 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
18575 equiv
= equiv
->next
;
18595 /* Python-specific SWIG API */
18596 #define SWIG_newvarlink() SWIG_Python_newvarlink()
18597 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
18598 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
18600 /* -----------------------------------------------------------------------------
18601 * global variable support code.
18602 * ----------------------------------------------------------------------------- */
18604 typedef struct swig_globalvar
{
18605 char *name
; /* Name of global variable */
18606 PyObject
*(*get_attr
)(void); /* Return the current value */
18607 int (*set_attr
)(PyObject
*); /* Set the value */
18608 struct swig_globalvar
*next
;
18611 typedef struct swig_varlinkobject
{
18613 swig_globalvar
*vars
;
18614 } swig_varlinkobject
;
18616 SWIGINTERN PyObject
*
18617 swig_varlink_repr(swig_varlinkobject
*SWIGUNUSEDPARM(v
)) {
18618 return PyString_FromString("<Swig global variables>");
18621 SWIGINTERN PyObject
*
18622 swig_varlink_str(swig_varlinkobject
*v
) {
18623 PyObject
*str
= PyString_FromString("(");
18624 swig_globalvar
*var
;
18625 for (var
= v
->vars
; var
; var
=var
->next
) {
18626 PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
));
18627 if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", "));
18629 PyString_ConcatAndDel(&str
,PyString_FromString(")"));
18634 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) {
18635 PyObject
*str
= swig_varlink_str(v
);
18636 fprintf(fp
,"Swig global variables ");
18637 fprintf(fp
,"%s\n", PyString_AsString(str
));
18643 swig_varlink_dealloc(swig_varlinkobject
*v
) {
18644 swig_globalvar
*var
= v
->vars
;
18646 swig_globalvar
*n
= var
->next
;
18653 SWIGINTERN PyObject
*
18654 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
18655 PyObject
*res
= NULL
;
18656 swig_globalvar
*var
= v
->vars
;
18658 if (strcmp(var
->name
,n
) == 0) {
18659 res
= (*var
->get_attr
)();
18664 if (res
== NULL
&& !PyErr_Occurred()) {
18665 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
18671 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
18673 swig_globalvar
*var
= v
->vars
;
18675 if (strcmp(var
->name
,n
) == 0) {
18676 res
= (*var
->set_attr
)(p
);
18681 if (res
== 1 && !PyErr_Occurred()) {
18682 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
18687 SWIGINTERN PyTypeObject
*
18688 swig_varlink_type(void) {
18689 static char varlink__doc__
[] = "Swig var link object";
18690 static PyTypeObject varlink_type
;
18691 static int type_init
= 0;
18693 const PyTypeObject tmp
18695 PyObject_HEAD_INIT(NULL
)
18696 0, /* Number of items in variable part (ob_size) */
18697 (char *)"swigvarlink", /* Type name (tp_name) */
18698 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
18699 0, /* Itemsize (tp_itemsize) */
18700 (destructor
) swig_varlink_dealloc
, /* Deallocator (tp_dealloc) */
18701 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
18702 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
18703 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
18704 0, /* tp_compare */
18705 (reprfunc
) swig_varlink_repr
, /* tp_repr */
18706 0, /* tp_as_number */
18707 0, /* tp_as_sequence */
18708 0, /* tp_as_mapping */
18711 (reprfunc
)swig_varlink_str
, /* tp_str */
18712 0, /* tp_getattro */
18713 0, /* tp_setattro */
18714 0, /* tp_as_buffer */
18716 varlink__doc__
, /* tp_doc */
18717 0, /* tp_traverse */
18719 0, /* tp_richcompare */
18720 0, /* tp_weaklistoffset */
18721 #if PY_VERSION_HEX >= 0x02020000
18722 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
18724 #if PY_VERSION_HEX >= 0x02030000
18727 #ifdef COUNT_ALLOCS
18728 0,0,0,0 /* tp_alloc -> tp_next */
18731 varlink_type
= tmp
;
18732 varlink_type
.ob_type
= &PyType_Type
;
18735 return &varlink_type
;
18738 /* Create a variable linking object for use later */
18739 SWIGINTERN PyObject
*
18740 SWIG_Python_newvarlink(void) {
18741 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
18745 return ((PyObject
*) result
);
18749 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
18750 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
18751 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
18753 size_t size
= strlen(name
)+1;
18754 gv
->name
= (char *)malloc(size
);
18756 strncpy(gv
->name
,name
,size
);
18757 gv
->get_attr
= get_attr
;
18758 gv
->set_attr
= set_attr
;
18759 gv
->next
= v
->vars
;
18765 SWIGINTERN PyObject
*
18767 static PyObject
*_SWIG_globals
= 0;
18768 if (!_SWIG_globals
) _SWIG_globals
= SWIG_newvarlink();
18769 return _SWIG_globals
;
18772 /* -----------------------------------------------------------------------------
18773 * constants/methods manipulation
18774 * ----------------------------------------------------------------------------- */
18776 /* Install Constants */
18778 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
18781 for (i
= 0; constants
[i
].type
; ++i
) {
18782 switch(constants
[i
].type
) {
18783 case SWIG_PY_POINTER
:
18784 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
18786 case SWIG_PY_BINARY
:
18787 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
18794 PyDict_SetItemString(d
, constants
[i
].name
, obj
);
18800 /* -----------------------------------------------------------------------------*/
18801 /* Fix SwigMethods to carry the callback ptrs when needed */
18802 /* -----------------------------------------------------------------------------*/
18805 SWIG_Python_FixMethods(PyMethodDef
*methods
,
18806 swig_const_info
*const_table
,
18807 swig_type_info
**types
,
18808 swig_type_info
**types_initial
) {
18810 for (i
= 0; methods
[i
].ml_name
; ++i
) {
18811 const char *c
= methods
[i
].ml_doc
;
18812 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
18814 swig_const_info
*ci
= 0;
18815 const char *name
= c
+ 10;
18816 for (j
= 0; const_table
[j
].type
; ++j
) {
18817 if (strncmp(const_table
[j
].name
, name
,
18818 strlen(const_table
[j
].name
)) == 0) {
18819 ci
= &(const_table
[j
]);
18824 size_t shift
= (ci
->ptype
) - types
;
18825 swig_type_info
*ty
= types_initial
[shift
];
18826 size_t ldoc
= (c
- methods
[i
].ml_doc
);
18827 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
18828 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
18831 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
18833 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
18835 strncpy(buff
, "swig_ptr: ", 10);
18837 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
18838 methods
[i
].ml_doc
= ndoc
;
18850 /* -----------------------------------------------------------------------------*
18851 * Partial Init method
18852 * -----------------------------------------------------------------------------*/
18857 SWIGEXPORT
void SWIG_init(void) {
18860 /* Fix SwigMethods to carry the callback ptrs when needed */
18861 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
18863 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
18864 d
= PyModule_GetDict(m
);
18866 SWIG_InitializeModule(0);
18867 SWIG_InstallConstants(d
,swig_const_table
);
18870 SWIG_Python_SetConstant(d
, "USE_AUI",SWIG_From_int(static_cast< int >(1)));
18871 SWIG_Python_SetConstant(d
, "AUI_DOCK_NONE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_NONE
)));
18872 SWIG_Python_SetConstant(d
, "AUI_DOCK_TOP",SWIG_From_int(static_cast< int >(wxAUI_DOCK_TOP
)));
18873 SWIG_Python_SetConstant(d
, "AUI_DOCK_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_RIGHT
)));
18874 SWIG_Python_SetConstant(d
, "AUI_DOCK_BOTTOM",SWIG_From_int(static_cast< int >(wxAUI_DOCK_BOTTOM
)));
18875 SWIG_Python_SetConstant(d
, "AUI_DOCK_LEFT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_LEFT
)));
18876 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTER",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTER
)));
18877 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTRE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTRE
)));
18878 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_FLOATING",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_FLOATING
)));
18879 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_ACTIVE_PANE",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_ACTIVE_PANE
)));
18880 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_DRAG",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_DRAG
)));
18881 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_HINT
)));
18882 SWIG_Python_SetConstant(d
, "AUI_MGR_VENETIAN_BLINDS_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_VENETIAN_BLINDS_HINT
)));
18883 SWIG_Python_SetConstant(d
, "AUI_MGR_RECTANGLE_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_RECTANGLE_HINT
)));
18884 SWIG_Python_SetConstant(d
, "AUI_MGR_HINT_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_HINT_FADE
)));
18885 SWIG_Python_SetConstant(d
, "AUI_MGR_NO_VENETIAN_BLINDS_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_NO_VENETIAN_BLINDS_FADE
)));
18886 SWIG_Python_SetConstant(d
, "AUI_MGR_DEFAULT",SWIG_From_int(static_cast< int >(wxAUI_MGR_DEFAULT
)));
18887 SWIG_Python_SetConstant(d
, "AUI_DOCKART_SASH_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_SASH_SIZE
)));
18888 SWIG_Python_SetConstant(d
, "AUI_DOCKART_CAPTION_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_CAPTION_SIZE
)));
18889 SWIG_Python_SetConstant(d
, "AUI_DOCKART_GRIPPER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_GRIPPER_SIZE
)));
18890 SWIG_Python_SetConstant(d
, "AUI_DOCKART_PANE_BORDER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_PANE_BORDER_SIZE
)));
18891 SWIG_Python_SetConstant(d
, "AUI_DOCKART_PANE_BUTTON_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_PANE_BUTTON_SIZE
)));
18892 SWIG_Python_SetConstant(d
, "AUI_DOCKART_BACKGROUND_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_BACKGROUND_COLOUR
)));
18893 SWIG_Python_SetConstant(d
, "AUI_DOCKART_SASH_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_SASH_COLOUR
)));
18894 SWIG_Python_SetConstant(d
, "AUI_DOCKART_ACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_ACTIVE_CAPTION_COLOUR
)));
18895 SWIG_Python_SetConstant(d
, "AUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR
)));
18896 SWIG_Python_SetConstant(d
, "AUI_DOCKART_INACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_INACTIVE_CAPTION_COLOUR
)));
18897 SWIG_Python_SetConstant(d
, "AUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR
)));
18898 SWIG_Python_SetConstant(d
, "AUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR
)));
18899 SWIG_Python_SetConstant(d
, "AUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR
)));
18900 SWIG_Python_SetConstant(d
, "AUI_DOCKART_BORDER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_BORDER_COLOUR
)));
18901 SWIG_Python_SetConstant(d
, "AUI_DOCKART_GRIPPER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_GRIPPER_COLOUR
)));
18902 SWIG_Python_SetConstant(d
, "AUI_DOCKART_CAPTION_FONT",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_CAPTION_FONT
)));
18903 SWIG_Python_SetConstant(d
, "AUI_DOCKART_GRADIENT_TYPE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_GRADIENT_TYPE
)));
18904 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_NONE",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_NONE
)));
18905 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_VERTICAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_VERTICAL
)));
18906 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_HORIZONTAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_HORIZONTAL
)));
18907 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_NORMAL",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_NORMAL
)));
18908 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_HOVER",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_HOVER
)));
18909 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_PRESSED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_PRESSED
)));
18910 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_DISABLED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_DISABLED
)));
18911 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_HIDDEN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_HIDDEN
)));
18912 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_CHECKED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_CHECKED
)));
18913 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CLOSE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CLOSE
)));
18914 SWIG_Python_SetConstant(d
, "AUI_BUTTON_MAXIMIZE_RESTORE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_MAXIMIZE_RESTORE
)));
18915 SWIG_Python_SetConstant(d
, "AUI_BUTTON_MINIMIZE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_MINIMIZE
)));
18916 SWIG_Python_SetConstant(d
, "AUI_BUTTON_PIN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_PIN
)));
18917 SWIG_Python_SetConstant(d
, "AUI_BUTTON_OPTIONS",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_OPTIONS
)));
18918 SWIG_Python_SetConstant(d
, "AUI_BUTTON_WINDOWLIST",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_WINDOWLIST
)));
18919 SWIG_Python_SetConstant(d
, "AUI_BUTTON_LEFT",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_LEFT
)));
18920 SWIG_Python_SetConstant(d
, "AUI_BUTTON_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_RIGHT
)));
18921 SWIG_Python_SetConstant(d
, "AUI_BUTTON_UP",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_UP
)));
18922 SWIG_Python_SetConstant(d
, "AUI_BUTTON_DOWN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_DOWN
)));
18923 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM1",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM1
)));
18924 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM2",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM2
)));
18925 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM3",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM3
)));
18926 SWIG_Python_SetConstant(d
, "AUI_INSERT_PANE",SWIG_From_int(static_cast< int >(wxAUI_INSERT_PANE
)));
18927 SWIG_Python_SetConstant(d
, "AUI_INSERT_ROW",SWIG_From_int(static_cast< int >(wxAUI_INSERT_ROW
)));
18928 SWIG_Python_SetConstant(d
, "AUI_INSERT_DOCK",SWIG_From_int(static_cast< int >(wxAUI_INSERT_DOCK
)));
18929 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals());
18930 SWIG_addvarlink(SWIG_globals(),(char*)"AuiNullDockInfo",AuiNullDockInfo_get
, AuiNullDockInfo_set
);
18931 SWIG_addvarlink(SWIG_globals(),(char*)"AuiNullPaneInfo",AuiNullPaneInfo_get
, AuiNullPaneInfo_set
);
18932 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionFloating",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionFloating
)));
18933 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionHidden",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionHidden
)));
18934 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionLeftDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionLeftDockable
)));
18935 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionRightDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionRightDockable
)));
18936 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionTopDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionTopDockable
)));
18937 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionBottomDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionBottomDockable
)));
18938 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionFloatable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionFloatable
)));
18939 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionMovable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionMovable
)));
18940 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionResizable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionResizable
)));
18941 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionPaneBorder",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionPaneBorder
)));
18942 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionCaption",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionCaption
)));
18943 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionGripper",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionGripper
)));
18944 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionDestroyOnClose",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionDestroyOnClose
)));
18945 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionToolbar",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionToolbar
)));
18946 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionActive",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionActive
)));
18947 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionGripperTop",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionGripperTop
)));
18948 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionMaximized",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionMaximized
)));
18949 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionSavedHidden",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionSavedHidden
)));
18950 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonClose",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonClose
)));
18951 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonMaximize",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonMaximize
)));
18952 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonMinimize",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonMinimize
)));
18953 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonPin",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonPin
)));
18954 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonCustom1",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonCustom1
)));
18955 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonCustom2",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonCustom2
)));
18956 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonCustom3",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonCustom3
)));
18957 SWIG_Python_SetConstant(d
, "AuiPaneInfo_actionPane",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::actionPane
)));
18958 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeCaption",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeCaption
)));
18959 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeGripper",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeGripper
)));
18960 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeDock",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeDock
)));
18961 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeDockSizer",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeDockSizer
)));
18962 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePane",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePane
)));
18963 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePaneSizer",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePaneSizer
)));
18964 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeBackground",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeBackground
)));
18965 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePaneBorder",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePaneBorder
)));
18966 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePaneButton",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePaneButton
)));
18967 PyDict_SetItemString(d
, "wxEVT_AUI_PANEBUTTON", PyInt_FromLong(wxEVT_AUI_PANEBUTTON
));
18968 PyDict_SetItemString(d
, "wxEVT_AUI_PANECLOSE", PyInt_FromLong(wxEVT_AUI_PANECLOSE
));
18969 PyDict_SetItemString(d
, "wxEVT_AUI_PANEMAXIMIZE", PyInt_FromLong(wxEVT_AUI_PANEMAXIMIZE
));
18970 PyDict_SetItemString(d
, "wxEVT_AUI_PANERESTORE", PyInt_FromLong(wxEVT_AUI_PANERESTORE
));
18971 PyDict_SetItemString(d
, "wxEVT_AUI_RENDER", PyInt_FromLong(wxEVT_AUI_RENDER
));
18972 PyDict_SetItemString(d
, "wxEVT_AUI_FINDMANAGER", PyInt_FromLong(wxEVT_AUI_FINDMANAGER
));
18973 SWIG_Python_SetConstant(d
, "AUI_NB_TOP",SWIG_From_int(static_cast< int >(wxAUI_NB_TOP
)));
18974 SWIG_Python_SetConstant(d
, "AUI_NB_LEFT",SWIG_From_int(static_cast< int >(wxAUI_NB_LEFT
)));
18975 SWIG_Python_SetConstant(d
, "AUI_NB_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_NB_RIGHT
)));
18976 SWIG_Python_SetConstant(d
, "AUI_NB_BOTTOM",SWIG_From_int(static_cast< int >(wxAUI_NB_BOTTOM
)));
18977 SWIG_Python_SetConstant(d
, "AUI_NB_TAB_SPLIT",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_SPLIT
)));
18978 SWIG_Python_SetConstant(d
, "AUI_NB_TAB_MOVE",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_MOVE
)));
18979 SWIG_Python_SetConstant(d
, "AUI_NB_TAB_EXTERNAL_MOVE",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_EXTERNAL_MOVE
)));
18980 SWIG_Python_SetConstant(d
, "AUI_NB_TAB_FIXED_WIDTH",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_FIXED_WIDTH
)));
18981 SWIG_Python_SetConstant(d
, "AUI_NB_SCROLL_BUTTONS",SWIG_From_int(static_cast< int >(wxAUI_NB_SCROLL_BUTTONS
)));
18982 SWIG_Python_SetConstant(d
, "AUI_NB_WINDOWLIST_BUTTON",SWIG_From_int(static_cast< int >(wxAUI_NB_WINDOWLIST_BUTTON
)));
18983 SWIG_Python_SetConstant(d
, "AUI_NB_CLOSE_BUTTON",SWIG_From_int(static_cast< int >(wxAUI_NB_CLOSE_BUTTON
)));
18984 SWIG_Python_SetConstant(d
, "AUI_NB_CLOSE_ON_ACTIVE_TAB",SWIG_From_int(static_cast< int >(wxAUI_NB_CLOSE_ON_ACTIVE_TAB
)));
18985 SWIG_Python_SetConstant(d
, "AUI_NB_CLOSE_ON_ALL_TABS",SWIG_From_int(static_cast< int >(wxAUI_NB_CLOSE_ON_ALL_TABS
)));
18986 SWIG_Python_SetConstant(d
, "AUI_NB_DEFAULT_STYLE",SWIG_From_int(static_cast< int >(wxAUI_NB_DEFAULT_STYLE
)));
18987 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE
));
18988 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED
));
18989 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING
));
18990 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_BUTTON", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_BUTTON
));
18991 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG
));
18992 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_END_DRAG", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG
));
18993 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION
));
18994 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND
));