1 /* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
5 * This file is not intended to be easily readable and contains a number of
6 * coding conventions designed to improve portability and efficiency. Do not make
7 * changes to this file unless you know what you are doing--modify the SWIG
8 * interface file instead.
9 * ----------------------------------------------------------------------------- */
12 #define SWIG_PYTHON_DIRECTOR_NO_VTABLE
15 template<class T
> class SwigValueWrapper
{
18 SwigValueWrapper() : tt(0) { }
19 SwigValueWrapper(const SwigValueWrapper
<T
>& rhs
) : tt(new T(*rhs
.tt
)) { }
20 SwigValueWrapper(const T
& t
) : tt(new T(t
)) { }
21 ~SwigValueWrapper() { delete tt
; }
22 SwigValueWrapper
& operator=(const T
& t
) { delete tt
; tt
= new T(t
); return *this; }
23 operator T
&() const { return *tt
; }
24 T
*operator&() { return tt
; }
26 SwigValueWrapper
& operator=(const SwigValueWrapper
<T
>& rhs
);
30 /* -----------------------------------------------------------------------------
31 * This section contains generic SWIG labels for method/variable
32 * declarations/attributes, and other compiler dependent labels.
33 * ----------------------------------------------------------------------------- */
35 /* template workaround for compilers that cannot correctly implement the C++ standard */
36 #ifndef SWIGTEMPLATEDISAMBIGUATOR
37 # if defined(__SUNPRO_CC)
38 # if (__SUNPRO_CC <= 0x560)
39 # define SWIGTEMPLATEDISAMBIGUATOR template
41 # define SWIGTEMPLATEDISAMBIGUATOR
44 # define SWIGTEMPLATEDISAMBIGUATOR
48 /* inline attribute */
50 # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
51 # define SWIGINLINE inline
57 /* attribute recognised by some compilers to avoid 'unused' warnings */
59 # if defined(__GNUC__)
60 # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
61 # define SWIGUNUSED __attribute__ ((__unused__))
66 # define SWIGUNUSED __attribute__ ((__unused__))
72 #ifndef SWIGUNUSEDPARM
74 # define SWIGUNUSEDPARM(p)
76 # define SWIGUNUSEDPARM(p) p SWIGUNUSED
80 /* internal SWIG method */
82 # define SWIGINTERN static SWIGUNUSED
85 /* internal inline SWIG method */
86 #ifndef SWIGINTERNINLINE
87 # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
90 /* exporting methods */
91 #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
92 # ifndef GCC_HASCLASSVISIBILITY
93 # define GCC_HASCLASSVISIBILITY
98 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
99 # if defined(STATIC_LINKED)
102 # define SWIGEXPORT __declspec(dllexport)
105 # if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
106 # define SWIGEXPORT __attribute__ ((visibility("default")))
113 /* calling conventions for Windows */
115 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
116 # define SWIGSTDCALL __stdcall
122 /* Deal with Microsoft's attempt at deprecating C standard runtime functions */
123 #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER)
124 # define _CRT_SECURE_NO_DEPRECATE
128 /* Python.h has to appear first */
131 /* -----------------------------------------------------------------------------
134 * This file contains generic CAPI SWIG runtime support for pointer
136 * ----------------------------------------------------------------------------- */
138 /* This should only be incremented when either the layout of swig_type_info changes,
139 or for whatever reason, the runtime changes incompatibly */
140 #define SWIG_RUNTIME_VERSION "2"
142 /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
143 #ifdef SWIG_TYPE_TABLE
144 # define SWIG_QUOTE_STRING(x) #x
145 # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
146 # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
148 # define SWIG_TYPE_TABLE_NAME
152 You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
153 creating a static or dynamic library from the swig runtime code.
154 In 99.9% of the cases, swig just needs to declare them as 'static'.
156 But only do this if is strictly necessary, ie, if you have problems
157 with your compiler or so.
161 # define SWIGRUNTIME SWIGINTERN
164 #ifndef SWIGRUNTIMEINLINE
165 # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
168 /* Generic buffer size */
169 #ifndef SWIG_BUFFER_SIZE
170 # define SWIG_BUFFER_SIZE 1024
173 /* Flags for pointer conversions */
174 #define SWIG_POINTER_DISOWN 0x1
176 /* Flags for new pointer objects */
177 #define SWIG_POINTER_OWN 0x1
181 Flags/methods for returning states.
183 The swig conversion methods, as ConvertPtr, return and integer
184 that tells if the conversion was successful or not. And if not,
185 an error code can be returned (see swigerrors.swg for the codes).
187 Use the following macros/flags to set or process the returning
190 In old swig versions, you usually write code as:
192 if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
198 Now you can be more explicit as:
200 int res = SWIG_ConvertPtr(obj,vptr,ty.flags);
201 if (SWIG_IsOK(res)) {
207 that seems to be the same, but now you can also do
210 int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags);
211 if (SWIG_IsOK(res)) {
213 if (SWIG_IsNewObj(res) {
223 I.e., now SWIG_ConvertPtr can return new objects and you can
224 identify the case and take care of the deallocation. Of course that
225 requires also to SWIG_ConvertPtr to return new result values, as
227 int SWIG_ConvertPtr(obj, ptr,...) {
229 if (<need new object>) {
230 *ptr = <ptr to new allocated object>;
233 *ptr = <ptr to old object>;
241 Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
242 more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the
245 Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
246 allows to return the 'cast rank', for example, if you have this
253 food(1) // cast rank '1' (1 -> 1.0)
254 fooi(1) // cast rank '0'
256 just use the SWIG_AddCast()/SWIG_CheckState()
261 #define SWIG_ERROR (-1)
262 #define SWIG_IsOK(r) (r >= 0)
263 #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
265 /* The CastRankLimit says how many bits are used for the cast rank */
266 #define SWIG_CASTRANKLIMIT (1 << 8)
267 /* The NewMask denotes the object was created (using new/malloc) */
268 #define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
269 /* The TmpMask is for in/out typemaps that use temporal objects */
270 #define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
271 /* Simple returning values */
272 #define SWIG_BADOBJ (SWIG_ERROR)
273 #define SWIG_OLDOBJ (SWIG_OK)
274 #define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
275 #define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
276 /* Check, add and del mask methods */
277 #define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
278 #define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
279 #define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
280 #define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
281 #define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
282 #define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
286 #if defined(SWIG_CASTRANK_MODE)
287 # ifndef SWIG_TypeRank
288 # define SWIG_TypeRank unsigned long
290 # ifndef SWIG_MAXCASTRANK /* Default cast allowed */
291 # define SWIG_MAXCASTRANK (2)
293 # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
294 # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
295 SWIGINTERNINLINE
int SWIG_AddCast(int r
) {
296 return SWIG_IsOK(r
) ? ((SWIG_CastRank(r
) < SWIG_MAXCASTRANK
) ? (r
+ 1) : SWIG_ERROR
) : r
;
298 SWIGINTERNINLINE
int SWIG_CheckState(int r
) {
299 return SWIG_IsOK(r
) ? SWIG_CastRank(r
) + 1 : 0;
301 #else /* no cast-rank mode */
302 # define SWIG_AddCast
303 # define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
315 typedef void *(*swig_converter_func
)(void *);
316 typedef struct swig_type_info
*(*swig_dycast_func
)(void **);
318 /* Structure to store inforomation on one type */
319 typedef struct swig_type_info
{
320 const char *name
; /* mangled name of this type */
321 const char *str
; /* human readable name of this type */
322 swig_dycast_func dcast
; /* dynamic cast function down a hierarchy */
323 struct swig_cast_info
*cast
; /* linked list of types that can cast into this type */
324 void *clientdata
; /* language specific type data */
325 int owndata
; /* flag if the structure owns the clientdata */
328 /* Structure to store a type and conversion function used for casting */
329 typedef struct swig_cast_info
{
330 swig_type_info
*type
; /* pointer to type that is equivalent to this type */
331 swig_converter_func converter
; /* function to cast the void pointers */
332 struct swig_cast_info
*next
; /* pointer to next cast in linked list */
333 struct swig_cast_info
*prev
; /* pointer to the previous cast */
336 /* Structure used to store module information
337 * Each module generates one structure like this, and the runtime collects
338 * all of these structures and stores them in a circularly linked list.*/
339 typedef struct swig_module_info
{
340 swig_type_info
**types
; /* Array of pointers to swig_type_info structures that are in this module */
341 size_t size
; /* Number of types in this module */
342 struct swig_module_info
*next
; /* Pointer to next element in circularly linked list */
343 swig_type_info
**type_initial
; /* Array of initially generated type structures */
344 swig_cast_info
**cast_initial
; /* Array of initially generated casting structures */
345 void *clientdata
; /* Language specific module data */
349 Compare two type names skipping the space characters, therefore
350 "char*" == "char *" and "Class<int>" == "Class<int >", etc.
352 Return 0 when the two name types are equivalent, as in
353 strncmp, but skipping ' '.
356 SWIG_TypeNameComp(const char *f1
, const char *l1
,
357 const char *f2
, const char *l2
) {
358 for (;(f1
!= l1
) && (f2
!= l2
); ++f1
, ++f2
) {
359 while ((*f1
== ' ') && (f1
!= l1
)) ++f1
;
360 while ((*f2
== ' ') && (f2
!= l2
)) ++f2
;
361 if (*f1
!= *f2
) return (*f1
> *f2
) ? 1 : -1;
363 return (l1
- f1
) - (l2
- f2
);
367 Check type equivalence in a name list like <name1>|<name2>|...
368 Return 0 if not equal, 1 if equal
371 SWIG_TypeEquiv(const char *nb
, const char *tb
) {
373 const char* te
= tb
+ strlen(tb
);
375 while (!equiv
&& *ne
) {
376 for (nb
= ne
; *ne
; ++ne
) {
377 if (*ne
== '|') break;
379 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
386 Check type equivalence in a name list like <name1>|<name2>|...
387 Return 0 if equal, -1 if nb < tb, 1 if nb > tb
390 SWIG_TypeCompare(const char *nb
, const char *tb
) {
392 const char* te
= tb
+ strlen(tb
);
394 while (!equiv
&& *ne
) {
395 for (nb
= ne
; *ne
; ++ne
) {
396 if (*ne
== '|') break;
398 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
405 /* think of this as a c++ template<> or a scheme macro */
406 #define SWIG_TypeCheck_Template(comparison, ty) \
408 swig_cast_info *iter = ty->cast; \
411 if (iter == ty->cast) return iter; \
412 /* Move iter to the top of the linked list */ \
413 iter->prev->next = iter->next; \
415 iter->next->prev = iter->prev; \
416 iter->next = ty->cast; \
418 if (ty->cast) ty->cast->prev = iter; \
430 SWIGRUNTIME swig_cast_info
*
431 SWIG_TypeCheck(const char *c
, swig_type_info
*ty
) {
432 SWIG_TypeCheck_Template(strcmp(iter
->type
->name
, c
) == 0, ty
);
435 /* Same as previous function, except strcmp is replaced with a pointer comparison */
436 SWIGRUNTIME swig_cast_info
*
437 SWIG_TypeCheckStruct(swig_type_info
*from
, swig_type_info
*into
) {
438 SWIG_TypeCheck_Template(iter
->type
== from
, into
);
442 Cast a pointer up an inheritance hierarchy
444 SWIGRUNTIMEINLINE
void *
445 SWIG_TypeCast(swig_cast_info
*ty
, void *ptr
) {
446 return ((!ty
) || (!ty
->converter
)) ? ptr
: (*ty
->converter
)(ptr
);
450 Dynamic pointer casting. Down an inheritance hierarchy
452 SWIGRUNTIME swig_type_info
*
453 SWIG_TypeDynamicCast(swig_type_info
*ty
, void **ptr
) {
454 swig_type_info
*lastty
= ty
;
455 if (!ty
|| !ty
->dcast
) return ty
;
456 while (ty
&& (ty
->dcast
)) {
457 ty
= (*ty
->dcast
)(ptr
);
464 Return the name associated with this type
466 SWIGRUNTIMEINLINE
const char *
467 SWIG_TypeName(const swig_type_info
*ty
) {
472 Return the pretty name associated with this type,
473 that is an unmangled type name in a form presentable to the user.
475 SWIGRUNTIME
const char *
476 SWIG_TypePrettyName(const swig_type_info
*type
) {
477 /* The "str" field contains the equivalent pretty names of the
478 type, separated by vertical-bar characters. We choose
479 to print the last name, as it is often (?) the most
481 if (!type
) return NULL
;
482 if (type
->str
!= NULL
) {
483 const char *last_name
= type
->str
;
485 for (s
= type
->str
; *s
; s
++)
486 if (*s
== '|') last_name
= s
+1;
494 Set the clientdata field for a type
497 SWIG_TypeClientData(swig_type_info
*ti
, void *clientdata
) {
498 swig_cast_info
*cast
= ti
->cast
;
499 /* if (ti->clientdata == clientdata) return; */
500 ti
->clientdata
= clientdata
;
503 if (!cast
->converter
) {
504 swig_type_info
*tc
= cast
->type
;
505 if (!tc
->clientdata
) {
506 SWIG_TypeClientData(tc
, clientdata
);
513 SWIG_TypeNewClientData(swig_type_info
*ti
, void *clientdata
) {
514 SWIG_TypeClientData(ti
, clientdata
);
519 Search for a swig_type_info structure only by mangled name
520 Search is a O(log #types)
522 We start searching at module start, and finish searching when start == end.
523 Note: if start == end at the beginning of the function, we go all the way around
526 SWIGRUNTIME swig_type_info
*
527 SWIG_MangledTypeQueryModule(swig_module_info
*start
,
528 swig_module_info
*end
,
530 swig_module_info
*iter
= start
;
533 register size_t l
= 0;
534 register size_t r
= iter
->size
- 1;
536 /* since l+r >= 0, we can (>> 1) instead (/ 2) */
537 register size_t i
= (l
+ r
) >> 1;
538 const char *iname
= iter
->types
[i
]->name
;
540 register int compare
= strcmp(name
, iname
);
542 return iter
->types
[i
];
543 } else if (compare
< 0) {
549 } else if (compare
> 0) {
553 break; /* should never happen */
558 } while (iter
!= end
);
563 Search for a swig_type_info structure for either a mangled name or a human readable name.
564 It first searches the mangled names of the types, which is a O(log #types)
565 If a type is not found it then searches the human readable names, which is O(#types).
567 We start searching at module start, and finish searching when start == end.
568 Note: if start == end at the beginning of the function, we go all the way around
571 SWIGRUNTIME swig_type_info
*
572 SWIG_TypeQueryModule(swig_module_info
*start
,
573 swig_module_info
*end
,
575 /* STEP 1: Search the name field using binary search */
576 swig_type_info
*ret
= SWIG_MangledTypeQueryModule(start
, end
, name
);
580 /* STEP 2: If the type hasn't been found, do a complete search
581 of the str field (the human readable name) */
582 swig_module_info
*iter
= start
;
584 register size_t i
= 0;
585 for (; i
< iter
->size
; ++i
) {
586 if (iter
->types
[i
]->str
&& (SWIG_TypeEquiv(iter
->types
[i
]->str
, name
)))
587 return iter
->types
[i
];
590 } while (iter
!= end
);
593 /* neither found a match */
598 Pack binary data into a string
601 SWIG_PackData(char *c
, void *ptr
, size_t sz
) {
602 static const char hex
[17] = "0123456789abcdef";
603 register const unsigned char *u
= (unsigned char *) ptr
;
604 register const unsigned char *eu
= u
+ sz
;
605 for (; u
!= eu
; ++u
) {
606 register unsigned char uu
= *u
;
607 *(c
++) = hex
[(uu
& 0xf0) >> 4];
608 *(c
++) = hex
[uu
& 0xf];
614 Unpack binary data from a string
616 SWIGRUNTIME
const char *
617 SWIG_UnpackData(const char *c
, void *ptr
, size_t sz
) {
618 register unsigned char *u
= (unsigned char *) ptr
;
619 register const unsigned char *eu
= u
+ sz
;
620 for (; u
!= eu
; ++u
) {
621 register char d
= *(c
++);
622 register unsigned char uu
;
623 if ((d
>= '0') && (d
<= '9'))
624 uu
= ((d
- '0') << 4);
625 else if ((d
>= 'a') && (d
<= 'f'))
626 uu
= ((d
- ('a'-10)) << 4);
630 if ((d
>= '0') && (d
<= '9'))
632 else if ((d
>= 'a') && (d
<= 'f'))
633 uu
|= (d
- ('a'-10));
642 Pack 'void *' into a string buffer.
645 SWIG_PackVoidPtr(char *buff
, void *ptr
, const char *name
, size_t bsz
) {
647 if ((2*sizeof(void *) + 2) > bsz
) return 0;
649 r
= SWIG_PackData(r
,&ptr
,sizeof(void *));
650 if (strlen(name
) + 1 > (bsz
- (r
- buff
))) return 0;
655 SWIGRUNTIME
const char *
656 SWIG_UnpackVoidPtr(const char *c
, void **ptr
, const char *name
) {
658 if (strcmp(c
,"NULL") == 0) {
665 return SWIG_UnpackData(++c
,ptr
,sizeof(void *));
669 SWIG_PackDataName(char *buff
, void *ptr
, size_t sz
, const char *name
, size_t bsz
) {
671 size_t lname
= (name
? strlen(name
) : 0);
672 if ((2*sz
+ 2 + lname
) > bsz
) return 0;
674 r
= SWIG_PackData(r
,ptr
,sz
);
676 strncpy(r
,name
,lname
+1);
683 SWIGRUNTIME
const char *
684 SWIG_UnpackDataName(const char *c
, void *ptr
, size_t sz
, const char *name
) {
686 if (strcmp(c
,"NULL") == 0) {
693 return SWIG_UnpackData(++c
,ptr
,sz
);
701 #define SWIG_UnknownError -1
702 #define SWIG_IOError -2
703 #define SWIG_RuntimeError -3
704 #define SWIG_IndexError -4
705 #define SWIG_TypeError -5
706 #define SWIG_DivisionByZero -6
707 #define SWIG_OverflowError -7
708 #define SWIG_SyntaxError -8
709 #define SWIG_ValueError -9
710 #define SWIG_SystemError -10
711 #define SWIG_AttributeError -11
712 #define SWIG_MemoryError -12
713 #define SWIG_NullReferenceError -13
717 /* Python.h has to appear first */
720 /* Add PyOS_snprintf for old Pythons */
721 #if PY_VERSION_HEX < 0x02020000
722 # if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM)
723 # define PyOS_snprintf _snprintf
725 # define PyOS_snprintf snprintf
729 /* A crude PyString_FromFormat implementation for old Pythons */
730 #if PY_VERSION_HEX < 0x02020000
732 #ifndef SWIG_PYBUFFER_SIZE
733 # define SWIG_PYBUFFER_SIZE 1024
737 PyString_FromFormat(const char *fmt
, ...) {
739 char buf
[SWIG_PYBUFFER_SIZE
* 2];
742 res
= vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
744 return (res
< 0 || res
>= (int)sizeof(buf
)) ? 0 : PyString_FromString(buf
);
748 /* Add PyObject_Del for old Pythons */
749 #if PY_VERSION_HEX < 0x01060000
750 # define PyObject_Del(op) PyMem_DEL((op))
753 # define PyObject_DEL PyObject_Del
756 /* A crude PyExc_StopIteration exception for old Pythons */
757 #if PY_VERSION_HEX < 0x02020000
758 # ifndef PyExc_StopIteration
759 # define PyExc_StopIteration PyExc_RuntimeError
761 # ifndef PyObject_GenericGetAttr
762 # define PyObject_GenericGetAttr 0
765 /* Py_NotImplemented is defined in 2.1 and up. */
766 #if PY_VERSION_HEX < 0x02010000
767 # ifndef Py_NotImplemented
768 # define Py_NotImplemented PyExc_RuntimeError
773 /* A crude PyString_AsStringAndSize implementation for old Pythons */
774 #if PY_VERSION_HEX < 0x02010000
775 # ifndef PyString_AsStringAndSize
776 # define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;}
780 /* PySequence_Size for old Pythons */
781 #if PY_VERSION_HEX < 0x02000000
782 # ifndef PySequence_Size
783 # define PySequence_Size PySequence_Length
788 /* PyBool_FromLong for old Pythons */
789 #if PY_VERSION_HEX < 0x02030000
791 PyObject
*PyBool_FromLong(long ok
)
793 PyObject
*result
= ok
? Py_True
: Py_False
;
800 /* -----------------------------------------------------------------------------
802 * ----------------------------------------------------------------------------- */
804 SWIGRUNTIME PyObject
*
805 SWIG_Python_ErrorType(int code
) {
808 case SWIG_MemoryError
:
809 type
= PyExc_MemoryError
;
812 type
= PyExc_IOError
;
814 case SWIG_RuntimeError
:
815 type
= PyExc_RuntimeError
;
817 case SWIG_IndexError
:
818 type
= PyExc_IndexError
;
821 type
= PyExc_TypeError
;
823 case SWIG_DivisionByZero
:
824 type
= PyExc_ZeroDivisionError
;
826 case SWIG_OverflowError
:
827 type
= PyExc_OverflowError
;
829 case SWIG_SyntaxError
:
830 type
= PyExc_SyntaxError
;
832 case SWIG_ValueError
:
833 type
= PyExc_ValueError
;
835 case SWIG_SystemError
:
836 type
= PyExc_SystemError
;
838 case SWIG_AttributeError
:
839 type
= PyExc_AttributeError
;
842 type
= PyExc_RuntimeError
;
849 SWIG_Python_AddErrorMsg(const char* mesg
)
853 PyObject
*traceback
= 0;
855 if (PyErr_Occurred()) PyErr_Fetch(&type
, &value
, &traceback
);
857 PyObject
*old_str
= PyObject_Str(value
);
860 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
864 PyErr_Format(PyExc_RuntimeError
, mesg
);
870 #if defined(SWIG_PYTHON_NO_THREADS)
871 # if defined(SWIG_PYTHON_THREADS)
872 # undef SWIG_PYTHON_THREADS
875 #if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */
876 # if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
877 # if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */
878 # define SWIG_PYTHON_USE_GIL
881 # if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */
882 # ifndef SWIG_PYTHON_INITIALIZE_THREADS
883 # define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
885 # ifdef __cplusplus /* C++ code */
886 class SWIG_Python_Thread_Block
{
888 PyGILState_STATE state
;
890 void end() { if (status
) { PyGILState_Release(state
); status
= false;} }
891 SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
892 ~SWIG_Python_Thread_Block() { end(); }
894 class SWIG_Python_Thread_Allow
{
898 void end() { if (status
) { PyEval_RestoreThread(save
); status
= false; }}
899 SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
900 ~SWIG_Python_Thread_Allow() { end(); }
902 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
903 # define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
904 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
905 # define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
907 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
908 # define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
909 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
910 # define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
912 # else /* Old thread way, not implemented, user must provide it */
913 # if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
914 # define SWIG_PYTHON_INITIALIZE_THREADS
916 # if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
917 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
919 # if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
920 # define SWIG_PYTHON_THREAD_END_BLOCK
922 # if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
923 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
925 # if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
926 # define SWIG_PYTHON_THREAD_END_ALLOW
929 #else /* No thread support */
930 # define SWIG_PYTHON_INITIALIZE_THREADS
931 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
932 # define SWIG_PYTHON_THREAD_END_BLOCK
933 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
934 # define SWIG_PYTHON_THREAD_END_ALLOW
937 /* -----------------------------------------------------------------------------
938 * Python API portion that goes into the runtime
939 * ----------------------------------------------------------------------------- */
948 /* -----------------------------------------------------------------------------
949 * Constant declarations
950 * ----------------------------------------------------------------------------- */
953 #define SWIG_PY_POINTER 4
954 #define SWIG_PY_BINARY 5
956 /* Constant information structure */
957 typedef struct swig_const_info
{
963 swig_type_info
**ptype
;
974 /* -----------------------------------------------------------------------------
975 * See the LICENSE file for information on copyright, usage and redistribution
976 * of SWIG, and the README file for authors - http://www.swig.org/release.html.
980 * This file contains the runtime support for Python modules
981 * and includes code for managing global variables and pointer
984 * ----------------------------------------------------------------------------- */
986 /* Common SWIG API */
988 #if PY_VERSION_HEX < 0x02050000
989 typedef int Py_ssize_t
;
992 /* for raw pointers */
993 #define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
994 #define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
995 #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
996 #define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags)
997 #define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
998 #define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
999 #define swig_owntype int
1001 /* for raw packed data */
1002 #define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1003 #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1005 /* for class or struct pointers */
1006 #define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
1007 #define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
1009 /* for C or C++ function pointers */
1010 #define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
1011 #define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0)
1013 /* for C++ member pointers, ie, member methods */
1014 #define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1015 #define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1020 #define SWIG_GetModule(clientdata) SWIG_Python_GetModule()
1021 #define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
1022 #define SWIG_NewClientData(obj) PySwigClientData_New(obj)
1024 #define SWIG_SetErrorObj SWIG_Python_SetErrorObj
1025 #define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
1026 #define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
1027 #define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
1028 #define SWIG_fail goto fail
1031 /* Runtime API implementation */
1033 /* Error manipulation */
1036 SWIG_Python_SetErrorObj(PyObject
*errtype
, PyObject
*obj
) {
1037 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1038 PyErr_SetObject(errtype
, obj
);
1040 SWIG_PYTHON_THREAD_END_BLOCK
;
1044 SWIG_Python_SetErrorMsg(PyObject
*errtype
, const char *msg
) {
1045 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1046 PyErr_SetString(errtype
, (char *) msg
);
1047 SWIG_PYTHON_THREAD_END_BLOCK
;
1050 #define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
1052 /* Set a constant value */
1055 SWIG_Python_SetConstant(PyObject
*d
, const char *name
, PyObject
*obj
) {
1056 PyDict_SetItemString(d
, (char*) name
, obj
);
1060 /* Append a value to the result obj */
1062 SWIGINTERN PyObject
*
1063 SWIG_Python_AppendOutput(PyObject
* result
, PyObject
* obj
) {
1064 #if !defined(SWIG_PYTHON_OUTPUT_TUPLE)
1067 } else if (result
== Py_None
) {
1071 if (!PyList_Check(result
)) {
1072 PyObject
*o2
= result
;
1073 result
= PyList_New(1);
1074 PyList_SetItem(result
, 0, o2
);
1076 PyList_Append(result
,obj
);
1085 } else if (result
== Py_None
) {
1089 if (!PyTuple_Check(result
)) {
1091 result
= PyTuple_New(1);
1092 PyTuple_SET_ITEM(result
, 0, o2
);
1094 o3
= PyTuple_New(1);
1095 PyTuple_SET_ITEM(o3
, 0, obj
);
1097 result
= PySequence_Concat(o2
, o3
);
1105 /* Unpack the argument tuple */
1108 SWIG_Python_UnpackTuple(PyObject
*args
, const char *name
, int min
, int max
, PyObject
**objs
)
1114 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got none",
1115 name
, (min
== max
? "" : "at least "), min
);
1119 if (!PyTuple_Check(args
)) {
1120 PyErr_SetString(PyExc_SystemError
, "UnpackTuple() argument list is not a tuple");
1123 register int l
= PyTuple_GET_SIZE(args
);
1125 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1126 name
, (min
== max
? "" : "at least "), min
, l
);
1128 } else if (l
> max
) {
1129 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1130 name
, (min
== max
? "" : "at most "), max
, l
);
1134 for (i
= 0; i
< l
; ++i
) {
1135 objs
[i
] = PyTuple_GET_ITEM(args
, i
);
1137 for (; l
< max
; ++l
) {
1145 /* A functor is a function object with one single object argument */
1146 #if PY_VERSION_HEX >= 0x02020000
1147 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
1149 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj);
1153 Helper for static pointer initialization for both C and C++ code, for example
1154 static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...);
1157 #define SWIG_STATIC_POINTER(var) var
1159 #define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
1162 /* -----------------------------------------------------------------------------
1163 * Pointer declarations
1164 * ----------------------------------------------------------------------------- */
1166 /* Flags for new pointer objects */
1167 #define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
1168 #define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
1170 #define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
1179 /* How to access Py_None */
1180 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
1181 # ifndef SWIG_PYTHON_NO_BUILD_NONE
1182 # ifndef SWIG_PYTHON_BUILD_NONE
1183 # define SWIG_PYTHON_BUILD_NONE
1188 #ifdef SWIG_PYTHON_BUILD_NONE
1191 # define Py_None SWIG_Py_None()
1193 SWIGRUNTIMEINLINE PyObject
*
1196 PyObject
*none
= Py_BuildValue("");
1200 SWIGRUNTIME PyObject
*
1203 static PyObject
*SWIG_STATIC_POINTER(none
) = _SWIG_Py_None();
1208 /* The python void return value */
1210 SWIGRUNTIMEINLINE PyObject
*
1213 PyObject
*none
= Py_None
;
1218 /* PySwigClientData */
1229 SWIGRUNTIMEINLINE
int
1230 SWIG_Python_CheckImplicit(swig_type_info
*ty
)
1232 PySwigClientData
*data
= (PySwigClientData
*)ty
->clientdata
;
1233 return data
? data
->implicitconv
: 0;
1236 SWIGRUNTIMEINLINE PyObject
*
1237 SWIG_Python_ExceptionType(swig_type_info
*desc
) {
1238 PySwigClientData
*data
= desc
? (PySwigClientData
*) desc
->clientdata
: 0;
1239 PyObject
*klass
= data
? data
->klass
: 0;
1240 return (klass
? klass
: PyExc_RuntimeError
);
1244 SWIGRUNTIME PySwigClientData
*
1245 PySwigClientData_New(PyObject
* obj
)
1250 PySwigClientData
*data
= (PySwigClientData
*)malloc(sizeof(PySwigClientData
));
1251 /* the klass element */
1253 Py_INCREF(data
->klass
);
1254 /* the newraw method and newargs arguments used to create a new raw instance */
1255 if (PyClass_Check(obj
)) {
1257 data
->newargs
= obj
;
1260 #if (PY_VERSION_HEX < 0x02020000)
1263 data
->newraw
= PyObject_GetAttrString(data
->klass
, (char *)"__new__");
1266 Py_INCREF(data
->newraw
);
1267 data
->newargs
= PyTuple_New(1);
1268 PyTuple_SetItem(data
->newargs
, 0, obj
);
1270 data
->newargs
= obj
;
1272 Py_INCREF(data
->newargs
);
1274 /* the destroy method, aka as the C++ delete method */
1275 data
->destroy
= PyObject_GetAttrString(data
->klass
, (char *)"__swig_destroy__");
1276 if (PyErr_Occurred()) {
1280 if (data
->destroy
) {
1282 Py_INCREF(data
->destroy
);
1283 flags
= PyCFunction_GET_FLAGS(data
->destroy
);
1285 data
->delargs
= !(flags
& (METH_O
));
1292 data
->implicitconv
= 0;
1298 PySwigClientData_Del(PySwigClientData
* data
)
1300 Py_XDECREF(data
->newraw
);
1301 Py_XDECREF(data
->newargs
);
1302 Py_XDECREF(data
->destroy
);
1305 /* =============== PySwigObject =====================*/
1315 SWIGRUNTIME PyObject
*
1316 PySwigObject_long(PySwigObject
*v
)
1318 return PyLong_FromVoidPtr(v
->ptr
);
1321 SWIGRUNTIME PyObject
*
1322 PySwigObject_format(const char* fmt
, PySwigObject
*v
)
1324 PyObject
*res
= NULL
;
1325 PyObject
*args
= PyTuple_New(1);
1327 if (PyTuple_SetItem(args
, 0, PySwigObject_long(v
)) == 0) {
1328 PyObject
*ofmt
= PyString_FromString(fmt
);
1330 res
= PyString_Format(ofmt
,args
);
1339 SWIGRUNTIME PyObject
*
1340 PySwigObject_oct(PySwigObject
*v
)
1342 return PySwigObject_format("%o",v
);
1345 SWIGRUNTIME PyObject
*
1346 PySwigObject_hex(PySwigObject
*v
)
1348 return PySwigObject_format("%x",v
);
1351 SWIGRUNTIME PyObject
*
1353 PySwigObject_repr(PySwigObject
*v
)
1355 PySwigObject_repr(PySwigObject
*v
, PyObject
*args
)
1358 const char *name
= SWIG_TypePrettyName(v
->ty
);
1359 PyObject
*hex
= PySwigObject_hex(v
);
1360 PyObject
*repr
= PyString_FromFormat("<Swig Object of type '%s' at 0x%s>", name
, PyString_AsString(hex
));
1364 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
);
1366 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
, args
);
1368 PyString_ConcatAndDel(&repr
,nrep
);
1374 PySwigObject_print(PySwigObject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1377 PyObject
*repr
= PySwigObject_repr(v
);
1379 PyObject
*repr
= PySwigObject_repr(v
, NULL
);
1382 fputs(PyString_AsString(repr
), fp
);
1390 SWIGRUNTIME PyObject
*
1391 PySwigObject_str(PySwigObject
*v
)
1393 char result
[SWIG_BUFFER_SIZE
];
1394 return SWIG_PackVoidPtr(result
, v
->ptr
, v
->ty
->name
, sizeof(result
)) ?
1395 PyString_FromString(result
) : 0;
1399 PySwigObject_compare(PySwigObject
*v
, PySwigObject
*w
)
1403 return (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1406 SWIGRUNTIME PyTypeObject
* _PySwigObject_type(void);
1408 SWIGRUNTIME PyTypeObject
*
1409 PySwigObject_type(void) {
1410 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigObject_type();
1414 SWIGRUNTIMEINLINE
int
1415 PySwigObject_Check(PyObject
*op
) {
1416 return ((op
)->ob_type
== PySwigObject_type())
1417 || (strcmp((op
)->ob_type
->tp_name
,"PySwigObject") == 0);
1420 SWIGRUNTIME PyObject
*
1421 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
);
1424 PySwigObject_dealloc(PyObject
*v
)
1426 PySwigObject
*sobj
= (PySwigObject
*) v
;
1427 PyObject
*next
= sobj
->next
;
1429 swig_type_info
*ty
= sobj
->ty
;
1430 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
1431 PyObject
*destroy
= data
? data
->destroy
: 0;
1433 /* destroy is always a VARARGS method */
1435 if (data
->delargs
) {
1436 /* we need to create a temporal object to carry the destroy operation */
1437 PyObject
*tmp
= PySwigObject_New(sobj
->ptr
, ty
, 0);
1438 res
= SWIG_Python_CallFunctor(destroy
, tmp
);
1441 PyCFunction meth
= PyCFunction_GET_FUNCTION(destroy
);
1442 PyObject
*mself
= PyCFunction_GET_SELF(destroy
);
1443 res
= ((*meth
)(mself
, v
));
1447 const char *name
= SWIG_TypePrettyName(ty
);
1448 #if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
1449 printf("swig/python detected a memory leak of type '%s', no destructor found.\n", name
);
1457 SWIGRUNTIME PyObject
*
1458 PySwigObject_append(PyObject
* v
, PyObject
* next
)
1460 PySwigObject
*sobj
= (PySwigObject
*) v
;
1463 if (!PyArg_ParseTuple(next
,(char *)"O:append", &tmp
)) return NULL
;
1466 if (!PySwigObject_Check(next
)) {
1471 return SWIG_Py_Void();
1474 SWIGRUNTIME PyObject
*
1476 PySwigObject_next(PyObject
* v
)
1478 PySwigObject_next(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1481 PySwigObject
*sobj
= (PySwigObject
*) v
;
1483 Py_INCREF(sobj
->next
);
1486 return SWIG_Py_Void();
1490 SWIGINTERN PyObject
*
1492 PySwigObject_disown(PyObject
*v
)
1494 PySwigObject_disown(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1497 PySwigObject
*sobj
= (PySwigObject
*)v
;
1499 return SWIG_Py_Void();
1502 SWIGINTERN PyObject
*
1504 PySwigObject_acquire(PyObject
*v
)
1506 PySwigObject_acquire(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1509 PySwigObject
*sobj
= (PySwigObject
*)v
;
1510 sobj
->own
= SWIG_POINTER_OWN
;
1511 return SWIG_Py_Void();
1514 SWIGINTERN PyObject
*
1515 PySwigObject_own(PyObject
*v
, PyObject
*args
)
1518 #if (PY_VERSION_HEX < 0x02020000)
1519 if (!PyArg_ParseTuple(args
,(char *)"|O:own",&val
))
1521 if (!PyArg_UnpackTuple(args
, (char *)"own", 0, 1, &val
))
1528 PySwigObject
*sobj
= (PySwigObject
*)v
;
1529 PyObject
*obj
= PyBool_FromLong(sobj
->own
);
1532 if (PyObject_IsTrue(val
)) {
1533 PySwigObject_acquire(v
);
1535 PySwigObject_disown(v
);
1538 if (PyObject_IsTrue(val
)) {
1539 PySwigObject_acquire(v
,args
);
1541 PySwigObject_disown(v
,args
);
1551 swigobject_methods
[] = {
1552 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_NOARGS
, (char *)"releases ownership of the pointer"},
1553 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_NOARGS
, (char *)"aquires ownership of the pointer"},
1554 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1555 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_O
, (char *)"appends another 'this' object"},
1556 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_NOARGS
, (char *)"returns the next 'this' object"},
1557 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_NOARGS
, (char *)"returns object representation"},
1562 swigobject_methods
[] = {
1563 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_VARARGS
, (char *)"releases ownership of the pointer"},
1564 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_VARARGS
, (char *)"aquires ownership of the pointer"},
1565 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1566 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_VARARGS
, (char *)"appends another 'this' object"},
1567 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_VARARGS
, (char *)"returns the next 'this' object"},
1568 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_VARARGS
, (char *)"returns object representation"},
1573 #if PY_VERSION_HEX < 0x02020000
1574 SWIGINTERN PyObject
*
1575 PySwigObject_getattr(PySwigObject
*sobj
,char *name
)
1577 return Py_FindMethod(swigobject_methods
, (PyObject
*)sobj
, name
);
1581 SWIGRUNTIME PyTypeObject
*
1582 _PySwigObject_type(void) {
1583 static char swigobject_doc
[] = "Swig object carries a C/C++ instance pointer";
1585 static PyNumberMethods PySwigObject_as_number
= {
1586 (binaryfunc
)0, /*nb_add*/
1587 (binaryfunc
)0, /*nb_subtract*/
1588 (binaryfunc
)0, /*nb_multiply*/
1589 (binaryfunc
)0, /*nb_divide*/
1590 (binaryfunc
)0, /*nb_remainder*/
1591 (binaryfunc
)0, /*nb_divmod*/
1592 (ternaryfunc
)0,/*nb_power*/
1593 (unaryfunc
)0, /*nb_negative*/
1594 (unaryfunc
)0, /*nb_positive*/
1595 (unaryfunc
)0, /*nb_absolute*/
1596 (inquiry
)0, /*nb_nonzero*/
1603 (coercion
)0, /*nb_coerce*/
1604 (unaryfunc
)PySwigObject_long
, /*nb_int*/
1605 (unaryfunc
)PySwigObject_long
, /*nb_long*/
1606 (unaryfunc
)0, /*nb_float*/
1607 (unaryfunc
)PySwigObject_oct
, /*nb_oct*/
1608 (unaryfunc
)PySwigObject_hex
, /*nb_hex*/
1609 #if PY_VERSION_HEX >= 0x02020000
1610 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
1611 #elif PY_VERSION_HEX >= 0x02000000
1612 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
1616 static PyTypeObject pyswigobject_type
;
1617 static int type_init
= 0;
1619 const PyTypeObject tmp
1621 PyObject_HEAD_INIT(NULL
)
1623 (char *)"PySwigObject", /* tp_name */
1624 sizeof(PySwigObject
), /* tp_basicsize */
1625 0, /* tp_itemsize */
1626 (destructor
)PySwigObject_dealloc
, /* tp_dealloc */
1627 (printfunc
)PySwigObject_print
, /* tp_print */
1628 #if PY_VERSION_HEX < 0x02020000
1629 (getattrfunc
)PySwigObject_getattr
, /* tp_getattr */
1631 (getattrfunc
)0, /* tp_getattr */
1633 (setattrfunc
)0, /* tp_setattr */
1634 (cmpfunc
)PySwigObject_compare
, /* tp_compare */
1635 (reprfunc
)PySwigObject_repr
, /* tp_repr */
1636 &PySwigObject_as_number
, /* tp_as_number */
1637 0, /* tp_as_sequence */
1638 0, /* tp_as_mapping */
1639 (hashfunc
)0, /* tp_hash */
1640 (ternaryfunc
)0, /* tp_call */
1641 (reprfunc
)PySwigObject_str
, /* tp_str */
1642 PyObject_GenericGetAttr
, /* tp_getattro */
1643 0, /* tp_setattro */
1644 0, /* tp_as_buffer */
1645 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1646 swigobject_doc
, /* tp_doc */
1647 0, /* tp_traverse */
1649 0, /* tp_richcompare */
1650 0, /* tp_weaklistoffset */
1651 #if PY_VERSION_HEX >= 0x02020000
1653 0, /* tp_iternext */
1654 swigobject_methods
, /* tp_methods */
1659 0, /* tp_descr_get */
1660 0, /* tp_descr_set */
1661 0, /* tp_dictoffset */
1670 0, /* tp_subclasses */
1671 0, /* tp_weaklist */
1673 #if PY_VERSION_HEX >= 0x02030000
1677 0,0,0,0 /* tp_alloc -> tp_next */
1680 pyswigobject_type
= tmp
;
1681 pyswigobject_type
.ob_type
= &PyType_Type
;
1684 return &pyswigobject_type
;
1687 SWIGRUNTIME PyObject
*
1688 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
)
1690 PySwigObject
*sobj
= PyObject_NEW(PySwigObject
, PySwigObject_type());
1697 return (PyObject
*)sobj
;
1700 /* -----------------------------------------------------------------------------
1701 * Implements a simple Swig Packed type, and use it instead of string
1702 * ----------------------------------------------------------------------------- */
1712 PySwigPacked_print(PySwigPacked
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1714 char result
[SWIG_BUFFER_SIZE
];
1715 fputs("<Swig Packed ", fp
);
1716 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1720 fputs(v
->ty
->name
,fp
);
1725 SWIGRUNTIME PyObject
*
1726 PySwigPacked_repr(PySwigPacked
*v
)
1728 char result
[SWIG_BUFFER_SIZE
];
1729 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1730 return PyString_FromFormat("<Swig Packed at %s%s>", result
, v
->ty
->name
);
1732 return PyString_FromFormat("<Swig Packed %s>", v
->ty
->name
);
1736 SWIGRUNTIME PyObject
*
1737 PySwigPacked_str(PySwigPacked
*v
)
1739 char result
[SWIG_BUFFER_SIZE
];
1740 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))){
1741 return PyString_FromFormat("%s%s", result
, v
->ty
->name
);
1743 return PyString_FromString(v
->ty
->name
);
1748 PySwigPacked_compare(PySwigPacked
*v
, PySwigPacked
*w
)
1752 int s
= (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1753 return s
? s
: strncmp((char *)v
->pack
, (char *)w
->pack
, 2*v
->size
);
1756 SWIGRUNTIME PyTypeObject
* _PySwigPacked_type(void);
1758 SWIGRUNTIME PyTypeObject
*
1759 PySwigPacked_type(void) {
1760 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigPacked_type();
1764 SWIGRUNTIMEINLINE
int
1765 PySwigPacked_Check(PyObject
*op
) {
1766 return ((op
)->ob_type
== _PySwigPacked_type())
1767 || (strcmp((op
)->ob_type
->tp_name
,"PySwigPacked") == 0);
1771 PySwigPacked_dealloc(PyObject
*v
)
1773 if (PySwigPacked_Check(v
)) {
1774 PySwigPacked
*sobj
= (PySwigPacked
*) v
;
1780 SWIGRUNTIME PyTypeObject
*
1781 _PySwigPacked_type(void) {
1782 static char swigpacked_doc
[] = "Swig object carries a C/C++ instance pointer";
1783 static PyTypeObject pyswigpacked_type
;
1784 static int type_init
= 0;
1786 const PyTypeObject tmp
1788 PyObject_HEAD_INIT(NULL
)
1790 (char *)"PySwigPacked", /* tp_name */
1791 sizeof(PySwigPacked
), /* tp_basicsize */
1792 0, /* tp_itemsize */
1793 (destructor
)PySwigPacked_dealloc
, /* tp_dealloc */
1794 (printfunc
)PySwigPacked_print
, /* tp_print */
1795 (getattrfunc
)0, /* tp_getattr */
1796 (setattrfunc
)0, /* tp_setattr */
1797 (cmpfunc
)PySwigPacked_compare
, /* tp_compare */
1798 (reprfunc
)PySwigPacked_repr
, /* tp_repr */
1799 0, /* tp_as_number */
1800 0, /* tp_as_sequence */
1801 0, /* tp_as_mapping */
1802 (hashfunc
)0, /* tp_hash */
1803 (ternaryfunc
)0, /* tp_call */
1804 (reprfunc
)PySwigPacked_str
, /* tp_str */
1805 PyObject_GenericGetAttr
, /* tp_getattro */
1806 0, /* tp_setattro */
1807 0, /* tp_as_buffer */
1808 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1809 swigpacked_doc
, /* tp_doc */
1810 0, /* tp_traverse */
1812 0, /* tp_richcompare */
1813 0, /* tp_weaklistoffset */
1814 #if PY_VERSION_HEX >= 0x02020000
1816 0, /* tp_iternext */
1822 0, /* tp_descr_get */
1823 0, /* tp_descr_set */
1824 0, /* tp_dictoffset */
1833 0, /* tp_subclasses */
1834 0, /* tp_weaklist */
1836 #if PY_VERSION_HEX >= 0x02030000
1840 0,0,0,0 /* tp_alloc -> tp_next */
1843 pyswigpacked_type
= tmp
;
1844 pyswigpacked_type
.ob_type
= &PyType_Type
;
1847 return &pyswigpacked_type
;
1850 SWIGRUNTIME PyObject
*
1851 PySwigPacked_New(void *ptr
, size_t size
, swig_type_info
*ty
)
1853 PySwigPacked
*sobj
= PyObject_NEW(PySwigPacked
, PySwigPacked_type());
1855 void *pack
= malloc(size
);
1857 memcpy(pack
, ptr
, size
);
1862 PyObject_DEL((PyObject
*) sobj
);
1866 return (PyObject
*) sobj
;
1869 SWIGRUNTIME swig_type_info
*
1870 PySwigPacked_UnpackData(PyObject
*obj
, void *ptr
, size_t size
)
1872 if (PySwigPacked_Check(obj
)) {
1873 PySwigPacked
*sobj
= (PySwigPacked
*)obj
;
1874 if (sobj
->size
!= size
) return 0;
1875 memcpy(ptr
, sobj
->pack
, size
);
1882 /* -----------------------------------------------------------------------------
1883 * pointers/data manipulation
1884 * ----------------------------------------------------------------------------- */
1886 SWIGRUNTIMEINLINE PyObject
*
1889 return PyString_FromString("this");
1892 SWIGRUNTIME PyObject
*
1895 static PyObject
*SWIG_STATIC_POINTER(swig_this
) = _SWIG_This();
1899 /* #define SWIG_PYTHON_SLOW_GETSET_THIS */
1901 SWIGRUNTIME PySwigObject
*
1902 SWIG_Python_GetSwigThis(PyObject
*pyobj
)
1904 if (PySwigObject_Check(pyobj
)) {
1905 return (PySwigObject
*) pyobj
;
1908 #if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000))
1909 if (PyInstance_Check(pyobj
)) {
1910 obj
= _PyInstance_Lookup(pyobj
, SWIG_This());
1912 PyObject
**dictptr
= _PyObject_GetDictPtr(pyobj
);
1913 if (dictptr
!= NULL
) {
1914 PyObject
*dict
= *dictptr
;
1915 obj
= dict
? PyDict_GetItem(dict
, SWIG_This()) : 0;
1917 #ifdef PyWeakref_CheckProxy
1918 if (PyWeakref_CheckProxy(pyobj
)) {
1919 PyObject
*wobj
= PyWeakref_GET_OBJECT(pyobj
);
1920 return wobj
? SWIG_Python_GetSwigThis(wobj
) : 0;
1923 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1927 if (PyErr_Occurred()) PyErr_Clear();
1933 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1937 if (PyErr_Occurred()) PyErr_Clear();
1941 if (obj
&& !PySwigObject_Check(obj
)) {
1942 /* a PyObject is called 'this', try to get the 'real this'
1943 PySwigObject from it */
1944 return SWIG_Python_GetSwigThis(obj
);
1946 return (PySwigObject
*)obj
;
1950 /* Acquire a pointer value */
1953 SWIG_Python_AcquirePtr(PyObject
*obj
, int own
) {
1955 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1957 int oldown
= sobj
->own
;
1965 /* Convert a pointer value */
1968 SWIG_Python_ConvertPtrAndOwn(PyObject
*obj
, void **ptr
, swig_type_info
*ty
, int flags
, int *own
) {
1969 if (!obj
) return SWIG_ERROR
;
1970 if (obj
== Py_None
) {
1974 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1976 void *vptr
= sobj
->ptr
;
1978 swig_type_info
*to
= sobj
->ty
;
1980 /* no type cast needed */
1981 if (ptr
) *ptr
= vptr
;
1984 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
1986 sobj
= (PySwigObject
*)sobj
->next
;
1988 if (ptr
) *ptr
= SWIG_TypeCast(tc
,vptr
);
1993 if (ptr
) *ptr
= vptr
;
1998 if (own
) *own
= sobj
->own
;
1999 if (flags
& SWIG_POINTER_DISOWN
) {
2004 int res
= SWIG_ERROR
;
2005 if (flags
& SWIG_POINTER_IMPLICIT_CONV
) {
2006 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
2007 if (data
&& !data
->implicitconv
) {
2008 PyObject
*klass
= data
->klass
;
2011 data
->implicitconv
= 1; /* avoid recursion and call 'explicit' constructors*/
2012 impconv
= SWIG_Python_CallFunctor(klass
, obj
);
2013 data
->implicitconv
= 0;
2014 if (PyErr_Occurred()) {
2019 PySwigObject
*iobj
= SWIG_Python_GetSwigThis(impconv
);
2022 res
= SWIG_Python_ConvertPtrAndOwn((PyObject
*)iobj
, &vptr
, ty
, 0, 0);
2023 if (SWIG_IsOK(res
)) {
2026 /* transfer the ownership to 'ptr' */
2028 res
= SWIG_AddCast(res
);
2029 res
= SWIG_AddNewMask(res
);
2031 res
= SWIG_AddCast(res
);
2045 /* Convert a function ptr value */
2048 SWIG_Python_ConvertFunctionPtr(PyObject
*obj
, void **ptr
, swig_type_info
*ty
) {
2049 if (!PyCFunction_Check(obj
)) {
2050 return SWIG_ConvertPtr(obj
, ptr
, ty
, 0);
2054 /* here we get the method pointer for callbacks */
2055 const char *doc
= (((PyCFunctionObject
*)obj
) -> m_ml
-> ml_doc
);
2056 const char *desc
= doc
? strstr(doc
, "swig_ptr: ") : 0;
2058 desc
= ty
? SWIG_UnpackVoidPtr(desc
+ 10, &vptr
, ty
->name
) : 0;
2059 if (!desc
) return SWIG_ERROR
;
2062 swig_cast_info
*tc
= SWIG_TypeCheck(desc
,ty
);
2063 if (!tc
) return SWIG_ERROR
;
2064 *ptr
= SWIG_TypeCast(tc
,vptr
);
2072 /* Convert a packed value value */
2075 SWIG_Python_ConvertPacked(PyObject
*obj
, void *ptr
, size_t sz
, swig_type_info
*ty
) {
2076 swig_type_info
*to
= PySwigPacked_UnpackData(obj
, ptr
, sz
);
2077 if (!to
) return SWIG_ERROR
;
2080 /* check type cast? */
2081 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
2082 if (!tc
) return SWIG_ERROR
;
2088 /* -----------------------------------------------------------------------------
2089 * Create a new pointer object
2090 * ----------------------------------------------------------------------------- */
2093 Create a new instance object, whitout calling __init__, and set the
2097 SWIGRUNTIME PyObject
*
2098 SWIG_Python_NewShadowInstance(PySwigClientData
*data
, PyObject
*swig_this
)
2100 #if (PY_VERSION_HEX >= 0x02020000)
2102 PyObject
*newraw
= data
->newraw
;
2104 inst
= PyObject_Call(newraw
, data
->newargs
, NULL
);
2106 #if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2107 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2108 if (dictptr
!= NULL
) {
2109 PyObject
*dict
= *dictptr
;
2111 dict
= PyDict_New();
2113 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2117 PyObject
*key
= SWIG_This();
2118 PyObject_SetAttr(inst
, key
, swig_this
);
2122 PyObject
*dict
= PyDict_New();
2123 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2124 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2129 #if (PY_VERSION_HEX >= 0x02010000)
2131 PyObject
*dict
= PyDict_New();
2132 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2133 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2135 return (PyObject
*) inst
;
2137 PyInstanceObject
*inst
= PyObject_NEW(PyInstanceObject
, &PyInstance_Type
);
2141 inst
->in_class
= (PyClassObject
*)data
->newargs
;
2142 Py_INCREF(inst
->in_class
);
2143 inst
->in_dict
= PyDict_New();
2144 if (inst
->in_dict
== NULL
) {
2148 #ifdef Py_TPFLAGS_HAVE_WEAKREFS
2149 inst
->in_weakreflist
= NULL
;
2151 #ifdef Py_TPFLAGS_GC
2152 PyObject_GC_Init(inst
);
2154 PyDict_SetItem(inst
->in_dict
, SWIG_This(), swig_this
);
2155 return (PyObject
*) inst
;
2161 SWIG_Python_SetSwigThis(PyObject
*inst
, PyObject
*swig_this
)
2164 #if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2165 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2166 if (dictptr
!= NULL
) {
2169 dict
= PyDict_New();
2172 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2176 dict
= PyObject_GetAttrString(inst
, "__dict__");
2177 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2182 SWIGINTERN PyObject
*
2183 SWIG_Python_InitShadowInstance(PyObject
*args
) {
2185 if (!SWIG_Python_UnpackTuple(args
,(char*)"swiginit", 2, 2, obj
)) {
2188 PySwigObject
*sthis
= SWIG_Python_GetSwigThis(obj
[0]);
2190 PySwigObject_append((PyObject
*) sthis
, obj
[1]);
2192 SWIG_Python_SetSwigThis(obj
[0], obj
[1]);
2194 return SWIG_Py_Void();
2198 /* Create a new pointer object */
2200 SWIGRUNTIME PyObject
*
2201 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info
*type
, int flags
) {
2203 return SWIG_Py_Void();
2205 int own
= (flags
& SWIG_POINTER_OWN
) ? SWIG_POINTER_OWN
: 0;
2206 PyObject
*robj
= PySwigObject_New(ptr
, type
, own
);
2207 PySwigClientData
*clientdata
= type
? (PySwigClientData
*)(type
->clientdata
) : 0;
2208 if (clientdata
&& !(flags
& SWIG_POINTER_NOSHADOW
)) {
2209 PyObject
*inst
= SWIG_Python_NewShadowInstance(clientdata
, robj
);
2219 /* Create a new packed object */
2221 SWIGRUNTIMEINLINE PyObject
*
2222 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info
*type
) {
2223 return ptr
? PySwigPacked_New((void *) ptr
, sz
, type
) : SWIG_Py_Void();
2226 /* -----------------------------------------------------------------------------*
2228 * -----------------------------------------------------------------------------*/
2230 #ifdef SWIG_LINK_RUNTIME
2231 void *SWIG_ReturnGlobalTypeList(void *);
2234 SWIGRUNTIME swig_module_info
*
2235 SWIG_Python_GetModule(void) {
2236 static void *type_pointer
= (void *)0;
2237 /* first check if module already created */
2238 if (!type_pointer
) {
2239 #ifdef SWIG_LINK_RUNTIME
2240 type_pointer
= SWIG_ReturnGlobalTypeList((void *)0);
2242 type_pointer
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2243 (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
);
2244 if (PyErr_Occurred()) {
2246 type_pointer
= (void *)0;
2250 return (swig_module_info
*) type_pointer
;
2253 #if PY_MAJOR_VERSION < 2
2254 /* PyModule_AddObject function was introduced in Python 2.0. The following function
2255 is copied out of Python/modsupport.c in python version 2.3.4 */
2257 PyModule_AddObject(PyObject
*m
, char *name
, PyObject
*o
)
2260 if (!PyModule_Check(m
)) {
2261 PyErr_SetString(PyExc_TypeError
,
2262 "PyModule_AddObject() needs module as first arg");
2266 PyErr_SetString(PyExc_TypeError
,
2267 "PyModule_AddObject() needs non-NULL value");
2271 dict
= PyModule_GetDict(m
);
2273 /* Internal error -- modules must have a dict! */
2274 PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__",
2275 PyModule_GetName(m
));
2278 if (PyDict_SetItemString(dict
, name
, o
))
2286 SWIG_Python_DestroyModule(void *vptr
)
2288 swig_module_info
*swig_module
= (swig_module_info
*) vptr
;
2289 swig_type_info
**types
= swig_module
->types
;
2291 for (i
=0; i
< swig_module
->size
; ++i
) {
2292 swig_type_info
*ty
= types
[i
];
2294 PySwigClientData
*data
= (PySwigClientData
*) ty
->clientdata
;
2295 if (data
) PySwigClientData_Del(data
);
2298 Py_DECREF(SWIG_This());
2302 SWIG_Python_SetModule(swig_module_info
*swig_module
) {
2303 static PyMethodDef swig_empty_runtime_method_table
[] = { {NULL
, NULL
, 0, NULL
} };/* Sentinel */
2305 PyObject
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2306 swig_empty_runtime_method_table
);
2307 PyObject
*pointer
= PyCObject_FromVoidPtr((void *) swig_module
, SWIG_Python_DestroyModule
);
2308 if (pointer
&& module) {
2309 PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
);
2311 Py_XDECREF(pointer
);
2315 /* The python cached type query */
2316 SWIGRUNTIME PyObject
*
2317 SWIG_Python_TypeCache() {
2318 static PyObject
*SWIG_STATIC_POINTER(cache
) = PyDict_New();
2322 SWIGRUNTIME swig_type_info
*
2323 SWIG_Python_TypeQuery(const char *type
)
2325 PyObject
*cache
= SWIG_Python_TypeCache();
2326 PyObject
*key
= PyString_FromString(type
);
2327 PyObject
*obj
= PyDict_GetItem(cache
, key
);
2328 swig_type_info
*descriptor
;
2330 descriptor
= (swig_type_info
*) PyCObject_AsVoidPtr(obj
);
2332 swig_module_info
*swig_module
= SWIG_Python_GetModule();
2333 descriptor
= SWIG_TypeQueryModule(swig_module
, swig_module
, type
);
2335 obj
= PyCObject_FromVoidPtr(descriptor
, NULL
);
2336 PyDict_SetItem(cache
, key
, obj
);
2345 For backward compatibility only
2347 #define SWIG_POINTER_EXCEPTION 0
2348 #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
2349 #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
2352 SWIG_Python_AddErrMesg(const char* mesg
, int infront
)
2354 if (PyErr_Occurred()) {
2356 PyObject
*value
= 0;
2357 PyObject
*traceback
= 0;
2358 PyErr_Fetch(&type
, &value
, &traceback
);
2360 PyObject
*old_str
= PyObject_Str(value
);
2364 PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
));
2366 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
2377 SWIG_Python_ArgFail(int argnum
)
2379 if (PyErr_Occurred()) {
2380 /* add information about failing argument */
2382 PyOS_snprintf(mesg
, sizeof(mesg
), "argument number %d:", argnum
);
2383 return SWIG_Python_AddErrMesg(mesg
, 1);
2389 SWIGRUNTIMEINLINE
const char *
2390 PySwigObject_GetDesc(PyObject
*self
)
2392 PySwigObject
*v
= (PySwigObject
*)self
;
2393 swig_type_info
*ty
= v
? v
->ty
: 0;
2394 return ty
? ty
->str
: (char*)"";
2398 SWIG_Python_TypeError(const char *type
, PyObject
*obj
)
2401 #if defined(SWIG_COBJECT_TYPES)
2402 if (obj
&& PySwigObject_Check(obj
)) {
2403 const char *otype
= (const char *) PySwigObject_GetDesc(obj
);
2405 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, 'PySwigObject(%s)' is received",
2412 const char *otype
= (obj
? obj
->ob_type
->tp_name
: 0);
2414 PyObject
*str
= PyObject_Str(obj
);
2415 const char *cstr
= str
? PyString_AsString(str
) : 0;
2417 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s(%s)' is received",
2420 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s' is received",
2427 PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
);
2429 PyErr_Format(PyExc_TypeError
, "unexpected type is received");
2434 /* Convert a pointer value, signal an exception on a type mismatch */
2436 SWIG_Python_MustGetPtr(PyObject
*obj
, swig_type_info
*ty
, int argnum
, int flags
) {
2438 if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) {
2440 if (flags
& SWIG_POINTER_EXCEPTION
) {
2441 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
2442 SWIG_Python_ArgFail(argnum
);
2458 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
2460 #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
2464 /* -------- TYPES TABLE (BEGIN) -------- */
2466 #define SWIGTYPE_p_char swig_types[0]
2467 #define SWIGTYPE_p_double swig_types[1]
2468 #define SWIGTYPE_p_form_ops_t swig_types[2]
2469 #define SWIGTYPE_p_int swig_types[3]
2470 #define SWIGTYPE_p_p_wxAuiFloatingFrame swig_types[4]
2471 #define SWIGTYPE_p_p_wxAuiMDIChildFrame swig_types[5]
2472 #define SWIGTYPE_p_p_wxAuiMDIClientWindow swig_types[6]
2473 #define SWIGTYPE_p_p_wxAuiMDIParentFrame swig_types[7]
2474 #define SWIGTYPE_p_p_wxAuiNotebook swig_types[8]
2475 #define SWIGTYPE_p_p_wxAuiTabContainerButton swig_types[9]
2476 #define SWIGTYPE_p_p_wxAuiTabCtrl swig_types[10]
2477 #define SWIGTYPE_p_p_wxColourDialog swig_types[11]
2478 #define SWIGTYPE_p_p_wxControl swig_types[12]
2479 #define SWIGTYPE_p_p_wxControlWithItems swig_types[13]
2480 #define SWIGTYPE_p_p_wxDialog swig_types[14]
2481 #define SWIGTYPE_p_p_wxDirDialog swig_types[15]
2482 #define SWIGTYPE_p_p_wxFileDialog swig_types[16]
2483 #define SWIGTYPE_p_p_wxFindReplaceDialog swig_types[17]
2484 #define SWIGTYPE_p_p_wxFontDialog swig_types[18]
2485 #define SWIGTYPE_p_p_wxFrame swig_types[19]
2486 #define SWIGTYPE_p_p_wxMDIChildFrame swig_types[20]
2487 #define SWIGTYPE_p_p_wxMDIClientWindow swig_types[21]
2488 #define SWIGTYPE_p_p_wxMDIParentFrame swig_types[22]
2489 #define SWIGTYPE_p_p_wxMenuBar swig_types[23]
2490 #define SWIGTYPE_p_p_wxMessageDialog swig_types[24]
2491 #define SWIGTYPE_p_p_wxMiniFrame swig_types[25]
2492 #define SWIGTYPE_p_p_wxMultiChoiceDialog swig_types[26]
2493 #define SWIGTYPE_p_p_wxNumberEntryDialog swig_types[27]
2494 #define SWIGTYPE_p_p_wxPanel swig_types[28]
2495 #define SWIGTYPE_p_p_wxPasswordEntryDialog swig_types[29]
2496 #define SWIGTYPE_p_p_wxPopupWindow swig_types[30]
2497 #define SWIGTYPE_p_p_wxPreviewCanvas swig_types[31]
2498 #define SWIGTYPE_p_p_wxPreviewControlBar swig_types[32]
2499 #define SWIGTYPE_p_p_wxPreviewFrame swig_types[33]
2500 #define SWIGTYPE_p_p_wxProgressDialog swig_types[34]
2501 #define SWIGTYPE_p_p_wxPyHScrolledWindow swig_types[35]
2502 #define SWIGTYPE_p_p_wxPyHVScrolledWindow swig_types[36]
2503 #define SWIGTYPE_p_p_wxPyHtmlListBox swig_types[37]
2504 #define SWIGTYPE_p_p_wxPyPanel swig_types[38]
2505 #define SWIGTYPE_p_p_wxPyPopupTransientWindow swig_types[39]
2506 #define SWIGTYPE_p_p_wxPyPreviewControlBar swig_types[40]
2507 #define SWIGTYPE_p_p_wxPyPreviewFrame swig_types[41]
2508 #define SWIGTYPE_p_p_wxPyScrolledWindow swig_types[42]
2509 #define SWIGTYPE_p_p_wxPyVListBox swig_types[43]
2510 #define SWIGTYPE_p_p_wxPyVScrolledWindow swig_types[44]
2511 #define SWIGTYPE_p_p_wxPyWindow swig_types[45]
2512 #define SWIGTYPE_p_p_wxSashLayoutWindow swig_types[46]
2513 #define SWIGTYPE_p_p_wxSashWindow swig_types[47]
2514 #define SWIGTYPE_p_p_wxScrolledWindow swig_types[48]
2515 #define SWIGTYPE_p_p_wxSimpleHtmlListBox swig_types[49]
2516 #define SWIGTYPE_p_p_wxSingleChoiceDialog swig_types[50]
2517 #define SWIGTYPE_p_p_wxSplashScreen swig_types[51]
2518 #define SWIGTYPE_p_p_wxSplashScreenWindow swig_types[52]
2519 #define SWIGTYPE_p_p_wxSplitterWindow swig_types[53]
2520 #define SWIGTYPE_p_p_wxStatusBar swig_types[54]
2521 #define SWIGTYPE_p_p_wxTextEntryDialog swig_types[55]
2522 #define SWIGTYPE_p_p_wxTipWindow swig_types[56]
2523 #define SWIGTYPE_p_p_wxTopLevelWindow swig_types[57]
2524 #define SWIGTYPE_p_p_wxWindow swig_types[58]
2525 #define SWIGTYPE_p_unsigned_char swig_types[59]
2526 #define SWIGTYPE_p_unsigned_int swig_types[60]
2527 #define SWIGTYPE_p_unsigned_long swig_types[61]
2528 #define SWIGTYPE_p_wxANIHandler swig_types[62]
2529 #define SWIGTYPE_p_wxAcceleratorTable swig_types[63]
2530 #define SWIGTYPE_p_wxActivateEvent swig_types[64]
2531 #define SWIGTYPE_p_wxAuiDefaultDockArt swig_types[65]
2532 #define SWIGTYPE_p_wxAuiDefaultTabArt swig_types[66]
2533 #define SWIGTYPE_p_wxAuiDockArt swig_types[67]
2534 #define SWIGTYPE_p_wxAuiDockInfo swig_types[68]
2535 #define SWIGTYPE_p_wxAuiDockUIPart swig_types[69]
2536 #define SWIGTYPE_p_wxAuiFloatingFrame swig_types[70]
2537 #define SWIGTYPE_p_wxAuiMDIChildFrame swig_types[71]
2538 #define SWIGTYPE_p_wxAuiMDIClientWindow swig_types[72]
2539 #define SWIGTYPE_p_wxAuiMDIParentFrame swig_types[73]
2540 #define SWIGTYPE_p_wxAuiManager swig_types[74]
2541 #define SWIGTYPE_p_wxAuiManagerEvent swig_types[75]
2542 #define SWIGTYPE_p_wxAuiNotebook swig_types[76]
2543 #define SWIGTYPE_p_wxAuiNotebookEvent swig_types[77]
2544 #define SWIGTYPE_p_wxAuiNotebookPage swig_types[78]
2545 #define SWIGTYPE_p_wxAuiNotebookPageArray swig_types[79]
2546 #define SWIGTYPE_p_wxAuiPaneButton swig_types[80]
2547 #define SWIGTYPE_p_wxAuiPaneButtonArray swig_types[81]
2548 #define SWIGTYPE_p_wxAuiPaneInfo swig_types[82]
2549 #define SWIGTYPE_p_wxAuiPaneInfoPtrArray swig_types[83]
2550 #define SWIGTYPE_p_wxAuiSimpleTabArt swig_types[84]
2551 #define SWIGTYPE_p_wxAuiTabArt swig_types[85]
2552 #define SWIGTYPE_p_wxAuiTabContainer swig_types[86]
2553 #define SWIGTYPE_p_wxAuiTabContainerButton swig_types[87]
2554 #define SWIGTYPE_p_wxAuiTabCtrl swig_types[88]
2555 #define SWIGTYPE_p_wxBMPHandler swig_types[89]
2556 #define SWIGTYPE_p_wxBitmap swig_types[90]
2557 #define SWIGTYPE_p_wxBoxSizer swig_types[91]
2558 #define SWIGTYPE_p_wxCURHandler swig_types[92]
2559 #define SWIGTYPE_p_wxCalculateLayoutEvent swig_types[93]
2560 #define SWIGTYPE_p_wxChildFocusEvent swig_types[94]
2561 #define SWIGTYPE_p_wxClipboardTextEvent swig_types[95]
2562 #define SWIGTYPE_p_wxCloseEvent swig_types[96]
2563 #define SWIGTYPE_p_wxColour swig_types[97]
2564 #define SWIGTYPE_p_wxColourData swig_types[98]
2565 #define SWIGTYPE_p_wxColourDialog swig_types[99]
2566 #define SWIGTYPE_p_wxCommandEvent swig_types[100]
2567 #define SWIGTYPE_p_wxContextMenuEvent swig_types[101]
2568 #define SWIGTYPE_p_wxControl swig_types[102]
2569 #define SWIGTYPE_p_wxControlWithItems swig_types[103]
2570 #define SWIGTYPE_p_wxDC swig_types[104]
2571 #define SWIGTYPE_p_wxDateEvent swig_types[105]
2572 #define SWIGTYPE_p_wxDialog swig_types[106]
2573 #define SWIGTYPE_p_wxDirDialog swig_types[107]
2574 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[108]
2575 #define SWIGTYPE_p_wxDropFilesEvent swig_types[109]
2576 #define SWIGTYPE_p_wxDuplexMode swig_types[110]
2577 #define SWIGTYPE_p_wxEraseEvent swig_types[111]
2578 #define SWIGTYPE_p_wxEvent swig_types[112]
2579 #define SWIGTYPE_p_wxEventBlocker swig_types[113]
2580 #define SWIGTYPE_p_wxEvtHandler swig_types[114]
2581 #define SWIGTYPE_p_wxFSFile swig_types[115]
2582 #define SWIGTYPE_p_wxFileDialog swig_types[116]
2583 #define SWIGTYPE_p_wxFileSystem swig_types[117]
2584 #define SWIGTYPE_p_wxFindDialogEvent swig_types[118]
2585 #define SWIGTYPE_p_wxFindReplaceData swig_types[119]
2586 #define SWIGTYPE_p_wxFindReplaceDialog swig_types[120]
2587 #define SWIGTYPE_p_wxFlexGridSizer swig_types[121]
2588 #define SWIGTYPE_p_wxFocusEvent swig_types[122]
2589 #define SWIGTYPE_p_wxFont swig_types[123]
2590 #define SWIGTYPE_p_wxFontData swig_types[124]
2591 #define SWIGTYPE_p_wxFontDialog swig_types[125]
2592 #define SWIGTYPE_p_wxFrame swig_types[126]
2593 #define SWIGTYPE_p_wxGBSizerItem swig_types[127]
2594 #define SWIGTYPE_p_wxGIFHandler swig_types[128]
2595 #define SWIGTYPE_p_wxGridBagSizer swig_types[129]
2596 #define SWIGTYPE_p_wxGridSizer swig_types[130]
2597 #define SWIGTYPE_p_wxICOHandler swig_types[131]
2598 #define SWIGTYPE_p_wxIcon swig_types[132]
2599 #define SWIGTYPE_p_wxIconBundle swig_types[133]
2600 #define SWIGTYPE_p_wxIconizeEvent swig_types[134]
2601 #define SWIGTYPE_p_wxIdleEvent swig_types[135]
2602 #define SWIGTYPE_p_wxImage swig_types[136]
2603 #define SWIGTYPE_p_wxImageHandler swig_types[137]
2604 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[138]
2605 #define SWIGTYPE_p_wxInitDialogEvent swig_types[139]
2606 #define SWIGTYPE_p_wxJPEGHandler swig_types[140]
2607 #define SWIGTYPE_p_wxKeyEvent swig_types[141]
2608 #define SWIGTYPE_p_wxLayoutAlgorithm swig_types[142]
2609 #define SWIGTYPE_p_wxLayoutConstraints swig_types[143]
2610 #define SWIGTYPE_p_wxMDIChildFrame swig_types[144]
2611 #define SWIGTYPE_p_wxMDIClientWindow swig_types[145]
2612 #define SWIGTYPE_p_wxMDIParentFrame swig_types[146]
2613 #define SWIGTYPE_p_wxMaximizeEvent swig_types[147]
2614 #define SWIGTYPE_p_wxMenu swig_types[148]
2615 #define SWIGTYPE_p_wxMenuBar swig_types[149]
2616 #define SWIGTYPE_p_wxMenuEvent swig_types[150]
2617 #define SWIGTYPE_p_wxMenuItem swig_types[151]
2618 #define SWIGTYPE_p_wxMessageDialog swig_types[152]
2619 #define SWIGTYPE_p_wxMiniFrame swig_types[153]
2620 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[154]
2621 #define SWIGTYPE_p_wxMouseCaptureLostEvent swig_types[155]
2622 #define SWIGTYPE_p_wxMouseEvent swig_types[156]
2623 #define SWIGTYPE_p_wxMoveEvent swig_types[157]
2624 #define SWIGTYPE_p_wxMultiChoiceDialog swig_types[158]
2625 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[159]
2626 #define SWIGTYPE_p_wxNcPaintEvent swig_types[160]
2627 #define SWIGTYPE_p_wxNotifyEvent swig_types[161]
2628 #define SWIGTYPE_p_wxNumberEntryDialog swig_types[162]
2629 #define SWIGTYPE_p_wxObject swig_types[163]
2630 #define SWIGTYPE_p_wxPCXHandler swig_types[164]
2631 #define SWIGTYPE_p_wxPNGHandler swig_types[165]
2632 #define SWIGTYPE_p_wxPNMHandler swig_types[166]
2633 #define SWIGTYPE_p_wxPageSetupDialog swig_types[167]
2634 #define SWIGTYPE_p_wxPageSetupDialogData swig_types[168]
2635 #define SWIGTYPE_p_wxPaintEvent swig_types[169]
2636 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[170]
2637 #define SWIGTYPE_p_wxPanel swig_types[171]
2638 #define SWIGTYPE_p_wxPaperSize swig_types[172]
2639 #define SWIGTYPE_p_wxPasswordEntryDialog swig_types[173]
2640 #define SWIGTYPE_p_wxPoint swig_types[174]
2641 #define SWIGTYPE_p_wxPopupWindow swig_types[175]
2642 #define SWIGTYPE_p_wxPreviewCanvas swig_types[176]
2643 #define SWIGTYPE_p_wxPreviewControlBar swig_types[177]
2644 #define SWIGTYPE_p_wxPreviewFrame swig_types[178]
2645 #define SWIGTYPE_p_wxPrintData swig_types[179]
2646 #define SWIGTYPE_p_wxPrintDialog swig_types[180]
2647 #define SWIGTYPE_p_wxPrintDialogData swig_types[181]
2648 #define SWIGTYPE_p_wxPrintPreview swig_types[182]
2649 #define SWIGTYPE_p_wxPrinter swig_types[183]
2650 #define SWIGTYPE_p_wxProgressDialog swig_types[184]
2651 #define SWIGTYPE_p_wxPyApp swig_types[185]
2652 #define SWIGTYPE_p_wxPyAuiDockArt swig_types[186]
2653 #define SWIGTYPE_p_wxPyAuiTabArt swig_types[187]
2654 #define SWIGTYPE_p_wxPyCommandEvent swig_types[188]
2655 #define SWIGTYPE_p_wxPyEvent swig_types[189]
2656 #define SWIGTYPE_p_wxPyHScrolledWindow swig_types[190]
2657 #define SWIGTYPE_p_wxPyHVScrolledWindow swig_types[191]
2658 #define SWIGTYPE_p_wxPyHtmlListBox swig_types[192]
2659 #define SWIGTYPE_p_wxPyImageHandler swig_types[193]
2660 #define SWIGTYPE_p_wxPyPanel swig_types[194]
2661 #define SWIGTYPE_p_wxPyPopupTransientWindow swig_types[195]
2662 #define SWIGTYPE_p_wxPyPreviewControlBar swig_types[196]
2663 #define SWIGTYPE_p_wxPyPreviewFrame swig_types[197]
2664 #define SWIGTYPE_p_wxPyPrintPreview swig_types[198]
2665 #define SWIGTYPE_p_wxPyPrintout swig_types[199]
2666 #define SWIGTYPE_p_wxPyScrolledWindow swig_types[200]
2667 #define SWIGTYPE_p_wxPySizer swig_types[201]
2668 #define SWIGTYPE_p_wxPyTaskBarIcon swig_types[202]
2669 #define SWIGTYPE_p_wxPyVListBox swig_types[203]
2670 #define SWIGTYPE_p_wxPyVScrolledWindow swig_types[204]
2671 #define SWIGTYPE_p_wxPyValidator swig_types[205]
2672 #define SWIGTYPE_p_wxPyWindow swig_types[206]
2673 #define SWIGTYPE_p_wxQueryLayoutInfoEvent swig_types[207]
2674 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[208]
2675 #define SWIGTYPE_p_wxRect swig_types[209]
2676 #define SWIGTYPE_p_wxSashEvent swig_types[210]
2677 #define SWIGTYPE_p_wxSashLayoutWindow swig_types[211]
2678 #define SWIGTYPE_p_wxSashWindow swig_types[212]
2679 #define SWIGTYPE_p_wxScrollEvent swig_types[213]
2680 #define SWIGTYPE_p_wxScrollWinEvent swig_types[214]
2681 #define SWIGTYPE_p_wxScrolledWindow swig_types[215]
2682 #define SWIGTYPE_p_wxSetCursorEvent swig_types[216]
2683 #define SWIGTYPE_p_wxShowEvent swig_types[217]
2684 #define SWIGTYPE_p_wxSimpleHtmlListBox swig_types[218]
2685 #define SWIGTYPE_p_wxSingleChoiceDialog swig_types[219]
2686 #define SWIGTYPE_p_wxSize swig_types[220]
2687 #define SWIGTYPE_p_wxSizeEvent swig_types[221]
2688 #define SWIGTYPE_p_wxSizer swig_types[222]
2689 #define SWIGTYPE_p_wxSizerItem swig_types[223]
2690 #define SWIGTYPE_p_wxSplashScreen swig_types[224]
2691 #define SWIGTYPE_p_wxSplashScreenWindow swig_types[225]
2692 #define SWIGTYPE_p_wxSplitterEvent swig_types[226]
2693 #define SWIGTYPE_p_wxSplitterWindow swig_types[227]
2694 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[228]
2695 #define SWIGTYPE_p_wxStatusBar swig_types[229]
2696 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[230]
2697 #define SWIGTYPE_p_wxString swig_types[231]
2698 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[232]
2699 #define SWIGTYPE_p_wxTGAHandler swig_types[233]
2700 #define SWIGTYPE_p_wxTIFFHandler swig_types[234]
2701 #define SWIGTYPE_p_wxTaskBarIconEvent swig_types[235]
2702 #define SWIGTYPE_p_wxTextEntryDialog swig_types[236]
2703 #define SWIGTYPE_p_wxTipWindow swig_types[237]
2704 #define SWIGTYPE_p_wxTopLevelWindow swig_types[238]
2705 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[239]
2706 #define SWIGTYPE_p_wxValidator swig_types[240]
2707 #define SWIGTYPE_p_wxWindow swig_types[241]
2708 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[242]
2709 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[243]
2710 #define SWIGTYPE_p_wxXPMHandler swig_types[244]
2711 static swig_type_info
*swig_types
[246];
2712 static swig_module_info swig_module
= {swig_types
, 245, 0, 0, 0, 0};
2713 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2714 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
2716 /* -------- TYPES TABLE (END) -------- */
2718 #if (PY_VERSION_HEX <= 0x02000000)
2719 # if !defined(SWIG_PYTHON_CLASSIC)
2720 # error "This python version requires to use swig with the '-classic' option"
2723 #if (PY_VERSION_HEX <= 0x02020000)
2724 # error "This python version requires to use swig with the '-nomodern' option"
2726 #if (PY_VERSION_HEX <= 0x02020000)
2727 # error "This python version requires to use swig with the '-nomodernargs' option"
2730 # error "This python version requires to use swig with the '-nofastunpack' option"
2733 /*-----------------------------------------------
2735 ------------------------------------------------*/
2736 #define SWIG_init init_aui
2738 #define SWIG_name "_aui"
2740 #define SWIGVERSION 0x010329
2743 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
2744 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))
2747 #include <stdexcept>
2751 class PyObject_ptr
{
2756 PyObject_ptr() :_obj(0)
2760 PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
)
2765 PyObject_ptr(PyObject
*obj
, bool initial_ref
= true) :_obj(obj
)
2767 if (initial_ref
) Py_XINCREF(_obj
);
2770 PyObject_ptr
& operator=(const PyObject_ptr
& item
)
2772 Py_XINCREF(item
._obj
);
2783 operator PyObject
*() const
2788 PyObject
*operator->() const
2797 struct PyObject_var
: PyObject_ptr
{
2798 PyObject_var(PyObject
* obj
= 0) : PyObject_ptr(obj
, false) { }
2800 PyObject_var
& operator = (PyObject
* obj
)
2810 #include "wx/wxPython/wxPython.h"
2811 #include "wx/wxPython/pyclasses.h"
2812 #include <wx/aui/aui.h>
2815 #define SWIG_From_long PyInt_FromLong
2818 SWIGINTERNINLINE PyObject
*
2819 SWIG_From_int (int value
)
2821 return SWIG_From_long (value
);
2827 # define LLONG_MIN LONG_LONG_MIN
2830 # define LLONG_MAX LONG_LONG_MAX
2833 # define ULLONG_MAX ULONG_LONG_MAX
2838 SWIG_AsVal_long (PyObject
* obj
, long* val
)
2840 if (PyNumber_Check(obj
)) {
2841 if (val
) *val
= PyInt_AsLong(obj
);
2844 return SWIG_TypeError
;
2849 SWIG_AsVal_int (PyObject
* obj
, int *val
)
2852 int res
= SWIG_AsVal_long (obj
, &v
);
2853 if (SWIG_IsOK(res
)) {
2854 if ((v
< INT_MIN
|| v
> INT_MAX
)) {
2855 return SWIG_OverflowError
;
2857 if (val
) *val
= static_cast< int >(v
);
2865 SWIG_AsVal_bool (PyObject
*obj
, bool *val
)
2867 if (obj
== Py_True
) {
2868 if (val
) *val
= true;
2870 } else if (obj
== Py_False
) {
2871 if (val
) *val
= false;
2875 int res
= SWIG_AddCast(SWIG_AsVal_long (obj
, val
? &v
: 0));
2876 if (SWIG_IsOK(res
) && val
) *val
= v
? true : false;
2883 SWIG_AsVal_double (PyObject
*obj
, double* val
)
2885 if (PyNumber_Check(obj
)) {
2886 if (val
) *val
= PyFloat_AsDouble(obj
);
2889 return SWIG_TypeError
;
2892 SWIGINTERN
void delete_wxAuiDockInfo(wxAuiDockInfo
*self
){}
2893 SWIGINTERN
void delete_wxAuiDockUIPart(wxAuiDockUIPart
*self
){}
2894 SWIGINTERN
void delete_wxAuiPaneButton(wxAuiPaneButton
*self
){}
2897 SWIG_AsVal_unsigned_SS_long (PyObject
* obj
, unsigned long* val
)
2900 if (SWIG_AsVal_long(obj
, &v
) && v
< 0) {
2901 return SWIG_TypeError
;
2904 *val
= (unsigned long)v
;
2909 SWIGINTERNINLINE
int
2910 SWIG_AsVal_size_t (PyObject
* obj
, size_t *val
)
2913 int res
= SWIG_AsVal_unsigned_SS_long (obj
, val
? &v
: 0);
2914 if (SWIG_IsOK(res
) && val
) *val
= static_cast< size_t >(v
);
2919 SWIGINTERNINLINE PyObject
*
2920 SWIG_From_unsigned_SS_long (unsigned long value
)
2922 return (value
> LONG_MAX
) ?
2923 PyLong_FromUnsignedLong(value
) : PyInt_FromLong(static_cast< long >(value
));
2927 SWIGINTERNINLINE PyObject
*
2928 SWIG_From_size_t (size_t value
)
2930 return SWIG_From_unsigned_SS_long (static_cast< unsigned long >(value
));
2933 SWIGINTERN wxAuiNotebook
*wxAuiMDIParentFrame__GetNotebook(wxAuiMDIParentFrame
const *self
){
2934 return self
->GetNotebook();
2936 SWIGINTERN wxAuiMDIChildFrame
*wxAuiMDIParentFrame__GetActiveChild(wxAuiMDIParentFrame
const *self
){
2937 return self
->GetActiveChild();
2939 SWIGINTERN wxAuiMDIClientWindow
*wxAuiMDIParentFrame__GetClientWindow(wxAuiMDIParentFrame
const *self
){
2940 return self
->GetClientWindow();
2943 // A wxDocArt class that knows how to forward virtuals to Python methods
2944 class wxPyAuiDockArt
: public wxAuiDefaultDockArt
2947 wxPyAuiDockArt() : wxAuiDefaultDockArt() {}
2949 DEC_PYCALLBACK_INT_INT(GetMetric
);
2950 DEC_PYCALLBACK_VOID_INTINT(SetMetric
);
2951 DEC_PYCALLBACK__INTFONT(SetFont
);
2952 DEC_PYCALLBACK_FONT_INT(GetFont
);
2953 DEC_PYCALLBACK_COLOUR_INT(GetColour
);
2954 DEC_PYCALLBACK__INTCOLOUR(SetColour
);
2956 virtual void DrawSash(wxDC
& dc
,
2962 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2963 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawSash"))) {
2964 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2965 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2966 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2967 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiO)",
2968 odc
, owin
, orientation
, orect
));
2973 wxPyEndBlockThreads(blocked
);
2975 wxAuiDefaultDockArt::DrawSash(dc
, window
, orientation
, rect
);
2978 virtual void DrawBackground(wxDC
& dc
,
2984 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2985 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBackground"))) {
2986 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2987 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2988 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2989 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiO)",
2990 odc
, owin
, orientation
, orect
));
2995 wxPyEndBlockThreads(blocked
);
2997 wxAuiDefaultDockArt::DrawBackground(dc
, window
, orientation
, rect
);
3000 virtual void DrawCaption(wxDC
& dc
,
3002 const wxString
& text
,
3004 wxAuiPaneInfo
& pane
)
3007 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3008 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawCaption"))) {
3009 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3010 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3011 PyObject
* otext
= wx2PyString(text
);
3012 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3013 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
3014 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOOOO)",
3015 odc
, owin
, otext
, orect
, opane
));
3022 wxPyEndBlockThreads(blocked
);
3024 wxAuiDefaultDockArt::DrawCaption(dc
, window
, text
, rect
, pane
);
3027 virtual void DrawGripper(wxDC
& dc
,
3030 wxAuiPaneInfo
& pane
)
3033 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3034 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawGripper"))) {
3035 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3036 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3037 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3038 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
3039 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOOO)", odc
, owin
, orect
, opane
));
3044 wxPyEndBlockThreads(blocked
);
3046 wxAuiDefaultDockArt::DrawGripper(dc
, window
, rect
, pane
);
3049 virtual void DrawBorder(wxDC
& dc
,
3052 wxAuiPaneInfo
& pane
)
3055 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3056 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBorder"))) {
3057 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3058 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3059 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3060 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
3061 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOO)", odc
, orect
, opane
));
3067 wxPyEndBlockThreads(blocked
);
3069 wxAuiDefaultDockArt::DrawBorder(dc
, window
, rect
, pane
);
3072 virtual void DrawPaneButton(wxDC
& dc
,
3077 wxAuiPaneInfo
& pane
)
3080 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3081 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawPaneButton"))) {
3082 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3083 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3084 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3085 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
3086 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiIOO)",
3087 odc
, owin
, button
, button_state
,
3094 wxPyEndBlockThreads(blocked
);
3096 wxAuiDefaultDockArt::DrawPaneButton(dc
, window
, button
, button_state
, rect
, pane
);
3103 IMP_PYCALLBACK_INT_INT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, GetMetric
);
3104 IMP_PYCALLBACK_VOID_INTINT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, SetMetric
);
3105 IMP_PYCALLBACK__INTFONT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, SetFont
);
3106 IMP_PYCALLBACK_FONT_INT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, GetFont
);
3107 IMP_PYCALLBACK_COLOUR_INT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, GetColour
);
3108 IMP_PYCALLBACK__INTCOLOUR(wxPyAuiDockArt
, wxAuiDefaultDockArt
, SetColour
);
3112 // A wxTabArt class that knows how to forward virtuals to Python methods
3113 class wxPyAuiTabArt
: public wxAuiDefaultTabArt
3116 wxPyAuiTabArt() : wxAuiDefaultTabArt() {}
3119 virtual void DrawBackground( wxDC
& dc
,
3121 const wxRect
& rect
)
3124 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3125 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBackground"))) {
3126 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3127 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3128 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3129 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOO)", odc
, ownd
, orect
));
3134 wxPyEndBlockThreads(blocked
);
3136 wxAuiDefaultTabArt::DrawBackground(dc
, wnd
, rect
);
3139 virtual void DrawTab( wxDC
& dc
,
3141 const wxAuiNotebookPage
& pane
,
3142 const wxRect
& in_rect
,
3143 int close_button_state
,
3144 wxRect
* out_tab_rect
,
3145 wxRect
* out_button_rect
,
3149 const char* errmsg
= "DrawTab should return a sequence containing (tab_rect, button_rect, x_extent)";
3150 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3151 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawTab"))) {
3152 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3153 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3154 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiNotebookPage"), 0);
3155 PyObject
* orect
= wxPyConstructObject((void*)&in_rect
, wxT("wxRect"), 0);
3157 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue(
3159 odc
, ownd
, orect
, opane
,
3160 close_button_state
));
3162 if (PySequence_Check(ro
) && PyObject_Length(ro
) == 3) {
3163 PyObject
* o1
= PySequence_GetItem(ro
, 0);
3164 PyObject
* o2
= PySequence_GetItem(ro
, 1);
3165 PyObject
* o3
= PySequence_GetItem(ro
, 2);
3166 if (!wxRect_helper(o1
, &out_tab_rect
))
3167 PyErr_SetString(PyExc_TypeError
, errmsg
);
3168 else if (!wxRect_helper(o2
, &out_button_rect
))
3169 PyErr_SetString(PyExc_TypeError
, errmsg
);
3170 else if (!PyInt_Check(o3
))
3171 PyErr_SetString(PyExc_TypeError
, errmsg
);
3173 *x_extent
= PyInt_AsLong(o3
);
3180 PyErr_SetString(PyExc_TypeError
, errmsg
);
3190 wxPyEndBlockThreads(blocked
);
3192 wxAuiDefaultTabArt::DrawTab(dc
, wnd
, pane
, in_rect
, close_button_state
, out_tab_rect
, out_button_rect
, x_extent
);
3196 virtual void DrawButton( wxDC
& dc
,
3198 const wxRect
& in_rect
,
3205 const char* errmsg
= "DrawButton should return a wxRect";
3206 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3207 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawButton"))) {
3208 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3209 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3210 PyObject
* orect
= wxPyConstructObject((void*)&in_rect
, wxT("wxRect"), 0);
3212 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("(OOOiiiO)", odc
, ownd
, orect
,
3213 bitmap_id
, button_state
, orientation
));
3215 if (!wxRect_helper(ro
, &out_rect
))
3216 PyErr_SetString(PyExc_TypeError
, errmsg
);
3224 wxPyEndBlockThreads(blocked
);
3226 wxAuiDefaultTabArt::DrawButton(dc
, wnd
, in_rect
, bitmap_id
, button_state
, orientation
, out_rect
);
3230 virtual wxSize
GetTabSize( wxDC
& dc
,
3232 const wxString
& caption
,
3233 const wxBitmap
& bitmap
,
3235 int close_button_state
,
3239 wxSize rv
, *prv
= &rv
;
3240 const char* errmsg
= "GetTabSize should return a sequence containing (size, x_extent)";
3241 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3242 if ((found
= wxPyCBH_findCallback(m_myInst
, "GetTabSize"))) {
3243 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3244 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3245 PyObject
* otext
= wx2PyString(caption
);
3246 PyObject
* obmp
= wxPyMake_wxObject((wxObject
*)&bitmap
, false);
3248 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue(
3249 "(OOOOii)", odc
, ownd
, otext
, obmp
, (int)active
, close_button_state
));
3251 if (PySequence_Check(ro
) && PyObject_Length(ro
) == 2) {
3252 PyObject
* o1
= PySequence_GetItem(ro
, 0);
3253 PyObject
* o2
= PySequence_GetItem(ro
, 1);
3254 if (!wxSize_helper(o1
, &prv
))
3255 PyErr_SetString(PyExc_TypeError
, errmsg
);
3256 else if (!PyInt_Check(o2
))
3257 PyErr_SetString(PyExc_TypeError
, errmsg
);
3259 *x_extent
= PyInt_AsLong(o2
);
3265 PyErr_SetString(PyExc_TypeError
, errmsg
);
3275 wxPyEndBlockThreads(blocked
);
3277 rv
= wxAuiDefaultTabArt::GetTabSize(dc
, wnd
, caption
, bitmap
, active
, close_button_state
, x_extent
);
3282 // virtual int ShowDropDown(
3284 // const wxAuiNotebookPageArray& items,
3287 // virtual int GetIndentSize();
3289 // virtual int GetBestTabCtrlSize(wxWindow* wnd,
3290 // const wxAuiNotebookPageArray& pages,
3291 // const wxSize& required_bmp_size);
3292 // virtual wxAuiTabArt* Clone();
3293 // virtual void SetFlags(unsigned int flags);
3294 // virtual void SetSizingInfo(const wxSize& tab_ctrl_size,
3295 // size_t tab_count);
3296 // virtual int GetIndentSize();
3300 DEC_PYCALLBACK__FONT(SetNormalFont
);
3301 DEC_PYCALLBACK__FONT(SetSelectedFont
);
3302 DEC_PYCALLBACK__FONT(SetMeasuringFont
);
3303 // DEC_PYCALLBACK_INT_WIN(GetBestTabCtrlSize);
3309 IMP_PYCALLBACK__FONT(wxPyAuiTabArt
, wxAuiDefaultTabArt
, SetNormalFont
);
3310 IMP_PYCALLBACK__FONT(wxPyAuiTabArt
, wxAuiDefaultTabArt
, SetSelectedFont
);
3311 IMP_PYCALLBACK__FONT(wxPyAuiTabArt
, wxAuiDefaultTabArt
, SetMeasuringFont
);
3312 //IMP_PYCALLBACK_INT_WIN(wxPyAuiTabArt, wxAuiDefaultTabArt, GetBestTabCtrlSize);
3317 SWIGINTERN
int AuiNullDockInfo_set(PyObject
*_val
) {
3320 int res
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxAuiDockInfo
, 0 | 0);
3321 if (!SWIG_IsOK(res
)) {
3322 SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxAuiNullDockInfo""' of type '""wxAuiDockInfo""'");
3325 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxAuiNullDockInfo""' of type '""wxAuiDockInfo""'");
3327 wxAuiDockInfo
* temp
;
3328 temp
= reinterpret_cast< wxAuiDockInfo
* >(argp
);
3329 wxAuiNullDockInfo
= *temp
;
3330 if (SWIG_IsNewObj(res
)) delete temp
;
3339 SWIGINTERN PyObject
*AuiNullDockInfo_get(void) {
3340 PyObject
*pyobj
= 0;
3342 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxAuiNullDockInfo
), SWIGTYPE_p_wxAuiDockInfo
, 0 );
3347 SWIGINTERN
int AuiNullPaneInfo_set(PyObject
*_val
) {
3350 int res
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
3351 if (!SWIG_IsOK(res
)) {
3352 SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxAuiNullPaneInfo""' of type '""wxAuiPaneInfo""'");
3355 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxAuiNullPaneInfo""' of type '""wxAuiPaneInfo""'");
3357 wxAuiPaneInfo
* temp
;
3358 temp
= reinterpret_cast< wxAuiPaneInfo
* >(argp
);
3359 wxAuiNullPaneInfo
= *temp
;
3360 if (SWIG_IsNewObj(res
)) delete temp
;
3369 SWIGINTERN PyObject
*AuiNullPaneInfo_get(void) {
3370 PyObject
*pyobj
= 0;
3372 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxAuiNullPaneInfo
), SWIGTYPE_p_wxAuiPaneInfo
, 0 );
3377 SWIGINTERN PyObject
*_wrap_new_AuiPaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3378 PyObject
*resultobj
= 0;
3379 wxAuiPaneInfo
*result
= 0 ;
3381 if (!SWIG_Python_UnpackTuple(args
,"new_AuiPaneInfo",0,0,0)) SWIG_fail
;
3383 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3384 result
= (wxAuiPaneInfo
*)new wxAuiPaneInfo();
3385 wxPyEndAllowThreads(__tstate
);
3386 if (PyErr_Occurred()) SWIG_fail
;
3388 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_NEW
| 0 );
3395 SWIGINTERN PyObject
*_wrap_delete_AuiPaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3396 PyObject
*resultobj
= 0;
3397 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3400 PyObject
*swig_obj
[1] ;
3402 if (!args
) SWIG_fail
;
3404 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
3405 if (!SWIG_IsOK(res1
)) {
3406 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiPaneInfo" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
3408 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3410 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3413 wxPyEndAllowThreads(__tstate
);
3414 if (PyErr_Occurred()) SWIG_fail
;
3416 resultobj
= SWIG_Py_Void();
3423 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_SafeSet(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3424 PyObject
*resultobj
= 0;
3425 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3426 wxAuiPaneInfo arg2
;
3431 PyObject
* obj0
= 0 ;
3432 PyObject
* obj1
= 0 ;
3433 char * kwnames
[] = {
3434 (char *) "self",(char *) "source", NULL
3437 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_SafeSet",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3438 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3439 if (!SWIG_IsOK(res1
)) {
3440 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_SafeSet" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
3442 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3444 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
3445 if (!SWIG_IsOK(res2
)) {
3446 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_SafeSet" "', expected argument " "2"" of type '" "wxAuiPaneInfo""'");
3449 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiPaneInfo_SafeSet" "', expected argument " "2"" of type '" "wxAuiPaneInfo""'");
3451 wxAuiPaneInfo
* temp
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
3453 if (SWIG_IsNewObj(res2
)) delete temp
;
3457 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3458 (arg1
)->SafeSet(arg2
);
3459 wxPyEndAllowThreads(__tstate
);
3460 if (PyErr_Occurred()) SWIG_fail
;
3462 resultobj
= SWIG_Py_Void();
3469 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3470 PyObject
*resultobj
= 0;
3471 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3475 PyObject
*swig_obj
[1] ;
3477 if (!args
) SWIG_fail
;
3479 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3480 if (!SWIG_IsOK(res1
)) {
3481 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsOk" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3483 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3485 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3486 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsOk();
3487 wxPyEndAllowThreads(__tstate
);
3488 if (PyErr_Occurred()) SWIG_fail
;
3491 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3499 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsFixed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3500 PyObject
*resultobj
= 0;
3501 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3505 PyObject
*swig_obj
[1] ;
3507 if (!args
) SWIG_fail
;
3509 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3510 if (!SWIG_IsOK(res1
)) {
3511 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsFixed" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3513 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3515 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3516 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsFixed();
3517 wxPyEndAllowThreads(__tstate
);
3518 if (PyErr_Occurred()) SWIG_fail
;
3521 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3529 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsResizable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3530 PyObject
*resultobj
= 0;
3531 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3535 PyObject
*swig_obj
[1] ;
3537 if (!args
) SWIG_fail
;
3539 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3540 if (!SWIG_IsOK(res1
)) {
3541 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsResizable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3543 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3545 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3546 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsResizable();
3547 wxPyEndAllowThreads(__tstate
);
3548 if (PyErr_Occurred()) SWIG_fail
;
3551 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3559 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsShown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3560 PyObject
*resultobj
= 0;
3561 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3565 PyObject
*swig_obj
[1] ;
3567 if (!args
) SWIG_fail
;
3569 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3570 if (!SWIG_IsOK(res1
)) {
3571 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsShown" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3573 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3575 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3576 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsShown();
3577 wxPyEndAllowThreads(__tstate
);
3578 if (PyErr_Occurred()) SWIG_fail
;
3581 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3589 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsFloating(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3590 PyObject
*resultobj
= 0;
3591 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3595 PyObject
*swig_obj
[1] ;
3597 if (!args
) SWIG_fail
;
3599 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3600 if (!SWIG_IsOK(res1
)) {
3601 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsFloating" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3603 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3605 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3606 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsFloating();
3607 wxPyEndAllowThreads(__tstate
);
3608 if (PyErr_Occurred()) SWIG_fail
;
3611 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3619 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsDocked(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3620 PyObject
*resultobj
= 0;
3621 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3625 PyObject
*swig_obj
[1] ;
3627 if (!args
) SWIG_fail
;
3629 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3630 if (!SWIG_IsOK(res1
)) {
3631 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsDocked" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3633 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3635 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3636 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsDocked();
3637 wxPyEndAllowThreads(__tstate
);
3638 if (PyErr_Occurred()) SWIG_fail
;
3641 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3649 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsToolbar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3650 PyObject
*resultobj
= 0;
3651 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3655 PyObject
*swig_obj
[1] ;
3657 if (!args
) SWIG_fail
;
3659 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3660 if (!SWIG_IsOK(res1
)) {
3661 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsToolbar" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3663 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3665 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3666 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsToolbar();
3667 wxPyEndAllowThreads(__tstate
);
3668 if (PyErr_Occurred()) SWIG_fail
;
3671 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3679 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsTopDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3680 PyObject
*resultobj
= 0;
3681 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3685 PyObject
*swig_obj
[1] ;
3687 if (!args
) SWIG_fail
;
3689 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3690 if (!SWIG_IsOK(res1
)) {
3691 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsTopDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3693 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3695 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3696 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsTopDockable();
3697 wxPyEndAllowThreads(__tstate
);
3698 if (PyErr_Occurred()) SWIG_fail
;
3701 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3709 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsBottomDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3710 PyObject
*resultobj
= 0;
3711 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3715 PyObject
*swig_obj
[1] ;
3717 if (!args
) SWIG_fail
;
3719 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3720 if (!SWIG_IsOK(res1
)) {
3721 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsBottomDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3723 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3725 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3726 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsBottomDockable();
3727 wxPyEndAllowThreads(__tstate
);
3728 if (PyErr_Occurred()) SWIG_fail
;
3731 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3739 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsLeftDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3740 PyObject
*resultobj
= 0;
3741 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3745 PyObject
*swig_obj
[1] ;
3747 if (!args
) SWIG_fail
;
3749 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3750 if (!SWIG_IsOK(res1
)) {
3751 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsLeftDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3753 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3755 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3756 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsLeftDockable();
3757 wxPyEndAllowThreads(__tstate
);
3758 if (PyErr_Occurred()) SWIG_fail
;
3761 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3769 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsRightDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3770 PyObject
*resultobj
= 0;
3771 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3775 PyObject
*swig_obj
[1] ;
3777 if (!args
) SWIG_fail
;
3779 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3780 if (!SWIG_IsOK(res1
)) {
3781 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsRightDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3783 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3785 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3786 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsRightDockable();
3787 wxPyEndAllowThreads(__tstate
);
3788 if (PyErr_Occurred()) SWIG_fail
;
3791 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3799 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsFloatable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3800 PyObject
*resultobj
= 0;
3801 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3805 PyObject
*swig_obj
[1] ;
3807 if (!args
) SWIG_fail
;
3809 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3810 if (!SWIG_IsOK(res1
)) {
3811 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsFloatable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3813 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3815 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3816 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsFloatable();
3817 wxPyEndAllowThreads(__tstate
);
3818 if (PyErr_Occurred()) SWIG_fail
;
3821 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3829 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsMovable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3830 PyObject
*resultobj
= 0;
3831 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3835 PyObject
*swig_obj
[1] ;
3837 if (!args
) SWIG_fail
;
3839 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3840 if (!SWIG_IsOK(res1
)) {
3841 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsMovable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3843 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3845 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3846 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsMovable();
3847 wxPyEndAllowThreads(__tstate
);
3848 if (PyErr_Occurred()) SWIG_fail
;
3851 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3859 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsDestroyOnClose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3860 PyObject
*resultobj
= 0;
3861 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3865 PyObject
*swig_obj
[1] ;
3867 if (!args
) SWIG_fail
;
3869 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3870 if (!SWIG_IsOK(res1
)) {
3871 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsDestroyOnClose" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3873 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3875 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3876 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsDestroyOnClose();
3877 wxPyEndAllowThreads(__tstate
);
3878 if (PyErr_Occurred()) SWIG_fail
;
3881 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3889 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsMaximized(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3890 PyObject
*resultobj
= 0;
3891 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3895 PyObject
*swig_obj
[1] ;
3897 if (!args
) SWIG_fail
;
3899 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3900 if (!SWIG_IsOK(res1
)) {
3901 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsMaximized" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3903 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3905 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3906 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsMaximized();
3907 wxPyEndAllowThreads(__tstate
);
3908 if (PyErr_Occurred()) SWIG_fail
;
3911 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3919 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasCaption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3920 PyObject
*resultobj
= 0;
3921 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3925 PyObject
*swig_obj
[1] ;
3927 if (!args
) SWIG_fail
;
3929 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3930 if (!SWIG_IsOK(res1
)) {
3931 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasCaption" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3933 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3935 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3936 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasCaption();
3937 wxPyEndAllowThreads(__tstate
);
3938 if (PyErr_Occurred()) SWIG_fail
;
3941 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3949 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasGripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3950 PyObject
*resultobj
= 0;
3951 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3955 PyObject
*swig_obj
[1] ;
3957 if (!args
) SWIG_fail
;
3959 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3960 if (!SWIG_IsOK(res1
)) {
3961 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasGripper" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3963 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3965 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3966 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasGripper();
3967 wxPyEndAllowThreads(__tstate
);
3968 if (PyErr_Occurred()) SWIG_fail
;
3971 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3979 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3980 PyObject
*resultobj
= 0;
3981 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3985 PyObject
*swig_obj
[1] ;
3987 if (!args
) SWIG_fail
;
3989 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3990 if (!SWIG_IsOK(res1
)) {
3991 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasBorder" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3993 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3995 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3996 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasBorder();
3997 wxPyEndAllowThreads(__tstate
);
3998 if (PyErr_Occurred()) SWIG_fail
;
4001 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4009 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasCloseButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4010 PyObject
*resultobj
= 0;
4011 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4015 PyObject
*swig_obj
[1] ;
4017 if (!args
) SWIG_fail
;
4019 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4020 if (!SWIG_IsOK(res1
)) {
4021 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasCloseButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4023 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4025 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4026 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasCloseButton();
4027 wxPyEndAllowThreads(__tstate
);
4028 if (PyErr_Occurred()) SWIG_fail
;
4031 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4039 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasMaximizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4040 PyObject
*resultobj
= 0;
4041 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4045 PyObject
*swig_obj
[1] ;
4047 if (!args
) SWIG_fail
;
4049 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4050 if (!SWIG_IsOK(res1
)) {
4051 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasMaximizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4053 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4055 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4056 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasMaximizeButton();
4057 wxPyEndAllowThreads(__tstate
);
4058 if (PyErr_Occurred()) SWIG_fail
;
4061 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4069 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasMinimizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4070 PyObject
*resultobj
= 0;
4071 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4075 PyObject
*swig_obj
[1] ;
4077 if (!args
) SWIG_fail
;
4079 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4080 if (!SWIG_IsOK(res1
)) {
4081 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasMinimizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4083 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4085 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4086 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasMinimizeButton();
4087 wxPyEndAllowThreads(__tstate
);
4088 if (PyErr_Occurred()) SWIG_fail
;
4091 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4099 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasPinButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4100 PyObject
*resultobj
= 0;
4101 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4105 PyObject
*swig_obj
[1] ;
4107 if (!args
) SWIG_fail
;
4109 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4110 if (!SWIG_IsOK(res1
)) {
4111 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasPinButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4113 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4115 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4116 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasPinButton();
4117 wxPyEndAllowThreads(__tstate
);
4118 if (PyErr_Occurred()) SWIG_fail
;
4121 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4129 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasGripperTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4130 PyObject
*resultobj
= 0;
4131 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4135 PyObject
*swig_obj
[1] ;
4137 if (!args
) SWIG_fail
;
4139 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4140 if (!SWIG_IsOK(res1
)) {
4141 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasGripperTop" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4143 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4145 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4146 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasGripperTop();
4147 wxPyEndAllowThreads(__tstate
);
4148 if (PyErr_Occurred()) SWIG_fail
;
4151 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4159 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Window(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4160 PyObject
*resultobj
= 0;
4161 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4162 wxWindow
*arg2
= (wxWindow
*) 0 ;
4163 wxAuiPaneInfo
*result
= 0 ;
4168 PyObject
* obj0
= 0 ;
4169 PyObject
* obj1
= 0 ;
4170 char * kwnames
[] = {
4171 (char *) "self",(char *) "w", NULL
4174 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Window",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4175 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4176 if (!SWIG_IsOK(res1
)) {
4177 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Window" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4179 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4180 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
4181 if (!SWIG_IsOK(res2
)) {
4182 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_Window" "', expected argument " "2"" of type '" "wxWindow *""'");
4184 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
4186 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4188 wxAuiPaneInfo
&_result_ref
= (arg1
)->Window(arg2
);
4189 result
= (wxAuiPaneInfo
*) &_result_ref
;
4191 wxPyEndAllowThreads(__tstate
);
4192 if (PyErr_Occurred()) SWIG_fail
;
4195 resultobj
= obj0
; Py_INCREF(resultobj
);
4203 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Name(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4204 PyObject
*resultobj
= 0;
4205 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4206 wxString
*arg2
= 0 ;
4207 wxAuiPaneInfo
*result
= 0 ;
4210 bool temp2
= false ;
4211 PyObject
* obj0
= 0 ;
4212 PyObject
* obj1
= 0 ;
4213 char * kwnames
[] = {
4214 (char *) "self",(char *) "n", NULL
4217 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Name",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4218 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4219 if (!SWIG_IsOK(res1
)) {
4220 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Name" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4222 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4224 arg2
= wxString_in_helper(obj1
);
4225 if (arg2
== NULL
) SWIG_fail
;
4229 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4231 wxAuiPaneInfo
&_result_ref
= (arg1
)->Name((wxString
const &)*arg2
);
4232 result
= (wxAuiPaneInfo
*) &_result_ref
;
4234 wxPyEndAllowThreads(__tstate
);
4235 if (PyErr_Occurred()) SWIG_fail
;
4238 resultobj
= obj0
; Py_INCREF(resultobj
);
4254 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Caption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4255 PyObject
*resultobj
= 0;
4256 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4257 wxString
*arg2
= 0 ;
4258 wxAuiPaneInfo
*result
= 0 ;
4261 bool temp2
= false ;
4262 PyObject
* obj0
= 0 ;
4263 PyObject
* obj1
= 0 ;
4264 char * kwnames
[] = {
4265 (char *) "self",(char *) "c", NULL
4268 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Caption",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4269 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4270 if (!SWIG_IsOK(res1
)) {
4271 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Caption" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4273 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4275 arg2
= wxString_in_helper(obj1
);
4276 if (arg2
== NULL
) SWIG_fail
;
4280 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4282 wxAuiPaneInfo
&_result_ref
= (arg1
)->Caption((wxString
const &)*arg2
);
4283 result
= (wxAuiPaneInfo
*) &_result_ref
;
4285 wxPyEndAllowThreads(__tstate
);
4286 if (PyErr_Occurred()) SWIG_fail
;
4289 resultobj
= obj0
; Py_INCREF(resultobj
);
4305 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Left(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4306 PyObject
*resultobj
= 0;
4307 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4308 wxAuiPaneInfo
*result
= 0 ;
4311 PyObject
*swig_obj
[1] ;
4313 if (!args
) SWIG_fail
;
4315 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4316 if (!SWIG_IsOK(res1
)) {
4317 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Left" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4319 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4321 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4323 wxAuiPaneInfo
&_result_ref
= (arg1
)->Left();
4324 result
= (wxAuiPaneInfo
*) &_result_ref
;
4326 wxPyEndAllowThreads(__tstate
);
4327 if (PyErr_Occurred()) SWIG_fail
;
4330 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4338 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Right(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4339 PyObject
*resultobj
= 0;
4340 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4341 wxAuiPaneInfo
*result
= 0 ;
4344 PyObject
*swig_obj
[1] ;
4346 if (!args
) SWIG_fail
;
4348 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4349 if (!SWIG_IsOK(res1
)) {
4350 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Right" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4352 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4354 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4356 wxAuiPaneInfo
&_result_ref
= (arg1
)->Right();
4357 result
= (wxAuiPaneInfo
*) &_result_ref
;
4359 wxPyEndAllowThreads(__tstate
);
4360 if (PyErr_Occurred()) SWIG_fail
;
4363 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4371 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Top(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4372 PyObject
*resultobj
= 0;
4373 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4374 wxAuiPaneInfo
*result
= 0 ;
4377 PyObject
*swig_obj
[1] ;
4379 if (!args
) SWIG_fail
;
4381 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4382 if (!SWIG_IsOK(res1
)) {
4383 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Top" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4385 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4387 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4389 wxAuiPaneInfo
&_result_ref
= (arg1
)->Top();
4390 result
= (wxAuiPaneInfo
*) &_result_ref
;
4392 wxPyEndAllowThreads(__tstate
);
4393 if (PyErr_Occurred()) SWIG_fail
;
4396 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4404 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Bottom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4405 PyObject
*resultobj
= 0;
4406 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4407 wxAuiPaneInfo
*result
= 0 ;
4410 PyObject
*swig_obj
[1] ;
4412 if (!args
) SWIG_fail
;
4414 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4415 if (!SWIG_IsOK(res1
)) {
4416 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Bottom" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4418 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4420 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4422 wxAuiPaneInfo
&_result_ref
= (arg1
)->Bottom();
4423 result
= (wxAuiPaneInfo
*) &_result_ref
;
4425 wxPyEndAllowThreads(__tstate
);
4426 if (PyErr_Occurred()) SWIG_fail
;
4429 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4437 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Center(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4438 PyObject
*resultobj
= 0;
4439 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4440 wxAuiPaneInfo
*result
= 0 ;
4443 PyObject
*swig_obj
[1] ;
4445 if (!args
) SWIG_fail
;
4447 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4448 if (!SWIG_IsOK(res1
)) {
4449 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Center" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4451 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4453 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4455 wxAuiPaneInfo
&_result_ref
= (arg1
)->Center();
4456 result
= (wxAuiPaneInfo
*) &_result_ref
;
4458 wxPyEndAllowThreads(__tstate
);
4459 if (PyErr_Occurred()) SWIG_fail
;
4462 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4470 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Centre(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4471 PyObject
*resultobj
= 0;
4472 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4473 wxAuiPaneInfo
*result
= 0 ;
4476 PyObject
*swig_obj
[1] ;
4478 if (!args
) SWIG_fail
;
4480 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4481 if (!SWIG_IsOK(res1
)) {
4482 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Centre" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4484 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4486 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4488 wxAuiPaneInfo
&_result_ref
= (arg1
)->Centre();
4489 result
= (wxAuiPaneInfo
*) &_result_ref
;
4491 wxPyEndAllowThreads(__tstate
);
4492 if (PyErr_Occurred()) SWIG_fail
;
4495 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4503 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Direction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4504 PyObject
*resultobj
= 0;
4505 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4507 wxAuiPaneInfo
*result
= 0 ;
4512 PyObject
* obj0
= 0 ;
4513 PyObject
* obj1
= 0 ;
4514 char * kwnames
[] = {
4515 (char *) "self",(char *) "direction", NULL
4518 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Direction",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4519 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4520 if (!SWIG_IsOK(res1
)) {
4521 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Direction" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4523 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4524 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4525 if (!SWIG_IsOK(ecode2
)) {
4526 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Direction" "', expected argument " "2"" of type '" "int""'");
4528 arg2
= static_cast< int >(val2
);
4530 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4532 wxAuiPaneInfo
&_result_ref
= (arg1
)->Direction(arg2
);
4533 result
= (wxAuiPaneInfo
*) &_result_ref
;
4535 wxPyEndAllowThreads(__tstate
);
4536 if (PyErr_Occurred()) SWIG_fail
;
4539 resultobj
= obj0
; Py_INCREF(resultobj
);
4547 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Layer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4548 PyObject
*resultobj
= 0;
4549 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4551 wxAuiPaneInfo
*result
= 0 ;
4556 PyObject
* obj0
= 0 ;
4557 PyObject
* obj1
= 0 ;
4558 char * kwnames
[] = {
4559 (char *) "self",(char *) "layer", NULL
4562 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Layer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4563 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4564 if (!SWIG_IsOK(res1
)) {
4565 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Layer" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4567 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4568 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4569 if (!SWIG_IsOK(ecode2
)) {
4570 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Layer" "', expected argument " "2"" of type '" "int""'");
4572 arg2
= static_cast< int >(val2
);
4574 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4576 wxAuiPaneInfo
&_result_ref
= (arg1
)->Layer(arg2
);
4577 result
= (wxAuiPaneInfo
*) &_result_ref
;
4579 wxPyEndAllowThreads(__tstate
);
4580 if (PyErr_Occurred()) SWIG_fail
;
4583 resultobj
= obj0
; Py_INCREF(resultobj
);
4591 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Row(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4592 PyObject
*resultobj
= 0;
4593 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4595 wxAuiPaneInfo
*result
= 0 ;
4600 PyObject
* obj0
= 0 ;
4601 PyObject
* obj1
= 0 ;
4602 char * kwnames
[] = {
4603 (char *) "self",(char *) "row", NULL
4606 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Row",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4607 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4608 if (!SWIG_IsOK(res1
)) {
4609 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Row" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4611 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4612 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4613 if (!SWIG_IsOK(ecode2
)) {
4614 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Row" "', expected argument " "2"" of type '" "int""'");
4616 arg2
= static_cast< int >(val2
);
4618 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4620 wxAuiPaneInfo
&_result_ref
= (arg1
)->Row(arg2
);
4621 result
= (wxAuiPaneInfo
*) &_result_ref
;
4623 wxPyEndAllowThreads(__tstate
);
4624 if (PyErr_Occurred()) SWIG_fail
;
4627 resultobj
= obj0
; Py_INCREF(resultobj
);
4635 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Position(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4636 PyObject
*resultobj
= 0;
4637 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4639 wxAuiPaneInfo
*result
= 0 ;
4644 PyObject
* obj0
= 0 ;
4645 PyObject
* obj1
= 0 ;
4646 char * kwnames
[] = {
4647 (char *) "self",(char *) "pos", NULL
4650 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Position",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4651 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4652 if (!SWIG_IsOK(res1
)) {
4653 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Position" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4655 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4656 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4657 if (!SWIG_IsOK(ecode2
)) {
4658 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Position" "', expected argument " "2"" of type '" "int""'");
4660 arg2
= static_cast< int >(val2
);
4662 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4664 wxAuiPaneInfo
&_result_ref
= (arg1
)->Position(arg2
);
4665 result
= (wxAuiPaneInfo
*) &_result_ref
;
4667 wxPyEndAllowThreads(__tstate
);
4668 if (PyErr_Occurred()) SWIG_fail
;
4671 resultobj
= obj0
; Py_INCREF(resultobj
);
4679 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_BestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4680 PyObject
*resultobj
= 0;
4681 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4683 wxAuiPaneInfo
*result
= 0 ;
4687 PyObject
* obj0
= 0 ;
4688 PyObject
* obj1
= 0 ;
4689 char * kwnames
[] = {
4690 (char *) "self",(char *) "size", NULL
4693 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_BestSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4694 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4695 if (!SWIG_IsOK(res1
)) {
4696 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_BestSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4698 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4701 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4704 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4706 wxAuiPaneInfo
&_result_ref
= (arg1
)->BestSize((wxSize
const &)*arg2
);
4707 result
= (wxAuiPaneInfo
*) &_result_ref
;
4709 wxPyEndAllowThreads(__tstate
);
4710 if (PyErr_Occurred()) SWIG_fail
;
4713 resultobj
= obj0
; Py_INCREF(resultobj
);
4721 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MinSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4722 PyObject
*resultobj
= 0;
4723 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4725 wxAuiPaneInfo
*result
= 0 ;
4729 PyObject
* obj0
= 0 ;
4730 PyObject
* obj1
= 0 ;
4731 char * kwnames
[] = {
4732 (char *) "self",(char *) "size", NULL
4735 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_MinSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4736 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4737 if (!SWIG_IsOK(res1
)) {
4738 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MinSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4740 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4743 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4746 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4748 wxAuiPaneInfo
&_result_ref
= (arg1
)->MinSize((wxSize
const &)*arg2
);
4749 result
= (wxAuiPaneInfo
*) &_result_ref
;
4751 wxPyEndAllowThreads(__tstate
);
4752 if (PyErr_Occurred()) SWIG_fail
;
4755 resultobj
= obj0
; Py_INCREF(resultobj
);
4763 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MaxSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4764 PyObject
*resultobj
= 0;
4765 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4767 wxAuiPaneInfo
*result
= 0 ;
4771 PyObject
* obj0
= 0 ;
4772 PyObject
* obj1
= 0 ;
4773 char * kwnames
[] = {
4774 (char *) "self",(char *) "size", NULL
4777 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_MaxSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4778 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4779 if (!SWIG_IsOK(res1
)) {
4780 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MaxSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4782 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4785 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4788 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4790 wxAuiPaneInfo
&_result_ref
= (arg1
)->MaxSize((wxSize
const &)*arg2
);
4791 result
= (wxAuiPaneInfo
*) &_result_ref
;
4793 wxPyEndAllowThreads(__tstate
);
4794 if (PyErr_Occurred()) SWIG_fail
;
4797 resultobj
= obj0
; Py_INCREF(resultobj
);
4805 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_FloatingPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4806 PyObject
*resultobj
= 0;
4807 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4809 wxAuiPaneInfo
*result
= 0 ;
4813 PyObject
* obj0
= 0 ;
4814 PyObject
* obj1
= 0 ;
4815 char * kwnames
[] = {
4816 (char *) "self",(char *) "pos", NULL
4819 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_FloatingPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4820 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4821 if (!SWIG_IsOK(res1
)) {
4822 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_FloatingPosition" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4824 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4827 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
4830 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4832 wxAuiPaneInfo
&_result_ref
= (arg1
)->FloatingPosition((wxPoint
const &)*arg2
);
4833 result
= (wxAuiPaneInfo
*) &_result_ref
;
4835 wxPyEndAllowThreads(__tstate
);
4836 if (PyErr_Occurred()) SWIG_fail
;
4839 resultobj
= obj0
; Py_INCREF(resultobj
);
4847 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_FloatingSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4848 PyObject
*resultobj
= 0;
4849 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4851 wxAuiPaneInfo
*result
= 0 ;
4855 PyObject
* obj0
= 0 ;
4856 PyObject
* obj1
= 0 ;
4857 char * kwnames
[] = {
4858 (char *) "self",(char *) "size", NULL
4861 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_FloatingSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4862 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4863 if (!SWIG_IsOK(res1
)) {
4864 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_FloatingSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4866 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4869 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4872 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4874 wxAuiPaneInfo
&_result_ref
= (arg1
)->FloatingSize((wxSize
const &)*arg2
);
4875 result
= (wxAuiPaneInfo
*) &_result_ref
;
4877 wxPyEndAllowThreads(__tstate
);
4878 if (PyErr_Occurred()) SWIG_fail
;
4881 resultobj
= obj0
; Py_INCREF(resultobj
);
4889 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Fixed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4890 PyObject
*resultobj
= 0;
4891 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4892 wxAuiPaneInfo
*result
= 0 ;
4895 PyObject
*swig_obj
[1] ;
4897 if (!args
) SWIG_fail
;
4899 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4900 if (!SWIG_IsOK(res1
)) {
4901 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Fixed" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4903 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4905 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4907 wxAuiPaneInfo
&_result_ref
= (arg1
)->Fixed();
4908 result
= (wxAuiPaneInfo
*) &_result_ref
;
4910 wxPyEndAllowThreads(__tstate
);
4911 if (PyErr_Occurred()) SWIG_fail
;
4914 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4922 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Resizable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4923 PyObject
*resultobj
= 0;
4924 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4925 bool arg2
= (bool) true ;
4926 wxAuiPaneInfo
*result
= 0 ;
4931 PyObject
* obj0
= 0 ;
4932 PyObject
* obj1
= 0 ;
4933 char * kwnames
[] = {
4934 (char *) "self",(char *) "resizable", NULL
4937 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Resizable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4938 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4939 if (!SWIG_IsOK(res1
)) {
4940 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Resizable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4942 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4944 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4945 if (!SWIG_IsOK(ecode2
)) {
4946 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Resizable" "', expected argument " "2"" of type '" "bool""'");
4948 arg2
= static_cast< bool >(val2
);
4951 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4953 wxAuiPaneInfo
&_result_ref
= (arg1
)->Resizable(arg2
);
4954 result
= (wxAuiPaneInfo
*) &_result_ref
;
4956 wxPyEndAllowThreads(__tstate
);
4957 if (PyErr_Occurred()) SWIG_fail
;
4960 resultobj
= obj0
; Py_INCREF(resultobj
);
4968 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Dock(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4969 PyObject
*resultobj
= 0;
4970 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4971 wxAuiPaneInfo
*result
= 0 ;
4974 PyObject
*swig_obj
[1] ;
4976 if (!args
) SWIG_fail
;
4978 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4979 if (!SWIG_IsOK(res1
)) {
4980 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Dock" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4982 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4984 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4986 wxAuiPaneInfo
&_result_ref
= (arg1
)->Dock();
4987 result
= (wxAuiPaneInfo
*) &_result_ref
;
4989 wxPyEndAllowThreads(__tstate
);
4990 if (PyErr_Occurred()) SWIG_fail
;
4993 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5001 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Float(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5002 PyObject
*resultobj
= 0;
5003 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5004 wxAuiPaneInfo
*result
= 0 ;
5007 PyObject
*swig_obj
[1] ;
5009 if (!args
) SWIG_fail
;
5011 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5012 if (!SWIG_IsOK(res1
)) {
5013 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Float" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5015 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5017 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5019 wxAuiPaneInfo
&_result_ref
= (arg1
)->Float();
5020 result
= (wxAuiPaneInfo
*) &_result_ref
;
5022 wxPyEndAllowThreads(__tstate
);
5023 if (PyErr_Occurred()) SWIG_fail
;
5026 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5034 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Hide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5035 PyObject
*resultobj
= 0;
5036 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5037 wxAuiPaneInfo
*result
= 0 ;
5040 PyObject
*swig_obj
[1] ;
5042 if (!args
) SWIG_fail
;
5044 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5045 if (!SWIG_IsOK(res1
)) {
5046 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Hide" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5048 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5050 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5052 wxAuiPaneInfo
&_result_ref
= (arg1
)->Hide();
5053 result
= (wxAuiPaneInfo
*) &_result_ref
;
5055 wxPyEndAllowThreads(__tstate
);
5056 if (PyErr_Occurred()) SWIG_fail
;
5059 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5067 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Show(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5068 PyObject
*resultobj
= 0;
5069 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5070 bool arg2
= (bool) true ;
5071 wxAuiPaneInfo
*result
= 0 ;
5076 PyObject
* obj0
= 0 ;
5077 PyObject
* obj1
= 0 ;
5078 char * kwnames
[] = {
5079 (char *) "self",(char *) "show", NULL
5082 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Show",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5083 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5084 if (!SWIG_IsOK(res1
)) {
5085 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Show" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5087 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5089 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5090 if (!SWIG_IsOK(ecode2
)) {
5091 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Show" "', expected argument " "2"" of type '" "bool""'");
5093 arg2
= static_cast< bool >(val2
);
5096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5098 wxAuiPaneInfo
&_result_ref
= (arg1
)->Show(arg2
);
5099 result
= (wxAuiPaneInfo
*) &_result_ref
;
5101 wxPyEndAllowThreads(__tstate
);
5102 if (PyErr_Occurred()) SWIG_fail
;
5105 resultobj
= obj0
; Py_INCREF(resultobj
);
5113 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CaptionVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5114 PyObject
*resultobj
= 0;
5115 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5116 bool arg2
= (bool) true ;
5117 wxAuiPaneInfo
*result
= 0 ;
5122 PyObject
* obj0
= 0 ;
5123 PyObject
* obj1
= 0 ;
5124 char * kwnames
[] = {
5125 (char *) "self",(char *) "visible", NULL
5128 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_CaptionVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5129 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5130 if (!SWIG_IsOK(res1
)) {
5131 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CaptionVisible" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5133 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5135 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5136 if (!SWIG_IsOK(ecode2
)) {
5137 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_CaptionVisible" "', expected argument " "2"" of type '" "bool""'");
5139 arg2
= static_cast< bool >(val2
);
5142 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5144 wxAuiPaneInfo
&_result_ref
= (arg1
)->CaptionVisible(arg2
);
5145 result
= (wxAuiPaneInfo
*) &_result_ref
;
5147 wxPyEndAllowThreads(__tstate
);
5148 if (PyErr_Occurred()) SWIG_fail
;
5151 resultobj
= obj0
; Py_INCREF(resultobj
);
5159 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Maximize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5160 PyObject
*resultobj
= 0;
5161 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5162 wxAuiPaneInfo
*result
= 0 ;
5165 PyObject
*swig_obj
[1] ;
5167 if (!args
) SWIG_fail
;
5169 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5170 if (!SWIG_IsOK(res1
)) {
5171 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Maximize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5173 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5175 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5177 wxAuiPaneInfo
&_result_ref
= (arg1
)->Maximize();
5178 result
= (wxAuiPaneInfo
*) &_result_ref
;
5180 wxPyEndAllowThreads(__tstate
);
5181 if (PyErr_Occurred()) SWIG_fail
;
5184 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5192 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Restore(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5193 PyObject
*resultobj
= 0;
5194 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5195 wxAuiPaneInfo
*result
= 0 ;
5198 PyObject
*swig_obj
[1] ;
5200 if (!args
) SWIG_fail
;
5202 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5203 if (!SWIG_IsOK(res1
)) {
5204 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Restore" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5206 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5208 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5210 wxAuiPaneInfo
&_result_ref
= (arg1
)->Restore();
5211 result
= (wxAuiPaneInfo
*) &_result_ref
;
5213 wxPyEndAllowThreads(__tstate
);
5214 if (PyErr_Occurred()) SWIG_fail
;
5217 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5225 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_PaneBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5226 PyObject
*resultobj
= 0;
5227 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5228 bool arg2
= (bool) true ;
5229 wxAuiPaneInfo
*result
= 0 ;
5234 PyObject
* obj0
= 0 ;
5235 PyObject
* obj1
= 0 ;
5236 char * kwnames
[] = {
5237 (char *) "self",(char *) "visible", NULL
5240 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_PaneBorder",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5241 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5242 if (!SWIG_IsOK(res1
)) {
5243 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_PaneBorder" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5245 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5247 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5248 if (!SWIG_IsOK(ecode2
)) {
5249 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_PaneBorder" "', expected argument " "2"" of type '" "bool""'");
5251 arg2
= static_cast< bool >(val2
);
5254 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5256 wxAuiPaneInfo
&_result_ref
= (arg1
)->PaneBorder(arg2
);
5257 result
= (wxAuiPaneInfo
*) &_result_ref
;
5259 wxPyEndAllowThreads(__tstate
);
5260 if (PyErr_Occurred()) SWIG_fail
;
5263 resultobj
= obj0
; Py_INCREF(resultobj
);
5271 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Gripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5272 PyObject
*resultobj
= 0;
5273 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5274 bool arg2
= (bool) true ;
5275 wxAuiPaneInfo
*result
= 0 ;
5280 PyObject
* obj0
= 0 ;
5281 PyObject
* obj1
= 0 ;
5282 char * kwnames
[] = {
5283 (char *) "self",(char *) "visible", NULL
5286 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Gripper",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5287 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5288 if (!SWIG_IsOK(res1
)) {
5289 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Gripper" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5291 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5293 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5294 if (!SWIG_IsOK(ecode2
)) {
5295 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Gripper" "', expected argument " "2"" of type '" "bool""'");
5297 arg2
= static_cast< bool >(val2
);
5300 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5302 wxAuiPaneInfo
&_result_ref
= (arg1
)->Gripper(arg2
);
5303 result
= (wxAuiPaneInfo
*) &_result_ref
;
5305 wxPyEndAllowThreads(__tstate
);
5306 if (PyErr_Occurred()) SWIG_fail
;
5309 resultobj
= obj0
; Py_INCREF(resultobj
);
5317 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_GripperTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5318 PyObject
*resultobj
= 0;
5319 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5320 bool arg2
= (bool) true ;
5321 wxAuiPaneInfo
*result
= 0 ;
5326 PyObject
* obj0
= 0 ;
5327 PyObject
* obj1
= 0 ;
5328 char * kwnames
[] = {
5329 (char *) "self",(char *) "attop", NULL
5332 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_GripperTop",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5333 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5334 if (!SWIG_IsOK(res1
)) {
5335 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_GripperTop" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5337 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5339 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5340 if (!SWIG_IsOK(ecode2
)) {
5341 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_GripperTop" "', expected argument " "2"" of type '" "bool""'");
5343 arg2
= static_cast< bool >(val2
);
5346 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5348 wxAuiPaneInfo
&_result_ref
= (arg1
)->GripperTop(arg2
);
5349 result
= (wxAuiPaneInfo
*) &_result_ref
;
5351 wxPyEndAllowThreads(__tstate
);
5352 if (PyErr_Occurred()) SWIG_fail
;
5355 resultobj
= obj0
; Py_INCREF(resultobj
);
5363 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CloseButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5364 PyObject
*resultobj
= 0;
5365 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5366 bool arg2
= (bool) true ;
5367 wxAuiPaneInfo
*result
= 0 ;
5372 PyObject
* obj0
= 0 ;
5373 PyObject
* obj1
= 0 ;
5374 char * kwnames
[] = {
5375 (char *) "self",(char *) "visible", NULL
5378 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_CloseButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5379 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5380 if (!SWIG_IsOK(res1
)) {
5381 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CloseButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5383 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5385 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5386 if (!SWIG_IsOK(ecode2
)) {
5387 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_CloseButton" "', expected argument " "2"" of type '" "bool""'");
5389 arg2
= static_cast< bool >(val2
);
5392 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5394 wxAuiPaneInfo
&_result_ref
= (arg1
)->CloseButton(arg2
);
5395 result
= (wxAuiPaneInfo
*) &_result_ref
;
5397 wxPyEndAllowThreads(__tstate
);
5398 if (PyErr_Occurred()) SWIG_fail
;
5401 resultobj
= obj0
; Py_INCREF(resultobj
);
5409 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MaximizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5410 PyObject
*resultobj
= 0;
5411 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5412 bool arg2
= (bool) true ;
5413 wxAuiPaneInfo
*result
= 0 ;
5418 PyObject
* obj0
= 0 ;
5419 PyObject
* obj1
= 0 ;
5420 char * kwnames
[] = {
5421 (char *) "self",(char *) "visible", NULL
5424 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_MaximizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5425 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5426 if (!SWIG_IsOK(res1
)) {
5427 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MaximizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5429 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5431 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5432 if (!SWIG_IsOK(ecode2
)) {
5433 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_MaximizeButton" "', expected argument " "2"" of type '" "bool""'");
5435 arg2
= static_cast< bool >(val2
);
5438 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5440 wxAuiPaneInfo
&_result_ref
= (arg1
)->MaximizeButton(arg2
);
5441 result
= (wxAuiPaneInfo
*) &_result_ref
;
5443 wxPyEndAllowThreads(__tstate
);
5444 if (PyErr_Occurred()) SWIG_fail
;
5447 resultobj
= obj0
; Py_INCREF(resultobj
);
5455 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MinimizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5456 PyObject
*resultobj
= 0;
5457 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5458 bool arg2
= (bool) true ;
5459 wxAuiPaneInfo
*result
= 0 ;
5464 PyObject
* obj0
= 0 ;
5465 PyObject
* obj1
= 0 ;
5466 char * kwnames
[] = {
5467 (char *) "self",(char *) "visible", NULL
5470 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_MinimizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5471 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5472 if (!SWIG_IsOK(res1
)) {
5473 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MinimizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5475 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5477 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5478 if (!SWIG_IsOK(ecode2
)) {
5479 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_MinimizeButton" "', expected argument " "2"" of type '" "bool""'");
5481 arg2
= static_cast< bool >(val2
);
5484 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5486 wxAuiPaneInfo
&_result_ref
= (arg1
)->MinimizeButton(arg2
);
5487 result
= (wxAuiPaneInfo
*) &_result_ref
;
5489 wxPyEndAllowThreads(__tstate
);
5490 if (PyErr_Occurred()) SWIG_fail
;
5493 resultobj
= obj0
; Py_INCREF(resultobj
);
5501 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_PinButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5502 PyObject
*resultobj
= 0;
5503 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5504 bool arg2
= (bool) true ;
5505 wxAuiPaneInfo
*result
= 0 ;
5510 PyObject
* obj0
= 0 ;
5511 PyObject
* obj1
= 0 ;
5512 char * kwnames
[] = {
5513 (char *) "self",(char *) "visible", NULL
5516 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_PinButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5517 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5518 if (!SWIG_IsOK(res1
)) {
5519 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_PinButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5521 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5523 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5524 if (!SWIG_IsOK(ecode2
)) {
5525 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_PinButton" "', expected argument " "2"" of type '" "bool""'");
5527 arg2
= static_cast< bool >(val2
);
5530 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5532 wxAuiPaneInfo
&_result_ref
= (arg1
)->PinButton(arg2
);
5533 result
= (wxAuiPaneInfo
*) &_result_ref
;
5535 wxPyEndAllowThreads(__tstate
);
5536 if (PyErr_Occurred()) SWIG_fail
;
5539 resultobj
= obj0
; Py_INCREF(resultobj
);
5547 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_DestroyOnClose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5548 PyObject
*resultobj
= 0;
5549 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5550 bool arg2
= (bool) true ;
5551 wxAuiPaneInfo
*result
= 0 ;
5556 PyObject
* obj0
= 0 ;
5557 PyObject
* obj1
= 0 ;
5558 char * kwnames
[] = {
5559 (char *) "self",(char *) "b", NULL
5562 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_DestroyOnClose",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5563 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5564 if (!SWIG_IsOK(res1
)) {
5565 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_DestroyOnClose" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5567 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5569 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5570 if (!SWIG_IsOK(ecode2
)) {
5571 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_DestroyOnClose" "', expected argument " "2"" of type '" "bool""'");
5573 arg2
= static_cast< bool >(val2
);
5576 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5578 wxAuiPaneInfo
&_result_ref
= (arg1
)->DestroyOnClose(arg2
);
5579 result
= (wxAuiPaneInfo
*) &_result_ref
;
5581 wxPyEndAllowThreads(__tstate
);
5582 if (PyErr_Occurred()) SWIG_fail
;
5585 resultobj
= obj0
; Py_INCREF(resultobj
);
5593 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_TopDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5594 PyObject
*resultobj
= 0;
5595 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5596 bool arg2
= (bool) true ;
5597 wxAuiPaneInfo
*result
= 0 ;
5602 PyObject
* obj0
= 0 ;
5603 PyObject
* obj1
= 0 ;
5604 char * kwnames
[] = {
5605 (char *) "self",(char *) "b", NULL
5608 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_TopDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5609 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5610 if (!SWIG_IsOK(res1
)) {
5611 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_TopDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5613 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5615 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5616 if (!SWIG_IsOK(ecode2
)) {
5617 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_TopDockable" "', expected argument " "2"" of type '" "bool""'");
5619 arg2
= static_cast< bool >(val2
);
5622 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5624 wxAuiPaneInfo
&_result_ref
= (arg1
)->TopDockable(arg2
);
5625 result
= (wxAuiPaneInfo
*) &_result_ref
;
5627 wxPyEndAllowThreads(__tstate
);
5628 if (PyErr_Occurred()) SWIG_fail
;
5631 resultobj
= obj0
; Py_INCREF(resultobj
);
5639 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_BottomDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5640 PyObject
*resultobj
= 0;
5641 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5642 bool arg2
= (bool) true ;
5643 wxAuiPaneInfo
*result
= 0 ;
5648 PyObject
* obj0
= 0 ;
5649 PyObject
* obj1
= 0 ;
5650 char * kwnames
[] = {
5651 (char *) "self",(char *) "b", NULL
5654 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_BottomDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5655 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5656 if (!SWIG_IsOK(res1
)) {
5657 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_BottomDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5659 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5661 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5662 if (!SWIG_IsOK(ecode2
)) {
5663 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_BottomDockable" "', expected argument " "2"" of type '" "bool""'");
5665 arg2
= static_cast< bool >(val2
);
5668 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5670 wxAuiPaneInfo
&_result_ref
= (arg1
)->BottomDockable(arg2
);
5671 result
= (wxAuiPaneInfo
*) &_result_ref
;
5673 wxPyEndAllowThreads(__tstate
);
5674 if (PyErr_Occurred()) SWIG_fail
;
5677 resultobj
= obj0
; Py_INCREF(resultobj
);
5685 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_LeftDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5686 PyObject
*resultobj
= 0;
5687 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5688 bool arg2
= (bool) true ;
5689 wxAuiPaneInfo
*result
= 0 ;
5694 PyObject
* obj0
= 0 ;
5695 PyObject
* obj1
= 0 ;
5696 char * kwnames
[] = {
5697 (char *) "self",(char *) "b", NULL
5700 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_LeftDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5701 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5702 if (!SWIG_IsOK(res1
)) {
5703 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_LeftDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5705 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5707 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5708 if (!SWIG_IsOK(ecode2
)) {
5709 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_LeftDockable" "', expected argument " "2"" of type '" "bool""'");
5711 arg2
= static_cast< bool >(val2
);
5714 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5716 wxAuiPaneInfo
&_result_ref
= (arg1
)->LeftDockable(arg2
);
5717 result
= (wxAuiPaneInfo
*) &_result_ref
;
5719 wxPyEndAllowThreads(__tstate
);
5720 if (PyErr_Occurred()) SWIG_fail
;
5723 resultobj
= obj0
; Py_INCREF(resultobj
);
5731 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_RightDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5732 PyObject
*resultobj
= 0;
5733 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5734 bool arg2
= (bool) true ;
5735 wxAuiPaneInfo
*result
= 0 ;
5740 PyObject
* obj0
= 0 ;
5741 PyObject
* obj1
= 0 ;
5742 char * kwnames
[] = {
5743 (char *) "self",(char *) "b", NULL
5746 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_RightDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5747 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5748 if (!SWIG_IsOK(res1
)) {
5749 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_RightDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5751 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5753 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5754 if (!SWIG_IsOK(ecode2
)) {
5755 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_RightDockable" "', expected argument " "2"" of type '" "bool""'");
5757 arg2
= static_cast< bool >(val2
);
5760 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5762 wxAuiPaneInfo
&_result_ref
= (arg1
)->RightDockable(arg2
);
5763 result
= (wxAuiPaneInfo
*) &_result_ref
;
5765 wxPyEndAllowThreads(__tstate
);
5766 if (PyErr_Occurred()) SWIG_fail
;
5769 resultobj
= obj0
; Py_INCREF(resultobj
);
5777 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Floatable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5778 PyObject
*resultobj
= 0;
5779 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5780 bool arg2
= (bool) true ;
5781 wxAuiPaneInfo
*result
= 0 ;
5786 PyObject
* obj0
= 0 ;
5787 PyObject
* obj1
= 0 ;
5788 char * kwnames
[] = {
5789 (char *) "self",(char *) "b", NULL
5792 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Floatable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5793 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5794 if (!SWIG_IsOK(res1
)) {
5795 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Floatable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5797 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5799 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5800 if (!SWIG_IsOK(ecode2
)) {
5801 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Floatable" "', expected argument " "2"" of type '" "bool""'");
5803 arg2
= static_cast< bool >(val2
);
5806 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5808 wxAuiPaneInfo
&_result_ref
= (arg1
)->Floatable(arg2
);
5809 result
= (wxAuiPaneInfo
*) &_result_ref
;
5811 wxPyEndAllowThreads(__tstate
);
5812 if (PyErr_Occurred()) SWIG_fail
;
5815 resultobj
= obj0
; Py_INCREF(resultobj
);
5823 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Movable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5824 PyObject
*resultobj
= 0;
5825 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5826 bool arg2
= (bool) true ;
5827 wxAuiPaneInfo
*result
= 0 ;
5832 PyObject
* obj0
= 0 ;
5833 PyObject
* obj1
= 0 ;
5834 char * kwnames
[] = {
5835 (char *) "self",(char *) "b", NULL
5838 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Movable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5839 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5840 if (!SWIG_IsOK(res1
)) {
5841 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Movable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5843 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5845 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5846 if (!SWIG_IsOK(ecode2
)) {
5847 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Movable" "', expected argument " "2"" of type '" "bool""'");
5849 arg2
= static_cast< bool >(val2
);
5852 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5854 wxAuiPaneInfo
&_result_ref
= (arg1
)->Movable(arg2
);
5855 result
= (wxAuiPaneInfo
*) &_result_ref
;
5857 wxPyEndAllowThreads(__tstate
);
5858 if (PyErr_Occurred()) SWIG_fail
;
5861 resultobj
= obj0
; Py_INCREF(resultobj
);
5869 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Dockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5870 PyObject
*resultobj
= 0;
5871 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5872 bool arg2
= (bool) true ;
5873 wxAuiPaneInfo
*result
= 0 ;
5878 PyObject
* obj0
= 0 ;
5879 PyObject
* obj1
= 0 ;
5880 char * kwnames
[] = {
5881 (char *) "self",(char *) "b", NULL
5884 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Dockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5885 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5886 if (!SWIG_IsOK(res1
)) {
5887 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Dockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5889 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5891 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5892 if (!SWIG_IsOK(ecode2
)) {
5893 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Dockable" "', expected argument " "2"" of type '" "bool""'");
5895 arg2
= static_cast< bool >(val2
);
5898 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5900 wxAuiPaneInfo
&_result_ref
= (arg1
)->Dockable(arg2
);
5901 result
= (wxAuiPaneInfo
*) &_result_ref
;
5903 wxPyEndAllowThreads(__tstate
);
5904 if (PyErr_Occurred()) SWIG_fail
;
5907 resultobj
= obj0
; Py_INCREF(resultobj
);
5915 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_DefaultPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5916 PyObject
*resultobj
= 0;
5917 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5918 wxAuiPaneInfo
*result
= 0 ;
5921 PyObject
*swig_obj
[1] ;
5923 if (!args
) SWIG_fail
;
5925 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5926 if (!SWIG_IsOK(res1
)) {
5927 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_DefaultPane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5929 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5931 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5933 wxAuiPaneInfo
&_result_ref
= (arg1
)->DefaultPane();
5934 result
= (wxAuiPaneInfo
*) &_result_ref
;
5936 wxPyEndAllowThreads(__tstate
);
5937 if (PyErr_Occurred()) SWIG_fail
;
5940 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5948 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CentrePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5949 PyObject
*resultobj
= 0;
5950 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5951 wxAuiPaneInfo
*result
= 0 ;
5954 PyObject
*swig_obj
[1] ;
5956 if (!args
) SWIG_fail
;
5958 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5959 if (!SWIG_IsOK(res1
)) {
5960 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CentrePane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5962 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5964 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5966 wxAuiPaneInfo
&_result_ref
= (arg1
)->CentrePane();
5967 result
= (wxAuiPaneInfo
*) &_result_ref
;
5969 wxPyEndAllowThreads(__tstate
);
5970 if (PyErr_Occurred()) SWIG_fail
;
5973 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5981 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CenterPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5982 PyObject
*resultobj
= 0;
5983 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5984 wxAuiPaneInfo
*result
= 0 ;
5987 PyObject
*swig_obj
[1] ;
5989 if (!args
) SWIG_fail
;
5991 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5992 if (!SWIG_IsOK(res1
)) {
5993 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CenterPane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5995 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5997 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5999 wxAuiPaneInfo
&_result_ref
= (arg1
)->CenterPane();
6000 result
= (wxAuiPaneInfo
*) &_result_ref
;
6002 wxPyEndAllowThreads(__tstate
);
6003 if (PyErr_Occurred()) SWIG_fail
;
6006 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
6014 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_ToolbarPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6015 PyObject
*resultobj
= 0;
6016 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6017 wxAuiPaneInfo
*result
= 0 ;
6020 PyObject
*swig_obj
[1] ;
6022 if (!args
) SWIG_fail
;
6024 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6025 if (!SWIG_IsOK(res1
)) {
6026 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_ToolbarPane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6028 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6030 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6032 wxAuiPaneInfo
&_result_ref
= (arg1
)->ToolbarPane();
6033 result
= (wxAuiPaneInfo
*) &_result_ref
;
6035 wxPyEndAllowThreads(__tstate
);
6036 if (PyErr_Occurred()) SWIG_fail
;
6039 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
6047 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_SetFlag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6048 PyObject
*resultobj
= 0;
6049 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6052 wxAuiPaneInfo
*result
= 0 ;
6059 PyObject
* obj0
= 0 ;
6060 PyObject
* obj1
= 0 ;
6061 PyObject
* obj2
= 0 ;
6062 char * kwnames
[] = {
6063 (char *) "self",(char *) "flag",(char *) "option_state", NULL
6066 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiPaneInfo_SetFlag",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6067 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6068 if (!SWIG_IsOK(res1
)) {
6069 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_SetFlag" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6071 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6072 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6073 if (!SWIG_IsOK(ecode2
)) {
6074 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_SetFlag" "', expected argument " "2"" of type '" "int""'");
6076 arg2
= static_cast< int >(val2
);
6077 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
6078 if (!SWIG_IsOK(ecode3
)) {
6079 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiPaneInfo_SetFlag" "', expected argument " "3"" of type '" "bool""'");
6081 arg3
= static_cast< bool >(val3
);
6083 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6085 wxAuiPaneInfo
&_result_ref
= (arg1
)->SetFlag(arg2
,arg3
);
6086 result
= (wxAuiPaneInfo
*) &_result_ref
;
6088 wxPyEndAllowThreads(__tstate
);
6089 if (PyErr_Occurred()) SWIG_fail
;
6092 resultobj
= obj0
; Py_INCREF(resultobj
);
6100 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasFlag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6101 PyObject
*resultobj
= 0;
6102 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6109 PyObject
* obj0
= 0 ;
6110 PyObject
* obj1
= 0 ;
6111 char * kwnames
[] = {
6112 (char *) "self",(char *) "flag", NULL
6115 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_HasFlag",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6116 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6117 if (!SWIG_IsOK(res1
)) {
6118 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasFlag" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
6120 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6121 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6122 if (!SWIG_IsOK(ecode2
)) {
6123 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_HasFlag" "', expected argument " "2"" of type '" "int""'");
6125 arg2
= static_cast< int >(val2
);
6127 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6128 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasFlag(arg2
);
6129 wxPyEndAllowThreads(__tstate
);
6130 if (PyErr_Occurred()) SWIG_fail
;
6133 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6141 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_name_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6142 PyObject
*resultobj
= 0;
6143 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6144 wxString
*arg2
= (wxString
*) 0 ;
6147 bool temp2
= false ;
6148 PyObject
*swig_obj
[2] ;
6150 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_name_set",2,2,swig_obj
)) SWIG_fail
;
6151 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6152 if (!SWIG_IsOK(res1
)) {
6153 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_name_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6155 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6157 arg2
= wxString_in_helper(swig_obj
[1]);
6158 if (arg2
== NULL
) SWIG_fail
;
6161 if (arg1
) (arg1
)->name
= *arg2
;
6163 resultobj
= SWIG_Py_Void();
6178 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_name_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6179 PyObject
*resultobj
= 0;
6180 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6181 wxString
*result
= 0 ;
6184 PyObject
*swig_obj
[1] ;
6186 if (!args
) 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_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6192 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6193 result
= (wxString
*)& ((arg1
)->name
);
6196 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
6198 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
6207 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_caption_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6208 PyObject
*resultobj
= 0;
6209 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6210 wxString
*arg2
= (wxString
*) 0 ;
6213 bool temp2
= false ;
6214 PyObject
*swig_obj
[2] ;
6216 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_caption_set",2,2,swig_obj
)) SWIG_fail
;
6217 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6218 if (!SWIG_IsOK(res1
)) {
6219 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_caption_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6221 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6223 arg2
= wxString_in_helper(swig_obj
[1]);
6224 if (arg2
== NULL
) SWIG_fail
;
6227 if (arg1
) (arg1
)->caption
= *arg2
;
6229 resultobj
= SWIG_Py_Void();
6244 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_caption_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6245 PyObject
*resultobj
= 0;
6246 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6247 wxString
*result
= 0 ;
6250 PyObject
*swig_obj
[1] ;
6252 if (!args
) 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_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6258 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6259 result
= (wxString
*)& ((arg1
)->caption
);
6262 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
6264 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
6273 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_window_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6274 PyObject
*resultobj
= 0;
6275 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6276 wxWindow
*arg2
= (wxWindow
*) 0 ;
6281 PyObject
*swig_obj
[2] ;
6283 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_window_set",2,2,swig_obj
)) SWIG_fail
;
6284 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6285 if (!SWIG_IsOK(res1
)) {
6286 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_window_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6288 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6289 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN
| 0 );
6290 if (!SWIG_IsOK(res2
)) {
6291 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_window_set" "', expected argument " "2"" of type '" "wxWindow *""'");
6293 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
6294 if (arg1
) (arg1
)->window
= arg2
;
6296 resultobj
= SWIG_Py_Void();
6303 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_window_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6304 PyObject
*resultobj
= 0;
6305 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6306 wxWindow
*result
= 0 ;
6309 PyObject
*swig_obj
[1] ;
6311 if (!args
) SWIG_fail
;
6313 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6314 if (!SWIG_IsOK(res1
)) {
6315 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_window_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6317 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6318 result
= (wxWindow
*) ((arg1
)->window
);
6320 resultobj
= wxPyMake_wxObject(result
, 0);
6328 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_frame_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6329 PyObject
*resultobj
= 0;
6330 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6331 wxFrame
*arg2
= (wxFrame
*) 0 ;
6336 PyObject
*swig_obj
[2] ;
6338 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_frame_set",2,2,swig_obj
)) SWIG_fail
;
6339 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6340 if (!SWIG_IsOK(res1
)) {
6341 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_frame_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6343 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6344 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxFrame
, SWIG_POINTER_DISOWN
| 0 );
6345 if (!SWIG_IsOK(res2
)) {
6346 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_frame_set" "', expected argument " "2"" of type '" "wxFrame *""'");
6348 arg2
= reinterpret_cast< wxFrame
* >(argp2
);
6349 if (arg1
) (arg1
)->frame
= arg2
;
6351 resultobj
= SWIG_Py_Void();
6358 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_frame_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6359 PyObject
*resultobj
= 0;
6360 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6361 wxFrame
*result
= 0 ;
6364 PyObject
*swig_obj
[1] ;
6366 if (!args
) SWIG_fail
;
6368 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6369 if (!SWIG_IsOK(res1
)) {
6370 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_frame_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6372 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6373 result
= (wxFrame
*) ((arg1
)->frame
);
6375 resultobj
= wxPyMake_wxObject(result
, 0);
6383 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_state_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6384 PyObject
*resultobj
= 0;
6385 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6391 PyObject
*swig_obj
[2] ;
6393 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_state_set",2,2,swig_obj
)) SWIG_fail
;
6394 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6395 if (!SWIG_IsOK(res1
)) {
6396 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_state_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6398 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6399 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6400 if (!SWIG_IsOK(ecode2
)) {
6401 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_state_set" "', expected argument " "2"" of type '" "int""'");
6403 arg2
= static_cast< int >(val2
);
6404 if (arg1
) (arg1
)->state
= arg2
;
6406 resultobj
= SWIG_Py_Void();
6413 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_state_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6414 PyObject
*resultobj
= 0;
6415 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6419 PyObject
*swig_obj
[1] ;
6421 if (!args
) SWIG_fail
;
6423 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6424 if (!SWIG_IsOK(res1
)) {
6425 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_state_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6427 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6428 result
= (int) ((arg1
)->state
);
6429 resultobj
= SWIG_From_int(static_cast< int >(result
));
6436 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_direction_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6437 PyObject
*resultobj
= 0;
6438 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6444 PyObject
*swig_obj
[2] ;
6446 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
;
6447 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6448 if (!SWIG_IsOK(res1
)) {
6449 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6451 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6452 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6453 if (!SWIG_IsOK(ecode2
)) {
6454 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'");
6456 arg2
= static_cast< int >(val2
);
6457 if (arg1
) (arg1
)->dock_direction
= arg2
;
6459 resultobj
= SWIG_Py_Void();
6466 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_direction_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6467 PyObject
*resultobj
= 0;
6468 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6472 PyObject
*swig_obj
[1] ;
6474 if (!args
) SWIG_fail
;
6476 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6477 if (!SWIG_IsOK(res1
)) {
6478 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6480 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6481 result
= (int) ((arg1
)->dock_direction
);
6482 resultobj
= SWIG_From_int(static_cast< int >(result
));
6489 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_layer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6490 PyObject
*resultobj
= 0;
6491 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6497 PyObject
*swig_obj
[2] ;
6499 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
;
6500 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6501 if (!SWIG_IsOK(res1
)) {
6502 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6504 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6505 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6506 if (!SWIG_IsOK(ecode2
)) {
6507 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'");
6509 arg2
= static_cast< int >(val2
);
6510 if (arg1
) (arg1
)->dock_layer
= arg2
;
6512 resultobj
= SWIG_Py_Void();
6519 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_layer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6520 PyObject
*resultobj
= 0;
6521 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6525 PyObject
*swig_obj
[1] ;
6527 if (!args
) SWIG_fail
;
6529 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6530 if (!SWIG_IsOK(res1
)) {
6531 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6533 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6534 result
= (int) ((arg1
)->dock_layer
);
6535 resultobj
= SWIG_From_int(static_cast< int >(result
));
6542 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_row_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6543 PyObject
*resultobj
= 0;
6544 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6550 PyObject
*swig_obj
[2] ;
6552 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
;
6553 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6554 if (!SWIG_IsOK(res1
)) {
6555 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_row_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6557 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6558 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6559 if (!SWIG_IsOK(ecode2
)) {
6560 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'");
6562 arg2
= static_cast< int >(val2
);
6563 if (arg1
) (arg1
)->dock_row
= arg2
;
6565 resultobj
= SWIG_Py_Void();
6572 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_row_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6573 PyObject
*resultobj
= 0;
6574 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6578 PyObject
*swig_obj
[1] ;
6580 if (!args
) SWIG_fail
;
6582 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6583 if (!SWIG_IsOK(res1
)) {
6584 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_row_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6586 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6587 result
= (int) ((arg1
)->dock_row
);
6588 resultobj
= SWIG_From_int(static_cast< int >(result
));
6595 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_pos_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6596 PyObject
*resultobj
= 0;
6597 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6603 PyObject
*swig_obj
[2] ;
6605 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_pos_set",2,2,swig_obj
)) SWIG_fail
;
6606 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6607 if (!SWIG_IsOK(res1
)) {
6608 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_pos_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6610 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6611 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6612 if (!SWIG_IsOK(ecode2
)) {
6613 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_pos_set" "', expected argument " "2"" of type '" "int""'");
6615 arg2
= static_cast< int >(val2
);
6616 if (arg1
) (arg1
)->dock_pos
= arg2
;
6618 resultobj
= SWIG_Py_Void();
6625 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_pos_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6626 PyObject
*resultobj
= 0;
6627 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6631 PyObject
*swig_obj
[1] ;
6633 if (!args
) SWIG_fail
;
6635 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6636 if (!SWIG_IsOK(res1
)) {
6637 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_pos_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6639 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6640 result
= (int) ((arg1
)->dock_pos
);
6641 resultobj
= SWIG_From_int(static_cast< int >(result
));
6648 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_best_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6649 PyObject
*resultobj
= 0;
6650 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6651 wxSize
*arg2
= (wxSize
*) 0 ;
6656 PyObject
*swig_obj
[2] ;
6658 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_best_size_set",2,2,swig_obj
)) SWIG_fail
;
6659 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6660 if (!SWIG_IsOK(res1
)) {
6661 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_best_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6663 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6664 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6665 if (!SWIG_IsOK(res2
)) {
6666 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_best_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6668 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6669 if (arg1
) (arg1
)->best_size
= *arg2
;
6671 resultobj
= SWIG_Py_Void();
6678 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_best_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6679 PyObject
*resultobj
= 0;
6680 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6681 wxSize
*result
= 0 ;
6684 PyObject
*swig_obj
[1] ;
6686 if (!args
) SWIG_fail
;
6688 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6689 if (!SWIG_IsOK(res1
)) {
6690 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_best_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6692 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6693 result
= (wxSize
*)& ((arg1
)->best_size
);
6694 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6701 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_min_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6702 PyObject
*resultobj
= 0;
6703 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6704 wxSize
*arg2
= (wxSize
*) 0 ;
6709 PyObject
*swig_obj
[2] ;
6711 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
;
6712 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6713 if (!SWIG_IsOK(res1
)) {
6714 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_min_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6716 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6717 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6718 if (!SWIG_IsOK(res2
)) {
6719 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_min_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6721 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6722 if (arg1
) (arg1
)->min_size
= *arg2
;
6724 resultobj
= SWIG_Py_Void();
6731 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_min_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6732 PyObject
*resultobj
= 0;
6733 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6734 wxSize
*result
= 0 ;
6737 PyObject
*swig_obj
[1] ;
6739 if (!args
) SWIG_fail
;
6741 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6742 if (!SWIG_IsOK(res1
)) {
6743 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_min_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6745 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6746 result
= (wxSize
*)& ((arg1
)->min_size
);
6747 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6754 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_max_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6755 PyObject
*resultobj
= 0;
6756 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6757 wxSize
*arg2
= (wxSize
*) 0 ;
6762 PyObject
*swig_obj
[2] ;
6764 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_max_size_set",2,2,swig_obj
)) SWIG_fail
;
6765 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6766 if (!SWIG_IsOK(res1
)) {
6767 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_max_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6769 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6770 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6771 if (!SWIG_IsOK(res2
)) {
6772 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_max_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6774 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6775 if (arg1
) (arg1
)->max_size
= *arg2
;
6777 resultobj
= SWIG_Py_Void();
6784 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_max_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6785 PyObject
*resultobj
= 0;
6786 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6787 wxSize
*result
= 0 ;
6790 PyObject
*swig_obj
[1] ;
6792 if (!args
) SWIG_fail
;
6794 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6795 if (!SWIG_IsOK(res1
)) {
6796 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_max_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6798 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6799 result
= (wxSize
*)& ((arg1
)->max_size
);
6800 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6807 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_pos_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6808 PyObject
*resultobj
= 0;
6809 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6810 wxPoint
*arg2
= (wxPoint
*) 0 ;
6815 PyObject
*swig_obj
[2] ;
6817 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_floating_pos_set",2,2,swig_obj
)) SWIG_fail
;
6818 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6819 if (!SWIG_IsOK(res1
)) {
6820 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_pos_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6822 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6823 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPoint
, 0 | 0 );
6824 if (!SWIG_IsOK(res2
)) {
6825 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_floating_pos_set" "', expected argument " "2"" of type '" "wxPoint *""'");
6827 arg2
= reinterpret_cast< wxPoint
* >(argp2
);
6828 if (arg1
) (arg1
)->floating_pos
= *arg2
;
6830 resultobj
= SWIG_Py_Void();
6837 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_pos_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6838 PyObject
*resultobj
= 0;
6839 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6840 wxPoint
*result
= 0 ;
6843 PyObject
*swig_obj
[1] ;
6845 if (!args
) SWIG_fail
;
6847 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6848 if (!SWIG_IsOK(res1
)) {
6849 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_pos_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6851 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6852 result
= (wxPoint
*)& ((arg1
)->floating_pos
);
6853 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPoint
, 0 | 0 );
6860 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6861 PyObject
*resultobj
= 0;
6862 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6863 wxSize
*arg2
= (wxSize
*) 0 ;
6868 PyObject
*swig_obj
[2] ;
6870 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_floating_size_set",2,2,swig_obj
)) SWIG_fail
;
6871 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6872 if (!SWIG_IsOK(res1
)) {
6873 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6875 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6876 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6877 if (!SWIG_IsOK(res2
)) {
6878 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_floating_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6880 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6881 if (arg1
) (arg1
)->floating_size
= *arg2
;
6883 resultobj
= SWIG_Py_Void();
6890 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6891 PyObject
*resultobj
= 0;
6892 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6893 wxSize
*result
= 0 ;
6896 PyObject
*swig_obj
[1] ;
6898 if (!args
) SWIG_fail
;
6900 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6901 if (!SWIG_IsOK(res1
)) {
6902 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6904 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6905 result
= (wxSize
*)& ((arg1
)->floating_size
);
6906 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6913 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_proportion_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6914 PyObject
*resultobj
= 0;
6915 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6921 PyObject
*swig_obj
[2] ;
6923 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_proportion_set",2,2,swig_obj
)) SWIG_fail
;
6924 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6925 if (!SWIG_IsOK(res1
)) {
6926 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_proportion_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6928 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6929 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6930 if (!SWIG_IsOK(ecode2
)) {
6931 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_proportion_set" "', expected argument " "2"" of type '" "int""'");
6933 arg2
= static_cast< int >(val2
);
6934 if (arg1
) (arg1
)->dock_proportion
= arg2
;
6936 resultobj
= SWIG_Py_Void();
6943 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_proportion_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6944 PyObject
*resultobj
= 0;
6945 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6949 PyObject
*swig_obj
[1] ;
6951 if (!args
) SWIG_fail
;
6953 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6954 if (!SWIG_IsOK(res1
)) {
6955 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_proportion_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6957 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6958 result
= (int) ((arg1
)->dock_proportion
);
6959 resultobj
= SWIG_From_int(static_cast< int >(result
));
6966 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_buttons_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6967 PyObject
*resultobj
= 0;
6968 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6969 wxAuiPaneButtonArray arg2
;
6974 PyObject
*swig_obj
[2] ;
6976 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_buttons_set",2,2,swig_obj
)) SWIG_fail
;
6977 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6978 if (!SWIG_IsOK(res1
)) {
6979 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_buttons_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6981 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6983 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxAuiPaneButtonArray
, 0 | 0);
6984 if (!SWIG_IsOK(res2
)) {
6985 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxAuiPaneButtonArray""'");
6988 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiPaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxAuiPaneButtonArray""'");
6990 wxAuiPaneButtonArray
* temp
= reinterpret_cast< wxAuiPaneButtonArray
* >(argp2
);
6992 if (SWIG_IsNewObj(res2
)) delete temp
;
6995 if (arg1
) (arg1
)->buttons
= arg2
;
6997 resultobj
= SWIG_Py_Void();
7004 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_buttons_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7005 PyObject
*resultobj
= 0;
7006 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
7007 wxAuiPaneButtonArray result
;
7010 PyObject
*swig_obj
[1] ;
7012 if (!args
) 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_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
7018 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
7019 result
= ((arg1
)->buttons
);
7020 resultobj
= SWIG_NewPointerObj((new wxAuiPaneButtonArray(static_cast< const wxAuiPaneButtonArray
& >(result
))), SWIGTYPE_p_wxAuiPaneButtonArray
, SWIG_POINTER_OWN
| 0 );
7027 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7028 PyObject
*resultobj
= 0;
7029 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
7030 wxRect
*arg2
= (wxRect
*) 0 ;
7035 PyObject
*swig_obj
[2] ;
7037 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_rect_set",2,2,swig_obj
)) SWIG_fail
;
7038 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7039 if (!SWIG_IsOK(res1
)) {
7040 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_rect_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
7042 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
7043 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
7044 if (!SWIG_IsOK(res2
)) {
7045 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
7047 arg2
= reinterpret_cast< wxRect
* >(argp2
);
7048 if (arg1
) (arg1
)->rect
= *arg2
;
7050 resultobj
= SWIG_Py_Void();
7057 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7058 PyObject
*resultobj
= 0;
7059 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
7060 wxRect
*result
= 0 ;
7063 PyObject
*swig_obj
[1] ;
7065 if (!args
) SWIG_fail
;
7067 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7068 if (!SWIG_IsOK(res1
)) {
7069 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_rect_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
7071 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
7072 result
= (wxRect
*)& ((arg1
)->rect
);
7073 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
7080 SWIGINTERN PyObject
*AuiPaneInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7082 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7083 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiPaneInfo
, SWIG_NewClientData(obj
));
7084 return SWIG_Py_Void();
7087 SWIGINTERN PyObject
*AuiPaneInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7088 return SWIG_Python_InitShadowInstance(args
);
7091 SWIGINTERN PyObject
*_wrap_new_AuiManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7092 PyObject
*resultobj
= 0;
7093 wxWindow
*arg1
= (wxWindow
*) NULL
;
7094 int arg2
= (int) wxAUI_MGR_DEFAULT
;
7095 wxAuiManager
*result
= 0 ;
7100 PyObject
* obj0
= 0 ;
7101 PyObject
* obj1
= 0 ;
7102 char * kwnames
[] = {
7103 (char *) "managed_wnd",(char *) "flags", NULL
7106 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_AuiManager",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7108 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7109 if (!SWIG_IsOK(res1
)) {
7110 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiManager" "', expected argument " "1"" of type '" "wxWindow *""'");
7112 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
7115 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7116 if (!SWIG_IsOK(ecode2
)) {
7117 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiManager" "', expected argument " "2"" of type '" "int""'");
7119 arg2
= static_cast< int >(val2
);
7122 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7123 result
= (wxAuiManager
*)new wxAuiManager(arg1
,arg2
);
7124 wxPyEndAllowThreads(__tstate
);
7125 if (PyErr_Occurred()) SWIG_fail
;
7127 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, SWIG_POINTER_NEW
| 0 );
7134 SWIGINTERN PyObject
*_wrap_delete_AuiManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7135 PyObject
*resultobj
= 0;
7136 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7139 PyObject
*swig_obj
[1] ;
7141 if (!args
) SWIG_fail
;
7143 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, SWIG_POINTER_DISOWN
| 0 );
7144 if (!SWIG_IsOK(res1
)) {
7145 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiManager" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7147 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7149 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7152 wxPyEndAllowThreads(__tstate
);
7153 if (PyErr_Occurred()) SWIG_fail
;
7155 resultobj
= SWIG_Py_Void();
7162 SWIGINTERN PyObject
*_wrap_AuiManager_UnInit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7163 PyObject
*resultobj
= 0;
7164 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7167 PyObject
*swig_obj
[1] ;
7169 if (!args
) SWIG_fail
;
7171 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7172 if (!SWIG_IsOK(res1
)) {
7173 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_UnInit" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7175 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7177 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7179 wxPyEndAllowThreads(__tstate
);
7180 if (PyErr_Occurred()) SWIG_fail
;
7182 resultobj
= SWIG_Py_Void();
7189 SWIGINTERN PyObject
*_wrap_AuiManager_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7190 PyObject
*resultobj
= 0;
7191 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7197 PyObject
* obj0
= 0 ;
7198 PyObject
* obj1
= 0 ;
7199 char * kwnames
[] = {
7200 (char *) "self",(char *) "flags", NULL
7203 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7204 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7205 if (!SWIG_IsOK(res1
)) {
7206 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetFlags" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7208 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7209 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7210 if (!SWIG_IsOK(ecode2
)) {
7211 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManager_SetFlags" "', expected argument " "2"" of type '" "int""'");
7213 arg2
= static_cast< int >(val2
);
7215 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7216 (arg1
)->SetFlags(arg2
);
7217 wxPyEndAllowThreads(__tstate
);
7218 if (PyErr_Occurred()) SWIG_fail
;
7220 resultobj
= SWIG_Py_Void();
7227 SWIGINTERN PyObject
*_wrap_AuiManager_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7228 PyObject
*resultobj
= 0;
7229 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7233 PyObject
*swig_obj
[1] ;
7235 if (!args
) SWIG_fail
;
7237 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7238 if (!SWIG_IsOK(res1
)) {
7239 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetFlags" "', expected argument " "1"" of type '" "wxAuiManager const *""'");
7241 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7243 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7244 result
= (int)((wxAuiManager
const *)arg1
)->GetFlags();
7245 wxPyEndAllowThreads(__tstate
);
7246 if (PyErr_Occurred()) SWIG_fail
;
7248 resultobj
= SWIG_From_int(static_cast< int >(result
));
7255 SWIGINTERN PyObject
*_wrap_AuiManager_SetManagedWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7256 PyObject
*resultobj
= 0;
7257 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7258 wxWindow
*arg2
= (wxWindow
*) 0 ;
7263 PyObject
* obj0
= 0 ;
7264 PyObject
* obj1
= 0 ;
7265 char * kwnames
[] = {
7266 (char *) "self",(char *) "managed_wnd", NULL
7269 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SetManagedWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7270 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7271 if (!SWIG_IsOK(res1
)) {
7272 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetManagedWindow" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7274 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7275 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7276 if (!SWIG_IsOK(res2
)) {
7277 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_SetManagedWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
7279 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7281 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7282 (arg1
)->SetManagedWindow(arg2
);
7283 wxPyEndAllowThreads(__tstate
);
7284 if (PyErr_Occurred()) SWIG_fail
;
7286 resultobj
= SWIG_Py_Void();
7293 SWIGINTERN PyObject
*_wrap_AuiManager_GetManagedWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7294 PyObject
*resultobj
= 0;
7295 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7296 wxWindow
*result
= 0 ;
7299 PyObject
*swig_obj
[1] ;
7301 if (!args
) SWIG_fail
;
7303 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7304 if (!SWIG_IsOK(res1
)) {
7305 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetManagedWindow" "', expected argument " "1"" of type '" "wxAuiManager const *""'");
7307 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7309 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7310 result
= (wxWindow
*)((wxAuiManager
const *)arg1
)->GetManagedWindow();
7311 wxPyEndAllowThreads(__tstate
);
7312 if (PyErr_Occurred()) SWIG_fail
;
7315 resultobj
= wxPyMake_wxObject(result
, 0);
7323 SWIGINTERN PyObject
*_wrap_AuiManager_GetManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7324 PyObject
*resultobj
= 0;
7325 wxWindow
*arg1
= (wxWindow
*) 0 ;
7326 wxAuiManager
*result
= 0 ;
7329 PyObject
* obj0
= 0 ;
7330 char * kwnames
[] = {
7331 (char *) "window", NULL
7334 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:AuiManager_GetManager",kwnames
,&obj0
)) SWIG_fail
;
7335 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7336 if (!SWIG_IsOK(res1
)) {
7337 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetManager" "', expected argument " "1"" of type '" "wxWindow *""'");
7339 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
7341 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7342 result
= (wxAuiManager
*)wxAuiManager::GetManager(arg1
);
7343 wxPyEndAllowThreads(__tstate
);
7344 if (PyErr_Occurred()) SWIG_fail
;
7346 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7353 SWIGINTERN PyObject
*_wrap_AuiManager_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7354 PyObject
*resultobj
= 0;
7355 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7356 wxAuiDockArt
*arg2
= (wxAuiDockArt
*) 0 ;
7360 PyObject
* obj0
= 0 ;
7361 PyObject
* obj1
= 0 ;
7362 char * kwnames
[] = {
7363 (char *) "self",(char *) "art_provider", NULL
7366 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7367 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7368 if (!SWIG_IsOK(res1
)) {
7369 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7371 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7372 res2
= SWIG_ConvertPtr(obj1
, SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxAuiDockArt
, SWIG_POINTER_DISOWN
| 0 );
7373 if (!SWIG_IsOK(res2
)) {
7374 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiDockArt *""'");
7377 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7378 (arg1
)->SetArtProvider(arg2
);
7379 wxPyEndAllowThreads(__tstate
);
7380 if (PyErr_Occurred()) SWIG_fail
;
7382 resultobj
= SWIG_Py_Void();
7389 SWIGINTERN PyObject
*_wrap_AuiManager_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7390 PyObject
*resultobj
= 0;
7391 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7392 wxAuiDockArt
*result
= 0 ;
7395 PyObject
*swig_obj
[1] ;
7397 if (!args
) SWIG_fail
;
7399 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7400 if (!SWIG_IsOK(res1
)) {
7401 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiManager const *""'");
7403 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7405 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7406 result
= (wxAuiDockArt
*)((wxAuiManager
const *)arg1
)->GetArtProvider();
7407 wxPyEndAllowThreads(__tstate
);
7408 if (PyErr_Occurred()) SWIG_fail
;
7410 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
7417 SWIGINTERN PyObject
*_wrap_AuiManager__GetPaneByWidget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7418 PyObject
*resultobj
= 0;
7419 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7420 wxWindow
*arg2
= (wxWindow
*) 0 ;
7421 wxAuiPaneInfo
*result
= 0 ;
7426 PyObject
* obj0
= 0 ;
7427 PyObject
* obj1
= 0 ;
7428 char * kwnames
[] = {
7429 (char *) "self",(char *) "window", NULL
7432 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager__GetPaneByWidget",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7433 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7434 if (!SWIG_IsOK(res1
)) {
7435 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__GetPaneByWidget" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7437 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7438 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7439 if (!SWIG_IsOK(res2
)) {
7440 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager__GetPaneByWidget" "', expected argument " "2"" of type '" "wxWindow *""'");
7442 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7444 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7446 wxAuiPaneInfo
&_result_ref
= (arg1
)->GetPane(arg2
);
7447 result
= (wxAuiPaneInfo
*) &_result_ref
;
7449 wxPyEndAllowThreads(__tstate
);
7450 if (PyErr_Occurred()) SWIG_fail
;
7452 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7459 SWIGINTERN PyObject
*_wrap_AuiManager__GetPaneByName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7460 PyObject
*resultobj
= 0;
7461 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7462 wxString
*arg2
= 0 ;
7463 wxAuiPaneInfo
*result
= 0 ;
7466 bool temp2
= false ;
7467 PyObject
* obj0
= 0 ;
7468 PyObject
* obj1
= 0 ;
7469 char * kwnames
[] = {
7470 (char *) "self",(char *) "name", NULL
7473 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager__GetPaneByName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7474 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7475 if (!SWIG_IsOK(res1
)) {
7476 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__GetPaneByName" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7478 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7480 arg2
= wxString_in_helper(obj1
);
7481 if (arg2
== NULL
) SWIG_fail
;
7485 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7487 wxAuiPaneInfo
&_result_ref
= (arg1
)->GetPane((wxString
const &)*arg2
);
7488 result
= (wxAuiPaneInfo
*) &_result_ref
;
7490 wxPyEndAllowThreads(__tstate
);
7491 if (PyErr_Occurred()) SWIG_fail
;
7493 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7508 SWIGINTERN PyObject
*_wrap_AuiManager_GetAllPanes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7509 PyObject
*resultobj
= 0;
7510 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7511 wxAuiPaneInfoArray
*result
= 0 ;
7514 PyObject
*swig_obj
[1] ;
7516 if (!args
) SWIG_fail
;
7518 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7519 if (!SWIG_IsOK(res1
)) {
7520 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetAllPanes" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7522 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7524 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7526 wxAuiPaneInfoArray
&_result_ref
= (arg1
)->GetAllPanes();
7527 result
= (wxAuiPaneInfoArray
*) &_result_ref
;
7529 wxPyEndAllowThreads(__tstate
);
7530 if (PyErr_Occurred()) SWIG_fail
;
7533 resultobj
= PyList_New(0);
7534 for (size_t i
=0; i
< result
->GetCount(); i
++) {
7535 PyObject
* pane_obj
= SWIG_NewPointerObj((void*)(&result
->Item(i
)), SWIGTYPE_p_wxAuiPaneInfo
, 0);
7536 PyList_Append(resultobj
, pane_obj
);
7545 SWIGINTERN PyObject
*_wrap_AuiManager__AddPane1(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7546 PyObject
*resultobj
= 0;
7547 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7548 wxWindow
*arg2
= (wxWindow
*) 0 ;
7549 wxAuiPaneInfo
*arg3
= 0 ;
7557 PyObject
* obj0
= 0 ;
7558 PyObject
* obj1
= 0 ;
7559 PyObject
* obj2
= 0 ;
7560 char * kwnames
[] = {
7561 (char *) "self",(char *) "window",(char *) "pane_info", NULL
7564 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager__AddPane1",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7565 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7566 if (!SWIG_IsOK(res1
)) {
7567 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__AddPane1" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7569 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7570 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7571 if (!SWIG_IsOK(res2
)) {
7572 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager__AddPane1" "', expected argument " "2"" of type '" "wxWindow *""'");
7574 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7575 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
7576 if (!SWIG_IsOK(res3
)) {
7577 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager__AddPane1" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7580 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager__AddPane1" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7582 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
7584 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7585 result
= (bool)(arg1
)->AddPane(arg2
,(wxAuiPaneInfo
const &)*arg3
);
7586 wxPyEndAllowThreads(__tstate
);
7587 if (PyErr_Occurred()) SWIG_fail
;
7590 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7598 SWIGINTERN PyObject
*_wrap_AuiManager_AddPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7599 PyObject
*resultobj
= 0;
7600 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7601 wxWindow
*arg2
= (wxWindow
*) 0 ;
7602 wxAuiPaneInfo
*arg3
= 0 ;
7612 PyObject
* obj0
= 0 ;
7613 PyObject
* obj1
= 0 ;
7614 PyObject
* obj2
= 0 ;
7615 PyObject
* obj3
= 0 ;
7616 char * kwnames
[] = {
7617 (char *) "self",(char *) "window",(char *) "pane_info",(char *) "drop_pos", NULL
7620 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiManager_AddPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7621 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7622 if (!SWIG_IsOK(res1
)) {
7623 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_AddPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7625 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7626 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7627 if (!SWIG_IsOK(res2
)) {
7628 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_AddPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7630 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7631 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
7632 if (!SWIG_IsOK(res3
)) {
7633 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_AddPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7636 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_AddPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7638 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
7641 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7644 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7645 result
= (bool)(arg1
)->AddPane(arg2
,(wxAuiPaneInfo
const &)*arg3
,(wxPoint
const &)*arg4
);
7646 wxPyEndAllowThreads(__tstate
);
7647 if (PyErr_Occurred()) SWIG_fail
;
7650 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7658 SWIGINTERN PyObject
*_wrap_AuiManager__AddPane2(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7659 PyObject
*resultobj
= 0;
7660 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7661 wxWindow
*arg2
= (wxWindow
*) 0 ;
7662 int arg3
= (int) wxLEFT
;
7663 wxString
const &arg4_defvalue
= wxEmptyString
;
7664 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
7672 bool temp4
= false ;
7673 PyObject
* obj0
= 0 ;
7674 PyObject
* obj1
= 0 ;
7675 PyObject
* obj2
= 0 ;
7676 PyObject
* obj3
= 0 ;
7677 char * kwnames
[] = {
7678 (char *) "self",(char *) "window",(char *) "direction",(char *) "caption", NULL
7681 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:AuiManager__AddPane2",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7682 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7683 if (!SWIG_IsOK(res1
)) {
7684 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__AddPane2" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7686 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7687 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7688 if (!SWIG_IsOK(res2
)) {
7689 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager__AddPane2" "', expected argument " "2"" of type '" "wxWindow *""'");
7691 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7693 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
7694 if (!SWIG_IsOK(ecode3
)) {
7695 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiManager__AddPane2" "', expected argument " "3"" of type '" "int""'");
7697 arg3
= static_cast< int >(val3
);
7701 arg4
= wxString_in_helper(obj3
);
7702 if (arg4
== NULL
) SWIG_fail
;
7707 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7708 result
= (bool)(arg1
)->AddPane(arg2
,arg3
,(wxString
const &)*arg4
);
7709 wxPyEndAllowThreads(__tstate
);
7710 if (PyErr_Occurred()) SWIG_fail
;
7713 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7729 SWIGINTERN PyObject
*_wrap_AuiManager_InsertPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7730 PyObject
*resultobj
= 0;
7731 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7732 wxWindow
*arg2
= (wxWindow
*) 0 ;
7733 wxAuiPaneInfo
*arg3
= 0 ;
7734 int arg4
= (int) wxAUI_INSERT_PANE
;
7744 PyObject
* obj0
= 0 ;
7745 PyObject
* obj1
= 0 ;
7746 PyObject
* obj2
= 0 ;
7747 PyObject
* obj3
= 0 ;
7748 char * kwnames
[] = {
7749 (char *) "self",(char *) "window",(char *) "insert_location",(char *) "insert_level", NULL
7752 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:AuiManager_InsertPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7753 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7754 if (!SWIG_IsOK(res1
)) {
7755 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_InsertPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7757 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7758 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7759 if (!SWIG_IsOK(res2
)) {
7760 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_InsertPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7762 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7763 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
7764 if (!SWIG_IsOK(res3
)) {
7765 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_InsertPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7768 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_InsertPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7770 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
7772 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
7773 if (!SWIG_IsOK(ecode4
)) {
7774 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiManager_InsertPane" "', expected argument " "4"" of type '" "int""'");
7776 arg4
= static_cast< int >(val4
);
7779 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7780 result
= (bool)(arg1
)->InsertPane(arg2
,(wxAuiPaneInfo
const &)*arg3
,arg4
);
7781 wxPyEndAllowThreads(__tstate
);
7782 if (PyErr_Occurred()) SWIG_fail
;
7785 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7793 SWIGINTERN PyObject
*_wrap_AuiManager_DetachPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7794 PyObject
*resultobj
= 0;
7795 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7796 wxWindow
*arg2
= (wxWindow
*) 0 ;
7802 PyObject
* obj0
= 0 ;
7803 PyObject
* obj1
= 0 ;
7804 char * kwnames
[] = {
7805 (char *) "self",(char *) "window", NULL
7808 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_DetachPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7809 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7810 if (!SWIG_IsOK(res1
)) {
7811 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_DetachPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7813 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7814 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7815 if (!SWIG_IsOK(res2
)) {
7816 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_DetachPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7818 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7820 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7821 result
= (bool)(arg1
)->DetachPane(arg2
);
7822 wxPyEndAllowThreads(__tstate
);
7823 if (PyErr_Occurred()) SWIG_fail
;
7826 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7834 SWIGINTERN PyObject
*_wrap_AuiManager_Update(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7835 PyObject
*resultobj
= 0;
7836 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7839 PyObject
*swig_obj
[1] ;
7841 if (!args
) SWIG_fail
;
7843 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7844 if (!SWIG_IsOK(res1
)) {
7845 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_Update" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7847 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7849 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7851 wxPyEndAllowThreads(__tstate
);
7852 if (PyErr_Occurred()) SWIG_fail
;
7854 resultobj
= SWIG_Py_Void();
7861 SWIGINTERN PyObject
*_wrap_AuiManager_SavePaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7862 PyObject
*resultobj
= 0;
7863 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7864 wxAuiPaneInfo
*arg2
= 0 ;
7870 PyObject
* obj0
= 0 ;
7871 PyObject
* obj1
= 0 ;
7872 char * kwnames
[] = {
7873 (char *) "self",(char *) "pane", NULL
7876 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SavePaneInfo",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7877 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7878 if (!SWIG_IsOK(res1
)) {
7879 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SavePaneInfo" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7881 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7882 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
7883 if (!SWIG_IsOK(res2
)) {
7884 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_SavePaneInfo" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7887 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_SavePaneInfo" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7889 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
7891 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7892 result
= (arg1
)->SavePaneInfo(*arg2
);
7893 wxPyEndAllowThreads(__tstate
);
7894 if (PyErr_Occurred()) SWIG_fail
;
7898 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
7900 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
7909 SWIGINTERN PyObject
*_wrap_AuiManager_LoadPaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7910 PyObject
*resultobj
= 0;
7911 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7913 wxAuiPaneInfo
*arg3
= 0 ;
7918 PyObject
* obj0
= 0 ;
7919 PyObject
* obj1
= 0 ;
7920 PyObject
* obj2
= 0 ;
7921 char * kwnames
[] = {
7922 (char *) "self",(char *) "pane_part",(char *) "pane", NULL
7925 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_LoadPaneInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7926 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7927 if (!SWIG_IsOK(res1
)) {
7928 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_LoadPaneInfo" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7930 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7932 wxString
* sptr
= wxString_in_helper(obj1
);
7933 if (sptr
== NULL
) SWIG_fail
;
7937 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
7938 if (!SWIG_IsOK(res3
)) {
7939 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_LoadPaneInfo" "', expected argument " "3"" of type '" "wxAuiPaneInfo &""'");
7942 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_LoadPaneInfo" "', expected argument " "3"" of type '" "wxAuiPaneInfo &""'");
7944 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
7946 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7947 (arg1
)->LoadPaneInfo(arg2
,*arg3
);
7948 wxPyEndAllowThreads(__tstate
);
7949 if (PyErr_Occurred()) SWIG_fail
;
7951 resultobj
= SWIG_Py_Void();
7958 SWIGINTERN PyObject
*_wrap_AuiManager_SavePerspective(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7959 PyObject
*resultobj
= 0;
7960 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7964 PyObject
*swig_obj
[1] ;
7966 if (!args
) SWIG_fail
;
7968 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7969 if (!SWIG_IsOK(res1
)) {
7970 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SavePerspective" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7972 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7974 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7975 result
= (arg1
)->SavePerspective();
7976 wxPyEndAllowThreads(__tstate
);
7977 if (PyErr_Occurred()) SWIG_fail
;
7981 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
7983 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
7992 SWIGINTERN PyObject
*_wrap_AuiManager_LoadPerspective(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7993 PyObject
*resultobj
= 0;
7994 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7995 wxString
*arg2
= 0 ;
7996 bool arg3
= (bool) true ;
8000 bool temp2
= false ;
8003 PyObject
* obj0
= 0 ;
8004 PyObject
* obj1
= 0 ;
8005 PyObject
* obj2
= 0 ;
8006 char * kwnames
[] = {
8007 (char *) "self",(char *) "perspective",(char *) "update", NULL
8010 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:AuiManager_LoadPerspective",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8011 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8012 if (!SWIG_IsOK(res1
)) {
8013 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_LoadPerspective" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8015 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8017 arg2
= wxString_in_helper(obj1
);
8018 if (arg2
== NULL
) SWIG_fail
;
8022 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
8023 if (!SWIG_IsOK(ecode3
)) {
8024 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiManager_LoadPerspective" "', expected argument " "3"" of type '" "bool""'");
8026 arg3
= static_cast< bool >(val3
);
8029 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8030 result
= (bool)(arg1
)->LoadPerspective((wxString
const &)*arg2
,arg3
);
8031 wxPyEndAllowThreads(__tstate
);
8032 if (PyErr_Occurred()) SWIG_fail
;
8035 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8051 SWIGINTERN PyObject
*_wrap_AuiManager_SetDockSizeConstraint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8052 PyObject
*resultobj
= 0;
8053 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8062 PyObject
* obj0
= 0 ;
8063 PyObject
* obj1
= 0 ;
8064 PyObject
* obj2
= 0 ;
8065 char * kwnames
[] = {
8066 (char *) "self",(char *) "width_pct",(char *) "height_pct", NULL
8069 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_SetDockSizeConstraint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8070 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8071 if (!SWIG_IsOK(res1
)) {
8072 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetDockSizeConstraint" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8074 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8075 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
8076 if (!SWIG_IsOK(ecode2
)) {
8077 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManager_SetDockSizeConstraint" "', expected argument " "2"" of type '" "double""'");
8079 arg2
= static_cast< double >(val2
);
8080 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
8081 if (!SWIG_IsOK(ecode3
)) {
8082 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiManager_SetDockSizeConstraint" "', expected argument " "3"" of type '" "double""'");
8084 arg3
= static_cast< double >(val3
);
8086 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8087 (arg1
)->SetDockSizeConstraint(arg2
,arg3
);
8088 wxPyEndAllowThreads(__tstate
);
8089 if (PyErr_Occurred()) SWIG_fail
;
8091 resultobj
= SWIG_Py_Void();
8098 SWIGINTERN PyObject
*_wrap_AuiManager_GetDockSizeConstraint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8099 PyObject
*resultobj
= 0;
8100 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8101 double *arg2
= (double *) 0 ;
8102 double *arg3
= (double *) 0 ;
8109 PyObject
* obj0
= 0 ;
8110 PyObject
* obj1
= 0 ;
8111 PyObject
* obj2
= 0 ;
8112 char * kwnames
[] = {
8113 (char *) "self",(char *) "width_pct",(char *) "height_pct", NULL
8116 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_GetDockSizeConstraint",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8117 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8118 if (!SWIG_IsOK(res1
)) {
8119 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetDockSizeConstraint" "', expected argument " "1"" of type '" "wxAuiManager const *""'");
8121 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8122 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_double
, 0 | 0 );
8123 if (!SWIG_IsOK(res2
)) {
8124 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_GetDockSizeConstraint" "', expected argument " "2"" of type '" "double *""'");
8126 arg2
= reinterpret_cast< double * >(argp2
);
8127 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_double
, 0 | 0 );
8128 if (!SWIG_IsOK(res3
)) {
8129 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_GetDockSizeConstraint" "', expected argument " "3"" of type '" "double *""'");
8131 arg3
= reinterpret_cast< double * >(argp3
);
8133 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8134 ((wxAuiManager
const *)arg1
)->GetDockSizeConstraint(arg2
,arg3
);
8135 wxPyEndAllowThreads(__tstate
);
8136 if (PyErr_Occurred()) SWIG_fail
;
8138 resultobj
= SWIG_Py_Void();
8145 SWIGINTERN PyObject
*_wrap_AuiManager_ClosePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8146 PyObject
*resultobj
= 0;
8147 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8148 wxAuiPaneInfo
*arg2
= 0 ;
8153 PyObject
* obj0
= 0 ;
8154 PyObject
* obj1
= 0 ;
8155 char * kwnames
[] = {
8156 (char *) "self",(char *) "pane_info", NULL
8159 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_ClosePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8160 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8161 if (!SWIG_IsOK(res1
)) {
8162 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_ClosePane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8164 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8165 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
8166 if (!SWIG_IsOK(res2
)) {
8167 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_ClosePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8170 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_ClosePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8172 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
8174 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8175 (arg1
)->ClosePane(*arg2
);
8176 wxPyEndAllowThreads(__tstate
);
8177 if (PyErr_Occurred()) SWIG_fail
;
8179 resultobj
= SWIG_Py_Void();
8186 SWIGINTERN PyObject
*_wrap_AuiManager_MaximizePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8187 PyObject
*resultobj
= 0;
8188 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8189 wxAuiPaneInfo
*arg2
= 0 ;
8194 PyObject
* obj0
= 0 ;
8195 PyObject
* obj1
= 0 ;
8196 char * kwnames
[] = {
8197 (char *) "self",(char *) "pane_info", NULL
8200 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_MaximizePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8201 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8202 if (!SWIG_IsOK(res1
)) {
8203 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_MaximizePane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8205 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8206 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
8207 if (!SWIG_IsOK(res2
)) {
8208 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_MaximizePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8211 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_MaximizePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8213 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
8215 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8216 (arg1
)->MaximizePane(*arg2
);
8217 wxPyEndAllowThreads(__tstate
);
8218 if (PyErr_Occurred()) SWIG_fail
;
8220 resultobj
= SWIG_Py_Void();
8227 SWIGINTERN PyObject
*_wrap_AuiManager_RestorePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8228 PyObject
*resultobj
= 0;
8229 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8230 wxAuiPaneInfo
*arg2
= 0 ;
8235 PyObject
* obj0
= 0 ;
8236 PyObject
* obj1
= 0 ;
8237 char * kwnames
[] = {
8238 (char *) "self",(char *) "pane_info", NULL
8241 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_RestorePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8242 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8243 if (!SWIG_IsOK(res1
)) {
8244 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_RestorePane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8246 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8247 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
8248 if (!SWIG_IsOK(res2
)) {
8249 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_RestorePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8252 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_RestorePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8254 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
8256 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8257 (arg1
)->RestorePane(*arg2
);
8258 wxPyEndAllowThreads(__tstate
);
8259 if (PyErr_Occurred()) SWIG_fail
;
8261 resultobj
= SWIG_Py_Void();
8268 SWIGINTERN PyObject
*_wrap_AuiManager_RestoreMaximizedPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8269 PyObject
*resultobj
= 0;
8270 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8273 PyObject
*swig_obj
[1] ;
8275 if (!args
) SWIG_fail
;
8277 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8278 if (!SWIG_IsOK(res1
)) {
8279 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_RestoreMaximizedPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8281 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8283 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8284 (arg1
)->RestoreMaximizedPane();
8285 wxPyEndAllowThreads(__tstate
);
8286 if (PyErr_Occurred()) SWIG_fail
;
8288 resultobj
= SWIG_Py_Void();
8295 SWIGINTERN PyObject
*_wrap_AuiManager_CreateFloatingFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8296 PyObject
*resultobj
= 0;
8297 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8298 wxWindow
*arg2
= (wxWindow
*) 0 ;
8299 wxAuiPaneInfo
*arg3
= 0 ;
8300 wxAuiFloatingFrame
*result
= 0 ;
8307 PyObject
* obj0
= 0 ;
8308 PyObject
* obj1
= 0 ;
8309 PyObject
* obj2
= 0 ;
8310 char * kwnames
[] = {
8311 (char *) "self",(char *) "parent",(char *) "p", NULL
8314 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_CreateFloatingFrame",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8315 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8316 if (!SWIG_IsOK(res1
)) {
8317 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8319 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8320 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8321 if (!SWIG_IsOK(res2
)) {
8322 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "2"" of type '" "wxWindow *""'");
8324 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8325 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
8326 if (!SWIG_IsOK(res3
)) {
8327 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
8330 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
8332 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
8334 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8335 result
= (wxAuiFloatingFrame
*)(arg1
)->CreateFloatingFrame(arg2
,(wxAuiPaneInfo
const &)*arg3
);
8336 wxPyEndAllowThreads(__tstate
);
8337 if (PyErr_Occurred()) SWIG_fail
;
8339 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiFloatingFrame
, 0 | 0 );
8346 SWIGINTERN PyObject
*_wrap_AuiManager_StartPaneDrag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8347 PyObject
*resultobj
= 0;
8348 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8349 wxWindow
*arg2
= (wxWindow
*) 0 ;
8356 PyObject
* obj0
= 0 ;
8357 PyObject
* obj1
= 0 ;
8358 PyObject
* obj2
= 0 ;
8359 char * kwnames
[] = {
8360 (char *) "self",(char *) "pane_window",(char *) "offset", NULL
8363 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_StartPaneDrag",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8364 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8365 if (!SWIG_IsOK(res1
)) {
8366 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_StartPaneDrag" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8368 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8369 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8370 if (!SWIG_IsOK(res2
)) {
8371 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_StartPaneDrag" "', expected argument " "2"" of type '" "wxWindow *""'");
8373 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8376 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
8379 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8380 (arg1
)->StartPaneDrag(arg2
,(wxPoint
const &)*arg3
);
8381 wxPyEndAllowThreads(__tstate
);
8382 if (PyErr_Occurred()) SWIG_fail
;
8384 resultobj
= SWIG_Py_Void();
8391 SWIGINTERN PyObject
*_wrap_AuiManager_CalculateHintRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8392 PyObject
*resultobj
= 0;
8393 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8394 wxWindow
*arg2
= (wxWindow
*) 0 ;
8404 PyObject
* obj0
= 0 ;
8405 PyObject
* obj1
= 0 ;
8406 PyObject
* obj2
= 0 ;
8407 PyObject
* obj3
= 0 ;
8408 char * kwnames
[] = {
8409 (char *) "self",(char *) "pane_window",(char *) "pt",(char *) "offset", NULL
8412 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiManager_CalculateHintRect",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
8413 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8414 if (!SWIG_IsOK(res1
)) {
8415 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_CalculateHintRect" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8417 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8418 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8419 if (!SWIG_IsOK(res2
)) {
8420 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_CalculateHintRect" "', expected argument " "2"" of type '" "wxWindow *""'");
8422 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8425 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
8429 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
8432 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8433 result
= (arg1
)->CalculateHintRect(arg2
,(wxPoint
const &)*arg3
,(wxPoint
const &)*arg4
);
8434 wxPyEndAllowThreads(__tstate
);
8435 if (PyErr_Occurred()) SWIG_fail
;
8437 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
8444 SWIGINTERN PyObject
*_wrap_AuiManager_DrawHintRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8445 PyObject
*resultobj
= 0;
8446 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8447 wxWindow
*arg2
= (wxWindow
*) 0 ;
8456 PyObject
* obj0
= 0 ;
8457 PyObject
* obj1
= 0 ;
8458 PyObject
* obj2
= 0 ;
8459 PyObject
* obj3
= 0 ;
8460 char * kwnames
[] = {
8461 (char *) "self",(char *) "pane_window",(char *) "pt",(char *) "offset", NULL
8464 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiManager_DrawHintRect",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
8465 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8466 if (!SWIG_IsOK(res1
)) {
8467 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_DrawHintRect" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8469 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8470 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8471 if (!SWIG_IsOK(res2
)) {
8472 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_DrawHintRect" "', expected argument " "2"" of type '" "wxWindow *""'");
8474 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8477 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
8481 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
8484 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8485 (arg1
)->DrawHintRect(arg2
,(wxPoint
const &)*arg3
,(wxPoint
const &)*arg4
);
8486 wxPyEndAllowThreads(__tstate
);
8487 if (PyErr_Occurred()) SWIG_fail
;
8489 resultobj
= SWIG_Py_Void();
8496 SWIGINTERN PyObject
*_wrap_AuiManager_ShowHint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8497 PyObject
*resultobj
= 0;
8498 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8503 PyObject
* obj0
= 0 ;
8504 PyObject
* obj1
= 0 ;
8505 char * kwnames
[] = {
8506 (char *) "self",(char *) "rect", NULL
8509 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_ShowHint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8510 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8511 if (!SWIG_IsOK(res1
)) {
8512 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_ShowHint" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8514 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8517 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
8520 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8521 (arg1
)->ShowHint((wxRect
const &)*arg2
);
8522 wxPyEndAllowThreads(__tstate
);
8523 if (PyErr_Occurred()) SWIG_fail
;
8525 resultobj
= SWIG_Py_Void();
8532 SWIGINTERN PyObject
*_wrap_AuiManager_HideHint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8533 PyObject
*resultobj
= 0;
8534 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8537 PyObject
*swig_obj
[1] ;
8539 if (!args
) SWIG_fail
;
8541 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8542 if (!SWIG_IsOK(res1
)) {
8543 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_HideHint" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8545 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8547 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8549 wxPyEndAllowThreads(__tstate
);
8550 if (PyErr_Occurred()) SWIG_fail
;
8552 resultobj
= SWIG_Py_Void();
8559 SWIGINTERN PyObject
*_wrap_AuiManager_OnRender(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8560 PyObject
*resultobj
= 0;
8561 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8562 wxAuiManagerEvent
*arg2
= 0 ;
8567 PyObject
* obj0
= 0 ;
8568 PyObject
* obj1
= 0 ;
8569 char * kwnames
[] = {
8570 (char *) "self",(char *) "evt", NULL
8573 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_OnRender",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8574 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8575 if (!SWIG_IsOK(res1
)) {
8576 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_OnRender" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8578 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8579 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiManagerEvent
, 0 );
8580 if (!SWIG_IsOK(res2
)) {
8581 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_OnRender" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8584 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_OnRender" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8586 arg2
= reinterpret_cast< wxAuiManagerEvent
* >(argp2
);
8588 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8589 (arg1
)->OnRender(*arg2
);
8590 wxPyEndAllowThreads(__tstate
);
8591 if (PyErr_Occurred()) SWIG_fail
;
8593 resultobj
= SWIG_Py_Void();
8600 SWIGINTERN PyObject
*_wrap_AuiManager_OnPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8601 PyObject
*resultobj
= 0;
8602 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8603 wxAuiManagerEvent
*arg2
= 0 ;
8608 PyObject
* obj0
= 0 ;
8609 PyObject
* obj1
= 0 ;
8610 char * kwnames
[] = {
8611 (char *) "self",(char *) "evt", NULL
8614 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_OnPaneButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8615 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8616 if (!SWIG_IsOK(res1
)) {
8617 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_OnPaneButton" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8619 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8620 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiManagerEvent
, 0 );
8621 if (!SWIG_IsOK(res2
)) {
8622 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_OnPaneButton" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8625 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_OnPaneButton" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8627 arg2
= reinterpret_cast< wxAuiManagerEvent
* >(argp2
);
8629 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8630 (arg1
)->OnPaneButton(*arg2
);
8631 wxPyEndAllowThreads(__tstate
);
8632 if (PyErr_Occurred()) SWIG_fail
;
8634 resultobj
= SWIG_Py_Void();
8641 SWIGINTERN PyObject
*AuiManager_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8643 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8644 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiManager
, SWIG_NewClientData(obj
));
8645 return SWIG_Py_Void();
8648 SWIGINTERN PyObject
*AuiManager_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8649 return SWIG_Python_InitShadowInstance(args
);
8652 SWIGINTERN PyObject
*_wrap_new_AuiManagerEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8653 PyObject
*resultobj
= 0;
8654 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
8655 wxAuiManagerEvent
*result
= 0 ;
8658 PyObject
* obj0
= 0 ;
8659 char * kwnames
[] = {
8660 (char *) "type", NULL
8663 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_AuiManagerEvent",kwnames
,&obj0
)) SWIG_fail
;
8665 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
8666 if (!SWIG_IsOK(ecode1
)) {
8667 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_AuiManagerEvent" "', expected argument " "1"" of type '" "wxEventType""'");
8669 arg1
= static_cast< wxEventType
>(val1
);
8672 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8673 result
= (wxAuiManagerEvent
*)new wxAuiManagerEvent(arg1
);
8674 wxPyEndAllowThreads(__tstate
);
8675 if (PyErr_Occurred()) SWIG_fail
;
8677 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManagerEvent
, SWIG_POINTER_NEW
| 0 );
8684 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_Clone(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8685 PyObject
*resultobj
= 0;
8686 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8687 wxEvent
*result
= 0 ;
8690 PyObject
*swig_obj
[1] ;
8692 if (!args
) SWIG_fail
;
8694 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8695 if (!SWIG_IsOK(res1
)) {
8696 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_Clone" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8698 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8700 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8701 result
= (wxEvent
*)((wxAuiManagerEvent
const *)arg1
)->Clone();
8702 wxPyEndAllowThreads(__tstate
);
8703 if (PyErr_Occurred()) SWIG_fail
;
8705 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxEvent
, 0 | 0 );
8712 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8713 PyObject
*resultobj
= 0;
8714 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8715 wxAuiManager
*arg2
= (wxAuiManager
*) 0 ;
8720 PyObject
* obj0
= 0 ;
8721 PyObject
* obj1
= 0 ;
8722 char * kwnames
[] = {
8723 (char *) "self",(char *) "mgr", NULL
8726 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetManager",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8727 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8728 if (!SWIG_IsOK(res1
)) {
8729 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetManager" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8731 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8732 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8733 if (!SWIG_IsOK(res2
)) {
8734 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_SetManager" "', expected argument " "2"" of type '" "wxAuiManager *""'");
8736 arg2
= reinterpret_cast< wxAuiManager
* >(argp2
);
8738 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8739 (arg1
)->SetManager(arg2
);
8740 wxPyEndAllowThreads(__tstate
);
8741 if (PyErr_Occurred()) SWIG_fail
;
8743 resultobj
= SWIG_Py_Void();
8750 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8751 PyObject
*resultobj
= 0;
8752 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8753 wxAuiPaneInfo
*arg2
= (wxAuiPaneInfo
*) 0 ;
8758 PyObject
* obj0
= 0 ;
8759 PyObject
* obj1
= 0 ;
8760 char * kwnames
[] = {
8761 (char *) "self",(char *) "p", NULL
8764 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8765 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8766 if (!SWIG_IsOK(res1
)) {
8767 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetPane" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8769 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8770 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
8771 if (!SWIG_IsOK(res2
)) {
8772 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_SetPane" "', expected argument " "2"" of type '" "wxAuiPaneInfo *""'");
8774 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
8776 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8777 (arg1
)->SetPane(arg2
);
8778 wxPyEndAllowThreads(__tstate
);
8779 if (PyErr_Occurred()) SWIG_fail
;
8781 resultobj
= SWIG_Py_Void();
8788 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8789 PyObject
*resultobj
= 0;
8790 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8796 PyObject
* obj0
= 0 ;
8797 PyObject
* obj1
= 0 ;
8798 char * kwnames
[] = {
8799 (char *) "self",(char *) "b", NULL
8802 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8803 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8804 if (!SWIG_IsOK(res1
)) {
8805 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetButton" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8807 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8808 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8809 if (!SWIG_IsOK(ecode2
)) {
8810 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_SetButton" "', expected argument " "2"" of type '" "int""'");
8812 arg2
= static_cast< int >(val2
);
8814 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8815 (arg1
)->SetButton(arg2
);
8816 wxPyEndAllowThreads(__tstate
);
8817 if (PyErr_Occurred()) SWIG_fail
;
8819 resultobj
= SWIG_Py_Void();
8826 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8827 PyObject
*resultobj
= 0;
8828 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8829 wxDC
*arg2
= (wxDC
*) 0 ;
8834 PyObject
* obj0
= 0 ;
8835 PyObject
* obj1
= 0 ;
8836 char * kwnames
[] = {
8837 (char *) "self",(char *) "pdc", NULL
8840 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetDC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8841 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8842 if (!SWIG_IsOK(res1
)) {
8843 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetDC" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8845 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8846 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
8847 if (!SWIG_IsOK(res2
)) {
8848 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_SetDC" "', expected argument " "2"" of type '" "wxDC *""'");
8850 arg2
= reinterpret_cast< wxDC
* >(argp2
);
8852 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8853 (arg1
)->SetDC(arg2
);
8854 wxPyEndAllowThreads(__tstate
);
8855 if (PyErr_Occurred()) SWIG_fail
;
8857 resultobj
= SWIG_Py_Void();
8864 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8865 PyObject
*resultobj
= 0;
8866 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8867 wxAuiManager
*result
= 0 ;
8870 PyObject
*swig_obj
[1] ;
8872 if (!args
) SWIG_fail
;
8874 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8875 if (!SWIG_IsOK(res1
)) {
8876 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetManager" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8878 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8880 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8881 result
= (wxAuiManager
*)((wxAuiManagerEvent
const *)arg1
)->GetManager();
8882 wxPyEndAllowThreads(__tstate
);
8883 if (PyErr_Occurred()) SWIG_fail
;
8885 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8892 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8893 PyObject
*resultobj
= 0;
8894 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8895 wxAuiPaneInfo
*result
= 0 ;
8898 PyObject
*swig_obj
[1] ;
8900 if (!args
) SWIG_fail
;
8902 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8903 if (!SWIG_IsOK(res1
)) {
8904 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetPane" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8906 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8908 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8909 result
= (wxAuiPaneInfo
*)((wxAuiManagerEvent
const *)arg1
)->GetPane();
8910 wxPyEndAllowThreads(__tstate
);
8911 if (PyErr_Occurred()) SWIG_fail
;
8913 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
8920 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8921 PyObject
*resultobj
= 0;
8922 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8926 PyObject
*swig_obj
[1] ;
8928 if (!args
) SWIG_fail
;
8930 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8931 if (!SWIG_IsOK(res1
)) {
8932 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetButton" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8934 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8936 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8937 result
= (int)((wxAuiManagerEvent
const *)arg1
)->GetButton();
8938 wxPyEndAllowThreads(__tstate
);
8939 if (PyErr_Occurred()) SWIG_fail
;
8941 resultobj
= SWIG_From_int(static_cast< int >(result
));
8948 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8949 PyObject
*resultobj
= 0;
8950 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8954 PyObject
*swig_obj
[1] ;
8956 if (!args
) SWIG_fail
;
8958 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8959 if (!SWIG_IsOK(res1
)) {
8960 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetDC" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8962 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8964 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8965 result
= (wxDC
*)((wxAuiManagerEvent
const *)arg1
)->GetDC();
8966 wxPyEndAllowThreads(__tstate
);
8967 if (PyErr_Occurred()) SWIG_fail
;
8970 resultobj
= wxPyMake_wxObject(result
, (bool)0);
8978 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_Veto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8979 PyObject
*resultobj
= 0;
8980 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8981 bool arg2
= (bool) true ;
8986 PyObject
* obj0
= 0 ;
8987 PyObject
* obj1
= 0 ;
8988 char * kwnames
[] = {
8989 (char *) "self",(char *) "veto", NULL
8992 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiManagerEvent_Veto",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8993 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8994 if (!SWIG_IsOK(res1
)) {
8995 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_Veto" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8997 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8999 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
9000 if (!SWIG_IsOK(ecode2
)) {
9001 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_Veto" "', expected argument " "2"" of type '" "bool""'");
9003 arg2
= static_cast< bool >(val2
);
9006 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9008 wxPyEndAllowThreads(__tstate
);
9009 if (PyErr_Occurred()) SWIG_fail
;
9011 resultobj
= SWIG_Py_Void();
9018 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9019 PyObject
*resultobj
= 0;
9020 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9024 PyObject
*swig_obj
[1] ;
9026 if (!args
) SWIG_fail
;
9028 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9029 if (!SWIG_IsOK(res1
)) {
9030 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetVeto" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
9032 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9034 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9035 result
= (bool)((wxAuiManagerEvent
const *)arg1
)->GetVeto();
9036 wxPyEndAllowThreads(__tstate
);
9037 if (PyErr_Occurred()) SWIG_fail
;
9040 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9048 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetCanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9049 PyObject
*resultobj
= 0;
9050 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9056 PyObject
* obj0
= 0 ;
9057 PyObject
* obj1
= 0 ;
9058 char * kwnames
[] = {
9059 (char *) "self",(char *) "can_veto", NULL
9062 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetCanVeto",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9063 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9064 if (!SWIG_IsOK(res1
)) {
9065 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetCanVeto" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9067 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9068 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
9069 if (!SWIG_IsOK(ecode2
)) {
9070 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_SetCanVeto" "', expected argument " "2"" of type '" "bool""'");
9072 arg2
= static_cast< bool >(val2
);
9074 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9075 (arg1
)->SetCanVeto(arg2
);
9076 wxPyEndAllowThreads(__tstate
);
9077 if (PyErr_Occurred()) SWIG_fail
;
9079 resultobj
= SWIG_Py_Void();
9086 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_CanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9087 PyObject
*resultobj
= 0;
9088 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9092 PyObject
*swig_obj
[1] ;
9094 if (!args
) SWIG_fail
;
9096 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9097 if (!SWIG_IsOK(res1
)) {
9098 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_CanVeto" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
9100 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9102 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9103 result
= (bool)((wxAuiManagerEvent
const *)arg1
)->CanVeto();
9104 wxPyEndAllowThreads(__tstate
);
9105 if (PyErr_Occurred()) SWIG_fail
;
9108 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9116 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_manager_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9117 PyObject
*resultobj
= 0;
9118 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9119 wxAuiManager
*arg2
= (wxAuiManager
*) 0 ;
9124 PyObject
*swig_obj
[2] ;
9126 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_manager_set",2,2,swig_obj
)) SWIG_fail
;
9127 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9128 if (!SWIG_IsOK(res1
)) {
9129 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_manager_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9131 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9132 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiManager
, SWIG_POINTER_DISOWN
| 0 );
9133 if (!SWIG_IsOK(res2
)) {
9134 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_manager_set" "', expected argument " "2"" of type '" "wxAuiManager *""'");
9136 arg2
= reinterpret_cast< wxAuiManager
* >(argp2
);
9137 if (arg1
) (arg1
)->manager
= arg2
;
9139 resultobj
= SWIG_Py_Void();
9146 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_manager_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9147 PyObject
*resultobj
= 0;
9148 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9149 wxAuiManager
*result
= 0 ;
9152 PyObject
*swig_obj
[1] ;
9154 if (!args
) SWIG_fail
;
9156 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9157 if (!SWIG_IsOK(res1
)) {
9158 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_manager_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9160 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9161 result
= (wxAuiManager
*) ((arg1
)->manager
);
9162 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 | 0 );
9169 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9170 PyObject
*resultobj
= 0;
9171 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9172 wxAuiPaneInfo
*arg2
= (wxAuiPaneInfo
*) 0 ;
9177 PyObject
*swig_obj
[2] ;
9179 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_pane_set",2,2,swig_obj
)) SWIG_fail
;
9180 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9181 if (!SWIG_IsOK(res1
)) {
9182 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_pane_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9184 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9185 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
9186 if (!SWIG_IsOK(res2
)) {
9187 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_pane_set" "', expected argument " "2"" of type '" "wxAuiPaneInfo *""'");
9189 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
9190 if (arg1
) (arg1
)->pane
= arg2
;
9192 resultobj
= SWIG_Py_Void();
9199 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9200 PyObject
*resultobj
= 0;
9201 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9202 wxAuiPaneInfo
*result
= 0 ;
9205 PyObject
*swig_obj
[1] ;
9207 if (!args
) SWIG_fail
;
9209 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9210 if (!SWIG_IsOK(res1
)) {
9211 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_pane_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9213 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9214 result
= (wxAuiPaneInfo
*) ((arg1
)->pane
);
9215 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
9222 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9223 PyObject
*resultobj
= 0;
9224 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9230 PyObject
*swig_obj
[2] ;
9232 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_button_set",2,2,swig_obj
)) SWIG_fail
;
9233 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9234 if (!SWIG_IsOK(res1
)) {
9235 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_button_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9237 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9238 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9239 if (!SWIG_IsOK(ecode2
)) {
9240 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_button_set" "', expected argument " "2"" of type '" "int""'");
9242 arg2
= static_cast< int >(val2
);
9243 if (arg1
) (arg1
)->button
= arg2
;
9245 resultobj
= SWIG_Py_Void();
9252 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9253 PyObject
*resultobj
= 0;
9254 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9258 PyObject
*swig_obj
[1] ;
9260 if (!args
) SWIG_fail
;
9262 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9263 if (!SWIG_IsOK(res1
)) {
9264 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_button_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9266 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9267 result
= (int) ((arg1
)->button
);
9268 resultobj
= SWIG_From_int(static_cast< int >(result
));
9275 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_veto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9276 PyObject
*resultobj
= 0;
9277 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9283 PyObject
*swig_obj
[2] ;
9285 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_veto_flag_set",2,2,swig_obj
)) SWIG_fail
;
9286 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9287 if (!SWIG_IsOK(res1
)) {
9288 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_veto_flag_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9290 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9291 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9292 if (!SWIG_IsOK(ecode2
)) {
9293 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_veto_flag_set" "', expected argument " "2"" of type '" "bool""'");
9295 arg2
= static_cast< bool >(val2
);
9296 if (arg1
) (arg1
)->veto_flag
= arg2
;
9298 resultobj
= SWIG_Py_Void();
9305 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_veto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9306 PyObject
*resultobj
= 0;
9307 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9311 PyObject
*swig_obj
[1] ;
9313 if (!args
) SWIG_fail
;
9315 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9316 if (!SWIG_IsOK(res1
)) {
9317 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_veto_flag_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9319 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9320 result
= (bool) ((arg1
)->veto_flag
);
9322 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9330 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_canveto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9331 PyObject
*resultobj
= 0;
9332 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9338 PyObject
*swig_obj
[2] ;
9340 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_canveto_flag_set",2,2,swig_obj
)) SWIG_fail
;
9341 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9342 if (!SWIG_IsOK(res1
)) {
9343 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_canveto_flag_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9345 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9346 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9347 if (!SWIG_IsOK(ecode2
)) {
9348 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_canveto_flag_set" "', expected argument " "2"" of type '" "bool""'");
9350 arg2
= static_cast< bool >(val2
);
9351 if (arg1
) (arg1
)->canveto_flag
= arg2
;
9353 resultobj
= SWIG_Py_Void();
9360 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_canveto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9361 PyObject
*resultobj
= 0;
9362 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9366 PyObject
*swig_obj
[1] ;
9368 if (!args
) SWIG_fail
;
9370 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9371 if (!SWIG_IsOK(res1
)) {
9372 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_canveto_flag_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9374 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9375 result
= (bool) ((arg1
)->canveto_flag
);
9377 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9385 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_dc_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9386 PyObject
*resultobj
= 0;
9387 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9388 wxDC
*arg2
= (wxDC
*) 0 ;
9393 PyObject
*swig_obj
[2] ;
9395 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_dc_set",2,2,swig_obj
)) SWIG_fail
;
9396 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9397 if (!SWIG_IsOK(res1
)) {
9398 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_dc_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9400 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9401 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxDC
, SWIG_POINTER_DISOWN
| 0 );
9402 if (!SWIG_IsOK(res2
)) {
9403 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_dc_set" "', expected argument " "2"" of type '" "wxDC *""'");
9405 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9406 if (arg1
) (arg1
)->dc
= arg2
;
9408 resultobj
= SWIG_Py_Void();
9415 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_dc_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9416 PyObject
*resultobj
= 0;
9417 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9421 PyObject
*swig_obj
[1] ;
9423 if (!args
) SWIG_fail
;
9425 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9426 if (!SWIG_IsOK(res1
)) {
9427 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_dc_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9429 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9430 result
= (wxDC
*) ((arg1
)->dc
);
9432 resultobj
= wxPyMake_wxObject(result
, (bool)0);
9440 SWIGINTERN PyObject
*AuiManagerEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9442 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9443 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiManagerEvent
, SWIG_NewClientData(obj
));
9444 return SWIG_Py_Void();
9447 SWIGINTERN PyObject
*AuiManagerEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9448 return SWIG_Python_InitShadowInstance(args
);
9451 SWIGINTERN PyObject
*_wrap_new_AuiDockInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9452 PyObject
*resultobj
= 0;
9453 wxAuiDockInfo
*result
= 0 ;
9455 if (!SWIG_Python_UnpackTuple(args
,"new_AuiDockInfo",0,0,0)) SWIG_fail
;
9457 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9458 result
= (wxAuiDockInfo
*)new wxAuiDockInfo();
9459 wxPyEndAllowThreads(__tstate
);
9460 if (PyErr_Occurred()) SWIG_fail
;
9462 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDockInfo
, SWIG_POINTER_NEW
| 0 );
9469 SWIGINTERN PyObject
*_wrap_AuiDockInfo_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9470 PyObject
*resultobj
= 0;
9471 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9475 PyObject
*swig_obj
[1] ;
9477 if (!args
) SWIG_fail
;
9479 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9480 if (!SWIG_IsOK(res1
)) {
9481 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_IsOk" "', expected argument " "1"" of type '" "wxAuiDockInfo const *""'");
9483 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9485 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9486 result
= (bool)((wxAuiDockInfo
const *)arg1
)->IsOk();
9487 wxPyEndAllowThreads(__tstate
);
9488 if (PyErr_Occurred()) SWIG_fail
;
9491 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9499 SWIGINTERN PyObject
*_wrap_AuiDockInfo_IsHorizontal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9500 PyObject
*resultobj
= 0;
9501 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9505 PyObject
*swig_obj
[1] ;
9507 if (!args
) SWIG_fail
;
9509 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9510 if (!SWIG_IsOK(res1
)) {
9511 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_IsHorizontal" "', expected argument " "1"" of type '" "wxAuiDockInfo const *""'");
9513 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9515 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9516 result
= (bool)((wxAuiDockInfo
const *)arg1
)->IsHorizontal();
9517 wxPyEndAllowThreads(__tstate
);
9518 if (PyErr_Occurred()) SWIG_fail
;
9521 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9529 SWIGINTERN PyObject
*_wrap_AuiDockInfo_IsVertical(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9530 PyObject
*resultobj
= 0;
9531 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9535 PyObject
*swig_obj
[1] ;
9537 if (!args
) SWIG_fail
;
9539 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9540 if (!SWIG_IsOK(res1
)) {
9541 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_IsVertical" "', expected argument " "1"" of type '" "wxAuiDockInfo const *""'");
9543 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9545 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9546 result
= (bool)((wxAuiDockInfo
const *)arg1
)->IsVertical();
9547 wxPyEndAllowThreads(__tstate
);
9548 if (PyErr_Occurred()) SWIG_fail
;
9551 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9559 SWIGINTERN PyObject
*_wrap_AuiDockInfo_panes_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9560 PyObject
*resultobj
= 0;
9561 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9562 wxAuiPaneInfoPtrArray arg2
;
9567 PyObject
*swig_obj
[2] ;
9569 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_panes_set",2,2,swig_obj
)) SWIG_fail
;
9570 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9571 if (!SWIG_IsOK(res1
)) {
9572 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_panes_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9574 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9576 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxAuiPaneInfoPtrArray
, 0 | 0);
9577 if (!SWIG_IsOK(res2
)) {
9578 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockInfo_panes_set" "', expected argument " "2"" of type '" "wxAuiPaneInfoPtrArray""'");
9581 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockInfo_panes_set" "', expected argument " "2"" of type '" "wxAuiPaneInfoPtrArray""'");
9583 wxAuiPaneInfoPtrArray
* temp
= reinterpret_cast< wxAuiPaneInfoPtrArray
* >(argp2
);
9585 if (SWIG_IsNewObj(res2
)) delete temp
;
9588 if (arg1
) (arg1
)->panes
= arg2
;
9590 resultobj
= SWIG_Py_Void();
9597 SWIGINTERN PyObject
*_wrap_AuiDockInfo_panes_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9598 PyObject
*resultobj
= 0;
9599 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9600 wxAuiPaneInfoPtrArray result
;
9603 PyObject
*swig_obj
[1] ;
9605 if (!args
) SWIG_fail
;
9607 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9608 if (!SWIG_IsOK(res1
)) {
9609 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_panes_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9611 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9612 result
= ((arg1
)->panes
);
9613 resultobj
= SWIG_NewPointerObj((new wxAuiPaneInfoPtrArray(static_cast< const wxAuiPaneInfoPtrArray
& >(result
))), SWIGTYPE_p_wxAuiPaneInfoPtrArray
, SWIG_POINTER_OWN
| 0 );
9620 SWIGINTERN PyObject
*_wrap_AuiDockInfo_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9621 PyObject
*resultobj
= 0;
9622 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9623 wxRect
*arg2
= (wxRect
*) 0 ;
9628 PyObject
*swig_obj
[2] ;
9630 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_rect_set",2,2,swig_obj
)) SWIG_fail
;
9631 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9632 if (!SWIG_IsOK(res1
)) {
9633 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_rect_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9635 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9636 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
9637 if (!SWIG_IsOK(res2
)) {
9638 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
9640 arg2
= reinterpret_cast< wxRect
* >(argp2
);
9641 if (arg1
) (arg1
)->rect
= *arg2
;
9643 resultobj
= SWIG_Py_Void();
9650 SWIGINTERN PyObject
*_wrap_AuiDockInfo_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9651 PyObject
*resultobj
= 0;
9652 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9653 wxRect
*result
= 0 ;
9656 PyObject
*swig_obj
[1] ;
9658 if (!args
) SWIG_fail
;
9660 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9661 if (!SWIG_IsOK(res1
)) {
9662 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_rect_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9664 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9665 result
= (wxRect
*)& ((arg1
)->rect
);
9666 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
9673 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_direction_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9674 PyObject
*resultobj
= 0;
9675 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9681 PyObject
*swig_obj
[2] ;
9683 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
;
9684 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9685 if (!SWIG_IsOK(res1
)) {
9686 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9688 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9689 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9690 if (!SWIG_IsOK(ecode2
)) {
9691 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'");
9693 arg2
= static_cast< int >(val2
);
9694 if (arg1
) (arg1
)->dock_direction
= arg2
;
9696 resultobj
= SWIG_Py_Void();
9703 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_direction_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9704 PyObject
*resultobj
= 0;
9705 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9709 PyObject
*swig_obj
[1] ;
9711 if (!args
) SWIG_fail
;
9713 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9714 if (!SWIG_IsOK(res1
)) {
9715 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9717 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9718 result
= (int) ((arg1
)->dock_direction
);
9719 resultobj
= SWIG_From_int(static_cast< int >(result
));
9726 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_layer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9727 PyObject
*resultobj
= 0;
9728 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9734 PyObject
*swig_obj
[2] ;
9736 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
;
9737 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9738 if (!SWIG_IsOK(res1
)) {
9739 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9741 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9742 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9743 if (!SWIG_IsOK(ecode2
)) {
9744 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'");
9746 arg2
= static_cast< int >(val2
);
9747 if (arg1
) (arg1
)->dock_layer
= arg2
;
9749 resultobj
= SWIG_Py_Void();
9756 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_layer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9757 PyObject
*resultobj
= 0;
9758 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9762 PyObject
*swig_obj
[1] ;
9764 if (!args
) SWIG_fail
;
9766 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9767 if (!SWIG_IsOK(res1
)) {
9768 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9770 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9771 result
= (int) ((arg1
)->dock_layer
);
9772 resultobj
= SWIG_From_int(static_cast< int >(result
));
9779 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_row_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9780 PyObject
*resultobj
= 0;
9781 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9787 PyObject
*swig_obj
[2] ;
9789 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
;
9790 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9791 if (!SWIG_IsOK(res1
)) {
9792 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_row_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9794 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9795 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9796 if (!SWIG_IsOK(ecode2
)) {
9797 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'");
9799 arg2
= static_cast< int >(val2
);
9800 if (arg1
) (arg1
)->dock_row
= arg2
;
9802 resultobj
= SWIG_Py_Void();
9809 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_row_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9810 PyObject
*resultobj
= 0;
9811 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9815 PyObject
*swig_obj
[1] ;
9817 if (!args
) SWIG_fail
;
9819 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9820 if (!SWIG_IsOK(res1
)) {
9821 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_row_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9823 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9824 result
= (int) ((arg1
)->dock_row
);
9825 resultobj
= SWIG_From_int(static_cast< int >(result
));
9832 SWIGINTERN PyObject
*_wrap_AuiDockInfo_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9833 PyObject
*resultobj
= 0;
9834 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9840 PyObject
*swig_obj
[2] ;
9842 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_size_set",2,2,swig_obj
)) SWIG_fail
;
9843 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9844 if (!SWIG_IsOK(res1
)) {
9845 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_size_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9847 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9848 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9849 if (!SWIG_IsOK(ecode2
)) {
9850 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_size_set" "', expected argument " "2"" of type '" "int""'");
9852 arg2
= static_cast< int >(val2
);
9853 if (arg1
) (arg1
)->size
= arg2
;
9855 resultobj
= SWIG_Py_Void();
9862 SWIGINTERN PyObject
*_wrap_AuiDockInfo_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9863 PyObject
*resultobj
= 0;
9864 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9868 PyObject
*swig_obj
[1] ;
9870 if (!args
) SWIG_fail
;
9872 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9873 if (!SWIG_IsOK(res1
)) {
9874 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_size_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9876 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9877 result
= (int) ((arg1
)->size
);
9878 resultobj
= SWIG_From_int(static_cast< int >(result
));
9885 SWIGINTERN PyObject
*_wrap_AuiDockInfo_min_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9886 PyObject
*resultobj
= 0;
9887 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9893 PyObject
*swig_obj
[2] ;
9895 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
;
9896 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9897 if (!SWIG_IsOK(res1
)) {
9898 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_min_size_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9900 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9901 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9902 if (!SWIG_IsOK(ecode2
)) {
9903 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_min_size_set" "', expected argument " "2"" of type '" "int""'");
9905 arg2
= static_cast< int >(val2
);
9906 if (arg1
) (arg1
)->min_size
= arg2
;
9908 resultobj
= SWIG_Py_Void();
9915 SWIGINTERN PyObject
*_wrap_AuiDockInfo_min_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9916 PyObject
*resultobj
= 0;
9917 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9921 PyObject
*swig_obj
[1] ;
9923 if (!args
) SWIG_fail
;
9925 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9926 if (!SWIG_IsOK(res1
)) {
9927 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_min_size_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9929 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9930 result
= (int) ((arg1
)->min_size
);
9931 resultobj
= SWIG_From_int(static_cast< int >(result
));
9938 SWIGINTERN PyObject
*_wrap_AuiDockInfo_resizable_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9939 PyObject
*resultobj
= 0;
9940 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9946 PyObject
*swig_obj
[2] ;
9948 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_resizable_set",2,2,swig_obj
)) SWIG_fail
;
9949 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9950 if (!SWIG_IsOK(res1
)) {
9951 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_resizable_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9953 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9954 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9955 if (!SWIG_IsOK(ecode2
)) {
9956 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_resizable_set" "', expected argument " "2"" of type '" "bool""'");
9958 arg2
= static_cast< bool >(val2
);
9959 if (arg1
) (arg1
)->resizable
= arg2
;
9961 resultobj
= SWIG_Py_Void();
9968 SWIGINTERN PyObject
*_wrap_AuiDockInfo_resizable_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9969 PyObject
*resultobj
= 0;
9970 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9974 PyObject
*swig_obj
[1] ;
9976 if (!args
) SWIG_fail
;
9978 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9979 if (!SWIG_IsOK(res1
)) {
9980 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_resizable_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9982 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9983 result
= (bool) ((arg1
)->resizable
);
9985 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9993 SWIGINTERN PyObject
*_wrap_AuiDockInfo_toolbar_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9994 PyObject
*resultobj
= 0;
9995 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
10001 PyObject
*swig_obj
[2] ;
10003 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_toolbar_set",2,2,swig_obj
)) SWIG_fail
;
10004 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
10005 if (!SWIG_IsOK(res1
)) {
10006 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_toolbar_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
10008 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
10009 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
10010 if (!SWIG_IsOK(ecode2
)) {
10011 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_toolbar_set" "', expected argument " "2"" of type '" "bool""'");
10013 arg2
= static_cast< bool >(val2
);
10014 if (arg1
) (arg1
)->toolbar
= arg2
;
10016 resultobj
= SWIG_Py_Void();
10023 SWIGINTERN PyObject
*_wrap_AuiDockInfo_toolbar_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10024 PyObject
*resultobj
= 0;
10025 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
10029 PyObject
*swig_obj
[1] ;
10031 if (!args
) SWIG_fail
;
10032 swig_obj
[0] = args
;
10033 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
10034 if (!SWIG_IsOK(res1
)) {
10035 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_toolbar_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
10037 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
10038 result
= (bool) ((arg1
)->toolbar
);
10040 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10048 SWIGINTERN PyObject
*_wrap_AuiDockInfo_fixed_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10049 PyObject
*resultobj
= 0;
10050 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
10056 PyObject
*swig_obj
[2] ;
10058 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_fixed_set",2,2,swig_obj
)) SWIG_fail
;
10059 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
10060 if (!SWIG_IsOK(res1
)) {
10061 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_fixed_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
10063 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
10064 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
10065 if (!SWIG_IsOK(ecode2
)) {
10066 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_fixed_set" "', expected argument " "2"" of type '" "bool""'");
10068 arg2
= static_cast< bool >(val2
);
10069 if (arg1
) (arg1
)->fixed
= arg2
;
10071 resultobj
= SWIG_Py_Void();
10078 SWIGINTERN PyObject
*_wrap_AuiDockInfo_fixed_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10079 PyObject
*resultobj
= 0;
10080 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
10084 PyObject
*swig_obj
[1] ;
10086 if (!args
) SWIG_fail
;
10087 swig_obj
[0] = args
;
10088 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
10089 if (!SWIG_IsOK(res1
)) {
10090 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_fixed_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
10092 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
10093 result
= (bool) ((arg1
)->fixed
);
10095 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10103 SWIGINTERN PyObject
*_wrap_AuiDockInfo_reserved1_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10104 PyObject
*resultobj
= 0;
10105 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
10111 PyObject
*swig_obj
[2] ;
10113 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_reserved1_set",2,2,swig_obj
)) SWIG_fail
;
10114 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
10115 if (!SWIG_IsOK(res1
)) {
10116 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_reserved1_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
10118 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
10119 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
10120 if (!SWIG_IsOK(ecode2
)) {
10121 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_reserved1_set" "', expected argument " "2"" of type '" "bool""'");
10123 arg2
= static_cast< bool >(val2
);
10124 if (arg1
) (arg1
)->reserved1
= arg2
;
10126 resultobj
= SWIG_Py_Void();
10133 SWIGINTERN PyObject
*_wrap_AuiDockInfo_reserved1_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10134 PyObject
*resultobj
= 0;
10135 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
10139 PyObject
*swig_obj
[1] ;
10141 if (!args
) SWIG_fail
;
10142 swig_obj
[0] = args
;
10143 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
10144 if (!SWIG_IsOK(res1
)) {
10145 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_reserved1_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
10147 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
10148 result
= (bool) ((arg1
)->reserved1
);
10150 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10158 SWIGINTERN PyObject
*_wrap_delete_AuiDockInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10159 PyObject
*resultobj
= 0;
10160 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
10163 PyObject
*swig_obj
[1] ;
10165 if (!args
) SWIG_fail
;
10166 swig_obj
[0] = args
;
10167 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, SWIG_POINTER_DISOWN
| 0 );
10168 if (!SWIG_IsOK(res1
)) {
10169 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDockInfo" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
10171 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
10173 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10174 delete_wxAuiDockInfo(arg1
);
10176 wxPyEndAllowThreads(__tstate
);
10177 if (PyErr_Occurred()) SWIG_fail
;
10179 resultobj
= SWIG_Py_Void();
10186 SWIGINTERN PyObject
*AuiDockInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10188 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10189 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDockInfo
, SWIG_NewClientData(obj
));
10190 return SWIG_Py_Void();
10193 SWIGINTERN PyObject
*AuiDockInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10194 return SWIG_Python_InitShadowInstance(args
);
10197 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_type_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10198 PyObject
*resultobj
= 0;
10199 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10205 PyObject
*swig_obj
[2] ;
10207 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_type_set",2,2,swig_obj
)) SWIG_fail
;
10208 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10209 if (!SWIG_IsOK(res1
)) {
10210 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_type_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10212 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10213 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
10214 if (!SWIG_IsOK(ecode2
)) {
10215 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockUIPart_type_set" "', expected argument " "2"" of type '" "int""'");
10217 arg2
= static_cast< int >(val2
);
10218 if (arg1
) (arg1
)->type
= arg2
;
10220 resultobj
= SWIG_Py_Void();
10227 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_type_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10228 PyObject
*resultobj
= 0;
10229 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10233 PyObject
*swig_obj
[1] ;
10235 if (!args
) SWIG_fail
;
10236 swig_obj
[0] = args
;
10237 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10238 if (!SWIG_IsOK(res1
)) {
10239 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_type_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10241 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10242 result
= (int) ((arg1
)->type
);
10243 resultobj
= SWIG_From_int(static_cast< int >(result
));
10250 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_orientation_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10251 PyObject
*resultobj
= 0;
10252 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10258 PyObject
*swig_obj
[2] ;
10260 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_orientation_set",2,2,swig_obj
)) SWIG_fail
;
10261 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10262 if (!SWIG_IsOK(res1
)) {
10263 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_orientation_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10265 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10266 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
10267 if (!SWIG_IsOK(ecode2
)) {
10268 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockUIPart_orientation_set" "', expected argument " "2"" of type '" "int""'");
10270 arg2
= static_cast< int >(val2
);
10271 if (arg1
) (arg1
)->orientation
= arg2
;
10273 resultobj
= SWIG_Py_Void();
10280 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_orientation_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10281 PyObject
*resultobj
= 0;
10282 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10286 PyObject
*swig_obj
[1] ;
10288 if (!args
) SWIG_fail
;
10289 swig_obj
[0] = args
;
10290 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10291 if (!SWIG_IsOK(res1
)) {
10292 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_orientation_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10294 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10295 result
= (int) ((arg1
)->orientation
);
10296 resultobj
= SWIG_From_int(static_cast< int >(result
));
10303 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_dock_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10304 PyObject
*resultobj
= 0;
10305 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10306 wxAuiDockInfo
*arg2
= (wxAuiDockInfo
*) 0 ;
10311 PyObject
*swig_obj
[2] ;
10313 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_dock_set",2,2,swig_obj
)) SWIG_fail
;
10314 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10315 if (!SWIG_IsOK(res1
)) {
10316 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_dock_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10318 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10319 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiDockInfo
, SWIG_POINTER_DISOWN
| 0 );
10320 if (!SWIG_IsOK(res2
)) {
10321 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_dock_set" "', expected argument " "2"" of type '" "wxAuiDockInfo *""'");
10323 arg2
= reinterpret_cast< wxAuiDockInfo
* >(argp2
);
10324 if (arg1
) (arg1
)->dock
= arg2
;
10326 resultobj
= SWIG_Py_Void();
10333 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_dock_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10334 PyObject
*resultobj
= 0;
10335 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10336 wxAuiDockInfo
*result
= 0 ;
10339 PyObject
*swig_obj
[1] ;
10341 if (!args
) SWIG_fail
;
10342 swig_obj
[0] = args
;
10343 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10344 if (!SWIG_IsOK(res1
)) {
10345 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_dock_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10347 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10348 result
= (wxAuiDockInfo
*) ((arg1
)->dock
);
10349 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
10356 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10357 PyObject
*resultobj
= 0;
10358 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10359 wxAuiPaneInfo
*arg2
= (wxAuiPaneInfo
*) 0 ;
10364 PyObject
*swig_obj
[2] ;
10366 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_pane_set",2,2,swig_obj
)) SWIG_fail
;
10367 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10368 if (!SWIG_IsOK(res1
)) {
10369 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_pane_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10371 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10372 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
10373 if (!SWIG_IsOK(res2
)) {
10374 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_pane_set" "', expected argument " "2"" of type '" "wxAuiPaneInfo *""'");
10376 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
10377 if (arg1
) (arg1
)->pane
= arg2
;
10379 resultobj
= SWIG_Py_Void();
10386 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10387 PyObject
*resultobj
= 0;
10388 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10389 wxAuiPaneInfo
*result
= 0 ;
10392 PyObject
*swig_obj
[1] ;
10394 if (!args
) SWIG_fail
;
10395 swig_obj
[0] = args
;
10396 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10397 if (!SWIG_IsOK(res1
)) {
10398 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_pane_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10400 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10401 result
= (wxAuiPaneInfo
*) ((arg1
)->pane
);
10402 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
10409 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10410 PyObject
*resultobj
= 0;
10411 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10412 wxAuiPaneButton
*arg2
= (wxAuiPaneButton
*) 0 ;
10417 PyObject
*swig_obj
[2] ;
10419 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_button_set",2,2,swig_obj
)) SWIG_fail
;
10420 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10421 if (!SWIG_IsOK(res1
)) {
10422 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_button_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10424 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10425 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiPaneButton
, SWIG_POINTER_DISOWN
| 0 );
10426 if (!SWIG_IsOK(res2
)) {
10427 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_button_set" "', expected argument " "2"" of type '" "wxAuiPaneButton *""'");
10429 arg2
= reinterpret_cast< wxAuiPaneButton
* >(argp2
);
10430 if (arg1
) (arg1
)->button
= arg2
;
10432 resultobj
= SWIG_Py_Void();
10439 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10440 PyObject
*resultobj
= 0;
10441 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10442 wxAuiPaneButton
*result
= 0 ;
10445 PyObject
*swig_obj
[1] ;
10447 if (!args
) SWIG_fail
;
10448 swig_obj
[0] = args
;
10449 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10450 if (!SWIG_IsOK(res1
)) {
10451 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_button_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10453 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10454 result
= (wxAuiPaneButton
*) ((arg1
)->button
);
10455 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneButton
, 0 | 0 );
10462 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_cont_sizer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10463 PyObject
*resultobj
= 0;
10464 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10465 wxSizer
*arg2
= (wxSizer
*) 0 ;
10470 PyObject
*swig_obj
[2] ;
10472 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_cont_sizer_set",2,2,swig_obj
)) SWIG_fail
;
10473 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10474 if (!SWIG_IsOK(res1
)) {
10475 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_cont_sizer_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10477 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10478 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizer
, SWIG_POINTER_DISOWN
| 0 );
10479 if (!SWIG_IsOK(res2
)) {
10480 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_cont_sizer_set" "', expected argument " "2"" of type '" "wxSizer *""'");
10482 arg2
= reinterpret_cast< wxSizer
* >(argp2
);
10483 if (arg1
) (arg1
)->cont_sizer
= arg2
;
10485 resultobj
= SWIG_Py_Void();
10492 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_cont_sizer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10493 PyObject
*resultobj
= 0;
10494 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10495 wxSizer
*result
= 0 ;
10498 PyObject
*swig_obj
[1] ;
10500 if (!args
) SWIG_fail
;
10501 swig_obj
[0] = args
;
10502 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10503 if (!SWIG_IsOK(res1
)) {
10504 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_cont_sizer_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10506 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10507 result
= (wxSizer
*) ((arg1
)->cont_sizer
);
10509 resultobj
= wxPyMake_wxObject(result
, (bool)0);
10517 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_sizer_item_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10518 PyObject
*resultobj
= 0;
10519 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10520 wxSizerItem
*arg2
= (wxSizerItem
*) 0 ;
10525 PyObject
*swig_obj
[2] ;
10527 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_sizer_item_set",2,2,swig_obj
)) SWIG_fail
;
10528 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10529 if (!SWIG_IsOK(res1
)) {
10530 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_sizer_item_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10532 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10533 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizerItem
, SWIG_POINTER_DISOWN
| 0 );
10534 if (!SWIG_IsOK(res2
)) {
10535 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_sizer_item_set" "', expected argument " "2"" of type '" "wxSizerItem *""'");
10537 arg2
= reinterpret_cast< wxSizerItem
* >(argp2
);
10538 if (arg1
) (arg1
)->sizer_item
= arg2
;
10540 resultobj
= SWIG_Py_Void();
10547 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_sizer_item_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10548 PyObject
*resultobj
= 0;
10549 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10550 wxSizerItem
*result
= 0 ;
10553 PyObject
*swig_obj
[1] ;
10555 if (!args
) SWIG_fail
;
10556 swig_obj
[0] = args
;
10557 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10558 if (!SWIG_IsOK(res1
)) {
10559 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_sizer_item_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10561 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10562 result
= (wxSizerItem
*) ((arg1
)->sizer_item
);
10563 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSizerItem
, 0 | 0 );
10570 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10571 PyObject
*resultobj
= 0;
10572 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10573 wxRect
*arg2
= (wxRect
*) 0 ;
10578 PyObject
*swig_obj
[2] ;
10580 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_rect_set",2,2,swig_obj
)) SWIG_fail
;
10581 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10582 if (!SWIG_IsOK(res1
)) {
10583 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_rect_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10585 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10586 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
10587 if (!SWIG_IsOK(res2
)) {
10588 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
10590 arg2
= reinterpret_cast< wxRect
* >(argp2
);
10591 if (arg1
) (arg1
)->rect
= *arg2
;
10593 resultobj
= SWIG_Py_Void();
10600 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10601 PyObject
*resultobj
= 0;
10602 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10603 wxRect
*result
= 0 ;
10606 PyObject
*swig_obj
[1] ;
10608 if (!args
) SWIG_fail
;
10609 swig_obj
[0] = args
;
10610 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10611 if (!SWIG_IsOK(res1
)) {
10612 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_rect_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10614 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10615 result
= (wxRect
*)& ((arg1
)->rect
);
10616 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
10623 SWIGINTERN PyObject
*_wrap_delete_AuiDockUIPart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10624 PyObject
*resultobj
= 0;
10625 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10628 PyObject
*swig_obj
[1] ;
10630 if (!args
) SWIG_fail
;
10631 swig_obj
[0] = args
;
10632 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, SWIG_POINTER_DISOWN
| 0 );
10633 if (!SWIG_IsOK(res1
)) {
10634 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDockUIPart" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10636 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10638 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10639 delete_wxAuiDockUIPart(arg1
);
10641 wxPyEndAllowThreads(__tstate
);
10642 if (PyErr_Occurred()) SWIG_fail
;
10644 resultobj
= SWIG_Py_Void();
10651 SWIGINTERN PyObject
*AuiDockUIPart_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10653 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10654 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDockUIPart
, SWIG_NewClientData(obj
));
10655 return SWIG_Py_Void();
10658 SWIGINTERN PyObject
*_wrap_AuiPaneButton_button_id_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10659 PyObject
*resultobj
= 0;
10660 wxAuiPaneButton
*arg1
= (wxAuiPaneButton
*) 0 ;
10666 PyObject
*swig_obj
[2] ;
10668 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneButton_button_id_set",2,2,swig_obj
)) SWIG_fail
;
10669 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneButton
, 0 | 0 );
10670 if (!SWIG_IsOK(res1
)) {
10671 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneButton_button_id_set" "', expected argument " "1"" of type '" "wxAuiPaneButton *""'");
10673 arg1
= reinterpret_cast< wxAuiPaneButton
* >(argp1
);
10674 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
10675 if (!SWIG_IsOK(ecode2
)) {
10676 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneButton_button_id_set" "', expected argument " "2"" of type '" "int""'");
10678 arg2
= static_cast< int >(val2
);
10679 if (arg1
) (arg1
)->button_id
= arg2
;
10681 resultobj
= SWIG_Py_Void();
10688 SWIGINTERN PyObject
*_wrap_AuiPaneButton_button_id_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10689 PyObject
*resultobj
= 0;
10690 wxAuiPaneButton
*arg1
= (wxAuiPaneButton
*) 0 ;
10694 PyObject
*swig_obj
[1] ;
10696 if (!args
) SWIG_fail
;
10697 swig_obj
[0] = args
;
10698 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneButton
, 0 | 0 );
10699 if (!SWIG_IsOK(res1
)) {
10700 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneButton_button_id_get" "', expected argument " "1"" of type '" "wxAuiPaneButton *""'");
10702 arg1
= reinterpret_cast< wxAuiPaneButton
* >(argp1
);
10703 result
= (int) ((arg1
)->button_id
);
10704 resultobj
= SWIG_From_int(static_cast< int >(result
));
10711 SWIGINTERN PyObject
*_wrap_delete_AuiPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10712 PyObject
*resultobj
= 0;
10713 wxAuiPaneButton
*arg1
= (wxAuiPaneButton
*) 0 ;
10716 PyObject
*swig_obj
[1] ;
10718 if (!args
) SWIG_fail
;
10719 swig_obj
[0] = args
;
10720 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneButton
, SWIG_POINTER_DISOWN
| 0 );
10721 if (!SWIG_IsOK(res1
)) {
10722 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiPaneButton" "', expected argument " "1"" of type '" "wxAuiPaneButton *""'");
10724 arg1
= reinterpret_cast< wxAuiPaneButton
* >(argp1
);
10726 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10727 delete_wxAuiPaneButton(arg1
);
10729 wxPyEndAllowThreads(__tstate
);
10730 if (PyErr_Occurred()) SWIG_fail
;
10732 resultobj
= SWIG_Py_Void();
10739 SWIGINTERN PyObject
*AuiPaneButton_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10741 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10742 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiPaneButton
, SWIG_NewClientData(obj
));
10743 return SWIG_Py_Void();
10746 SWIGINTERN PyObject
*_wrap_delete_AuiDockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10747 PyObject
*resultobj
= 0;
10748 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10751 PyObject
*swig_obj
[1] ;
10753 if (!args
) SWIG_fail
;
10754 swig_obj
[0] = args
;
10755 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockArt
, SWIG_POINTER_DISOWN
| 0 );
10756 if (!SWIG_IsOK(res1
)) {
10757 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDockArt" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10759 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10761 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10764 wxPyEndAllowThreads(__tstate
);
10765 if (PyErr_Occurred()) SWIG_fail
;
10767 resultobj
= SWIG_Py_Void();
10774 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10775 PyObject
*resultobj
= 0;
10776 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10783 PyObject
* obj0
= 0 ;
10784 PyObject
* obj1
= 0 ;
10785 char * kwnames
[] = {
10786 (char *) "self",(char *) "id", NULL
10789 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetMetric",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10790 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10791 if (!SWIG_IsOK(res1
)) {
10792 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetMetric" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10794 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10795 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10796 if (!SWIG_IsOK(ecode2
)) {
10797 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetMetric" "', expected argument " "2"" of type '" "int""'");
10799 arg2
= static_cast< int >(val2
);
10801 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10802 result
= (int)(arg1
)->GetMetric(arg2
);
10803 wxPyEndAllowThreads(__tstate
);
10804 if (PyErr_Occurred()) SWIG_fail
;
10806 resultobj
= SWIG_From_int(static_cast< int >(result
));
10813 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10814 PyObject
*resultobj
= 0;
10815 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10824 PyObject
* obj0
= 0 ;
10825 PyObject
* obj1
= 0 ;
10826 PyObject
* obj2
= 0 ;
10827 char * kwnames
[] = {
10828 (char *) "self",(char *) "id",(char *) "new_val", NULL
10831 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetMetric",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10832 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10833 if (!SWIG_IsOK(res1
)) {
10834 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetMetric" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10836 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10837 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10838 if (!SWIG_IsOK(ecode2
)) {
10839 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetMetric" "', expected argument " "2"" of type '" "int""'");
10841 arg2
= static_cast< int >(val2
);
10842 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10843 if (!SWIG_IsOK(ecode3
)) {
10844 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiDockArt_SetMetric" "', expected argument " "3"" of type '" "int""'");
10846 arg3
= static_cast< int >(val3
);
10848 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10849 (arg1
)->SetMetric(arg2
,arg3
);
10850 wxPyEndAllowThreads(__tstate
);
10851 if (PyErr_Occurred()) SWIG_fail
;
10853 resultobj
= SWIG_Py_Void();
10860 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10861 PyObject
*resultobj
= 0;
10862 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10871 PyObject
* obj0
= 0 ;
10872 PyObject
* obj1
= 0 ;
10873 PyObject
* obj2
= 0 ;
10874 char * kwnames
[] = {
10875 (char *) "self",(char *) "id",(char *) "font", NULL
10878 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetFont",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10879 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10880 if (!SWIG_IsOK(res1
)) {
10881 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetFont" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10883 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10884 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10885 if (!SWIG_IsOK(ecode2
)) {
10886 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetFont" "', expected argument " "2"" of type '" "int""'");
10888 arg2
= static_cast< int >(val2
);
10889 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxFont
, 0 | 0);
10890 if (!SWIG_IsOK(res3
)) {
10891 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
10894 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
10896 arg3
= reinterpret_cast< wxFont
* >(argp3
);
10898 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10899 (arg1
)->SetFont(arg2
,(wxFont
const &)*arg3
);
10900 wxPyEndAllowThreads(__tstate
);
10901 if (PyErr_Occurred()) SWIG_fail
;
10903 resultobj
= SWIG_Py_Void();
10910 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10911 PyObject
*resultobj
= 0;
10912 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10919 PyObject
* obj0
= 0 ;
10920 PyObject
* obj1
= 0 ;
10921 char * kwnames
[] = {
10922 (char *) "self",(char *) "id", NULL
10925 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10926 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10927 if (!SWIG_IsOK(res1
)) {
10928 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetFont" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10930 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10931 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10932 if (!SWIG_IsOK(ecode2
)) {
10933 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetFont" "', expected argument " "2"" of type '" "int""'");
10935 arg2
= static_cast< int >(val2
);
10937 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10938 result
= (arg1
)->GetFont(arg2
);
10939 wxPyEndAllowThreads(__tstate
);
10940 if (PyErr_Occurred()) SWIG_fail
;
10942 resultobj
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
10949 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10950 PyObject
*resultobj
= 0;
10951 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10958 PyObject
* obj0
= 0 ;
10959 PyObject
* obj1
= 0 ;
10960 char * kwnames
[] = {
10961 (char *) "self",(char *) "id", NULL
10964 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10965 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10966 if (!SWIG_IsOK(res1
)) {
10967 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetColour" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10969 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10970 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10971 if (!SWIG_IsOK(ecode2
)) {
10972 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetColour" "', expected argument " "2"" of type '" "int""'");
10974 arg2
= static_cast< int >(val2
);
10976 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10977 result
= (arg1
)->GetColour(arg2
);
10978 wxPyEndAllowThreads(__tstate
);
10979 if (PyErr_Occurred()) SWIG_fail
;
10981 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
10988 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10989 PyObject
*resultobj
= 0;
10990 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10992 wxColour
*arg3
= 0 ;
10998 PyObject
* obj0
= 0 ;
10999 PyObject
* obj1
= 0 ;
11000 PyObject
* obj2
= 0 ;
11001 char * kwnames
[] = {
11002 (char *) "self",(char *) "id",(char *) "colour", NULL
11005 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11006 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11007 if (!SWIG_IsOK(res1
)) {
11008 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetColour" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11010 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11011 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11012 if (!SWIG_IsOK(ecode2
)) {
11013 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetColour" "', expected argument " "2"" of type '" "int""'");
11015 arg2
= static_cast< int >(val2
);
11018 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
11021 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11022 (arg1
)->SetColour(arg2
,(wxColour
const &)*arg3
);
11023 wxPyEndAllowThreads(__tstate
);
11024 if (PyErr_Occurred()) SWIG_fail
;
11026 resultobj
= SWIG_Py_Void();
11033 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11034 PyObject
*resultobj
= 0;
11035 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11042 PyObject
* obj0
= 0 ;
11043 PyObject
* obj1
= 0 ;
11044 char * kwnames
[] = {
11045 (char *) "self",(char *) "id", NULL
11048 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetColor",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11049 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11050 if (!SWIG_IsOK(res1
)) {
11051 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetColor" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11053 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11054 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11055 if (!SWIG_IsOK(ecode2
)) {
11056 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetColor" "', expected argument " "2"" of type '" "int""'");
11058 arg2
= static_cast< int >(val2
);
11060 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11061 result
= (arg1
)->GetColor(arg2
);
11062 wxPyEndAllowThreads(__tstate
);
11063 if (PyErr_Occurred()) SWIG_fail
;
11065 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
11072 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11073 PyObject
*resultobj
= 0;
11074 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11076 wxColour
*arg3
= 0 ;
11082 PyObject
* obj0
= 0 ;
11083 PyObject
* obj1
= 0 ;
11084 PyObject
* obj2
= 0 ;
11085 char * kwnames
[] = {
11086 (char *) "self",(char *) "id",(char *) "color", NULL
11089 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetColor",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11090 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11091 if (!SWIG_IsOK(res1
)) {
11092 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetColor" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11094 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11095 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11096 if (!SWIG_IsOK(ecode2
)) {
11097 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetColor" "', expected argument " "2"" of type '" "int""'");
11099 arg2
= static_cast< int >(val2
);
11102 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
11105 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11106 (arg1
)->SetColor(arg2
,(wxColour
const &)*arg3
);
11107 wxPyEndAllowThreads(__tstate
);
11108 if (PyErr_Occurred()) SWIG_fail
;
11110 resultobj
= SWIG_Py_Void();
11117 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawSash(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11118 PyObject
*resultobj
= 0;
11119 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11121 wxWindow
*arg3
= (wxWindow
*) 0 ;
11133 PyObject
* obj0
= 0 ;
11134 PyObject
* obj1
= 0 ;
11135 PyObject
* obj2
= 0 ;
11136 PyObject
* obj3
= 0 ;
11137 PyObject
* obj4
= 0 ;
11138 char * kwnames
[] = {
11139 (char *) "self",(char *) "dc",(char *) "window",(char *) "orientation",(char *) "rect", NULL
11142 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawSash",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11143 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11144 if (!SWIG_IsOK(res1
)) {
11145 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11147 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11148 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11149 if (!SWIG_IsOK(res2
)) {
11150 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
11153 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
11155 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11156 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11157 if (!SWIG_IsOK(res3
)) {
11158 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "3"" of type '" "wxWindow *""'");
11160 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11161 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11162 if (!SWIG_IsOK(ecode4
)) {
11163 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "4"" of type '" "int""'");
11165 arg4
= static_cast< int >(val4
);
11168 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
11171 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11172 (arg1
)->DrawSash(*arg2
,arg3
,arg4
,(wxRect
const &)*arg5
);
11173 wxPyEndAllowThreads(__tstate
);
11174 if (PyErr_Occurred()) SWIG_fail
;
11176 resultobj
= SWIG_Py_Void();
11183 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11184 PyObject
*resultobj
= 0;
11185 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11187 wxWindow
*arg3
= (wxWindow
*) 0 ;
11199 PyObject
* obj0
= 0 ;
11200 PyObject
* obj1
= 0 ;
11201 PyObject
* obj2
= 0 ;
11202 PyObject
* obj3
= 0 ;
11203 PyObject
* obj4
= 0 ;
11204 char * kwnames
[] = {
11205 (char *) "self",(char *) "dc",(char *) "window",(char *) "orientation",(char *) "rect", NULL
11208 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11209 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11210 if (!SWIG_IsOK(res1
)) {
11211 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11213 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11214 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11215 if (!SWIG_IsOK(res2
)) {
11216 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
11219 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
11221 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11222 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11223 if (!SWIG_IsOK(res3
)) {
11224 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "3"" of type '" "wxWindow *""'");
11226 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11227 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11228 if (!SWIG_IsOK(ecode4
)) {
11229 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "4"" of type '" "int""'");
11231 arg4
= static_cast< int >(val4
);
11234 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
11237 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11238 (arg1
)->DrawBackground(*arg2
,arg3
,arg4
,(wxRect
const &)*arg5
);
11239 wxPyEndAllowThreads(__tstate
);
11240 if (PyErr_Occurred()) SWIG_fail
;
11242 resultobj
= SWIG_Py_Void();
11249 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawCaption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11250 PyObject
*resultobj
= 0;
11251 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11253 wxWindow
*arg3
= (wxWindow
*) 0 ;
11254 wxString
*arg4
= 0 ;
11256 wxAuiPaneInfo
*arg6
= 0 ;
11263 bool temp4
= false ;
11267 PyObject
* obj0
= 0 ;
11268 PyObject
* obj1
= 0 ;
11269 PyObject
* obj2
= 0 ;
11270 PyObject
* obj3
= 0 ;
11271 PyObject
* obj4
= 0 ;
11272 PyObject
* obj5
= 0 ;
11273 char * kwnames
[] = {
11274 (char *) "self",(char *) "dc",(char *) "window",(char *) "text",(char *) "rect",(char *) "pane", NULL
11277 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:AuiDockArt_DrawCaption",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
11278 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11279 if (!SWIG_IsOK(res1
)) {
11280 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11282 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11283 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11284 if (!SWIG_IsOK(res2
)) {
11285 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
11288 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
11290 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11291 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11292 if (!SWIG_IsOK(res3
)) {
11293 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "3"" of type '" "wxWindow *""'");
11295 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11297 arg4
= wxString_in_helper(obj3
);
11298 if (arg4
== NULL
) SWIG_fail
;
11303 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
11305 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
11306 if (!SWIG_IsOK(res6
)) {
11307 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "6"" of type '" "wxAuiPaneInfo &""'");
11310 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawCaption" "', expected argument " "6"" of type '" "wxAuiPaneInfo &""'");
11312 arg6
= reinterpret_cast< wxAuiPaneInfo
* >(argp6
);
11314 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11315 (arg1
)->DrawCaption(*arg2
,arg3
,(wxString
const &)*arg4
,(wxRect
const &)*arg5
,*arg6
);
11316 wxPyEndAllowThreads(__tstate
);
11317 if (PyErr_Occurred()) SWIG_fail
;
11319 resultobj
= SWIG_Py_Void();
11334 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawGripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11335 PyObject
*resultobj
= 0;
11336 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11338 wxWindow
*arg3
= (wxWindow
*) 0 ;
11340 wxAuiPaneInfo
*arg5
= 0 ;
11350 PyObject
* obj0
= 0 ;
11351 PyObject
* obj1
= 0 ;
11352 PyObject
* obj2
= 0 ;
11353 PyObject
* obj3
= 0 ;
11354 PyObject
* obj4
= 0 ;
11355 char * kwnames
[] = {
11356 (char *) "self",(char *) "dc",(char *) "window",(char *) "rect",(char *) "pane", NULL
11359 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawGripper",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11360 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11361 if (!SWIG_IsOK(res1
)) {
11362 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11364 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11365 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11366 if (!SWIG_IsOK(res2
)) {
11367 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
11370 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
11372 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11373 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11374 if (!SWIG_IsOK(res3
)) {
11375 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "3"" of type '" "wxWindow *""'");
11377 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11380 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
11382 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
11383 if (!SWIG_IsOK(res5
)) {
11384 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11387 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawGripper" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11389 arg5
= reinterpret_cast< wxAuiPaneInfo
* >(argp5
);
11391 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11392 (arg1
)->DrawGripper(*arg2
,arg3
,(wxRect
const &)*arg4
,*arg5
);
11393 wxPyEndAllowThreads(__tstate
);
11394 if (PyErr_Occurred()) SWIG_fail
;
11396 resultobj
= SWIG_Py_Void();
11403 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11404 PyObject
*resultobj
= 0;
11405 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11407 wxWindow
*arg3
= (wxWindow
*) 0 ;
11409 wxAuiPaneInfo
*arg5
= 0 ;
11419 PyObject
* obj0
= 0 ;
11420 PyObject
* obj1
= 0 ;
11421 PyObject
* obj2
= 0 ;
11422 PyObject
* obj3
= 0 ;
11423 PyObject
* obj4
= 0 ;
11424 char * kwnames
[] = {
11425 (char *) "self",(char *) "dc",(char *) "window",(char *) "rect",(char *) "pane", NULL
11428 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawBorder",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11429 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11430 if (!SWIG_IsOK(res1
)) {
11431 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11433 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11434 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11435 if (!SWIG_IsOK(res2
)) {
11436 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
11439 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
11441 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11442 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11443 if (!SWIG_IsOK(res3
)) {
11444 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "3"" of type '" "wxWindow *""'");
11446 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11449 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
11451 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
11452 if (!SWIG_IsOK(res5
)) {
11453 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11456 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawBorder" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11458 arg5
= reinterpret_cast< wxAuiPaneInfo
* >(argp5
);
11460 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11461 (arg1
)->DrawBorder(*arg2
,arg3
,(wxRect
const &)*arg4
,*arg5
);
11462 wxPyEndAllowThreads(__tstate
);
11463 if (PyErr_Occurred()) SWIG_fail
;
11465 resultobj
= SWIG_Py_Void();
11472 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11473 PyObject
*resultobj
= 0;
11474 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11476 wxWindow
*arg3
= (wxWindow
*) 0 ;
11480 wxAuiPaneInfo
*arg7
= 0 ;
11494 PyObject
* obj0
= 0 ;
11495 PyObject
* obj1
= 0 ;
11496 PyObject
* obj2
= 0 ;
11497 PyObject
* obj3
= 0 ;
11498 PyObject
* obj4
= 0 ;
11499 PyObject
* obj5
= 0 ;
11500 PyObject
* obj6
= 0 ;
11501 char * kwnames
[] = {
11502 (char *) "self",(char *) "dc",(char *) "window",(char *) "button",(char *) "button_state",(char *) "rect",(char *) "pane", NULL
11505 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:AuiDockArt_DrawPaneButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
11506 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11507 if (!SWIG_IsOK(res1
)) {
11508 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11510 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11511 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11512 if (!SWIG_IsOK(res2
)) {
11513 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
11516 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
11518 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11519 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11520 if (!SWIG_IsOK(res3
)) {
11521 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "3"" of type '" "wxWindow *""'");
11523 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11524 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11525 if (!SWIG_IsOK(ecode4
)) {
11526 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "4"" of type '" "int""'");
11528 arg4
= static_cast< int >(val4
);
11529 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
11530 if (!SWIG_IsOK(ecode5
)) {
11531 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "5"" of type '" "int""'");
11533 arg5
= static_cast< int >(val5
);
11536 if ( ! wxRect_helper(obj5
, &arg6
)) SWIG_fail
;
11538 res7
= SWIG_ConvertPtr(obj6
, &argp7
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
11539 if (!SWIG_IsOK(res7
)) {
11540 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "7"" of type '" "wxAuiPaneInfo &""'");
11543 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "7"" of type '" "wxAuiPaneInfo &""'");
11545 arg7
= reinterpret_cast< wxAuiPaneInfo
* >(argp7
);
11547 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11548 (arg1
)->DrawPaneButton(*arg2
,arg3
,arg4
,arg5
,(wxRect
const &)*arg6
,*arg7
);
11549 wxPyEndAllowThreads(__tstate
);
11550 if (PyErr_Occurred()) SWIG_fail
;
11552 resultobj
= SWIG_Py_Void();
11559 SWIGINTERN PyObject
*AuiDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11561 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11562 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDockArt
, SWIG_NewClientData(obj
));
11563 return SWIG_Py_Void();
11566 SWIGINTERN PyObject
*_wrap_new_AuiDefaultDockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11567 PyObject
*resultobj
= 0;
11568 wxAuiDefaultDockArt
*result
= 0 ;
11570 if (!SWIG_Python_UnpackTuple(args
,"new_AuiDefaultDockArt",0,0,0)) SWIG_fail
;
11572 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11573 result
= (wxAuiDefaultDockArt
*)new wxAuiDefaultDockArt();
11574 wxPyEndAllowThreads(__tstate
);
11575 if (PyErr_Occurred()) SWIG_fail
;
11577 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDefaultDockArt
, SWIG_POINTER_NEW
| 0 );
11584 SWIGINTERN PyObject
*AuiDefaultDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11586 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11587 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDefaultDockArt
, SWIG_NewClientData(obj
));
11588 return SWIG_Py_Void();
11591 SWIGINTERN PyObject
*AuiDefaultDockArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11592 return SWIG_Python_InitShadowInstance(args
);
11595 SWIGINTERN PyObject
*_wrap_new_AuiFloatingFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11596 PyObject
*resultobj
= 0;
11597 wxWindow
*arg1
= (wxWindow
*) 0 ;
11598 wxAuiManager
*arg2
= (wxAuiManager
*) 0 ;
11599 wxAuiPaneInfo
*arg3
= 0 ;
11600 int arg4
= (int) wxID_ANY
;
11601 long arg5
= (long) wxRESIZE_BORDER
|wxSYSTEM_MENU
|wxCAPTION
|wxFRAME_NO_TASKBAR
|wxFRAME_FLOAT_ON_PARENT
|wxCLIP_CHILDREN
;
11602 wxAuiFloatingFrame
*result
= 0 ;
11613 PyObject
* obj0
= 0 ;
11614 PyObject
* obj1
= 0 ;
11615 PyObject
* obj2
= 0 ;
11616 PyObject
* obj3
= 0 ;
11617 PyObject
* obj4
= 0 ;
11618 char * kwnames
[] = {
11619 (char *) "parent",(char *) "owner_mgr",(char *) "pane",(char *) "id",(char *) "style", NULL
11622 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:new_AuiFloatingFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11623 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11624 if (!SWIG_IsOK(res1
)) {
11625 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiFloatingFrame" "', expected argument " "1"" of type '" "wxWindow *""'");
11627 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
11628 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
11629 if (!SWIG_IsOK(res2
)) {
11630 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_AuiFloatingFrame" "', expected argument " "2"" of type '" "wxAuiManager *""'");
11632 arg2
= reinterpret_cast< wxAuiManager
* >(argp2
);
11633 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
11634 if (!SWIG_IsOK(res3
)) {
11635 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_AuiFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
11638 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_AuiFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
11640 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
11642 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11643 if (!SWIG_IsOK(ecode4
)) {
11644 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_AuiFloatingFrame" "', expected argument " "4"" of type '" "int""'");
11646 arg4
= static_cast< int >(val4
);
11649 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
11650 if (!SWIG_IsOK(ecode5
)) {
11651 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiFloatingFrame" "', expected argument " "5"" of type '" "long""'");
11653 arg5
= static_cast< long >(val5
);
11656 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11657 result
= (wxAuiFloatingFrame
*)new wxAuiFloatingFrame(arg1
,arg2
,(wxAuiPaneInfo
const &)*arg3
,arg4
,arg5
);
11658 wxPyEndAllowThreads(__tstate
);
11659 if (PyErr_Occurred()) SWIG_fail
;
11661 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiFloatingFrame
, SWIG_POINTER_NEW
| 0 );
11668 SWIGINTERN PyObject
*_wrap_delete_AuiFloatingFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11669 PyObject
*resultobj
= 0;
11670 wxAuiFloatingFrame
*arg1
= (wxAuiFloatingFrame
*) 0 ;
11673 PyObject
*swig_obj
[1] ;
11675 if (!args
) SWIG_fail
;
11676 swig_obj
[0] = args
;
11677 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiFloatingFrame
, SWIG_POINTER_DISOWN
| 0 );
11678 if (!SWIG_IsOK(res1
)) {
11679 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiFloatingFrame" "', expected argument " "1"" of type '" "wxAuiFloatingFrame *""'");
11681 arg1
= reinterpret_cast< wxAuiFloatingFrame
* >(argp1
);
11683 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11686 wxPyEndAllowThreads(__tstate
);
11687 if (PyErr_Occurred()) SWIG_fail
;
11689 resultobj
= SWIG_Py_Void();
11696 SWIGINTERN PyObject
*_wrap_AuiFloatingFrame_SetPaneWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11697 PyObject
*resultobj
= 0;
11698 wxAuiFloatingFrame
*arg1
= (wxAuiFloatingFrame
*) 0 ;
11699 wxAuiPaneInfo
*arg2
= 0 ;
11704 PyObject
* obj0
= 0 ;
11705 PyObject
* obj1
= 0 ;
11706 char * kwnames
[] = {
11707 (char *) "self",(char *) "pane", NULL
11710 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiFloatingFrame_SetPaneWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11711 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiFloatingFrame
, 0 | 0 );
11712 if (!SWIG_IsOK(res1
)) {
11713 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiFloatingFrame_SetPaneWindow" "', expected argument " "1"" of type '" "wxAuiFloatingFrame *""'");
11715 arg1
= reinterpret_cast< wxAuiFloatingFrame
* >(argp1
);
11716 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
11717 if (!SWIG_IsOK(res2
)) {
11718 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiFloatingFrame_SetPaneWindow" "', expected argument " "2"" of type '" "wxAuiPaneInfo const &""'");
11721 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiFloatingFrame_SetPaneWindow" "', expected argument " "2"" of type '" "wxAuiPaneInfo const &""'");
11723 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
11725 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11726 (arg1
)->SetPaneWindow((wxAuiPaneInfo
const &)*arg2
);
11727 wxPyEndAllowThreads(__tstate
);
11728 if (PyErr_Occurred()) SWIG_fail
;
11730 resultobj
= SWIG_Py_Void();
11737 SWIGINTERN PyObject
*_wrap_AuiFloatingFrame_GetOwnerManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11738 PyObject
*resultobj
= 0;
11739 wxAuiFloatingFrame
*arg1
= (wxAuiFloatingFrame
*) 0 ;
11740 wxAuiManager
*result
= 0 ;
11743 PyObject
*swig_obj
[1] ;
11745 if (!args
) SWIG_fail
;
11746 swig_obj
[0] = args
;
11747 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiFloatingFrame
, 0 | 0 );
11748 if (!SWIG_IsOK(res1
)) {
11749 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiFloatingFrame_GetOwnerManager" "', expected argument " "1"" of type '" "wxAuiFloatingFrame const *""'");
11751 arg1
= reinterpret_cast< wxAuiFloatingFrame
* >(argp1
);
11753 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11754 result
= (wxAuiManager
*)((wxAuiFloatingFrame
const *)arg1
)->GetOwnerManager();
11755 wxPyEndAllowThreads(__tstate
);
11756 if (PyErr_Occurred()) SWIG_fail
;
11758 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 | 0 );
11765 SWIGINTERN PyObject
*AuiFloatingFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11767 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11768 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiFloatingFrame
, SWIG_NewClientData(obj
));
11769 return SWIG_Py_Void();
11772 SWIGINTERN PyObject
*AuiFloatingFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11773 return SWIG_Python_InitShadowInstance(args
);
11776 SWIGINTERN PyObject
*_wrap_new_AuiNotebookEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11777 PyObject
*resultobj
= 0;
11778 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
11779 int arg2
= (int) 0 ;
11780 wxAuiNotebookEvent
*result
= 0 ;
11785 PyObject
* obj0
= 0 ;
11786 PyObject
* obj1
= 0 ;
11787 char * kwnames
[] = {
11788 (char *) "command_type",(char *) "win_id", NULL
11791 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_AuiNotebookEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11793 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
11794 if (!SWIG_IsOK(ecode1
)) {
11795 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_AuiNotebookEvent" "', expected argument " "1"" of type '" "wxEventType""'");
11797 arg1
= static_cast< wxEventType
>(val1
);
11800 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11801 if (!SWIG_IsOK(ecode2
)) {
11802 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiNotebookEvent" "', expected argument " "2"" of type '" "int""'");
11804 arg2
= static_cast< int >(val2
);
11807 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11808 result
= (wxAuiNotebookEvent
*)new wxAuiNotebookEvent(arg1
,arg2
);
11809 wxPyEndAllowThreads(__tstate
);
11810 if (PyErr_Occurred()) SWIG_fail
;
11812 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookEvent
, SWIG_POINTER_NEW
| 0 );
11819 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11820 PyObject
*resultobj
= 0;
11821 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11827 PyObject
* obj0
= 0 ;
11828 PyObject
* obj1
= 0 ;
11829 char * kwnames
[] = {
11830 (char *) "self",(char *) "s", NULL
11833 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11834 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11835 if (!SWIG_IsOK(res1
)) {
11836 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11838 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11839 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11840 if (!SWIG_IsOK(ecode2
)) {
11841 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_SetSelection" "', expected argument " "2"" of type '" "int""'");
11843 arg2
= static_cast< int >(val2
);
11845 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11846 (arg1
)->SetSelection(arg2
);
11847 wxPyEndAllowThreads(__tstate
);
11848 if (PyErr_Occurred()) SWIG_fail
;
11850 resultobj
= SWIG_Py_Void();
11857 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11858 PyObject
*resultobj
= 0;
11859 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11863 PyObject
*swig_obj
[1] ;
11865 if (!args
) SWIG_fail
;
11866 swig_obj
[0] = args
;
11867 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11868 if (!SWIG_IsOK(res1
)) {
11869 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
11871 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11873 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11874 result
= (int)((wxAuiNotebookEvent
const *)arg1
)->GetSelection();
11875 wxPyEndAllowThreads(__tstate
);
11876 if (PyErr_Occurred()) SWIG_fail
;
11878 resultobj
= SWIG_From_int(static_cast< int >(result
));
11885 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetOldSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11886 PyObject
*resultobj
= 0;
11887 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11893 PyObject
* obj0
= 0 ;
11894 PyObject
* obj1
= 0 ;
11895 char * kwnames
[] = {
11896 (char *) "self",(char *) "s", NULL
11899 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetOldSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11900 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11901 if (!SWIG_IsOK(res1
)) {
11902 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetOldSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11904 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11905 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11906 if (!SWIG_IsOK(ecode2
)) {
11907 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_SetOldSelection" "', expected argument " "2"" of type '" "int""'");
11909 arg2
= static_cast< int >(val2
);
11911 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11912 (arg1
)->SetOldSelection(arg2
);
11913 wxPyEndAllowThreads(__tstate
);
11914 if (PyErr_Occurred()) SWIG_fail
;
11916 resultobj
= SWIG_Py_Void();
11923 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetOldSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11924 PyObject
*resultobj
= 0;
11925 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11929 PyObject
*swig_obj
[1] ;
11931 if (!args
) SWIG_fail
;
11932 swig_obj
[0] = args
;
11933 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11934 if (!SWIG_IsOK(res1
)) {
11935 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetOldSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
11937 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11939 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11940 result
= (int)((wxAuiNotebookEvent
const *)arg1
)->GetOldSelection();
11941 wxPyEndAllowThreads(__tstate
);
11942 if (PyErr_Occurred()) SWIG_fail
;
11944 resultobj
= SWIG_From_int(static_cast< int >(result
));
11951 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetDragSource(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11952 PyObject
*resultobj
= 0;
11953 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11954 wxAuiNotebook
*arg2
= (wxAuiNotebook
*) 0 ;
11959 PyObject
* obj0
= 0 ;
11960 PyObject
* obj1
= 0 ;
11961 char * kwnames
[] = {
11962 (char *) "self",(char *) "s", NULL
11965 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetDragSource",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11966 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11967 if (!SWIG_IsOK(res1
)) {
11968 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetDragSource" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11970 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11971 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
11972 if (!SWIG_IsOK(res2
)) {
11973 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookEvent_SetDragSource" "', expected argument " "2"" of type '" "wxAuiNotebook *""'");
11975 arg2
= reinterpret_cast< wxAuiNotebook
* >(argp2
);
11977 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11978 (arg1
)->SetDragSource(arg2
);
11979 wxPyEndAllowThreads(__tstate
);
11980 if (PyErr_Occurred()) SWIG_fail
;
11982 resultobj
= SWIG_Py_Void();
11989 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetDragSource(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11990 PyObject
*resultobj
= 0;
11991 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11992 wxAuiNotebook
*result
= 0 ;
11995 PyObject
*swig_obj
[1] ;
11997 if (!args
) SWIG_fail
;
11998 swig_obj
[0] = args
;
11999 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12000 if (!SWIG_IsOK(res1
)) {
12001 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetDragSource" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
12003 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12005 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12006 result
= (wxAuiNotebook
*)((wxAuiNotebookEvent
const *)arg1
)->GetDragSource();
12007 wxPyEndAllowThreads(__tstate
);
12008 if (PyErr_Occurred()) SWIG_fail
;
12010 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
12017 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_old_selection_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12018 PyObject
*resultobj
= 0;
12019 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12025 PyObject
*swig_obj
[2] ;
12027 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_old_selection_set",2,2,swig_obj
)) SWIG_fail
;
12028 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12029 if (!SWIG_IsOK(res1
)) {
12030 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_old_selection_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12032 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12033 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12034 if (!SWIG_IsOK(ecode2
)) {
12035 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_old_selection_set" "', expected argument " "2"" of type '" "int""'");
12037 arg2
= static_cast< int >(val2
);
12038 if (arg1
) (arg1
)->old_selection
= arg2
;
12040 resultobj
= SWIG_Py_Void();
12047 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_old_selection_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12048 PyObject
*resultobj
= 0;
12049 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12053 PyObject
*swig_obj
[1] ;
12055 if (!args
) SWIG_fail
;
12056 swig_obj
[0] = args
;
12057 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12058 if (!SWIG_IsOK(res1
)) {
12059 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_old_selection_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12061 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12062 result
= (int) ((arg1
)->old_selection
);
12063 resultobj
= SWIG_From_int(static_cast< int >(result
));
12070 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_selection_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12071 PyObject
*resultobj
= 0;
12072 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12078 PyObject
*swig_obj
[2] ;
12080 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_selection_set",2,2,swig_obj
)) SWIG_fail
;
12081 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12082 if (!SWIG_IsOK(res1
)) {
12083 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_selection_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12085 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12086 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12087 if (!SWIG_IsOK(ecode2
)) {
12088 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_selection_set" "', expected argument " "2"" of type '" "int""'");
12090 arg2
= static_cast< int >(val2
);
12091 if (arg1
) (arg1
)->selection
= arg2
;
12093 resultobj
= SWIG_Py_Void();
12100 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_selection_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12101 PyObject
*resultobj
= 0;
12102 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12106 PyObject
*swig_obj
[1] ;
12108 if (!args
) SWIG_fail
;
12109 swig_obj
[0] = args
;
12110 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12111 if (!SWIG_IsOK(res1
)) {
12112 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_selection_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12114 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12115 result
= (int) ((arg1
)->selection
);
12116 resultobj
= SWIG_From_int(static_cast< int >(result
));
12123 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_drag_source_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12124 PyObject
*resultobj
= 0;
12125 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12126 wxAuiNotebook
*arg2
= (wxAuiNotebook
*) 0 ;
12131 PyObject
*swig_obj
[2] ;
12133 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_drag_source_set",2,2,swig_obj
)) SWIG_fail
;
12134 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12135 if (!SWIG_IsOK(res1
)) {
12136 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_drag_source_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12138 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12139 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_DISOWN
| 0 );
12140 if (!SWIG_IsOK(res2
)) {
12141 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookEvent_drag_source_set" "', expected argument " "2"" of type '" "wxAuiNotebook *""'");
12143 arg2
= reinterpret_cast< wxAuiNotebook
* >(argp2
);
12144 if (arg1
) (arg1
)->drag_source
= arg2
;
12146 resultobj
= SWIG_Py_Void();
12153 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_drag_source_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12154 PyObject
*resultobj
= 0;
12155 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12156 wxAuiNotebook
*result
= 0 ;
12159 PyObject
*swig_obj
[1] ;
12161 if (!args
) SWIG_fail
;
12162 swig_obj
[0] = args
;
12163 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12164 if (!SWIG_IsOK(res1
)) {
12165 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_drag_source_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12167 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12168 result
= (wxAuiNotebook
*) ((arg1
)->drag_source
);
12169 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
12176 SWIGINTERN PyObject
*AuiNotebookEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12178 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12179 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebookEvent
, SWIG_NewClientData(obj
));
12180 return SWIG_Py_Void();
12183 SWIGINTERN PyObject
*AuiNotebookEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12184 return SWIG_Python_InitShadowInstance(args
);
12187 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_window_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12188 PyObject
*resultobj
= 0;
12189 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12190 wxWindow
*arg2
= (wxWindow
*) 0 ;
12195 PyObject
*swig_obj
[2] ;
12197 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_window_set",2,2,swig_obj
)) SWIG_fail
;
12198 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12199 if (!SWIG_IsOK(res1
)) {
12200 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_window_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12202 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12203 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN
| 0 );
12204 if (!SWIG_IsOK(res2
)) {
12205 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_window_set" "', expected argument " "2"" of type '" "wxWindow *""'");
12207 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12208 if (arg1
) (arg1
)->window
= arg2
;
12210 resultobj
= SWIG_Py_Void();
12217 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_window_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12218 PyObject
*resultobj
= 0;
12219 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12220 wxWindow
*result
= 0 ;
12223 PyObject
*swig_obj
[1] ;
12225 if (!args
) SWIG_fail
;
12226 swig_obj
[0] = args
;
12227 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12228 if (!SWIG_IsOK(res1
)) {
12229 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_window_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12231 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12232 result
= (wxWindow
*) ((arg1
)->window
);
12234 resultobj
= wxPyMake_wxObject(result
, 0);
12242 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_caption_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12243 PyObject
*resultobj
= 0;
12244 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12245 wxString
*arg2
= (wxString
*) 0 ;
12248 bool temp2
= false ;
12249 PyObject
*swig_obj
[2] ;
12251 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_caption_set",2,2,swig_obj
)) SWIG_fail
;
12252 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12253 if (!SWIG_IsOK(res1
)) {
12254 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_caption_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12256 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12258 arg2
= wxString_in_helper(swig_obj
[1]);
12259 if (arg2
== NULL
) SWIG_fail
;
12262 if (arg1
) (arg1
)->caption
= *arg2
;
12264 resultobj
= SWIG_Py_Void();
12279 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_caption_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12280 PyObject
*resultobj
= 0;
12281 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12282 wxString
*result
= 0 ;
12285 PyObject
*swig_obj
[1] ;
12287 if (!args
) SWIG_fail
;
12288 swig_obj
[0] = args
;
12289 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12290 if (!SWIG_IsOK(res1
)) {
12291 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_caption_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12293 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12294 result
= (wxString
*)& ((arg1
)->caption
);
12297 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
12299 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
12308 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12309 PyObject
*resultobj
= 0;
12310 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12311 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
12316 PyObject
*swig_obj
[2] ;
12318 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
12319 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12320 if (!SWIG_IsOK(res1
)) {
12321 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_bitmap_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12323 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12324 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
12325 if (!SWIG_IsOK(res2
)) {
12326 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
12328 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
12329 if (arg1
) (arg1
)->bitmap
= *arg2
;
12331 resultobj
= SWIG_Py_Void();
12338 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12339 PyObject
*resultobj
= 0;
12340 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12341 wxBitmap
*result
= 0 ;
12344 PyObject
*swig_obj
[1] ;
12346 if (!args
) SWIG_fail
;
12347 swig_obj
[0] = args
;
12348 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12349 if (!SWIG_IsOK(res1
)) {
12350 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_bitmap_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12352 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12353 result
= (wxBitmap
*)& ((arg1
)->bitmap
);
12354 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
12361 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12362 PyObject
*resultobj
= 0;
12363 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12364 wxRect
*arg2
= (wxRect
*) 0 ;
12369 PyObject
*swig_obj
[2] ;
12371 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_rect_set",2,2,swig_obj
)) SWIG_fail
;
12372 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12373 if (!SWIG_IsOK(res1
)) {
12374 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_rect_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12376 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12377 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
12378 if (!SWIG_IsOK(res2
)) {
12379 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
12381 arg2
= reinterpret_cast< wxRect
* >(argp2
);
12382 if (arg1
) (arg1
)->rect
= *arg2
;
12384 resultobj
= SWIG_Py_Void();
12391 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12392 PyObject
*resultobj
= 0;
12393 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12394 wxRect
*result
= 0 ;
12397 PyObject
*swig_obj
[1] ;
12399 if (!args
) SWIG_fail
;
12400 swig_obj
[0] = args
;
12401 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12402 if (!SWIG_IsOK(res1
)) {
12403 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_rect_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12405 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12406 result
= (wxRect
*)& ((arg1
)->rect
);
12407 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
12414 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_active_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12415 PyObject
*resultobj
= 0;
12416 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12422 PyObject
*swig_obj
[2] ;
12424 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_active_set",2,2,swig_obj
)) SWIG_fail
;
12425 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12426 if (!SWIG_IsOK(res1
)) {
12427 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_active_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12429 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12430 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
12431 if (!SWIG_IsOK(ecode2
)) {
12432 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookPage_active_set" "', expected argument " "2"" of type '" "bool""'");
12434 arg2
= static_cast< bool >(val2
);
12435 if (arg1
) (arg1
)->active
= arg2
;
12437 resultobj
= SWIG_Py_Void();
12444 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_active_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12445 PyObject
*resultobj
= 0;
12446 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12450 PyObject
*swig_obj
[1] ;
12452 if (!args
) SWIG_fail
;
12453 swig_obj
[0] = args
;
12454 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12455 if (!SWIG_IsOK(res1
)) {
12456 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_active_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12458 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12459 result
= (bool) ((arg1
)->active
);
12461 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12469 SWIGINTERN PyObject
*AuiNotebookPage_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12471 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12472 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebookPage
, SWIG_NewClientData(obj
));
12473 return SWIG_Py_Void();
12476 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_id_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12477 PyObject
*resultobj
= 0;
12478 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12484 PyObject
*swig_obj
[2] ;
12486 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_id_set",2,2,swig_obj
)) SWIG_fail
;
12487 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12488 if (!SWIG_IsOK(res1
)) {
12489 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_id_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12491 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12492 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12493 if (!SWIG_IsOK(ecode2
)) {
12494 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_id_set" "', expected argument " "2"" of type '" "int""'");
12496 arg2
= static_cast< int >(val2
);
12497 if (arg1
) (arg1
)->id
= arg2
;
12499 resultobj
= SWIG_Py_Void();
12506 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_id_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12507 PyObject
*resultobj
= 0;
12508 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12512 PyObject
*swig_obj
[1] ;
12514 if (!args
) SWIG_fail
;
12515 swig_obj
[0] = args
;
12516 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12517 if (!SWIG_IsOK(res1
)) {
12518 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_id_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12520 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12521 result
= (int) ((arg1
)->id
);
12522 resultobj
= SWIG_From_int(static_cast< int >(result
));
12529 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_cur_state_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12530 PyObject
*resultobj
= 0;
12531 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12537 PyObject
*swig_obj
[2] ;
12539 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_cur_state_set",2,2,swig_obj
)) SWIG_fail
;
12540 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12541 if (!SWIG_IsOK(res1
)) {
12542 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_cur_state_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12544 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12545 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12546 if (!SWIG_IsOK(ecode2
)) {
12547 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_cur_state_set" "', expected argument " "2"" of type '" "int""'");
12549 arg2
= static_cast< int >(val2
);
12550 if (arg1
) (arg1
)->cur_state
= arg2
;
12552 resultobj
= SWIG_Py_Void();
12559 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_cur_state_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12560 PyObject
*resultobj
= 0;
12561 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12565 PyObject
*swig_obj
[1] ;
12567 if (!args
) SWIG_fail
;
12568 swig_obj
[0] = args
;
12569 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12570 if (!SWIG_IsOK(res1
)) {
12571 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_cur_state_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12573 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12574 result
= (int) ((arg1
)->cur_state
);
12575 resultobj
= SWIG_From_int(static_cast< int >(result
));
12582 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_location_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12583 PyObject
*resultobj
= 0;
12584 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12590 PyObject
*swig_obj
[2] ;
12592 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_location_set",2,2,swig_obj
)) SWIG_fail
;
12593 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12594 if (!SWIG_IsOK(res1
)) {
12595 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_location_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12597 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12598 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12599 if (!SWIG_IsOK(ecode2
)) {
12600 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_location_set" "', expected argument " "2"" of type '" "int""'");
12602 arg2
= static_cast< int >(val2
);
12603 if (arg1
) (arg1
)->location
= arg2
;
12605 resultobj
= SWIG_Py_Void();
12612 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_location_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12613 PyObject
*resultobj
= 0;
12614 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12618 PyObject
*swig_obj
[1] ;
12620 if (!args
) SWIG_fail
;
12621 swig_obj
[0] = args
;
12622 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12623 if (!SWIG_IsOK(res1
)) {
12624 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_location_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12626 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12627 result
= (int) ((arg1
)->location
);
12628 resultobj
= SWIG_From_int(static_cast< int >(result
));
12635 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12636 PyObject
*resultobj
= 0;
12637 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12638 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
12643 PyObject
*swig_obj
[2] ;
12645 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
12646 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12647 if (!SWIG_IsOK(res1
)) {
12648 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_bitmap_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12650 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12651 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
12652 if (!SWIG_IsOK(res2
)) {
12653 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
12655 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
12656 if (arg1
) (arg1
)->bitmap
= *arg2
;
12658 resultobj
= SWIG_Py_Void();
12665 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12666 PyObject
*resultobj
= 0;
12667 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12668 wxBitmap
*result
= 0 ;
12671 PyObject
*swig_obj
[1] ;
12673 if (!args
) SWIG_fail
;
12674 swig_obj
[0] = args
;
12675 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12676 if (!SWIG_IsOK(res1
)) {
12677 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_bitmap_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12679 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12680 result
= (wxBitmap
*)& ((arg1
)->bitmap
);
12681 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
12688 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_dis_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12689 PyObject
*resultobj
= 0;
12690 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12691 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
12696 PyObject
*swig_obj
[2] ;
12698 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_dis_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
12699 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12700 if (!SWIG_IsOK(res1
)) {
12701 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_dis_bitmap_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12703 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12704 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
12705 if (!SWIG_IsOK(res2
)) {
12706 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_dis_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
12708 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
12709 if (arg1
) (arg1
)->dis_bitmap
= *arg2
;
12711 resultobj
= SWIG_Py_Void();
12718 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_dis_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12719 PyObject
*resultobj
= 0;
12720 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12721 wxBitmap
*result
= 0 ;
12724 PyObject
*swig_obj
[1] ;
12726 if (!args
) SWIG_fail
;
12727 swig_obj
[0] = args
;
12728 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12729 if (!SWIG_IsOK(res1
)) {
12730 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_dis_bitmap_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12732 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12733 result
= (wxBitmap
*)& ((arg1
)->dis_bitmap
);
12734 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
12741 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12742 PyObject
*resultobj
= 0;
12743 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12744 wxRect
*arg2
= (wxRect
*) 0 ;
12749 PyObject
*swig_obj
[2] ;
12751 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_rect_set",2,2,swig_obj
)) SWIG_fail
;
12752 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12753 if (!SWIG_IsOK(res1
)) {
12754 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_rect_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12756 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12757 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
12758 if (!SWIG_IsOK(res2
)) {
12759 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
12761 arg2
= reinterpret_cast< wxRect
* >(argp2
);
12762 if (arg1
) (arg1
)->rect
= *arg2
;
12764 resultobj
= SWIG_Py_Void();
12771 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12772 PyObject
*resultobj
= 0;
12773 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12774 wxRect
*result
= 0 ;
12777 PyObject
*swig_obj
[1] ;
12779 if (!args
) SWIG_fail
;
12780 swig_obj
[0] = args
;
12781 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12782 if (!SWIG_IsOK(res1
)) {
12783 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_rect_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12785 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12786 result
= (wxRect
*)& ((arg1
)->rect
);
12787 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
12794 SWIGINTERN PyObject
*AuiTabContainerButton_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12796 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12797 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabContainerButton
, SWIG_NewClientData(obj
));
12798 return SWIG_Py_Void();
12801 SWIGINTERN PyObject
*_wrap_delete_AuiTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12802 PyObject
*resultobj
= 0;
12803 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12806 PyObject
*swig_obj
[1] ;
12808 if (!args
) SWIG_fail
;
12809 swig_obj
[0] = args
;
12810 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabArt
, SWIG_POINTER_DISOWN
| 0 );
12811 if (!SWIG_IsOK(res1
)) {
12812 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabArt" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12814 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12816 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12819 wxPyEndAllowThreads(__tstate
);
12820 if (PyErr_Occurred()) SWIG_fail
;
12822 resultobj
= SWIG_Py_Void();
12829 SWIGINTERN PyObject
*_wrap_AuiTabArt_Clone(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12830 PyObject
*resultobj
= 0;
12831 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12832 wxAuiTabArt
*result
= 0 ;
12835 PyObject
*swig_obj
[1] ;
12837 if (!args
) SWIG_fail
;
12838 swig_obj
[0] = args
;
12839 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12840 if (!SWIG_IsOK(res1
)) {
12841 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_Clone" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12843 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12845 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12846 result
= (wxAuiTabArt
*)(arg1
)->Clone();
12847 wxPyEndAllowThreads(__tstate
);
12848 if (PyErr_Occurred()) SWIG_fail
;
12850 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12857 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12858 PyObject
*resultobj
= 0;
12859 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12865 PyObject
* obj0
= 0 ;
12866 PyObject
* obj1
= 0 ;
12867 char * kwnames
[] = {
12868 (char *) "self",(char *) "flags", NULL
12871 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12872 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12873 if (!SWIG_IsOK(res1
)) {
12874 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetFlags" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12876 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12877 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12878 if (!SWIG_IsOK(ecode2
)) {
12879 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabArt_SetFlags" "', expected argument " "2"" of type '" "int""'");
12881 arg2
= static_cast< int >(val2
);
12883 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12884 (arg1
)->SetFlags(arg2
);
12885 wxPyEndAllowThreads(__tstate
);
12886 if (PyErr_Occurred()) SWIG_fail
;
12888 resultobj
= SWIG_Py_Void();
12895 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetSizingInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12896 PyObject
*resultobj
= 0;
12897 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12905 PyObject
* obj0
= 0 ;
12906 PyObject
* obj1
= 0 ;
12907 PyObject
* obj2
= 0 ;
12908 char * kwnames
[] = {
12909 (char *) "self",(char *) "tab_ctrl_size",(char *) "tab_count", NULL
12912 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabArt_SetSizingInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12913 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12914 if (!SWIG_IsOK(res1
)) {
12915 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetSizingInfo" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12917 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12920 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
12922 ecode3
= SWIG_AsVal_size_t(obj2
, &val3
);
12923 if (!SWIG_IsOK(ecode3
)) {
12924 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabArt_SetSizingInfo" "', expected argument " "3"" of type '" "size_t""'");
12926 arg3
= static_cast< size_t >(val3
);
12928 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12929 (arg1
)->SetSizingInfo((wxSize
const &)*arg2
,arg3
);
12930 wxPyEndAllowThreads(__tstate
);
12931 if (PyErr_Occurred()) SWIG_fail
;
12933 resultobj
= SWIG_Py_Void();
12940 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetNormalFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12941 PyObject
*resultobj
= 0;
12942 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12948 PyObject
* obj0
= 0 ;
12949 PyObject
* obj1
= 0 ;
12950 char * kwnames
[] = {
12951 (char *) "self",(char *) "font", NULL
12954 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetNormalFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12955 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12956 if (!SWIG_IsOK(res1
)) {
12957 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetNormalFont" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
12959 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
12960 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
12961 if (!SWIG_IsOK(res2
)) {
12962 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12965 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
12967 arg2
= reinterpret_cast< wxFont
* >(argp2
);
12969 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12970 (arg1
)->SetNormalFont((wxFont
const &)*arg2
);
12971 wxPyEndAllowThreads(__tstate
);
12972 if (PyErr_Occurred()) SWIG_fail
;
12974 resultobj
= SWIG_Py_Void();
12981 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetSelectedFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12982 PyObject
*resultobj
= 0;
12983 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
12989 PyObject
* obj0
= 0 ;
12990 PyObject
* obj1
= 0 ;
12991 char * kwnames
[] = {
12992 (char *) "self",(char *) "font", NULL
12995 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetSelectedFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12996 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
12997 if (!SWIG_IsOK(res1
)) {
12998 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetSelectedFont" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13000 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13001 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
13002 if (!SWIG_IsOK(res2
)) {
13003 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
13006 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
13008 arg2
= reinterpret_cast< wxFont
* >(argp2
);
13010 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13011 (arg1
)->SetSelectedFont((wxFont
const &)*arg2
);
13012 wxPyEndAllowThreads(__tstate
);
13013 if (PyErr_Occurred()) SWIG_fail
;
13015 resultobj
= SWIG_Py_Void();
13022 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetMeasuringFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13023 PyObject
*resultobj
= 0;
13024 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13030 PyObject
* obj0
= 0 ;
13031 PyObject
* obj1
= 0 ;
13032 char * kwnames
[] = {
13033 (char *) "self",(char *) "font", NULL
13036 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetMeasuringFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13037 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13038 if (!SWIG_IsOK(res1
)) {
13039 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetMeasuringFont" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13041 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13042 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
13043 if (!SWIG_IsOK(res2
)) {
13044 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
13047 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
13049 arg2
= reinterpret_cast< wxFont
* >(argp2
);
13051 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13052 (arg1
)->SetMeasuringFont((wxFont
const &)*arg2
);
13053 wxPyEndAllowThreads(__tstate
);
13054 if (PyErr_Occurred()) SWIG_fail
;
13056 resultobj
= SWIG_Py_Void();
13063 SWIGINTERN PyObject
*_wrap_AuiTabArt_DrawBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13064 PyObject
*resultobj
= 0;
13065 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13067 wxWindow
*arg3
= (wxWindow
*) 0 ;
13076 PyObject
* obj0
= 0 ;
13077 PyObject
* obj1
= 0 ;
13078 PyObject
* obj2
= 0 ;
13079 PyObject
* obj3
= 0 ;
13080 char * kwnames
[] = {
13081 (char *) "self",(char *) "dc",(char *) "wnd",(char *) "rect", NULL
13084 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabArt_DrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13085 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13086 if (!SWIG_IsOK(res1
)) {
13087 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_DrawBackground" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13089 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13090 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
13091 if (!SWIG_IsOK(res2
)) {
13092 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
13095 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
13097 arg2
= reinterpret_cast< wxDC
* >(argp2
);
13098 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13099 if (!SWIG_IsOK(res3
)) {
13100 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_DrawBackground" "', expected argument " "3"" of type '" "wxWindow *""'");
13102 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
13105 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
13108 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13109 (arg1
)->DrawBackground(*arg2
,arg3
,(wxRect
const &)*arg4
);
13110 wxPyEndAllowThreads(__tstate
);
13111 if (PyErr_Occurred()) SWIG_fail
;
13113 resultobj
= SWIG_Py_Void();
13120 SWIGINTERN PyObject
*_wrap_AuiTabArt_DrawTab(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13121 PyObject
*resultobj
= 0;
13122 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13124 wxWindow
*arg3
= (wxWindow
*) 0 ;
13125 wxAuiNotebookPage
*arg4
= 0 ;
13128 wxRect
*arg7
= (wxRect
*) 0 ;
13129 wxRect
*arg8
= (wxRect
*) 0 ;
13130 int *arg9
= (int *) 0 ;
13148 PyObject
* obj0
= 0 ;
13149 PyObject
* obj1
= 0 ;
13150 PyObject
* obj2
= 0 ;
13151 PyObject
* obj3
= 0 ;
13152 PyObject
* obj4
= 0 ;
13153 PyObject
* obj5
= 0 ;
13154 PyObject
* obj6
= 0 ;
13155 PyObject
* obj7
= 0 ;
13156 PyObject
* obj8
= 0 ;
13157 char * kwnames
[] = {
13158 (char *) "self",(char *) "dc",(char *) "wnd",(char *) "pane",(char *) "in_rect",(char *) "close_button_state",(char *) "out_tab_rect",(char *) "out_button_rect",(char *) "x_extent", NULL
13161 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOOO:AuiTabArt_DrawTab",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) SWIG_fail
;
13162 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13163 if (!SWIG_IsOK(res1
)) {
13164 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13166 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13167 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
13168 if (!SWIG_IsOK(res2
)) {
13169 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "2"" of type '" "wxDC &""'");
13172 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawTab" "', expected argument " "2"" of type '" "wxDC &""'");
13174 arg2
= reinterpret_cast< wxDC
* >(argp2
);
13175 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13176 if (!SWIG_IsOK(res3
)) {
13177 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "3"" of type '" "wxWindow *""'");
13179 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
13180 res4
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0);
13181 if (!SWIG_IsOK(res4
)) {
13182 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "4"" of type '" "wxAuiNotebookPage const &""'");
13185 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawTab" "', expected argument " "4"" of type '" "wxAuiNotebookPage const &""'");
13187 arg4
= reinterpret_cast< wxAuiNotebookPage
* >(argp4
);
13190 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
13192 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
13193 if (!SWIG_IsOK(ecode6
)) {
13194 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "6"" of type '" "int""'");
13196 arg6
= static_cast< int >(val6
);
13197 res7
= SWIG_ConvertPtr(obj6
, &argp7
,SWIGTYPE_p_wxRect
, 0 | 0 );
13198 if (!SWIG_IsOK(res7
)) {
13199 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "7"" of type '" "wxRect *""'");
13201 arg7
= reinterpret_cast< wxRect
* >(argp7
);
13202 res8
= SWIG_ConvertPtr(obj7
, &argp8
,SWIGTYPE_p_wxRect
, 0 | 0 );
13203 if (!SWIG_IsOK(res8
)) {
13204 SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "8"" of type '" "wxRect *""'");
13206 arg8
= reinterpret_cast< wxRect
* >(argp8
);
13207 res9
= SWIG_ConvertPtr(obj8
, &argp9
,SWIGTYPE_p_int
, 0 | 0 );
13208 if (!SWIG_IsOK(res9
)) {
13209 SWIG_exception_fail(SWIG_ArgError(res9
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "9"" of type '" "int *""'");
13211 arg9
= reinterpret_cast< int * >(argp9
);
13213 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13214 (arg1
)->DrawTab(*arg2
,arg3
,(wxAuiNotebookPage
const &)*arg4
,(wxRect
const &)*arg5
,arg6
,arg7
,arg8
,arg9
);
13215 wxPyEndAllowThreads(__tstate
);
13216 if (PyErr_Occurred()) SWIG_fail
;
13218 resultobj
= SWIG_Py_Void();
13225 SWIGINTERN PyObject
*_wrap_AuiTabArt_DrawButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13226 PyObject
*resultobj
= 0;
13227 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13229 wxWindow
*arg3
= (wxWindow
*) 0 ;
13234 wxRect
*arg8
= (wxRect
*) 0 ;
13250 PyObject
* obj0
= 0 ;
13251 PyObject
* obj1
= 0 ;
13252 PyObject
* obj2
= 0 ;
13253 PyObject
* obj3
= 0 ;
13254 PyObject
* obj4
= 0 ;
13255 PyObject
* obj5
= 0 ;
13256 PyObject
* obj6
= 0 ;
13257 PyObject
* obj7
= 0 ;
13258 char * kwnames
[] = {
13259 (char *) "self",(char *) "dc",(char *) "wnd",(char *) "in_rect",(char *) "bitmap_id",(char *) "button_state",(char *) "orientation",(char *) "out_rect", NULL
13262 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOO:AuiTabArt_DrawButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
13263 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13264 if (!SWIG_IsOK(res1
)) {
13265 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13267 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13268 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
13269 if (!SWIG_IsOK(res2
)) {
13270 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "2"" of type '" "wxDC &""'");
13273 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawButton" "', expected argument " "2"" of type '" "wxDC &""'");
13275 arg2
= reinterpret_cast< wxDC
* >(argp2
);
13276 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13277 if (!SWIG_IsOK(res3
)) {
13278 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "3"" of type '" "wxWindow *""'");
13280 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
13283 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
13285 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
13286 if (!SWIG_IsOK(ecode5
)) {
13287 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "5"" of type '" "int""'");
13289 arg5
= static_cast< int >(val5
);
13290 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
13291 if (!SWIG_IsOK(ecode6
)) {
13292 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "6"" of type '" "int""'");
13294 arg6
= static_cast< int >(val6
);
13295 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
13296 if (!SWIG_IsOK(ecode7
)) {
13297 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "7"" of type '" "int""'");
13299 arg7
= static_cast< int >(val7
);
13300 res8
= SWIG_ConvertPtr(obj7
, &argp8
,SWIGTYPE_p_wxRect
, 0 | 0 );
13301 if (!SWIG_IsOK(res8
)) {
13302 SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "8"" of type '" "wxRect *""'");
13304 arg8
= reinterpret_cast< wxRect
* >(argp8
);
13306 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13307 (arg1
)->DrawButton(*arg2
,arg3
,(wxRect
const &)*arg4
,arg5
,arg6
,arg7
,arg8
);
13308 wxPyEndAllowThreads(__tstate
);
13309 if (PyErr_Occurred()) SWIG_fail
;
13311 resultobj
= SWIG_Py_Void();
13318 SWIGINTERN PyObject
*_wrap_AuiTabArt_GetTabSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13319 PyObject
*resultobj
= 0;
13320 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13322 wxWindow
*arg3
= (wxWindow
*) 0 ;
13323 wxString
*arg4
= 0 ;
13324 wxBitmap
*arg5
= 0 ;
13327 int *arg8
= (int *) 0 ;
13335 bool temp4
= false ;
13344 PyObject
* obj0
= 0 ;
13345 PyObject
* obj1
= 0 ;
13346 PyObject
* obj2
= 0 ;
13347 PyObject
* obj3
= 0 ;
13348 PyObject
* obj4
= 0 ;
13349 PyObject
* obj5
= 0 ;
13350 PyObject
* obj6
= 0 ;
13351 PyObject
* obj7
= 0 ;
13352 char * kwnames
[] = {
13353 (char *) "self",(char *) "dc",(char *) "wnd",(char *) "caption",(char *) "bitmap",(char *) "active",(char *) "close_button_state",(char *) "x_extent", NULL
13356 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOO:AuiTabArt_GetTabSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
13357 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13358 if (!SWIG_IsOK(res1
)) {
13359 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13361 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13362 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
13363 if (!SWIG_IsOK(res2
)) {
13364 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "2"" of type '" "wxDC &""'");
13367 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_GetTabSize" "', expected argument " "2"" of type '" "wxDC &""'");
13369 arg2
= reinterpret_cast< wxDC
* >(argp2
);
13370 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13371 if (!SWIG_IsOK(res3
)) {
13372 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "3"" of type '" "wxWindow *""'");
13374 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
13376 arg4
= wxString_in_helper(obj3
);
13377 if (arg4
== NULL
) SWIG_fail
;
13380 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
, 0 | 0);
13381 if (!SWIG_IsOK(res5
)) {
13382 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "5"" of type '" "wxBitmap const &""'");
13385 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_GetTabSize" "', expected argument " "5"" of type '" "wxBitmap const &""'");
13387 arg5
= reinterpret_cast< wxBitmap
* >(argp5
);
13388 ecode6
= SWIG_AsVal_bool(obj5
, &val6
);
13389 if (!SWIG_IsOK(ecode6
)) {
13390 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "6"" of type '" "bool""'");
13392 arg6
= static_cast< bool >(val6
);
13393 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
13394 if (!SWIG_IsOK(ecode7
)) {
13395 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "7"" of type '" "int""'");
13397 arg7
= static_cast< int >(val7
);
13398 res8
= SWIG_ConvertPtr(obj7
, &argp8
,SWIGTYPE_p_int
, 0 | 0 );
13399 if (!SWIG_IsOK(res8
)) {
13400 SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "8"" of type '" "int *""'");
13402 arg8
= reinterpret_cast< int * >(argp8
);
13404 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13405 result
= (arg1
)->GetTabSize(*arg2
,arg3
,(wxString
const &)*arg4
,(wxBitmap
const &)*arg5
,arg6
,arg7
,arg8
);
13406 wxPyEndAllowThreads(__tstate
);
13407 if (PyErr_Occurred()) SWIG_fail
;
13409 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
13424 SWIGINTERN PyObject
*_wrap_AuiTabArt_ShowDropDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13425 PyObject
*resultobj
= 0;
13426 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13427 wxWindow
*arg2
= (wxWindow
*) 0 ;
13428 wxAuiNotebookPageArray
*arg3
= 0 ;
13439 PyObject
* obj0
= 0 ;
13440 PyObject
* obj1
= 0 ;
13441 PyObject
* obj2
= 0 ;
13442 PyObject
* obj3
= 0 ;
13443 char * kwnames
[] = {
13444 (char *) "self",(char *) "wnd",(char *) "items",(char *) "active_idx", NULL
13447 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabArt_ShowDropDown",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13448 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13449 if (!SWIG_IsOK(res1
)) {
13450 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_ShowDropDown" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13452 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13453 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13454 if (!SWIG_IsOK(res2
)) {
13455 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_ShowDropDown" "', expected argument " "2"" of type '" "wxWindow *""'");
13457 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13458 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPageArray
, 0 | 0);
13459 if (!SWIG_IsOK(res3
)) {
13460 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_ShowDropDown" "', expected argument " "3"" of type '" "wxAuiNotebookPageArray const &""'");
13463 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_ShowDropDown" "', expected argument " "3"" of type '" "wxAuiNotebookPageArray const &""'");
13465 arg3
= reinterpret_cast< wxAuiNotebookPageArray
* >(argp3
);
13466 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
13467 if (!SWIG_IsOK(ecode4
)) {
13468 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiTabArt_ShowDropDown" "', expected argument " "4"" of type '" "int""'");
13470 arg4
= static_cast< int >(val4
);
13472 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13473 result
= (int)(arg1
)->ShowDropDown(arg2
,(wxAuiNotebookPageArray
const &)*arg3
,arg4
);
13474 wxPyEndAllowThreads(__tstate
);
13475 if (PyErr_Occurred()) SWIG_fail
;
13477 resultobj
= SWIG_From_int(static_cast< int >(result
));
13484 SWIGINTERN PyObject
*_wrap_AuiTabArt_GetIndentSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13485 PyObject
*resultobj
= 0;
13486 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13490 PyObject
*swig_obj
[1] ;
13492 if (!args
) SWIG_fail
;
13493 swig_obj
[0] = args
;
13494 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13495 if (!SWIG_IsOK(res1
)) {
13496 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_GetIndentSize" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13498 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13500 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13501 result
= (int)(arg1
)->GetIndentSize();
13502 wxPyEndAllowThreads(__tstate
);
13503 if (PyErr_Occurred()) SWIG_fail
;
13505 resultobj
= SWIG_From_int(static_cast< int >(result
));
13512 SWIGINTERN PyObject
*_wrap_AuiTabArt_GetBestTabCtrlSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13513 PyObject
*resultobj
= 0;
13514 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
13515 wxWindow
*arg2
= (wxWindow
*) 0 ;
13516 wxAuiNotebookPageArray
*arg3
= 0 ;
13526 PyObject
* obj0
= 0 ;
13527 PyObject
* obj1
= 0 ;
13528 PyObject
* obj2
= 0 ;
13529 PyObject
* obj3
= 0 ;
13530 char * kwnames
[] = {
13531 (char *) "self",(char *) "wnd",(char *) "pages",(char *) "required_bmp_size", NULL
13534 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabArt_GetBestTabCtrlSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13535 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13536 if (!SWIG_IsOK(res1
)) {
13537 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
13539 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
13540 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13541 if (!SWIG_IsOK(res2
)) {
13542 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "2"" of type '" "wxWindow *""'");
13544 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13545 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPageArray
, 0 | 0);
13546 if (!SWIG_IsOK(res3
)) {
13547 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "3"" of type '" "wxAuiNotebookPageArray const &""'");
13550 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "3"" of type '" "wxAuiNotebookPageArray const &""'");
13552 arg3
= reinterpret_cast< wxAuiNotebookPageArray
* >(argp3
);
13555 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
13558 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13559 result
= (int)(arg1
)->GetBestTabCtrlSize(arg2
,(wxAuiNotebookPageArray
const &)*arg3
,(wxSize
const &)*arg4
);
13560 wxPyEndAllowThreads(__tstate
);
13561 if (PyErr_Occurred()) SWIG_fail
;
13563 resultobj
= SWIG_From_int(static_cast< int >(result
));
13570 SWIGINTERN PyObject
*AuiTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13572 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13573 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabArt
, SWIG_NewClientData(obj
));
13574 return SWIG_Py_Void();
13577 SWIGINTERN PyObject
*_wrap_new_AuiDefaultTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13578 PyObject
*resultobj
= 0;
13579 wxAuiDefaultTabArt
*result
= 0 ;
13581 if (!SWIG_Python_UnpackTuple(args
,"new_AuiDefaultTabArt",0,0,0)) SWIG_fail
;
13583 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13584 result
= (wxAuiDefaultTabArt
*)new wxAuiDefaultTabArt();
13585 wxPyEndAllowThreads(__tstate
);
13586 if (PyErr_Occurred()) SWIG_fail
;
13588 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDefaultTabArt
, SWIG_POINTER_NEW
| 0 );
13595 SWIGINTERN PyObject
*_wrap_delete_AuiDefaultTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13596 PyObject
*resultobj
= 0;
13597 wxAuiDefaultTabArt
*arg1
= (wxAuiDefaultTabArt
*) 0 ;
13600 PyObject
*swig_obj
[1] ;
13602 if (!args
) SWIG_fail
;
13603 swig_obj
[0] = args
;
13604 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDefaultTabArt
, SWIG_POINTER_DISOWN
| 0 );
13605 if (!SWIG_IsOK(res1
)) {
13606 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDefaultTabArt" "', expected argument " "1"" of type '" "wxAuiDefaultTabArt *""'");
13608 arg1
= reinterpret_cast< wxAuiDefaultTabArt
* >(argp1
);
13610 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13613 wxPyEndAllowThreads(__tstate
);
13614 if (PyErr_Occurred()) SWIG_fail
;
13616 resultobj
= SWIG_Py_Void();
13623 SWIGINTERN PyObject
*AuiDefaultTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13625 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13626 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDefaultTabArt
, SWIG_NewClientData(obj
));
13627 return SWIG_Py_Void();
13630 SWIGINTERN PyObject
*AuiDefaultTabArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13631 return SWIG_Python_InitShadowInstance(args
);
13634 SWIGINTERN PyObject
*_wrap_new_AuiSimpleTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13635 PyObject
*resultobj
= 0;
13636 wxAuiSimpleTabArt
*result
= 0 ;
13638 if (!SWIG_Python_UnpackTuple(args
,"new_AuiSimpleTabArt",0,0,0)) SWIG_fail
;
13640 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13641 result
= (wxAuiSimpleTabArt
*)new wxAuiSimpleTabArt();
13642 wxPyEndAllowThreads(__tstate
);
13643 if (PyErr_Occurred()) SWIG_fail
;
13645 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiSimpleTabArt
, SWIG_POINTER_NEW
| 0 );
13652 SWIGINTERN PyObject
*_wrap_delete_AuiSimpleTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13653 PyObject
*resultobj
= 0;
13654 wxAuiSimpleTabArt
*arg1
= (wxAuiSimpleTabArt
*) 0 ;
13657 PyObject
*swig_obj
[1] ;
13659 if (!args
) SWIG_fail
;
13660 swig_obj
[0] = args
;
13661 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiSimpleTabArt
, SWIG_POINTER_DISOWN
| 0 );
13662 if (!SWIG_IsOK(res1
)) {
13663 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiSimpleTabArt" "', expected argument " "1"" of type '" "wxAuiSimpleTabArt *""'");
13665 arg1
= reinterpret_cast< wxAuiSimpleTabArt
* >(argp1
);
13667 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13670 wxPyEndAllowThreads(__tstate
);
13671 if (PyErr_Occurred()) SWIG_fail
;
13673 resultobj
= SWIG_Py_Void();
13680 SWIGINTERN PyObject
*AuiSimpleTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13682 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13683 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiSimpleTabArt
, SWIG_NewClientData(obj
));
13684 return SWIG_Py_Void();
13687 SWIGINTERN PyObject
*AuiSimpleTabArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13688 return SWIG_Python_InitShadowInstance(args
);
13691 SWIGINTERN PyObject
*_wrap_new_AuiTabContainer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13692 PyObject
*resultobj
= 0;
13693 wxAuiTabContainer
*result
= 0 ;
13695 if (!SWIG_Python_UnpackTuple(args
,"new_AuiTabContainer",0,0,0)) SWIG_fail
;
13697 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13698 result
= (wxAuiTabContainer
*)new wxAuiTabContainer();
13699 wxPyEndAllowThreads(__tstate
);
13700 if (PyErr_Occurred()) SWIG_fail
;
13702 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabContainer
, SWIG_POINTER_NEW
| 0 );
13709 SWIGINTERN PyObject
*_wrap_delete_AuiTabContainer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13710 PyObject
*resultobj
= 0;
13711 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13714 PyObject
*swig_obj
[1] ;
13716 if (!args
) SWIG_fail
;
13717 swig_obj
[0] = args
;
13718 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, SWIG_POINTER_DISOWN
| 0 );
13719 if (!SWIG_IsOK(res1
)) {
13720 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabContainer" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13722 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13724 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13727 wxPyEndAllowThreads(__tstate
);
13728 if (PyErr_Occurred()) SWIG_fail
;
13730 resultobj
= SWIG_Py_Void();
13737 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13738 PyObject
*resultobj
= 0;
13739 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13740 wxAuiTabArt
*arg2
= (wxAuiTabArt
*) 0 ;
13745 PyObject
* obj0
= 0 ;
13746 PyObject
* obj1
= 0 ;
13747 char * kwnames
[] = {
13748 (char *) "self",(char *) "art", NULL
13751 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13752 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13753 if (!SWIG_IsOK(res1
)) {
13754 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13756 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13757 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13758 if (!SWIG_IsOK(res2
)) {
13759 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiTabArt *""'");
13761 arg2
= reinterpret_cast< wxAuiTabArt
* >(argp2
);
13763 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13764 (arg1
)->SetArtProvider(arg2
);
13765 wxPyEndAllowThreads(__tstate
);
13766 if (PyErr_Occurred()) SWIG_fail
;
13768 resultobj
= SWIG_Py_Void();
13775 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13776 PyObject
*resultobj
= 0;
13777 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13778 wxAuiTabArt
*result
= 0 ;
13781 PyObject
*swig_obj
[1] ;
13783 if (!args
) SWIG_fail
;
13784 swig_obj
[0] = args
;
13785 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13786 if (!SWIG_IsOK(res1
)) {
13787 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13789 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13791 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13792 result
= (wxAuiTabArt
*)((wxAuiTabContainer
const *)arg1
)->GetArtProvider();
13793 wxPyEndAllowThreads(__tstate
);
13794 if (PyErr_Occurred()) SWIG_fail
;
13796 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13803 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13804 PyObject
*resultobj
= 0;
13805 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13811 PyObject
* obj0
= 0 ;
13812 PyObject
* obj1
= 0 ;
13813 char * kwnames
[] = {
13814 (char *) "self",(char *) "flags", NULL
13817 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13818 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13819 if (!SWIG_IsOK(res1
)) {
13820 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetFlags" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13822 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13823 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13824 if (!SWIG_IsOK(ecode2
)) {
13825 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetFlags" "', expected argument " "2"" of type '" "int""'");
13827 arg2
= static_cast< int >(val2
);
13829 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13830 (arg1
)->SetFlags(arg2
);
13831 wxPyEndAllowThreads(__tstate
);
13832 if (PyErr_Occurred()) SWIG_fail
;
13834 resultobj
= SWIG_Py_Void();
13841 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13842 PyObject
*resultobj
= 0;
13843 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13847 PyObject
*swig_obj
[1] ;
13849 if (!args
) SWIG_fail
;
13850 swig_obj
[0] = args
;
13851 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13852 if (!SWIG_IsOK(res1
)) {
13853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetFlags" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13855 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13857 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13858 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetFlags();
13859 wxPyEndAllowThreads(__tstate
);
13860 if (PyErr_Occurred()) SWIG_fail
;
13862 resultobj
= SWIG_From_int(static_cast< int >(result
));
13869 SWIGINTERN PyObject
*_wrap_AuiTabContainer_AddPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13870 PyObject
*resultobj
= 0;
13871 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13872 wxWindow
*arg2
= (wxWindow
*) 0 ;
13873 wxAuiNotebookPage
*arg3
= 0 ;
13881 PyObject
* obj0
= 0 ;
13882 PyObject
* obj1
= 0 ;
13883 PyObject
* obj2
= 0 ;
13884 char * kwnames
[] = {
13885 (char *) "self",(char *) "page",(char *) "info", NULL
13888 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabContainer_AddPage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13889 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13890 if (!SWIG_IsOK(res1
)) {
13891 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13893 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13894 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13895 if (!SWIG_IsOK(res2
)) {
13896 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "2"" of type '" "wxWindow *""'");
13898 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13899 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0);
13900 if (!SWIG_IsOK(res3
)) {
13901 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
13904 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
13906 arg3
= reinterpret_cast< wxAuiNotebookPage
* >(argp3
);
13908 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13909 result
= (bool)(arg1
)->AddPage(arg2
,(wxAuiNotebookPage
const &)*arg3
);
13910 wxPyEndAllowThreads(__tstate
);
13911 if (PyErr_Occurred()) SWIG_fail
;
13914 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13922 SWIGINTERN PyObject
*_wrap_AuiTabContainer_InsertPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13923 PyObject
*resultobj
= 0;
13924 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13925 wxWindow
*arg2
= (wxWindow
*) 0 ;
13926 wxAuiNotebookPage
*arg3
= 0 ;
13937 PyObject
* obj0
= 0 ;
13938 PyObject
* obj1
= 0 ;
13939 PyObject
* obj2
= 0 ;
13940 PyObject
* obj3
= 0 ;
13941 char * kwnames
[] = {
13942 (char *) "self",(char *) "page",(char *) "info",(char *) "idx", NULL
13945 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13946 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13947 if (!SWIG_IsOK(res1
)) {
13948 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13950 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13951 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13952 if (!SWIG_IsOK(res2
)) {
13953 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "2"" of type '" "wxWindow *""'");
13955 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13956 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0);
13957 if (!SWIG_IsOK(res3
)) {
13958 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
13961 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_InsertPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
13963 arg3
= reinterpret_cast< wxAuiNotebookPage
* >(argp3
);
13964 ecode4
= SWIG_AsVal_size_t(obj3
, &val4
);
13965 if (!SWIG_IsOK(ecode4
)) {
13966 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "4"" of type '" "size_t""'");
13968 arg4
= static_cast< size_t >(val4
);
13970 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13971 result
= (bool)(arg1
)->InsertPage(arg2
,(wxAuiNotebookPage
const &)*arg3
,arg4
);
13972 wxPyEndAllowThreads(__tstate
);
13973 if (PyErr_Occurred()) SWIG_fail
;
13976 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13984 SWIGINTERN PyObject
*_wrap_AuiTabContainer_MovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13985 PyObject
*resultobj
= 0;
13986 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13987 wxWindow
*arg2
= (wxWindow
*) 0 ;
13996 PyObject
* obj0
= 0 ;
13997 PyObject
* obj1
= 0 ;
13998 PyObject
* obj2
= 0 ;
13999 char * kwnames
[] = {
14000 (char *) "self",(char *) "page",(char *) "new_idx", NULL
14003 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabContainer_MovePage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14004 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14005 if (!SWIG_IsOK(res1
)) {
14006 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14008 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14009 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14010 if (!SWIG_IsOK(res2
)) {
14011 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "2"" of type '" "wxWindow *""'");
14013 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
14014 ecode3
= SWIG_AsVal_size_t(obj2
, &val3
);
14015 if (!SWIG_IsOK(ecode3
)) {
14016 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "3"" of type '" "size_t""'");
14018 arg3
= static_cast< size_t >(val3
);
14020 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14021 result
= (bool)(arg1
)->MovePage(arg2
,arg3
);
14022 wxPyEndAllowThreads(__tstate
);
14023 if (PyErr_Occurred()) SWIG_fail
;
14026 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14034 SWIGINTERN PyObject
*_wrap_AuiTabContainer_RemovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14035 PyObject
*resultobj
= 0;
14036 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14037 wxWindow
*arg2
= (wxWindow
*) 0 ;
14043 PyObject
* obj0
= 0 ;
14044 PyObject
* obj1
= 0 ;
14045 char * kwnames
[] = {
14046 (char *) "self",(char *) "page", NULL
14049 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_RemovePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14050 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14051 if (!SWIG_IsOK(res1
)) {
14052 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_RemovePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14054 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14055 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14056 if (!SWIG_IsOK(res2
)) {
14057 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_RemovePage" "', expected argument " "2"" of type '" "wxWindow *""'");
14059 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
14061 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14062 result
= (bool)(arg1
)->RemovePage(arg2
);
14063 wxPyEndAllowThreads(__tstate
);
14064 if (PyErr_Occurred()) SWIG_fail
;
14067 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14075 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
14076 PyObject
*resultobj
= 0;
14077 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14078 wxWindow
*arg2
= (wxWindow
*) 0 ;
14085 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
14086 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14087 if (!SWIG_IsOK(res1
)) {
14088 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14090 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14091 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14092 if (!SWIG_IsOK(res2
)) {
14093 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "2"" of type '" "wxWindow *""'");
14095 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
14097 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14098 result
= (bool)(arg1
)->SetActivePage(arg2
);
14099 wxPyEndAllowThreads(__tstate
);
14100 if (PyErr_Occurred()) SWIG_fail
;
14103 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14111 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
14112 PyObject
*resultobj
= 0;
14113 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14121 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
14122 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14123 if (!SWIG_IsOK(res1
)) {
14124 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14126 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14127 ecode2
= SWIG_AsVal_size_t(swig_obj
[1], &val2
);
14128 if (!SWIG_IsOK(ecode2
)) {
14129 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "2"" of type '" "size_t""'");
14131 arg2
= static_cast< size_t >(val2
);
14133 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14134 result
= (bool)(arg1
)->SetActivePage(arg2
);
14135 wxPyEndAllowThreads(__tstate
);
14136 if (PyErr_Occurred()) SWIG_fail
;
14139 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14147 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage(PyObject
*self
, PyObject
*args
) {
14151 if (!(argc
= SWIG_Python_UnpackTuple(args
,"AuiTabContainer_SetActivePage",0,2,argv
))) SWIG_fail
;
14157 int res
= SWIG_ConvertPtr(argv
[1], &vptr
, SWIGTYPE_p_wxWindow
, 0);
14158 _v
= SWIG_CheckState(res
);
14160 if (!_v
) goto check_1
;
14161 return _wrap_AuiTabContainer_SetActivePage__SWIG_0(self
, argc
, argv
);
14166 return _wrap_AuiTabContainer_SetActivePage__SWIG_1(self
, argc
, argv
);
14170 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'AuiTabContainer_SetActivePage'");
14175 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetNoneActive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14176 PyObject
*resultobj
= 0;
14177 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14180 PyObject
*swig_obj
[1] ;
14182 if (!args
) SWIG_fail
;
14183 swig_obj
[0] = args
;
14184 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14185 if (!SWIG_IsOK(res1
)) {
14186 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetNoneActive" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14188 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14190 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14191 (arg1
)->SetNoneActive();
14192 wxPyEndAllowThreads(__tstate
);
14193 if (PyErr_Occurred()) SWIG_fail
;
14195 resultobj
= SWIG_Py_Void();
14202 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetActivePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14203 PyObject
*resultobj
= 0;
14204 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14208 PyObject
*swig_obj
[1] ;
14210 if (!args
) SWIG_fail
;
14211 swig_obj
[0] = args
;
14212 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14213 if (!SWIG_IsOK(res1
)) {
14214 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14216 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14218 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14219 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetActivePage();
14220 wxPyEndAllowThreads(__tstate
);
14221 if (PyErr_Occurred()) SWIG_fail
;
14223 resultobj
= SWIG_From_int(static_cast< int >(result
));
14230 SWIGINTERN PyObject
*_wrap_AuiTabContainer_TabHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14231 PyObject
*resultobj
= 0;
14232 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14235 wxWindow
**arg4
= (wxWindow
**) 0 ;
14245 PyObject
* obj0
= 0 ;
14246 PyObject
* obj1
= 0 ;
14247 PyObject
* obj2
= 0 ;
14248 PyObject
* obj3
= 0 ;
14249 char * kwnames
[] = {
14250 (char *) "self",(char *) "x",(char *) "y",(char *) "hit", NULL
14253 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_TabHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
14254 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14255 if (!SWIG_IsOK(res1
)) {
14256 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14258 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14259 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14260 if (!SWIG_IsOK(ecode2
)) {
14261 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "2"" of type '" "int""'");
14263 arg2
= static_cast< int >(val2
);
14264 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14265 if (!SWIG_IsOK(ecode3
)) {
14266 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "3"" of type '" "int""'");
14268 arg3
= static_cast< int >(val3
);
14269 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_p_wxWindow
, 0 | 0 );
14270 if (!SWIG_IsOK(res4
)) {
14271 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "4"" of type '" "wxWindow **""'");
14273 arg4
= reinterpret_cast< wxWindow
** >(argp4
);
14275 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14276 result
= (bool)((wxAuiTabContainer
const *)arg1
)->TabHitTest(arg2
,arg3
,arg4
);
14277 wxPyEndAllowThreads(__tstate
);
14278 if (PyErr_Occurred()) SWIG_fail
;
14281 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14289 SWIGINTERN PyObject
*_wrap_AuiTabContainer_ButtonHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14290 PyObject
*resultobj
= 0;
14291 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14294 wxAuiTabContainerButton
**arg4
= (wxAuiTabContainerButton
**) 0 ;
14304 PyObject
* obj0
= 0 ;
14305 PyObject
* obj1
= 0 ;
14306 PyObject
* obj2
= 0 ;
14307 PyObject
* obj3
= 0 ;
14308 char * kwnames
[] = {
14309 (char *) "self",(char *) "x",(char *) "y",(char *) "hit", NULL
14312 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_ButtonHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
14313 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14314 if (!SWIG_IsOK(res1
)) {
14315 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14317 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14318 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14319 if (!SWIG_IsOK(ecode2
)) {
14320 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "2"" of type '" "int""'");
14322 arg2
= static_cast< int >(val2
);
14323 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14324 if (!SWIG_IsOK(ecode3
)) {
14325 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "3"" of type '" "int""'");
14327 arg3
= static_cast< int >(val3
);
14328 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_p_wxAuiTabContainerButton
, 0 | 0 );
14329 if (!SWIG_IsOK(res4
)) {
14330 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "4"" of type '" "wxAuiTabContainerButton **""'");
14332 arg4
= reinterpret_cast< wxAuiTabContainerButton
** >(argp4
);
14334 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14335 result
= (bool)((wxAuiTabContainer
const *)arg1
)->ButtonHitTest(arg2
,arg3
,arg4
);
14336 wxPyEndAllowThreads(__tstate
);
14337 if (PyErr_Occurred()) SWIG_fail
;
14340 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14348 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetWindowFromIdx(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14349 PyObject
*resultobj
= 0;
14350 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14352 wxWindow
*result
= 0 ;
14357 PyObject
* obj0
= 0 ;
14358 PyObject
* obj1
= 0 ;
14359 char * kwnames
[] = {
14360 (char *) "self",(char *) "idx", NULL
14363 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetWindowFromIdx",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14364 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14365 if (!SWIG_IsOK(res1
)) {
14366 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetWindowFromIdx" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14368 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14369 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14370 if (!SWIG_IsOK(ecode2
)) {
14371 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_GetWindowFromIdx" "', expected argument " "2"" of type '" "size_t""'");
14373 arg2
= static_cast< size_t >(val2
);
14375 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14376 result
= (wxWindow
*)((wxAuiTabContainer
const *)arg1
)->GetWindowFromIdx(arg2
);
14377 wxPyEndAllowThreads(__tstate
);
14378 if (PyErr_Occurred()) SWIG_fail
;
14381 resultobj
= wxPyMake_wxObject(result
, 0);
14389 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetIdxFromWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14390 PyObject
*resultobj
= 0;
14391 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14392 wxWindow
*arg2
= (wxWindow
*) 0 ;
14398 PyObject
* obj0
= 0 ;
14399 PyObject
* obj1
= 0 ;
14400 char * kwnames
[] = {
14401 (char *) "self",(char *) "page", NULL
14404 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetIdxFromWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14405 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14406 if (!SWIG_IsOK(res1
)) {
14407 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetIdxFromWindow" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14409 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14410 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14411 if (!SWIG_IsOK(res2
)) {
14412 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_GetIdxFromWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
14414 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
14416 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14417 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetIdxFromWindow(arg2
);
14418 wxPyEndAllowThreads(__tstate
);
14419 if (PyErr_Occurred()) SWIG_fail
;
14421 resultobj
= SWIG_From_int(static_cast< int >(result
));
14428 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPageCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14429 PyObject
*resultobj
= 0;
14430 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14434 PyObject
*swig_obj
[1] ;
14436 if (!args
) SWIG_fail
;
14437 swig_obj
[0] = args
;
14438 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14439 if (!SWIG_IsOK(res1
)) {
14440 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPageCount" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14442 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14444 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14445 result
= (size_t)((wxAuiTabContainer
const *)arg1
)->GetPageCount();
14446 wxPyEndAllowThreads(__tstate
);
14447 if (PyErr_Occurred()) SWIG_fail
;
14449 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14456 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14457 PyObject
*resultobj
= 0;
14458 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14460 wxAuiNotebookPage
*result
= 0 ;
14465 PyObject
* obj0
= 0 ;
14466 PyObject
* obj1
= 0 ;
14467 char * kwnames
[] = {
14468 (char *) "self",(char *) "idx", NULL
14471 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14472 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14473 if (!SWIG_IsOK(res1
)) {
14474 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14476 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14477 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14478 if (!SWIG_IsOK(ecode2
)) {
14479 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_GetPage" "', expected argument " "2"" of type '" "size_t""'");
14481 arg2
= static_cast< size_t >(val2
);
14483 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14485 wxAuiNotebookPage
&_result_ref
= (arg1
)->GetPage(arg2
);
14486 result
= (wxAuiNotebookPage
*) &_result_ref
;
14488 wxPyEndAllowThreads(__tstate
);
14489 if (PyErr_Occurred()) SWIG_fail
;
14491 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
14498 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14499 PyObject
*resultobj
= 0;
14500 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14501 wxAuiNotebookPageArray
*result
= 0 ;
14504 PyObject
*swig_obj
[1] ;
14506 if (!args
) SWIG_fail
;
14507 swig_obj
[0] = args
;
14508 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14509 if (!SWIG_IsOK(res1
)) {
14510 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPages" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14512 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14514 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14516 wxAuiNotebookPageArray
&_result_ref
= (arg1
)->GetPages();
14517 result
= (wxAuiNotebookPageArray
*) &_result_ref
;
14519 wxPyEndAllowThreads(__tstate
);
14520 if (PyErr_Occurred()) SWIG_fail
;
14522 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookPageArray
, 0 | 0 );
14529 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetNormalFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14530 PyObject
*resultobj
= 0;
14531 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14537 PyObject
* obj0
= 0 ;
14538 PyObject
* obj1
= 0 ;
14539 char * kwnames
[] = {
14540 (char *) "self",(char *) "normal_font", NULL
14543 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetNormalFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14544 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14545 if (!SWIG_IsOK(res1
)) {
14546 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14548 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14549 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
14550 if (!SWIG_IsOK(res2
)) {
14551 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14554 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14556 arg2
= reinterpret_cast< wxFont
* >(argp2
);
14558 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14559 (arg1
)->SetNormalFont((wxFont
const &)*arg2
);
14560 wxPyEndAllowThreads(__tstate
);
14561 if (PyErr_Occurred()) SWIG_fail
;
14563 resultobj
= SWIG_Py_Void();
14570 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetSelectedFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14571 PyObject
*resultobj
= 0;
14572 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14578 PyObject
* obj0
= 0 ;
14579 PyObject
* obj1
= 0 ;
14580 char * kwnames
[] = {
14581 (char *) "self",(char *) "selected_font", NULL
14584 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetSelectedFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14585 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14586 if (!SWIG_IsOK(res1
)) {
14587 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14589 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14590 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
14591 if (!SWIG_IsOK(res2
)) {
14592 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14595 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14597 arg2
= reinterpret_cast< wxFont
* >(argp2
);
14599 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14600 (arg1
)->SetSelectedFont((wxFont
const &)*arg2
);
14601 wxPyEndAllowThreads(__tstate
);
14602 if (PyErr_Occurred()) SWIG_fail
;
14604 resultobj
= SWIG_Py_Void();
14611 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetMeasuringFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14612 PyObject
*resultobj
= 0;
14613 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14619 PyObject
* obj0
= 0 ;
14620 PyObject
* obj1
= 0 ;
14621 char * kwnames
[] = {
14622 (char *) "self",(char *) "measuring_font", NULL
14625 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetMeasuringFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14626 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14627 if (!SWIG_IsOK(res1
)) {
14628 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14630 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14631 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
14632 if (!SWIG_IsOK(res2
)) {
14633 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14636 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14638 arg2
= reinterpret_cast< wxFont
* >(argp2
);
14640 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14641 (arg1
)->SetMeasuringFont((wxFont
const &)*arg2
);
14642 wxPyEndAllowThreads(__tstate
);
14643 if (PyErr_Occurred()) SWIG_fail
;
14645 resultobj
= SWIG_Py_Void();
14652 SWIGINTERN PyObject
*_wrap_AuiTabContainer_DoShowHide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14653 PyObject
*resultobj
= 0;
14654 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14657 PyObject
*swig_obj
[1] ;
14659 if (!args
) SWIG_fail
;
14660 swig_obj
[0] = args
;
14661 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14662 if (!SWIG_IsOK(res1
)) {
14663 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_DoShowHide" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14665 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14667 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14668 (arg1
)->DoShowHide();
14669 wxPyEndAllowThreads(__tstate
);
14670 if (PyErr_Occurred()) SWIG_fail
;
14672 resultobj
= SWIG_Py_Void();
14679 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14680 PyObject
*resultobj
= 0;
14681 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14686 PyObject
* obj0
= 0 ;
14687 PyObject
* obj1
= 0 ;
14688 char * kwnames
[] = {
14689 (char *) "self",(char *) "rect", NULL
14692 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14693 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14694 if (!SWIG_IsOK(res1
)) {
14695 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetRect" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14697 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14700 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
14703 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14704 (arg1
)->SetRect((wxRect
const &)*arg2
);
14705 wxPyEndAllowThreads(__tstate
);
14706 if (PyErr_Occurred()) SWIG_fail
;
14708 resultobj
= SWIG_Py_Void();
14715 SWIGINTERN PyObject
*_wrap_AuiTabContainer_RemoveButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14716 PyObject
*resultobj
= 0;
14717 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14723 PyObject
* obj0
= 0 ;
14724 PyObject
* obj1
= 0 ;
14725 char * kwnames
[] = {
14726 (char *) "self",(char *) "id", NULL
14729 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_RemoveButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14730 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14731 if (!SWIG_IsOK(res1
)) {
14732 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_RemoveButton" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14734 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14735 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14736 if (!SWIG_IsOK(ecode2
)) {
14737 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_RemoveButton" "', expected argument " "2"" of type '" "int""'");
14739 arg2
= static_cast< int >(val2
);
14741 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14742 (arg1
)->RemoveButton(arg2
);
14743 wxPyEndAllowThreads(__tstate
);
14744 if (PyErr_Occurred()) SWIG_fail
;
14746 resultobj
= SWIG_Py_Void();
14753 SWIGINTERN PyObject
*_wrap_AuiTabContainer_AddButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14754 PyObject
*resultobj
= 0;
14755 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14758 wxBitmap
const &arg4_defvalue
= wxNullBitmap
;
14759 wxBitmap
*arg4
= (wxBitmap
*) &arg4_defvalue
;
14760 wxBitmap
const &arg5_defvalue
= wxNullBitmap
;
14761 wxBitmap
*arg5
= (wxBitmap
*) &arg5_defvalue
;
14772 PyObject
* obj0
= 0 ;
14773 PyObject
* obj1
= 0 ;
14774 PyObject
* obj2
= 0 ;
14775 PyObject
* obj3
= 0 ;
14776 PyObject
* obj4
= 0 ;
14777 char * kwnames
[] = {
14778 (char *) "self",(char *) "id",(char *) "location",(char *) "normal_bitmap",(char *) "disabled_bitmap", NULL
14781 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:AuiTabContainer_AddButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
14782 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14783 if (!SWIG_IsOK(res1
)) {
14784 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14786 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14787 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14788 if (!SWIG_IsOK(ecode2
)) {
14789 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "2"" of type '" "int""'");
14791 arg2
= static_cast< int >(val2
);
14792 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14793 if (!SWIG_IsOK(ecode3
)) {
14794 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "3"" of type '" "int""'");
14796 arg3
= static_cast< int >(val3
);
14798 res4
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxBitmap
, 0 | 0);
14799 if (!SWIG_IsOK(res4
)) {
14800 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "4"" of type '" "wxBitmap const &""'");
14803 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddButton" "', expected argument " "4"" of type '" "wxBitmap const &""'");
14805 arg4
= reinterpret_cast< wxBitmap
* >(argp4
);
14808 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
, 0 | 0);
14809 if (!SWIG_IsOK(res5
)) {
14810 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "5"" of type '" "wxBitmap const &""'");
14813 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddButton" "', expected argument " "5"" of type '" "wxBitmap const &""'");
14815 arg5
= reinterpret_cast< wxBitmap
* >(argp5
);
14818 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14819 (arg1
)->AddButton(arg2
,arg3
,(wxBitmap
const &)*arg4
,(wxBitmap
const &)*arg5
);
14820 wxPyEndAllowThreads(__tstate
);
14821 if (PyErr_Occurred()) SWIG_fail
;
14823 resultobj
= SWIG_Py_Void();
14830 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetTabOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14831 PyObject
*resultobj
= 0;
14832 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14836 PyObject
*swig_obj
[1] ;
14838 if (!args
) SWIG_fail
;
14839 swig_obj
[0] = args
;
14840 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14841 if (!SWIG_IsOK(res1
)) {
14842 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetTabOffset" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14844 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14846 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14847 result
= (size_t)((wxAuiTabContainer
const *)arg1
)->GetTabOffset();
14848 wxPyEndAllowThreads(__tstate
);
14849 if (PyErr_Occurred()) SWIG_fail
;
14851 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14858 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetTabOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14859 PyObject
*resultobj
= 0;
14860 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14866 PyObject
* obj0
= 0 ;
14867 PyObject
* obj1
= 0 ;
14868 char * kwnames
[] = {
14869 (char *) "self",(char *) "offset", NULL
14872 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetTabOffset",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14873 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14874 if (!SWIG_IsOK(res1
)) {
14875 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetTabOffset" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14877 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14878 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14879 if (!SWIG_IsOK(ecode2
)) {
14880 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetTabOffset" "', expected argument " "2"" of type '" "size_t""'");
14882 arg2
= static_cast< size_t >(val2
);
14884 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14885 (arg1
)->SetTabOffset(arg2
);
14886 wxPyEndAllowThreads(__tstate
);
14887 if (PyErr_Occurred()) SWIG_fail
;
14889 resultobj
= SWIG_Py_Void();
14896 SWIGINTERN PyObject
*AuiTabContainer_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14898 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
14899 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabContainer
, SWIG_NewClientData(obj
));
14900 return SWIG_Py_Void();
14903 SWIGINTERN PyObject
*AuiTabContainer_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14904 return SWIG_Python_InitShadowInstance(args
);
14907 SWIGINTERN PyObject
*_wrap_new_AuiTabCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14908 PyObject
*resultobj
= 0;
14909 wxWindow
*arg1
= (wxWindow
*) 0 ;
14910 int arg2
= (int) wxID_ANY
;
14911 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
14912 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
14913 wxSize
const &arg4_defvalue
= wxDefaultSize
;
14914 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
14915 long arg5
= (long) 0 ;
14916 wxAuiTabCtrl
*result
= 0 ;
14925 PyObject
* obj0
= 0 ;
14926 PyObject
* obj1
= 0 ;
14927 PyObject
* obj2
= 0 ;
14928 PyObject
* obj3
= 0 ;
14929 PyObject
* obj4
= 0 ;
14930 char * kwnames
[] = {
14931 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
14934 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_AuiTabCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
14935 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14936 if (!SWIG_IsOK(res1
)) {
14937 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiTabCtrl" "', expected argument " "1"" of type '" "wxWindow *""'");
14939 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
14941 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14942 if (!SWIG_IsOK(ecode2
)) {
14943 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiTabCtrl" "', expected argument " "2"" of type '" "int""'");
14945 arg2
= static_cast< int >(val2
);
14950 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
14956 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
14960 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
14961 if (!SWIG_IsOK(ecode5
)) {
14962 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiTabCtrl" "', expected argument " "5"" of type '" "long""'");
14964 arg5
= static_cast< long >(val5
);
14967 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14968 result
= (wxAuiTabCtrl
*)new wxAuiTabCtrl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
14969 wxPyEndAllowThreads(__tstate
);
14970 if (PyErr_Occurred()) SWIG_fail
;
14972 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabCtrl
, SWIG_POINTER_NEW
| 0 );
14979 SWIGINTERN PyObject
*_wrap_delete_AuiTabCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14980 PyObject
*resultobj
= 0;
14981 wxAuiTabCtrl
*arg1
= (wxAuiTabCtrl
*) 0 ;
14984 PyObject
*swig_obj
[1] ;
14986 if (!args
) SWIG_fail
;
14987 swig_obj
[0] = args
;
14988 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabCtrl
, SWIG_POINTER_DISOWN
| 0 );
14989 if (!SWIG_IsOK(res1
)) {
14990 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabCtrl" "', expected argument " "1"" of type '" "wxAuiTabCtrl *""'");
14992 arg1
= reinterpret_cast< wxAuiTabCtrl
* >(argp1
);
14994 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14997 wxPyEndAllowThreads(__tstate
);
14998 if (PyErr_Occurred()) SWIG_fail
;
15000 resultobj
= SWIG_Py_Void();
15007 SWIGINTERN PyObject
*AuiTabCtrl_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15009 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15010 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabCtrl
, SWIG_NewClientData(obj
));
15011 return SWIG_Py_Void();
15014 SWIGINTERN PyObject
*AuiTabCtrl_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15015 return SWIG_Python_InitShadowInstance(args
);
15018 SWIGINTERN PyObject
*_wrap_new_PreAuiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15019 PyObject
*resultobj
= 0;
15020 wxAuiNotebook
*result
= 0 ;
15022 if (!SWIG_Python_UnpackTuple(args
,"new_PreAuiNotebook",0,0,0)) SWIG_fail
;
15024 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15025 result
= (wxAuiNotebook
*)new wxAuiNotebook();
15026 wxPyEndAllowThreads(__tstate
);
15027 if (PyErr_Occurred()) SWIG_fail
;
15029 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_OWN
| 0 );
15036 SWIGINTERN PyObject
*_wrap_new_AuiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15037 PyObject
*resultobj
= 0;
15038 wxWindow
*arg1
= (wxWindow
*) 0 ;
15039 int arg2
= (int) wxID_ANY
;
15040 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
15041 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
15042 wxSize
const &arg4_defvalue
= wxDefaultSize
;
15043 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
15044 long arg5
= (long) wxAUI_NB_DEFAULT_STYLE
;
15045 wxAuiNotebook
*result
= 0 ;
15054 PyObject
* obj0
= 0 ;
15055 PyObject
* obj1
= 0 ;
15056 PyObject
* obj2
= 0 ;
15057 PyObject
* obj3
= 0 ;
15058 PyObject
* obj4
= 0 ;
15059 char * kwnames
[] = {
15060 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
15063 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_AuiNotebook",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
15064 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15065 if (!SWIG_IsOK(res1
)) {
15066 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiNotebook" "', expected argument " "1"" of type '" "wxWindow *""'");
15068 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
15070 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15071 if (!SWIG_IsOK(ecode2
)) {
15072 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiNotebook" "', expected argument " "2"" of type '" "int""'");
15074 arg2
= static_cast< int >(val2
);
15079 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
15085 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
15089 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
15090 if (!SWIG_IsOK(ecode5
)) {
15091 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiNotebook" "', expected argument " "5"" of type '" "long""'");
15093 arg5
= static_cast< long >(val5
);
15096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15097 result
= (wxAuiNotebook
*)new wxAuiNotebook(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
15098 wxPyEndAllowThreads(__tstate
);
15099 if (PyErr_Occurred()) SWIG_fail
;
15101 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_NEW
| 0 );
15108 SWIGINTERN PyObject
*_wrap_delete_AuiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15109 PyObject
*resultobj
= 0;
15110 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15113 PyObject
*swig_obj
[1] ;
15115 if (!args
) SWIG_fail
;
15116 swig_obj
[0] = args
;
15117 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_DISOWN
| 0 );
15118 if (!SWIG_IsOK(res1
)) {
15119 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiNotebook" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15121 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15123 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15126 wxPyEndAllowThreads(__tstate
);
15127 if (PyErr_Occurred()) SWIG_fail
;
15129 resultobj
= SWIG_Py_Void();
15136 SWIGINTERN PyObject
*_wrap_AuiNotebook_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15137 PyObject
*resultobj
= 0;
15138 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15139 wxWindow
*arg2
= (wxWindow
*) 0 ;
15140 int arg3
= (int) wxID_ANY
;
15141 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
15142 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
15143 wxSize
const &arg5_defvalue
= wxDefaultSize
;
15144 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
15145 long arg6
= (long) 0 ;
15157 PyObject
* obj0
= 0 ;
15158 PyObject
* obj1
= 0 ;
15159 PyObject
* obj2
= 0 ;
15160 PyObject
* obj3
= 0 ;
15161 PyObject
* obj4
= 0 ;
15162 PyObject
* obj5
= 0 ;
15163 char * kwnames
[] = {
15164 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
15167 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:AuiNotebook_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
15168 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15169 if (!SWIG_IsOK(res1
)) {
15170 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_Create" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15172 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15173 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15174 if (!SWIG_IsOK(res2
)) {
15175 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
15177 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
15179 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15180 if (!SWIG_IsOK(ecode3
)) {
15181 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiNotebook_Create" "', expected argument " "3"" of type '" "int""'");
15183 arg3
= static_cast< int >(val3
);
15188 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
15194 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
15198 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
15199 if (!SWIG_IsOK(ecode6
)) {
15200 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiNotebook_Create" "', expected argument " "6"" of type '" "long""'");
15202 arg6
= static_cast< long >(val6
);
15205 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15206 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
);
15207 wxPyEndAllowThreads(__tstate
);
15208 if (PyErr_Occurred()) SWIG_fail
;
15211 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15219 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15220 PyObject
*resultobj
= 0;
15221 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15222 wxAuiTabArt
*arg2
= (wxAuiTabArt
*) 0 ;
15227 PyObject
* obj0
= 0 ;
15228 PyObject
* obj1
= 0 ;
15229 char * kwnames
[] = {
15230 (char *) "self",(char *) "art", NULL
15233 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15234 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15235 if (!SWIG_IsOK(res1
)) {
15236 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15238 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15239 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
15240 if (!SWIG_IsOK(res2
)) {
15241 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiTabArt *""'");
15243 arg2
= reinterpret_cast< wxAuiTabArt
* >(argp2
);
15245 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15246 (arg1
)->SetArtProvider(arg2
);
15247 wxPyEndAllowThreads(__tstate
);
15248 if (PyErr_Occurred()) SWIG_fail
;
15250 resultobj
= SWIG_Py_Void();
15257 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15258 PyObject
*resultobj
= 0;
15259 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15260 wxAuiTabArt
*result
= 0 ;
15263 PyObject
*swig_obj
[1] ;
15265 if (!args
) SWIG_fail
;
15266 swig_obj
[0] = args
;
15267 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15268 if (!SWIG_IsOK(res1
)) {
15269 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15271 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15273 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15274 result
= (wxAuiTabArt
*)((wxAuiNotebook
const *)arg1
)->GetArtProvider();
15275 wxPyEndAllowThreads(__tstate
);
15276 if (PyErr_Occurred()) SWIG_fail
;
15278 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
15285 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetUniformBitmapSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15286 PyObject
*resultobj
= 0;
15287 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15292 PyObject
* obj0
= 0 ;
15293 PyObject
* obj1
= 0 ;
15294 char * kwnames
[] = {
15295 (char *) "self",(char *) "size", NULL
15298 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetUniformBitmapSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15299 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15300 if (!SWIG_IsOK(res1
)) {
15301 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetUniformBitmapSize" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15303 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15306 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
15309 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15310 (arg1
)->SetUniformBitmapSize((wxSize
const &)*arg2
);
15311 wxPyEndAllowThreads(__tstate
);
15312 if (PyErr_Occurred()) SWIG_fail
;
15314 resultobj
= SWIG_Py_Void();
15321 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetTabCtrlHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15322 PyObject
*resultobj
= 0;
15323 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15329 PyObject
* obj0
= 0 ;
15330 PyObject
* obj1
= 0 ;
15331 char * kwnames
[] = {
15332 (char *) "self",(char *) "height", NULL
15335 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetTabCtrlHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15336 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15337 if (!SWIG_IsOK(res1
)) {
15338 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetTabCtrlHeight" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15340 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15341 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15342 if (!SWIG_IsOK(ecode2
)) {
15343 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetTabCtrlHeight" "', expected argument " "2"" of type '" "int""'");
15345 arg2
= static_cast< int >(val2
);
15347 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15348 (arg1
)->SetTabCtrlHeight(arg2
);
15349 wxPyEndAllowThreads(__tstate
);
15350 if (PyErr_Occurred()) SWIG_fail
;
15352 resultobj
= SWIG_Py_Void();
15359 SWIGINTERN PyObject
*_wrap_AuiNotebook_AddPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15360 PyObject
*resultobj
= 0;
15361 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15362 wxWindow
*arg2
= (wxWindow
*) 0 ;
15363 wxString
*arg3
= 0 ;
15364 bool arg4
= (bool) false ;
15365 wxBitmap
const &arg5_defvalue
= wxNullBitmap
;
15366 wxBitmap
*arg5
= (wxBitmap
*) &arg5_defvalue
;
15372 bool temp3
= false ;
15377 PyObject
* obj0
= 0 ;
15378 PyObject
* obj1
= 0 ;
15379 PyObject
* obj2
= 0 ;
15380 PyObject
* obj3
= 0 ;
15381 PyObject
* obj4
= 0 ;
15382 char * kwnames
[] = {
15383 (char *) "self",(char *) "page",(char *) "caption",(char *) "select",(char *) "bitmap", NULL
15386 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:AuiNotebook_AddPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
15387 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15388 if (!SWIG_IsOK(res1
)) {
15389 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_AddPage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15391 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15392 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15393 if (!SWIG_IsOK(res2
)) {
15394 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_AddPage" "', expected argument " "2"" of type '" "wxWindow *""'");
15396 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
15398 arg3
= wxString_in_helper(obj2
);
15399 if (arg3
== NULL
) SWIG_fail
;
15403 ecode4
= SWIG_AsVal_bool(obj3
, &val4
);
15404 if (!SWIG_IsOK(ecode4
)) {
15405 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiNotebook_AddPage" "', expected argument " "4"" of type '" "bool""'");
15407 arg4
= static_cast< bool >(val4
);
15410 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
, 0 | 0);
15411 if (!SWIG_IsOK(res5
)) {
15412 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiNotebook_AddPage" "', expected argument " "5"" of type '" "wxBitmap const &""'");
15415 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiNotebook_AddPage" "', expected argument " "5"" of type '" "wxBitmap const &""'");
15417 arg5
= reinterpret_cast< wxBitmap
* >(argp5
);
15420 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15421 result
= (bool)(arg1
)->AddPage(arg2
,(wxString
const &)*arg3
,arg4
,(wxBitmap
const &)*arg5
);
15422 wxPyEndAllowThreads(__tstate
);
15423 if (PyErr_Occurred()) SWIG_fail
;
15426 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15442 SWIGINTERN PyObject
*_wrap_AuiNotebook_InsertPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15443 PyObject
*resultobj
= 0;
15444 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15446 wxWindow
*arg3
= (wxWindow
*) 0 ;
15447 wxString
*arg4
= 0 ;
15448 bool arg5
= (bool) false ;
15449 wxBitmap
const &arg6_defvalue
= wxNullBitmap
;
15450 wxBitmap
*arg6
= (wxBitmap
*) &arg6_defvalue
;
15458 bool temp4
= false ;
15463 PyObject
* obj0
= 0 ;
15464 PyObject
* obj1
= 0 ;
15465 PyObject
* obj2
= 0 ;
15466 PyObject
* obj3
= 0 ;
15467 PyObject
* obj4
= 0 ;
15468 PyObject
* obj5
= 0 ;
15469 char * kwnames
[] = {
15470 (char *) "self",(char *) "page_idx",(char *) "page",(char *) "caption",(char *) "select",(char *) "bitmap", NULL
15473 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:AuiNotebook_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
15474 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15475 if (!SWIG_IsOK(res1
)) {
15476 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15478 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15479 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15480 if (!SWIG_IsOK(ecode2
)) {
15481 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "2"" of type '" "size_t""'");
15483 arg2
= static_cast< size_t >(val2
);
15484 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15485 if (!SWIG_IsOK(res3
)) {
15486 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "3"" of type '" "wxWindow *""'");
15488 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
15490 arg4
= wxString_in_helper(obj3
);
15491 if (arg4
== NULL
) SWIG_fail
;
15495 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
15496 if (!SWIG_IsOK(ecode5
)) {
15497 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "5"" of type '" "bool""'");
15499 arg5
= static_cast< bool >(val5
);
15502 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxBitmap
, 0 | 0);
15503 if (!SWIG_IsOK(res6
)) {
15504 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "6"" of type '" "wxBitmap const &""'");
15507 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiNotebook_InsertPage" "', expected argument " "6"" of type '" "wxBitmap const &""'");
15509 arg6
= reinterpret_cast< wxBitmap
* >(argp6
);
15512 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15513 result
= (bool)(arg1
)->InsertPage(arg2
,arg3
,(wxString
const &)*arg4
,arg5
,(wxBitmap
const &)*arg6
);
15514 wxPyEndAllowThreads(__tstate
);
15515 if (PyErr_Occurred()) SWIG_fail
;
15518 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15534 SWIGINTERN PyObject
*_wrap_AuiNotebook_DeletePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15535 PyObject
*resultobj
= 0;
15536 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15543 PyObject
* obj0
= 0 ;
15544 PyObject
* obj1
= 0 ;
15545 char * kwnames
[] = {
15546 (char *) "self",(char *) "page", NULL
15549 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_DeletePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15550 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15551 if (!SWIG_IsOK(res1
)) {
15552 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_DeletePage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15554 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15555 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15556 if (!SWIG_IsOK(ecode2
)) {
15557 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_DeletePage" "', expected argument " "2"" of type '" "size_t""'");
15559 arg2
= static_cast< size_t >(val2
);
15561 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15562 result
= (bool)(arg1
)->DeletePage(arg2
);
15563 wxPyEndAllowThreads(__tstate
);
15564 if (PyErr_Occurred()) SWIG_fail
;
15567 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15575 SWIGINTERN PyObject
*_wrap_AuiNotebook_RemovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15576 PyObject
*resultobj
= 0;
15577 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15584 PyObject
* obj0
= 0 ;
15585 PyObject
* obj1
= 0 ;
15586 char * kwnames
[] = {
15587 (char *) "self",(char *) "page", NULL
15590 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_RemovePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15591 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15592 if (!SWIG_IsOK(res1
)) {
15593 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_RemovePage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15595 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15596 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15597 if (!SWIG_IsOK(ecode2
)) {
15598 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_RemovePage" "', expected argument " "2"" of type '" "size_t""'");
15600 arg2
= static_cast< size_t >(val2
);
15602 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15603 result
= (bool)(arg1
)->RemovePage(arg2
);
15604 wxPyEndAllowThreads(__tstate
);
15605 if (PyErr_Occurred()) SWIG_fail
;
15608 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15616 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetPageCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15617 PyObject
*resultobj
= 0;
15618 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15622 PyObject
*swig_obj
[1] ;
15624 if (!args
) SWIG_fail
;
15625 swig_obj
[0] = args
;
15626 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15627 if (!SWIG_IsOK(res1
)) {
15628 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPageCount" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15630 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15632 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15633 result
= (size_t)((wxAuiNotebook
const *)arg1
)->GetPageCount();
15634 wxPyEndAllowThreads(__tstate
);
15635 if (PyErr_Occurred()) SWIG_fail
;
15637 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
15644 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15645 PyObject
*resultobj
= 0;
15646 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15648 wxWindow
*result
= 0 ;
15653 PyObject
* obj0
= 0 ;
15654 PyObject
* obj1
= 0 ;
15655 char * kwnames
[] = {
15656 (char *) "self",(char *) "page_idx", NULL
15659 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_GetPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15660 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15661 if (!SWIG_IsOK(res1
)) {
15662 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPage" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15664 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15665 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15666 if (!SWIG_IsOK(ecode2
)) {
15667 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_GetPage" "', expected argument " "2"" of type '" "size_t""'");
15669 arg2
= static_cast< size_t >(val2
);
15671 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15672 result
= (wxWindow
*)((wxAuiNotebook
const *)arg1
)->GetPage(arg2
);
15673 wxPyEndAllowThreads(__tstate
);
15674 if (PyErr_Occurred()) SWIG_fail
;
15677 resultobj
= wxPyMake_wxObject(result
, 0);
15685 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetPageIndex(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15686 PyObject
*resultobj
= 0;
15687 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15688 wxWindow
*arg2
= (wxWindow
*) 0 ;
15694 PyObject
* obj0
= 0 ;
15695 PyObject
* obj1
= 0 ;
15696 char * kwnames
[] = {
15697 (char *) "self",(char *) "page_wnd", NULL
15700 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_GetPageIndex",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15701 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15702 if (!SWIG_IsOK(res1
)) {
15703 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPageIndex" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15705 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15706 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15707 if (!SWIG_IsOK(res2
)) {
15708 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_GetPageIndex" "', expected argument " "2"" of type '" "wxWindow *""'");
15710 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
15712 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15713 result
= (int)((wxAuiNotebook
const *)arg1
)->GetPageIndex(arg2
);
15714 wxPyEndAllowThreads(__tstate
);
15715 if (PyErr_Occurred()) SWIG_fail
;
15717 resultobj
= SWIG_From_int(static_cast< int >(result
));
15724 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetPageText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15725 PyObject
*resultobj
= 0;
15726 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15728 wxString
*arg3
= 0 ;
15734 bool temp3
= false ;
15735 PyObject
* obj0
= 0 ;
15736 PyObject
* obj1
= 0 ;
15737 PyObject
* obj2
= 0 ;
15738 char * kwnames
[] = {
15739 (char *) "self",(char *) "page",(char *) "text", NULL
15742 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiNotebook_SetPageText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15743 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15744 if (!SWIG_IsOK(res1
)) {
15745 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetPageText" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15747 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15748 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15749 if (!SWIG_IsOK(ecode2
)) {
15750 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetPageText" "', expected argument " "2"" of type '" "size_t""'");
15752 arg2
= static_cast< size_t >(val2
);
15754 arg3
= wxString_in_helper(obj2
);
15755 if (arg3
== NULL
) SWIG_fail
;
15759 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15760 result
= (bool)(arg1
)->SetPageText(arg2
,(wxString
const &)*arg3
);
15761 wxPyEndAllowThreads(__tstate
);
15762 if (PyErr_Occurred()) SWIG_fail
;
15765 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15781 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetPageText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15782 PyObject
*resultobj
= 0;
15783 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15790 PyObject
* obj0
= 0 ;
15791 PyObject
* obj1
= 0 ;
15792 char * kwnames
[] = {
15793 (char *) "self",(char *) "page_idx", NULL
15796 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_GetPageText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15797 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15798 if (!SWIG_IsOK(res1
)) {
15799 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPageText" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15801 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15802 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15803 if (!SWIG_IsOK(ecode2
)) {
15804 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_GetPageText" "', expected argument " "2"" of type '" "size_t""'");
15806 arg2
= static_cast< size_t >(val2
);
15808 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15809 result
= ((wxAuiNotebook
const *)arg1
)->GetPageText(arg2
);
15810 wxPyEndAllowThreads(__tstate
);
15811 if (PyErr_Occurred()) SWIG_fail
;
15815 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
15817 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
15826 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetPageBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15827 PyObject
*resultobj
= 0;
15828 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15830 wxBitmap
*arg3
= 0 ;
15838 PyObject
* obj0
= 0 ;
15839 PyObject
* obj1
= 0 ;
15840 PyObject
* obj2
= 0 ;
15841 char * kwnames
[] = {
15842 (char *) "self",(char *) "page",(char *) "bitmap", NULL
15845 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiNotebook_SetPageBitmap",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15846 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15847 if (!SWIG_IsOK(res1
)) {
15848 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15850 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15851 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15852 if (!SWIG_IsOK(ecode2
)) {
15853 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "2"" of type '" "size_t""'");
15855 arg2
= static_cast< size_t >(val2
);
15856 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
, 0 | 0);
15857 if (!SWIG_IsOK(res3
)) {
15858 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");
15861 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiNotebook_SetPageBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");
15863 arg3
= reinterpret_cast< wxBitmap
* >(argp3
);
15865 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15866 result
= (bool)(arg1
)->SetPageBitmap(arg2
,(wxBitmap
const &)*arg3
);
15867 wxPyEndAllowThreads(__tstate
);
15868 if (PyErr_Occurred()) SWIG_fail
;
15871 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15879 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetPageBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15880 PyObject
*resultobj
= 0;
15881 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15888 PyObject
* obj0
= 0 ;
15889 PyObject
* obj1
= 0 ;
15890 char * kwnames
[] = {
15891 (char *) "self",(char *) "page_idx", NULL
15894 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_GetPageBitmap",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15895 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15896 if (!SWIG_IsOK(res1
)) {
15897 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPageBitmap" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15899 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15900 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15901 if (!SWIG_IsOK(ecode2
)) {
15902 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_GetPageBitmap" "', expected argument " "2"" of type '" "size_t""'");
15904 arg2
= static_cast< size_t >(val2
);
15906 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15907 result
= ((wxAuiNotebook
const *)arg1
)->GetPageBitmap(arg2
);
15908 wxPyEndAllowThreads(__tstate
);
15909 if (PyErr_Occurred()) SWIG_fail
;
15911 resultobj
= SWIG_NewPointerObj((new wxBitmap(static_cast< const wxBitmap
& >(result
))), SWIGTYPE_p_wxBitmap
, SWIG_POINTER_OWN
| 0 );
15918 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15919 PyObject
*resultobj
= 0;
15920 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15927 PyObject
* obj0
= 0 ;
15928 PyObject
* obj1
= 0 ;
15929 char * kwnames
[] = {
15930 (char *) "self",(char *) "new_page", NULL
15933 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15934 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15935 if (!SWIG_IsOK(res1
)) {
15936 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetSelection" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15938 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15939 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15940 if (!SWIG_IsOK(ecode2
)) {
15941 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetSelection" "', expected argument " "2"" of type '" "size_t""'");
15943 arg2
= static_cast< size_t >(val2
);
15945 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15946 result
= (size_t)(arg1
)->SetSelection(arg2
);
15947 wxPyEndAllowThreads(__tstate
);
15948 if (PyErr_Occurred()) SWIG_fail
;
15950 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
15957 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15958 PyObject
*resultobj
= 0;
15959 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15963 PyObject
*swig_obj
[1] ;
15965 if (!args
) SWIG_fail
;
15966 swig_obj
[0] = args
;
15967 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15968 if (!SWIG_IsOK(res1
)) {
15969 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetSelection" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15971 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15973 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15974 result
= (int)((wxAuiNotebook
const *)arg1
)->GetSelection();
15975 wxPyEndAllowThreads(__tstate
);
15976 if (PyErr_Occurred()) SWIG_fail
;
15978 resultobj
= SWIG_From_int(static_cast< int >(result
));
15985 SWIGINTERN PyObject
*_wrap_AuiNotebook_Split(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15986 PyObject
*resultobj
= 0;
15987 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15996 PyObject
* obj0
= 0 ;
15997 PyObject
* obj1
= 0 ;
15998 PyObject
* obj2
= 0 ;
15999 char * kwnames
[] = {
16000 (char *) "self",(char *) "page",(char *) "direction", NULL
16003 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiNotebook_Split",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16004 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
16005 if (!SWIG_IsOK(res1
)) {
16006 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_Split" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
16008 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
16009 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
16010 if (!SWIG_IsOK(ecode2
)) {
16011 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_Split" "', expected argument " "2"" of type '" "size_t""'");
16013 arg2
= static_cast< size_t >(val2
);
16014 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
16015 if (!SWIG_IsOK(ecode3
)) {
16016 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiNotebook_Split" "', expected argument " "3"" of type '" "int""'");
16018 arg3
= static_cast< int >(val3
);
16020 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16021 (arg1
)->Split(arg2
,arg3
);
16022 wxPyEndAllowThreads(__tstate
);
16023 if (PyErr_Occurred()) SWIG_fail
;
16025 resultobj
= SWIG_Py_Void();
16032 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetAuiManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16033 PyObject
*resultobj
= 0;
16034 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
16035 wxAuiManager
*result
= 0 ;
16038 PyObject
*swig_obj
[1] ;
16040 if (!args
) SWIG_fail
;
16041 swig_obj
[0] = args
;
16042 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
16043 if (!SWIG_IsOK(res1
)) {
16044 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetAuiManager" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
16046 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
16048 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16050 wxAuiManager
const &_result_ref
= ((wxAuiNotebook
const *)arg1
)->GetAuiManager();
16051 result
= (wxAuiManager
*) &_result_ref
;
16053 wxPyEndAllowThreads(__tstate
);
16054 if (PyErr_Occurred()) SWIG_fail
;
16056 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, 0 | 0 );
16063 SWIGINTERN PyObject
*AuiNotebook_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16065 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
16066 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebook
, SWIG_NewClientData(obj
));
16067 return SWIG_Py_Void();
16070 SWIGINTERN PyObject
*AuiNotebook_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16071 return SWIG_Python_InitShadowInstance(args
);
16074 SWIGINTERN PyObject
*_wrap_new_PreAuiMDIParentFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16075 PyObject
*resultobj
= 0;
16076 wxAuiMDIParentFrame
*result
= 0 ;
16078 if (!SWIG_Python_UnpackTuple(args
,"new_PreAuiMDIParentFrame",0,0,0)) SWIG_fail
;
16080 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16081 result
= (wxAuiMDIParentFrame
*)new wxAuiMDIParentFrame();
16082 wxPyEndAllowThreads(__tstate
);
16083 if (PyErr_Occurred()) SWIG_fail
;
16085 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIParentFrame
, SWIG_POINTER_OWN
| 0 );
16092 SWIGINTERN PyObject
*_wrap_new_AuiMDIParentFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16093 PyObject
*resultobj
= 0;
16094 wxWindow
*arg1
= (wxWindow
*) 0 ;
16096 wxString
*arg3
= 0 ;
16097 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
16098 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
16099 wxSize
const &arg5_defvalue
= wxDefaultSize
;
16100 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
16101 long arg6
= (long) wxDEFAULT_FRAME_STYLE
|wxVSCROLL
|wxHSCROLL
;
16102 wxString
const &arg7_defvalue
= wxFrameNameStr
;
16103 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
16104 wxAuiMDIParentFrame
*result
= 0 ;
16109 bool temp3
= false ;
16114 bool temp7
= false ;
16115 PyObject
* obj0
= 0 ;
16116 PyObject
* obj1
= 0 ;
16117 PyObject
* obj2
= 0 ;
16118 PyObject
* obj3
= 0 ;
16119 PyObject
* obj4
= 0 ;
16120 PyObject
* obj5
= 0 ;
16121 PyObject
* obj6
= 0 ;
16122 char * kwnames
[] = {
16123 (char *) "parent",(char *) "winid",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
16126 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_AuiMDIParentFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
16127 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
16128 if (!SWIG_IsOK(res1
)) {
16129 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiMDIParentFrame" "', expected argument " "1"" of type '" "wxWindow *""'");
16131 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
16132 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16133 if (!SWIG_IsOK(ecode2
)) {
16134 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiMDIParentFrame" "', expected argument " "2"" of type '" "int""'");
16136 arg2
= static_cast< int >(val2
);
16138 arg3
= wxString_in_helper(obj2
);
16139 if (arg3
== NULL
) SWIG_fail
;
16145 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
16151 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
16155 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
16156 if (!SWIG_IsOK(ecode6
)) {
16157 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_AuiMDIParentFrame" "', expected argument " "6"" of type '" "long""'");
16159 arg6
= static_cast< long >(val6
);
16163 arg7
= wxString_in_helper(obj6
);
16164 if (arg7
== NULL
) SWIG_fail
;
16169 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16170 result
= (wxAuiMDIParentFrame
*)new wxAuiMDIParentFrame(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
16171 wxPyEndAllowThreads(__tstate
);
16172 if (PyErr_Occurred()) SWIG_fail
;
16174 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIParentFrame
, SWIG_POINTER_NEW
| 0 );
16197 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16198 PyObject
*resultobj
= 0;
16199 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16200 wxWindow
*arg2
= (wxWindow
*) 0 ;
16202 wxString
*arg4
= 0 ;
16203 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
16204 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
16205 wxSize
const &arg6_defvalue
= wxDefaultSize
;
16206 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
16207 long arg7
= (long) wxDEFAULT_FRAME_STYLE
|wxVSCROLL
|wxHSCROLL
;
16208 wxString
const &arg8_defvalue
= wxFrameNameStr
;
16209 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
16217 bool temp4
= false ;
16222 bool temp8
= false ;
16223 PyObject
* obj0
= 0 ;
16224 PyObject
* obj1
= 0 ;
16225 PyObject
* obj2
= 0 ;
16226 PyObject
* obj3
= 0 ;
16227 PyObject
* obj4
= 0 ;
16228 PyObject
* obj5
= 0 ;
16229 PyObject
* obj6
= 0 ;
16230 PyObject
* obj7
= 0 ;
16231 char * kwnames
[] = {
16232 (char *) "self",(char *) "parent",(char *) "winid",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
16235 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOOO:AuiMDIParentFrame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
16236 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16237 if (!SWIG_IsOK(res1
)) {
16238 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_Create" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");
16240 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16241 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
16242 if (!SWIG_IsOK(res2
)) {
16243 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIParentFrame_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
16245 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
16246 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
16247 if (!SWIG_IsOK(ecode3
)) {
16248 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiMDIParentFrame_Create" "', expected argument " "3"" of type '" "int""'");
16250 arg3
= static_cast< int >(val3
);
16252 arg4
= wxString_in_helper(obj3
);
16253 if (arg4
== NULL
) SWIG_fail
;
16259 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
16265 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
16269 ecode7
= SWIG_AsVal_long(obj6
, &val7
);
16270 if (!SWIG_IsOK(ecode7
)) {
16271 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiMDIParentFrame_Create" "', expected argument " "7"" of type '" "long""'");
16273 arg7
= static_cast< long >(val7
);
16277 arg8
= wxString_in_helper(obj7
);
16278 if (arg8
== NULL
) SWIG_fail
;
16283 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16284 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
16285 wxPyEndAllowThreads(__tstate
);
16286 if (PyErr_Occurred()) SWIG_fail
;
16289 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16313 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16314 PyObject
*resultobj
= 0;
16315 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16316 wxAuiTabArt
*arg2
= (wxAuiTabArt
*) 0 ;
16321 PyObject
* obj0
= 0 ;
16322 PyObject
* obj1
= 0 ;
16323 char * kwnames
[] = {
16324 (char *) "self",(char *) "provider", NULL
16327 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIParentFrame_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16328 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16329 if (!SWIG_IsOK(res1
)) {
16330 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");
16332 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16333 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
16334 if (!SWIG_IsOK(res2
)) {
16335 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIParentFrame_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiTabArt *""'");
16337 arg2
= reinterpret_cast< wxAuiTabArt
* >(argp2
);
16339 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16340 (arg1
)->SetArtProvider(arg2
);
16341 wxPyEndAllowThreads(__tstate
);
16342 if (PyErr_Occurred()) SWIG_fail
;
16344 resultobj
= SWIG_Py_Void();
16351 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16352 PyObject
*resultobj
= 0;
16353 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16354 wxAuiTabArt
*result
= 0 ;
16357 PyObject
*swig_obj
[1] ;
16359 if (!args
) SWIG_fail
;
16360 swig_obj
[0] = args
;
16361 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16362 if (!SWIG_IsOK(res1
)) {
16363 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");
16365 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16367 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16368 result
= (wxAuiTabArt
*)(arg1
)->GetArtProvider();
16369 wxPyEndAllowThreads(__tstate
);
16370 if (PyErr_Occurred()) SWIG_fail
;
16372 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
16379 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_GetWindowMenu(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16380 PyObject
*resultobj
= 0;
16381 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16382 wxMenu
*result
= 0 ;
16385 PyObject
*swig_obj
[1] ;
16387 if (!args
) SWIG_fail
;
16388 swig_obj
[0] = args
;
16389 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16390 if (!SWIG_IsOK(res1
)) {
16391 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_GetWindowMenu" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame const *""'");
16393 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16395 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16396 result
= (wxMenu
*)((wxAuiMDIParentFrame
const *)arg1
)->GetWindowMenu();
16397 wxPyEndAllowThreads(__tstate
);
16398 if (PyErr_Occurred()) SWIG_fail
;
16401 resultobj
= wxPyMake_wxObject(result
, 0);
16409 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_SetWindowMenu(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16410 PyObject
*resultobj
= 0;
16411 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16412 wxMenu
*arg2
= (wxMenu
*) 0 ;
16417 PyObject
* obj0
= 0 ;
16418 PyObject
* obj1
= 0 ;
16419 char * kwnames
[] = {
16420 (char *) "self",(char *) "pMenu", NULL
16423 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIParentFrame_SetWindowMenu",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16424 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16425 if (!SWIG_IsOK(res1
)) {
16426 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_SetWindowMenu" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");
16428 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16429 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMenu
, 0 | 0 );
16430 if (!SWIG_IsOK(res2
)) {
16431 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIParentFrame_SetWindowMenu" "', expected argument " "2"" of type '" "wxMenu *""'");
16433 arg2
= reinterpret_cast< wxMenu
* >(argp2
);
16435 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16436 (arg1
)->SetWindowMenu(arg2
);
16437 wxPyEndAllowThreads(__tstate
);
16438 if (PyErr_Occurred()) SWIG_fail
;
16440 resultobj
= SWIG_Py_Void();
16447 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_SetChildMenuBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16448 PyObject
*resultobj
= 0;
16449 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16450 wxAuiMDIChildFrame
*arg2
= (wxAuiMDIChildFrame
*) 0 ;
16455 PyObject
* obj0
= 0 ;
16456 PyObject
* obj1
= 0 ;
16457 char * kwnames
[] = {
16458 (char *) "self",(char *) "pChild", NULL
16461 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIParentFrame_SetChildMenuBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16462 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16463 if (!SWIG_IsOK(res1
)) {
16464 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_SetChildMenuBar" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");
16466 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16467 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
16468 if (!SWIG_IsOK(res2
)) {
16469 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIParentFrame_SetChildMenuBar" "', expected argument " "2"" of type '" "wxAuiMDIChildFrame *""'");
16471 arg2
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp2
);
16473 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16474 (arg1
)->SetChildMenuBar(arg2
);
16475 wxPyEndAllowThreads(__tstate
);
16476 if (PyErr_Occurred()) SWIG_fail
;
16478 resultobj
= SWIG_Py_Void();
16485 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_ProcessEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16486 PyObject
*resultobj
= 0;
16487 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16488 wxEvent
*arg2
= 0 ;
16494 PyObject
* obj0
= 0 ;
16495 PyObject
* obj1
= 0 ;
16496 char * kwnames
[] = {
16497 (char *) "self",(char *) "event", NULL
16500 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIParentFrame_ProcessEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16501 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16502 if (!SWIG_IsOK(res1
)) {
16503 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_ProcessEvent" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");
16505 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16506 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxEvent
, 0 );
16507 if (!SWIG_IsOK(res2
)) {
16508 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIParentFrame_ProcessEvent" "', expected argument " "2"" of type '" "wxEvent &""'");
16511 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMDIParentFrame_ProcessEvent" "', expected argument " "2"" of type '" "wxEvent &""'");
16513 arg2
= reinterpret_cast< wxEvent
* >(argp2
);
16515 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16516 result
= (bool)(arg1
)->ProcessEvent(*arg2
);
16517 wxPyEndAllowThreads(__tstate
);
16518 if (PyErr_Occurred()) SWIG_fail
;
16521 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16529 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_SetActiveChild(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16530 PyObject
*resultobj
= 0;
16531 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16532 wxAuiMDIChildFrame
*arg2
= (wxAuiMDIChildFrame
*) 0 ;
16537 PyObject
* obj0
= 0 ;
16538 PyObject
* obj1
= 0 ;
16539 char * kwnames
[] = {
16540 (char *) "self",(char *) "pChildFrame", NULL
16543 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIParentFrame_SetActiveChild",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16544 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16545 if (!SWIG_IsOK(res1
)) {
16546 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_SetActiveChild" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");
16548 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16549 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
16550 if (!SWIG_IsOK(res2
)) {
16551 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIParentFrame_SetActiveChild" "', expected argument " "2"" of type '" "wxAuiMDIChildFrame *""'");
16553 arg2
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp2
);
16555 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16556 (arg1
)->SetActiveChild(arg2
);
16557 wxPyEndAllowThreads(__tstate
);
16558 if (PyErr_Occurred()) SWIG_fail
;
16560 resultobj
= SWIG_Py_Void();
16567 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_OnCreateClient(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16568 PyObject
*resultobj
= 0;
16569 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16570 wxAuiMDIClientWindow
*result
= 0 ;
16573 PyObject
*swig_obj
[1] ;
16575 if (!args
) SWIG_fail
;
16576 swig_obj
[0] = args
;
16577 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16578 if (!SWIG_IsOK(res1
)) {
16579 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_OnCreateClient" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");
16581 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16583 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16584 result
= (wxAuiMDIClientWindow
*)(arg1
)->OnCreateClient();
16585 wxPyEndAllowThreads(__tstate
);
16586 if (PyErr_Occurred()) SWIG_fail
;
16588 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIClientWindow
, 0 | 0 );
16595 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_Cascade(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16596 PyObject
*resultobj
= 0;
16597 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16600 PyObject
*swig_obj
[1] ;
16602 if (!args
) SWIG_fail
;
16603 swig_obj
[0] = args
;
16604 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16605 if (!SWIG_IsOK(res1
)) {
16606 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_Cascade" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");
16608 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16610 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16612 wxPyEndAllowThreads(__tstate
);
16613 if (PyErr_Occurred()) SWIG_fail
;
16615 resultobj
= SWIG_Py_Void();
16622 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_Tile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16623 PyObject
*resultobj
= 0;
16624 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16625 wxOrientation arg2
= (wxOrientation
) wxHORIZONTAL
;
16630 PyObject
* obj0
= 0 ;
16631 PyObject
* obj1
= 0 ;
16632 char * kwnames
[] = {
16633 (char *) "self",(char *) "orient", NULL
16636 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiMDIParentFrame_Tile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16637 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16638 if (!SWIG_IsOK(res1
)) {
16639 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_Tile" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");
16641 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16643 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16644 if (!SWIG_IsOK(ecode2
)) {
16645 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMDIParentFrame_Tile" "', expected argument " "2"" of type '" "wxOrientation""'");
16647 arg2
= static_cast< wxOrientation
>(val2
);
16650 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16651 (arg1
)->Tile(arg2
);
16652 wxPyEndAllowThreads(__tstate
);
16653 if (PyErr_Occurred()) SWIG_fail
;
16655 resultobj
= SWIG_Py_Void();
16662 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_ArrangeIcons(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16663 PyObject
*resultobj
= 0;
16664 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16667 PyObject
*swig_obj
[1] ;
16669 if (!args
) SWIG_fail
;
16670 swig_obj
[0] = args
;
16671 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16672 if (!SWIG_IsOK(res1
)) {
16673 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_ArrangeIcons" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");
16675 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16677 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16678 (arg1
)->ArrangeIcons();
16679 wxPyEndAllowThreads(__tstate
);
16680 if (PyErr_Occurred()) SWIG_fail
;
16682 resultobj
= SWIG_Py_Void();
16689 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_ActivateNext(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16690 PyObject
*resultobj
= 0;
16691 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16694 PyObject
*swig_obj
[1] ;
16696 if (!args
) SWIG_fail
;
16697 swig_obj
[0] = args
;
16698 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16699 if (!SWIG_IsOK(res1
)) {
16700 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_ActivateNext" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");
16702 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16704 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16705 (arg1
)->ActivateNext();
16706 wxPyEndAllowThreads(__tstate
);
16707 if (PyErr_Occurred()) SWIG_fail
;
16709 resultobj
= SWIG_Py_Void();
16716 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_ActivatePrevious(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16717 PyObject
*resultobj
= 0;
16718 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16721 PyObject
*swig_obj
[1] ;
16723 if (!args
) SWIG_fail
;
16724 swig_obj
[0] = args
;
16725 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16726 if (!SWIG_IsOK(res1
)) {
16727 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_ActivatePrevious" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");
16729 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16731 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16732 (arg1
)->ActivatePrevious();
16733 wxPyEndAllowThreads(__tstate
);
16734 if (PyErr_Occurred()) SWIG_fail
;
16736 resultobj
= SWIG_Py_Void();
16743 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_GetNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16744 PyObject
*resultobj
= 0;
16745 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16746 wxAuiNotebook
*result
= 0 ;
16749 PyObject
*swig_obj
[1] ;
16751 if (!args
) SWIG_fail
;
16752 swig_obj
[0] = args
;
16753 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16754 if (!SWIG_IsOK(res1
)) {
16755 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_GetNotebook" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame const *""'");
16757 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16759 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16760 result
= (wxAuiNotebook
*)wxAuiMDIParentFrame__GetNotebook((wxAuiMDIParentFrame
const *)arg1
);
16761 wxPyEndAllowThreads(__tstate
);
16762 if (PyErr_Occurred()) SWIG_fail
;
16765 resultobj
= wxPyMake_wxObject(result
, 0);
16773 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_GetActiveChild(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16774 PyObject
*resultobj
= 0;
16775 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16776 wxAuiMDIChildFrame
*result
= 0 ;
16779 PyObject
*swig_obj
[1] ;
16781 if (!args
) SWIG_fail
;
16782 swig_obj
[0] = args
;
16783 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16784 if (!SWIG_IsOK(res1
)) {
16785 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_GetActiveChild" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame const *""'");
16787 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16789 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16790 result
= (wxAuiMDIChildFrame
*)wxAuiMDIParentFrame__GetActiveChild((wxAuiMDIParentFrame
const *)arg1
);
16791 wxPyEndAllowThreads(__tstate
);
16792 if (PyErr_Occurred()) SWIG_fail
;
16795 resultobj
= wxPyMake_wxObject(result
, 0);
16803 SWIGINTERN PyObject
*_wrap_AuiMDIParentFrame_GetClientWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16804 PyObject
*resultobj
= 0;
16805 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16806 wxAuiMDIClientWindow
*result
= 0 ;
16809 PyObject
*swig_obj
[1] ;
16811 if (!args
) SWIG_fail
;
16812 swig_obj
[0] = args
;
16813 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16814 if (!SWIG_IsOK(res1
)) {
16815 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIParentFrame_GetClientWindow" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame const *""'");
16817 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16819 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16820 result
= (wxAuiMDIClientWindow
*)wxAuiMDIParentFrame__GetClientWindow((wxAuiMDIParentFrame
const *)arg1
);
16821 wxPyEndAllowThreads(__tstate
);
16822 if (PyErr_Occurred()) SWIG_fail
;
16825 resultobj
= wxPyMake_wxObject(result
, 0);
16833 SWIGINTERN PyObject
*AuiMDIParentFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16835 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
16836 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiMDIParentFrame
, SWIG_NewClientData(obj
));
16837 return SWIG_Py_Void();
16840 SWIGINTERN PyObject
*AuiMDIParentFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16841 return SWIG_Python_InitShadowInstance(args
);
16844 SWIGINTERN PyObject
*_wrap_new_PreAuiMDIChildFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16845 PyObject
*resultobj
= 0;
16846 wxAuiMDIChildFrame
*result
= 0 ;
16848 if (!SWIG_Python_UnpackTuple(args
,"new_PreAuiMDIChildFrame",0,0,0)) SWIG_fail
;
16850 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16851 result
= (wxAuiMDIChildFrame
*)new wxAuiMDIChildFrame();
16852 wxPyEndAllowThreads(__tstate
);
16853 if (PyErr_Occurred()) SWIG_fail
;
16855 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIChildFrame
, SWIG_POINTER_OWN
| 0 );
16862 SWIGINTERN PyObject
*_wrap_new_AuiMDIChildFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16863 PyObject
*resultobj
= 0;
16864 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
16866 wxString
*arg3
= 0 ;
16867 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
16868 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
16869 wxSize
const &arg5_defvalue
= wxDefaultSize
;
16870 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
16871 long arg6
= (long) wxDEFAULT_FRAME_STYLE
;
16872 wxString
const &arg7_defvalue
= wxFrameNameStr
;
16873 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
16874 wxAuiMDIChildFrame
*result
= 0 ;
16879 bool temp3
= false ;
16884 bool temp7
= false ;
16885 PyObject
* obj0
= 0 ;
16886 PyObject
* obj1
= 0 ;
16887 PyObject
* obj2
= 0 ;
16888 PyObject
* obj3
= 0 ;
16889 PyObject
* obj4
= 0 ;
16890 PyObject
* obj5
= 0 ;
16891 PyObject
* obj6
= 0 ;
16892 char * kwnames
[] = {
16893 (char *) "parent",(char *) "winid",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
16896 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_AuiMDIChildFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
16897 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
16898 if (!SWIG_IsOK(res1
)) {
16899 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiMDIChildFrame" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");
16901 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
16902 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16903 if (!SWIG_IsOK(ecode2
)) {
16904 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiMDIChildFrame" "', expected argument " "2"" of type '" "int""'");
16906 arg2
= static_cast< int >(val2
);
16908 arg3
= wxString_in_helper(obj2
);
16909 if (arg3
== NULL
) SWIG_fail
;
16915 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
16921 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
16925 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
16926 if (!SWIG_IsOK(ecode6
)) {
16927 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_AuiMDIChildFrame" "', expected argument " "6"" of type '" "long""'");
16929 arg6
= static_cast< long >(val6
);
16933 arg7
= wxString_in_helper(obj6
);
16934 if (arg7
== NULL
) SWIG_fail
;
16939 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16940 result
= (wxAuiMDIChildFrame
*)new wxAuiMDIChildFrame(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
16941 wxPyEndAllowThreads(__tstate
);
16942 if (PyErr_Occurred()) SWIG_fail
;
16944 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIChildFrame
, SWIG_POINTER_NEW
| 0 );
16967 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16968 PyObject
*resultobj
= 0;
16969 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
16970 wxAuiMDIParentFrame
*arg2
= (wxAuiMDIParentFrame
*) 0 ;
16972 wxString
*arg4
= 0 ;
16973 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
16974 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
16975 wxSize
const &arg6_defvalue
= wxDefaultSize
;
16976 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
16977 long arg7
= (long) wxDEFAULT_FRAME_STYLE
;
16978 wxString
const &arg8_defvalue
= wxFrameNameStr
;
16979 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
16987 bool temp4
= false ;
16992 bool temp8
= false ;
16993 PyObject
* obj0
= 0 ;
16994 PyObject
* obj1
= 0 ;
16995 PyObject
* obj2
= 0 ;
16996 PyObject
* obj3
= 0 ;
16997 PyObject
* obj4
= 0 ;
16998 PyObject
* obj5
= 0 ;
16999 PyObject
* obj6
= 0 ;
17000 PyObject
* obj7
= 0 ;
17001 char * kwnames
[] = {
17002 (char *) "self",(char *) "parent",(char *) "winid",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
17005 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOOO:AuiMDIChildFrame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
17006 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17007 if (!SWIG_IsOK(res1
)) {
17008 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_Create" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17010 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17011 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
17012 if (!SWIG_IsOK(res2
)) {
17013 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_Create" "', expected argument " "2"" of type '" "wxAuiMDIParentFrame *""'");
17015 arg2
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp2
);
17016 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17017 if (!SWIG_IsOK(ecode3
)) {
17018 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiMDIChildFrame_Create" "', expected argument " "3"" of type '" "int""'");
17020 arg3
= static_cast< int >(val3
);
17022 arg4
= wxString_in_helper(obj3
);
17023 if (arg4
== NULL
) SWIG_fail
;
17029 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
17035 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
17039 ecode7
= SWIG_AsVal_long(obj6
, &val7
);
17040 if (!SWIG_IsOK(ecode7
)) {
17041 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiMDIChildFrame_Create" "', expected argument " "7"" of type '" "long""'");
17043 arg7
= static_cast< long >(val7
);
17047 arg8
= wxString_in_helper(obj7
);
17048 if (arg8
== NULL
) SWIG_fail
;
17053 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17054 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
17055 wxPyEndAllowThreads(__tstate
);
17056 if (PyErr_Occurred()) SWIG_fail
;
17059 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17083 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_SetMenuBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17084 PyObject
*resultobj
= 0;
17085 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17086 wxMenuBar
*arg2
= (wxMenuBar
*) 0 ;
17091 PyObject
* obj0
= 0 ;
17092 PyObject
* obj1
= 0 ;
17093 char * kwnames
[] = {
17094 (char *) "self",(char *) "menu_bar", NULL
17097 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_SetMenuBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17098 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17099 if (!SWIG_IsOK(res1
)) {
17100 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_SetMenuBar" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17102 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17103 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMenuBar
, 0 | 0 );
17104 if (!SWIG_IsOK(res2
)) {
17105 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_SetMenuBar" "', expected argument " "2"" of type '" "wxMenuBar *""'");
17107 arg2
= reinterpret_cast< wxMenuBar
* >(argp2
);
17109 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17110 (arg1
)->SetMenuBar(arg2
);
17111 wxPyEndAllowThreads(__tstate
);
17112 if (PyErr_Occurred()) SWIG_fail
;
17114 resultobj
= SWIG_Py_Void();
17121 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_GetMenuBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17122 PyObject
*resultobj
= 0;
17123 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17124 wxMenuBar
*result
= 0 ;
17127 PyObject
*swig_obj
[1] ;
17129 if (!args
) SWIG_fail
;
17130 swig_obj
[0] = args
;
17131 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17132 if (!SWIG_IsOK(res1
)) {
17133 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_GetMenuBar" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");
17135 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17137 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17138 result
= (wxMenuBar
*)((wxAuiMDIChildFrame
const *)arg1
)->GetMenuBar();
17139 wxPyEndAllowThreads(__tstate
);
17140 if (PyErr_Occurred()) SWIG_fail
;
17143 resultobj
= wxPyMake_wxObject(result
, 0);
17151 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_SetTitle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17152 PyObject
*resultobj
= 0;
17153 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17154 wxString
*arg2
= 0 ;
17157 bool temp2
= false ;
17158 PyObject
* obj0
= 0 ;
17159 PyObject
* obj1
= 0 ;
17160 char * kwnames
[] = {
17161 (char *) "self",(char *) "title", NULL
17164 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_SetTitle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17165 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17166 if (!SWIG_IsOK(res1
)) {
17167 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_SetTitle" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17169 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17171 arg2
= wxString_in_helper(obj1
);
17172 if (arg2
== NULL
) SWIG_fail
;
17176 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17177 (arg1
)->SetTitle((wxString
const &)*arg2
);
17178 wxPyEndAllowThreads(__tstate
);
17179 if (PyErr_Occurred()) SWIG_fail
;
17181 resultobj
= SWIG_Py_Void();
17196 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_GetTitle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17197 PyObject
*resultobj
= 0;
17198 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17202 PyObject
*swig_obj
[1] ;
17204 if (!args
) SWIG_fail
;
17205 swig_obj
[0] = args
;
17206 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17207 if (!SWIG_IsOK(res1
)) {
17208 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_GetTitle" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");
17210 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17212 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17213 result
= ((wxAuiMDIChildFrame
const *)arg1
)->GetTitle();
17214 wxPyEndAllowThreads(__tstate
);
17215 if (PyErr_Occurred()) SWIG_fail
;
17219 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17221 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17230 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_SetIcons(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17231 PyObject
*resultobj
= 0;
17232 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17233 wxIconBundle
*arg2
= 0 ;
17238 PyObject
* obj0
= 0 ;
17239 PyObject
* obj1
= 0 ;
17240 char * kwnames
[] = {
17241 (char *) "self",(char *) "icons", NULL
17244 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_SetIcons",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17245 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17246 if (!SWIG_IsOK(res1
)) {
17247 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_SetIcons" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17249 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17250 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIconBundle
, 0 | 0);
17251 if (!SWIG_IsOK(res2
)) {
17252 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_SetIcons" "', expected argument " "2"" of type '" "wxIconBundle const &""'");
17255 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMDIChildFrame_SetIcons" "', expected argument " "2"" of type '" "wxIconBundle const &""'");
17257 arg2
= reinterpret_cast< wxIconBundle
* >(argp2
);
17259 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17260 (arg1
)->SetIcons((wxIconBundle
const &)*arg2
);
17261 wxPyEndAllowThreads(__tstate
);
17262 if (PyErr_Occurred()) SWIG_fail
;
17264 resultobj
= SWIG_Py_Void();
17271 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_GetIcons(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17272 PyObject
*resultobj
= 0;
17273 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17274 wxIconBundle
*result
= 0 ;
17277 PyObject
*swig_obj
[1] ;
17279 if (!args
) SWIG_fail
;
17280 swig_obj
[0] = args
;
17281 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17282 if (!SWIG_IsOK(res1
)) {
17283 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_GetIcons" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");
17285 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17287 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17289 wxIconBundle
const &_result_ref
= ((wxAuiMDIChildFrame
const *)arg1
)->GetIcons();
17290 result
= (wxIconBundle
*) &_result_ref
;
17292 wxPyEndAllowThreads(__tstate
);
17293 if (PyErr_Occurred()) SWIG_fail
;
17295 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxIconBundle
, 0 | 0 );
17302 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_SetIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17303 PyObject
*resultobj
= 0;
17304 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17310 PyObject
* obj0
= 0 ;
17311 PyObject
* obj1
= 0 ;
17312 char * kwnames
[] = {
17313 (char *) "self",(char *) "icon", NULL
17316 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_SetIcon",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17317 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17318 if (!SWIG_IsOK(res1
)) {
17319 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_SetIcon" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17321 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17322 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIcon
, 0 | 0);
17323 if (!SWIG_IsOK(res2
)) {
17324 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_SetIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
17327 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMDIChildFrame_SetIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
17329 arg2
= reinterpret_cast< wxIcon
* >(argp2
);
17331 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17332 (arg1
)->SetIcon((wxIcon
const &)*arg2
);
17333 wxPyEndAllowThreads(__tstate
);
17334 if (PyErr_Occurred()) SWIG_fail
;
17336 resultobj
= SWIG_Py_Void();
17343 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_GetIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17344 PyObject
*resultobj
= 0;
17345 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17346 wxIcon
*result
= 0 ;
17349 PyObject
*swig_obj
[1] ;
17351 if (!args
) SWIG_fail
;
17352 swig_obj
[0] = args
;
17353 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17354 if (!SWIG_IsOK(res1
)) {
17355 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_GetIcon" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");
17357 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17359 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17361 wxIcon
const &_result_ref
= ((wxAuiMDIChildFrame
const *)arg1
)->GetIcon();
17362 result
= (wxIcon
*) &_result_ref
;
17364 wxPyEndAllowThreads(__tstate
);
17365 if (PyErr_Occurred()) SWIG_fail
;
17368 wxIcon
* resultptr
= new wxIcon(*result
);
17369 resultobj
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxIcon
, 1);
17377 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_Activate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17378 PyObject
*resultobj
= 0;
17379 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17382 PyObject
*swig_obj
[1] ;
17384 if (!args
) SWIG_fail
;
17385 swig_obj
[0] = args
;
17386 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17387 if (!SWIG_IsOK(res1
)) {
17388 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_Activate" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17390 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17392 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17393 (arg1
)->Activate();
17394 wxPyEndAllowThreads(__tstate
);
17395 if (PyErr_Occurred()) SWIG_fail
;
17397 resultobj
= SWIG_Py_Void();
17404 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_DoSetSizeHints(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17405 PyObject
*resultobj
= 0;
17406 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17409 int arg4
= (int) wxDefaultCoord
;
17410 int arg5
= (int) wxDefaultCoord
;
17411 int arg6
= (int) wxDefaultCoord
;
17412 int arg7
= (int) wxDefaultCoord
;
17427 PyObject
* obj0
= 0 ;
17428 PyObject
* obj1
= 0 ;
17429 PyObject
* obj2
= 0 ;
17430 PyObject
* obj3
= 0 ;
17431 PyObject
* obj4
= 0 ;
17432 PyObject
* obj5
= 0 ;
17433 PyObject
* obj6
= 0 ;
17434 char * kwnames
[] = {
17435 (char *) "self",(char *) "minW",(char *) "minH",(char *) "maxW",(char *) "maxH",(char *) "incW",(char *) "incH", NULL
17438 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:AuiMDIChildFrame_DoSetSizeHints",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
17439 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17440 if (!SWIG_IsOK(res1
)) {
17441 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_DoSetSizeHints" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17443 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17444 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17445 if (!SWIG_IsOK(ecode2
)) {
17446 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMDIChildFrame_DoSetSizeHints" "', expected argument " "2"" of type '" "int""'");
17448 arg2
= static_cast< int >(val2
);
17449 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17450 if (!SWIG_IsOK(ecode3
)) {
17451 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiMDIChildFrame_DoSetSizeHints" "', expected argument " "3"" of type '" "int""'");
17453 arg3
= static_cast< int >(val3
);
17455 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
17456 if (!SWIG_IsOK(ecode4
)) {
17457 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiMDIChildFrame_DoSetSizeHints" "', expected argument " "4"" of type '" "int""'");
17459 arg4
= static_cast< int >(val4
);
17462 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
17463 if (!SWIG_IsOK(ecode5
)) {
17464 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiMDIChildFrame_DoSetSizeHints" "', expected argument " "5"" of type '" "int""'");
17466 arg5
= static_cast< int >(val5
);
17469 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
17470 if (!SWIG_IsOK(ecode6
)) {
17471 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiMDIChildFrame_DoSetSizeHints" "', expected argument " "6"" of type '" "int""'");
17473 arg6
= static_cast< int >(val6
);
17476 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
17477 if (!SWIG_IsOK(ecode7
)) {
17478 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiMDIChildFrame_DoSetSizeHints" "', expected argument " "7"" of type '" "int""'");
17480 arg7
= static_cast< int >(val7
);
17483 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17484 (arg1
)->DoSetSizeHints(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
);
17485 wxPyEndAllowThreads(__tstate
);
17486 if (PyErr_Occurred()) SWIG_fail
;
17488 resultobj
= SWIG_Py_Void();
17495 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_Maximize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17496 PyObject
*resultobj
= 0;
17497 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17498 bool arg2
= (bool) true ;
17503 PyObject
* obj0
= 0 ;
17504 PyObject
* obj1
= 0 ;
17505 char * kwnames
[] = {
17506 (char *) "self",(char *) "maximize", NULL
17509 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiMDIChildFrame_Maximize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17510 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17511 if (!SWIG_IsOK(res1
)) {
17512 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_Maximize" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17514 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17516 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
17517 if (!SWIG_IsOK(ecode2
)) {
17518 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMDIChildFrame_Maximize" "', expected argument " "2"" of type '" "bool""'");
17520 arg2
= static_cast< bool >(val2
);
17523 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17524 (arg1
)->Maximize(arg2
);
17525 wxPyEndAllowThreads(__tstate
);
17526 if (PyErr_Occurred()) SWIG_fail
;
17528 resultobj
= SWIG_Py_Void();
17535 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_Restore(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17536 PyObject
*resultobj
= 0;
17537 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17540 PyObject
*swig_obj
[1] ;
17542 if (!args
) SWIG_fail
;
17543 swig_obj
[0] = args
;
17544 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17545 if (!SWIG_IsOK(res1
)) {
17546 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_Restore" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17548 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17550 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17552 wxPyEndAllowThreads(__tstate
);
17553 if (PyErr_Occurred()) SWIG_fail
;
17555 resultobj
= SWIG_Py_Void();
17562 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_Iconize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17563 PyObject
*resultobj
= 0;
17564 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17565 bool arg2
= (bool) true ;
17570 PyObject
* obj0
= 0 ;
17571 PyObject
* obj1
= 0 ;
17572 char * kwnames
[] = {
17573 (char *) "self",(char *) "iconize", NULL
17576 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiMDIChildFrame_Iconize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17577 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17578 if (!SWIG_IsOK(res1
)) {
17579 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_Iconize" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17581 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17583 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
17584 if (!SWIG_IsOK(ecode2
)) {
17585 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMDIChildFrame_Iconize" "', expected argument " "2"" of type '" "bool""'");
17587 arg2
= static_cast< bool >(val2
);
17590 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17591 (arg1
)->Iconize(arg2
);
17592 wxPyEndAllowThreads(__tstate
);
17593 if (PyErr_Occurred()) SWIG_fail
;
17595 resultobj
= SWIG_Py_Void();
17602 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_IsMaximized(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17603 PyObject
*resultobj
= 0;
17604 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17608 PyObject
*swig_obj
[1] ;
17610 if (!args
) SWIG_fail
;
17611 swig_obj
[0] = args
;
17612 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17613 if (!SWIG_IsOK(res1
)) {
17614 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_IsMaximized" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");
17616 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17618 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17619 result
= (bool)((wxAuiMDIChildFrame
const *)arg1
)->IsMaximized();
17620 wxPyEndAllowThreads(__tstate
);
17621 if (PyErr_Occurred()) SWIG_fail
;
17624 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17632 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_IsIconized(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17633 PyObject
*resultobj
= 0;
17634 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17638 PyObject
*swig_obj
[1] ;
17640 if (!args
) SWIG_fail
;
17641 swig_obj
[0] = args
;
17642 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17643 if (!SWIG_IsOK(res1
)) {
17644 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_IsIconized" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");
17646 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17648 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17649 result
= (bool)((wxAuiMDIChildFrame
const *)arg1
)->IsIconized();
17650 wxPyEndAllowThreads(__tstate
);
17651 if (PyErr_Occurred()) SWIG_fail
;
17654 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17662 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_ShowFullScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17663 PyObject
*resultobj
= 0;
17664 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17674 PyObject
* obj0
= 0 ;
17675 PyObject
* obj1
= 0 ;
17676 PyObject
* obj2
= 0 ;
17677 char * kwnames
[] = {
17678 (char *) "self",(char *) "show",(char *) "style", NULL
17681 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiMDIChildFrame_ShowFullScreen",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17682 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17683 if (!SWIG_IsOK(res1
)) {
17684 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_ShowFullScreen" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17686 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17687 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
17688 if (!SWIG_IsOK(ecode2
)) {
17689 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMDIChildFrame_ShowFullScreen" "', expected argument " "2"" of type '" "bool""'");
17691 arg2
= static_cast< bool >(val2
);
17692 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
17693 if (!SWIG_IsOK(ecode3
)) {
17694 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiMDIChildFrame_ShowFullScreen" "', expected argument " "3"" of type '" "long""'");
17696 arg3
= static_cast< long >(val3
);
17698 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17699 result
= (bool)(arg1
)->ShowFullScreen(arg2
,arg3
);
17700 wxPyEndAllowThreads(__tstate
);
17701 if (PyErr_Occurred()) SWIG_fail
;
17704 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17712 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_IsFullScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17713 PyObject
*resultobj
= 0;
17714 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17718 PyObject
*swig_obj
[1] ;
17720 if (!args
) SWIG_fail
;
17721 swig_obj
[0] = args
;
17722 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17723 if (!SWIG_IsOK(res1
)) {
17724 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_IsFullScreen" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");
17726 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17728 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17729 result
= (bool)((wxAuiMDIChildFrame
const *)arg1
)->IsFullScreen();
17730 wxPyEndAllowThreads(__tstate
);
17731 if (PyErr_Occurred()) SWIG_fail
;
17734 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17742 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_OnMenuHighlight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17743 PyObject
*resultobj
= 0;
17744 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17745 wxMenuEvent
*arg2
= 0 ;
17750 PyObject
* obj0
= 0 ;
17751 PyObject
* obj1
= 0 ;
17752 char * kwnames
[] = {
17753 (char *) "self",(char *) "evt", NULL
17756 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_OnMenuHighlight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17757 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17758 if (!SWIG_IsOK(res1
)) {
17759 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_OnMenuHighlight" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17761 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17762 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxMenuEvent
, 0 );
17763 if (!SWIG_IsOK(res2
)) {
17764 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_OnMenuHighlight" "', expected argument " "2"" of type '" "wxMenuEvent &""'");
17767 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMDIChildFrame_OnMenuHighlight" "', expected argument " "2"" of type '" "wxMenuEvent &""'");
17769 arg2
= reinterpret_cast< wxMenuEvent
* >(argp2
);
17771 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17772 (arg1
)->OnMenuHighlight(*arg2
);
17773 wxPyEndAllowThreads(__tstate
);
17774 if (PyErr_Occurred()) SWIG_fail
;
17776 resultobj
= SWIG_Py_Void();
17783 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_OnActivate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17784 PyObject
*resultobj
= 0;
17785 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17786 wxActivateEvent
*arg2
= 0 ;
17791 PyObject
* obj0
= 0 ;
17792 PyObject
* obj1
= 0 ;
17793 char * kwnames
[] = {
17794 (char *) "self",(char *) "evt", NULL
17797 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_OnActivate",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17798 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17799 if (!SWIG_IsOK(res1
)) {
17800 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_OnActivate" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17802 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17803 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxActivateEvent
, 0 );
17804 if (!SWIG_IsOK(res2
)) {
17805 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_OnActivate" "', expected argument " "2"" of type '" "wxActivateEvent &""'");
17808 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMDIChildFrame_OnActivate" "', expected argument " "2"" of type '" "wxActivateEvent &""'");
17810 arg2
= reinterpret_cast< wxActivateEvent
* >(argp2
);
17812 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17813 (arg1
)->OnActivate(*arg2
);
17814 wxPyEndAllowThreads(__tstate
);
17815 if (PyErr_Occurred()) SWIG_fail
;
17817 resultobj
= SWIG_Py_Void();
17824 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_OnCloseWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17825 PyObject
*resultobj
= 0;
17826 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17827 wxCloseEvent
*arg2
= 0 ;
17832 PyObject
* obj0
= 0 ;
17833 PyObject
* obj1
= 0 ;
17834 char * kwnames
[] = {
17835 (char *) "self",(char *) "evt", NULL
17838 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_OnCloseWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17839 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17840 if (!SWIG_IsOK(res1
)) {
17841 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_OnCloseWindow" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17843 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17844 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxCloseEvent
, 0 );
17845 if (!SWIG_IsOK(res2
)) {
17846 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_OnCloseWindow" "', expected argument " "2"" of type '" "wxCloseEvent &""'");
17849 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMDIChildFrame_OnCloseWindow" "', expected argument " "2"" of type '" "wxCloseEvent &""'");
17851 arg2
= reinterpret_cast< wxCloseEvent
* >(argp2
);
17853 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17854 (arg1
)->OnCloseWindow(*arg2
);
17855 wxPyEndAllowThreads(__tstate
);
17856 if (PyErr_Occurred()) SWIG_fail
;
17858 resultobj
= SWIG_Py_Void();
17865 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_SetMDIParentFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17866 PyObject
*resultobj
= 0;
17867 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17868 wxAuiMDIParentFrame
*arg2
= (wxAuiMDIParentFrame
*) 0 ;
17873 PyObject
* obj0
= 0 ;
17874 PyObject
* obj1
= 0 ;
17875 char * kwnames
[] = {
17876 (char *) "self",(char *) "parent", NULL
17879 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_SetMDIParentFrame",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17880 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17881 if (!SWIG_IsOK(res1
)) {
17882 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_SetMDIParentFrame" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17884 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17885 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
17886 if (!SWIG_IsOK(res2
)) {
17887 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIChildFrame_SetMDIParentFrame" "', expected argument " "2"" of type '" "wxAuiMDIParentFrame *""'");
17889 arg2
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp2
);
17891 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17892 (arg1
)->SetMDIParentFrame(arg2
);
17893 wxPyEndAllowThreads(__tstate
);
17894 if (PyErr_Occurred()) SWIG_fail
;
17896 resultobj
= SWIG_Py_Void();
17903 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_GetMDIParentFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17904 PyObject
*resultobj
= 0;
17905 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17906 wxAuiMDIParentFrame
*result
= 0 ;
17909 PyObject
*swig_obj
[1] ;
17911 if (!args
) SWIG_fail
;
17912 swig_obj
[0] = args
;
17913 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17914 if (!SWIG_IsOK(res1
)) {
17915 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_GetMDIParentFrame" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame const *""'");
17917 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17919 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17920 result
= (wxAuiMDIParentFrame
*)((wxAuiMDIChildFrame
const *)arg1
)->GetMDIParentFrame();
17921 wxPyEndAllowThreads(__tstate
);
17922 if (PyErr_Occurred()) SWIG_fail
;
17924 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
17931 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_ApplyMDIChildFrameRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17932 PyObject
*resultobj
= 0;
17933 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17936 PyObject
*swig_obj
[1] ;
17938 if (!args
) SWIG_fail
;
17939 swig_obj
[0] = args
;
17940 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17941 if (!SWIG_IsOK(res1
)) {
17942 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_ApplyMDIChildFrameRect" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17944 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17946 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17947 (arg1
)->ApplyMDIChildFrameRect();
17948 wxPyEndAllowThreads(__tstate
);
17949 if (PyErr_Occurred()) SWIG_fail
;
17951 resultobj
= SWIG_Py_Void();
17958 SWIGINTERN PyObject
*_wrap_AuiMDIChildFrame_DoShow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17959 PyObject
*resultobj
= 0;
17960 wxAuiMDIChildFrame
*arg1
= (wxAuiMDIChildFrame
*) 0 ;
17966 PyObject
* obj0
= 0 ;
17967 PyObject
* obj1
= 0 ;
17968 char * kwnames
[] = {
17969 (char *) "self",(char *) "show", NULL
17972 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIChildFrame_DoShow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17973 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIChildFrame
, 0 | 0 );
17974 if (!SWIG_IsOK(res1
)) {
17975 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIChildFrame_DoShow" "', expected argument " "1"" of type '" "wxAuiMDIChildFrame *""'");
17977 arg1
= reinterpret_cast< wxAuiMDIChildFrame
* >(argp1
);
17978 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
17979 if (!SWIG_IsOK(ecode2
)) {
17980 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMDIChildFrame_DoShow" "', expected argument " "2"" of type '" "bool""'");
17982 arg2
= static_cast< bool >(val2
);
17984 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17985 (arg1
)->DoShow(arg2
);
17986 wxPyEndAllowThreads(__tstate
);
17987 if (PyErr_Occurred()) SWIG_fail
;
17989 resultobj
= SWIG_Py_Void();
17996 SWIGINTERN PyObject
*AuiMDIChildFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17998 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
17999 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiMDIChildFrame
, SWIG_NewClientData(obj
));
18000 return SWIG_Py_Void();
18003 SWIGINTERN PyObject
*AuiMDIChildFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18004 return SWIG_Python_InitShadowInstance(args
);
18007 SWIGINTERN PyObject
*_wrap_new_PreAuiMDIClientWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18008 PyObject
*resultobj
= 0;
18009 wxAuiMDIClientWindow
*result
= 0 ;
18011 if (!SWIG_Python_UnpackTuple(args
,"new_PreAuiMDIClientWindow",0,0,0)) SWIG_fail
;
18013 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18014 result
= (wxAuiMDIClientWindow
*)new wxAuiMDIClientWindow();
18015 wxPyEndAllowThreads(__tstate
);
18016 if (PyErr_Occurred()) SWIG_fail
;
18018 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIClientWindow
, SWIG_POINTER_OWN
| 0 );
18025 SWIGINTERN PyObject
*_wrap_new_AuiMDIClientWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18026 PyObject
*resultobj
= 0;
18027 wxAuiMDIParentFrame
*arg1
= (wxAuiMDIParentFrame
*) 0 ;
18028 long arg2
= (long) 0 ;
18029 wxAuiMDIClientWindow
*result
= 0 ;
18034 PyObject
* obj0
= 0 ;
18035 PyObject
* obj1
= 0 ;
18036 char * kwnames
[] = {
18037 (char *) "parent",(char *) "style", NULL
18040 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_AuiMDIClientWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18041 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
18042 if (!SWIG_IsOK(res1
)) {
18043 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiMDIClientWindow" "', expected argument " "1"" of type '" "wxAuiMDIParentFrame *""'");
18045 arg1
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp1
);
18047 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
18048 if (!SWIG_IsOK(ecode2
)) {
18049 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiMDIClientWindow" "', expected argument " "2"" of type '" "long""'");
18051 arg2
= static_cast< long >(val2
);
18054 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18055 result
= (wxAuiMDIClientWindow
*)new wxAuiMDIClientWindow(arg1
,arg2
);
18056 wxPyEndAllowThreads(__tstate
);
18057 if (PyErr_Occurred()) SWIG_fail
;
18059 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMDIClientWindow
, SWIG_POINTER_NEW
| 0 );
18066 SWIGINTERN PyObject
*_wrap_AuiMDIClientWindow_CreateClient(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18067 PyObject
*resultobj
= 0;
18068 wxAuiMDIClientWindow
*arg1
= (wxAuiMDIClientWindow
*) 0 ;
18069 wxAuiMDIParentFrame
*arg2
= (wxAuiMDIParentFrame
*) 0 ;
18070 long arg3
= (long) wxVSCROLL
|wxHSCROLL
;
18078 PyObject
* obj0
= 0 ;
18079 PyObject
* obj1
= 0 ;
18080 PyObject
* obj2
= 0 ;
18081 char * kwnames
[] = {
18082 (char *) "self",(char *) "parent",(char *) "style", NULL
18085 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:AuiMDIClientWindow_CreateClient",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18086 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIClientWindow
, 0 | 0 );
18087 if (!SWIG_IsOK(res1
)) {
18088 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIClientWindow_CreateClient" "', expected argument " "1"" of type '" "wxAuiMDIClientWindow *""'");
18090 arg1
= reinterpret_cast< wxAuiMDIClientWindow
* >(argp1
);
18091 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiMDIParentFrame
, 0 | 0 );
18092 if (!SWIG_IsOK(res2
)) {
18093 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMDIClientWindow_CreateClient" "', expected argument " "2"" of type '" "wxAuiMDIParentFrame *""'");
18095 arg2
= reinterpret_cast< wxAuiMDIParentFrame
* >(argp2
);
18097 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
18098 if (!SWIG_IsOK(ecode3
)) {
18099 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiMDIClientWindow_CreateClient" "', expected argument " "3"" of type '" "long""'");
18101 arg3
= static_cast< long >(val3
);
18104 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18105 result
= (bool)(arg1
)->CreateClient(arg2
,arg3
);
18106 wxPyEndAllowThreads(__tstate
);
18107 if (PyErr_Occurred()) SWIG_fail
;
18110 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18118 SWIGINTERN PyObject
*_wrap_AuiMDIClientWindow_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18119 PyObject
*resultobj
= 0;
18120 wxAuiMDIClientWindow
*arg1
= (wxAuiMDIClientWindow
*) 0 ;
18127 PyObject
* obj0
= 0 ;
18128 PyObject
* obj1
= 0 ;
18129 char * kwnames
[] = {
18130 (char *) "self",(char *) "page", NULL
18133 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMDIClientWindow_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18134 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMDIClientWindow
, 0 | 0 );
18135 if (!SWIG_IsOK(res1
)) {
18136 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMDIClientWindow_SetSelection" "', expected argument " "1"" of type '" "wxAuiMDIClientWindow *""'");
18138 arg1
= reinterpret_cast< wxAuiMDIClientWindow
* >(argp1
);
18139 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
18140 if (!SWIG_IsOK(ecode2
)) {
18141 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMDIClientWindow_SetSelection" "', expected argument " "2"" of type '" "size_t""'");
18143 arg2
= static_cast< size_t >(val2
);
18145 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18146 result
= (int)(arg1
)->SetSelection(arg2
);
18147 wxPyEndAllowThreads(__tstate
);
18148 if (PyErr_Occurred()) SWIG_fail
;
18150 resultobj
= SWIG_From_int(static_cast< int >(result
));
18157 SWIGINTERN PyObject
*AuiMDIClientWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18159 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
18160 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiMDIClientWindow
, SWIG_NewClientData(obj
));
18161 return SWIG_Py_Void();
18164 SWIGINTERN PyObject
*AuiMDIClientWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18165 return SWIG_Python_InitShadowInstance(args
);
18168 SWIGINTERN PyObject
*_wrap_new_PyAuiDockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18169 PyObject
*resultobj
= 0;
18170 wxPyAuiDockArt
*result
= 0 ;
18172 if (!SWIG_Python_UnpackTuple(args
,"new_PyAuiDockArt",0,0,0)) SWIG_fail
;
18174 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18175 result
= (wxPyAuiDockArt
*)new wxPyAuiDockArt();
18176 wxPyEndAllowThreads(__tstate
);
18177 if (PyErr_Occurred()) SWIG_fail
;
18179 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyAuiDockArt
, SWIG_POINTER_NEW
| 0 );
18186 SWIGINTERN PyObject
*PyAuiDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18188 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
18189 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyAuiDockArt
, SWIG_NewClientData(obj
));
18190 return SWIG_Py_Void();
18193 SWIGINTERN PyObject
*PyAuiDockArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18194 return SWIG_Python_InitShadowInstance(args
);
18197 SWIGINTERN PyObject
*_wrap_new_PyAuiTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18198 PyObject
*resultobj
= 0;
18199 wxPyAuiTabArt
*result
= 0 ;
18201 if (!SWIG_Python_UnpackTuple(args
,"new_PyAuiTabArt",0,0,0)) SWIG_fail
;
18203 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18204 result
= (wxPyAuiTabArt
*)new wxPyAuiTabArt();
18205 wxPyEndAllowThreads(__tstate
);
18206 if (PyErr_Occurred()) SWIG_fail
;
18208 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyAuiTabArt
, SWIG_POINTER_NEW
| 0 );
18215 SWIGINTERN PyObject
*PyAuiTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18217 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
18218 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyAuiTabArt
, SWIG_NewClientData(obj
));
18219 return SWIG_Py_Void();
18222 SWIGINTERN PyObject
*PyAuiTabArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18223 return SWIG_Python_InitShadowInstance(args
);
18226 static PyMethodDef SwigMethods
[] = {
18227 { (char *)"new_AuiPaneInfo", (PyCFunction
)_wrap_new_AuiPaneInfo
, METH_NOARGS
, NULL
},
18228 { (char *)"delete_AuiPaneInfo", (PyCFunction
)_wrap_delete_AuiPaneInfo
, METH_O
, NULL
},
18229 { (char *)"AuiPaneInfo_SafeSet", (PyCFunction
) _wrap_AuiPaneInfo_SafeSet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18230 { (char *)"AuiPaneInfo_IsOk", (PyCFunction
)_wrap_AuiPaneInfo_IsOk
, METH_O
, NULL
},
18231 { (char *)"AuiPaneInfo_IsFixed", (PyCFunction
)_wrap_AuiPaneInfo_IsFixed
, METH_O
, NULL
},
18232 { (char *)"AuiPaneInfo_IsResizable", (PyCFunction
)_wrap_AuiPaneInfo_IsResizable
, METH_O
, NULL
},
18233 { (char *)"AuiPaneInfo_IsShown", (PyCFunction
)_wrap_AuiPaneInfo_IsShown
, METH_O
, NULL
},
18234 { (char *)"AuiPaneInfo_IsFloating", (PyCFunction
)_wrap_AuiPaneInfo_IsFloating
, METH_O
, NULL
},
18235 { (char *)"AuiPaneInfo_IsDocked", (PyCFunction
)_wrap_AuiPaneInfo_IsDocked
, METH_O
, NULL
},
18236 { (char *)"AuiPaneInfo_IsToolbar", (PyCFunction
)_wrap_AuiPaneInfo_IsToolbar
, METH_O
, NULL
},
18237 { (char *)"AuiPaneInfo_IsTopDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsTopDockable
, METH_O
, NULL
},
18238 { (char *)"AuiPaneInfo_IsBottomDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsBottomDockable
, METH_O
, NULL
},
18239 { (char *)"AuiPaneInfo_IsLeftDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsLeftDockable
, METH_O
, NULL
},
18240 { (char *)"AuiPaneInfo_IsRightDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsRightDockable
, METH_O
, NULL
},
18241 { (char *)"AuiPaneInfo_IsFloatable", (PyCFunction
)_wrap_AuiPaneInfo_IsFloatable
, METH_O
, NULL
},
18242 { (char *)"AuiPaneInfo_IsMovable", (PyCFunction
)_wrap_AuiPaneInfo_IsMovable
, METH_O
, NULL
},
18243 { (char *)"AuiPaneInfo_IsDestroyOnClose", (PyCFunction
)_wrap_AuiPaneInfo_IsDestroyOnClose
, METH_O
, NULL
},
18244 { (char *)"AuiPaneInfo_IsMaximized", (PyCFunction
)_wrap_AuiPaneInfo_IsMaximized
, METH_O
, NULL
},
18245 { (char *)"AuiPaneInfo_HasCaption", (PyCFunction
)_wrap_AuiPaneInfo_HasCaption
, METH_O
, NULL
},
18246 { (char *)"AuiPaneInfo_HasGripper", (PyCFunction
)_wrap_AuiPaneInfo_HasGripper
, METH_O
, NULL
},
18247 { (char *)"AuiPaneInfo_HasBorder", (PyCFunction
)_wrap_AuiPaneInfo_HasBorder
, METH_O
, NULL
},
18248 { (char *)"AuiPaneInfo_HasCloseButton", (PyCFunction
)_wrap_AuiPaneInfo_HasCloseButton
, METH_O
, NULL
},
18249 { (char *)"AuiPaneInfo_HasMaximizeButton", (PyCFunction
)_wrap_AuiPaneInfo_HasMaximizeButton
, METH_O
, NULL
},
18250 { (char *)"AuiPaneInfo_HasMinimizeButton", (PyCFunction
)_wrap_AuiPaneInfo_HasMinimizeButton
, METH_O
, NULL
},
18251 { (char *)"AuiPaneInfo_HasPinButton", (PyCFunction
)_wrap_AuiPaneInfo_HasPinButton
, METH_O
, NULL
},
18252 { (char *)"AuiPaneInfo_HasGripperTop", (PyCFunction
)_wrap_AuiPaneInfo_HasGripperTop
, METH_O
, NULL
},
18253 { (char *)"AuiPaneInfo_Window", (PyCFunction
) _wrap_AuiPaneInfo_Window
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18254 { (char *)"AuiPaneInfo_Name", (PyCFunction
) _wrap_AuiPaneInfo_Name
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18255 { (char *)"AuiPaneInfo_Caption", (PyCFunction
) _wrap_AuiPaneInfo_Caption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18256 { (char *)"AuiPaneInfo_Left", (PyCFunction
)_wrap_AuiPaneInfo_Left
, METH_O
, NULL
},
18257 { (char *)"AuiPaneInfo_Right", (PyCFunction
)_wrap_AuiPaneInfo_Right
, METH_O
, NULL
},
18258 { (char *)"AuiPaneInfo_Top", (PyCFunction
)_wrap_AuiPaneInfo_Top
, METH_O
, NULL
},
18259 { (char *)"AuiPaneInfo_Bottom", (PyCFunction
)_wrap_AuiPaneInfo_Bottom
, METH_O
, NULL
},
18260 { (char *)"AuiPaneInfo_Center", (PyCFunction
)_wrap_AuiPaneInfo_Center
, METH_O
, NULL
},
18261 { (char *)"AuiPaneInfo_Centre", (PyCFunction
)_wrap_AuiPaneInfo_Centre
, METH_O
, NULL
},
18262 { (char *)"AuiPaneInfo_Direction", (PyCFunction
) _wrap_AuiPaneInfo_Direction
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18263 { (char *)"AuiPaneInfo_Layer", (PyCFunction
) _wrap_AuiPaneInfo_Layer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18264 { (char *)"AuiPaneInfo_Row", (PyCFunction
) _wrap_AuiPaneInfo_Row
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18265 { (char *)"AuiPaneInfo_Position", (PyCFunction
) _wrap_AuiPaneInfo_Position
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18266 { (char *)"AuiPaneInfo_BestSize", (PyCFunction
) _wrap_AuiPaneInfo_BestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18267 { (char *)"AuiPaneInfo_MinSize", (PyCFunction
) _wrap_AuiPaneInfo_MinSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18268 { (char *)"AuiPaneInfo_MaxSize", (PyCFunction
) _wrap_AuiPaneInfo_MaxSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18269 { (char *)"AuiPaneInfo_FloatingPosition", (PyCFunction
) _wrap_AuiPaneInfo_FloatingPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18270 { (char *)"AuiPaneInfo_FloatingSize", (PyCFunction
) _wrap_AuiPaneInfo_FloatingSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18271 { (char *)"AuiPaneInfo_Fixed", (PyCFunction
)_wrap_AuiPaneInfo_Fixed
, METH_O
, NULL
},
18272 { (char *)"AuiPaneInfo_Resizable", (PyCFunction
) _wrap_AuiPaneInfo_Resizable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18273 { (char *)"AuiPaneInfo_Dock", (PyCFunction
)_wrap_AuiPaneInfo_Dock
, METH_O
, NULL
},
18274 { (char *)"AuiPaneInfo_Float", (PyCFunction
)_wrap_AuiPaneInfo_Float
, METH_O
, NULL
},
18275 { (char *)"AuiPaneInfo_Hide", (PyCFunction
)_wrap_AuiPaneInfo_Hide
, METH_O
, NULL
},
18276 { (char *)"AuiPaneInfo_Show", (PyCFunction
) _wrap_AuiPaneInfo_Show
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18277 { (char *)"AuiPaneInfo_CaptionVisible", (PyCFunction
) _wrap_AuiPaneInfo_CaptionVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18278 { (char *)"AuiPaneInfo_Maximize", (PyCFunction
)_wrap_AuiPaneInfo_Maximize
, METH_O
, NULL
},
18279 { (char *)"AuiPaneInfo_Restore", (PyCFunction
)_wrap_AuiPaneInfo_Restore
, METH_O
, NULL
},
18280 { (char *)"AuiPaneInfo_PaneBorder", (PyCFunction
) _wrap_AuiPaneInfo_PaneBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18281 { (char *)"AuiPaneInfo_Gripper", (PyCFunction
) _wrap_AuiPaneInfo_Gripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18282 { (char *)"AuiPaneInfo_GripperTop", (PyCFunction
) _wrap_AuiPaneInfo_GripperTop
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18283 { (char *)"AuiPaneInfo_CloseButton", (PyCFunction
) _wrap_AuiPaneInfo_CloseButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18284 { (char *)"AuiPaneInfo_MaximizeButton", (PyCFunction
) _wrap_AuiPaneInfo_MaximizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18285 { (char *)"AuiPaneInfo_MinimizeButton", (PyCFunction
) _wrap_AuiPaneInfo_MinimizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18286 { (char *)"AuiPaneInfo_PinButton", (PyCFunction
) _wrap_AuiPaneInfo_PinButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18287 { (char *)"AuiPaneInfo_DestroyOnClose", (PyCFunction
) _wrap_AuiPaneInfo_DestroyOnClose
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18288 { (char *)"AuiPaneInfo_TopDockable", (PyCFunction
) _wrap_AuiPaneInfo_TopDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18289 { (char *)"AuiPaneInfo_BottomDockable", (PyCFunction
) _wrap_AuiPaneInfo_BottomDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18290 { (char *)"AuiPaneInfo_LeftDockable", (PyCFunction
) _wrap_AuiPaneInfo_LeftDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18291 { (char *)"AuiPaneInfo_RightDockable", (PyCFunction
) _wrap_AuiPaneInfo_RightDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18292 { (char *)"AuiPaneInfo_Floatable", (PyCFunction
) _wrap_AuiPaneInfo_Floatable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18293 { (char *)"AuiPaneInfo_Movable", (PyCFunction
) _wrap_AuiPaneInfo_Movable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18294 { (char *)"AuiPaneInfo_Dockable", (PyCFunction
) _wrap_AuiPaneInfo_Dockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18295 { (char *)"AuiPaneInfo_DefaultPane", (PyCFunction
)_wrap_AuiPaneInfo_DefaultPane
, METH_O
, NULL
},
18296 { (char *)"AuiPaneInfo_CentrePane", (PyCFunction
)_wrap_AuiPaneInfo_CentrePane
, METH_O
, NULL
},
18297 { (char *)"AuiPaneInfo_CenterPane", (PyCFunction
)_wrap_AuiPaneInfo_CenterPane
, METH_O
, NULL
},
18298 { (char *)"AuiPaneInfo_ToolbarPane", (PyCFunction
)_wrap_AuiPaneInfo_ToolbarPane
, METH_O
, NULL
},
18299 { (char *)"AuiPaneInfo_SetFlag", (PyCFunction
) _wrap_AuiPaneInfo_SetFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18300 { (char *)"AuiPaneInfo_HasFlag", (PyCFunction
) _wrap_AuiPaneInfo_HasFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18301 { (char *)"AuiPaneInfo_name_set", _wrap_AuiPaneInfo_name_set
, METH_VARARGS
, NULL
},
18302 { (char *)"AuiPaneInfo_name_get", (PyCFunction
)_wrap_AuiPaneInfo_name_get
, METH_O
, NULL
},
18303 { (char *)"AuiPaneInfo_caption_set", _wrap_AuiPaneInfo_caption_set
, METH_VARARGS
, NULL
},
18304 { (char *)"AuiPaneInfo_caption_get", (PyCFunction
)_wrap_AuiPaneInfo_caption_get
, METH_O
, NULL
},
18305 { (char *)"AuiPaneInfo_window_set", _wrap_AuiPaneInfo_window_set
, METH_VARARGS
, NULL
},
18306 { (char *)"AuiPaneInfo_window_get", (PyCFunction
)_wrap_AuiPaneInfo_window_get
, METH_O
, NULL
},
18307 { (char *)"AuiPaneInfo_frame_set", _wrap_AuiPaneInfo_frame_set
, METH_VARARGS
, NULL
},
18308 { (char *)"AuiPaneInfo_frame_get", (PyCFunction
)_wrap_AuiPaneInfo_frame_get
, METH_O
, NULL
},
18309 { (char *)"AuiPaneInfo_state_set", _wrap_AuiPaneInfo_state_set
, METH_VARARGS
, NULL
},
18310 { (char *)"AuiPaneInfo_state_get", (PyCFunction
)_wrap_AuiPaneInfo_state_get
, METH_O
, NULL
},
18311 { (char *)"AuiPaneInfo_dock_direction_set", _wrap_AuiPaneInfo_dock_direction_set
, METH_VARARGS
, NULL
},
18312 { (char *)"AuiPaneInfo_dock_direction_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_direction_get
, METH_O
, NULL
},
18313 { (char *)"AuiPaneInfo_dock_layer_set", _wrap_AuiPaneInfo_dock_layer_set
, METH_VARARGS
, NULL
},
18314 { (char *)"AuiPaneInfo_dock_layer_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_layer_get
, METH_O
, NULL
},
18315 { (char *)"AuiPaneInfo_dock_row_set", _wrap_AuiPaneInfo_dock_row_set
, METH_VARARGS
, NULL
},
18316 { (char *)"AuiPaneInfo_dock_row_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_row_get
, METH_O
, NULL
},
18317 { (char *)"AuiPaneInfo_dock_pos_set", _wrap_AuiPaneInfo_dock_pos_set
, METH_VARARGS
, NULL
},
18318 { (char *)"AuiPaneInfo_dock_pos_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_pos_get
, METH_O
, NULL
},
18319 { (char *)"AuiPaneInfo_best_size_set", _wrap_AuiPaneInfo_best_size_set
, METH_VARARGS
, NULL
},
18320 { (char *)"AuiPaneInfo_best_size_get", (PyCFunction
)_wrap_AuiPaneInfo_best_size_get
, METH_O
, NULL
},
18321 { (char *)"AuiPaneInfo_min_size_set", _wrap_AuiPaneInfo_min_size_set
, METH_VARARGS
, NULL
},
18322 { (char *)"AuiPaneInfo_min_size_get", (PyCFunction
)_wrap_AuiPaneInfo_min_size_get
, METH_O
, NULL
},
18323 { (char *)"AuiPaneInfo_max_size_set", _wrap_AuiPaneInfo_max_size_set
, METH_VARARGS
, NULL
},
18324 { (char *)"AuiPaneInfo_max_size_get", (PyCFunction
)_wrap_AuiPaneInfo_max_size_get
, METH_O
, NULL
},
18325 { (char *)"AuiPaneInfo_floating_pos_set", _wrap_AuiPaneInfo_floating_pos_set
, METH_VARARGS
, NULL
},
18326 { (char *)"AuiPaneInfo_floating_pos_get", (PyCFunction
)_wrap_AuiPaneInfo_floating_pos_get
, METH_O
, NULL
},
18327 { (char *)"AuiPaneInfo_floating_size_set", _wrap_AuiPaneInfo_floating_size_set
, METH_VARARGS
, NULL
},
18328 { (char *)"AuiPaneInfo_floating_size_get", (PyCFunction
)_wrap_AuiPaneInfo_floating_size_get
, METH_O
, NULL
},
18329 { (char *)"AuiPaneInfo_dock_proportion_set", _wrap_AuiPaneInfo_dock_proportion_set
, METH_VARARGS
, NULL
},
18330 { (char *)"AuiPaneInfo_dock_proportion_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_proportion_get
, METH_O
, NULL
},
18331 { (char *)"AuiPaneInfo_buttons_set", _wrap_AuiPaneInfo_buttons_set
, METH_VARARGS
, NULL
},
18332 { (char *)"AuiPaneInfo_buttons_get", (PyCFunction
)_wrap_AuiPaneInfo_buttons_get
, METH_O
, NULL
},
18333 { (char *)"AuiPaneInfo_rect_set", _wrap_AuiPaneInfo_rect_set
, METH_VARARGS
, NULL
},
18334 { (char *)"AuiPaneInfo_rect_get", (PyCFunction
)_wrap_AuiPaneInfo_rect_get
, METH_O
, NULL
},
18335 { (char *)"AuiPaneInfo_swigregister", AuiPaneInfo_swigregister
, METH_VARARGS
, NULL
},
18336 { (char *)"AuiPaneInfo_swiginit", AuiPaneInfo_swiginit
, METH_VARARGS
, NULL
},
18337 { (char *)"new_AuiManager", (PyCFunction
) _wrap_new_AuiManager
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18338 { (char *)"delete_AuiManager", (PyCFunction
)_wrap_delete_AuiManager
, METH_O
, NULL
},
18339 { (char *)"AuiManager_UnInit", (PyCFunction
)_wrap_AuiManager_UnInit
, METH_O
, NULL
},
18340 { (char *)"AuiManager_SetFlags", (PyCFunction
) _wrap_AuiManager_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18341 { (char *)"AuiManager_GetFlags", (PyCFunction
)_wrap_AuiManager_GetFlags
, METH_O
, NULL
},
18342 { (char *)"AuiManager_SetManagedWindow", (PyCFunction
) _wrap_AuiManager_SetManagedWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18343 { (char *)"AuiManager_GetManagedWindow", (PyCFunction
)_wrap_AuiManager_GetManagedWindow
, METH_O
, NULL
},
18344 { (char *)"AuiManager_GetManager", (PyCFunction
) _wrap_AuiManager_GetManager
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18345 { (char *)"AuiManager_SetArtProvider", (PyCFunction
) _wrap_AuiManager_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18346 { (char *)"AuiManager_GetArtProvider", (PyCFunction
)_wrap_AuiManager_GetArtProvider
, METH_O
, NULL
},
18347 { (char *)"AuiManager__GetPaneByWidget", (PyCFunction
) _wrap_AuiManager__GetPaneByWidget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18348 { (char *)"AuiManager__GetPaneByName", (PyCFunction
) _wrap_AuiManager__GetPaneByName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18349 { (char *)"AuiManager_GetAllPanes", (PyCFunction
)_wrap_AuiManager_GetAllPanes
, METH_O
, NULL
},
18350 { (char *)"AuiManager__AddPane1", (PyCFunction
) _wrap_AuiManager__AddPane1
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18351 { (char *)"AuiManager_AddPane", (PyCFunction
) _wrap_AuiManager_AddPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18352 { (char *)"AuiManager__AddPane2", (PyCFunction
) _wrap_AuiManager__AddPane2
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18353 { (char *)"AuiManager_InsertPane", (PyCFunction
) _wrap_AuiManager_InsertPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18354 { (char *)"AuiManager_DetachPane", (PyCFunction
) _wrap_AuiManager_DetachPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18355 { (char *)"AuiManager_Update", (PyCFunction
)_wrap_AuiManager_Update
, METH_O
, NULL
},
18356 { (char *)"AuiManager_SavePaneInfo", (PyCFunction
) _wrap_AuiManager_SavePaneInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18357 { (char *)"AuiManager_LoadPaneInfo", (PyCFunction
) _wrap_AuiManager_LoadPaneInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18358 { (char *)"AuiManager_SavePerspective", (PyCFunction
)_wrap_AuiManager_SavePerspective
, METH_O
, NULL
},
18359 { (char *)"AuiManager_LoadPerspective", (PyCFunction
) _wrap_AuiManager_LoadPerspective
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18360 { (char *)"AuiManager_SetDockSizeConstraint", (PyCFunction
) _wrap_AuiManager_SetDockSizeConstraint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18361 { (char *)"AuiManager_GetDockSizeConstraint", (PyCFunction
) _wrap_AuiManager_GetDockSizeConstraint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18362 { (char *)"AuiManager_ClosePane", (PyCFunction
) _wrap_AuiManager_ClosePane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18363 { (char *)"AuiManager_MaximizePane", (PyCFunction
) _wrap_AuiManager_MaximizePane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18364 { (char *)"AuiManager_RestorePane", (PyCFunction
) _wrap_AuiManager_RestorePane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18365 { (char *)"AuiManager_RestoreMaximizedPane", (PyCFunction
)_wrap_AuiManager_RestoreMaximizedPane
, METH_O
, NULL
},
18366 { (char *)"AuiManager_CreateFloatingFrame", (PyCFunction
) _wrap_AuiManager_CreateFloatingFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18367 { (char *)"AuiManager_StartPaneDrag", (PyCFunction
) _wrap_AuiManager_StartPaneDrag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18368 { (char *)"AuiManager_CalculateHintRect", (PyCFunction
) _wrap_AuiManager_CalculateHintRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18369 { (char *)"AuiManager_DrawHintRect", (PyCFunction
) _wrap_AuiManager_DrawHintRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18370 { (char *)"AuiManager_ShowHint", (PyCFunction
) _wrap_AuiManager_ShowHint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18371 { (char *)"AuiManager_HideHint", (PyCFunction
)_wrap_AuiManager_HideHint
, METH_O
, NULL
},
18372 { (char *)"AuiManager_OnRender", (PyCFunction
) _wrap_AuiManager_OnRender
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18373 { (char *)"AuiManager_OnPaneButton", (PyCFunction
) _wrap_AuiManager_OnPaneButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18374 { (char *)"AuiManager_swigregister", AuiManager_swigregister
, METH_VARARGS
, NULL
},
18375 { (char *)"AuiManager_swiginit", AuiManager_swiginit
, METH_VARARGS
, NULL
},
18376 { (char *)"new_AuiManagerEvent", (PyCFunction
) _wrap_new_AuiManagerEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18377 { (char *)"AuiManagerEvent_Clone", (PyCFunction
)_wrap_AuiManagerEvent_Clone
, METH_O
, NULL
},
18378 { (char *)"AuiManagerEvent_SetManager", (PyCFunction
) _wrap_AuiManagerEvent_SetManager
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18379 { (char *)"AuiManagerEvent_SetPane", (PyCFunction
) _wrap_AuiManagerEvent_SetPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18380 { (char *)"AuiManagerEvent_SetButton", (PyCFunction
) _wrap_AuiManagerEvent_SetButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18381 { (char *)"AuiManagerEvent_SetDC", (PyCFunction
) _wrap_AuiManagerEvent_SetDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18382 { (char *)"AuiManagerEvent_GetManager", (PyCFunction
)_wrap_AuiManagerEvent_GetManager
, METH_O
, NULL
},
18383 { (char *)"AuiManagerEvent_GetPane", (PyCFunction
)_wrap_AuiManagerEvent_GetPane
, METH_O
, NULL
},
18384 { (char *)"AuiManagerEvent_GetButton", (PyCFunction
)_wrap_AuiManagerEvent_GetButton
, METH_O
, NULL
},
18385 { (char *)"AuiManagerEvent_GetDC", (PyCFunction
)_wrap_AuiManagerEvent_GetDC
, METH_O
, NULL
},
18386 { (char *)"AuiManagerEvent_Veto", (PyCFunction
) _wrap_AuiManagerEvent_Veto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18387 { (char *)"AuiManagerEvent_GetVeto", (PyCFunction
)_wrap_AuiManagerEvent_GetVeto
, METH_O
, NULL
},
18388 { (char *)"AuiManagerEvent_SetCanVeto", (PyCFunction
) _wrap_AuiManagerEvent_SetCanVeto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18389 { (char *)"AuiManagerEvent_CanVeto", (PyCFunction
)_wrap_AuiManagerEvent_CanVeto
, METH_O
, NULL
},
18390 { (char *)"AuiManagerEvent_manager_set", _wrap_AuiManagerEvent_manager_set
, METH_VARARGS
, NULL
},
18391 { (char *)"AuiManagerEvent_manager_get", (PyCFunction
)_wrap_AuiManagerEvent_manager_get
, METH_O
, NULL
},
18392 { (char *)"AuiManagerEvent_pane_set", _wrap_AuiManagerEvent_pane_set
, METH_VARARGS
, NULL
},
18393 { (char *)"AuiManagerEvent_pane_get", (PyCFunction
)_wrap_AuiManagerEvent_pane_get
, METH_O
, NULL
},
18394 { (char *)"AuiManagerEvent_button_set", _wrap_AuiManagerEvent_button_set
, METH_VARARGS
, NULL
},
18395 { (char *)"AuiManagerEvent_button_get", (PyCFunction
)_wrap_AuiManagerEvent_button_get
, METH_O
, NULL
},
18396 { (char *)"AuiManagerEvent_veto_flag_set", _wrap_AuiManagerEvent_veto_flag_set
, METH_VARARGS
, NULL
},
18397 { (char *)"AuiManagerEvent_veto_flag_get", (PyCFunction
)_wrap_AuiManagerEvent_veto_flag_get
, METH_O
, NULL
},
18398 { (char *)"AuiManagerEvent_canveto_flag_set", _wrap_AuiManagerEvent_canveto_flag_set
, METH_VARARGS
, NULL
},
18399 { (char *)"AuiManagerEvent_canveto_flag_get", (PyCFunction
)_wrap_AuiManagerEvent_canveto_flag_get
, METH_O
, NULL
},
18400 { (char *)"AuiManagerEvent_dc_set", _wrap_AuiManagerEvent_dc_set
, METH_VARARGS
, NULL
},
18401 { (char *)"AuiManagerEvent_dc_get", (PyCFunction
)_wrap_AuiManagerEvent_dc_get
, METH_O
, NULL
},
18402 { (char *)"AuiManagerEvent_swigregister", AuiManagerEvent_swigregister
, METH_VARARGS
, NULL
},
18403 { (char *)"AuiManagerEvent_swiginit", AuiManagerEvent_swiginit
, METH_VARARGS
, NULL
},
18404 { (char *)"new_AuiDockInfo", (PyCFunction
)_wrap_new_AuiDockInfo
, METH_NOARGS
, NULL
},
18405 { (char *)"AuiDockInfo_IsOk", (PyCFunction
)_wrap_AuiDockInfo_IsOk
, METH_O
, NULL
},
18406 { (char *)"AuiDockInfo_IsHorizontal", (PyCFunction
)_wrap_AuiDockInfo_IsHorizontal
, METH_O
, NULL
},
18407 { (char *)"AuiDockInfo_IsVertical", (PyCFunction
)_wrap_AuiDockInfo_IsVertical
, METH_O
, NULL
},
18408 { (char *)"AuiDockInfo_panes_set", _wrap_AuiDockInfo_panes_set
, METH_VARARGS
, NULL
},
18409 { (char *)"AuiDockInfo_panes_get", (PyCFunction
)_wrap_AuiDockInfo_panes_get
, METH_O
, NULL
},
18410 { (char *)"AuiDockInfo_rect_set", _wrap_AuiDockInfo_rect_set
, METH_VARARGS
, NULL
},
18411 { (char *)"AuiDockInfo_rect_get", (PyCFunction
)_wrap_AuiDockInfo_rect_get
, METH_O
, NULL
},
18412 { (char *)"AuiDockInfo_dock_direction_set", _wrap_AuiDockInfo_dock_direction_set
, METH_VARARGS
, NULL
},
18413 { (char *)"AuiDockInfo_dock_direction_get", (PyCFunction
)_wrap_AuiDockInfo_dock_direction_get
, METH_O
, NULL
},
18414 { (char *)"AuiDockInfo_dock_layer_set", _wrap_AuiDockInfo_dock_layer_set
, METH_VARARGS
, NULL
},
18415 { (char *)"AuiDockInfo_dock_layer_get", (PyCFunction
)_wrap_AuiDockInfo_dock_layer_get
, METH_O
, NULL
},
18416 { (char *)"AuiDockInfo_dock_row_set", _wrap_AuiDockInfo_dock_row_set
, METH_VARARGS
, NULL
},
18417 { (char *)"AuiDockInfo_dock_row_get", (PyCFunction
)_wrap_AuiDockInfo_dock_row_get
, METH_O
, NULL
},
18418 { (char *)"AuiDockInfo_size_set", _wrap_AuiDockInfo_size_set
, METH_VARARGS
, NULL
},
18419 { (char *)"AuiDockInfo_size_get", (PyCFunction
)_wrap_AuiDockInfo_size_get
, METH_O
, NULL
},
18420 { (char *)"AuiDockInfo_min_size_set", _wrap_AuiDockInfo_min_size_set
, METH_VARARGS
, NULL
},
18421 { (char *)"AuiDockInfo_min_size_get", (PyCFunction
)_wrap_AuiDockInfo_min_size_get
, METH_O
, NULL
},
18422 { (char *)"AuiDockInfo_resizable_set", _wrap_AuiDockInfo_resizable_set
, METH_VARARGS
, NULL
},
18423 { (char *)"AuiDockInfo_resizable_get", (PyCFunction
)_wrap_AuiDockInfo_resizable_get
, METH_O
, NULL
},
18424 { (char *)"AuiDockInfo_toolbar_set", _wrap_AuiDockInfo_toolbar_set
, METH_VARARGS
, NULL
},
18425 { (char *)"AuiDockInfo_toolbar_get", (PyCFunction
)_wrap_AuiDockInfo_toolbar_get
, METH_O
, NULL
},
18426 { (char *)"AuiDockInfo_fixed_set", _wrap_AuiDockInfo_fixed_set
, METH_VARARGS
, NULL
},
18427 { (char *)"AuiDockInfo_fixed_get", (PyCFunction
)_wrap_AuiDockInfo_fixed_get
, METH_O
, NULL
},
18428 { (char *)"AuiDockInfo_reserved1_set", _wrap_AuiDockInfo_reserved1_set
, METH_VARARGS
, NULL
},
18429 { (char *)"AuiDockInfo_reserved1_get", (PyCFunction
)_wrap_AuiDockInfo_reserved1_get
, METH_O
, NULL
},
18430 { (char *)"delete_AuiDockInfo", (PyCFunction
)_wrap_delete_AuiDockInfo
, METH_O
, NULL
},
18431 { (char *)"AuiDockInfo_swigregister", AuiDockInfo_swigregister
, METH_VARARGS
, NULL
},
18432 { (char *)"AuiDockInfo_swiginit", AuiDockInfo_swiginit
, METH_VARARGS
, NULL
},
18433 { (char *)"AuiDockUIPart_type_set", _wrap_AuiDockUIPart_type_set
, METH_VARARGS
, NULL
},
18434 { (char *)"AuiDockUIPart_type_get", (PyCFunction
)_wrap_AuiDockUIPart_type_get
, METH_O
, NULL
},
18435 { (char *)"AuiDockUIPart_orientation_set", _wrap_AuiDockUIPart_orientation_set
, METH_VARARGS
, NULL
},
18436 { (char *)"AuiDockUIPart_orientation_get", (PyCFunction
)_wrap_AuiDockUIPart_orientation_get
, METH_O
, NULL
},
18437 { (char *)"AuiDockUIPart_dock_set", _wrap_AuiDockUIPart_dock_set
, METH_VARARGS
, NULL
},
18438 { (char *)"AuiDockUIPart_dock_get", (PyCFunction
)_wrap_AuiDockUIPart_dock_get
, METH_O
, NULL
},
18439 { (char *)"AuiDockUIPart_pane_set", _wrap_AuiDockUIPart_pane_set
, METH_VARARGS
, NULL
},
18440 { (char *)"AuiDockUIPart_pane_get", (PyCFunction
)_wrap_AuiDockUIPart_pane_get
, METH_O
, NULL
},
18441 { (char *)"AuiDockUIPart_button_set", _wrap_AuiDockUIPart_button_set
, METH_VARARGS
, NULL
},
18442 { (char *)"AuiDockUIPart_button_get", (PyCFunction
)_wrap_AuiDockUIPart_button_get
, METH_O
, NULL
},
18443 { (char *)"AuiDockUIPart_cont_sizer_set", _wrap_AuiDockUIPart_cont_sizer_set
, METH_VARARGS
, NULL
},
18444 { (char *)"AuiDockUIPart_cont_sizer_get", (PyCFunction
)_wrap_AuiDockUIPart_cont_sizer_get
, METH_O
, NULL
},
18445 { (char *)"AuiDockUIPart_sizer_item_set", _wrap_AuiDockUIPart_sizer_item_set
, METH_VARARGS
, NULL
},
18446 { (char *)"AuiDockUIPart_sizer_item_get", (PyCFunction
)_wrap_AuiDockUIPart_sizer_item_get
, METH_O
, NULL
},
18447 { (char *)"AuiDockUIPart_rect_set", _wrap_AuiDockUIPart_rect_set
, METH_VARARGS
, NULL
},
18448 { (char *)"AuiDockUIPart_rect_get", (PyCFunction
)_wrap_AuiDockUIPart_rect_get
, METH_O
, NULL
},
18449 { (char *)"delete_AuiDockUIPart", (PyCFunction
)_wrap_delete_AuiDockUIPart
, METH_O
, NULL
},
18450 { (char *)"AuiDockUIPart_swigregister", AuiDockUIPart_swigregister
, METH_VARARGS
, NULL
},
18451 { (char *)"AuiPaneButton_button_id_set", _wrap_AuiPaneButton_button_id_set
, METH_VARARGS
, NULL
},
18452 { (char *)"AuiPaneButton_button_id_get", (PyCFunction
)_wrap_AuiPaneButton_button_id_get
, METH_O
, NULL
},
18453 { (char *)"delete_AuiPaneButton", (PyCFunction
)_wrap_delete_AuiPaneButton
, METH_O
, NULL
},
18454 { (char *)"AuiPaneButton_swigregister", AuiPaneButton_swigregister
, METH_VARARGS
, NULL
},
18455 { (char *)"delete_AuiDockArt", (PyCFunction
)_wrap_delete_AuiDockArt
, METH_O
, NULL
},
18456 { (char *)"AuiDockArt_GetMetric", (PyCFunction
) _wrap_AuiDockArt_GetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18457 { (char *)"AuiDockArt_SetMetric", (PyCFunction
) _wrap_AuiDockArt_SetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18458 { (char *)"AuiDockArt_SetFont", (PyCFunction
) _wrap_AuiDockArt_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18459 { (char *)"AuiDockArt_GetFont", (PyCFunction
) _wrap_AuiDockArt_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18460 { (char *)"AuiDockArt_GetColour", (PyCFunction
) _wrap_AuiDockArt_GetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18461 { (char *)"AuiDockArt_SetColour", (PyCFunction
) _wrap_AuiDockArt_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18462 { (char *)"AuiDockArt_GetColor", (PyCFunction
) _wrap_AuiDockArt_GetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18463 { (char *)"AuiDockArt_SetColor", (PyCFunction
) _wrap_AuiDockArt_SetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18464 { (char *)"AuiDockArt_DrawSash", (PyCFunction
) _wrap_AuiDockArt_DrawSash
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18465 { (char *)"AuiDockArt_DrawBackground", (PyCFunction
) _wrap_AuiDockArt_DrawBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18466 { (char *)"AuiDockArt_DrawCaption", (PyCFunction
) _wrap_AuiDockArt_DrawCaption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18467 { (char *)"AuiDockArt_DrawGripper", (PyCFunction
) _wrap_AuiDockArt_DrawGripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18468 { (char *)"AuiDockArt_DrawBorder", (PyCFunction
) _wrap_AuiDockArt_DrawBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18469 { (char *)"AuiDockArt_DrawPaneButton", (PyCFunction
) _wrap_AuiDockArt_DrawPaneButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18470 { (char *)"AuiDockArt_swigregister", AuiDockArt_swigregister
, METH_VARARGS
, NULL
},
18471 { (char *)"new_AuiDefaultDockArt", (PyCFunction
)_wrap_new_AuiDefaultDockArt
, METH_NOARGS
, NULL
},
18472 { (char *)"AuiDefaultDockArt_swigregister", AuiDefaultDockArt_swigregister
, METH_VARARGS
, NULL
},
18473 { (char *)"AuiDefaultDockArt_swiginit", AuiDefaultDockArt_swiginit
, METH_VARARGS
, NULL
},
18474 { (char *)"new_AuiFloatingFrame", (PyCFunction
) _wrap_new_AuiFloatingFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18475 { (char *)"delete_AuiFloatingFrame", (PyCFunction
)_wrap_delete_AuiFloatingFrame
, METH_O
, NULL
},
18476 { (char *)"AuiFloatingFrame_SetPaneWindow", (PyCFunction
) _wrap_AuiFloatingFrame_SetPaneWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18477 { (char *)"AuiFloatingFrame_GetOwnerManager", (PyCFunction
)_wrap_AuiFloatingFrame_GetOwnerManager
, METH_O
, NULL
},
18478 { (char *)"AuiFloatingFrame_swigregister", AuiFloatingFrame_swigregister
, METH_VARARGS
, NULL
},
18479 { (char *)"AuiFloatingFrame_swiginit", AuiFloatingFrame_swiginit
, METH_VARARGS
, NULL
},
18480 { (char *)"new_AuiNotebookEvent", (PyCFunction
) _wrap_new_AuiNotebookEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18481 { (char *)"AuiNotebookEvent_SetSelection", (PyCFunction
) _wrap_AuiNotebookEvent_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18482 { (char *)"AuiNotebookEvent_GetSelection", (PyCFunction
)_wrap_AuiNotebookEvent_GetSelection
, METH_O
, NULL
},
18483 { (char *)"AuiNotebookEvent_SetOldSelection", (PyCFunction
) _wrap_AuiNotebookEvent_SetOldSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18484 { (char *)"AuiNotebookEvent_GetOldSelection", (PyCFunction
)_wrap_AuiNotebookEvent_GetOldSelection
, METH_O
, NULL
},
18485 { (char *)"AuiNotebookEvent_SetDragSource", (PyCFunction
) _wrap_AuiNotebookEvent_SetDragSource
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18486 { (char *)"AuiNotebookEvent_GetDragSource", (PyCFunction
)_wrap_AuiNotebookEvent_GetDragSource
, METH_O
, NULL
},
18487 { (char *)"AuiNotebookEvent_old_selection_set", _wrap_AuiNotebookEvent_old_selection_set
, METH_VARARGS
, NULL
},
18488 { (char *)"AuiNotebookEvent_old_selection_get", (PyCFunction
)_wrap_AuiNotebookEvent_old_selection_get
, METH_O
, NULL
},
18489 { (char *)"AuiNotebookEvent_selection_set", _wrap_AuiNotebookEvent_selection_set
, METH_VARARGS
, NULL
},
18490 { (char *)"AuiNotebookEvent_selection_get", (PyCFunction
)_wrap_AuiNotebookEvent_selection_get
, METH_O
, NULL
},
18491 { (char *)"AuiNotebookEvent_drag_source_set", _wrap_AuiNotebookEvent_drag_source_set
, METH_VARARGS
, NULL
},
18492 { (char *)"AuiNotebookEvent_drag_source_get", (PyCFunction
)_wrap_AuiNotebookEvent_drag_source_get
, METH_O
, NULL
},
18493 { (char *)"AuiNotebookEvent_swigregister", AuiNotebookEvent_swigregister
, METH_VARARGS
, NULL
},
18494 { (char *)"AuiNotebookEvent_swiginit", AuiNotebookEvent_swiginit
, METH_VARARGS
, NULL
},
18495 { (char *)"AuiNotebookPage_window_set", _wrap_AuiNotebookPage_window_set
, METH_VARARGS
, NULL
},
18496 { (char *)"AuiNotebookPage_window_get", (PyCFunction
)_wrap_AuiNotebookPage_window_get
, METH_O
, NULL
},
18497 { (char *)"AuiNotebookPage_caption_set", _wrap_AuiNotebookPage_caption_set
, METH_VARARGS
, NULL
},
18498 { (char *)"AuiNotebookPage_caption_get", (PyCFunction
)_wrap_AuiNotebookPage_caption_get
, METH_O
, NULL
},
18499 { (char *)"AuiNotebookPage_bitmap_set", _wrap_AuiNotebookPage_bitmap_set
, METH_VARARGS
, NULL
},
18500 { (char *)"AuiNotebookPage_bitmap_get", (PyCFunction
)_wrap_AuiNotebookPage_bitmap_get
, METH_O
, NULL
},
18501 { (char *)"AuiNotebookPage_rect_set", _wrap_AuiNotebookPage_rect_set
, METH_VARARGS
, NULL
},
18502 { (char *)"AuiNotebookPage_rect_get", (PyCFunction
)_wrap_AuiNotebookPage_rect_get
, METH_O
, NULL
},
18503 { (char *)"AuiNotebookPage_active_set", _wrap_AuiNotebookPage_active_set
, METH_VARARGS
, NULL
},
18504 { (char *)"AuiNotebookPage_active_get", (PyCFunction
)_wrap_AuiNotebookPage_active_get
, METH_O
, NULL
},
18505 { (char *)"AuiNotebookPage_swigregister", AuiNotebookPage_swigregister
, METH_VARARGS
, NULL
},
18506 { (char *)"AuiTabContainerButton_id_set", _wrap_AuiTabContainerButton_id_set
, METH_VARARGS
, NULL
},
18507 { (char *)"AuiTabContainerButton_id_get", (PyCFunction
)_wrap_AuiTabContainerButton_id_get
, METH_O
, NULL
},
18508 { (char *)"AuiTabContainerButton_cur_state_set", _wrap_AuiTabContainerButton_cur_state_set
, METH_VARARGS
, NULL
},
18509 { (char *)"AuiTabContainerButton_cur_state_get", (PyCFunction
)_wrap_AuiTabContainerButton_cur_state_get
, METH_O
, NULL
},
18510 { (char *)"AuiTabContainerButton_location_set", _wrap_AuiTabContainerButton_location_set
, METH_VARARGS
, NULL
},
18511 { (char *)"AuiTabContainerButton_location_get", (PyCFunction
)_wrap_AuiTabContainerButton_location_get
, METH_O
, NULL
},
18512 { (char *)"AuiTabContainerButton_bitmap_set", _wrap_AuiTabContainerButton_bitmap_set
, METH_VARARGS
, NULL
},
18513 { (char *)"AuiTabContainerButton_bitmap_get", (PyCFunction
)_wrap_AuiTabContainerButton_bitmap_get
, METH_O
, NULL
},
18514 { (char *)"AuiTabContainerButton_dis_bitmap_set", _wrap_AuiTabContainerButton_dis_bitmap_set
, METH_VARARGS
, NULL
},
18515 { (char *)"AuiTabContainerButton_dis_bitmap_get", (PyCFunction
)_wrap_AuiTabContainerButton_dis_bitmap_get
, METH_O
, NULL
},
18516 { (char *)"AuiTabContainerButton_rect_set", _wrap_AuiTabContainerButton_rect_set
, METH_VARARGS
, NULL
},
18517 { (char *)"AuiTabContainerButton_rect_get", (PyCFunction
)_wrap_AuiTabContainerButton_rect_get
, METH_O
, NULL
},
18518 { (char *)"AuiTabContainerButton_swigregister", AuiTabContainerButton_swigregister
, METH_VARARGS
, NULL
},
18519 { (char *)"delete_AuiTabArt", (PyCFunction
)_wrap_delete_AuiTabArt
, METH_O
, NULL
},
18520 { (char *)"AuiTabArt_Clone", (PyCFunction
)_wrap_AuiTabArt_Clone
, METH_O
, NULL
},
18521 { (char *)"AuiTabArt_SetFlags", (PyCFunction
) _wrap_AuiTabArt_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18522 { (char *)"AuiTabArt_SetSizingInfo", (PyCFunction
) _wrap_AuiTabArt_SetSizingInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18523 { (char *)"AuiTabArt_SetNormalFont", (PyCFunction
) _wrap_AuiTabArt_SetNormalFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18524 { (char *)"AuiTabArt_SetSelectedFont", (PyCFunction
) _wrap_AuiTabArt_SetSelectedFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18525 { (char *)"AuiTabArt_SetMeasuringFont", (PyCFunction
) _wrap_AuiTabArt_SetMeasuringFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18526 { (char *)"AuiTabArt_DrawBackground", (PyCFunction
) _wrap_AuiTabArt_DrawBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18527 { (char *)"AuiTabArt_DrawTab", (PyCFunction
) _wrap_AuiTabArt_DrawTab
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18528 { (char *)"AuiTabArt_DrawButton", (PyCFunction
) _wrap_AuiTabArt_DrawButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18529 { (char *)"AuiTabArt_GetTabSize", (PyCFunction
) _wrap_AuiTabArt_GetTabSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18530 { (char *)"AuiTabArt_ShowDropDown", (PyCFunction
) _wrap_AuiTabArt_ShowDropDown
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18531 { (char *)"AuiTabArt_GetIndentSize", (PyCFunction
)_wrap_AuiTabArt_GetIndentSize
, METH_O
, NULL
},
18532 { (char *)"AuiTabArt_GetBestTabCtrlSize", (PyCFunction
) _wrap_AuiTabArt_GetBestTabCtrlSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18533 { (char *)"AuiTabArt_swigregister", AuiTabArt_swigregister
, METH_VARARGS
, NULL
},
18534 { (char *)"new_AuiDefaultTabArt", (PyCFunction
)_wrap_new_AuiDefaultTabArt
, METH_NOARGS
, NULL
},
18535 { (char *)"delete_AuiDefaultTabArt", (PyCFunction
)_wrap_delete_AuiDefaultTabArt
, METH_O
, NULL
},
18536 { (char *)"AuiDefaultTabArt_swigregister", AuiDefaultTabArt_swigregister
, METH_VARARGS
, NULL
},
18537 { (char *)"AuiDefaultTabArt_swiginit", AuiDefaultTabArt_swiginit
, METH_VARARGS
, NULL
},
18538 { (char *)"new_AuiSimpleTabArt", (PyCFunction
)_wrap_new_AuiSimpleTabArt
, METH_NOARGS
, NULL
},
18539 { (char *)"delete_AuiSimpleTabArt", (PyCFunction
)_wrap_delete_AuiSimpleTabArt
, METH_O
, NULL
},
18540 { (char *)"AuiSimpleTabArt_swigregister", AuiSimpleTabArt_swigregister
, METH_VARARGS
, NULL
},
18541 { (char *)"AuiSimpleTabArt_swiginit", AuiSimpleTabArt_swiginit
, METH_VARARGS
, NULL
},
18542 { (char *)"new_AuiTabContainer", (PyCFunction
)_wrap_new_AuiTabContainer
, METH_NOARGS
, NULL
},
18543 { (char *)"delete_AuiTabContainer", (PyCFunction
)_wrap_delete_AuiTabContainer
, METH_O
, NULL
},
18544 { (char *)"AuiTabContainer_SetArtProvider", (PyCFunction
) _wrap_AuiTabContainer_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18545 { (char *)"AuiTabContainer_GetArtProvider", (PyCFunction
)_wrap_AuiTabContainer_GetArtProvider
, METH_O
, NULL
},
18546 { (char *)"AuiTabContainer_SetFlags", (PyCFunction
) _wrap_AuiTabContainer_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18547 { (char *)"AuiTabContainer_GetFlags", (PyCFunction
)_wrap_AuiTabContainer_GetFlags
, METH_O
, NULL
},
18548 { (char *)"AuiTabContainer_AddPage", (PyCFunction
) _wrap_AuiTabContainer_AddPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18549 { (char *)"AuiTabContainer_InsertPage", (PyCFunction
) _wrap_AuiTabContainer_InsertPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18550 { (char *)"AuiTabContainer_MovePage", (PyCFunction
) _wrap_AuiTabContainer_MovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18551 { (char *)"AuiTabContainer_RemovePage", (PyCFunction
) _wrap_AuiTabContainer_RemovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18552 { (char *)"AuiTabContainer_SetActivePage", _wrap_AuiTabContainer_SetActivePage
, METH_VARARGS
, NULL
},
18553 { (char *)"AuiTabContainer_SetNoneActive", (PyCFunction
)_wrap_AuiTabContainer_SetNoneActive
, METH_O
, NULL
},
18554 { (char *)"AuiTabContainer_GetActivePage", (PyCFunction
)_wrap_AuiTabContainer_GetActivePage
, METH_O
, NULL
},
18555 { (char *)"AuiTabContainer_TabHitTest", (PyCFunction
) _wrap_AuiTabContainer_TabHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18556 { (char *)"AuiTabContainer_ButtonHitTest", (PyCFunction
) _wrap_AuiTabContainer_ButtonHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18557 { (char *)"AuiTabContainer_GetWindowFromIdx", (PyCFunction
) _wrap_AuiTabContainer_GetWindowFromIdx
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18558 { (char *)"AuiTabContainer_GetIdxFromWindow", (PyCFunction
) _wrap_AuiTabContainer_GetIdxFromWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18559 { (char *)"AuiTabContainer_GetPageCount", (PyCFunction
)_wrap_AuiTabContainer_GetPageCount
, METH_O
, NULL
},
18560 { (char *)"AuiTabContainer_GetPage", (PyCFunction
) _wrap_AuiTabContainer_GetPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18561 { (char *)"AuiTabContainer_GetPages", (PyCFunction
)_wrap_AuiTabContainer_GetPages
, METH_O
, NULL
},
18562 { (char *)"AuiTabContainer_SetNormalFont", (PyCFunction
) _wrap_AuiTabContainer_SetNormalFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18563 { (char *)"AuiTabContainer_SetSelectedFont", (PyCFunction
) _wrap_AuiTabContainer_SetSelectedFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18564 { (char *)"AuiTabContainer_SetMeasuringFont", (PyCFunction
) _wrap_AuiTabContainer_SetMeasuringFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18565 { (char *)"AuiTabContainer_DoShowHide", (PyCFunction
)_wrap_AuiTabContainer_DoShowHide
, METH_O
, NULL
},
18566 { (char *)"AuiTabContainer_SetRect", (PyCFunction
) _wrap_AuiTabContainer_SetRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18567 { (char *)"AuiTabContainer_RemoveButton", (PyCFunction
) _wrap_AuiTabContainer_RemoveButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18568 { (char *)"AuiTabContainer_AddButton", (PyCFunction
) _wrap_AuiTabContainer_AddButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18569 { (char *)"AuiTabContainer_GetTabOffset", (PyCFunction
)_wrap_AuiTabContainer_GetTabOffset
, METH_O
, NULL
},
18570 { (char *)"AuiTabContainer_SetTabOffset", (PyCFunction
) _wrap_AuiTabContainer_SetTabOffset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18571 { (char *)"AuiTabContainer_swigregister", AuiTabContainer_swigregister
, METH_VARARGS
, NULL
},
18572 { (char *)"AuiTabContainer_swiginit", AuiTabContainer_swiginit
, METH_VARARGS
, NULL
},
18573 { (char *)"new_AuiTabCtrl", (PyCFunction
) _wrap_new_AuiTabCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18574 { (char *)"delete_AuiTabCtrl", (PyCFunction
)_wrap_delete_AuiTabCtrl
, METH_O
, NULL
},
18575 { (char *)"AuiTabCtrl_swigregister", AuiTabCtrl_swigregister
, METH_VARARGS
, NULL
},
18576 { (char *)"AuiTabCtrl_swiginit", AuiTabCtrl_swiginit
, METH_VARARGS
, NULL
},
18577 { (char *)"new_PreAuiNotebook", (PyCFunction
)_wrap_new_PreAuiNotebook
, METH_NOARGS
, NULL
},
18578 { (char *)"new_AuiNotebook", (PyCFunction
) _wrap_new_AuiNotebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18579 { (char *)"delete_AuiNotebook", (PyCFunction
)_wrap_delete_AuiNotebook
, METH_O
, NULL
},
18580 { (char *)"AuiNotebook_Create", (PyCFunction
) _wrap_AuiNotebook_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18581 { (char *)"AuiNotebook_SetArtProvider", (PyCFunction
) _wrap_AuiNotebook_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18582 { (char *)"AuiNotebook_GetArtProvider", (PyCFunction
)_wrap_AuiNotebook_GetArtProvider
, METH_O
, NULL
},
18583 { (char *)"AuiNotebook_SetUniformBitmapSize", (PyCFunction
) _wrap_AuiNotebook_SetUniformBitmapSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18584 { (char *)"AuiNotebook_SetTabCtrlHeight", (PyCFunction
) _wrap_AuiNotebook_SetTabCtrlHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18585 { (char *)"AuiNotebook_AddPage", (PyCFunction
) _wrap_AuiNotebook_AddPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18586 { (char *)"AuiNotebook_InsertPage", (PyCFunction
) _wrap_AuiNotebook_InsertPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18587 { (char *)"AuiNotebook_DeletePage", (PyCFunction
) _wrap_AuiNotebook_DeletePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18588 { (char *)"AuiNotebook_RemovePage", (PyCFunction
) _wrap_AuiNotebook_RemovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18589 { (char *)"AuiNotebook_GetPageCount", (PyCFunction
)_wrap_AuiNotebook_GetPageCount
, METH_O
, NULL
},
18590 { (char *)"AuiNotebook_GetPage", (PyCFunction
) _wrap_AuiNotebook_GetPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18591 { (char *)"AuiNotebook_GetPageIndex", (PyCFunction
) _wrap_AuiNotebook_GetPageIndex
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18592 { (char *)"AuiNotebook_SetPageText", (PyCFunction
) _wrap_AuiNotebook_SetPageText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18593 { (char *)"AuiNotebook_GetPageText", (PyCFunction
) _wrap_AuiNotebook_GetPageText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18594 { (char *)"AuiNotebook_SetPageBitmap", (PyCFunction
) _wrap_AuiNotebook_SetPageBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18595 { (char *)"AuiNotebook_GetPageBitmap", (PyCFunction
) _wrap_AuiNotebook_GetPageBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18596 { (char *)"AuiNotebook_SetSelection", (PyCFunction
) _wrap_AuiNotebook_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18597 { (char *)"AuiNotebook_GetSelection", (PyCFunction
)_wrap_AuiNotebook_GetSelection
, METH_O
, NULL
},
18598 { (char *)"AuiNotebook_Split", (PyCFunction
) _wrap_AuiNotebook_Split
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18599 { (char *)"AuiNotebook_GetAuiManager", (PyCFunction
)_wrap_AuiNotebook_GetAuiManager
, METH_O
, NULL
},
18600 { (char *)"AuiNotebook_swigregister", AuiNotebook_swigregister
, METH_VARARGS
, NULL
},
18601 { (char *)"AuiNotebook_swiginit", AuiNotebook_swiginit
, METH_VARARGS
, NULL
},
18602 { (char *)"new_PreAuiMDIParentFrame", (PyCFunction
)_wrap_new_PreAuiMDIParentFrame
, METH_NOARGS
, NULL
},
18603 { (char *)"new_AuiMDIParentFrame", (PyCFunction
) _wrap_new_AuiMDIParentFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18604 { (char *)"AuiMDIParentFrame_Create", (PyCFunction
) _wrap_AuiMDIParentFrame_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18605 { (char *)"AuiMDIParentFrame_SetArtProvider", (PyCFunction
) _wrap_AuiMDIParentFrame_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18606 { (char *)"AuiMDIParentFrame_GetArtProvider", (PyCFunction
)_wrap_AuiMDIParentFrame_GetArtProvider
, METH_O
, NULL
},
18607 { (char *)"AuiMDIParentFrame_GetWindowMenu", (PyCFunction
)_wrap_AuiMDIParentFrame_GetWindowMenu
, METH_O
, NULL
},
18608 { (char *)"AuiMDIParentFrame_SetWindowMenu", (PyCFunction
) _wrap_AuiMDIParentFrame_SetWindowMenu
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18609 { (char *)"AuiMDIParentFrame_SetChildMenuBar", (PyCFunction
) _wrap_AuiMDIParentFrame_SetChildMenuBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18610 { (char *)"AuiMDIParentFrame_ProcessEvent", (PyCFunction
) _wrap_AuiMDIParentFrame_ProcessEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18611 { (char *)"AuiMDIParentFrame_SetActiveChild", (PyCFunction
) _wrap_AuiMDIParentFrame_SetActiveChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18612 { (char *)"AuiMDIParentFrame_OnCreateClient", (PyCFunction
)_wrap_AuiMDIParentFrame_OnCreateClient
, METH_O
, NULL
},
18613 { (char *)"AuiMDIParentFrame_Cascade", (PyCFunction
)_wrap_AuiMDIParentFrame_Cascade
, METH_O
, NULL
},
18614 { (char *)"AuiMDIParentFrame_Tile", (PyCFunction
) _wrap_AuiMDIParentFrame_Tile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18615 { (char *)"AuiMDIParentFrame_ArrangeIcons", (PyCFunction
)_wrap_AuiMDIParentFrame_ArrangeIcons
, METH_O
, NULL
},
18616 { (char *)"AuiMDIParentFrame_ActivateNext", (PyCFunction
)_wrap_AuiMDIParentFrame_ActivateNext
, METH_O
, NULL
},
18617 { (char *)"AuiMDIParentFrame_ActivatePrevious", (PyCFunction
)_wrap_AuiMDIParentFrame_ActivatePrevious
, METH_O
, NULL
},
18618 { (char *)"AuiMDIParentFrame_GetNotebook", (PyCFunction
)_wrap_AuiMDIParentFrame_GetNotebook
, METH_O
, NULL
},
18619 { (char *)"AuiMDIParentFrame_GetActiveChild", (PyCFunction
)_wrap_AuiMDIParentFrame_GetActiveChild
, METH_O
, NULL
},
18620 { (char *)"AuiMDIParentFrame_GetClientWindow", (PyCFunction
)_wrap_AuiMDIParentFrame_GetClientWindow
, METH_O
, NULL
},
18621 { (char *)"AuiMDIParentFrame_swigregister", AuiMDIParentFrame_swigregister
, METH_VARARGS
, NULL
},
18622 { (char *)"AuiMDIParentFrame_swiginit", AuiMDIParentFrame_swiginit
, METH_VARARGS
, NULL
},
18623 { (char *)"new_PreAuiMDIChildFrame", (PyCFunction
)_wrap_new_PreAuiMDIChildFrame
, METH_NOARGS
, NULL
},
18624 { (char *)"new_AuiMDIChildFrame", (PyCFunction
) _wrap_new_AuiMDIChildFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18625 { (char *)"AuiMDIChildFrame_Create", (PyCFunction
) _wrap_AuiMDIChildFrame_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18626 { (char *)"AuiMDIChildFrame_SetMenuBar", (PyCFunction
) _wrap_AuiMDIChildFrame_SetMenuBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18627 { (char *)"AuiMDIChildFrame_GetMenuBar", (PyCFunction
)_wrap_AuiMDIChildFrame_GetMenuBar
, METH_O
, NULL
},
18628 { (char *)"AuiMDIChildFrame_SetTitle", (PyCFunction
) _wrap_AuiMDIChildFrame_SetTitle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18629 { (char *)"AuiMDIChildFrame_GetTitle", (PyCFunction
)_wrap_AuiMDIChildFrame_GetTitle
, METH_O
, NULL
},
18630 { (char *)"AuiMDIChildFrame_SetIcons", (PyCFunction
) _wrap_AuiMDIChildFrame_SetIcons
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18631 { (char *)"AuiMDIChildFrame_GetIcons", (PyCFunction
)_wrap_AuiMDIChildFrame_GetIcons
, METH_O
, NULL
},
18632 { (char *)"AuiMDIChildFrame_SetIcon", (PyCFunction
) _wrap_AuiMDIChildFrame_SetIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18633 { (char *)"AuiMDIChildFrame_GetIcon", (PyCFunction
)_wrap_AuiMDIChildFrame_GetIcon
, METH_O
, NULL
},
18634 { (char *)"AuiMDIChildFrame_Activate", (PyCFunction
)_wrap_AuiMDIChildFrame_Activate
, METH_O
, NULL
},
18635 { (char *)"AuiMDIChildFrame_DoSetSizeHints", (PyCFunction
) _wrap_AuiMDIChildFrame_DoSetSizeHints
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18636 { (char *)"AuiMDIChildFrame_Maximize", (PyCFunction
) _wrap_AuiMDIChildFrame_Maximize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18637 { (char *)"AuiMDIChildFrame_Restore", (PyCFunction
)_wrap_AuiMDIChildFrame_Restore
, METH_O
, NULL
},
18638 { (char *)"AuiMDIChildFrame_Iconize", (PyCFunction
) _wrap_AuiMDIChildFrame_Iconize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18639 { (char *)"AuiMDIChildFrame_IsMaximized", (PyCFunction
)_wrap_AuiMDIChildFrame_IsMaximized
, METH_O
, NULL
},
18640 { (char *)"AuiMDIChildFrame_IsIconized", (PyCFunction
)_wrap_AuiMDIChildFrame_IsIconized
, METH_O
, NULL
},
18641 { (char *)"AuiMDIChildFrame_ShowFullScreen", (PyCFunction
) _wrap_AuiMDIChildFrame_ShowFullScreen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18642 { (char *)"AuiMDIChildFrame_IsFullScreen", (PyCFunction
)_wrap_AuiMDIChildFrame_IsFullScreen
, METH_O
, NULL
},
18643 { (char *)"AuiMDIChildFrame_OnMenuHighlight", (PyCFunction
) _wrap_AuiMDIChildFrame_OnMenuHighlight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18644 { (char *)"AuiMDIChildFrame_OnActivate", (PyCFunction
) _wrap_AuiMDIChildFrame_OnActivate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18645 { (char *)"AuiMDIChildFrame_OnCloseWindow", (PyCFunction
) _wrap_AuiMDIChildFrame_OnCloseWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18646 { (char *)"AuiMDIChildFrame_SetMDIParentFrame", (PyCFunction
) _wrap_AuiMDIChildFrame_SetMDIParentFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18647 { (char *)"AuiMDIChildFrame_GetMDIParentFrame", (PyCFunction
)_wrap_AuiMDIChildFrame_GetMDIParentFrame
, METH_O
, NULL
},
18648 { (char *)"AuiMDIChildFrame_ApplyMDIChildFrameRect", (PyCFunction
)_wrap_AuiMDIChildFrame_ApplyMDIChildFrameRect
, METH_O
, NULL
},
18649 { (char *)"AuiMDIChildFrame_DoShow", (PyCFunction
) _wrap_AuiMDIChildFrame_DoShow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18650 { (char *)"AuiMDIChildFrame_swigregister", AuiMDIChildFrame_swigregister
, METH_VARARGS
, NULL
},
18651 { (char *)"AuiMDIChildFrame_swiginit", AuiMDIChildFrame_swiginit
, METH_VARARGS
, NULL
},
18652 { (char *)"new_PreAuiMDIClientWindow", (PyCFunction
)_wrap_new_PreAuiMDIClientWindow
, METH_NOARGS
, NULL
},
18653 { (char *)"new_AuiMDIClientWindow", (PyCFunction
) _wrap_new_AuiMDIClientWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18654 { (char *)"AuiMDIClientWindow_CreateClient", (PyCFunction
) _wrap_AuiMDIClientWindow_CreateClient
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18655 { (char *)"AuiMDIClientWindow_SetSelection", (PyCFunction
) _wrap_AuiMDIClientWindow_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
18656 { (char *)"AuiMDIClientWindow_swigregister", AuiMDIClientWindow_swigregister
, METH_VARARGS
, NULL
},
18657 { (char *)"AuiMDIClientWindow_swiginit", AuiMDIClientWindow_swiginit
, METH_VARARGS
, NULL
},
18658 { (char *)"new_PyAuiDockArt", (PyCFunction
)_wrap_new_PyAuiDockArt
, METH_NOARGS
, NULL
},
18659 { (char *)"PyAuiDockArt_swigregister", PyAuiDockArt_swigregister
, METH_VARARGS
, NULL
},
18660 { (char *)"PyAuiDockArt_swiginit", PyAuiDockArt_swiginit
, METH_VARARGS
, NULL
},
18661 { (char *)"new_PyAuiTabArt", (PyCFunction
)_wrap_new_PyAuiTabArt
, METH_NOARGS
, NULL
},
18662 { (char *)"PyAuiTabArt_swigregister", PyAuiTabArt_swigregister
, METH_VARARGS
, NULL
},
18663 { (char *)"PyAuiTabArt_swiginit", PyAuiTabArt_swiginit
, METH_VARARGS
, NULL
},
18664 { NULL
, NULL
, 0, NULL
}
18668 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
18670 static void *_p_wxPyAuiTabArtTo_p_wxAuiDefaultTabArt(void *x
) {
18671 return (void *)((wxAuiDefaultTabArt
*) ((wxPyAuiTabArt
*) x
));
18673 static void *_p_wxGBSizerItemTo_p_wxSizerItem(void *x
) {
18674 return (void *)((wxSizerItem
*) ((wxGBSizerItem
*) x
));
18676 static void *_p_wxBoxSizerTo_p_wxSizer(void *x
) {
18677 return (void *)((wxSizer
*) ((wxBoxSizer
*) x
));
18679 static void *_p_wxStaticBoxSizerTo_p_wxSizer(void *x
) {
18680 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
18682 static void *_p_wxStdDialogButtonSizerTo_p_wxSizer(void *x
) {
18683 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
18685 static void *_p_wxGridBagSizerTo_p_wxSizer(void *x
) {
18686 return (void *)((wxSizer
*) (wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
18688 static void *_p_wxGridSizerTo_p_wxSizer(void *x
) {
18689 return (void *)((wxSizer
*) ((wxGridSizer
*) x
));
18691 static void *_p_wxFlexGridSizerTo_p_wxSizer(void *x
) {
18692 return (void *)((wxSizer
*) (wxGridSizer
*) ((wxFlexGridSizer
*) x
));
18694 static void *_p_wxPySizerTo_p_wxSizer(void *x
) {
18695 return (void *)((wxSizer
*) ((wxPySizer
*) x
));
18697 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
18698 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
18700 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
18701 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
18703 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
18704 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
18706 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
18707 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
18709 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
18710 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
18712 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
18713 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
18715 static void *_p_wxSplitterEventTo_p_wxEvent(void *x
) {
18716 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
18718 static void *_p_wxAuiManagerEventTo_p_wxEvent(void *x
) {
18719 return (void *)((wxEvent
*) ((wxAuiManagerEvent
*) x
));
18721 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
18722 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
18724 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
18725 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
18727 static void *_p_wxFindDialogEventTo_p_wxEvent(void *x
) {
18728 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
18730 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
18731 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
18733 static void *_p_wxMouseCaptureLostEventTo_p_wxEvent(void *x
) {
18734 return (void *)((wxEvent
*) ((wxMouseCaptureLostEvent
*) x
));
18736 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
18737 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
18739 static void *_p_wxCalculateLayoutEventTo_p_wxEvent(void *x
) {
18740 return (void *)((wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
18742 static void *_p_wxAuiNotebookEventTo_p_wxEvent(void *x
) {
18743 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
18745 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
18746 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
18748 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
18749 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
18751 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
18752 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
18754 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
18755 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
18757 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
18758 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
18760 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
18761 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
18763 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
18764 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
18766 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
18767 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
18769 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
18770 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
18772 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
18773 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
18775 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
18776 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
18778 static void *_p_wxClipboardTextEventTo_p_wxEvent(void *x
) {
18779 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
18781 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
18782 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
18784 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
18785 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
18787 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
18788 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
18790 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
18791 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
18793 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
18794 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
18796 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
18797 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
18799 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
18800 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
18802 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
18803 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
18805 static void *_p_wxSashEventTo_p_wxEvent(void *x
) {
18806 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxSashEvent
*) x
));
18808 static void *_p_wxQueryLayoutInfoEventTo_p_wxEvent(void *x
) {
18809 return (void *)((wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
18811 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
18812 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
18814 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
18815 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
18817 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
18818 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
18820 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
18821 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
18823 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
18824 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
18826 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
18827 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
18829 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
18830 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
18832 static void *_p_wxTaskBarIconEventTo_p_wxEvent(void *x
) {
18833 return (void *)((wxEvent
*) ((wxTaskBarIconEvent
*) x
));
18835 static void *_p_wxAuiTabCtrlTo_p_wxAuiTabContainer(void *x
) {
18836 return (void *)((wxAuiTabContainer
*) ((wxAuiTabCtrl
*) x
));
18838 static void *_p_wxControlWithItemsTo_p_wxControl(void *x
) {
18839 return (void *)((wxControl
*) ((wxControlWithItems
*) x
));
18841 static void *_p_wxAuiMDIClientWindowTo_p_wxControl(void *x
) {
18842 return (void *)((wxControl
*) (wxAuiNotebook
*) ((wxAuiMDIClientWindow
*) x
));
18844 static void *_p_wxAuiTabCtrlTo_p_wxControl(void *x
) {
18845 return (void *)((wxControl
*) ((wxAuiTabCtrl
*) x
));
18847 static void *_p_wxAuiNotebookTo_p_wxControl(void *x
) {
18848 return (void *)((wxControl
*) ((wxAuiNotebook
*) x
));
18850 static void *_p_wxAuiMDIClientWindowTo_p_wxAuiNotebook(void *x
) {
18851 return (void *)((wxAuiNotebook
*) ((wxAuiMDIClientWindow
*) x
));
18853 static void *_p_wxSplitterEventTo_p_wxNotifyEvent(void *x
) {
18854 return (void *)((wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
18856 static void *_p_wxAuiNotebookEventTo_p_wxNotifyEvent(void *x
) {
18857 return (void *)((wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
18859 static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x
) {
18860 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
18862 static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x
) {
18863 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
18865 static void *_p_wxEventBlockerTo_p_wxEvtHandler(void *x
) {
18866 return (void *)((wxEvtHandler
*) ((wxEventBlocker
*) x
));
18868 static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x
) {
18869 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
18871 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
18872 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
18874 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
18875 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
18877 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
18878 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
18880 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
18881 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
18883 static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x
) {
18884 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
18886 static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x
) {
18887 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
18889 static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x
) {
18890 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
18892 static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x
) {
18893 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
18895 static void *_p_wxPasswordEntryDialogTo_p_wxEvtHandler(void *x
) {
18896 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
18898 static void *_p_wxNumberEntryDialogTo_p_wxEvtHandler(void *x
) {
18899 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
18901 static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x
) {
18902 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
18904 static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x
) {
18905 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
18907 static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x
) {
18908 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
18910 static void *_p_wxPanelTo_p_wxEvtHandler(void *x
) {
18911 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPanel
*) x
));
18913 static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x
) {
18914 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxStatusBar
*) x
));
18916 static void *_p_wxPyHVScrolledWindowTo_p_wxEvtHandler(void *x
) {
18917 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyHVScrolledWindow
*) x
));
18919 static void *_p_wxPyHScrolledWindowTo_p_wxEvtHandler(void *x
) {
18920 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyHScrolledWindow
*) x
));
18922 static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x
) {
18923 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
18925 static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x
) {
18926 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxTipWindow
*) x
));
18928 static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x
) {
18929 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
18931 static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x
) {
18932 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPopupWindow
*) x
));
18934 static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x
) {
18935 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
18937 static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x
) {
18938 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSashWindow
*) x
));
18940 static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x
) {
18941 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplitterWindow
*) x
));
18943 static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x
) {
18944 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplashScreenWindow
*) x
));
18946 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
18947 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
18949 static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x
) {
18950 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
18952 static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x
) {
18953 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxTopLevelWindow
*) x
));
18955 static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x
) {
18956 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMDIClientWindow
*) x
));
18958 static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x
) {
18959 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
18961 static void *_p_wxAuiMDIClientWindowTo_p_wxEvtHandler(void *x
) {
18962 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*)(wxAuiNotebook
*) ((wxAuiMDIClientWindow
*) x
));
18964 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
18965 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
18967 static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x
) {
18968 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
18970 static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x
) {
18971 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
18973 static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x
) {
18974 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
18976 static void *_p_wxAuiMDIChildFrameTo_p_wxEvtHandler(void *x
) {
18977 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxAuiMDIChildFrame
*) x
));
18979 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
18980 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
18982 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
18983 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
18985 static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x
) {
18986 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPyWindow
*) x
));
18988 static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x
) {
18989 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
18991 static void *_p_wxSimpleHtmlListBoxTo_p_wxEvtHandler(void *x
) {
18992 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*)(wxPyHtmlListBox
*) ((wxSimpleHtmlListBox
*) x
));
18994 static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x
) {
18995 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
18997 static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x
) {
18998 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
19000 static void *_p_wxAuiNotebookTo_p_wxEvtHandler(void *x
) {
19001 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxAuiNotebook
*) x
));
19003 static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x
) {
19004 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
19006 static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x
) {
19007 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
19009 static void *_p_wxPyTaskBarIconTo_p_wxEvtHandler(void *x
) {
19010 return (void *)((wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
19012 static void *_p_wxAuiTabCtrlTo_p_wxEvtHandler(void *x
) {
19013 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxAuiTabCtrl
*) x
));
19015 static void *_p_wxFrameTo_p_wxEvtHandler(void *x
) {
19016 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
19018 static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x
) {
19019 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
19021 static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x
) {
19022 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
19024 static void *_p_wxDialogTo_p_wxEvtHandler(void *x
) {
19025 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
19027 static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x
) {
19028 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
19030 static void *_p_wxAuiFloatingFrameTo_p_wxEvtHandler(void *x
) {
19031 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
19033 static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x
) {
19034 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
19036 static void *_p_wxAuiMDIParentFrameTo_p_wxEvtHandler(void *x
) {
19037 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxAuiMDIParentFrame
*) x
));
19039 static void *_p_wxAuiManagerTo_p_wxEvtHandler(void *x
) {
19040 return (void *)((wxEvtHandler
*) ((wxAuiManager
*) x
));
19042 static void *_p_wxAuiFloatingFrameTo_p_wxMiniFrame(void *x
) {
19043 return (void *)((wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
19045 static void *_p_wxMDIChildFrameTo_p_wxFrame(void *x
) {
19046 return (void *)((wxFrame
*) ((wxMDIChildFrame
*) x
));
19048 static void *_p_wxProgressDialogTo_p_wxFrame(void *x
) {
19049 return (void *)((wxFrame
*) ((wxProgressDialog
*) x
));
19051 static void *_p_wxTipWindowTo_p_wxFrame(void *x
) {
19052 return (void *)((wxFrame
*) ((wxTipWindow
*) x
));
19054 static void *_p_wxPreviewFrameTo_p_wxFrame(void *x
) {
19055 return (void *)((wxFrame
*) ((wxPreviewFrame
*) x
));
19057 static void *_p_wxPyPreviewFrameTo_p_wxFrame(void *x
) {
19058 return (void *)((wxFrame
*) (wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
19060 static void *_p_wxMiniFrameTo_p_wxFrame(void *x
) {
19061 return (void *)((wxFrame
*) ((wxMiniFrame
*) x
));
19063 static void *_p_wxSplashScreenTo_p_wxFrame(void *x
) {
19064 return (void *)((wxFrame
*) ((wxSplashScreen
*) x
));
19066 static void *_p_wxMDIParentFrameTo_p_wxFrame(void *x
) {
19067 return (void *)((wxFrame
*) ((wxMDIParentFrame
*) x
));
19069 static void *_p_wxAuiMDIParentFrameTo_p_wxFrame(void *x
) {
19070 return (void *)((wxFrame
*) ((wxAuiMDIParentFrame
*) x
));
19072 static void *_p_wxAuiFloatingFrameTo_p_wxFrame(void *x
) {
19073 return (void *)((wxFrame
*) (wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
19075 static void *_p_wxAuiDefaultTabArtTo_p_wxAuiTabArt(void *x
) {
19076 return (void *)((wxAuiTabArt
*) ((wxAuiDefaultTabArt
*) x
));
19078 static void *_p_wxAuiSimpleTabArtTo_p_wxAuiTabArt(void *x
) {
19079 return (void *)((wxAuiTabArt
*) ((wxAuiSimpleTabArt
*) x
));
19081 static void *_p_wxPyAuiTabArtTo_p_wxAuiTabArt(void *x
) {
19082 return (void *)((wxAuiTabArt
*) (wxAuiDefaultTabArt
*) ((wxPyAuiTabArt
*) x
));
19084 static void *_p_wxAuiDefaultDockArtTo_p_wxAuiDockArt(void *x
) {
19085 return (void *)((wxAuiDockArt
*) ((wxAuiDefaultDockArt
*) x
));
19087 static void *_p_wxPyAuiDockArtTo_p_wxAuiDockArt(void *x
) {
19088 return (void *)((wxAuiDockArt
*) (wxAuiDefaultDockArt
*) ((wxPyAuiDockArt
*) x
));
19090 static void *_p_wxPyAuiDockArtTo_p_wxAuiDefaultDockArt(void *x
) {
19091 return (void *)((wxAuiDefaultDockArt
*) ((wxPyAuiDockArt
*) x
));
19093 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
19094 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
19096 static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x
) {
19097 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
19099 static void *_p_wxEventBlockerTo_p_wxObject(void *x
) {
19100 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxEventBlocker
*) x
));
19102 static void *_p_wxPreviewFrameTo_p_wxObject(void *x
) {
19103 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
19105 static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x
) {
19106 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
19108 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
19109 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
19111 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
19112 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
19114 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
19115 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
19117 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
19118 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
19120 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
19121 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
19123 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
19124 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
19126 static void *_p_wxSizerTo_p_wxObject(void *x
) {
19127 return (void *)((wxObject
*) ((wxSizer
*) x
));
19129 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
19130 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
19132 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
19133 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
19135 static void *_p_wxPyPanelTo_p_wxObject(void *x
) {
19136 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
19138 static void *_p_wxEventTo_p_wxObject(void *x
) {
19139 return (void *)((wxObject
*) ((wxEvent
*) x
));
19141 static void *_p_wxFontDataTo_p_wxObject(void *x
) {
19142 return (void *)((wxObject
*) ((wxFontData
*) x
));
19144 static void *_p_wxPrintDataTo_p_wxObject(void *x
) {
19145 return (void *)((wxObject
*) ((wxPrintData
*) x
));
19147 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
19148 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
19150 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
19151 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
19153 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
19154 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
19156 static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x
) {
19157 return (void *)((wxObject
*) ((wxLayoutAlgorithm
*) x
));
19159 static void *_p_wxPyTaskBarIconTo_p_wxObject(void *x
) {
19160 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
19162 static void *_p_wxFindDialogEventTo_p_wxObject(void *x
) {
19163 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
19165 static void *_p_wxAuiTabCtrlTo_p_wxObject(void *x
) {
19166 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxAuiTabCtrl
*) x
));
19168 static void *_p_wxClipboardTextEventTo_p_wxObject(void *x
) {
19169 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
19171 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
19172 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
19174 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
19175 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
19177 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
19178 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
19180 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
19181 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
19183 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
19184 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
19186 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
19187 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
19189 static void *_p_wxPreviewCanvasTo_p_wxObject(void *x
) {
19190 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
19192 static void *_p_wxControlTo_p_wxObject(void *x
) {
19193 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
19195 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
19196 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
19198 static void *_p_wxSplitterEventTo_p_wxObject(void *x
) {
19199 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
19201 static void *_p_wxAuiManagerEventTo_p_wxObject(void *x
) {
19202 return (void *)((wxObject
*) (wxEvent
*) ((wxAuiManagerEvent
*) x
));
19204 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
19205 return (void *)((wxObject
*) ((wxFSFile
*) x
));
19207 static void *_p_wxFindReplaceDataTo_p_wxObject(void *x
) {
19208 return (void *)((wxObject
*) ((wxFindReplaceData
*) x
));
19210 static void *_p_wxAuiFloatingFrameTo_p_wxObject(void *x
) {
19211 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
19213 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
19214 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
19216 static void *_p_wxMDIChildFrameTo_p_wxObject(void *x
) {
19217 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
19219 static void *_p_wxAuiNotebookTo_p_wxObject(void *x
) {
19220 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxAuiNotebook
*) x
));
19222 static void *_p_wxAuiMDIChildFrameTo_p_wxObject(void *x
) {
19223 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxAuiMDIChildFrame
*) x
));
19225 static void *_p_wxColourDataTo_p_wxObject(void *x
) {
19226 return (void *)((wxObject
*) ((wxColourData
*) x
));
19228 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
19229 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
19231 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
19232 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
19234 static void *_p_wxPyWindowTo_p_wxObject(void *x
) {
19235 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPyWindow
*) x
));
19237 static void *_p_wxSplashScreenTo_p_wxObject(void *x
) {
19238 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
19240 static void *_p_wxFileDialogTo_p_wxObject(void *x
) {
19241 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
19243 static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x
) {
19244 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
19246 static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x
) {
19247 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
19249 static void *_p_wxTextEntryDialogTo_p_wxObject(void *x
) {
19250 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
19252 static void *_p_wxPasswordEntryDialogTo_p_wxObject(void *x
) {
19253 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
19255 static void *_p_wxNumberEntryDialogTo_p_wxObject(void *x
) {
19256 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
19258 static void *_p_wxMessageDialogTo_p_wxObject(void *x
) {
19259 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
19261 static void *_p_wxProgressDialogTo_p_wxObject(void *x
) {
19262 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
19264 static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x
) {
19265 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
19267 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
19268 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
19270 static void *_p_wxPrinterTo_p_wxObject(void *x
) {
19271 return (void *)((wxObject
*) ((wxPrinter
*) x
));
19273 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
19274 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
19276 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
19277 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
19279 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
19280 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
19282 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
19283 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
19285 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
19286 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
19288 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
19289 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
19291 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
19292 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
19294 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
19295 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
19297 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
19298 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
19300 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
19301 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
19303 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
19304 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
19306 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
19307 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
19309 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
19310 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
19312 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
19313 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
19315 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
19316 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
19318 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
19319 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
19321 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
19322 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
19324 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
19325 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
19327 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
19328 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
19330 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
19331 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
19333 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
19334 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
19336 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
19337 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
19339 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
19340 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
19342 static void *_p_wxTGAHandlerTo_p_wxObject(void *x
) {
19343 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTGAHandler
*) x
));
19345 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
19346 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
19348 static void *_p_wxMouseCaptureLostEventTo_p_wxObject(void *x
) {
19349 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureLostEvent
*) x
));
19351 static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x
) {
19352 return (void *)((wxObject
*) (wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
19354 static void *_p_wxPyVListBoxTo_p_wxObject(void *x
) {
19355 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
19357 static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x
) {
19358 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
19360 static void *_p_wxSimpleHtmlListBoxTo_p_wxObject(void *x
) {
19361 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*)(wxPyHtmlListBox
*) ((wxSimpleHtmlListBox
*) x
));
19363 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
19364 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
19366 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
19367 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
19369 static void *_p_wxMiniFrameTo_p_wxObject(void *x
) {
19370 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
19372 static void *_p_wxImageTo_p_wxObject(void *x
) {
19373 return (void *)((wxObject
*) ((wxImage
*) x
));
19375 static void *_p_wxFrameTo_p_wxObject(void *x
) {
19376 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
19378 static void *_p_wxPyPrintoutTo_p_wxObject(void *x
) {
19379 return (void *)((wxObject
*) ((wxPyPrintout
*) x
));
19381 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
19382 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
19384 static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x
) {
19385 return (void *)((wxObject
*) (wxEvent
*) ((wxTaskBarIconEvent
*) x
));
19387 static void *_p_wxStatusBarTo_p_wxObject(void *x
) {
19388 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxStatusBar
*) x
));
19390 static void *_p_wxAuiManagerTo_p_wxObject(void *x
) {
19391 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxAuiManager
*) x
));
19393 static void *_p_wxMDIParentFrameTo_p_wxObject(void *x
) {
19394 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
19396 static void *_p_wxAuiNotebookEventTo_p_wxObject(void *x
) {
19397 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
19399 static void *_p_wxAuiMDIParentFrameTo_p_wxObject(void *x
) {
19400 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxAuiMDIParentFrame
*) x
));
19402 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
19403 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
19405 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
19406 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
19408 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
19409 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
19411 static void *_p_wxWindowTo_p_wxObject(void *x
) {
19412 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
19414 static void *_p_wxMenuTo_p_wxObject(void *x
) {
19415 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
19417 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
19418 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
19420 static void *_p_wxScrolledWindowTo_p_wxObject(void *x
) {
19421 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
19423 static void *_p_wxTopLevelWindowTo_p_wxObject(void *x
) {
19424 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxTopLevelWindow
*) x
));
19426 static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x
) {
19427 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplashScreenWindow
*) x
));
19429 static void *_p_wxSplitterWindowTo_p_wxObject(void *x
) {
19430 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplitterWindow
*) x
));
19432 static void *_p_wxSashWindowTo_p_wxObject(void *x
) {
19433 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSashWindow
*) x
));
19435 static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x
) {
19436 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
19438 static void *_p_wxPopupWindowTo_p_wxObject(void *x
) {
19439 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPopupWindow
*) x
));
19441 static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x
) {
19442 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
19444 static void *_p_wxTipWindowTo_p_wxObject(void *x
) {
19445 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxTipWindow
*) x
));
19447 static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x
) {
19448 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
19450 static void *_p_wxPyHScrolledWindowTo_p_wxObject(void *x
) {
19451 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyHScrolledWindow
*) x
));
19453 static void *_p_wxPyHVScrolledWindowTo_p_wxObject(void *x
) {
19454 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyHVScrolledWindow
*) x
));
19456 static void *_p_wxMDIClientWindowTo_p_wxObject(void *x
) {
19457 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMDIClientWindow
*) x
));
19459 static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x
) {
19460 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
19462 static void *_p_wxAuiMDIClientWindowTo_p_wxObject(void *x
) {
19463 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*)(wxAuiNotebook
*) ((wxAuiMDIClientWindow
*) x
));
19465 static void *_p_wxSashEventTo_p_wxObject(void *x
) {
19466 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxSashEvent
*) x
));
19468 static void *_p_wxPrintPreviewTo_p_wxObject(void *x
) {
19469 return (void *)((wxObject
*) ((wxPrintPreview
*) x
));
19471 static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x
) {
19472 return (void *)((wxObject
*) (wxPrintPreview
*) ((wxPyPrintPreview
*) x
));
19474 static void *_p_wxPanelTo_p_wxObject(void *x
) {
19475 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPanel
*) x
));
19477 static void *_p_wxDialogTo_p_wxObject(void *x
) {
19478 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
19480 static void *_p_wxColourDialogTo_p_wxObject(void *x
) {
19481 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
19483 static void *_p_wxDirDialogTo_p_wxObject(void *x
) {
19484 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
19486 static void *_p_wxFontDialogTo_p_wxObject(void *x
) {
19487 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
19489 static void *_p_wxPageSetupDialogTo_p_wxObject(void *x
) {
19490 return (void *)((wxObject
*) ((wxPageSetupDialog
*) x
));
19492 static void *_p_wxPrintDialogTo_p_wxObject(void *x
) {
19493 return (void *)((wxObject
*) ((wxPrintDialog
*) x
));
19495 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
19496 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
19498 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
19499 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
19501 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
19502 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
19504 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
19505 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
19507 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
19508 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
19510 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
19511 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
19513 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
19514 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
19516 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
19517 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
19519 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
19520 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
19522 static void *_p_wxPreviewControlBarTo_p_wxObject(void *x
) {
19523 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
19525 static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x
) {
19526 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
19528 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
19529 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
19531 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
19532 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
19534 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
19535 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
19537 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
19538 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
19540 static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x
) {
19541 return (void *)((wxObject
*) ((wxPageSetupDialogData
*) x
));
19543 static void *_p_wxPrintDialogDataTo_p_wxObject(void *x
) {
19544 return (void *)((wxObject
*) ((wxPrintDialogData
*) x
));
19546 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
19547 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
19549 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
19550 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
19552 static void *_p_p_wxSplashScreenTo_p_p_wxWindow(void *x
) {
19553 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
**) x
));
19555 static void *_p_p_wxMiniFrameTo_p_p_wxWindow(void *x
) {
19556 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
**) x
));
19558 static void *_p_p_wxPyPanelTo_p_p_wxWindow(void *x
) {
19559 return (void *)((wxWindow
**) (wxPanel
*) ((wxPyPanel
**) x
));
19561 static void *_p_p_wxMenuBarTo_p_p_wxWindow(void *x
) {
19562 return (void *)((wxWindow
**) ((wxMenuBar
**) x
));
19564 static void *_p_p_wxMessageDialogTo_p_p_wxWindow(void *x
) {
19565 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
**) x
));
19567 static void *_p_p_wxNumberEntryDialogTo_p_p_wxWindow(void *x
) {
19568 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
**) x
));
19570 static void *_p_p_wxPasswordEntryDialogTo_p_p_wxWindow(void *x
) {
19571 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
**) x
));
19573 static void *_p_p_wxTextEntryDialogTo_p_p_wxWindow(void *x
) {
19574 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
**) x
));
19576 static void *_p_p_wxSingleChoiceDialogTo_p_p_wxWindow(void *x
) {
19577 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
**) x
));
19579 static void *_p_p_wxMultiChoiceDialogTo_p_p_wxWindow(void *x
) {
19580 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
**) x
));
19582 static void *_p_p_wxFileDialogTo_p_p_wxWindow(void *x
) {
19583 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
**) x
));
19585 static void *_p_p_wxProgressDialogTo_p_p_wxWindow(void *x
) {
19586 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
**) x
));
19588 static void *_p_p_wxFindReplaceDialogTo_p_p_wxWindow(void *x
) {
19589 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
**) x
));
19591 static void *_p_p_wxPanelTo_p_p_wxWindow(void *x
) {
19592 return (void *)((wxWindow
**) ((wxPanel
**) x
));
19594 static void *_p_p_wxStatusBarTo_p_p_wxWindow(void *x
) {
19595 return (void *)((wxWindow
**) ((wxStatusBar
**) x
));
19597 static void *_p_p_wxPyHVScrolledWindowTo_p_p_wxWindow(void *x
) {
19598 return (void *)((wxWindow
**) (wxPanel
*) ((wxPyHVScrolledWindow
**) x
));
19600 static void *_p_p_wxPyHScrolledWindowTo_p_p_wxWindow(void *x
) {
19601 return (void *)((wxWindow
**) (wxPanel
*) ((wxPyHScrolledWindow
**) x
));
19603 static void *_p_p_wxPyVScrolledWindowTo_p_p_wxWindow(void *x
) {
19604 return (void *)((wxWindow
**) (wxPanel
*) ((wxPyVScrolledWindow
**) x
));
19606 static void *_p_p_wxTipWindowTo_p_p_wxWindow(void *x
) {
19607 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxTipWindow
**) x
));
19609 static void *_p_p_wxPyPopupTransientWindowTo_p_p_wxWindow(void *x
) {
19610 return (void *)((wxWindow
**) (wxPopupWindow
*) ((wxPyPopupTransientWindow
**) x
));
19612 static void *_p_p_wxPopupWindowTo_p_p_wxWindow(void *x
) {
19613 return (void *)((wxWindow
**) ((wxPopupWindow
**) x
));
19615 static void *_p_p_wxSashLayoutWindowTo_p_p_wxWindow(void *x
) {
19616 return (void *)((wxWindow
**) (wxSashWindow
*) ((wxSashLayoutWindow
**) x
));
19618 static void *_p_p_wxScrolledWindowTo_p_p_wxWindow(void *x
) {
19619 return (void *)((wxWindow
**) (wxPanel
*) ((wxScrolledWindow
**) x
));
19621 static void *_p_p_wxTopLevelWindowTo_p_p_wxWindow(void *x
) {
19622 return (void *)((wxWindow
**) ((wxTopLevelWindow
**) x
));
19624 static void *_p_p_wxSplashScreenWindowTo_p_p_wxWindow(void *x
) {
19625 return (void *)((wxWindow
**) ((wxSplashScreenWindow
**) x
));
19627 static void *_p_p_wxSplitterWindowTo_p_p_wxWindow(void *x
) {
19628 return (void *)((wxWindow
**) ((wxSplitterWindow
**) x
));
19630 static void *_p_p_wxSashWindowTo_p_p_wxWindow(void *x
) {
19631 return (void *)((wxWindow
**) ((wxSashWindow
**) x
));
19633 static void *_p_p_wxMDIClientWindowTo_p_p_wxWindow(void *x
) {
19634 return (void *)((wxWindow
**) ((wxMDIClientWindow
**) x
));
19636 static void *_p_p_wxPyScrolledWindowTo_p_p_wxWindow(void *x
) {
19637 return (void *)((wxWindow
**) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
**) x
));
19639 static void *_p_p_wxAuiMDIClientWindowTo_p_p_wxWindow(void *x
) {
19640 return (void *)((wxWindow
**) (wxControl
*)(wxAuiNotebook
*) ((wxAuiMDIClientWindow
**) x
));
19642 static void *_p_p_wxControlTo_p_p_wxWindow(void *x
) {
19643 return (void *)((wxWindow
**) ((wxControl
**) x
));
19645 static void *_p_p_wxPreviewFrameTo_p_p_wxWindow(void *x
) {
19646 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
**) x
));
19648 static void *_p_p_wxPyPreviewFrameTo_p_p_wxWindow(void *x
) {
19649 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
**) x
));
19651 static void *_p_p_wxMDIChildFrameTo_p_p_wxWindow(void *x
) {
19652 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
**) x
));
19654 static void *_p_p_wxAuiMDIChildFrameTo_p_p_wxWindow(void *x
) {
19655 return (void *)((wxWindow
**) (wxPanel
*) ((wxAuiMDIChildFrame
**) x
));
19657 static void *_p_p_wxControlWithItemsTo_p_p_wxWindow(void *x
) {
19658 return (void *)((wxWindow
**) (wxControl
*) ((wxControlWithItems
**) x
));
19660 static void *_p_p_wxPyWindowTo_p_p_wxWindow(void *x
) {
19661 return (void *)((wxWindow
**) ((wxPyWindow
**) x
));
19663 static void *_p_p_wxPreviewCanvasTo_p_p_wxWindow(void *x
) {
19664 return (void *)((wxWindow
**) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
**) x
));
19666 static void *_p_p_wxSimpleHtmlListBoxTo_p_p_wxWindow(void *x
) {
19667 return (void *)((wxWindow
**) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*)(wxPyHtmlListBox
*) ((wxSimpleHtmlListBox
**) x
));
19669 static void *_p_p_wxPyHtmlListBoxTo_p_p_wxWindow(void *x
) {
19670 return (void *)((wxWindow
**) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
**) x
));
19672 static void *_p_p_wxPyVListBoxTo_p_p_wxWindow(void *x
) {
19673 return (void *)((wxWindow
**) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
**) x
));
19675 static void *_p_p_wxAuiNotebookTo_p_p_wxWindow(void *x
) {
19676 return (void *)((wxWindow
**) (wxControl
*) ((wxAuiNotebook
**) x
));
19678 static void *_p_p_wxPreviewControlBarTo_p_p_wxWindow(void *x
) {
19679 return (void *)((wxWindow
**) (wxPanel
*) ((wxPreviewControlBar
**) x
));
19681 static void *_p_p_wxPyPreviewControlBarTo_p_p_wxWindow(void *x
) {
19682 return (void *)((wxWindow
**) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
**) x
));
19684 static void *_p_p_wxAuiTabCtrlTo_p_p_wxWindow(void *x
) {
19685 return (void *)((wxWindow
**) (wxControl
*) ((wxAuiTabCtrl
**) x
));
19687 static void *_p_p_wxFrameTo_p_p_wxWindow(void *x
) {
19688 return (void *)((wxWindow
**) (wxTopLevelWindow
*) ((wxFrame
**) x
));
19690 static void *_p_p_wxFontDialogTo_p_p_wxWindow(void *x
) {
19691 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
**) x
));
19693 static void *_p_p_wxDirDialogTo_p_p_wxWindow(void *x
) {
19694 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
**) x
));
19696 static void *_p_p_wxColourDialogTo_p_p_wxWindow(void *x
) {
19697 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
**) x
));
19699 static void *_p_p_wxDialogTo_p_p_wxWindow(void *x
) {
19700 return (void *)((wxWindow
**) (wxTopLevelWindow
*) ((wxDialog
**) x
));
19702 static void *_p_p_wxAuiFloatingFrameTo_p_p_wxWindow(void *x
) {
19703 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
**) x
));
19705 static void *_p_p_wxMDIParentFrameTo_p_p_wxWindow(void *x
) {
19706 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
**) x
));
19708 static void *_p_p_wxAuiMDIParentFrameTo_p_p_wxWindow(void *x
) {
19709 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxAuiMDIParentFrame
**) x
));
19711 static void *_p_wxSplashScreenTo_p_wxWindow(void *x
) {
19712 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
19714 static void *_p_wxMiniFrameTo_p_wxWindow(void *x
) {
19715 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
19717 static void *_p_wxPyPanelTo_p_wxWindow(void *x
) {
19718 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyPanel
*) x
));
19720 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
19721 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
19723 static void *_p_wxMessageDialogTo_p_wxWindow(void *x
) {
19724 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
19726 static void *_p_wxNumberEntryDialogTo_p_wxWindow(void *x
) {
19727 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
19729 static void *_p_wxPasswordEntryDialogTo_p_wxWindow(void *x
) {
19730 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
19732 static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x
) {
19733 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
19735 static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x
) {
19736 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
19738 static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x
) {
19739 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
19741 static void *_p_wxFileDialogTo_p_wxWindow(void *x
) {
19742 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
19744 static void *_p_wxProgressDialogTo_p_wxWindow(void *x
) {
19745 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
19747 static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x
) {
19748 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
19750 static void *_p_wxPanelTo_p_wxWindow(void *x
) {
19751 return (void *)((wxWindow
*) ((wxPanel
*) x
));
19753 static void *_p_wxStatusBarTo_p_wxWindow(void *x
) {
19754 return (void *)((wxWindow
*) ((wxStatusBar
*) x
));
19756 static void *_p_wxPyHVScrolledWindowTo_p_wxWindow(void *x
) {
19757 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyHVScrolledWindow
*) x
));
19759 static void *_p_wxPyHScrolledWindowTo_p_wxWindow(void *x
) {
19760 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyHScrolledWindow
*) x
));
19762 static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x
) {
19763 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyVScrolledWindow
*) x
));
19765 static void *_p_wxTipWindowTo_p_wxWindow(void *x
) {
19766 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxTipWindow
*) x
));
19768 static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x
) {
19769 return (void *)((wxWindow
*) (wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
19771 static void *_p_wxPopupWindowTo_p_wxWindow(void *x
) {
19772 return (void *)((wxWindow
*) ((wxPopupWindow
*) x
));
19774 static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x
) {
19775 return (void *)((wxWindow
*) (wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
19777 static void *_p_wxScrolledWindowTo_p_wxWindow(void *x
) {
19778 return (void *)((wxWindow
*) (wxPanel
*) ((wxScrolledWindow
*) x
));
19780 static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x
) {
19781 return (void *)((wxWindow
*) ((wxTopLevelWindow
*) x
));
19783 static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x
) {
19784 return (void *)((wxWindow
*) ((wxSplashScreenWindow
*) x
));
19786 static void *_p_wxSplitterWindowTo_p_wxWindow(void *x
) {
19787 return (void *)((wxWindow
*) ((wxSplitterWindow
*) x
));
19789 static void *_p_wxSashWindowTo_p_wxWindow(void *x
) {
19790 return (void *)((wxWindow
*) ((wxSashWindow
*) x
));
19792 static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x
) {
19793 return (void *)((wxWindow
*) ((wxMDIClientWindow
*) x
));
19795 static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x
) {
19796 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
19798 static void *_p_wxAuiMDIClientWindowTo_p_wxWindow(void *x
) {
19799 return (void *)((wxWindow
*) (wxControl
*)(wxAuiNotebook
*) ((wxAuiMDIClientWindow
*) x
));
19801 static void *_p_wxControlTo_p_wxWindow(void *x
) {
19802 return (void *)((wxWindow
*) ((wxControl
*) x
));
19804 static void *_p_wxPreviewFrameTo_p_wxWindow(void *x
) {
19805 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
19807 static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x
) {
19808 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
19810 static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x
) {
19811 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
19813 static void *_p_wxAuiMDIChildFrameTo_p_wxWindow(void *x
) {
19814 return (void *)((wxWindow
*) (wxPanel
*) ((wxAuiMDIChildFrame
*) x
));
19816 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
19817 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
19819 static void *_p_wxPyWindowTo_p_wxWindow(void *x
) {
19820 return (void *)((wxWindow
*) ((wxPyWindow
*) x
));
19822 static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x
) {
19823 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
19825 static void *_p_wxSimpleHtmlListBoxTo_p_wxWindow(void *x
) {
19826 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*)(wxPyHtmlListBox
*) ((wxSimpleHtmlListBox
*) x
));
19828 static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x
) {
19829 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
19831 static void *_p_wxPyVListBoxTo_p_wxWindow(void *x
) {
19832 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
19834 static void *_p_wxAuiNotebookTo_p_wxWindow(void *x
) {
19835 return (void *)((wxWindow
*) (wxControl
*) ((wxAuiNotebook
*) x
));
19837 static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x
) {
19838 return (void *)((wxWindow
*) (wxPanel
*) ((wxPreviewControlBar
*) x
));
19840 static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x
) {
19841 return (void *)((wxWindow
*) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
19843 static void *_p_wxAuiTabCtrlTo_p_wxWindow(void *x
) {
19844 return (void *)((wxWindow
*) (wxControl
*) ((wxAuiTabCtrl
*) x
));
19846 static void *_p_wxFrameTo_p_wxWindow(void *x
) {
19847 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxFrame
*) x
));
19849 static void *_p_wxFontDialogTo_p_wxWindow(void *x
) {
19850 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
19852 static void *_p_wxDirDialogTo_p_wxWindow(void *x
) {
19853 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
19855 static void *_p_wxColourDialogTo_p_wxWindow(void *x
) {
19856 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
19858 static void *_p_wxDialogTo_p_wxWindow(void *x
) {
19859 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxDialog
*) x
));
19861 static void *_p_wxAuiFloatingFrameTo_p_wxWindow(void *x
) {
19862 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
19864 static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x
) {
19865 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
19867 static void *_p_wxAuiMDIParentFrameTo_p_wxWindow(void *x
) {
19868 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxAuiMDIParentFrame
*) x
));
19870 static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x
) {
19871 return (void *)((wxTopLevelWindow
*) ((wxFrame
*) x
));
19873 static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x
) {
19874 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMiniFrame
*) x
));
19876 static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x
) {
19877 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFontDialog
*) x
));
19879 static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x
) {
19880 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxDirDialog
*) x
));
19882 static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x
) {
19883 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxColourDialog
*) x
));
19885 static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x
) {
19886 return (void *)((wxTopLevelWindow
*) ((wxDialog
*) x
));
19888 static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x
) {
19889 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxSplashScreen
*) x
));
19891 static void *_p_wxTipWindowTo_p_wxTopLevelWindow(void *x
) {
19892 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxTipWindow
*) x
));
19894 static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x
) {
19895 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIParentFrame
*) x
));
19897 static void *_p_wxAuiMDIParentFrameTo_p_wxTopLevelWindow(void *x
) {
19898 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxAuiMDIParentFrame
*) x
));
19900 static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x
) {
19901 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIChildFrame
*) x
));
19903 static void *_p_wxAuiFloatingFrameTo_p_wxTopLevelWindow(void *x
) {
19904 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
19906 static void *_p_wxNumberEntryDialogTo_p_wxTopLevelWindow(void *x
) {
19907 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxNumberEntryDialog
*) x
));
19909 static void *_p_wxPasswordEntryDialogTo_p_wxTopLevelWindow(void *x
) {
19910 return (void *)((wxTopLevelWindow
*) (wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
19912 static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x
) {
19913 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxTextEntryDialog
*) x
));
19915 static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
19916 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxSingleChoiceDialog
*) x
));
19918 static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
19919 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMultiChoiceDialog
*) x
));
19921 static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x
) {
19922 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFileDialog
*) x
));
19924 static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x
) {
19925 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMessageDialog
*) x
));
19927 static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x
) {
19928 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxProgressDialog
*) x
));
19930 static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x
) {
19931 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFindReplaceDialog
*) x
));
19933 static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
19934 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxPreviewFrame
*) x
));
19936 static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
19937 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
19939 static void *_p_wxAuiMDIChildFrameTo_p_wxPanel(void *x
) {
19940 return (void *)((wxPanel
*) ((wxAuiMDIChildFrame
*) x
));
19942 static void *_p_wxScrolledWindowTo_p_wxPanel(void *x
) {
19943 return (void *)((wxPanel
*) ((wxScrolledWindow
*) x
));
19945 static void *_p_wxPyVScrolledWindowTo_p_wxPanel(void *x
) {
19946 return (void *)((wxPanel
*) ((wxPyVScrolledWindow
*) x
));
19948 static void *_p_wxPyHScrolledWindowTo_p_wxPanel(void *x
) {
19949 return (void *)((wxPanel
*) ((wxPyHScrolledWindow
*) x
));
19951 static void *_p_wxPyHVScrolledWindowTo_p_wxPanel(void *x
) {
19952 return (void *)((wxPanel
*) ((wxPyHVScrolledWindow
*) x
));
19954 static void *_p_wxPyScrolledWindowTo_p_wxPanel(void *x
) {
19955 return (void *)((wxPanel
*) (wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
19957 static void *_p_wxPyVListBoxTo_p_wxPanel(void *x
) {
19958 return (void *)((wxPanel
*) (wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
19960 static void *_p_wxPyHtmlListBoxTo_p_wxPanel(void *x
) {
19961 return (void *)((wxPanel
*) (wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
19963 static void *_p_wxSimpleHtmlListBoxTo_p_wxPanel(void *x
) {
19964 return (void *)((wxPanel
*) (wxPyVScrolledWindow
*)(wxPyVListBox
*)(wxPyHtmlListBox
*) ((wxSimpleHtmlListBox
*) x
));
19966 static void *_p_wxPyPanelTo_p_wxPanel(void *x
) {
19967 return (void *)((wxPanel
*) ((wxPyPanel
*) x
));
19969 static void *_p_wxPreviewCanvasTo_p_wxPanel(void *x
) {
19970 return (void *)((wxPanel
*) (wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
19972 static void *_p_wxPreviewControlBarTo_p_wxPanel(void *x
) {
19973 return (void *)((wxPanel
*) ((wxPreviewControlBar
*) x
));
19975 static void *_p_wxPyPreviewControlBarTo_p_wxPanel(void *x
) {
19976 return (void *)((wxPanel
*) (wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
19978 static void *_p_wxSashEventTo_p_wxCommandEvent(void *x
) {
19979 return (void *)((wxCommandEvent
*) ((wxSashEvent
*) x
));
19981 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) {
19982 return (void *)((wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
19984 static void *_p_wxSplitterEventTo_p_wxCommandEvent(void *x
) {
19985 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
19987 static void *_p_wxClipboardTextEventTo_p_wxCommandEvent(void *x
) {
19988 return (void *)((wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
19990 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) {
19991 return (void *)((wxCommandEvent
*) ((wxScrollEvent
*) x
));
19993 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) {
19994 return (void *)((wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
19996 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) {
19997 return (void *)((wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
19999 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) {
20000 return (void *)((wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
20002 static void *_p_wxAuiNotebookEventTo_p_wxCommandEvent(void *x
) {
20003 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
20005 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) {
20006 return (void *)((wxCommandEvent
*) ((wxDateEvent
*) x
));
20008 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) {
20009 return (void *)((wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
20011 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) {
20012 return (void *)((wxCommandEvent
*) ((wxNotifyEvent
*) x
));
20014 static void *_p_wxFindDialogEventTo_p_wxCommandEvent(void *x
) {
20015 return (void *)((wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
20017 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) {
20018 return (void *)((wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
20020 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, (void*)0, 0};
20021 static swig_type_info _swigt__p_double
= {"_p_double", "double *", 0, 0, (void*)0, 0};
20022 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};
20023 static swig_type_info _swigt__p_int
= {"_p_int", "int *", 0, 0, (void*)0, 0};
20024 static swig_type_info _swigt__p_p_wxAuiTabContainerButton
= {"_p_p_wxAuiTabContainerButton", "wxAuiTabContainerButton **", 0, 0, (void*)0, 0};
20025 static swig_type_info _swigt__p_p_wxWindow
= {"_p_p_wxWindow", "wxWindow **", 0, 0, (void*)0, 0};
20026 static swig_type_info _swigt__p_p_wxSplashScreen
= {"_p_p_wxSplashScreen", 0, 0, 0, 0, 0};
20027 static swig_type_info _swigt__p_p_wxMiniFrame
= {"_p_p_wxMiniFrame", 0, 0, 0, 0, 0};
20028 static swig_type_info _swigt__p_p_wxPyPanel
= {"_p_p_wxPyPanel", 0, 0, 0, 0, 0};
20029 static swig_type_info _swigt__p_p_wxMenuBar
= {"_p_p_wxMenuBar", 0, 0, 0, 0, 0};
20030 static swig_type_info _swigt__p_p_wxMessageDialog
= {"_p_p_wxMessageDialog", 0, 0, 0, 0, 0};
20031 static swig_type_info _swigt__p_p_wxNumberEntryDialog
= {"_p_p_wxNumberEntryDialog", 0, 0, 0, 0, 0};
20032 static swig_type_info _swigt__p_p_wxPasswordEntryDialog
= {"_p_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0};
20033 static swig_type_info _swigt__p_p_wxTextEntryDialog
= {"_p_p_wxTextEntryDialog", 0, 0, 0, 0, 0};
20034 static swig_type_info _swigt__p_p_wxSingleChoiceDialog
= {"_p_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0};
20035 static swig_type_info _swigt__p_p_wxMultiChoiceDialog
= {"_p_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0};
20036 static swig_type_info _swigt__p_p_wxFileDialog
= {"_p_p_wxFileDialog", 0, 0, 0, 0, 0};
20037 static swig_type_info _swigt__p_p_wxProgressDialog
= {"_p_p_wxProgressDialog", 0, 0, 0, 0, 0};
20038 static swig_type_info _swigt__p_p_wxFindReplaceDialog
= {"_p_p_wxFindReplaceDialog", 0, 0, 0, 0, 0};
20039 static swig_type_info _swigt__p_p_wxPanel
= {"_p_p_wxPanel", 0, 0, 0, 0, 0};
20040 static swig_type_info _swigt__p_p_wxStatusBar
= {"_p_p_wxStatusBar", 0, 0, 0, 0, 0};
20041 static swig_type_info _swigt__p_p_wxPyHVScrolledWindow
= {"_p_p_wxPyHVScrolledWindow", 0, 0, 0, 0, 0};
20042 static swig_type_info _swigt__p_p_wxPyHScrolledWindow
= {"_p_p_wxPyHScrolledWindow", 0, 0, 0, 0, 0};
20043 static swig_type_info _swigt__p_p_wxPyVScrolledWindow
= {"_p_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0};
20044 static swig_type_info _swigt__p_p_wxTipWindow
= {"_p_p_wxTipWindow", 0, 0, 0, 0, 0};
20045 static swig_type_info _swigt__p_p_wxPyPopupTransientWindow
= {"_p_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0};
20046 static swig_type_info _swigt__p_p_wxPopupWindow
= {"_p_p_wxPopupWindow", 0, 0, 0, 0, 0};
20047 static swig_type_info _swigt__p_p_wxSashLayoutWindow
= {"_p_p_wxSashLayoutWindow", 0, 0, 0, 0, 0};
20048 static swig_type_info _swigt__p_p_wxScrolledWindow
= {"_p_p_wxScrolledWindow", 0, 0, 0, 0, 0};
20049 static swig_type_info _swigt__p_p_wxTopLevelWindow
= {"_p_p_wxTopLevelWindow", 0, 0, 0, 0, 0};
20050 static swig_type_info _swigt__p_p_wxSplashScreenWindow
= {"_p_p_wxSplashScreenWindow", 0, 0, 0, 0, 0};
20051 static swig_type_info _swigt__p_p_wxSplitterWindow
= {"_p_p_wxSplitterWindow", 0, 0, 0, 0, 0};
20052 static swig_type_info _swigt__p_p_wxSashWindow
= {"_p_p_wxSashWindow", 0, 0, 0, 0, 0};
20053 static swig_type_info _swigt__p_p_wxMDIClientWindow
= {"_p_p_wxMDIClientWindow", 0, 0, 0, 0, 0};
20054 static swig_type_info _swigt__p_p_wxPyScrolledWindow
= {"_p_p_wxPyScrolledWindow", 0, 0, 0, 0, 0};
20055 static swig_type_info _swigt__p_p_wxAuiMDIClientWindow
= {"_p_p_wxAuiMDIClientWindow", 0, 0, 0, 0, 0};
20056 static swig_type_info _swigt__p_p_wxPreviewFrame
= {"_p_p_wxPreviewFrame", 0, 0, 0, 0, 0};
20057 static swig_type_info _swigt__p_p_wxPyPreviewFrame
= {"_p_p_wxPyPreviewFrame", 0, 0, 0, 0, 0};
20058 static swig_type_info _swigt__p_p_wxControl
= {"_p_p_wxControl", 0, 0, 0, 0, 0};
20059 static swig_type_info _swigt__p_p_wxMDIChildFrame
= {"_p_p_wxMDIChildFrame", 0, 0, 0, 0, 0};
20060 static swig_type_info _swigt__p_p_wxAuiMDIChildFrame
= {"_p_p_wxAuiMDIChildFrame", 0, 0, 0, 0, 0};
20061 static swig_type_info _swigt__p_p_wxControlWithItems
= {"_p_p_wxControlWithItems", 0, 0, 0, 0, 0};
20062 static swig_type_info _swigt__p_p_wxPyWindow
= {"_p_p_wxPyWindow", 0, 0, 0, 0, 0};
20063 static swig_type_info _swigt__p_p_wxPreviewCanvas
= {"_p_p_wxPreviewCanvas", 0, 0, 0, 0, 0};
20064 static swig_type_info _swigt__p_p_wxSimpleHtmlListBox
= {"_p_p_wxSimpleHtmlListBox", 0, 0, 0, 0, 0};
20065 static swig_type_info _swigt__p_p_wxPyHtmlListBox
= {"_p_p_wxPyHtmlListBox", 0, 0, 0, 0, 0};
20066 static swig_type_info _swigt__p_p_wxPyVListBox
= {"_p_p_wxPyVListBox", 0, 0, 0, 0, 0};
20067 static swig_type_info _swigt__p_p_wxAuiNotebook
= {"_p_p_wxAuiNotebook", 0, 0, 0, 0, 0};
20068 static swig_type_info _swigt__p_p_wxPreviewControlBar
= {"_p_p_wxPreviewControlBar", 0, 0, 0, 0, 0};
20069 static swig_type_info _swigt__p_p_wxPyPreviewControlBar
= {"_p_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0};
20070 static swig_type_info _swigt__p_p_wxAuiTabCtrl
= {"_p_p_wxAuiTabCtrl", 0, 0, 0, 0, 0};
20071 static swig_type_info _swigt__p_p_wxFrame
= {"_p_p_wxFrame", 0, 0, 0, 0, 0};
20072 static swig_type_info _swigt__p_p_wxFontDialog
= {"_p_p_wxFontDialog", 0, 0, 0, 0, 0};
20073 static swig_type_info _swigt__p_p_wxDirDialog
= {"_p_p_wxDirDialog", 0, 0, 0, 0, 0};
20074 static swig_type_info _swigt__p_p_wxColourDialog
= {"_p_p_wxColourDialog", 0, 0, 0, 0, 0};
20075 static swig_type_info _swigt__p_p_wxDialog
= {"_p_p_wxDialog", 0, 0, 0, 0, 0};
20076 static swig_type_info _swigt__p_p_wxAuiFloatingFrame
= {"_p_p_wxAuiFloatingFrame", 0, 0, 0, 0, 0};
20077 static swig_type_info _swigt__p_p_wxMDIParentFrame
= {"_p_p_wxMDIParentFrame", 0, 0, 0, 0, 0};
20078 static swig_type_info _swigt__p_p_wxAuiMDIParentFrame
= {"_p_p_wxAuiMDIParentFrame", 0, 0, 0, 0, 0};
20079 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0};
20080 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0};
20081 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxUIntPtr *", 0, 0, (void*)0, 0};
20082 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", "wxActivateEvent *", 0, 0, (void*)0, 0};
20083 static swig_type_info _swigt__p_wxAuiDefaultDockArt
= {"_p_wxAuiDefaultDockArt", "wxAuiDefaultDockArt *", 0, 0, (void*)0, 0};
20084 static swig_type_info _swigt__p_wxAuiDefaultTabArt
= {"_p_wxAuiDefaultTabArt", "wxAuiDefaultTabArt *", 0, 0, (void*)0, 0};
20085 static swig_type_info _swigt__p_wxAuiDockArt
= {"_p_wxAuiDockArt", "wxAuiDockArt *", 0, 0, (void*)0, 0};
20086 static swig_type_info _swigt__p_wxAuiDockInfo
= {"_p_wxAuiDockInfo", "wxAuiDockInfo *", 0, 0, (void*)0, 0};
20087 static swig_type_info _swigt__p_wxAuiDockUIPart
= {"_p_wxAuiDockUIPart", "wxAuiDockUIPart *", 0, 0, (void*)0, 0};
20088 static swig_type_info _swigt__p_wxAuiFloatingFrame
= {"_p_wxAuiFloatingFrame", "wxAuiFloatingFrame *", 0, 0, (void*)0, 0};
20089 static swig_type_info _swigt__p_wxAuiMDIChildFrame
= {"_p_wxAuiMDIChildFrame", "wxAuiMDIChildFrame *", 0, 0, (void*)0, 0};
20090 static swig_type_info _swigt__p_wxAuiMDIClientWindow
= {"_p_wxAuiMDIClientWindow", "wxAuiMDIClientWindow *", 0, 0, (void*)0, 0};
20091 static swig_type_info _swigt__p_wxAuiMDIParentFrame
= {"_p_wxAuiMDIParentFrame", "wxAuiMDIParentFrame *", 0, 0, (void*)0, 0};
20092 static swig_type_info _swigt__p_wxAuiManager
= {"_p_wxAuiManager", "wxAuiManager *", 0, 0, (void*)0, 0};
20093 static swig_type_info _swigt__p_wxAuiManagerEvent
= {"_p_wxAuiManagerEvent", "wxAuiManagerEvent *", 0, 0, (void*)0, 0};
20094 static swig_type_info _swigt__p_wxAuiNotebook
= {"_p_wxAuiNotebook", "wxAuiNotebook *", 0, 0, (void*)0, 0};
20095 static swig_type_info _swigt__p_wxAuiNotebookEvent
= {"_p_wxAuiNotebookEvent", "wxAuiNotebookEvent *", 0, 0, (void*)0, 0};
20096 static swig_type_info _swigt__p_wxAuiNotebookPage
= {"_p_wxAuiNotebookPage", "wxAuiNotebookPage *", 0, 0, (void*)0, 0};
20097 static swig_type_info _swigt__p_wxAuiNotebookPageArray
= {"_p_wxAuiNotebookPageArray", "wxAuiNotebookPageArray *", 0, 0, (void*)0, 0};
20098 static swig_type_info _swigt__p_wxAuiPaneButton
= {"_p_wxAuiPaneButton", "wxAuiPaneButton *", 0, 0, (void*)0, 0};
20099 static swig_type_info _swigt__p_wxAuiPaneButtonArray
= {"_p_wxAuiPaneButtonArray", "wxAuiPaneButtonArray *", 0, 0, (void*)0, 0};
20100 static swig_type_info _swigt__p_wxAuiPaneInfo
= {"_p_wxAuiPaneInfo", "wxAuiPaneInfo *", 0, 0, (void*)0, 0};
20101 static swig_type_info _swigt__p_wxAuiPaneInfoPtrArray
= {"_p_wxAuiPaneInfoPtrArray", "wxAuiPaneInfoPtrArray *", 0, 0, (void*)0, 0};
20102 static swig_type_info _swigt__p_wxAuiSimpleTabArt
= {"_p_wxAuiSimpleTabArt", "wxAuiSimpleTabArt *", 0, 0, (void*)0, 0};
20103 static swig_type_info _swigt__p_wxAuiTabArt
= {"_p_wxAuiTabArt", "wxAuiTabArt *", 0, 0, (void*)0, 0};
20104 static swig_type_info _swigt__p_wxAuiTabContainer
= {"_p_wxAuiTabContainer", "wxAuiTabContainer *", 0, 0, (void*)0, 0};
20105 static swig_type_info _swigt__p_wxAuiTabContainerButton
= {"_p_wxAuiTabContainerButton", "wxAuiTabContainerButton *", 0, 0, (void*)0, 0};
20106 static swig_type_info _swigt__p_wxAuiTabCtrl
= {"_p_wxAuiTabCtrl", "wxAuiTabCtrl *", 0, 0, (void*)0, 0};
20107 static swig_type_info _swigt__p_wxBitmap
= {"_p_wxBitmap", "wxBitmap *", 0, 0, (void*)0, 0};
20108 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", "wxCloseEvent *", 0, 0, (void*)0, 0};
20109 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0};
20110 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", "wxCommandEvent *", 0, 0, (void*)0, 0};
20111 static swig_type_info _swigt__p_wxSashEvent
= {"_p_wxSashEvent", 0, 0, 0, 0, 0};
20112 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0};
20113 static swig_type_info _swigt__p_wxSplitterEvent
= {"_p_wxSplitterEvent", 0, 0, 0, 0, 0};
20114 static swig_type_info _swigt__p_wxClipboardTextEvent
= {"_p_wxClipboardTextEvent", 0, 0, 0, 0, 0};
20115 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0};
20116 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0};
20117 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0};
20118 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0};
20119 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0, 0};
20120 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0};
20121 static swig_type_info _swigt__p_wxFindDialogEvent
= {"_p_wxFindDialogEvent", 0, 0, 0, 0, 0};
20122 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0};
20123 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", "wxControl *", 0, 0, (void*)0, 0};
20124 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0};
20125 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0};
20126 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0};
20127 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0};
20128 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0};
20129 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0};
20130 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0};
20131 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0};
20132 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0, 0};
20133 static swig_type_info _swigt__p_wxMouseCaptureLostEvent
= {"_p_wxMouseCaptureLostEvent", 0, 0, 0, 0, 0};
20134 static swig_type_info _swigt__p_wxCalculateLayoutEvent
= {"_p_wxCalculateLayoutEvent", 0, 0, 0, 0, 0};
20135 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0};
20136 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0};
20137 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0};
20138 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0};
20139 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0};
20140 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0};
20141 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0};
20142 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0};
20143 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0};
20144 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0};
20145 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0};
20146 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0};
20147 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0};
20148 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0};
20149 static swig_type_info _swigt__p_wxQueryLayoutInfoEvent
= {"_p_wxQueryLayoutInfoEvent", 0, 0, 0, 0, 0};
20150 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0, 0};
20151 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0};
20152 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0};
20153 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", 0, 0, 0, 0, 0};
20154 static swig_type_info _swigt__p_wxTaskBarIconEvent
= {"_p_wxTaskBarIconEvent", 0, 0, 0, 0, 0};
20155 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0};
20156 static swig_type_info _swigt__p_wxSplashScreen
= {"_p_wxSplashScreen", 0, 0, 0, 0, 0};
20157 static swig_type_info _swigt__p_wxPyPanel
= {"_p_wxPyPanel", 0, 0, 0, 0, 0};
20158 static swig_type_info _swigt__p_wxEventBlocker
= {"_p_wxEventBlocker", 0, 0, 0, 0, 0};
20159 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", 0, 0, 0, 0, 0};
20160 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0, 0};
20161 static swig_type_info _swigt__p_wxPasswordEntryDialog
= {"_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0};
20162 static swig_type_info _swigt__p_wxTextEntryDialog
= {"_p_wxTextEntryDialog", 0, 0, 0, 0, 0};
20163 static swig_type_info _swigt__p_wxSingleChoiceDialog
= {"_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0};
20164 static swig_type_info _swigt__p_wxMultiChoiceDialog
= {"_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0};
20165 static swig_type_info _swigt__p_wxFindReplaceDialog
= {"_p_wxFindReplaceDialog", 0, 0, 0, 0, 0};
20166 static swig_type_info _swigt__p_wxProgressDialog
= {"_p_wxProgressDialog", 0, 0, 0, 0, 0};
20167 static swig_type_info _swigt__p_wxMessageDialog
= {"_p_wxMessageDialog", 0, 0, 0, 0, 0};
20168 static swig_type_info _swigt__p_wxNumberEntryDialog
= {"_p_wxNumberEntryDialog", 0, 0, 0, 0, 0};
20169 static swig_type_info _swigt__p_wxFileDialog
= {"_p_wxFileDialog", 0, 0, 0, 0, 0};
20170 static swig_type_info _swigt__p_wxStatusBar
= {"_p_wxStatusBar", 0, 0, 0, 0, 0};
20171 static swig_type_info _swigt__p_wxMDIClientWindow
= {"_p_wxMDIClientWindow", 0, 0, 0, 0, 0};
20172 static swig_type_info _swigt__p_wxScrolledWindow
= {"_p_wxScrolledWindow", 0, 0, 0, 0, 0};
20173 static swig_type_info _swigt__p_wxPyVScrolledWindow
= {"_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0};
20174 static swig_type_info _swigt__p_wxPyHScrolledWindow
= {"_p_wxPyHScrolledWindow", 0, 0, 0, 0, 0};
20175 static swig_type_info _swigt__p_wxPyHVScrolledWindow
= {"_p_wxPyHVScrolledWindow", 0, 0, 0, 0, 0};
20176 static swig_type_info _swigt__p_wxPyScrolledWindow
= {"_p_wxPyScrolledWindow", 0, 0, 0, 0, 0};
20177 static swig_type_info _swigt__p_wxTipWindow
= {"_p_wxTipWindow", 0, 0, 0, 0, 0};
20178 static swig_type_info _swigt__p_wxSashWindow
= {"_p_wxSashWindow", 0, 0, 0, 0, 0};
20179 static swig_type_info _swigt__p_wxSplitterWindow
= {"_p_wxSplitterWindow", 0, 0, 0, 0, 0};
20180 static swig_type_info _swigt__p_wxSplashScreenWindow
= {"_p_wxSplashScreenWindow", 0, 0, 0, 0, 0};
20181 static swig_type_info _swigt__p_wxSashLayoutWindow
= {"_p_wxSashLayoutWindow", 0, 0, 0, 0, 0};
20182 static swig_type_info _swigt__p_wxPopupWindow
= {"_p_wxPopupWindow", 0, 0, 0, 0, 0};
20183 static swig_type_info _swigt__p_wxPyPopupTransientWindow
= {"_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0};
20184 static swig_type_info _swigt__p_wxPreviewFrame
= {"_p_wxPreviewFrame", 0, 0, 0, 0, 0};
20185 static swig_type_info _swigt__p_wxPyPreviewFrame
= {"_p_wxPyPreviewFrame", 0, 0, 0, 0, 0};
20186 static swig_type_info _swigt__p_wxMDIChildFrame
= {"_p_wxMDIChildFrame", 0, 0, 0, 0, 0};
20187 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0, 0};
20188 static swig_type_info _swigt__p_wxPreviewCanvas
= {"_p_wxPreviewCanvas", 0, 0, 0, 0, 0};
20189 static swig_type_info _swigt__p_wxPyWindow
= {"_p_wxPyWindow", 0, 0, 0, 0, 0};
20190 static swig_type_info _swigt__p_wxPyVListBox
= {"_p_wxPyVListBox", 0, 0, 0, 0, 0};
20191 static swig_type_info _swigt__p_wxPyHtmlListBox
= {"_p_wxPyHtmlListBox", 0, 0, 0, 0, 0};
20192 static swig_type_info _swigt__p_wxSimpleHtmlListBox
= {"_p_wxSimpleHtmlListBox", 0, 0, 0, 0, 0};
20193 static swig_type_info _swigt__p_wxPreviewControlBar
= {"_p_wxPreviewControlBar", 0, 0, 0, 0, 0};
20194 static swig_type_info _swigt__p_wxPyPreviewControlBar
= {"_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0};
20195 static swig_type_info _swigt__p_wxPyTaskBarIcon
= {"_p_wxPyTaskBarIcon", 0, 0, 0, 0, 0};
20196 static swig_type_info _swigt__p_wxDialog
= {"_p_wxDialog", 0, 0, 0, 0, 0};
20197 static swig_type_info _swigt__p_wxColourDialog
= {"_p_wxColourDialog", 0, 0, 0, 0, 0};
20198 static swig_type_info _swigt__p_wxDirDialog
= {"_p_wxDirDialog", 0, 0, 0, 0, 0};
20199 static swig_type_info _swigt__p_wxFontDialog
= {"_p_wxFontDialog", 0, 0, 0, 0, 0};
20200 static swig_type_info _swigt__p_wxMDIParentFrame
= {"_p_wxMDIParentFrame", 0, 0, 0, 0, 0};
20201 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0};
20202 static swig_type_info _swigt__p_wxFrame
= {"_p_wxFrame", "wxFrame *", 0, 0, (void*)0, 0};
20203 static swig_type_info _swigt__p_wxIcon
= {"_p_wxIcon", "wxIcon *", 0, 0, (void*)0, 0};
20204 static swig_type_info _swigt__p_wxIconBundle
= {"_p_wxIconBundle", "wxIconBundle *", 0, 0, (void*)0, 0};
20205 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", "wxMenu *", 0, 0, (void*)0, 0};
20206 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", "wxMenuBar *", 0, 0, (void*)0, 0};
20207 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", "wxMenuEvent *", 0, 0, (void*)0, 0};
20208 static swig_type_info _swigt__p_wxMiniFrame
= {"_p_wxMiniFrame", "wxMiniFrame *", 0, 0, (void*)0, 0};
20209 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", "wxNotifyEvent *", 0, 0, (void*)0, 0};
20210 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0};
20211 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0};
20212 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0};
20213 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0};
20214 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0};
20215 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0};
20216 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0};
20217 static swig_type_info _swigt__p_wxFontData
= {"_p_wxFontData", 0, 0, 0, 0, 0};
20218 static swig_type_info _swigt__p_wxPrintData
= {"_p_wxPrintData", 0, 0, 0, 0, 0};
20219 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0, 0};
20220 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0};
20221 static swig_type_info _swigt__p_wxLayoutAlgorithm
= {"_p_wxLayoutAlgorithm", 0, 0, 0, 0, 0};
20222 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0, 0};
20223 static swig_type_info _swigt__p_wxFindReplaceData
= {"_p_wxFindReplaceData", 0, 0, 0, 0, 0};
20224 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0, 0};
20225 static swig_type_info _swigt__p_wxColourData
= {"_p_wxColourData", 0, 0, 0, 0, 0};
20226 static swig_type_info _swigt__p_wxPrinter
= {"_p_wxPrinter", 0, 0, 0, 0, 0};
20227 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0, 0};
20228 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0};
20229 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0};
20230 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0};
20231 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0};
20232 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0};
20233 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0, 0};
20234 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0, 0};
20235 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0, 0};
20236 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0};
20237 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0};
20238 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0, 0};
20239 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0};
20240 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0};
20241 static swig_type_info _swigt__p_wxTGAHandler
= {"_p_wxTGAHandler", 0, 0, 0, 0, 0};
20242 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0};
20243 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0};
20244 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0, 0};
20245 static swig_type_info _swigt__p_wxPyPrintout
= {"_p_wxPyPrintout", 0, 0, 0, 0, 0};
20246 static swig_type_info _swigt__p_wxPrintPreview
= {"_p_wxPrintPreview", 0, 0, 0, 0, 0};
20247 static swig_type_info _swigt__p_wxPyPrintPreview
= {"_p_wxPyPrintPreview", 0, 0, 0, 0, 0};
20248 static swig_type_info _swigt__p_wxPageSetupDialog
= {"_p_wxPageSetupDialog", 0, 0, 0, 0, 0};
20249 static swig_type_info _swigt__p_wxPrintDialog
= {"_p_wxPrintDialog", 0, 0, 0, 0, 0};
20250 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", 0, 0, 0, 0, 0};
20251 static swig_type_info _swigt__p_wxPageSetupDialogData
= {"_p_wxPageSetupDialogData", 0, 0, 0, 0, 0};
20252 static swig_type_info _swigt__p_wxPrintDialogData
= {"_p_wxPrintDialogData", 0, 0, 0, 0, 0};
20253 static swig_type_info _swigt__p_wxPanel
= {"_p_wxPanel", "wxPanel *", 0, 0, (void*)0, 0};
20254 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0};
20255 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0};
20256 static swig_type_info _swigt__p_wxPyAuiDockArt
= {"_p_wxPyAuiDockArt", "wxPyAuiDockArt *", 0, 0, (void*)0, 0};
20257 static swig_type_info _swigt__p_wxPyAuiTabArt
= {"_p_wxPyAuiTabArt", "wxPyAuiTabArt *", 0, 0, (void*)0, 0};
20258 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0};
20259 static swig_type_info _swigt__p_wxSize
= {"_p_wxSize", "wxSize *", 0, 0, (void*)0, 0};
20260 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", "wxSizer *", 0, 0, (void*)0, 0};
20261 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", "wxSizerItem *", 0, 0, (void*)0, 0};
20262 static swig_type_info _swigt__p_wxString
= {"_p_wxString", "wxString *", 0, 0, (void*)0, 0};
20263 static swig_type_info _swigt__p_wxTopLevelWindow
= {"_p_wxTopLevelWindow", "wxTopLevelWindow *", 0, 0, (void*)0, 0};
20264 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0};
20266 static swig_type_info
*swig_type_initial
[] = {
20269 &_swigt__p_form_ops_t
,
20271 &_swigt__p_p_wxAuiFloatingFrame
,
20272 &_swigt__p_p_wxAuiMDIChildFrame
,
20273 &_swigt__p_p_wxAuiMDIClientWindow
,
20274 &_swigt__p_p_wxAuiMDIParentFrame
,
20275 &_swigt__p_p_wxAuiNotebook
,
20276 &_swigt__p_p_wxAuiTabContainerButton
,
20277 &_swigt__p_p_wxAuiTabCtrl
,
20278 &_swigt__p_p_wxColourDialog
,
20279 &_swigt__p_p_wxControl
,
20280 &_swigt__p_p_wxControlWithItems
,
20281 &_swigt__p_p_wxDialog
,
20282 &_swigt__p_p_wxDirDialog
,
20283 &_swigt__p_p_wxFileDialog
,
20284 &_swigt__p_p_wxFindReplaceDialog
,
20285 &_swigt__p_p_wxFontDialog
,
20286 &_swigt__p_p_wxFrame
,
20287 &_swigt__p_p_wxMDIChildFrame
,
20288 &_swigt__p_p_wxMDIClientWindow
,
20289 &_swigt__p_p_wxMDIParentFrame
,
20290 &_swigt__p_p_wxMenuBar
,
20291 &_swigt__p_p_wxMessageDialog
,
20292 &_swigt__p_p_wxMiniFrame
,
20293 &_swigt__p_p_wxMultiChoiceDialog
,
20294 &_swigt__p_p_wxNumberEntryDialog
,
20295 &_swigt__p_p_wxPanel
,
20296 &_swigt__p_p_wxPasswordEntryDialog
,
20297 &_swigt__p_p_wxPopupWindow
,
20298 &_swigt__p_p_wxPreviewCanvas
,
20299 &_swigt__p_p_wxPreviewControlBar
,
20300 &_swigt__p_p_wxPreviewFrame
,
20301 &_swigt__p_p_wxProgressDialog
,
20302 &_swigt__p_p_wxPyHScrolledWindow
,
20303 &_swigt__p_p_wxPyHVScrolledWindow
,
20304 &_swigt__p_p_wxPyHtmlListBox
,
20305 &_swigt__p_p_wxPyPanel
,
20306 &_swigt__p_p_wxPyPopupTransientWindow
,
20307 &_swigt__p_p_wxPyPreviewControlBar
,
20308 &_swigt__p_p_wxPyPreviewFrame
,
20309 &_swigt__p_p_wxPyScrolledWindow
,
20310 &_swigt__p_p_wxPyVListBox
,
20311 &_swigt__p_p_wxPyVScrolledWindow
,
20312 &_swigt__p_p_wxPyWindow
,
20313 &_swigt__p_p_wxSashLayoutWindow
,
20314 &_swigt__p_p_wxSashWindow
,
20315 &_swigt__p_p_wxScrolledWindow
,
20316 &_swigt__p_p_wxSimpleHtmlListBox
,
20317 &_swigt__p_p_wxSingleChoiceDialog
,
20318 &_swigt__p_p_wxSplashScreen
,
20319 &_swigt__p_p_wxSplashScreenWindow
,
20320 &_swigt__p_p_wxSplitterWindow
,
20321 &_swigt__p_p_wxStatusBar
,
20322 &_swigt__p_p_wxTextEntryDialog
,
20323 &_swigt__p_p_wxTipWindow
,
20324 &_swigt__p_p_wxTopLevelWindow
,
20325 &_swigt__p_p_wxWindow
,
20326 &_swigt__p_unsigned_char
,
20327 &_swigt__p_unsigned_int
,
20328 &_swigt__p_unsigned_long
,
20329 &_swigt__p_wxANIHandler
,
20330 &_swigt__p_wxAcceleratorTable
,
20331 &_swigt__p_wxActivateEvent
,
20332 &_swigt__p_wxAuiDefaultDockArt
,
20333 &_swigt__p_wxAuiDefaultTabArt
,
20334 &_swigt__p_wxAuiDockArt
,
20335 &_swigt__p_wxAuiDockInfo
,
20336 &_swigt__p_wxAuiDockUIPart
,
20337 &_swigt__p_wxAuiFloatingFrame
,
20338 &_swigt__p_wxAuiMDIChildFrame
,
20339 &_swigt__p_wxAuiMDIClientWindow
,
20340 &_swigt__p_wxAuiMDIParentFrame
,
20341 &_swigt__p_wxAuiManager
,
20342 &_swigt__p_wxAuiManagerEvent
,
20343 &_swigt__p_wxAuiNotebook
,
20344 &_swigt__p_wxAuiNotebookEvent
,
20345 &_swigt__p_wxAuiNotebookPage
,
20346 &_swigt__p_wxAuiNotebookPageArray
,
20347 &_swigt__p_wxAuiPaneButton
,
20348 &_swigt__p_wxAuiPaneButtonArray
,
20349 &_swigt__p_wxAuiPaneInfo
,
20350 &_swigt__p_wxAuiPaneInfoPtrArray
,
20351 &_swigt__p_wxAuiSimpleTabArt
,
20352 &_swigt__p_wxAuiTabArt
,
20353 &_swigt__p_wxAuiTabContainer
,
20354 &_swigt__p_wxAuiTabContainerButton
,
20355 &_swigt__p_wxAuiTabCtrl
,
20356 &_swigt__p_wxBMPHandler
,
20357 &_swigt__p_wxBitmap
,
20358 &_swigt__p_wxBoxSizer
,
20359 &_swigt__p_wxCURHandler
,
20360 &_swigt__p_wxCalculateLayoutEvent
,
20361 &_swigt__p_wxChildFocusEvent
,
20362 &_swigt__p_wxClipboardTextEvent
,
20363 &_swigt__p_wxCloseEvent
,
20364 &_swigt__p_wxColour
,
20365 &_swigt__p_wxColourData
,
20366 &_swigt__p_wxColourDialog
,
20367 &_swigt__p_wxCommandEvent
,
20368 &_swigt__p_wxContextMenuEvent
,
20369 &_swigt__p_wxControl
,
20370 &_swigt__p_wxControlWithItems
,
20372 &_swigt__p_wxDateEvent
,
20373 &_swigt__p_wxDialog
,
20374 &_swigt__p_wxDirDialog
,
20375 &_swigt__p_wxDisplayChangedEvent
,
20376 &_swigt__p_wxDropFilesEvent
,
20377 &_swigt__p_wxDuplexMode
,
20378 &_swigt__p_wxEraseEvent
,
20379 &_swigt__p_wxEvent
,
20380 &_swigt__p_wxEventBlocker
,
20381 &_swigt__p_wxEvtHandler
,
20382 &_swigt__p_wxFSFile
,
20383 &_swigt__p_wxFileDialog
,
20384 &_swigt__p_wxFileSystem
,
20385 &_swigt__p_wxFindDialogEvent
,
20386 &_swigt__p_wxFindReplaceData
,
20387 &_swigt__p_wxFindReplaceDialog
,
20388 &_swigt__p_wxFlexGridSizer
,
20389 &_swigt__p_wxFocusEvent
,
20391 &_swigt__p_wxFontData
,
20392 &_swigt__p_wxFontDialog
,
20393 &_swigt__p_wxFrame
,
20394 &_swigt__p_wxGBSizerItem
,
20395 &_swigt__p_wxGIFHandler
,
20396 &_swigt__p_wxGridBagSizer
,
20397 &_swigt__p_wxGridSizer
,
20398 &_swigt__p_wxICOHandler
,
20400 &_swigt__p_wxIconBundle
,
20401 &_swigt__p_wxIconizeEvent
,
20402 &_swigt__p_wxIdleEvent
,
20403 &_swigt__p_wxImage
,
20404 &_swigt__p_wxImageHandler
,
20405 &_swigt__p_wxIndividualLayoutConstraint
,
20406 &_swigt__p_wxInitDialogEvent
,
20407 &_swigt__p_wxJPEGHandler
,
20408 &_swigt__p_wxKeyEvent
,
20409 &_swigt__p_wxLayoutAlgorithm
,
20410 &_swigt__p_wxLayoutConstraints
,
20411 &_swigt__p_wxMDIChildFrame
,
20412 &_swigt__p_wxMDIClientWindow
,
20413 &_swigt__p_wxMDIParentFrame
,
20414 &_swigt__p_wxMaximizeEvent
,
20416 &_swigt__p_wxMenuBar
,
20417 &_swigt__p_wxMenuEvent
,
20418 &_swigt__p_wxMenuItem
,
20419 &_swigt__p_wxMessageDialog
,
20420 &_swigt__p_wxMiniFrame
,
20421 &_swigt__p_wxMouseCaptureChangedEvent
,
20422 &_swigt__p_wxMouseCaptureLostEvent
,
20423 &_swigt__p_wxMouseEvent
,
20424 &_swigt__p_wxMoveEvent
,
20425 &_swigt__p_wxMultiChoiceDialog
,
20426 &_swigt__p_wxNavigationKeyEvent
,
20427 &_swigt__p_wxNcPaintEvent
,
20428 &_swigt__p_wxNotifyEvent
,
20429 &_swigt__p_wxNumberEntryDialog
,
20430 &_swigt__p_wxObject
,
20431 &_swigt__p_wxPCXHandler
,
20432 &_swigt__p_wxPNGHandler
,
20433 &_swigt__p_wxPNMHandler
,
20434 &_swigt__p_wxPageSetupDialog
,
20435 &_swigt__p_wxPageSetupDialogData
,
20436 &_swigt__p_wxPaintEvent
,
20437 &_swigt__p_wxPaletteChangedEvent
,
20438 &_swigt__p_wxPanel
,
20439 &_swigt__p_wxPaperSize
,
20440 &_swigt__p_wxPasswordEntryDialog
,
20441 &_swigt__p_wxPoint
,
20442 &_swigt__p_wxPopupWindow
,
20443 &_swigt__p_wxPreviewCanvas
,
20444 &_swigt__p_wxPreviewControlBar
,
20445 &_swigt__p_wxPreviewFrame
,
20446 &_swigt__p_wxPrintData
,
20447 &_swigt__p_wxPrintDialog
,
20448 &_swigt__p_wxPrintDialogData
,
20449 &_swigt__p_wxPrintPreview
,
20450 &_swigt__p_wxPrinter
,
20451 &_swigt__p_wxProgressDialog
,
20452 &_swigt__p_wxPyApp
,
20453 &_swigt__p_wxPyAuiDockArt
,
20454 &_swigt__p_wxPyAuiTabArt
,
20455 &_swigt__p_wxPyCommandEvent
,
20456 &_swigt__p_wxPyEvent
,
20457 &_swigt__p_wxPyHScrolledWindow
,
20458 &_swigt__p_wxPyHVScrolledWindow
,
20459 &_swigt__p_wxPyHtmlListBox
,
20460 &_swigt__p_wxPyImageHandler
,
20461 &_swigt__p_wxPyPanel
,
20462 &_swigt__p_wxPyPopupTransientWindow
,
20463 &_swigt__p_wxPyPreviewControlBar
,
20464 &_swigt__p_wxPyPreviewFrame
,
20465 &_swigt__p_wxPyPrintPreview
,
20466 &_swigt__p_wxPyPrintout
,
20467 &_swigt__p_wxPyScrolledWindow
,
20468 &_swigt__p_wxPySizer
,
20469 &_swigt__p_wxPyTaskBarIcon
,
20470 &_swigt__p_wxPyVListBox
,
20471 &_swigt__p_wxPyVScrolledWindow
,
20472 &_swigt__p_wxPyValidator
,
20473 &_swigt__p_wxPyWindow
,
20474 &_swigt__p_wxQueryLayoutInfoEvent
,
20475 &_swigt__p_wxQueryNewPaletteEvent
,
20477 &_swigt__p_wxSashEvent
,
20478 &_swigt__p_wxSashLayoutWindow
,
20479 &_swigt__p_wxSashWindow
,
20480 &_swigt__p_wxScrollEvent
,
20481 &_swigt__p_wxScrollWinEvent
,
20482 &_swigt__p_wxScrolledWindow
,
20483 &_swigt__p_wxSetCursorEvent
,
20484 &_swigt__p_wxShowEvent
,
20485 &_swigt__p_wxSimpleHtmlListBox
,
20486 &_swigt__p_wxSingleChoiceDialog
,
20488 &_swigt__p_wxSizeEvent
,
20489 &_swigt__p_wxSizer
,
20490 &_swigt__p_wxSizerItem
,
20491 &_swigt__p_wxSplashScreen
,
20492 &_swigt__p_wxSplashScreenWindow
,
20493 &_swigt__p_wxSplitterEvent
,
20494 &_swigt__p_wxSplitterWindow
,
20495 &_swigt__p_wxStaticBoxSizer
,
20496 &_swigt__p_wxStatusBar
,
20497 &_swigt__p_wxStdDialogButtonSizer
,
20498 &_swigt__p_wxString
,
20499 &_swigt__p_wxSysColourChangedEvent
,
20500 &_swigt__p_wxTGAHandler
,
20501 &_swigt__p_wxTIFFHandler
,
20502 &_swigt__p_wxTaskBarIconEvent
,
20503 &_swigt__p_wxTextEntryDialog
,
20504 &_swigt__p_wxTipWindow
,
20505 &_swigt__p_wxTopLevelWindow
,
20506 &_swigt__p_wxUpdateUIEvent
,
20507 &_swigt__p_wxValidator
,
20508 &_swigt__p_wxWindow
,
20509 &_swigt__p_wxWindowCreateEvent
,
20510 &_swigt__p_wxWindowDestroyEvent
,
20511 &_swigt__p_wxXPMHandler
,
20514 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
20515 static swig_cast_info _swigc__p_double
[] = { {&_swigt__p_double
, 0, 0, 0},{0, 0, 0, 0}};
20516 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
20517 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
20518 static swig_cast_info _swigc__p_p_wxAuiTabContainerButton
[] = { {&_swigt__p_p_wxAuiTabContainerButton
, 0, 0, 0},{0, 0, 0, 0}};
20519 static swig_cast_info _swigc__p_p_wxSplashScreen
[] = {{&_swigt__p_p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
20520 static swig_cast_info _swigc__p_p_wxMiniFrame
[] = {{&_swigt__p_p_wxMiniFrame
, 0, 0, 0},{0, 0, 0, 0}};
20521 static swig_cast_info _swigc__p_p_wxPyPanel
[] = {{&_swigt__p_p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
20522 static swig_cast_info _swigc__p_p_wxMenuBar
[] = {{&_swigt__p_p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
20523 static swig_cast_info _swigc__p_p_wxMessageDialog
[] = {{&_swigt__p_p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
20524 static swig_cast_info _swigc__p_p_wxNumberEntryDialog
[] = {{&_swigt__p_p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
20525 static swig_cast_info _swigc__p_p_wxPasswordEntryDialog
[] = {{&_swigt__p_p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
20526 static swig_cast_info _swigc__p_p_wxTextEntryDialog
[] = {{&_swigt__p_p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
20527 static swig_cast_info _swigc__p_p_wxSingleChoiceDialog
[] = {{&_swigt__p_p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
20528 static swig_cast_info _swigc__p_p_wxMultiChoiceDialog
[] = {{&_swigt__p_p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
20529 static swig_cast_info _swigc__p_p_wxFileDialog
[] = {{&_swigt__p_p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
20530 static swig_cast_info _swigc__p_p_wxProgressDialog
[] = {{&_swigt__p_p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
20531 static swig_cast_info _swigc__p_p_wxFindReplaceDialog
[] = {{&_swigt__p_p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
20532 static swig_cast_info _swigc__p_p_wxPanel
[] = {{&_swigt__p_p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}};
20533 static swig_cast_info _swigc__p_p_wxStatusBar
[] = {{&_swigt__p_p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
20534 static swig_cast_info _swigc__p_p_wxPyHVScrolledWindow
[] = {{&_swigt__p_p_wxPyHVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
20535 static swig_cast_info _swigc__p_p_wxPyHScrolledWindow
[] = {{&_swigt__p_p_wxPyHScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
20536 static swig_cast_info _swigc__p_p_wxPyVScrolledWindow
[] = {{&_swigt__p_p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
20537 static swig_cast_info _swigc__p_p_wxTipWindow
[] = {{&_swigt__p_p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
20538 static swig_cast_info _swigc__p_p_wxPyPopupTransientWindow
[] = {{&_swigt__p_p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}};
20539 static swig_cast_info _swigc__p_p_wxPopupWindow
[] = {{&_swigt__p_p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}};
20540 static swig_cast_info _swigc__p_p_wxSashLayoutWindow
[] = {{&_swigt__p_p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
20541 static swig_cast_info _swigc__p_p_wxScrolledWindow
[] = {{&_swigt__p_p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
20542 static swig_cast_info _swigc__p_p_wxTopLevelWindow
[] = {{&_swigt__p_p_wxTopLevelWindow
, 0, 0, 0},{0, 0, 0, 0}};
20543 static swig_cast_info _swigc__p_p_wxSplashScreenWindow
[] = {{&_swigt__p_p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
20544 static swig_cast_info _swigc__p_p_wxSplitterWindow
[] = {{&_swigt__p_p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
20545 static swig_cast_info _swigc__p_p_wxSashWindow
[] = {{&_swigt__p_p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}};
20546 static swig_cast_info _swigc__p_p_wxMDIClientWindow
[] = {{&_swigt__p_p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
20547 static swig_cast_info _swigc__p_p_wxPyScrolledWindow
[] = {{&_swigt__p_p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
20548 static swig_cast_info _swigc__p_p_wxAuiMDIClientWindow
[] = {{&_swigt__p_p_wxAuiMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
20549 static swig_cast_info _swigc__p_p_wxPreviewFrame
[] = {{&_swigt__p_p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
20550 static swig_cast_info _swigc__p_p_wxPyPreviewFrame
[] = {{&_swigt__p_p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
20551 static swig_cast_info _swigc__p_p_wxControl
[] = {{&_swigt__p_p_wxControl
, 0, 0, 0},{0, 0, 0, 0}};
20552 static swig_cast_info _swigc__p_p_wxMDIChildFrame
[] = {{&_swigt__p_p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
20553 static swig_cast_info _swigc__p_p_wxAuiMDIChildFrame
[] = {{&_swigt__p_p_wxAuiMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
20554 static swig_cast_info _swigc__p_p_wxControlWithItems
[] = {{&_swigt__p_p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
20555 static swig_cast_info _swigc__p_p_wxPyWindow
[] = {{&_swigt__p_p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
20556 static swig_cast_info _swigc__p_p_wxPreviewCanvas
[] = {{&_swigt__p_p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
20557 static swig_cast_info _swigc__p_p_wxSimpleHtmlListBox
[] = {{&_swigt__p_p_wxSimpleHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
20558 static swig_cast_info _swigc__p_p_wxPyHtmlListBox
[] = {{&_swigt__p_p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
20559 static swig_cast_info _swigc__p_p_wxPyVListBox
[] = {{&_swigt__p_p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}};
20560 static swig_cast_info _swigc__p_p_wxAuiNotebook
[] = {{&_swigt__p_p_wxAuiNotebook
, 0, 0, 0},{0, 0, 0, 0}};
20561 static swig_cast_info _swigc__p_p_wxPreviewControlBar
[] = {{&_swigt__p_p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
20562 static swig_cast_info _swigc__p_p_wxPyPreviewControlBar
[] = {{&_swigt__p_p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
20563 static swig_cast_info _swigc__p_p_wxAuiTabCtrl
[] = {{&_swigt__p_p_wxAuiTabCtrl
, 0, 0, 0},{0, 0, 0, 0}};
20564 static swig_cast_info _swigc__p_p_wxFrame
[] = {{&_swigt__p_p_wxFrame
, 0, 0, 0},{0, 0, 0, 0}};
20565 static swig_cast_info _swigc__p_p_wxFontDialog
[] = {{&_swigt__p_p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
20566 static swig_cast_info _swigc__p_p_wxDirDialog
[] = {{&_swigt__p_p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
20567 static swig_cast_info _swigc__p_p_wxColourDialog
[] = {{&_swigt__p_p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
20568 static swig_cast_info _swigc__p_p_wxDialog
[] = {{&_swigt__p_p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}};
20569 static swig_cast_info _swigc__p_p_wxAuiFloatingFrame
[] = {{&_swigt__p_p_wxAuiFloatingFrame
, 0, 0, 0},{0, 0, 0, 0}};
20570 static swig_cast_info _swigc__p_p_wxMDIParentFrame
[] = {{&_swigt__p_p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
20571 static swig_cast_info _swigc__p_p_wxAuiMDIParentFrame
[] = {{&_swigt__p_p_wxAuiMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
20572 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_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_wxProgressDialog
, _p_p_wxProgressDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxFindReplaceDialog
, _p_p_wxFindReplaceDialogTo_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_wxPyHVScrolledWindow
, _p_p_wxPyHVScrolledWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyHScrolledWindow
, _p_p_wxPyHScrolledWindowTo_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_wxAuiMDIClientWindow
, _p_p_wxAuiMDIClientWindowTo_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_wxAuiMDIChildFrame
, _p_p_wxAuiMDIChildFrameTo_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}, {&_swigt__p_p_wxAuiMDIParentFrame
, _p_p_wxAuiMDIParentFrameTo_p_p_wxWindow
, 0, 0},{0, 0, 0, 0}};
20573 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
20574 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
20575 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
20576 static swig_cast_info _swigc__p_wxActivateEvent
[] = { {&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
20577 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}};
20578 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}};
20579 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}};
20580 static swig_cast_info _swigc__p_wxAuiDockInfo
[] = { {&_swigt__p_wxAuiDockInfo
, 0, 0, 0},{0, 0, 0, 0}};
20581 static swig_cast_info _swigc__p_wxAuiDockUIPart
[] = { {&_swigt__p_wxAuiDockUIPart
, 0, 0, 0},{0, 0, 0, 0}};
20582 static swig_cast_info _swigc__p_wxAuiFloatingFrame
[] = { {&_swigt__p_wxAuiFloatingFrame
, 0, 0, 0},{0, 0, 0, 0}};
20583 static swig_cast_info _swigc__p_wxAuiMDIChildFrame
[] = { {&_swigt__p_wxAuiMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
20584 static swig_cast_info _swigc__p_wxAuiMDIClientWindow
[] = { {&_swigt__p_wxAuiMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
20585 static swig_cast_info _swigc__p_wxAuiMDIParentFrame
[] = { {&_swigt__p_wxAuiMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
20586 static swig_cast_info _swigc__p_wxAuiManager
[] = { {&_swigt__p_wxAuiManager
, 0, 0, 0},{0, 0, 0, 0}};
20587 static swig_cast_info _swigc__p_wxAuiManagerEvent
[] = { {&_swigt__p_wxAuiManagerEvent
, 0, 0, 0},{0, 0, 0, 0}};
20588 static swig_cast_info _swigc__p_wxAuiNotebook
[] = { {&_swigt__p_wxAuiMDIClientWindow
, _p_wxAuiMDIClientWindowTo_p_wxAuiNotebook
, 0, 0}, {&_swigt__p_wxAuiNotebook
, 0, 0, 0},{0, 0, 0, 0}};
20589 static swig_cast_info _swigc__p_wxAuiNotebookEvent
[] = { {&_swigt__p_wxAuiNotebookEvent
, 0, 0, 0},{0, 0, 0, 0}};
20590 static swig_cast_info _swigc__p_wxAuiNotebookPage
[] = { {&_swigt__p_wxAuiNotebookPage
, 0, 0, 0},{0, 0, 0, 0}};
20591 static swig_cast_info _swigc__p_wxAuiNotebookPageArray
[] = { {&_swigt__p_wxAuiNotebookPageArray
, 0, 0, 0},{0, 0, 0, 0}};
20592 static swig_cast_info _swigc__p_wxAuiPaneButton
[] = { {&_swigt__p_wxAuiPaneButton
, 0, 0, 0},{0, 0, 0, 0}};
20593 static swig_cast_info _swigc__p_wxAuiPaneButtonArray
[] = { {&_swigt__p_wxAuiPaneButtonArray
, 0, 0, 0},{0, 0, 0, 0}};
20594 static swig_cast_info _swigc__p_wxAuiPaneInfo
[] = { {&_swigt__p_wxAuiPaneInfo
, 0, 0, 0},{0, 0, 0, 0}};
20595 static swig_cast_info _swigc__p_wxAuiPaneInfoPtrArray
[] = { {&_swigt__p_wxAuiPaneInfoPtrArray
, 0, 0, 0},{0, 0, 0, 0}};
20596 static swig_cast_info _swigc__p_wxAuiSimpleTabArt
[] = { {&_swigt__p_wxAuiSimpleTabArt
, 0, 0, 0},{0, 0, 0, 0}};
20597 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}};
20598 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}};
20599 static swig_cast_info _swigc__p_wxAuiTabContainerButton
[] = { {&_swigt__p_wxAuiTabContainerButton
, 0, 0, 0},{0, 0, 0, 0}};
20600 static swig_cast_info _swigc__p_wxAuiTabCtrl
[] = { {&_swigt__p_wxAuiTabCtrl
, 0, 0, 0},{0, 0, 0, 0}};
20601 static swig_cast_info _swigc__p_wxBitmap
[] = { {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}};
20602 static swig_cast_info _swigc__p_wxCloseEvent
[] = { {&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
20603 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
20604 static swig_cast_info _swigc__p_wxSashEvent
[] = {{&_swigt__p_wxSashEvent
, 0, 0, 0},{0, 0, 0, 0}};
20605 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
20606 static swig_cast_info _swigc__p_wxSplitterEvent
[] = {{&_swigt__p_wxSplitterEvent
, 0, 0, 0},{0, 0, 0, 0}};
20607 static swig_cast_info _swigc__p_wxClipboardTextEvent
[] = {{&_swigt__p_wxClipboardTextEvent
, 0, 0, 0},{0, 0, 0, 0}};
20608 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
20609 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
20610 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
20611 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
20612 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
20613 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
20614 static swig_cast_info _swigc__p_wxFindDialogEvent
[] = {{&_swigt__p_wxFindDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
20615 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
20616 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}};
20617 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
20618 static swig_cast_info _swigc__p_wxControl
[] = { {&_swigt__p_wxControl
, 0, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxControl
, 0, 0}, {&_swigt__p_wxAuiMDIClientWindow
, _p_wxAuiMDIClientWindowTo_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}};
20619 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
20620 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
20621 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
20622 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
20623 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
20624 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
20625 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
20626 static swig_cast_info _swigc__p_wxMouseCaptureLostEvent
[] = {{&_swigt__p_wxMouseCaptureLostEvent
, 0, 0, 0},{0, 0, 0, 0}};
20627 static swig_cast_info _swigc__p_wxCalculateLayoutEvent
[] = {{&_swigt__p_wxCalculateLayoutEvent
, 0, 0, 0},{0, 0, 0, 0}};
20628 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
20629 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
20630 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
20631 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
20632 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
20633 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
20634 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
20635 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
20636 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
20637 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
20638 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
20639 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
20640 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
20641 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
20642 static swig_cast_info _swigc__p_wxQueryLayoutInfoEvent
[] = {{&_swigt__p_wxQueryLayoutInfoEvent
, 0, 0, 0},{0, 0, 0, 0}};
20643 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
20644 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
20645 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
20646 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
20647 static swig_cast_info _swigc__p_wxTaskBarIconEvent
[] = {{&_swigt__p_wxTaskBarIconEvent
, 0, 0, 0},{0, 0, 0, 0}};
20648 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}};
20649 static swig_cast_info _swigc__p_wxSplashScreen
[] = {{&_swigt__p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
20650 static swig_cast_info _swigc__p_wxPyPanel
[] = {{&_swigt__p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
20651 static swig_cast_info _swigc__p_wxEventBlocker
[] = {{&_swigt__p_wxEventBlocker
, 0, 0, 0},{0, 0, 0, 0}};
20652 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}};
20653 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
20654 static swig_cast_info _swigc__p_wxPasswordEntryDialog
[] = {{&_swigt__p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
20655 static swig_cast_info _swigc__p_wxTextEntryDialog
[] = {{&_swigt__p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
20656 static swig_cast_info _swigc__p_wxSingleChoiceDialog
[] = {{&_swigt__p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
20657 static swig_cast_info _swigc__p_wxMultiChoiceDialog
[] = {{&_swigt__p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
20658 static swig_cast_info _swigc__p_wxFindReplaceDialog
[] = {{&_swigt__p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
20659 static swig_cast_info _swigc__p_wxProgressDialog
[] = {{&_swigt__p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
20660 static swig_cast_info _swigc__p_wxMessageDialog
[] = {{&_swigt__p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
20661 static swig_cast_info _swigc__p_wxNumberEntryDialog
[] = {{&_swigt__p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
20662 static swig_cast_info _swigc__p_wxFileDialog
[] = {{&_swigt__p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
20663 static swig_cast_info _swigc__p_wxStatusBar
[] = {{&_swigt__p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
20664 static swig_cast_info _swigc__p_wxMDIClientWindow
[] = {{&_swigt__p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
20665 static swig_cast_info _swigc__p_wxScrolledWindow
[] = {{&_swigt__p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
20666 static swig_cast_info _swigc__p_wxPyVScrolledWindow
[] = {{&_swigt__p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
20667 static swig_cast_info _swigc__p_wxPyHScrolledWindow
[] = {{&_swigt__p_wxPyHScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
20668 static swig_cast_info _swigc__p_wxPyHVScrolledWindow
[] = {{&_swigt__p_wxPyHVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
20669 static swig_cast_info _swigc__p_wxPyScrolledWindow
[] = {{&_swigt__p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
20670 static swig_cast_info _swigc__p_wxTipWindow
[] = {{&_swigt__p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
20671 static swig_cast_info _swigc__p_wxSashWindow
[] = {{&_swigt__p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}};
20672 static swig_cast_info _swigc__p_wxSplitterWindow
[] = {{&_swigt__p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
20673 static swig_cast_info _swigc__p_wxSplashScreenWindow
[] = {{&_swigt__p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
20674 static swig_cast_info _swigc__p_wxSashLayoutWindow
[] = {{&_swigt__p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
20675 static swig_cast_info _swigc__p_wxPopupWindow
[] = {{&_swigt__p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}};
20676 static swig_cast_info _swigc__p_wxPyPopupTransientWindow
[] = {{&_swigt__p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}};
20677 static swig_cast_info _swigc__p_wxPreviewFrame
[] = {{&_swigt__p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
20678 static swig_cast_info _swigc__p_wxPyPreviewFrame
[] = {{&_swigt__p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
20679 static swig_cast_info _swigc__p_wxMDIChildFrame
[] = {{&_swigt__p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
20680 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
20681 static swig_cast_info _swigc__p_wxPreviewCanvas
[] = {{&_swigt__p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
20682 static swig_cast_info _swigc__p_wxPyWindow
[] = {{&_swigt__p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
20683 static swig_cast_info _swigc__p_wxPyVListBox
[] = {{&_swigt__p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}};
20684 static swig_cast_info _swigc__p_wxPyHtmlListBox
[] = {{&_swigt__p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
20685 static swig_cast_info _swigc__p_wxSimpleHtmlListBox
[] = {{&_swigt__p_wxSimpleHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
20686 static swig_cast_info _swigc__p_wxPreviewControlBar
[] = {{&_swigt__p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
20687 static swig_cast_info _swigc__p_wxPyPreviewControlBar
[] = {{&_swigt__p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
20688 static swig_cast_info _swigc__p_wxPyTaskBarIcon
[] = {{&_swigt__p_wxPyTaskBarIcon
, 0, 0, 0},{0, 0, 0, 0}};
20689 static swig_cast_info _swigc__p_wxDialog
[] = {{&_swigt__p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}};
20690 static swig_cast_info _swigc__p_wxColourDialog
[] = {{&_swigt__p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
20691 static swig_cast_info _swigc__p_wxDirDialog
[] = {{&_swigt__p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
20692 static swig_cast_info _swigc__p_wxFontDialog
[] = {{&_swigt__p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
20693 static swig_cast_info _swigc__p_wxMDIParentFrame
[] = {{&_swigt__p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
20694 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_wxEventBlocker
, _p_wxEventBlockerTo_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_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_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_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_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyHScrolledWindow
, _p_wxPyHScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyHVScrolledWindow
, _p_wxPyHVScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxAuiMDIClientWindow
, _p_wxAuiMDIClientWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_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_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxAuiMDIChildFrame
, _p_wxAuiMDIChildFrameTo_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_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSimpleHtmlListBox
, _p_wxSimpleHtmlListBoxTo_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_wxDialog
, _p_wxDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_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_wxAuiMDIParentFrame
, _p_wxAuiMDIParentFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxAuiManager
, _p_wxAuiManagerTo_p_wxEvtHandler
, 0, 0},{0, 0, 0, 0}};
20695 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
20696 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_wxTipWindow
, _p_wxTipWindowTo_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_wxAuiMDIParentFrame
, _p_wxAuiMDIParentFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxFrame
, 0, 0},{0, 0, 0, 0}};
20697 static swig_cast_info _swigc__p_wxIcon
[] = { {&_swigt__p_wxIcon
, 0, 0, 0},{0, 0, 0, 0}};
20698 static swig_cast_info _swigc__p_wxIconBundle
[] = { {&_swigt__p_wxIconBundle
, 0, 0, 0},{0, 0, 0, 0}};
20699 static swig_cast_info _swigc__p_wxMenu
[] = { {&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
20700 static swig_cast_info _swigc__p_wxMenuBar
[] = { {&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
20701 static swig_cast_info _swigc__p_wxMenuEvent
[] = { {&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
20702 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}};
20703 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}};
20704 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
20705 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
20706 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
20707 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
20708 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
20709 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
20710 static swig_cast_info _swigc__p_wxFontData
[] = {{&_swigt__p_wxFontData
, 0, 0, 0},{0, 0, 0, 0}};
20711 static swig_cast_info _swigc__p_wxPrintData
[] = {{&_swigt__p_wxPrintData
, 0, 0, 0},{0, 0, 0, 0}};
20712 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
20713 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
20714 static swig_cast_info _swigc__p_wxLayoutAlgorithm
[] = {{&_swigt__p_wxLayoutAlgorithm
, 0, 0, 0},{0, 0, 0, 0}};
20715 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
20716 static swig_cast_info _swigc__p_wxFindReplaceData
[] = {{&_swigt__p_wxFindReplaceData
, 0, 0, 0},{0, 0, 0, 0}};
20717 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
20718 static swig_cast_info _swigc__p_wxColourData
[] = {{&_swigt__p_wxColourData
, 0, 0, 0},{0, 0, 0, 0}};
20719 static swig_cast_info _swigc__p_wxPrinter
[] = {{&_swigt__p_wxPrinter
, 0, 0, 0},{0, 0, 0, 0}};
20720 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
20721 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
20722 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
20723 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
20724 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
20725 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
20726 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
20727 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
20728 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
20729 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
20730 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
20731 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
20732 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
20733 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
20734 static swig_cast_info _swigc__p_wxTGAHandler
[] = {{&_swigt__p_wxTGAHandler
, 0, 0, 0},{0, 0, 0, 0}};
20735 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
20736 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
20737 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
20738 static swig_cast_info _swigc__p_wxPyPrintout
[] = {{&_swigt__p_wxPyPrintout
, 0, 0, 0},{0, 0, 0, 0}};
20739 static swig_cast_info _swigc__p_wxPrintPreview
[] = {{&_swigt__p_wxPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
20740 static swig_cast_info _swigc__p_wxPyPrintPreview
[] = {{&_swigt__p_wxPyPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
20741 static swig_cast_info _swigc__p_wxPageSetupDialog
[] = {{&_swigt__p_wxPageSetupDialog
, 0, 0, 0},{0, 0, 0, 0}};
20742 static swig_cast_info _swigc__p_wxPrintDialog
[] = {{&_swigt__p_wxPrintDialog
, 0, 0, 0},{0, 0, 0, 0}};
20743 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
20744 static swig_cast_info _swigc__p_wxPageSetupDialogData
[] = {{&_swigt__p_wxPageSetupDialogData
, 0, 0, 0},{0, 0, 0, 0}};
20745 static swig_cast_info _swigc__p_wxPrintDialogData
[] = {{&_swigt__p_wxPrintDialogData
, 0, 0, 0},{0, 0, 0, 0}};
20746 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_wxEventBlocker
, _p_wxEventBlockerTo_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_wxAuiMDIChildFrame
, _p_wxAuiMDIChildFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxColourData
, _p_wxColourDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_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_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_wxGIFHandler
, _p_wxGIFHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPNGHandler
, _p_wxPNGHandlerTo_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_wxAuiMDIParentFrame
, _p_wxAuiMDIParentFrameTo_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_wxAuiMDIClientWindow
, _p_wxAuiMDIClientWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyHVScrolledWindow
, _p_wxPyHVScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyHScrolledWindow
, _p_wxPyHScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_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_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_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_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}};
20747 static swig_cast_info _swigc__p_wxPanel
[] = { {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxSimpleHtmlListBox
, _p_wxSimpleHtmlListBoxTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPyHScrolledWindow
, _p_wxPyHScrolledWindowTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPyHVScrolledWindow
, _p_wxPyHVScrolledWindowTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxAuiMDIChildFrame
, _p_wxAuiMDIChildFrameTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxPanel
, 0, 0}, {&_swigt__p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}};
20748 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
20749 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
20750 static swig_cast_info _swigc__p_wxPyAuiDockArt
[] = { {&_swigt__p_wxPyAuiDockArt
, 0, 0, 0},{0, 0, 0, 0}};
20751 static swig_cast_info _swigc__p_wxPyAuiTabArt
[] = { {&_swigt__p_wxPyAuiTabArt
, 0, 0, 0},{0, 0, 0, 0}};
20752 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
20753 static swig_cast_info _swigc__p_wxSize
[] = { {&_swigt__p_wxSize
, 0, 0, 0},{0, 0, 0, 0}};
20754 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}};
20755 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}};
20756 static swig_cast_info _swigc__p_wxString
[] = { {&_swigt__p_wxString
, 0, 0, 0},{0, 0, 0, 0}};
20757 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_wxColourDialog
, _p_wxColourDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, 0, 0, 0}, {&_swigt__p_wxAuiMDIParentFrame
, _p_wxAuiMDIParentFrameTo_p_wxTopLevelWindow
, 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_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_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_wxMessageDialog
, _p_wxMessageDialogTo_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}};
20758 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_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_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_wxFileDialog
, _p_wxFileDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_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_wxAuiMDIClientWindow
, _p_wxAuiMDIClientWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyHScrolledWindow
, _p_wxPyHScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyHVScrolledWindow
, _p_wxPyHVScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxWindow
, 0, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxAuiMDIChildFrame
, _p_wxAuiMDIChildFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSimpleHtmlListBox
, _p_wxSimpleHtmlListBoxTo_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_wxDialog
, _p_wxDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxAuiMDIParentFrame
, _p_wxAuiMDIParentFrameTo_p_wxWindow
, 0, 0},{0, 0, 0, 0}};
20760 static swig_cast_info
*swig_cast_initial
[] = {
20763 _swigc__p_form_ops_t
,
20765 _swigc__p_p_wxAuiFloatingFrame
,
20766 _swigc__p_p_wxAuiMDIChildFrame
,
20767 _swigc__p_p_wxAuiMDIClientWindow
,
20768 _swigc__p_p_wxAuiMDIParentFrame
,
20769 _swigc__p_p_wxAuiNotebook
,
20770 _swigc__p_p_wxAuiTabContainerButton
,
20771 _swigc__p_p_wxAuiTabCtrl
,
20772 _swigc__p_p_wxColourDialog
,
20773 _swigc__p_p_wxControl
,
20774 _swigc__p_p_wxControlWithItems
,
20775 _swigc__p_p_wxDialog
,
20776 _swigc__p_p_wxDirDialog
,
20777 _swigc__p_p_wxFileDialog
,
20778 _swigc__p_p_wxFindReplaceDialog
,
20779 _swigc__p_p_wxFontDialog
,
20780 _swigc__p_p_wxFrame
,
20781 _swigc__p_p_wxMDIChildFrame
,
20782 _swigc__p_p_wxMDIClientWindow
,
20783 _swigc__p_p_wxMDIParentFrame
,
20784 _swigc__p_p_wxMenuBar
,
20785 _swigc__p_p_wxMessageDialog
,
20786 _swigc__p_p_wxMiniFrame
,
20787 _swigc__p_p_wxMultiChoiceDialog
,
20788 _swigc__p_p_wxNumberEntryDialog
,
20789 _swigc__p_p_wxPanel
,
20790 _swigc__p_p_wxPasswordEntryDialog
,
20791 _swigc__p_p_wxPopupWindow
,
20792 _swigc__p_p_wxPreviewCanvas
,
20793 _swigc__p_p_wxPreviewControlBar
,
20794 _swigc__p_p_wxPreviewFrame
,
20795 _swigc__p_p_wxProgressDialog
,
20796 _swigc__p_p_wxPyHScrolledWindow
,
20797 _swigc__p_p_wxPyHVScrolledWindow
,
20798 _swigc__p_p_wxPyHtmlListBox
,
20799 _swigc__p_p_wxPyPanel
,
20800 _swigc__p_p_wxPyPopupTransientWindow
,
20801 _swigc__p_p_wxPyPreviewControlBar
,
20802 _swigc__p_p_wxPyPreviewFrame
,
20803 _swigc__p_p_wxPyScrolledWindow
,
20804 _swigc__p_p_wxPyVListBox
,
20805 _swigc__p_p_wxPyVScrolledWindow
,
20806 _swigc__p_p_wxPyWindow
,
20807 _swigc__p_p_wxSashLayoutWindow
,
20808 _swigc__p_p_wxSashWindow
,
20809 _swigc__p_p_wxScrolledWindow
,
20810 _swigc__p_p_wxSimpleHtmlListBox
,
20811 _swigc__p_p_wxSingleChoiceDialog
,
20812 _swigc__p_p_wxSplashScreen
,
20813 _swigc__p_p_wxSplashScreenWindow
,
20814 _swigc__p_p_wxSplitterWindow
,
20815 _swigc__p_p_wxStatusBar
,
20816 _swigc__p_p_wxTextEntryDialog
,
20817 _swigc__p_p_wxTipWindow
,
20818 _swigc__p_p_wxTopLevelWindow
,
20819 _swigc__p_p_wxWindow
,
20820 _swigc__p_unsigned_char
,
20821 _swigc__p_unsigned_int
,
20822 _swigc__p_unsigned_long
,
20823 _swigc__p_wxANIHandler
,
20824 _swigc__p_wxAcceleratorTable
,
20825 _swigc__p_wxActivateEvent
,
20826 _swigc__p_wxAuiDefaultDockArt
,
20827 _swigc__p_wxAuiDefaultTabArt
,
20828 _swigc__p_wxAuiDockArt
,
20829 _swigc__p_wxAuiDockInfo
,
20830 _swigc__p_wxAuiDockUIPart
,
20831 _swigc__p_wxAuiFloatingFrame
,
20832 _swigc__p_wxAuiMDIChildFrame
,
20833 _swigc__p_wxAuiMDIClientWindow
,
20834 _swigc__p_wxAuiMDIParentFrame
,
20835 _swigc__p_wxAuiManager
,
20836 _swigc__p_wxAuiManagerEvent
,
20837 _swigc__p_wxAuiNotebook
,
20838 _swigc__p_wxAuiNotebookEvent
,
20839 _swigc__p_wxAuiNotebookPage
,
20840 _swigc__p_wxAuiNotebookPageArray
,
20841 _swigc__p_wxAuiPaneButton
,
20842 _swigc__p_wxAuiPaneButtonArray
,
20843 _swigc__p_wxAuiPaneInfo
,
20844 _swigc__p_wxAuiPaneInfoPtrArray
,
20845 _swigc__p_wxAuiSimpleTabArt
,
20846 _swigc__p_wxAuiTabArt
,
20847 _swigc__p_wxAuiTabContainer
,
20848 _swigc__p_wxAuiTabContainerButton
,
20849 _swigc__p_wxAuiTabCtrl
,
20850 _swigc__p_wxBMPHandler
,
20851 _swigc__p_wxBitmap
,
20852 _swigc__p_wxBoxSizer
,
20853 _swigc__p_wxCURHandler
,
20854 _swigc__p_wxCalculateLayoutEvent
,
20855 _swigc__p_wxChildFocusEvent
,
20856 _swigc__p_wxClipboardTextEvent
,
20857 _swigc__p_wxCloseEvent
,
20858 _swigc__p_wxColour
,
20859 _swigc__p_wxColourData
,
20860 _swigc__p_wxColourDialog
,
20861 _swigc__p_wxCommandEvent
,
20862 _swigc__p_wxContextMenuEvent
,
20863 _swigc__p_wxControl
,
20864 _swigc__p_wxControlWithItems
,
20866 _swigc__p_wxDateEvent
,
20867 _swigc__p_wxDialog
,
20868 _swigc__p_wxDirDialog
,
20869 _swigc__p_wxDisplayChangedEvent
,
20870 _swigc__p_wxDropFilesEvent
,
20871 _swigc__p_wxDuplexMode
,
20872 _swigc__p_wxEraseEvent
,
20874 _swigc__p_wxEventBlocker
,
20875 _swigc__p_wxEvtHandler
,
20876 _swigc__p_wxFSFile
,
20877 _swigc__p_wxFileDialog
,
20878 _swigc__p_wxFileSystem
,
20879 _swigc__p_wxFindDialogEvent
,
20880 _swigc__p_wxFindReplaceData
,
20881 _swigc__p_wxFindReplaceDialog
,
20882 _swigc__p_wxFlexGridSizer
,
20883 _swigc__p_wxFocusEvent
,
20885 _swigc__p_wxFontData
,
20886 _swigc__p_wxFontDialog
,
20888 _swigc__p_wxGBSizerItem
,
20889 _swigc__p_wxGIFHandler
,
20890 _swigc__p_wxGridBagSizer
,
20891 _swigc__p_wxGridSizer
,
20892 _swigc__p_wxICOHandler
,
20894 _swigc__p_wxIconBundle
,
20895 _swigc__p_wxIconizeEvent
,
20896 _swigc__p_wxIdleEvent
,
20898 _swigc__p_wxImageHandler
,
20899 _swigc__p_wxIndividualLayoutConstraint
,
20900 _swigc__p_wxInitDialogEvent
,
20901 _swigc__p_wxJPEGHandler
,
20902 _swigc__p_wxKeyEvent
,
20903 _swigc__p_wxLayoutAlgorithm
,
20904 _swigc__p_wxLayoutConstraints
,
20905 _swigc__p_wxMDIChildFrame
,
20906 _swigc__p_wxMDIClientWindow
,
20907 _swigc__p_wxMDIParentFrame
,
20908 _swigc__p_wxMaximizeEvent
,
20910 _swigc__p_wxMenuBar
,
20911 _swigc__p_wxMenuEvent
,
20912 _swigc__p_wxMenuItem
,
20913 _swigc__p_wxMessageDialog
,
20914 _swigc__p_wxMiniFrame
,
20915 _swigc__p_wxMouseCaptureChangedEvent
,
20916 _swigc__p_wxMouseCaptureLostEvent
,
20917 _swigc__p_wxMouseEvent
,
20918 _swigc__p_wxMoveEvent
,
20919 _swigc__p_wxMultiChoiceDialog
,
20920 _swigc__p_wxNavigationKeyEvent
,
20921 _swigc__p_wxNcPaintEvent
,
20922 _swigc__p_wxNotifyEvent
,
20923 _swigc__p_wxNumberEntryDialog
,
20924 _swigc__p_wxObject
,
20925 _swigc__p_wxPCXHandler
,
20926 _swigc__p_wxPNGHandler
,
20927 _swigc__p_wxPNMHandler
,
20928 _swigc__p_wxPageSetupDialog
,
20929 _swigc__p_wxPageSetupDialogData
,
20930 _swigc__p_wxPaintEvent
,
20931 _swigc__p_wxPaletteChangedEvent
,
20933 _swigc__p_wxPaperSize
,
20934 _swigc__p_wxPasswordEntryDialog
,
20936 _swigc__p_wxPopupWindow
,
20937 _swigc__p_wxPreviewCanvas
,
20938 _swigc__p_wxPreviewControlBar
,
20939 _swigc__p_wxPreviewFrame
,
20940 _swigc__p_wxPrintData
,
20941 _swigc__p_wxPrintDialog
,
20942 _swigc__p_wxPrintDialogData
,
20943 _swigc__p_wxPrintPreview
,
20944 _swigc__p_wxPrinter
,
20945 _swigc__p_wxProgressDialog
,
20947 _swigc__p_wxPyAuiDockArt
,
20948 _swigc__p_wxPyAuiTabArt
,
20949 _swigc__p_wxPyCommandEvent
,
20950 _swigc__p_wxPyEvent
,
20951 _swigc__p_wxPyHScrolledWindow
,
20952 _swigc__p_wxPyHVScrolledWindow
,
20953 _swigc__p_wxPyHtmlListBox
,
20954 _swigc__p_wxPyImageHandler
,
20955 _swigc__p_wxPyPanel
,
20956 _swigc__p_wxPyPopupTransientWindow
,
20957 _swigc__p_wxPyPreviewControlBar
,
20958 _swigc__p_wxPyPreviewFrame
,
20959 _swigc__p_wxPyPrintPreview
,
20960 _swigc__p_wxPyPrintout
,
20961 _swigc__p_wxPyScrolledWindow
,
20962 _swigc__p_wxPySizer
,
20963 _swigc__p_wxPyTaskBarIcon
,
20964 _swigc__p_wxPyVListBox
,
20965 _swigc__p_wxPyVScrolledWindow
,
20966 _swigc__p_wxPyValidator
,
20967 _swigc__p_wxPyWindow
,
20968 _swigc__p_wxQueryLayoutInfoEvent
,
20969 _swigc__p_wxQueryNewPaletteEvent
,
20971 _swigc__p_wxSashEvent
,
20972 _swigc__p_wxSashLayoutWindow
,
20973 _swigc__p_wxSashWindow
,
20974 _swigc__p_wxScrollEvent
,
20975 _swigc__p_wxScrollWinEvent
,
20976 _swigc__p_wxScrolledWindow
,
20977 _swigc__p_wxSetCursorEvent
,
20978 _swigc__p_wxShowEvent
,
20979 _swigc__p_wxSimpleHtmlListBox
,
20980 _swigc__p_wxSingleChoiceDialog
,
20982 _swigc__p_wxSizeEvent
,
20984 _swigc__p_wxSizerItem
,
20985 _swigc__p_wxSplashScreen
,
20986 _swigc__p_wxSplashScreenWindow
,
20987 _swigc__p_wxSplitterEvent
,
20988 _swigc__p_wxSplitterWindow
,
20989 _swigc__p_wxStaticBoxSizer
,
20990 _swigc__p_wxStatusBar
,
20991 _swigc__p_wxStdDialogButtonSizer
,
20992 _swigc__p_wxString
,
20993 _swigc__p_wxSysColourChangedEvent
,
20994 _swigc__p_wxTGAHandler
,
20995 _swigc__p_wxTIFFHandler
,
20996 _swigc__p_wxTaskBarIconEvent
,
20997 _swigc__p_wxTextEntryDialog
,
20998 _swigc__p_wxTipWindow
,
20999 _swigc__p_wxTopLevelWindow
,
21000 _swigc__p_wxUpdateUIEvent
,
21001 _swigc__p_wxValidator
,
21002 _swigc__p_wxWindow
,
21003 _swigc__p_wxWindowCreateEvent
,
21004 _swigc__p_wxWindowDestroyEvent
,
21005 _swigc__p_wxXPMHandler
,
21009 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
21011 static swig_const_info swig_const_table
[] = {
21012 {0, 0, 0, 0.0, 0, 0}};
21017 /* -----------------------------------------------------------------------------
21018 * Type initialization:
21019 * This problem is tough by the requirement that no dynamic
21020 * memory is used. Also, since swig_type_info structures store pointers to
21021 * swig_cast_info structures and swig_cast_info structures store pointers back
21022 * to swig_type_info structures, we need some lookup code at initialization.
21023 * The idea is that swig generates all the structures that are needed.
21024 * The runtime then collects these partially filled structures.
21025 * The SWIG_InitializeModule function takes these initial arrays out of
21026 * swig_module, and does all the lookup, filling in the swig_module.types
21027 * array with the correct data and linking the correct swig_cast_info
21028 * structures together.
21030 * The generated swig_type_info structures are assigned staticly to an initial
21031 * array. We just loop though that array, and handle each type individually.
21032 * First we lookup if this type has been already loaded, and if so, use the
21033 * loaded structure instead of the generated one. Then we have to fill in the
21034 * cast linked list. The cast data is initially stored in something like a
21035 * two-dimensional array. Each row corresponds to a type (there are the same
21036 * number of rows as there are in the swig_type_initial array). Each entry in
21037 * a column is one of the swig_cast_info structures for that type.
21038 * The cast_initial array is actually an array of arrays, because each row has
21039 * a variable number of columns. So to actually build the cast linked list,
21040 * we find the array of casts associated with the type, and loop through it
21041 * adding the casts to the list. The one last trick we need to do is making
21042 * sure the type pointer in the swig_cast_info struct is correct.
21044 * First off, we lookup the cast->type name to see if it is already loaded.
21045 * There are three cases to handle:
21046 * 1) If the cast->type has already been loaded AND the type we are adding
21047 * casting info to has not been loaded (it is in this module), THEN we
21048 * replace the cast->type pointer with the type pointer that has already
21050 * 2) If BOTH types (the one we are adding casting info to, and the
21051 * cast->type) are loaded, THEN the cast info has already been loaded by
21052 * the previous module so we just ignore it.
21053 * 3) Finally, if cast->type has not already been loaded, then we add that
21054 * swig_cast_info to the linked list (because the cast->type) pointer will
21056 * ----------------------------------------------------------------------------- */
21066 #define SWIGRUNTIME_DEBUG
21070 SWIG_InitializeModule(void *clientdata
) {
21072 swig_module_info
*module_head
;
21073 static int init_run
= 0;
21075 clientdata
= clientdata
;
21077 if (init_run
) return;
21080 /* Initialize the swig_module */
21081 swig_module
.type_initial
= swig_type_initial
;
21082 swig_module
.cast_initial
= swig_cast_initial
;
21084 /* Try and load any already created modules */
21085 module_head
= SWIG_GetModule(clientdata
);
21087 swig_module
.next
= module_head
->next
;
21088 module_head
->next
= &swig_module
;
21090 /* This is the first module loaded */
21091 swig_module
.next
= &swig_module
;
21092 SWIG_SetModule(clientdata
, &swig_module
);
21095 /* Now work on filling in swig_module.types */
21096 #ifdef SWIGRUNTIME_DEBUG
21097 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
21099 for (i
= 0; i
< swig_module
.size
; ++i
) {
21100 swig_type_info
*type
= 0;
21101 swig_type_info
*ret
;
21102 swig_cast_info
*cast
;
21104 #ifdef SWIGRUNTIME_DEBUG
21105 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
21108 /* if there is another module already loaded */
21109 if (swig_module
.next
!= &swig_module
) {
21110 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
21113 /* Overwrite clientdata field */
21114 #ifdef SWIGRUNTIME_DEBUG
21115 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
21117 if (swig_module
.type_initial
[i
]->clientdata
) {
21118 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
21119 #ifdef SWIGRUNTIME_DEBUG
21120 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
21124 type
= swig_module
.type_initial
[i
];
21127 /* Insert casting types */
21128 cast
= swig_module
.cast_initial
[i
];
21129 while (cast
->type
) {
21130 /* Don't need to add information already in the list */
21132 #ifdef SWIGRUNTIME_DEBUG
21133 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
21135 if (swig_module
.next
!= &swig_module
) {
21136 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
21137 #ifdef SWIGRUNTIME_DEBUG
21138 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
21142 if (type
== swig_module
.type_initial
[i
]) {
21143 #ifdef SWIGRUNTIME_DEBUG
21144 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
21149 /* Check for casting already in the list */
21150 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
21151 #ifdef SWIGRUNTIME_DEBUG
21152 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
21154 if (!ocast
) ret
= 0;
21159 #ifdef SWIGRUNTIME_DEBUG
21160 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
21163 type
->cast
->prev
= cast
;
21164 cast
->next
= type
->cast
;
21170 /* Set entry in modules->types array equal to the type */
21171 swig_module
.types
[i
] = type
;
21173 swig_module
.types
[i
] = 0;
21175 #ifdef SWIGRUNTIME_DEBUG
21176 printf("**** SWIG_InitializeModule: Cast List ******\n");
21177 for (i
= 0; i
< swig_module
.size
; ++i
) {
21179 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
21180 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
21181 while (cast
->type
) {
21182 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
21186 printf("---- Total casts: %d\n",j
);
21188 printf("**** SWIG_InitializeModule: Cast List ******\n");
21192 /* This function will propagate the clientdata field of type to
21193 * any new swig_type_info structures that have been added into the list
21194 * of equivalent types. It is like calling
21195 * SWIG_TypeClientData(type, clientdata) a second time.
21198 SWIG_PropagateClientData(void) {
21200 swig_cast_info
*equiv
;
21201 static int init_run
= 0;
21203 if (init_run
) return;
21206 for (i
= 0; i
< swig_module
.size
; i
++) {
21207 if (swig_module
.types
[i
]->clientdata
) {
21208 equiv
= swig_module
.types
[i
]->cast
;
21210 if (!equiv
->converter
) {
21211 if (equiv
->type
&& !equiv
->type
->clientdata
)
21212 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
21214 equiv
= equiv
->next
;
21234 /* Python-specific SWIG API */
21235 #define SWIG_newvarlink() SWIG_Python_newvarlink()
21236 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
21237 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
21239 /* -----------------------------------------------------------------------------
21240 * global variable support code.
21241 * ----------------------------------------------------------------------------- */
21243 typedef struct swig_globalvar
{
21244 char *name
; /* Name of global variable */
21245 PyObject
*(*get_attr
)(void); /* Return the current value */
21246 int (*set_attr
)(PyObject
*); /* Set the value */
21247 struct swig_globalvar
*next
;
21250 typedef struct swig_varlinkobject
{
21252 swig_globalvar
*vars
;
21253 } swig_varlinkobject
;
21255 SWIGINTERN PyObject
*
21256 swig_varlink_repr(swig_varlinkobject
*SWIGUNUSEDPARM(v
)) {
21257 return PyString_FromString("<Swig global variables>");
21260 SWIGINTERN PyObject
*
21261 swig_varlink_str(swig_varlinkobject
*v
) {
21262 PyObject
*str
= PyString_FromString("(");
21263 swig_globalvar
*var
;
21264 for (var
= v
->vars
; var
; var
=var
->next
) {
21265 PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
));
21266 if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", "));
21268 PyString_ConcatAndDel(&str
,PyString_FromString(")"));
21273 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) {
21274 PyObject
*str
= swig_varlink_str(v
);
21275 fprintf(fp
,"Swig global variables ");
21276 fprintf(fp
,"%s\n", PyString_AsString(str
));
21282 swig_varlink_dealloc(swig_varlinkobject
*v
) {
21283 swig_globalvar
*var
= v
->vars
;
21285 swig_globalvar
*n
= var
->next
;
21292 SWIGINTERN PyObject
*
21293 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
21294 PyObject
*res
= NULL
;
21295 swig_globalvar
*var
= v
->vars
;
21297 if (strcmp(var
->name
,n
) == 0) {
21298 res
= (*var
->get_attr
)();
21303 if (res
== NULL
&& !PyErr_Occurred()) {
21304 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
21310 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
21312 swig_globalvar
*var
= v
->vars
;
21314 if (strcmp(var
->name
,n
) == 0) {
21315 res
= (*var
->set_attr
)(p
);
21320 if (res
== 1 && !PyErr_Occurred()) {
21321 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
21326 SWIGINTERN PyTypeObject
*
21327 swig_varlink_type(void) {
21328 static char varlink__doc__
[] = "Swig var link object";
21329 static PyTypeObject varlink_type
;
21330 static int type_init
= 0;
21332 const PyTypeObject tmp
21334 PyObject_HEAD_INIT(NULL
)
21335 0, /* Number of items in variable part (ob_size) */
21336 (char *)"swigvarlink", /* Type name (tp_name) */
21337 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
21338 0, /* Itemsize (tp_itemsize) */
21339 (destructor
) swig_varlink_dealloc
, /* Deallocator (tp_dealloc) */
21340 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
21341 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
21342 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
21343 0, /* tp_compare */
21344 (reprfunc
) swig_varlink_repr
, /* tp_repr */
21345 0, /* tp_as_number */
21346 0, /* tp_as_sequence */
21347 0, /* tp_as_mapping */
21350 (reprfunc
)swig_varlink_str
, /* tp_str */
21351 0, /* tp_getattro */
21352 0, /* tp_setattro */
21353 0, /* tp_as_buffer */
21355 varlink__doc__
, /* tp_doc */
21356 0, /* tp_traverse */
21358 0, /* tp_richcompare */
21359 0, /* tp_weaklistoffset */
21360 #if PY_VERSION_HEX >= 0x02020000
21361 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
21363 #if PY_VERSION_HEX >= 0x02030000
21366 #ifdef COUNT_ALLOCS
21367 0,0,0,0 /* tp_alloc -> tp_next */
21370 varlink_type
= tmp
;
21371 varlink_type
.ob_type
= &PyType_Type
;
21374 return &varlink_type
;
21377 /* Create a variable linking object for use later */
21378 SWIGINTERN PyObject
*
21379 SWIG_Python_newvarlink(void) {
21380 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
21384 return ((PyObject
*) result
);
21388 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
21389 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
21390 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
21392 size_t size
= strlen(name
)+1;
21393 gv
->name
= (char *)malloc(size
);
21395 strncpy(gv
->name
,name
,size
);
21396 gv
->get_attr
= get_attr
;
21397 gv
->set_attr
= set_attr
;
21398 gv
->next
= v
->vars
;
21404 SWIGINTERN PyObject
*
21406 static PyObject
*_SWIG_globals
= 0;
21407 if (!_SWIG_globals
) _SWIG_globals
= SWIG_newvarlink();
21408 return _SWIG_globals
;
21411 /* -----------------------------------------------------------------------------
21412 * constants/methods manipulation
21413 * ----------------------------------------------------------------------------- */
21415 /* Install Constants */
21417 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
21420 for (i
= 0; constants
[i
].type
; ++i
) {
21421 switch(constants
[i
].type
) {
21422 case SWIG_PY_POINTER
:
21423 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
21425 case SWIG_PY_BINARY
:
21426 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
21433 PyDict_SetItemString(d
, constants
[i
].name
, obj
);
21439 /* -----------------------------------------------------------------------------*/
21440 /* Fix SwigMethods to carry the callback ptrs when needed */
21441 /* -----------------------------------------------------------------------------*/
21444 SWIG_Python_FixMethods(PyMethodDef
*methods
,
21445 swig_const_info
*const_table
,
21446 swig_type_info
**types
,
21447 swig_type_info
**types_initial
) {
21449 for (i
= 0; methods
[i
].ml_name
; ++i
) {
21450 const char *c
= methods
[i
].ml_doc
;
21451 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
21453 swig_const_info
*ci
= 0;
21454 const char *name
= c
+ 10;
21455 for (j
= 0; const_table
[j
].type
; ++j
) {
21456 if (strncmp(const_table
[j
].name
, name
,
21457 strlen(const_table
[j
].name
)) == 0) {
21458 ci
= &(const_table
[j
]);
21463 size_t shift
= (ci
->ptype
) - types
;
21464 swig_type_info
*ty
= types_initial
[shift
];
21465 size_t ldoc
= (c
- methods
[i
].ml_doc
);
21466 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
21467 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
21470 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
21472 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
21474 strncpy(buff
, "swig_ptr: ", 10);
21476 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
21477 methods
[i
].ml_doc
= ndoc
;
21489 /* -----------------------------------------------------------------------------*
21490 * Partial Init method
21491 * -----------------------------------------------------------------------------*/
21496 SWIGEXPORT
void SWIG_init(void) {
21499 /* Fix SwigMethods to carry the callback ptrs when needed */
21500 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
21502 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
21503 d
= PyModule_GetDict(m
);
21505 SWIG_InitializeModule(0);
21506 SWIG_InstallConstants(d
,swig_const_table
);
21509 SWIG_Python_SetConstant(d
, "AUI_DOCK_NONE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_NONE
)));
21510 SWIG_Python_SetConstant(d
, "AUI_DOCK_TOP",SWIG_From_int(static_cast< int >(wxAUI_DOCK_TOP
)));
21511 SWIG_Python_SetConstant(d
, "AUI_DOCK_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_RIGHT
)));
21512 SWIG_Python_SetConstant(d
, "AUI_DOCK_BOTTOM",SWIG_From_int(static_cast< int >(wxAUI_DOCK_BOTTOM
)));
21513 SWIG_Python_SetConstant(d
, "AUI_DOCK_LEFT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_LEFT
)));
21514 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTER",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTER
)));
21515 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTRE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTRE
)));
21516 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_FLOATING",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_FLOATING
)));
21517 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_ACTIVE_PANE",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_ACTIVE_PANE
)));
21518 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_DRAG",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_DRAG
)));
21519 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_HINT
)));
21520 SWIG_Python_SetConstant(d
, "AUI_MGR_VENETIAN_BLINDS_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_VENETIAN_BLINDS_HINT
)));
21521 SWIG_Python_SetConstant(d
, "AUI_MGR_RECTANGLE_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_RECTANGLE_HINT
)));
21522 SWIG_Python_SetConstant(d
, "AUI_MGR_HINT_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_HINT_FADE
)));
21523 SWIG_Python_SetConstant(d
, "AUI_MGR_NO_VENETIAN_BLINDS_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_NO_VENETIAN_BLINDS_FADE
)));
21524 SWIG_Python_SetConstant(d
, "AUI_MGR_DEFAULT",SWIG_From_int(static_cast< int >(wxAUI_MGR_DEFAULT
)));
21525 SWIG_Python_SetConstant(d
, "AUI_DOCKART_SASH_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_SASH_SIZE
)));
21526 SWIG_Python_SetConstant(d
, "AUI_DOCKART_CAPTION_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_CAPTION_SIZE
)));
21527 SWIG_Python_SetConstant(d
, "AUI_DOCKART_GRIPPER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_GRIPPER_SIZE
)));
21528 SWIG_Python_SetConstant(d
, "AUI_DOCKART_PANE_BORDER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_PANE_BORDER_SIZE
)));
21529 SWIG_Python_SetConstant(d
, "AUI_DOCKART_PANE_BUTTON_SIZE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_PANE_BUTTON_SIZE
)));
21530 SWIG_Python_SetConstant(d
, "AUI_DOCKART_BACKGROUND_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_BACKGROUND_COLOUR
)));
21531 SWIG_Python_SetConstant(d
, "AUI_DOCKART_SASH_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_SASH_COLOUR
)));
21532 SWIG_Python_SetConstant(d
, "AUI_DOCKART_ACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_ACTIVE_CAPTION_COLOUR
)));
21533 SWIG_Python_SetConstant(d
, "AUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR
)));
21534 SWIG_Python_SetConstant(d
, "AUI_DOCKART_INACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_INACTIVE_CAPTION_COLOUR
)));
21535 SWIG_Python_SetConstant(d
, "AUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR
)));
21536 SWIG_Python_SetConstant(d
, "AUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR
)));
21537 SWIG_Python_SetConstant(d
, "AUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR
)));
21538 SWIG_Python_SetConstant(d
, "AUI_DOCKART_BORDER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_BORDER_COLOUR
)));
21539 SWIG_Python_SetConstant(d
, "AUI_DOCKART_GRIPPER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_GRIPPER_COLOUR
)));
21540 SWIG_Python_SetConstant(d
, "AUI_DOCKART_CAPTION_FONT",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_CAPTION_FONT
)));
21541 SWIG_Python_SetConstant(d
, "AUI_DOCKART_GRADIENT_TYPE",SWIG_From_int(static_cast< int >(wxAUI_DOCKART_GRADIENT_TYPE
)));
21542 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_NONE",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_NONE
)));
21543 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_VERTICAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_VERTICAL
)));
21544 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_HORIZONTAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_HORIZONTAL
)));
21545 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_NORMAL",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_NORMAL
)));
21546 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_HOVER",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_HOVER
)));
21547 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_PRESSED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_PRESSED
)));
21548 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_DISABLED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_DISABLED
)));
21549 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_HIDDEN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_HIDDEN
)));
21550 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_CHECKED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_CHECKED
)));
21551 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CLOSE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CLOSE
)));
21552 SWIG_Python_SetConstant(d
, "AUI_BUTTON_MAXIMIZE_RESTORE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_MAXIMIZE_RESTORE
)));
21553 SWIG_Python_SetConstant(d
, "AUI_BUTTON_MINIMIZE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_MINIMIZE
)));
21554 SWIG_Python_SetConstant(d
, "AUI_BUTTON_PIN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_PIN
)));
21555 SWIG_Python_SetConstant(d
, "AUI_BUTTON_OPTIONS",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_OPTIONS
)));
21556 SWIG_Python_SetConstant(d
, "AUI_BUTTON_WINDOWLIST",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_WINDOWLIST
)));
21557 SWIG_Python_SetConstant(d
, "AUI_BUTTON_LEFT",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_LEFT
)));
21558 SWIG_Python_SetConstant(d
, "AUI_BUTTON_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_RIGHT
)));
21559 SWIG_Python_SetConstant(d
, "AUI_BUTTON_UP",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_UP
)));
21560 SWIG_Python_SetConstant(d
, "AUI_BUTTON_DOWN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_DOWN
)));
21561 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM1",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM1
)));
21562 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM2",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM2
)));
21563 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM3",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM3
)));
21564 SWIG_Python_SetConstant(d
, "AUI_INSERT_PANE",SWIG_From_int(static_cast< int >(wxAUI_INSERT_PANE
)));
21565 SWIG_Python_SetConstant(d
, "AUI_INSERT_ROW",SWIG_From_int(static_cast< int >(wxAUI_INSERT_ROW
)));
21566 SWIG_Python_SetConstant(d
, "AUI_INSERT_DOCK",SWIG_From_int(static_cast< int >(wxAUI_INSERT_DOCK
)));
21567 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals());
21568 SWIG_addvarlink(SWIG_globals(),(char*)"AuiNullDockInfo",AuiNullDockInfo_get
, AuiNullDockInfo_set
);
21569 SWIG_addvarlink(SWIG_globals(),(char*)"AuiNullPaneInfo",AuiNullPaneInfo_get
, AuiNullPaneInfo_set
);
21570 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionFloating",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionFloating
)));
21571 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionHidden",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionHidden
)));
21572 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionLeftDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionLeftDockable
)));
21573 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionRightDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionRightDockable
)));
21574 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionTopDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionTopDockable
)));
21575 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionBottomDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionBottomDockable
)));
21576 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionFloatable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionFloatable
)));
21577 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionMovable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionMovable
)));
21578 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionResizable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionResizable
)));
21579 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionPaneBorder",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionPaneBorder
)));
21580 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionCaption",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionCaption
)));
21581 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionGripper",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionGripper
)));
21582 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionDestroyOnClose",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionDestroyOnClose
)));
21583 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionToolbar",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionToolbar
)));
21584 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionActive",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionActive
)));
21585 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionGripperTop",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionGripperTop
)));
21586 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionMaximized",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionMaximized
)));
21587 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonClose",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonClose
)));
21588 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonMaximize",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonMaximize
)));
21589 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonMinimize",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonMinimize
)));
21590 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonPin",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonPin
)));
21591 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonCustom1",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonCustom1
)));
21592 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonCustom2",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonCustom2
)));
21593 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonCustom3",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonCustom3
)));
21594 SWIG_Python_SetConstant(d
, "AuiPaneInfo_savedHiddenState",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::savedHiddenState
)));
21595 SWIG_Python_SetConstant(d
, "AuiPaneInfo_actionPane",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::actionPane
)));
21596 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeCaption",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeCaption
)));
21597 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeGripper",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeGripper
)));
21598 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeDock",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeDock
)));
21599 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeDockSizer",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeDockSizer
)));
21600 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePane",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePane
)));
21601 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePaneSizer",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePaneSizer
)));
21602 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeBackground",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeBackground
)));
21603 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePaneBorder",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePaneBorder
)));
21604 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePaneButton",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePaneButton
)));
21605 PyDict_SetItemString(d
, "wxEVT_AUI_PANE_BUTTON", PyInt_FromLong(wxEVT_AUI_PANE_BUTTON
));
21606 PyDict_SetItemString(d
, "wxEVT_AUI_PANE_CLOSE", PyInt_FromLong(wxEVT_AUI_PANE_CLOSE
));
21607 PyDict_SetItemString(d
, "wxEVT_AUI_PANE_MAXIMIZE", PyInt_FromLong(wxEVT_AUI_PANE_MAXIMIZE
));
21608 PyDict_SetItemString(d
, "wxEVT_AUI_PANE_RESTORE", PyInt_FromLong(wxEVT_AUI_PANE_RESTORE
));
21609 PyDict_SetItemString(d
, "wxEVT_AUI_RENDER", PyInt_FromLong(wxEVT_AUI_RENDER
));
21610 PyDict_SetItemString(d
, "wxEVT_AUI_FIND_MANAGER", PyInt_FromLong(wxEVT_AUI_FIND_MANAGER
));
21611 SWIG_Python_SetConstant(d
, "AUI_NB_TOP",SWIG_From_int(static_cast< int >(wxAUI_NB_TOP
)));
21612 SWIG_Python_SetConstant(d
, "AUI_NB_LEFT",SWIG_From_int(static_cast< int >(wxAUI_NB_LEFT
)));
21613 SWIG_Python_SetConstant(d
, "AUI_NB_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_NB_RIGHT
)));
21614 SWIG_Python_SetConstant(d
, "AUI_NB_BOTTOM",SWIG_From_int(static_cast< int >(wxAUI_NB_BOTTOM
)));
21615 SWIG_Python_SetConstant(d
, "AUI_NB_TAB_SPLIT",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_SPLIT
)));
21616 SWIG_Python_SetConstant(d
, "AUI_NB_TAB_MOVE",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_MOVE
)));
21617 SWIG_Python_SetConstant(d
, "AUI_NB_TAB_EXTERNAL_MOVE",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_EXTERNAL_MOVE
)));
21618 SWIG_Python_SetConstant(d
, "AUI_NB_TAB_FIXED_WIDTH",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_FIXED_WIDTH
)));
21619 SWIG_Python_SetConstant(d
, "AUI_NB_SCROLL_BUTTONS",SWIG_From_int(static_cast< int >(wxAUI_NB_SCROLL_BUTTONS
)));
21620 SWIG_Python_SetConstant(d
, "AUI_NB_WINDOWLIST_BUTTON",SWIG_From_int(static_cast< int >(wxAUI_NB_WINDOWLIST_BUTTON
)));
21621 SWIG_Python_SetConstant(d
, "AUI_NB_CLOSE_BUTTON",SWIG_From_int(static_cast< int >(wxAUI_NB_CLOSE_BUTTON
)));
21622 SWIG_Python_SetConstant(d
, "AUI_NB_CLOSE_ON_ACTIVE_TAB",SWIG_From_int(static_cast< int >(wxAUI_NB_CLOSE_ON_ACTIVE_TAB
)));
21623 SWIG_Python_SetConstant(d
, "AUI_NB_CLOSE_ON_ALL_TABS",SWIG_From_int(static_cast< int >(wxAUI_NB_CLOSE_ON_ALL_TABS
)));
21624 SWIG_Python_SetConstant(d
, "AUI_NB_DEFAULT_STYLE",SWIG_From_int(static_cast< int >(wxAUI_NB_DEFAULT_STYLE
)));
21625 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE
));
21626 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED
));
21627 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING
));
21628 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_BUTTON", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_BUTTON
));
21629 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG
));
21630 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_END_DRAG", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG
));
21631 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION
));
21632 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND
));