1 /* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
5 * This file is not intended to be easily readable and contains a number of
6 * coding conventions designed to improve portability and efficiency. Do not make
7 * changes to this file unless you know what you are doing--modify the SWIG
8 * interface file instead.
9 * ----------------------------------------------------------------------------- */
12 #define SWIG_PYTHON_DIRECTOR_NO_VTABLE
15 template<class T
> class SwigValueWrapper
{
18 SwigValueWrapper() : tt(0) { }
19 SwigValueWrapper(const SwigValueWrapper
<T
>& rhs
) : tt(new T(*rhs
.tt
)) { }
20 SwigValueWrapper(const T
& t
) : tt(new T(t
)) { }
21 ~SwigValueWrapper() { delete tt
; }
22 SwigValueWrapper
& operator=(const T
& t
) { delete tt
; tt
= new T(t
); return *this; }
23 operator T
&() const { return *tt
; }
24 T
*operator&() { return tt
; }
26 SwigValueWrapper
& operator=(const SwigValueWrapper
<T
>& rhs
);
30 /* -----------------------------------------------------------------------------
31 * This section contains generic SWIG labels for method/variable
32 * declarations/attributes, and other compiler dependent labels.
33 * ----------------------------------------------------------------------------- */
35 /* template workaround for compilers that cannot correctly implement the C++ standard */
36 #ifndef SWIGTEMPLATEDISAMBIGUATOR
37 # if defined(__SUNPRO_CC)
38 # if (__SUNPRO_CC <= 0x560)
39 # define SWIGTEMPLATEDISAMBIGUATOR template
41 # define SWIGTEMPLATEDISAMBIGUATOR
44 # define SWIGTEMPLATEDISAMBIGUATOR
48 /* inline attribute */
50 # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
51 # define SWIGINLINE inline
57 /* attribute recognised by some compilers to avoid 'unused' warnings */
59 # if defined(__GNUC__)
60 # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
61 # define SWIGUNUSED __attribute__ ((__unused__))
66 # define SWIGUNUSED __attribute__ ((__unused__))
72 #ifndef SWIGUNUSEDPARM
74 # define SWIGUNUSEDPARM(p)
76 # define SWIGUNUSEDPARM(p) p SWIGUNUSED
80 /* internal SWIG method */
82 # define SWIGINTERN static SWIGUNUSED
85 /* internal inline SWIG method */
86 #ifndef SWIGINTERNINLINE
87 # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
90 /* exporting methods */
91 #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
92 # ifndef GCC_HASCLASSVISIBILITY
93 # define GCC_HASCLASSVISIBILITY
98 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
99 # if defined(STATIC_LINKED)
102 # define SWIGEXPORT __declspec(dllexport)
105 # if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
106 # define SWIGEXPORT __attribute__ ((visibility("default")))
113 /* calling conventions for Windows */
115 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
116 # define SWIGSTDCALL __stdcall
122 /* Deal with Microsoft's attempt at deprecating C standard runtime functions */
123 #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER)
124 # define _CRT_SECURE_NO_DEPRECATE
128 /* Python.h has to appear first */
131 /* -----------------------------------------------------------------------------
134 * This file contains generic CAPI SWIG runtime support for pointer
136 * ----------------------------------------------------------------------------- */
138 /* This should only be incremented when either the layout of swig_type_info changes,
139 or for whatever reason, the runtime changes incompatibly */
140 #define SWIG_RUNTIME_VERSION "2"
142 /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
143 #ifdef SWIG_TYPE_TABLE
144 # define SWIG_QUOTE_STRING(x) #x
145 # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
146 # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
148 # define SWIG_TYPE_TABLE_NAME
152 You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
153 creating a static or dynamic library from the swig runtime code.
154 In 99.9% of the cases, swig just needs to declare them as 'static'.
156 But only do this if is strictly necessary, ie, if you have problems
157 with your compiler or so.
161 # define SWIGRUNTIME SWIGINTERN
164 #ifndef SWIGRUNTIMEINLINE
165 # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
168 /* Generic buffer size */
169 #ifndef SWIG_BUFFER_SIZE
170 # define SWIG_BUFFER_SIZE 1024
173 /* Flags for pointer conversions */
174 #define SWIG_POINTER_DISOWN 0x1
176 /* Flags for new pointer objects */
177 #define SWIG_POINTER_OWN 0x1
181 Flags/methods for returning states.
183 The swig conversion methods, as ConvertPtr, return and integer
184 that tells if the conversion was successful or not. And if not,
185 an error code can be returned (see swigerrors.swg for the codes).
187 Use the following macros/flags to set or process the returning
190 In old swig versions, you usually write code as:
192 if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
198 Now you can be more explicit as:
200 int res = SWIG_ConvertPtr(obj,vptr,ty.flags);
201 if (SWIG_IsOK(res)) {
207 that seems to be the same, but now you can also do
210 int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags);
211 if (SWIG_IsOK(res)) {
213 if (SWIG_IsNewObj(res) {
223 I.e., now SWIG_ConvertPtr can return new objects and you can
224 identify the case and take care of the deallocation. Of course that
225 requires also to SWIG_ConvertPtr to return new result values, as
227 int SWIG_ConvertPtr(obj, ptr,...) {
229 if (<need new object>) {
230 *ptr = <ptr to new allocated object>;
233 *ptr = <ptr to old object>;
241 Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
242 more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the
245 Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
246 allows to return the 'cast rank', for example, if you have this
253 food(1) // cast rank '1' (1 -> 1.0)
254 fooi(1) // cast rank '0'
256 just use the SWIG_AddCast()/SWIG_CheckState()
261 #define SWIG_ERROR (-1)
262 #define SWIG_IsOK(r) (r >= 0)
263 #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
265 /* The CastRankLimit says how many bits are used for the cast rank */
266 #define SWIG_CASTRANKLIMIT (1 << 8)
267 /* The NewMask denotes the object was created (using new/malloc) */
268 #define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
269 /* The TmpMask is for in/out typemaps that use temporal objects */
270 #define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
271 /* Simple returning values */
272 #define SWIG_BADOBJ (SWIG_ERROR)
273 #define SWIG_OLDOBJ (SWIG_OK)
274 #define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
275 #define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
276 /* Check, add and del mask methods */
277 #define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
278 #define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
279 #define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
280 #define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
281 #define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
282 #define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
286 #if defined(SWIG_CASTRANK_MODE)
287 # ifndef SWIG_TypeRank
288 # define SWIG_TypeRank unsigned long
290 # ifndef SWIG_MAXCASTRANK /* Default cast allowed */
291 # define SWIG_MAXCASTRANK (2)
293 # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
294 # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
295 SWIGINTERNINLINE
int SWIG_AddCast(int r
) {
296 return SWIG_IsOK(r
) ? ((SWIG_CastRank(r
) < SWIG_MAXCASTRANK
) ? (r
+ 1) : SWIG_ERROR
) : r
;
298 SWIGINTERNINLINE
int SWIG_CheckState(int r
) {
299 return SWIG_IsOK(r
) ? SWIG_CastRank(r
) + 1 : 0;
301 #else /* no cast-rank mode */
302 # define SWIG_AddCast
303 # define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
315 typedef void *(*swig_converter_func
)(void *);
316 typedef struct swig_type_info
*(*swig_dycast_func
)(void **);
318 /* Structure to store inforomation on one type */
319 typedef struct swig_type_info
{
320 const char *name
; /* mangled name of this type */
321 const char *str
; /* human readable name of this type */
322 swig_dycast_func dcast
; /* dynamic cast function down a hierarchy */
323 struct swig_cast_info
*cast
; /* linked list of types that can cast into this type */
324 void *clientdata
; /* language specific type data */
325 int owndata
; /* flag if the structure owns the clientdata */
328 /* Structure to store a type and conversion function used for casting */
329 typedef struct swig_cast_info
{
330 swig_type_info
*type
; /* pointer to type that is equivalent to this type */
331 swig_converter_func converter
; /* function to cast the void pointers */
332 struct swig_cast_info
*next
; /* pointer to next cast in linked list */
333 struct swig_cast_info
*prev
; /* pointer to the previous cast */
336 /* Structure used to store module information
337 * Each module generates one structure like this, and the runtime collects
338 * all of these structures and stores them in a circularly linked list.*/
339 typedef struct swig_module_info
{
340 swig_type_info
**types
; /* Array of pointers to swig_type_info structures that are in this module */
341 size_t size
; /* Number of types in this module */
342 struct swig_module_info
*next
; /* Pointer to next element in circularly linked list */
343 swig_type_info
**type_initial
; /* Array of initially generated type structures */
344 swig_cast_info
**cast_initial
; /* Array of initially generated casting structures */
345 void *clientdata
; /* Language specific module data */
349 Compare two type names skipping the space characters, therefore
350 "char*" == "char *" and "Class<int>" == "Class<int >", etc.
352 Return 0 when the two name types are equivalent, as in
353 strncmp, but skipping ' '.
356 SWIG_TypeNameComp(const char *f1
, const char *l1
,
357 const char *f2
, const char *l2
) {
358 for (;(f1
!= l1
) && (f2
!= l2
); ++f1
, ++f2
) {
359 while ((*f1
== ' ') && (f1
!= l1
)) ++f1
;
360 while ((*f2
== ' ') && (f2
!= l2
)) ++f2
;
361 if (*f1
!= *f2
) return (*f1
> *f2
) ? 1 : -1;
363 return (l1
- f1
) - (l2
- f2
);
367 Check type equivalence in a name list like <name1>|<name2>|...
368 Return 0 if not equal, 1 if equal
371 SWIG_TypeEquiv(const char *nb
, const char *tb
) {
373 const char* te
= tb
+ strlen(tb
);
375 while (!equiv
&& *ne
) {
376 for (nb
= ne
; *ne
; ++ne
) {
377 if (*ne
== '|') break;
379 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
386 Check type equivalence in a name list like <name1>|<name2>|...
387 Return 0 if equal, -1 if nb < tb, 1 if nb > tb
390 SWIG_TypeCompare(const char *nb
, const char *tb
) {
392 const char* te
= tb
+ strlen(tb
);
394 while (!equiv
&& *ne
) {
395 for (nb
= ne
; *ne
; ++ne
) {
396 if (*ne
== '|') break;
398 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
405 /* think of this as a c++ template<> or a scheme macro */
406 #define SWIG_TypeCheck_Template(comparison, ty) \
408 swig_cast_info *iter = ty->cast; \
411 if (iter == ty->cast) return iter; \
412 /* Move iter to the top of the linked list */ \
413 iter->prev->next = iter->next; \
415 iter->next->prev = iter->prev; \
416 iter->next = ty->cast; \
418 if (ty->cast) ty->cast->prev = iter; \
430 SWIGRUNTIME swig_cast_info
*
431 SWIG_TypeCheck(const char *c
, swig_type_info
*ty
) {
432 SWIG_TypeCheck_Template(strcmp(iter
->type
->name
, c
) == 0, ty
);
435 /* Same as previous function, except strcmp is replaced with a pointer comparison */
436 SWIGRUNTIME swig_cast_info
*
437 SWIG_TypeCheckStruct(swig_type_info
*from
, swig_type_info
*into
) {
438 SWIG_TypeCheck_Template(iter
->type
== from
, into
);
442 Cast a pointer up an inheritance hierarchy
444 SWIGRUNTIMEINLINE
void *
445 SWIG_TypeCast(swig_cast_info
*ty
, void *ptr
) {
446 return ((!ty
) || (!ty
->converter
)) ? ptr
: (*ty
->converter
)(ptr
);
450 Dynamic pointer casting. Down an inheritance hierarchy
452 SWIGRUNTIME swig_type_info
*
453 SWIG_TypeDynamicCast(swig_type_info
*ty
, void **ptr
) {
454 swig_type_info
*lastty
= ty
;
455 if (!ty
|| !ty
->dcast
) return ty
;
456 while (ty
&& (ty
->dcast
)) {
457 ty
= (*ty
->dcast
)(ptr
);
464 Return the name associated with this type
466 SWIGRUNTIMEINLINE
const char *
467 SWIG_TypeName(const swig_type_info
*ty
) {
472 Return the pretty name associated with this type,
473 that is an unmangled type name in a form presentable to the user.
475 SWIGRUNTIME
const char *
476 SWIG_TypePrettyName(const swig_type_info
*type
) {
477 /* The "str" field contains the equivalent pretty names of the
478 type, separated by vertical-bar characters. We choose
479 to print the last name, as it is often (?) the most
481 if (!type
) return NULL
;
482 if (type
->str
!= NULL
) {
483 const char *last_name
= type
->str
;
485 for (s
= type
->str
; *s
; s
++)
486 if (*s
== '|') last_name
= s
+1;
494 Set the clientdata field for a type
497 SWIG_TypeClientData(swig_type_info
*ti
, void *clientdata
) {
498 swig_cast_info
*cast
= ti
->cast
;
499 /* if (ti->clientdata == clientdata) return; */
500 ti
->clientdata
= clientdata
;
503 if (!cast
->converter
) {
504 swig_type_info
*tc
= cast
->type
;
505 if (!tc
->clientdata
) {
506 SWIG_TypeClientData(tc
, clientdata
);
513 SWIG_TypeNewClientData(swig_type_info
*ti
, void *clientdata
) {
514 SWIG_TypeClientData(ti
, clientdata
);
519 Search for a swig_type_info structure only by mangled name
520 Search is a O(log #types)
522 We start searching at module start, and finish searching when start == end.
523 Note: if start == end at the beginning of the function, we go all the way around
526 SWIGRUNTIME swig_type_info
*
527 SWIG_MangledTypeQueryModule(swig_module_info
*start
,
528 swig_module_info
*end
,
530 swig_module_info
*iter
= start
;
533 register size_t l
= 0;
534 register size_t r
= iter
->size
- 1;
536 /* since l+r >= 0, we can (>> 1) instead (/ 2) */
537 register size_t i
= (l
+ r
) >> 1;
538 const char *iname
= iter
->types
[i
]->name
;
540 register int compare
= strcmp(name
, iname
);
542 return iter
->types
[i
];
543 } else if (compare
< 0) {
549 } else if (compare
> 0) {
553 break; /* should never happen */
558 } while (iter
!= end
);
563 Search for a swig_type_info structure for either a mangled name or a human readable name.
564 It first searches the mangled names of the types, which is a O(log #types)
565 If a type is not found it then searches the human readable names, which is O(#types).
567 We start searching at module start, and finish searching when start == end.
568 Note: if start == end at the beginning of the function, we go all the way around
571 SWIGRUNTIME swig_type_info
*
572 SWIG_TypeQueryModule(swig_module_info
*start
,
573 swig_module_info
*end
,
575 /* STEP 1: Search the name field using binary search */
576 swig_type_info
*ret
= SWIG_MangledTypeQueryModule(start
, end
, name
);
580 /* STEP 2: If the type hasn't been found, do a complete search
581 of the str field (the human readable name) */
582 swig_module_info
*iter
= start
;
584 register size_t i
= 0;
585 for (; i
< iter
->size
; ++i
) {
586 if (iter
->types
[i
]->str
&& (SWIG_TypeEquiv(iter
->types
[i
]->str
, name
)))
587 return iter
->types
[i
];
590 } while (iter
!= end
);
593 /* neither found a match */
598 Pack binary data into a string
601 SWIG_PackData(char *c
, void *ptr
, size_t sz
) {
602 static const char hex
[17] = "0123456789abcdef";
603 register const unsigned char *u
= (unsigned char *) ptr
;
604 register const unsigned char *eu
= u
+ sz
;
605 for (; u
!= eu
; ++u
) {
606 register unsigned char uu
= *u
;
607 *(c
++) = hex
[(uu
& 0xf0) >> 4];
608 *(c
++) = hex
[uu
& 0xf];
614 Unpack binary data from a string
616 SWIGRUNTIME
const char *
617 SWIG_UnpackData(const char *c
, void *ptr
, size_t sz
) {
618 register unsigned char *u
= (unsigned char *) ptr
;
619 register const unsigned char *eu
= u
+ sz
;
620 for (; u
!= eu
; ++u
) {
621 register char d
= *(c
++);
622 register unsigned char uu
;
623 if ((d
>= '0') && (d
<= '9'))
624 uu
= ((d
- '0') << 4);
625 else if ((d
>= 'a') && (d
<= 'f'))
626 uu
= ((d
- ('a'-10)) << 4);
630 if ((d
>= '0') && (d
<= '9'))
632 else if ((d
>= 'a') && (d
<= 'f'))
633 uu
|= (d
- ('a'-10));
642 Pack 'void *' into a string buffer.
645 SWIG_PackVoidPtr(char *buff
, void *ptr
, const char *name
, size_t bsz
) {
647 if ((2*sizeof(void *) + 2) > bsz
) return 0;
649 r
= SWIG_PackData(r
,&ptr
,sizeof(void *));
650 if (strlen(name
) + 1 > (bsz
- (r
- buff
))) return 0;
655 SWIGRUNTIME
const char *
656 SWIG_UnpackVoidPtr(const char *c
, void **ptr
, const char *name
) {
658 if (strcmp(c
,"NULL") == 0) {
665 return SWIG_UnpackData(++c
,ptr
,sizeof(void *));
669 SWIG_PackDataName(char *buff
, void *ptr
, size_t sz
, const char *name
, size_t bsz
) {
671 size_t lname
= (name
? strlen(name
) : 0);
672 if ((2*sz
+ 2 + lname
) > bsz
) return 0;
674 r
= SWIG_PackData(r
,ptr
,sz
);
676 strncpy(r
,name
,lname
+1);
683 SWIGRUNTIME
const char *
684 SWIG_UnpackDataName(const char *c
, void *ptr
, size_t sz
, const char *name
) {
686 if (strcmp(c
,"NULL") == 0) {
693 return SWIG_UnpackData(++c
,ptr
,sz
);
701 #define SWIG_UnknownError -1
702 #define SWIG_IOError -2
703 #define SWIG_RuntimeError -3
704 #define SWIG_IndexError -4
705 #define SWIG_TypeError -5
706 #define SWIG_DivisionByZero -6
707 #define SWIG_OverflowError -7
708 #define SWIG_SyntaxError -8
709 #define SWIG_ValueError -9
710 #define SWIG_SystemError -10
711 #define SWIG_AttributeError -11
712 #define SWIG_MemoryError -12
713 #define SWIG_NullReferenceError -13
717 /* Python.h has to appear first */
720 /* Add PyOS_snprintf for old Pythons */
721 #if PY_VERSION_HEX < 0x02020000
722 # if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM)
723 # define PyOS_snprintf _snprintf
725 # define PyOS_snprintf snprintf
729 /* A crude PyString_FromFormat implementation for old Pythons */
730 #if PY_VERSION_HEX < 0x02020000
732 #ifndef SWIG_PYBUFFER_SIZE
733 # define SWIG_PYBUFFER_SIZE 1024
737 PyString_FromFormat(const char *fmt
, ...) {
739 char buf
[SWIG_PYBUFFER_SIZE
* 2];
742 res
= vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
744 return (res
< 0 || res
>= (int)sizeof(buf
)) ? 0 : PyString_FromString(buf
);
748 /* Add PyObject_Del for old Pythons */
749 #if PY_VERSION_HEX < 0x01060000
750 # define PyObject_Del(op) PyMem_DEL((op))
753 # define PyObject_DEL PyObject_Del
756 /* A crude PyExc_StopIteration exception for old Pythons */
757 #if PY_VERSION_HEX < 0x02020000
758 # ifndef PyExc_StopIteration
759 # define PyExc_StopIteration PyExc_RuntimeError
761 # ifndef PyObject_GenericGetAttr
762 # define PyObject_GenericGetAttr 0
765 /* Py_NotImplemented is defined in 2.1 and up. */
766 #if PY_VERSION_HEX < 0x02010000
767 # ifndef Py_NotImplemented
768 # define Py_NotImplemented PyExc_RuntimeError
773 /* A crude PyString_AsStringAndSize implementation for old Pythons */
774 #if PY_VERSION_HEX < 0x02010000
775 # ifndef PyString_AsStringAndSize
776 # define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;}
780 /* PySequence_Size for old Pythons */
781 #if PY_VERSION_HEX < 0x02000000
782 # ifndef PySequence_Size
783 # define PySequence_Size PySequence_Length
788 /* PyBool_FromLong for old Pythons */
789 #if PY_VERSION_HEX < 0x02030000
791 PyObject
*PyBool_FromLong(long ok
)
793 PyObject
*result
= ok
? Py_True
: Py_False
;
800 /* -----------------------------------------------------------------------------
802 * ----------------------------------------------------------------------------- */
804 SWIGRUNTIME PyObject
*
805 SWIG_Python_ErrorType(int code
) {
808 case SWIG_MemoryError
:
809 type
= PyExc_MemoryError
;
812 type
= PyExc_IOError
;
814 case SWIG_RuntimeError
:
815 type
= PyExc_RuntimeError
;
817 case SWIG_IndexError
:
818 type
= PyExc_IndexError
;
821 type
= PyExc_TypeError
;
823 case SWIG_DivisionByZero
:
824 type
= PyExc_ZeroDivisionError
;
826 case SWIG_OverflowError
:
827 type
= PyExc_OverflowError
;
829 case SWIG_SyntaxError
:
830 type
= PyExc_SyntaxError
;
832 case SWIG_ValueError
:
833 type
= PyExc_ValueError
;
835 case SWIG_SystemError
:
836 type
= PyExc_SystemError
;
838 case SWIG_AttributeError
:
839 type
= PyExc_AttributeError
;
842 type
= PyExc_RuntimeError
;
849 SWIG_Python_AddErrorMsg(const char* mesg
)
853 PyObject
*traceback
= 0;
855 if (PyErr_Occurred()) PyErr_Fetch(&type
, &value
, &traceback
);
857 PyObject
*old_str
= PyObject_Str(value
);
860 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
864 PyErr_Format(PyExc_RuntimeError
, mesg
);
870 #if defined(SWIG_PYTHON_NO_THREADS)
871 # if defined(SWIG_PYTHON_THREADS)
872 # undef SWIG_PYTHON_THREADS
875 #if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */
876 # if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
877 # if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */
878 # define SWIG_PYTHON_USE_GIL
881 # if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */
882 # ifndef SWIG_PYTHON_INITIALIZE_THREADS
883 # define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
885 # ifdef __cplusplus /* C++ code */
886 class SWIG_Python_Thread_Block
{
888 PyGILState_STATE state
;
890 void end() { if (status
) { PyGILState_Release(state
); status
= false;} }
891 SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
892 ~SWIG_Python_Thread_Block() { end(); }
894 class SWIG_Python_Thread_Allow
{
898 void end() { if (status
) { PyEval_RestoreThread(save
); status
= false; }}
899 SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
900 ~SWIG_Python_Thread_Allow() { end(); }
902 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
903 # define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
904 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
905 # define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
907 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
908 # define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
909 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
910 # define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
912 # else /* Old thread way, not implemented, user must provide it */
913 # if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
914 # define SWIG_PYTHON_INITIALIZE_THREADS
916 # if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
917 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
919 # if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
920 # define SWIG_PYTHON_THREAD_END_BLOCK
922 # if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
923 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
925 # if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
926 # define SWIG_PYTHON_THREAD_END_ALLOW
929 #else /* No thread support */
930 # define SWIG_PYTHON_INITIALIZE_THREADS
931 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
932 # define SWIG_PYTHON_THREAD_END_BLOCK
933 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
934 # define SWIG_PYTHON_THREAD_END_ALLOW
937 /* -----------------------------------------------------------------------------
938 * Python API portion that goes into the runtime
939 * ----------------------------------------------------------------------------- */
948 /* -----------------------------------------------------------------------------
949 * Constant declarations
950 * ----------------------------------------------------------------------------- */
953 #define SWIG_PY_POINTER 4
954 #define SWIG_PY_BINARY 5
956 /* Constant information structure */
957 typedef struct swig_const_info
{
963 swig_type_info
**ptype
;
974 /* -----------------------------------------------------------------------------
975 * See the LICENSE file for information on copyright, usage and redistribution
976 * of SWIG, and the README file for authors - http://www.swig.org/release.html.
980 * This file contains the runtime support for Python modules
981 * and includes code for managing global variables and pointer
984 * ----------------------------------------------------------------------------- */
986 /* Common SWIG API */
988 #if PY_VERSION_HEX < 0x02050000
989 typedef int Py_ssize_t
;
992 /* for raw pointers */
993 #define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
994 #define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
995 #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
996 #define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags)
997 #define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
998 #define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
999 #define swig_owntype int
1001 /* for raw packed data */
1002 #define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1003 #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1005 /* for class or struct pointers */
1006 #define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
1007 #define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
1009 /* for C or C++ function pointers */
1010 #define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
1011 #define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0)
1013 /* for C++ member pointers, ie, member methods */
1014 #define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1015 #define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1020 #define SWIG_GetModule(clientdata) SWIG_Python_GetModule()
1021 #define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
1022 #define SWIG_NewClientData(obj) PySwigClientData_New(obj)
1024 #define SWIG_SetErrorObj SWIG_Python_SetErrorObj
1025 #define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
1026 #define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
1027 #define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
1028 #define SWIG_fail goto fail
1031 /* Runtime API implementation */
1033 /* Error manipulation */
1036 SWIG_Python_SetErrorObj(PyObject
*errtype
, PyObject
*obj
) {
1037 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1038 PyErr_SetObject(errtype
, obj
);
1040 SWIG_PYTHON_THREAD_END_BLOCK
;
1044 SWIG_Python_SetErrorMsg(PyObject
*errtype
, const char *msg
) {
1045 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1046 PyErr_SetString(errtype
, (char *) msg
);
1047 SWIG_PYTHON_THREAD_END_BLOCK
;
1050 #define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
1052 /* Set a constant value */
1055 SWIG_Python_SetConstant(PyObject
*d
, const char *name
, PyObject
*obj
) {
1056 PyDict_SetItemString(d
, (char*) name
, obj
);
1060 /* Append a value to the result obj */
1062 SWIGINTERN PyObject
*
1063 SWIG_Python_AppendOutput(PyObject
* result
, PyObject
* obj
) {
1064 #if !defined(SWIG_PYTHON_OUTPUT_TUPLE)
1067 } else if (result
== Py_None
) {
1071 if (!PyList_Check(result
)) {
1072 PyObject
*o2
= result
;
1073 result
= PyList_New(1);
1074 PyList_SetItem(result
, 0, o2
);
1076 PyList_Append(result
,obj
);
1085 } else if (result
== Py_None
) {
1089 if (!PyTuple_Check(result
)) {
1091 result
= PyTuple_New(1);
1092 PyTuple_SET_ITEM(result
, 0, o2
);
1094 o3
= PyTuple_New(1);
1095 PyTuple_SET_ITEM(o3
, 0, obj
);
1097 result
= PySequence_Concat(o2
, o3
);
1105 /* Unpack the argument tuple */
1108 SWIG_Python_UnpackTuple(PyObject
*args
, const char *name
, int min
, int max
, PyObject
**objs
)
1114 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got none",
1115 name
, (min
== max
? "" : "at least "), min
);
1119 if (!PyTuple_Check(args
)) {
1120 PyErr_SetString(PyExc_SystemError
, "UnpackTuple() argument list is not a tuple");
1123 register int l
= PyTuple_GET_SIZE(args
);
1125 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1126 name
, (min
== max
? "" : "at least "), min
, l
);
1128 } else if (l
> max
) {
1129 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1130 name
, (min
== max
? "" : "at most "), max
, l
);
1134 for (i
= 0; i
< l
; ++i
) {
1135 objs
[i
] = PyTuple_GET_ITEM(args
, i
);
1137 for (; l
< max
; ++l
) {
1145 /* A functor is a function object with one single object argument */
1146 #if PY_VERSION_HEX >= 0x02020000
1147 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
1149 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj);
1153 Helper for static pointer initialization for both C and C++ code, for example
1154 static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...);
1157 #define SWIG_STATIC_POINTER(var) var
1159 #define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
1162 /* -----------------------------------------------------------------------------
1163 * Pointer declarations
1164 * ----------------------------------------------------------------------------- */
1166 /* Flags for new pointer objects */
1167 #define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
1168 #define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
1170 #define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
1179 /* How to access Py_None */
1180 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
1181 # ifndef SWIG_PYTHON_NO_BUILD_NONE
1182 # ifndef SWIG_PYTHON_BUILD_NONE
1183 # define SWIG_PYTHON_BUILD_NONE
1188 #ifdef SWIG_PYTHON_BUILD_NONE
1191 # define Py_None SWIG_Py_None()
1193 SWIGRUNTIMEINLINE PyObject
*
1196 PyObject
*none
= Py_BuildValue("");
1200 SWIGRUNTIME PyObject
*
1203 static PyObject
*SWIG_STATIC_POINTER(none
) = _SWIG_Py_None();
1208 /* The python void return value */
1210 SWIGRUNTIMEINLINE PyObject
*
1213 PyObject
*none
= Py_None
;
1218 /* PySwigClientData */
1229 SWIGRUNTIMEINLINE
int
1230 SWIG_Python_CheckImplicit(swig_type_info
*ty
)
1232 PySwigClientData
*data
= (PySwigClientData
*)ty
->clientdata
;
1233 return data
? data
->implicitconv
: 0;
1236 SWIGRUNTIMEINLINE PyObject
*
1237 SWIG_Python_ExceptionType(swig_type_info
*desc
) {
1238 PySwigClientData
*data
= desc
? (PySwigClientData
*) desc
->clientdata
: 0;
1239 PyObject
*klass
= data
? data
->klass
: 0;
1240 return (klass
? klass
: PyExc_RuntimeError
);
1244 SWIGRUNTIME PySwigClientData
*
1245 PySwigClientData_New(PyObject
* obj
)
1250 PySwigClientData
*data
= (PySwigClientData
*)malloc(sizeof(PySwigClientData
));
1251 /* the klass element */
1253 Py_INCREF(data
->klass
);
1254 /* the newraw method and newargs arguments used to create a new raw instance */
1255 if (PyClass_Check(obj
)) {
1257 data
->newargs
= obj
;
1260 #if (PY_VERSION_HEX < 0x02020000)
1263 data
->newraw
= PyObject_GetAttrString(data
->klass
, (char *)"__new__");
1266 Py_INCREF(data
->newraw
);
1267 data
->newargs
= PyTuple_New(1);
1268 PyTuple_SetItem(data
->newargs
, 0, obj
);
1270 data
->newargs
= obj
;
1272 Py_INCREF(data
->newargs
);
1274 /* the destroy method, aka as the C++ delete method */
1275 data
->destroy
= PyObject_GetAttrString(data
->klass
, (char *)"__swig_destroy__");
1276 if (PyErr_Occurred()) {
1280 if (data
->destroy
) {
1282 Py_INCREF(data
->destroy
);
1283 flags
= PyCFunction_GET_FLAGS(data
->destroy
);
1285 data
->delargs
= !(flags
& (METH_O
));
1292 data
->implicitconv
= 0;
1298 PySwigClientData_Del(PySwigClientData
* data
)
1300 Py_XDECREF(data
->newraw
);
1301 Py_XDECREF(data
->newargs
);
1302 Py_XDECREF(data
->destroy
);
1305 /* =============== PySwigObject =====================*/
1315 SWIGRUNTIME PyObject
*
1316 PySwigObject_long(PySwigObject
*v
)
1318 return PyLong_FromVoidPtr(v
->ptr
);
1321 SWIGRUNTIME PyObject
*
1322 PySwigObject_format(const char* fmt
, PySwigObject
*v
)
1324 PyObject
*res
= NULL
;
1325 PyObject
*args
= PyTuple_New(1);
1327 if (PyTuple_SetItem(args
, 0, PySwigObject_long(v
)) == 0) {
1328 PyObject
*ofmt
= PyString_FromString(fmt
);
1330 res
= PyString_Format(ofmt
,args
);
1339 SWIGRUNTIME PyObject
*
1340 PySwigObject_oct(PySwigObject
*v
)
1342 return PySwigObject_format("%o",v
);
1345 SWIGRUNTIME PyObject
*
1346 PySwigObject_hex(PySwigObject
*v
)
1348 return PySwigObject_format("%x",v
);
1351 SWIGRUNTIME PyObject
*
1353 PySwigObject_repr(PySwigObject
*v
)
1355 PySwigObject_repr(PySwigObject
*v
, PyObject
*args
)
1358 const char *name
= SWIG_TypePrettyName(v
->ty
);
1359 PyObject
*hex
= PySwigObject_hex(v
);
1360 PyObject
*repr
= PyString_FromFormat("<Swig Object of type '%s' at 0x%s>", name
, PyString_AsString(hex
));
1364 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
);
1366 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
, args
);
1368 PyString_ConcatAndDel(&repr
,nrep
);
1374 PySwigObject_print(PySwigObject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1377 PyObject
*repr
= PySwigObject_repr(v
);
1379 PyObject
*repr
= PySwigObject_repr(v
, NULL
);
1382 fputs(PyString_AsString(repr
), fp
);
1390 SWIGRUNTIME PyObject
*
1391 PySwigObject_str(PySwigObject
*v
)
1393 char result
[SWIG_BUFFER_SIZE
];
1394 return SWIG_PackVoidPtr(result
, v
->ptr
, v
->ty
->name
, sizeof(result
)) ?
1395 PyString_FromString(result
) : 0;
1399 PySwigObject_compare(PySwigObject
*v
, PySwigObject
*w
)
1403 return (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1406 SWIGRUNTIME PyTypeObject
* _PySwigObject_type(void);
1408 SWIGRUNTIME PyTypeObject
*
1409 PySwigObject_type(void) {
1410 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigObject_type();
1414 SWIGRUNTIMEINLINE
int
1415 PySwigObject_Check(PyObject
*op
) {
1416 return ((op
)->ob_type
== PySwigObject_type())
1417 || (strcmp((op
)->ob_type
->tp_name
,"PySwigObject") == 0);
1420 SWIGRUNTIME PyObject
*
1421 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
);
1424 PySwigObject_dealloc(PyObject
*v
)
1426 PySwigObject
*sobj
= (PySwigObject
*) v
;
1427 PyObject
*next
= sobj
->next
;
1429 swig_type_info
*ty
= sobj
->ty
;
1430 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
1431 PyObject
*destroy
= data
? data
->destroy
: 0;
1433 /* destroy is always a VARARGS method */
1435 if (data
->delargs
) {
1436 /* we need to create a temporal object to carry the destroy operation */
1437 PyObject
*tmp
= PySwigObject_New(sobj
->ptr
, ty
, 0);
1438 res
= SWIG_Python_CallFunctor(destroy
, tmp
);
1441 PyCFunction meth
= PyCFunction_GET_FUNCTION(destroy
);
1442 PyObject
*mself
= PyCFunction_GET_SELF(destroy
);
1443 res
= ((*meth
)(mself
, v
));
1447 const char *name
= SWIG_TypePrettyName(ty
);
1448 #if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
1449 printf("swig/python detected a memory leak of type '%s', no destructor found.\n", name
);
1457 SWIGRUNTIME PyObject
*
1458 PySwigObject_append(PyObject
* v
, PyObject
* next
)
1460 PySwigObject
*sobj
= (PySwigObject
*) v
;
1463 if (!PyArg_ParseTuple(next
,(char *)"O:append", &tmp
)) return NULL
;
1466 if (!PySwigObject_Check(next
)) {
1471 return SWIG_Py_Void();
1474 SWIGRUNTIME PyObject
*
1476 PySwigObject_next(PyObject
* v
)
1478 PySwigObject_next(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1481 PySwigObject
*sobj
= (PySwigObject
*) v
;
1483 Py_INCREF(sobj
->next
);
1486 return SWIG_Py_Void();
1490 SWIGINTERN PyObject
*
1492 PySwigObject_disown(PyObject
*v
)
1494 PySwigObject_disown(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1497 PySwigObject
*sobj
= (PySwigObject
*)v
;
1499 return SWIG_Py_Void();
1502 SWIGINTERN PyObject
*
1504 PySwigObject_acquire(PyObject
*v
)
1506 PySwigObject_acquire(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1509 PySwigObject
*sobj
= (PySwigObject
*)v
;
1510 sobj
->own
= SWIG_POINTER_OWN
;
1511 return SWIG_Py_Void();
1514 SWIGINTERN PyObject
*
1515 PySwigObject_own(PyObject
*v
, PyObject
*args
)
1518 #if (PY_VERSION_HEX < 0x02020000)
1519 if (!PyArg_ParseTuple(args
,(char *)"|O:own",&val
))
1521 if (!PyArg_UnpackTuple(args
, (char *)"own", 0, 1, &val
))
1528 PySwigObject
*sobj
= (PySwigObject
*)v
;
1529 PyObject
*obj
= PyBool_FromLong(sobj
->own
);
1532 if (PyObject_IsTrue(val
)) {
1533 PySwigObject_acquire(v
);
1535 PySwigObject_disown(v
);
1538 if (PyObject_IsTrue(val
)) {
1539 PySwigObject_acquire(v
,args
);
1541 PySwigObject_disown(v
,args
);
1551 swigobject_methods
[] = {
1552 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_NOARGS
, (char *)"releases ownership of the pointer"},
1553 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_NOARGS
, (char *)"aquires ownership of the pointer"},
1554 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1555 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_O
, (char *)"appends another 'this' object"},
1556 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_NOARGS
, (char *)"returns the next 'this' object"},
1557 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_NOARGS
, (char *)"returns object representation"},
1562 swigobject_methods
[] = {
1563 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_VARARGS
, (char *)"releases ownership of the pointer"},
1564 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_VARARGS
, (char *)"aquires ownership of the pointer"},
1565 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1566 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_VARARGS
, (char *)"appends another 'this' object"},
1567 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_VARARGS
, (char *)"returns the next 'this' object"},
1568 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_VARARGS
, (char *)"returns object representation"},
1573 #if PY_VERSION_HEX < 0x02020000
1574 SWIGINTERN PyObject
*
1575 PySwigObject_getattr(PySwigObject
*sobj
,char *name
)
1577 return Py_FindMethod(swigobject_methods
, (PyObject
*)sobj
, name
);
1581 SWIGRUNTIME PyTypeObject
*
1582 _PySwigObject_type(void) {
1583 static char swigobject_doc
[] = "Swig object carries a C/C++ instance pointer";
1585 static PyNumberMethods PySwigObject_as_number
= {
1586 (binaryfunc
)0, /*nb_add*/
1587 (binaryfunc
)0, /*nb_subtract*/
1588 (binaryfunc
)0, /*nb_multiply*/
1589 (binaryfunc
)0, /*nb_divide*/
1590 (binaryfunc
)0, /*nb_remainder*/
1591 (binaryfunc
)0, /*nb_divmod*/
1592 (ternaryfunc
)0,/*nb_power*/
1593 (unaryfunc
)0, /*nb_negative*/
1594 (unaryfunc
)0, /*nb_positive*/
1595 (unaryfunc
)0, /*nb_absolute*/
1596 (inquiry
)0, /*nb_nonzero*/
1603 (coercion
)0, /*nb_coerce*/
1604 (unaryfunc
)PySwigObject_long
, /*nb_int*/
1605 (unaryfunc
)PySwigObject_long
, /*nb_long*/
1606 (unaryfunc
)0, /*nb_float*/
1607 (unaryfunc
)PySwigObject_oct
, /*nb_oct*/
1608 (unaryfunc
)PySwigObject_hex
, /*nb_hex*/
1609 #if PY_VERSION_HEX >= 0x02020000
1610 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
1611 #elif PY_VERSION_HEX >= 0x02000000
1612 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
1616 static PyTypeObject pyswigobject_type
;
1617 static int type_init
= 0;
1619 const PyTypeObject tmp
1621 PyObject_HEAD_INIT(NULL
)
1623 (char *)"PySwigObject", /* tp_name */
1624 sizeof(PySwigObject
), /* tp_basicsize */
1625 0, /* tp_itemsize */
1626 (destructor
)PySwigObject_dealloc
, /* tp_dealloc */
1627 (printfunc
)PySwigObject_print
, /* tp_print */
1628 #if PY_VERSION_HEX < 0x02020000
1629 (getattrfunc
)PySwigObject_getattr
, /* tp_getattr */
1631 (getattrfunc
)0, /* tp_getattr */
1633 (setattrfunc
)0, /* tp_setattr */
1634 (cmpfunc
)PySwigObject_compare
, /* tp_compare */
1635 (reprfunc
)PySwigObject_repr
, /* tp_repr */
1636 &PySwigObject_as_number
, /* tp_as_number */
1637 0, /* tp_as_sequence */
1638 0, /* tp_as_mapping */
1639 (hashfunc
)0, /* tp_hash */
1640 (ternaryfunc
)0, /* tp_call */
1641 (reprfunc
)PySwigObject_str
, /* tp_str */
1642 PyObject_GenericGetAttr
, /* tp_getattro */
1643 0, /* tp_setattro */
1644 0, /* tp_as_buffer */
1645 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1646 swigobject_doc
, /* tp_doc */
1647 0, /* tp_traverse */
1649 0, /* tp_richcompare */
1650 0, /* tp_weaklistoffset */
1651 #if PY_VERSION_HEX >= 0x02020000
1653 0, /* tp_iternext */
1654 swigobject_methods
, /* tp_methods */
1659 0, /* tp_descr_get */
1660 0, /* tp_descr_set */
1661 0, /* tp_dictoffset */
1670 0, /* tp_subclasses */
1671 0, /* tp_weaklist */
1673 #if PY_VERSION_HEX >= 0x02030000
1677 0,0,0,0 /* tp_alloc -> tp_next */
1680 pyswigobject_type
= tmp
;
1681 pyswigobject_type
.ob_type
= &PyType_Type
;
1684 return &pyswigobject_type
;
1687 SWIGRUNTIME PyObject
*
1688 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
)
1690 PySwigObject
*sobj
= PyObject_NEW(PySwigObject
, PySwigObject_type());
1697 return (PyObject
*)sobj
;
1700 /* -----------------------------------------------------------------------------
1701 * Implements a simple Swig Packed type, and use it instead of string
1702 * ----------------------------------------------------------------------------- */
1712 PySwigPacked_print(PySwigPacked
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1714 char result
[SWIG_BUFFER_SIZE
];
1715 fputs("<Swig Packed ", fp
);
1716 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1720 fputs(v
->ty
->name
,fp
);
1725 SWIGRUNTIME PyObject
*
1726 PySwigPacked_repr(PySwigPacked
*v
)
1728 char result
[SWIG_BUFFER_SIZE
];
1729 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1730 return PyString_FromFormat("<Swig Packed at %s%s>", result
, v
->ty
->name
);
1732 return PyString_FromFormat("<Swig Packed %s>", v
->ty
->name
);
1736 SWIGRUNTIME PyObject
*
1737 PySwigPacked_str(PySwigPacked
*v
)
1739 char result
[SWIG_BUFFER_SIZE
];
1740 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))){
1741 return PyString_FromFormat("%s%s", result
, v
->ty
->name
);
1743 return PyString_FromString(v
->ty
->name
);
1748 PySwigPacked_compare(PySwigPacked
*v
, PySwigPacked
*w
)
1752 int s
= (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1753 return s
? s
: strncmp((char *)v
->pack
, (char *)w
->pack
, 2*v
->size
);
1756 SWIGRUNTIME PyTypeObject
* _PySwigPacked_type(void);
1758 SWIGRUNTIME PyTypeObject
*
1759 PySwigPacked_type(void) {
1760 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigPacked_type();
1764 SWIGRUNTIMEINLINE
int
1765 PySwigPacked_Check(PyObject
*op
) {
1766 return ((op
)->ob_type
== _PySwigPacked_type())
1767 || (strcmp((op
)->ob_type
->tp_name
,"PySwigPacked") == 0);
1771 PySwigPacked_dealloc(PyObject
*v
)
1773 if (PySwigPacked_Check(v
)) {
1774 PySwigPacked
*sobj
= (PySwigPacked
*) v
;
1780 SWIGRUNTIME PyTypeObject
*
1781 _PySwigPacked_type(void) {
1782 static char swigpacked_doc
[] = "Swig object carries a C/C++ instance pointer";
1783 static PyTypeObject pyswigpacked_type
;
1784 static int type_init
= 0;
1786 const PyTypeObject tmp
1788 PyObject_HEAD_INIT(NULL
)
1790 (char *)"PySwigPacked", /* tp_name */
1791 sizeof(PySwigPacked
), /* tp_basicsize */
1792 0, /* tp_itemsize */
1793 (destructor
)PySwigPacked_dealloc
, /* tp_dealloc */
1794 (printfunc
)PySwigPacked_print
, /* tp_print */
1795 (getattrfunc
)0, /* tp_getattr */
1796 (setattrfunc
)0, /* tp_setattr */
1797 (cmpfunc
)PySwigPacked_compare
, /* tp_compare */
1798 (reprfunc
)PySwigPacked_repr
, /* tp_repr */
1799 0, /* tp_as_number */
1800 0, /* tp_as_sequence */
1801 0, /* tp_as_mapping */
1802 (hashfunc
)0, /* tp_hash */
1803 (ternaryfunc
)0, /* tp_call */
1804 (reprfunc
)PySwigPacked_str
, /* tp_str */
1805 PyObject_GenericGetAttr
, /* tp_getattro */
1806 0, /* tp_setattro */
1807 0, /* tp_as_buffer */
1808 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1809 swigpacked_doc
, /* tp_doc */
1810 0, /* tp_traverse */
1812 0, /* tp_richcompare */
1813 0, /* tp_weaklistoffset */
1814 #if PY_VERSION_HEX >= 0x02020000
1816 0, /* tp_iternext */
1822 0, /* tp_descr_get */
1823 0, /* tp_descr_set */
1824 0, /* tp_dictoffset */
1833 0, /* tp_subclasses */
1834 0, /* tp_weaklist */
1836 #if PY_VERSION_HEX >= 0x02030000
1840 0,0,0,0 /* tp_alloc -> tp_next */
1843 pyswigpacked_type
= tmp
;
1844 pyswigpacked_type
.ob_type
= &PyType_Type
;
1847 return &pyswigpacked_type
;
1850 SWIGRUNTIME PyObject
*
1851 PySwigPacked_New(void *ptr
, size_t size
, swig_type_info
*ty
)
1853 PySwigPacked
*sobj
= PyObject_NEW(PySwigPacked
, PySwigPacked_type());
1855 void *pack
= malloc(size
);
1857 memcpy(pack
, ptr
, size
);
1862 PyObject_DEL((PyObject
*) sobj
);
1866 return (PyObject
*) sobj
;
1869 SWIGRUNTIME swig_type_info
*
1870 PySwigPacked_UnpackData(PyObject
*obj
, void *ptr
, size_t size
)
1872 if (PySwigPacked_Check(obj
)) {
1873 PySwigPacked
*sobj
= (PySwigPacked
*)obj
;
1874 if (sobj
->size
!= size
) return 0;
1875 memcpy(ptr
, sobj
->pack
, size
);
1882 /* -----------------------------------------------------------------------------
1883 * pointers/data manipulation
1884 * ----------------------------------------------------------------------------- */
1886 SWIGRUNTIMEINLINE PyObject
*
1889 return PyString_FromString("this");
1892 SWIGRUNTIME PyObject
*
1895 static PyObject
*SWIG_STATIC_POINTER(swig_this
) = _SWIG_This();
1899 /* #define SWIG_PYTHON_SLOW_GETSET_THIS */
1901 SWIGRUNTIME PySwigObject
*
1902 SWIG_Python_GetSwigThis(PyObject
*pyobj
)
1904 if (PySwigObject_Check(pyobj
)) {
1905 return (PySwigObject
*) pyobj
;
1908 #if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000))
1909 if (PyInstance_Check(pyobj
)) {
1910 obj
= _PyInstance_Lookup(pyobj
, SWIG_This());
1912 PyObject
**dictptr
= _PyObject_GetDictPtr(pyobj
);
1913 if (dictptr
!= NULL
) {
1914 PyObject
*dict
= *dictptr
;
1915 obj
= dict
? PyDict_GetItem(dict
, SWIG_This()) : 0;
1917 #ifdef PyWeakref_CheckProxy
1918 if (PyWeakref_CheckProxy(pyobj
)) {
1919 PyObject
*wobj
= PyWeakref_GET_OBJECT(pyobj
);
1920 return wobj
? SWIG_Python_GetSwigThis(wobj
) : 0;
1923 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1927 if (PyErr_Occurred()) PyErr_Clear();
1933 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1937 if (PyErr_Occurred()) PyErr_Clear();
1941 if (obj
&& !PySwigObject_Check(obj
)) {
1942 /* a PyObject is called 'this', try to get the 'real this'
1943 PySwigObject from it */
1944 return SWIG_Python_GetSwigThis(obj
);
1946 return (PySwigObject
*)obj
;
1950 /* Acquire a pointer value */
1953 SWIG_Python_AcquirePtr(PyObject
*obj
, int own
) {
1955 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1957 int oldown
= sobj
->own
;
1965 /* Convert a pointer value */
1968 SWIG_Python_ConvertPtrAndOwn(PyObject
*obj
, void **ptr
, swig_type_info
*ty
, int flags
, int *own
) {
1969 if (!obj
) return SWIG_ERROR
;
1970 if (obj
== Py_None
) {
1974 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1976 void *vptr
= sobj
->ptr
;
1978 swig_type_info
*to
= sobj
->ty
;
1980 /* no type cast needed */
1981 if (ptr
) *ptr
= vptr
;
1984 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
1986 sobj
= (PySwigObject
*)sobj
->next
;
1988 if (ptr
) *ptr
= SWIG_TypeCast(tc
,vptr
);
1993 if (ptr
) *ptr
= vptr
;
1998 if (own
) *own
= sobj
->own
;
1999 if (flags
& SWIG_POINTER_DISOWN
) {
2004 int res
= SWIG_ERROR
;
2005 if (flags
& SWIG_POINTER_IMPLICIT_CONV
) {
2006 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
2007 if (data
&& !data
->implicitconv
) {
2008 PyObject
*klass
= data
->klass
;
2011 data
->implicitconv
= 1; /* avoid recursion and call 'explicit' constructors*/
2012 impconv
= SWIG_Python_CallFunctor(klass
, obj
);
2013 data
->implicitconv
= 0;
2014 if (PyErr_Occurred()) {
2019 PySwigObject
*iobj
= SWIG_Python_GetSwigThis(impconv
);
2022 res
= SWIG_Python_ConvertPtrAndOwn((PyObject
*)iobj
, &vptr
, ty
, 0, 0);
2023 if (SWIG_IsOK(res
)) {
2026 /* transfer the ownership to 'ptr' */
2028 res
= SWIG_AddCast(res
);
2029 res
= SWIG_AddNewMask(res
);
2031 res
= SWIG_AddCast(res
);
2045 /* Convert a function ptr value */
2048 SWIG_Python_ConvertFunctionPtr(PyObject
*obj
, void **ptr
, swig_type_info
*ty
) {
2049 if (!PyCFunction_Check(obj
)) {
2050 return SWIG_ConvertPtr(obj
, ptr
, ty
, 0);
2054 /* here we get the method pointer for callbacks */
2055 const char *doc
= (((PyCFunctionObject
*)obj
) -> m_ml
-> ml_doc
);
2056 const char *desc
= doc
? strstr(doc
, "swig_ptr: ") : 0;
2058 desc
= ty
? SWIG_UnpackVoidPtr(desc
+ 10, &vptr
, ty
->name
) : 0;
2059 if (!desc
) return SWIG_ERROR
;
2062 swig_cast_info
*tc
= SWIG_TypeCheck(desc
,ty
);
2063 if (!tc
) return SWIG_ERROR
;
2064 *ptr
= SWIG_TypeCast(tc
,vptr
);
2072 /* Convert a packed value value */
2075 SWIG_Python_ConvertPacked(PyObject
*obj
, void *ptr
, size_t sz
, swig_type_info
*ty
) {
2076 swig_type_info
*to
= PySwigPacked_UnpackData(obj
, ptr
, sz
);
2077 if (!to
) return SWIG_ERROR
;
2080 /* check type cast? */
2081 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
2082 if (!tc
) return SWIG_ERROR
;
2088 /* -----------------------------------------------------------------------------
2089 * Create a new pointer object
2090 * ----------------------------------------------------------------------------- */
2093 Create a new instance object, whitout calling __init__, and set the
2097 SWIGRUNTIME PyObject
*
2098 SWIG_Python_NewShadowInstance(PySwigClientData
*data
, PyObject
*swig_this
)
2100 #if (PY_VERSION_HEX >= 0x02020000)
2102 PyObject
*newraw
= data
->newraw
;
2104 inst
= PyObject_Call(newraw
, data
->newargs
, NULL
);
2106 #if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2107 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2108 if (dictptr
!= NULL
) {
2109 PyObject
*dict
= *dictptr
;
2111 dict
= PyDict_New();
2113 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2117 PyObject
*key
= SWIG_This();
2118 PyObject_SetAttr(inst
, key
, swig_this
);
2122 PyObject
*dict
= PyDict_New();
2123 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2124 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2129 #if (PY_VERSION_HEX >= 0x02010000)
2131 PyObject
*dict
= PyDict_New();
2132 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2133 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2135 return (PyObject
*) inst
;
2137 PyInstanceObject
*inst
= PyObject_NEW(PyInstanceObject
, &PyInstance_Type
);
2141 inst
->in_class
= (PyClassObject
*)data
->newargs
;
2142 Py_INCREF(inst
->in_class
);
2143 inst
->in_dict
= PyDict_New();
2144 if (inst
->in_dict
== NULL
) {
2148 #ifdef Py_TPFLAGS_HAVE_WEAKREFS
2149 inst
->in_weakreflist
= NULL
;
2151 #ifdef Py_TPFLAGS_GC
2152 PyObject_GC_Init(inst
);
2154 PyDict_SetItem(inst
->in_dict
, SWIG_This(), swig_this
);
2155 return (PyObject
*) inst
;
2161 SWIG_Python_SetSwigThis(PyObject
*inst
, PyObject
*swig_this
)
2164 #if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2165 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2166 if (dictptr
!= NULL
) {
2169 dict
= PyDict_New();
2172 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2176 dict
= PyObject_GetAttrString(inst
, "__dict__");
2177 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2182 SWIGINTERN PyObject
*
2183 SWIG_Python_InitShadowInstance(PyObject
*args
) {
2185 if (!SWIG_Python_UnpackTuple(args
,(char*)"swiginit", 2, 2, obj
)) {
2188 PySwigObject
*sthis
= SWIG_Python_GetSwigThis(obj
[0]);
2190 PySwigObject_append((PyObject
*) sthis
, obj
[1]);
2192 SWIG_Python_SetSwigThis(obj
[0], obj
[1]);
2194 return SWIG_Py_Void();
2198 /* Create a new pointer object */
2200 SWIGRUNTIME PyObject
*
2201 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info
*type
, int flags
) {
2203 return SWIG_Py_Void();
2205 int own
= (flags
& SWIG_POINTER_OWN
) ? SWIG_POINTER_OWN
: 0;
2206 PyObject
*robj
= PySwigObject_New(ptr
, type
, own
);
2207 PySwigClientData
*clientdata
= type
? (PySwigClientData
*)(type
->clientdata
) : 0;
2208 if (clientdata
&& !(flags
& SWIG_POINTER_NOSHADOW
)) {
2209 PyObject
*inst
= SWIG_Python_NewShadowInstance(clientdata
, robj
);
2219 /* Create a new packed object */
2221 SWIGRUNTIMEINLINE PyObject
*
2222 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info
*type
) {
2223 return ptr
? PySwigPacked_New((void *) ptr
, sz
, type
) : SWIG_Py_Void();
2226 /* -----------------------------------------------------------------------------*
2228 * -----------------------------------------------------------------------------*/
2230 #ifdef SWIG_LINK_RUNTIME
2231 void *SWIG_ReturnGlobalTypeList(void *);
2234 SWIGRUNTIME swig_module_info
*
2235 SWIG_Python_GetModule(void) {
2236 static void *type_pointer
= (void *)0;
2237 /* first check if module already created */
2238 if (!type_pointer
) {
2239 #ifdef SWIG_LINK_RUNTIME
2240 type_pointer
= SWIG_ReturnGlobalTypeList((void *)0);
2242 type_pointer
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2243 (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
);
2244 if (PyErr_Occurred()) {
2246 type_pointer
= (void *)0;
2250 return (swig_module_info
*) type_pointer
;
2253 #if PY_MAJOR_VERSION < 2
2254 /* PyModule_AddObject function was introduced in Python 2.0. The following function
2255 is copied out of Python/modsupport.c in python version 2.3.4 */
2257 PyModule_AddObject(PyObject
*m
, char *name
, PyObject
*o
)
2260 if (!PyModule_Check(m
)) {
2261 PyErr_SetString(PyExc_TypeError
,
2262 "PyModule_AddObject() needs module as first arg");
2266 PyErr_SetString(PyExc_TypeError
,
2267 "PyModule_AddObject() needs non-NULL value");
2271 dict
= PyModule_GetDict(m
);
2273 /* Internal error -- modules must have a dict! */
2274 PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__",
2275 PyModule_GetName(m
));
2278 if (PyDict_SetItemString(dict
, name
, o
))
2286 SWIG_Python_DestroyModule(void *vptr
)
2288 swig_module_info
*swig_module
= (swig_module_info
*) vptr
;
2289 swig_type_info
**types
= swig_module
->types
;
2291 for (i
=0; i
< swig_module
->size
; ++i
) {
2292 swig_type_info
*ty
= types
[i
];
2294 PySwigClientData
*data
= (PySwigClientData
*) ty
->clientdata
;
2295 if (data
) PySwigClientData_Del(data
);
2298 Py_DECREF(SWIG_This());
2302 SWIG_Python_SetModule(swig_module_info
*swig_module
) {
2303 static PyMethodDef swig_empty_runtime_method_table
[] = { {NULL
, NULL
, 0, NULL
} };/* Sentinel */
2305 PyObject
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2306 swig_empty_runtime_method_table
);
2307 PyObject
*pointer
= PyCObject_FromVoidPtr((void *) swig_module
, SWIG_Python_DestroyModule
);
2308 if (pointer
&& module) {
2309 PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
);
2311 Py_XDECREF(pointer
);
2315 /* The python cached type query */
2316 SWIGRUNTIME PyObject
*
2317 SWIG_Python_TypeCache() {
2318 static PyObject
*SWIG_STATIC_POINTER(cache
) = PyDict_New();
2322 SWIGRUNTIME swig_type_info
*
2323 SWIG_Python_TypeQuery(const char *type
)
2325 PyObject
*cache
= SWIG_Python_TypeCache();
2326 PyObject
*key
= PyString_FromString(type
);
2327 PyObject
*obj
= PyDict_GetItem(cache
, key
);
2328 swig_type_info
*descriptor
;
2330 descriptor
= (swig_type_info
*) PyCObject_AsVoidPtr(obj
);
2332 swig_module_info
*swig_module
= SWIG_Python_GetModule();
2333 descriptor
= SWIG_TypeQueryModule(swig_module
, swig_module
, type
);
2335 obj
= PyCObject_FromVoidPtr(descriptor
, NULL
);
2336 PyDict_SetItem(cache
, key
, obj
);
2345 For backward compatibility only
2347 #define SWIG_POINTER_EXCEPTION 0
2348 #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
2349 #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
2352 SWIG_Python_AddErrMesg(const char* mesg
, int infront
)
2354 if (PyErr_Occurred()) {
2356 PyObject
*value
= 0;
2357 PyObject
*traceback
= 0;
2358 PyErr_Fetch(&type
, &value
, &traceback
);
2360 PyObject
*old_str
= PyObject_Str(value
);
2364 PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
));
2366 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
2377 SWIG_Python_ArgFail(int argnum
)
2379 if (PyErr_Occurred()) {
2380 /* add information about failing argument */
2382 PyOS_snprintf(mesg
, sizeof(mesg
), "argument number %d:", argnum
);
2383 return SWIG_Python_AddErrMesg(mesg
, 1);
2389 SWIGRUNTIMEINLINE
const char *
2390 PySwigObject_GetDesc(PyObject
*self
)
2392 PySwigObject
*v
= (PySwigObject
*)self
;
2393 swig_type_info
*ty
= v
? v
->ty
: 0;
2394 return ty
? ty
->str
: (char*)"";
2398 SWIG_Python_TypeError(const char *type
, PyObject
*obj
)
2401 #if defined(SWIG_COBJECT_TYPES)
2402 if (obj
&& PySwigObject_Check(obj
)) {
2403 const char *otype
= (const char *) PySwigObject_GetDesc(obj
);
2405 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, 'PySwigObject(%s)' is received",
2412 const char *otype
= (obj
? obj
->ob_type
->tp_name
: 0);
2414 PyObject
*str
= PyObject_Str(obj
);
2415 const char *cstr
= str
? PyString_AsString(str
) : 0;
2417 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s(%s)' is received",
2420 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s' is received",
2427 PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
);
2429 PyErr_Format(PyExc_TypeError
, "unexpected type is received");
2434 /* Convert a pointer value, signal an exception on a type mismatch */
2436 SWIG_Python_MustGetPtr(PyObject
*obj
, swig_type_info
*ty
, int argnum
, int flags
) {
2438 if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) {
2440 if (flags
& SWIG_POINTER_EXCEPTION
) {
2441 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
2442 SWIG_Python_ArgFail(argnum
);
2458 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
2460 #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
2464 /* -------- TYPES TABLE (BEGIN) -------- */
2466 #define SWIGTYPE_p_char swig_types[0]
2467 #define SWIGTYPE_p_form_ops_t swig_types[1]
2468 #define SWIGTYPE_p_int swig_types[2]
2469 #define SWIGTYPE_p_p_wxAuiFloatingFrame swig_types[3]
2470 #define SWIGTYPE_p_p_wxAuiNotebook swig_types[4]
2471 #define SWIGTYPE_p_p_wxAuiTabContainerButton swig_types[5]
2472 #define SWIGTYPE_p_p_wxAuiTabCtrl swig_types[6]
2473 #define SWIGTYPE_p_p_wxColourDialog swig_types[7]
2474 #define SWIGTYPE_p_p_wxControl swig_types[8]
2475 #define SWIGTYPE_p_p_wxControlWithItems swig_types[9]
2476 #define SWIGTYPE_p_p_wxDialog swig_types[10]
2477 #define SWIGTYPE_p_p_wxDirDialog swig_types[11]
2478 #define SWIGTYPE_p_p_wxFileDialog swig_types[12]
2479 #define SWIGTYPE_p_p_wxFindReplaceDialog swig_types[13]
2480 #define SWIGTYPE_p_p_wxFontDialog swig_types[14]
2481 #define SWIGTYPE_p_p_wxFrame swig_types[15]
2482 #define SWIGTYPE_p_p_wxMDIChildFrame swig_types[16]
2483 #define SWIGTYPE_p_p_wxMDIClientWindow swig_types[17]
2484 #define SWIGTYPE_p_p_wxMDIParentFrame swig_types[18]
2485 #define SWIGTYPE_p_p_wxMenuBar swig_types[19]
2486 #define SWIGTYPE_p_p_wxMessageDialog swig_types[20]
2487 #define SWIGTYPE_p_p_wxMiniFrame swig_types[21]
2488 #define SWIGTYPE_p_p_wxMultiChoiceDialog swig_types[22]
2489 #define SWIGTYPE_p_p_wxNumberEntryDialog swig_types[23]
2490 #define SWIGTYPE_p_p_wxPanel swig_types[24]
2491 #define SWIGTYPE_p_p_wxPasswordEntryDialog swig_types[25]
2492 #define SWIGTYPE_p_p_wxPopupWindow swig_types[26]
2493 #define SWIGTYPE_p_p_wxPreviewCanvas swig_types[27]
2494 #define SWIGTYPE_p_p_wxPreviewControlBar swig_types[28]
2495 #define SWIGTYPE_p_p_wxPreviewFrame swig_types[29]
2496 #define SWIGTYPE_p_p_wxProgressDialog swig_types[30]
2497 #define SWIGTYPE_p_p_wxPyHtmlListBox swig_types[31]
2498 #define SWIGTYPE_p_p_wxPyPanel swig_types[32]
2499 #define SWIGTYPE_p_p_wxPyPopupTransientWindow swig_types[33]
2500 #define SWIGTYPE_p_p_wxPyPreviewControlBar swig_types[34]
2501 #define SWIGTYPE_p_p_wxPyPreviewFrame swig_types[35]
2502 #define SWIGTYPE_p_p_wxPyScrolledWindow swig_types[36]
2503 #define SWIGTYPE_p_p_wxPyVListBox swig_types[37]
2504 #define SWIGTYPE_p_p_wxPyVScrolledWindow swig_types[38]
2505 #define SWIGTYPE_p_p_wxPyWindow swig_types[39]
2506 #define SWIGTYPE_p_p_wxSashLayoutWindow swig_types[40]
2507 #define SWIGTYPE_p_p_wxSashWindow swig_types[41]
2508 #define SWIGTYPE_p_p_wxScrolledWindow swig_types[42]
2509 #define SWIGTYPE_p_p_wxSingleChoiceDialog swig_types[43]
2510 #define SWIGTYPE_p_p_wxSplashScreen swig_types[44]
2511 #define SWIGTYPE_p_p_wxSplashScreenWindow swig_types[45]
2512 #define SWIGTYPE_p_p_wxSplitterWindow swig_types[46]
2513 #define SWIGTYPE_p_p_wxStatusBar swig_types[47]
2514 #define SWIGTYPE_p_p_wxTextEntryDialog swig_types[48]
2515 #define SWIGTYPE_p_p_wxTipWindow swig_types[49]
2516 #define SWIGTYPE_p_p_wxTopLevelWindow swig_types[50]
2517 #define SWIGTYPE_p_p_wxWindow swig_types[51]
2518 #define SWIGTYPE_p_unsigned_char swig_types[52]
2519 #define SWIGTYPE_p_unsigned_int swig_types[53]
2520 #define SWIGTYPE_p_unsigned_long swig_types[54]
2521 #define SWIGTYPE_p_wxANIHandler swig_types[55]
2522 #define SWIGTYPE_p_wxAcceleratorTable swig_types[56]
2523 #define SWIGTYPE_p_wxActivateEvent swig_types[57]
2524 #define SWIGTYPE_p_wxArrayString swig_types[58]
2525 #define SWIGTYPE_p_wxAuiDefaultDockArt swig_types[59]
2526 #define SWIGTYPE_p_wxAuiDefaultTabArt swig_types[60]
2527 #define SWIGTYPE_p_wxAuiDockArt swig_types[61]
2528 #define SWIGTYPE_p_wxAuiDockInfo swig_types[62]
2529 #define SWIGTYPE_p_wxAuiDockUIPart swig_types[63]
2530 #define SWIGTYPE_p_wxAuiFloatingFrame swig_types[64]
2531 #define SWIGTYPE_p_wxAuiManager swig_types[65]
2532 #define SWIGTYPE_p_wxAuiManagerEvent swig_types[66]
2533 #define SWIGTYPE_p_wxAuiNotebook swig_types[67]
2534 #define SWIGTYPE_p_wxAuiNotebookEvent swig_types[68]
2535 #define SWIGTYPE_p_wxAuiNotebookPage swig_types[69]
2536 #define SWIGTYPE_p_wxAuiNotebookPageArray swig_types[70]
2537 #define SWIGTYPE_p_wxAuiPaneButton swig_types[71]
2538 #define SWIGTYPE_p_wxAuiPaneButtonArray swig_types[72]
2539 #define SWIGTYPE_p_wxAuiPaneInfo swig_types[73]
2540 #define SWIGTYPE_p_wxAuiPaneInfoPtrArray swig_types[74]
2541 #define SWIGTYPE_p_wxAuiTabArt swig_types[75]
2542 #define SWIGTYPE_p_wxAuiTabContainer swig_types[76]
2543 #define SWIGTYPE_p_wxAuiTabContainerButton swig_types[77]
2544 #define SWIGTYPE_p_wxAuiTabCtrl swig_types[78]
2545 #define SWIGTYPE_p_wxBMPHandler swig_types[79]
2546 #define SWIGTYPE_p_wxBitmap swig_types[80]
2547 #define SWIGTYPE_p_wxBoxSizer swig_types[81]
2548 #define SWIGTYPE_p_wxCURHandler swig_types[82]
2549 #define SWIGTYPE_p_wxCalculateLayoutEvent swig_types[83]
2550 #define SWIGTYPE_p_wxChildFocusEvent swig_types[84]
2551 #define SWIGTYPE_p_wxClipboardTextEvent swig_types[85]
2552 #define SWIGTYPE_p_wxCloseEvent swig_types[86]
2553 #define SWIGTYPE_p_wxColor swig_types[87]
2554 #define SWIGTYPE_p_wxColour swig_types[88]
2555 #define SWIGTYPE_p_wxColourData swig_types[89]
2556 #define SWIGTYPE_p_wxColourDialog swig_types[90]
2557 #define SWIGTYPE_p_wxCommandEvent swig_types[91]
2558 #define SWIGTYPE_p_wxContextMenuEvent swig_types[92]
2559 #define SWIGTYPE_p_wxControl swig_types[93]
2560 #define SWIGTYPE_p_wxControlWithItems swig_types[94]
2561 #define SWIGTYPE_p_wxDC swig_types[95]
2562 #define SWIGTYPE_p_wxDateEvent swig_types[96]
2563 #define SWIGTYPE_p_wxDialog swig_types[97]
2564 #define SWIGTYPE_p_wxDirDialog swig_types[98]
2565 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[99]
2566 #define SWIGTYPE_p_wxDropFilesEvent swig_types[100]
2567 #define SWIGTYPE_p_wxDuplexMode swig_types[101]
2568 #define SWIGTYPE_p_wxEraseEvent swig_types[102]
2569 #define SWIGTYPE_p_wxEvent swig_types[103]
2570 #define SWIGTYPE_p_wxEvtHandler swig_types[104]
2571 #define SWIGTYPE_p_wxFSFile swig_types[105]
2572 #define SWIGTYPE_p_wxFileDialog swig_types[106]
2573 #define SWIGTYPE_p_wxFileSystem swig_types[107]
2574 #define SWIGTYPE_p_wxFindDialogEvent swig_types[108]
2575 #define SWIGTYPE_p_wxFindReplaceData swig_types[109]
2576 #define SWIGTYPE_p_wxFindReplaceDialog swig_types[110]
2577 #define SWIGTYPE_p_wxFlexGridSizer swig_types[111]
2578 #define SWIGTYPE_p_wxFocusEvent swig_types[112]
2579 #define SWIGTYPE_p_wxFont swig_types[113]
2580 #define SWIGTYPE_p_wxFontData swig_types[114]
2581 #define SWIGTYPE_p_wxFontDialog swig_types[115]
2582 #define SWIGTYPE_p_wxFrame swig_types[116]
2583 #define SWIGTYPE_p_wxGBSizerItem swig_types[117]
2584 #define SWIGTYPE_p_wxGIFHandler swig_types[118]
2585 #define SWIGTYPE_p_wxGridBagSizer swig_types[119]
2586 #define SWIGTYPE_p_wxGridSizer swig_types[120]
2587 #define SWIGTYPE_p_wxICOHandler swig_types[121]
2588 #define SWIGTYPE_p_wxIconizeEvent swig_types[122]
2589 #define SWIGTYPE_p_wxIdleEvent swig_types[123]
2590 #define SWIGTYPE_p_wxImage swig_types[124]
2591 #define SWIGTYPE_p_wxImageHandler swig_types[125]
2592 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[126]
2593 #define SWIGTYPE_p_wxInitDialogEvent swig_types[127]
2594 #define SWIGTYPE_p_wxJPEGHandler swig_types[128]
2595 #define SWIGTYPE_p_wxKeyEvent swig_types[129]
2596 #define SWIGTYPE_p_wxLayoutAlgorithm swig_types[130]
2597 #define SWIGTYPE_p_wxLayoutConstraints swig_types[131]
2598 #define SWIGTYPE_p_wxMDIChildFrame swig_types[132]
2599 #define SWIGTYPE_p_wxMDIClientWindow swig_types[133]
2600 #define SWIGTYPE_p_wxMDIParentFrame swig_types[134]
2601 #define SWIGTYPE_p_wxMaximizeEvent swig_types[135]
2602 #define SWIGTYPE_p_wxMenu swig_types[136]
2603 #define SWIGTYPE_p_wxMenuBar swig_types[137]
2604 #define SWIGTYPE_p_wxMenuEvent swig_types[138]
2605 #define SWIGTYPE_p_wxMenuItem swig_types[139]
2606 #define SWIGTYPE_p_wxMessageDialog swig_types[140]
2607 #define SWIGTYPE_p_wxMiniFrame swig_types[141]
2608 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[142]
2609 #define SWIGTYPE_p_wxMouseCaptureLostEvent swig_types[143]
2610 #define SWIGTYPE_p_wxMouseEvent swig_types[144]
2611 #define SWIGTYPE_p_wxMoveEvent swig_types[145]
2612 #define SWIGTYPE_p_wxMultiChoiceDialog swig_types[146]
2613 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[147]
2614 #define SWIGTYPE_p_wxNcPaintEvent swig_types[148]
2615 #define SWIGTYPE_p_wxNotifyEvent swig_types[149]
2616 #define SWIGTYPE_p_wxNumberEntryDialog swig_types[150]
2617 #define SWIGTYPE_p_wxObject swig_types[151]
2618 #define SWIGTYPE_p_wxPCXHandler swig_types[152]
2619 #define SWIGTYPE_p_wxPNGHandler swig_types[153]
2620 #define SWIGTYPE_p_wxPNMHandler swig_types[154]
2621 #define SWIGTYPE_p_wxPageSetupDialog swig_types[155]
2622 #define SWIGTYPE_p_wxPageSetupDialogData swig_types[156]
2623 #define SWIGTYPE_p_wxPaintEvent swig_types[157]
2624 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[158]
2625 #define SWIGTYPE_p_wxPanel swig_types[159]
2626 #define SWIGTYPE_p_wxPaperSize swig_types[160]
2627 #define SWIGTYPE_p_wxPasswordEntryDialog swig_types[161]
2628 #define SWIGTYPE_p_wxPoint swig_types[162]
2629 #define SWIGTYPE_p_wxPopupWindow swig_types[163]
2630 #define SWIGTYPE_p_wxPreviewCanvas swig_types[164]
2631 #define SWIGTYPE_p_wxPreviewControlBar swig_types[165]
2632 #define SWIGTYPE_p_wxPreviewFrame swig_types[166]
2633 #define SWIGTYPE_p_wxPrintData swig_types[167]
2634 #define SWIGTYPE_p_wxPrintDialog swig_types[168]
2635 #define SWIGTYPE_p_wxPrintDialogData swig_types[169]
2636 #define SWIGTYPE_p_wxPrintPreview swig_types[170]
2637 #define SWIGTYPE_p_wxPrinter swig_types[171]
2638 #define SWIGTYPE_p_wxProgressDialog swig_types[172]
2639 #define SWIGTYPE_p_wxPyApp swig_types[173]
2640 #define SWIGTYPE_p_wxPyAuiDockArt swig_types[174]
2641 #define SWIGTYPE_p_wxPyAuiTabArt swig_types[175]
2642 #define SWIGTYPE_p_wxPyCommandEvent swig_types[176]
2643 #define SWIGTYPE_p_wxPyEvent swig_types[177]
2644 #define SWIGTYPE_p_wxPyHtmlListBox swig_types[178]
2645 #define SWIGTYPE_p_wxPyImageHandler swig_types[179]
2646 #define SWIGTYPE_p_wxPyPanel swig_types[180]
2647 #define SWIGTYPE_p_wxPyPopupTransientWindow swig_types[181]
2648 #define SWIGTYPE_p_wxPyPreviewControlBar swig_types[182]
2649 #define SWIGTYPE_p_wxPyPreviewFrame swig_types[183]
2650 #define SWIGTYPE_p_wxPyPrintPreview swig_types[184]
2651 #define SWIGTYPE_p_wxPyPrintout swig_types[185]
2652 #define SWIGTYPE_p_wxPyScrolledWindow swig_types[186]
2653 #define SWIGTYPE_p_wxPySizer swig_types[187]
2654 #define SWIGTYPE_p_wxPyTaskBarIcon swig_types[188]
2655 #define SWIGTYPE_p_wxPyVListBox swig_types[189]
2656 #define SWIGTYPE_p_wxPyVScrolledWindow swig_types[190]
2657 #define SWIGTYPE_p_wxPyValidator swig_types[191]
2658 #define SWIGTYPE_p_wxPyWindow swig_types[192]
2659 #define SWIGTYPE_p_wxQueryLayoutInfoEvent swig_types[193]
2660 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[194]
2661 #define SWIGTYPE_p_wxRect swig_types[195]
2662 #define SWIGTYPE_p_wxSashEvent swig_types[196]
2663 #define SWIGTYPE_p_wxSashLayoutWindow swig_types[197]
2664 #define SWIGTYPE_p_wxSashWindow swig_types[198]
2665 #define SWIGTYPE_p_wxScrollEvent swig_types[199]
2666 #define SWIGTYPE_p_wxScrollWinEvent swig_types[200]
2667 #define SWIGTYPE_p_wxScrolledWindow swig_types[201]
2668 #define SWIGTYPE_p_wxSetCursorEvent swig_types[202]
2669 #define SWIGTYPE_p_wxShowEvent swig_types[203]
2670 #define SWIGTYPE_p_wxSingleChoiceDialog swig_types[204]
2671 #define SWIGTYPE_p_wxSize swig_types[205]
2672 #define SWIGTYPE_p_wxSizeEvent swig_types[206]
2673 #define SWIGTYPE_p_wxSizer swig_types[207]
2674 #define SWIGTYPE_p_wxSizerItem swig_types[208]
2675 #define SWIGTYPE_p_wxSplashScreen swig_types[209]
2676 #define SWIGTYPE_p_wxSplashScreenWindow swig_types[210]
2677 #define SWIGTYPE_p_wxSplitterEvent swig_types[211]
2678 #define SWIGTYPE_p_wxSplitterWindow swig_types[212]
2679 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[213]
2680 #define SWIGTYPE_p_wxStatusBar swig_types[214]
2681 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[215]
2682 #define SWIGTYPE_p_wxString swig_types[216]
2683 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[217]
2684 #define SWIGTYPE_p_wxTGAHandler swig_types[218]
2685 #define SWIGTYPE_p_wxTIFFHandler swig_types[219]
2686 #define SWIGTYPE_p_wxTaskBarIconEvent swig_types[220]
2687 #define SWIGTYPE_p_wxTextEntryDialog swig_types[221]
2688 #define SWIGTYPE_p_wxTipWindow swig_types[222]
2689 #define SWIGTYPE_p_wxTopLevelWindow swig_types[223]
2690 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[224]
2691 #define SWIGTYPE_p_wxValidator swig_types[225]
2692 #define SWIGTYPE_p_wxWindow swig_types[226]
2693 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[227]
2694 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[228]
2695 #define SWIGTYPE_p_wxXPMHandler swig_types[229]
2696 static swig_type_info
*swig_types
[231];
2697 static swig_module_info swig_module
= {swig_types
, 230, 0, 0, 0, 0};
2698 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2699 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
2701 /* -------- TYPES TABLE (END) -------- */
2703 #if (PY_VERSION_HEX <= 0x02000000)
2704 # if !defined(SWIG_PYTHON_CLASSIC)
2705 # error "This python version requires to use swig with the '-classic' option"
2708 #if (PY_VERSION_HEX <= 0x02020000)
2709 # error "This python version requires to use swig with the '-nomodern' option"
2711 #if (PY_VERSION_HEX <= 0x02020000)
2712 # error "This python version requires to use swig with the '-nomodernargs' option"
2715 # error "This python version requires to use swig with the '-nofastunpack' option"
2718 /*-----------------------------------------------
2720 ------------------------------------------------*/
2721 #define SWIG_init init_aui
2723 #define SWIG_name "_aui"
2725 #define SWIGVERSION 0x010329
2728 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
2729 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))
2732 #include <stdexcept>
2736 class PyObject_ptr
{
2741 PyObject_ptr() :_obj(0)
2745 PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
)
2750 PyObject_ptr(PyObject
*obj
, bool initial_ref
= true) :_obj(obj
)
2752 if (initial_ref
) Py_XINCREF(_obj
);
2755 PyObject_ptr
& operator=(const PyObject_ptr
& item
)
2757 Py_XINCREF(item
._obj
);
2768 operator PyObject
*() const
2773 PyObject
*operator->() const
2782 struct PyObject_var
: PyObject_ptr
{
2783 PyObject_var(PyObject
* obj
= 0) : PyObject_ptr(obj
, false) { }
2785 PyObject_var
& operator = (PyObject
* obj
)
2795 #include "wx/wxPython/wxPython.h"
2796 #include "wx/wxPython/pyclasses.h"
2797 #include <wx/aui/aui.h>
2800 #define SWIG_From_long PyInt_FromLong
2803 SWIGINTERNINLINE PyObject
*
2804 SWIG_From_int (int value
)
2806 return SWIG_From_long (value
);
2812 # define LLONG_MIN LONG_LONG_MIN
2815 # define LLONG_MAX LONG_LONG_MAX
2818 # define ULLONG_MAX ULONG_LONG_MAX
2823 SWIG_AsVal_long (PyObject
* obj
, long* val
)
2825 if (PyNumber_Check(obj
)) {
2826 if (val
) *val
= PyInt_AsLong(obj
);
2829 return SWIG_TypeError
;
2834 SWIG_AsVal_int (PyObject
* obj
, int *val
)
2837 int res
= SWIG_AsVal_long (obj
, &v
);
2838 if (SWIG_IsOK(res
)) {
2839 if ((v
< INT_MIN
|| v
> INT_MAX
)) {
2840 return SWIG_OverflowError
;
2842 if (val
) *val
= static_cast< int >(v
);
2850 SWIG_AsVal_bool (PyObject
*obj
, bool *val
)
2852 if (obj
== Py_True
) {
2853 if (val
) *val
= true;
2855 } else if (obj
== Py_False
) {
2856 if (val
) *val
= false;
2860 int res
= SWIG_AddCast(SWIG_AsVal_long (obj
, val
? &v
: 0));
2861 if (SWIG_IsOK(res
) && val
) *val
= v
? true : false;
2866 SWIGINTERN
void delete_wxAuiDockInfo(wxAuiDockInfo
*self
){}
2867 SWIGINTERN
void delete_wxAuiDockUIPart(wxAuiDockUIPart
*self
){}
2868 SWIGINTERN
void delete_wxAuiPaneButton(wxAuiPaneButton
*self
){}
2871 SWIG_AsVal_unsigned_SS_long (PyObject
* obj
, unsigned long* val
)
2874 if (SWIG_AsVal_long(obj
, &v
) && v
< 0) {
2875 return SWIG_TypeError
;
2878 *val
= (unsigned long)v
;
2883 SWIGINTERNINLINE
int
2884 SWIG_AsVal_size_t (PyObject
* obj
, size_t *val
)
2887 int res
= SWIG_AsVal_unsigned_SS_long (obj
, val
? &v
: 0);
2888 if (SWIG_IsOK(res
) && val
) *val
= static_cast< size_t >(v
);
2893 SWIGINTERNINLINE PyObject
*
2894 SWIG_From_unsigned_SS_long (unsigned long value
)
2896 return (value
> LONG_MAX
) ?
2897 PyLong_FromUnsignedLong(value
) : PyInt_FromLong(static_cast< long >(value
));
2901 SWIGINTERNINLINE PyObject
*
2902 SWIG_From_size_t (size_t value
)
2904 return SWIG_From_unsigned_SS_long (static_cast< unsigned long >(value
));
2908 // A wxDocArt class that knows how to forward virtuals to Python methods
2909 class wxPyAuiDockArt
: public wxAuiDefaultDockArt
2911 wxPyAuiDockArt() : wxAuiDefaultDockArt() {}
2913 DEC_PYCALLBACK_INT_INT(GetMetric
);
2914 DEC_PYCALLBACK_VOID_INTINT(SetMetric
);
2915 DEC_PYCALLBACK__INTFONT(SetFont
);
2916 DEC_PYCALLBACK_FONT_INT(GetFont
);
2917 DEC_PYCALLBACK_COLOUR_INT(GetColour
);
2918 DEC_PYCALLBACK__INTCOLOUR(SetColour
);
2920 virtual void DrawSash(wxDC
& dc
,
2926 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2927 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawSash"))) {
2928 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2929 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2930 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2931 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiO)",
2932 odc
, owin
, orientation
, orect
));
2937 wxPyEndBlockThreads(blocked
);
2939 wxAuiDefaultDockArt::DrawSash(dc
, window
, orientation
, rect
);
2942 virtual void DrawBackground(wxDC
& dc
,
2948 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2949 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBackground"))) {
2950 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2951 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2952 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2953 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiO)",
2954 odc
, owin
, orientation
, orect
));
2959 wxPyEndBlockThreads(blocked
);
2961 wxAuiDefaultDockArt::DrawBackground(dc
, window
, orientation
, rect
);
2964 virtual void DrawCaption(wxDC
& dc
,
2966 const wxString
& text
,
2968 wxAuiPaneInfo
& pane
)
2971 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2972 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawCaption"))) {
2973 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2974 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2975 PyObject
* otext
= wx2PyString(text
);
2976 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2977 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
2978 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOOOO)",
2979 odc
, owin
, otext
, orect
, opane
));
2986 wxPyEndBlockThreads(blocked
);
2988 wxAuiDefaultDockArt::DrawCaption(dc
, window
, text
, rect
, pane
);
2991 virtual void DrawGripper(wxDC
& dc
,
2994 wxAuiPaneInfo
& pane
)
2997 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2998 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawGripper"))) {
2999 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3000 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3001 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3002 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
3003 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOOO)", odc
, owin
, orect
, opane
));
3008 wxPyEndBlockThreads(blocked
);
3010 wxAuiDefaultDockArt::DrawGripper(dc
, window
, rect
, pane
);
3013 virtual void DrawBorder(wxDC
& dc
,
3016 wxAuiPaneInfo
& pane
)
3019 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3020 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBorder"))) {
3021 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3022 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3023 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3024 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
3025 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOO)", odc
, orect
, opane
));
3031 wxPyEndBlockThreads(blocked
);
3033 wxAuiDefaultDockArt::DrawBorder(dc
, window
, rect
, pane
);
3036 virtual void DrawPaneButton(wxDC
& dc
,
3041 wxAuiPaneInfo
& pane
)
3044 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3045 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawPaneButton"))) {
3046 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3047 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3048 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3049 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxAuiPaneInfo"), 0);
3050 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiIOO)",
3051 odc
, owin
, button
, button_state
,
3058 wxPyEndBlockThreads(blocked
);
3060 wxAuiDefaultDockArt::DrawPaneButton(dc
, window
, button
, button_state
, rect
, pane
);
3067 IMP_PYCALLBACK_INT_INT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, GetMetric
);
3068 IMP_PYCALLBACK_VOID_INTINT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, SetMetric
);
3069 IMP_PYCALLBACK__INTFONT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, SetFont
);
3070 IMP_PYCALLBACK_FONT_INT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, GetFont
);
3071 IMP_PYCALLBACK_COLOUR_INT(wxPyAuiDockArt
, wxAuiDefaultDockArt
, GetColour
);
3072 IMP_PYCALLBACK__INTCOLOUR(wxPyAuiDockArt
, wxAuiDefaultDockArt
, SetColour
);
3076 // A wxTabArt class that knows how to forward virtuals to Python methods
3077 class wxPyAuiTabArt
: public wxAuiDefaultTabArt
3079 wxPyAuiTabArt() : wxAuiDefaultTabArt() {}
3082 virtual void DrawBackground( wxDC
& dc
,
3084 const wxRect
& rect
)
3087 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3088 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBackground"))) {
3089 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3090 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3091 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3092 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOO)", odc
, ownd
, orect
));
3097 wxPyEndBlockThreads(blocked
);
3099 wxAuiDefaultTabArt::DrawBackground(dc
, wnd
, rect
);
3102 virtual void DrawTab( wxDC
& dc
,
3104 const wxRect
& in_rect
,
3105 const wxString
& caption
,
3107 int close_button_state
,
3108 wxRect
* out_tab_rect
,
3109 wxRect
* out_button_rect
,
3113 const char* errmsg
= "DrawTab should return a sequence containing (tab_rect, button_rect, x_extent)";
3114 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3115 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawTab"))) {
3116 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3117 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3118 PyObject
* orect
= wxPyConstructObject((void*)&in_rect
, wxT("wxRect"), 0);
3119 PyObject
* otext
= wx2PyString(caption
);
3121 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue(
3123 odc
, ownd
, orect
, otext
,
3124 (int)active
, close_button_state
));
3126 if (PySequence_Check(ro
) && PyObject_Length(ro
) == 3) {
3127 PyObject
* o1
= PySequence_GetItem(ro
, 0);
3128 PyObject
* o2
= PySequence_GetItem(ro
, 1);
3129 PyObject
* o3
= PySequence_GetItem(ro
, 2);
3130 if (!wxRect_helper(o1
, &out_tab_rect
))
3131 PyErr_SetString(PyExc_TypeError
, errmsg
);
3132 else if (!wxRect_helper(o2
, &out_button_rect
))
3133 PyErr_SetString(PyExc_TypeError
, errmsg
);
3134 else if (!PyInt_Check(o3
))
3135 PyErr_SetString(PyExc_TypeError
, errmsg
);
3137 *x_extent
= PyInt_AsLong(o3
);
3144 PyErr_SetString(PyExc_TypeError
, errmsg
);
3154 wxPyEndBlockThreads(blocked
);
3156 wxAuiDefaultTabArt::DrawTab(dc
, wnd
, in_rect
, caption
, active
, close_button_state
, out_tab_rect
, out_button_rect
, x_extent
);
3160 virtual void DrawButton( wxDC
& dc
,
3162 const wxRect
& in_rect
,
3166 const wxBitmap
& bitmap_override
,
3170 const char* errmsg
= "DrawButton should return a wxRect";
3171 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3172 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawButton"))) {
3173 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3174 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3175 PyObject
* orect
= wxPyConstructObject((void*)&in_rect
, wxT("wxRect"), 0);
3176 PyObject
* obmp
= wxPyConstructObject((void*)&bitmap_override
, wxT("wxBitmap"), 0);
3178 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("(OOOiiiO)", odc
, ownd
, orect
,
3179 bitmap_id
, button_state
, orientation
,
3182 if (!wxRect_helper(ro
, &out_rect
))
3183 PyErr_SetString(PyExc_TypeError
, errmsg
);
3192 wxPyEndBlockThreads(blocked
);
3194 wxAuiDefaultTabArt::DrawButton(dc
, wnd
, in_rect
, bitmap_id
, button_state
, orientation
, bitmap_override
, out_rect
);
3198 virtual wxSize
GetTabSize( wxDC
& dc
,
3200 const wxString
& caption
,
3202 int close_button_state
,
3206 wxSize rv
, *prv
= &rv
;
3207 const char* errmsg
= "GetTabSize should return a sequence containing (size, x_extent)";
3208 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3209 if ((found
= wxPyCBH_findCallback(m_myInst
, "GetTabSize"))) {
3210 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3211 PyObject
* ownd
= wxPyMake_wxObject(wnd
, false);
3212 PyObject
* otext
= wx2PyString(caption
);
3214 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue(
3215 "(OOOi)", odc
, ownd
, otext
, (int)active
, close_button_state
));
3217 if (PySequence_Check(ro
) && PyObject_Length(ro
) == 2) {
3218 PyObject
* o1
= PySequence_GetItem(ro
, 0);
3219 PyObject
* o2
= PySequence_GetItem(ro
, 1);
3220 if (!wxSize_helper(o1
, &prv
))
3221 PyErr_SetString(PyExc_TypeError
, errmsg
);
3222 else if (!PyInt_Check(o2
))
3223 PyErr_SetString(PyExc_TypeError
, errmsg
);
3225 *x_extent
= PyInt_AsLong(o2
);
3231 PyErr_SetString(PyExc_TypeError
, errmsg
);
3240 wxPyEndBlockThreads(blocked
);
3242 rv
= wxAuiDefaultTabArt::GetTabSize(dc
, wnd
, caption
, active
, close_button_state
, x_extent
);
3247 // virtual int ShowWindowList(
3249 // const wxArrayString& items,
3253 // virtual int GetBestTabCtrlSize(wxWindow* wnd);
3256 DEC_PYCALLBACK__FONT(SetNormalFont
);
3257 DEC_PYCALLBACK__FONT(SetSelectedFont
);
3258 DEC_PYCALLBACK__FONT(SetMeasuringFont
);
3259 DEC_PYCALLBACK_INT_WIN(GetBestTabCtrlSize
);
3265 IMP_PYCALLBACK__FONT(wxPyAuiTabArt
, wxAuiDefaultTabArt
, SetNormalFont
);
3266 IMP_PYCALLBACK__FONT(wxPyAuiTabArt
, wxAuiDefaultTabArt
, SetSelectedFont
);
3267 IMP_PYCALLBACK__FONT(wxPyAuiTabArt
, wxAuiDefaultTabArt
, SetMeasuringFont
);
3268 IMP_PYCALLBACK_INT_WIN(wxPyAuiTabArt
, wxAuiDefaultTabArt
, GetBestTabCtrlSize
);
3273 SWIGINTERN
int AuiNullDockInfo_set(PyObject
*_val
) {
3276 int res
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxAuiDockInfo
, 0 | 0);
3277 if (!SWIG_IsOK(res
)) {
3278 SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxAuiNullDockInfo""' of type '""wxAuiDockInfo""'");
3281 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxAuiNullDockInfo""' of type '""wxAuiDockInfo""'");
3283 wxAuiDockInfo
* temp
;
3284 temp
= reinterpret_cast< wxAuiDockInfo
* >(argp
);
3285 wxAuiNullDockInfo
= *temp
;
3286 if (SWIG_IsNewObj(res
)) delete temp
;
3295 SWIGINTERN PyObject
*AuiNullDockInfo_get(void) {
3296 PyObject
*pyobj
= 0;
3298 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxAuiNullDockInfo
), SWIGTYPE_p_wxAuiDockInfo
, 0 );
3303 SWIGINTERN
int AuiNullPaneInfo_set(PyObject
*_val
) {
3306 int res
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
3307 if (!SWIG_IsOK(res
)) {
3308 SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxAuiNullPaneInfo""' of type '""wxAuiPaneInfo""'");
3311 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxAuiNullPaneInfo""' of type '""wxAuiPaneInfo""'");
3313 wxAuiPaneInfo
* temp
;
3314 temp
= reinterpret_cast< wxAuiPaneInfo
* >(argp
);
3315 wxAuiNullPaneInfo
= *temp
;
3316 if (SWIG_IsNewObj(res
)) delete temp
;
3325 SWIGINTERN PyObject
*AuiNullPaneInfo_get(void) {
3326 PyObject
*pyobj
= 0;
3328 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxAuiNullPaneInfo
), SWIGTYPE_p_wxAuiPaneInfo
, 0 );
3333 SWIGINTERN PyObject
*_wrap_new_AuiPaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3334 PyObject
*resultobj
= 0;
3335 wxAuiPaneInfo
*result
= 0 ;
3337 if (!SWIG_Python_UnpackTuple(args
,"new_AuiPaneInfo",0,0,0)) SWIG_fail
;
3339 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3340 result
= (wxAuiPaneInfo
*)new wxAuiPaneInfo();
3341 wxPyEndAllowThreads(__tstate
);
3342 if (PyErr_Occurred()) SWIG_fail
;
3344 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_NEW
| 0 );
3351 SWIGINTERN PyObject
*_wrap_delete_AuiPaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3352 PyObject
*resultobj
= 0;
3353 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3356 PyObject
*swig_obj
[1] ;
3358 if (!args
) SWIG_fail
;
3360 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
3361 if (!SWIG_IsOK(res1
)) {
3362 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiPaneInfo" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
3364 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3366 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3369 wxPyEndAllowThreads(__tstate
);
3370 if (PyErr_Occurred()) SWIG_fail
;
3372 resultobj
= SWIG_Py_Void();
3379 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_SafeSet(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3380 PyObject
*resultobj
= 0;
3381 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3382 wxAuiPaneInfo arg2
;
3387 PyObject
* obj0
= 0 ;
3388 PyObject
* obj1
= 0 ;
3389 char * kwnames
[] = {
3390 (char *) "self",(char *) "source", NULL
3393 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_SafeSet",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3394 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3395 if (!SWIG_IsOK(res1
)) {
3396 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_SafeSet" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
3398 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3400 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
3401 if (!SWIG_IsOK(res2
)) {
3402 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_SafeSet" "', expected argument " "2"" of type '" "wxAuiPaneInfo""'");
3405 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiPaneInfo_SafeSet" "', expected argument " "2"" of type '" "wxAuiPaneInfo""'");
3407 wxAuiPaneInfo
* temp
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
3409 if (SWIG_IsNewObj(res2
)) delete temp
;
3413 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3414 (arg1
)->SafeSet(arg2
);
3415 wxPyEndAllowThreads(__tstate
);
3416 if (PyErr_Occurred()) SWIG_fail
;
3418 resultobj
= SWIG_Py_Void();
3425 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3426 PyObject
*resultobj
= 0;
3427 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3431 PyObject
*swig_obj
[1] ;
3433 if (!args
) SWIG_fail
;
3435 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3436 if (!SWIG_IsOK(res1
)) {
3437 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsOk" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3439 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3441 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3442 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsOk();
3443 wxPyEndAllowThreads(__tstate
);
3444 if (PyErr_Occurred()) SWIG_fail
;
3447 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3455 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsFixed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3456 PyObject
*resultobj
= 0;
3457 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3461 PyObject
*swig_obj
[1] ;
3463 if (!args
) SWIG_fail
;
3465 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3466 if (!SWIG_IsOK(res1
)) {
3467 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsFixed" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3469 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3471 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3472 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsFixed();
3473 wxPyEndAllowThreads(__tstate
);
3474 if (PyErr_Occurred()) SWIG_fail
;
3477 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3485 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsResizable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3486 PyObject
*resultobj
= 0;
3487 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3491 PyObject
*swig_obj
[1] ;
3493 if (!args
) SWIG_fail
;
3495 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3496 if (!SWIG_IsOK(res1
)) {
3497 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsResizable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3499 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3501 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3502 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsResizable();
3503 wxPyEndAllowThreads(__tstate
);
3504 if (PyErr_Occurred()) SWIG_fail
;
3507 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3515 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsShown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3516 PyObject
*resultobj
= 0;
3517 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3521 PyObject
*swig_obj
[1] ;
3523 if (!args
) SWIG_fail
;
3525 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3526 if (!SWIG_IsOK(res1
)) {
3527 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsShown" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3529 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3531 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3532 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsShown();
3533 wxPyEndAllowThreads(__tstate
);
3534 if (PyErr_Occurred()) SWIG_fail
;
3537 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3545 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsFloating(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3546 PyObject
*resultobj
= 0;
3547 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3551 PyObject
*swig_obj
[1] ;
3553 if (!args
) SWIG_fail
;
3555 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3556 if (!SWIG_IsOK(res1
)) {
3557 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsFloating" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3559 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3561 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3562 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsFloating();
3563 wxPyEndAllowThreads(__tstate
);
3564 if (PyErr_Occurred()) SWIG_fail
;
3567 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3575 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsDocked(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3576 PyObject
*resultobj
= 0;
3577 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3581 PyObject
*swig_obj
[1] ;
3583 if (!args
) SWIG_fail
;
3585 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3586 if (!SWIG_IsOK(res1
)) {
3587 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsDocked" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3589 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3591 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3592 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsDocked();
3593 wxPyEndAllowThreads(__tstate
);
3594 if (PyErr_Occurred()) SWIG_fail
;
3597 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3605 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsToolbar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3606 PyObject
*resultobj
= 0;
3607 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3611 PyObject
*swig_obj
[1] ;
3613 if (!args
) SWIG_fail
;
3615 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3616 if (!SWIG_IsOK(res1
)) {
3617 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsToolbar" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3619 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3621 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3622 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsToolbar();
3623 wxPyEndAllowThreads(__tstate
);
3624 if (PyErr_Occurred()) SWIG_fail
;
3627 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3635 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsTopDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3636 PyObject
*resultobj
= 0;
3637 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3641 PyObject
*swig_obj
[1] ;
3643 if (!args
) SWIG_fail
;
3645 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3646 if (!SWIG_IsOK(res1
)) {
3647 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsTopDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3649 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3651 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3652 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsTopDockable();
3653 wxPyEndAllowThreads(__tstate
);
3654 if (PyErr_Occurred()) SWIG_fail
;
3657 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3665 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsBottomDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3666 PyObject
*resultobj
= 0;
3667 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3671 PyObject
*swig_obj
[1] ;
3673 if (!args
) SWIG_fail
;
3675 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3676 if (!SWIG_IsOK(res1
)) {
3677 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsBottomDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3679 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3681 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3682 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsBottomDockable();
3683 wxPyEndAllowThreads(__tstate
);
3684 if (PyErr_Occurred()) SWIG_fail
;
3687 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3695 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsLeftDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3696 PyObject
*resultobj
= 0;
3697 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3701 PyObject
*swig_obj
[1] ;
3703 if (!args
) SWIG_fail
;
3705 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3706 if (!SWIG_IsOK(res1
)) {
3707 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsLeftDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3709 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3711 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3712 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsLeftDockable();
3713 wxPyEndAllowThreads(__tstate
);
3714 if (PyErr_Occurred()) SWIG_fail
;
3717 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3725 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsRightDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3726 PyObject
*resultobj
= 0;
3727 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3731 PyObject
*swig_obj
[1] ;
3733 if (!args
) SWIG_fail
;
3735 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3736 if (!SWIG_IsOK(res1
)) {
3737 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsRightDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3739 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3741 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3742 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsRightDockable();
3743 wxPyEndAllowThreads(__tstate
);
3744 if (PyErr_Occurred()) SWIG_fail
;
3747 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3755 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsFloatable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3756 PyObject
*resultobj
= 0;
3757 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3761 PyObject
*swig_obj
[1] ;
3763 if (!args
) SWIG_fail
;
3765 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3766 if (!SWIG_IsOK(res1
)) {
3767 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsFloatable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3769 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3771 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3772 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsFloatable();
3773 wxPyEndAllowThreads(__tstate
);
3774 if (PyErr_Occurred()) SWIG_fail
;
3777 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3785 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsMovable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3786 PyObject
*resultobj
= 0;
3787 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3791 PyObject
*swig_obj
[1] ;
3793 if (!args
) SWIG_fail
;
3795 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3796 if (!SWIG_IsOK(res1
)) {
3797 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsMovable" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3799 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3801 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3802 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsMovable();
3803 wxPyEndAllowThreads(__tstate
);
3804 if (PyErr_Occurred()) SWIG_fail
;
3807 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3815 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsDestroyOnClose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3816 PyObject
*resultobj
= 0;
3817 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3821 PyObject
*swig_obj
[1] ;
3823 if (!args
) SWIG_fail
;
3825 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3826 if (!SWIG_IsOK(res1
)) {
3827 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsDestroyOnClose" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3829 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3831 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3832 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsDestroyOnClose();
3833 wxPyEndAllowThreads(__tstate
);
3834 if (PyErr_Occurred()) SWIG_fail
;
3837 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3845 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_IsMaximized(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3846 PyObject
*resultobj
= 0;
3847 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3851 PyObject
*swig_obj
[1] ;
3853 if (!args
) SWIG_fail
;
3855 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3856 if (!SWIG_IsOK(res1
)) {
3857 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_IsMaximized" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3859 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3861 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3862 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->IsMaximized();
3863 wxPyEndAllowThreads(__tstate
);
3864 if (PyErr_Occurred()) SWIG_fail
;
3867 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3875 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasCaption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3876 PyObject
*resultobj
= 0;
3877 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3881 PyObject
*swig_obj
[1] ;
3883 if (!args
) SWIG_fail
;
3885 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3886 if (!SWIG_IsOK(res1
)) {
3887 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasCaption" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3889 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3891 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3892 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasCaption();
3893 wxPyEndAllowThreads(__tstate
);
3894 if (PyErr_Occurred()) SWIG_fail
;
3897 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3905 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasGripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3906 PyObject
*resultobj
= 0;
3907 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3911 PyObject
*swig_obj
[1] ;
3913 if (!args
) SWIG_fail
;
3915 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3916 if (!SWIG_IsOK(res1
)) {
3917 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasGripper" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3919 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3921 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3922 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasGripper();
3923 wxPyEndAllowThreads(__tstate
);
3924 if (PyErr_Occurred()) SWIG_fail
;
3927 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3935 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3936 PyObject
*resultobj
= 0;
3937 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3941 PyObject
*swig_obj
[1] ;
3943 if (!args
) SWIG_fail
;
3945 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3946 if (!SWIG_IsOK(res1
)) {
3947 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasBorder" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3949 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3951 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3952 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasBorder();
3953 wxPyEndAllowThreads(__tstate
);
3954 if (PyErr_Occurred()) SWIG_fail
;
3957 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3965 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasCloseButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3966 PyObject
*resultobj
= 0;
3967 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
3971 PyObject
*swig_obj
[1] ;
3973 if (!args
) SWIG_fail
;
3975 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
3976 if (!SWIG_IsOK(res1
)) {
3977 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasCloseButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
3979 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
3981 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3982 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasCloseButton();
3983 wxPyEndAllowThreads(__tstate
);
3984 if (PyErr_Occurred()) SWIG_fail
;
3987 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3995 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasMaximizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3996 PyObject
*resultobj
= 0;
3997 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4001 PyObject
*swig_obj
[1] ;
4003 if (!args
) SWIG_fail
;
4005 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4006 if (!SWIG_IsOK(res1
)) {
4007 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasMaximizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4009 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4011 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4012 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasMaximizeButton();
4013 wxPyEndAllowThreads(__tstate
);
4014 if (PyErr_Occurred()) SWIG_fail
;
4017 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4025 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasMinimizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4026 PyObject
*resultobj
= 0;
4027 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4031 PyObject
*swig_obj
[1] ;
4033 if (!args
) SWIG_fail
;
4035 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4036 if (!SWIG_IsOK(res1
)) {
4037 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasMinimizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4039 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4041 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4042 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasMinimizeButton();
4043 wxPyEndAllowThreads(__tstate
);
4044 if (PyErr_Occurred()) SWIG_fail
;
4047 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4055 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasPinButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4056 PyObject
*resultobj
= 0;
4057 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4061 PyObject
*swig_obj
[1] ;
4063 if (!args
) SWIG_fail
;
4065 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4066 if (!SWIG_IsOK(res1
)) {
4067 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasPinButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4069 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4071 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4072 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasPinButton();
4073 wxPyEndAllowThreads(__tstate
);
4074 if (PyErr_Occurred()) SWIG_fail
;
4077 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4085 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasGripperTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4086 PyObject
*resultobj
= 0;
4087 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4091 PyObject
*swig_obj
[1] ;
4093 if (!args
) SWIG_fail
;
4095 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4096 if (!SWIG_IsOK(res1
)) {
4097 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasGripperTop" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
4099 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4101 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4102 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasGripperTop();
4103 wxPyEndAllowThreads(__tstate
);
4104 if (PyErr_Occurred()) SWIG_fail
;
4107 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4115 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Window(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4116 PyObject
*resultobj
= 0;
4117 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4118 wxWindow
*arg2
= (wxWindow
*) 0 ;
4119 wxAuiPaneInfo
*result
= 0 ;
4124 PyObject
* obj0
= 0 ;
4125 PyObject
* obj1
= 0 ;
4126 char * kwnames
[] = {
4127 (char *) "self",(char *) "w", NULL
4130 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Window",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4131 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4132 if (!SWIG_IsOK(res1
)) {
4133 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Window" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4135 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4136 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
4137 if (!SWIG_IsOK(res2
)) {
4138 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_Window" "', expected argument " "2"" of type '" "wxWindow *""'");
4140 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
4142 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4144 wxAuiPaneInfo
&_result_ref
= (arg1
)->Window(arg2
);
4145 result
= (wxAuiPaneInfo
*) &_result_ref
;
4147 wxPyEndAllowThreads(__tstate
);
4148 if (PyErr_Occurred()) SWIG_fail
;
4151 resultobj
= obj0
; Py_INCREF(resultobj
);
4159 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Name(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4160 PyObject
*resultobj
= 0;
4161 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4162 wxString
*arg2
= 0 ;
4163 wxAuiPaneInfo
*result
= 0 ;
4166 bool temp2
= false ;
4167 PyObject
* obj0
= 0 ;
4168 PyObject
* obj1
= 0 ;
4169 char * kwnames
[] = {
4170 (char *) "self",(char *) "n", NULL
4173 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Name",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4174 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4175 if (!SWIG_IsOK(res1
)) {
4176 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Name" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4178 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4180 arg2
= wxString_in_helper(obj1
);
4181 if (arg2
== NULL
) SWIG_fail
;
4185 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4187 wxAuiPaneInfo
&_result_ref
= (arg1
)->Name((wxString
const &)*arg2
);
4188 result
= (wxAuiPaneInfo
*) &_result_ref
;
4190 wxPyEndAllowThreads(__tstate
);
4191 if (PyErr_Occurred()) SWIG_fail
;
4194 resultobj
= obj0
; Py_INCREF(resultobj
);
4210 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Caption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4211 PyObject
*resultobj
= 0;
4212 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4213 wxString
*arg2
= 0 ;
4214 wxAuiPaneInfo
*result
= 0 ;
4217 bool temp2
= false ;
4218 PyObject
* obj0
= 0 ;
4219 PyObject
* obj1
= 0 ;
4220 char * kwnames
[] = {
4221 (char *) "self",(char *) "c", NULL
4224 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Caption",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4225 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4226 if (!SWIG_IsOK(res1
)) {
4227 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Caption" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4229 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4231 arg2
= wxString_in_helper(obj1
);
4232 if (arg2
== NULL
) SWIG_fail
;
4236 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4238 wxAuiPaneInfo
&_result_ref
= (arg1
)->Caption((wxString
const &)*arg2
);
4239 result
= (wxAuiPaneInfo
*) &_result_ref
;
4241 wxPyEndAllowThreads(__tstate
);
4242 if (PyErr_Occurred()) SWIG_fail
;
4245 resultobj
= obj0
; Py_INCREF(resultobj
);
4261 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Left(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4262 PyObject
*resultobj
= 0;
4263 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4264 wxAuiPaneInfo
*result
= 0 ;
4267 PyObject
*swig_obj
[1] ;
4269 if (!args
) SWIG_fail
;
4271 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4272 if (!SWIG_IsOK(res1
)) {
4273 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Left" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4275 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4277 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4279 wxAuiPaneInfo
&_result_ref
= (arg1
)->Left();
4280 result
= (wxAuiPaneInfo
*) &_result_ref
;
4282 wxPyEndAllowThreads(__tstate
);
4283 if (PyErr_Occurred()) SWIG_fail
;
4286 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4294 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Right(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4295 PyObject
*resultobj
= 0;
4296 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4297 wxAuiPaneInfo
*result
= 0 ;
4300 PyObject
*swig_obj
[1] ;
4302 if (!args
) SWIG_fail
;
4304 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4305 if (!SWIG_IsOK(res1
)) {
4306 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Right" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4308 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4310 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4312 wxAuiPaneInfo
&_result_ref
= (arg1
)->Right();
4313 result
= (wxAuiPaneInfo
*) &_result_ref
;
4315 wxPyEndAllowThreads(__tstate
);
4316 if (PyErr_Occurred()) SWIG_fail
;
4319 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4327 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Top(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4328 PyObject
*resultobj
= 0;
4329 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4330 wxAuiPaneInfo
*result
= 0 ;
4333 PyObject
*swig_obj
[1] ;
4335 if (!args
) SWIG_fail
;
4337 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4338 if (!SWIG_IsOK(res1
)) {
4339 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Top" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4341 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4343 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4345 wxAuiPaneInfo
&_result_ref
= (arg1
)->Top();
4346 result
= (wxAuiPaneInfo
*) &_result_ref
;
4348 wxPyEndAllowThreads(__tstate
);
4349 if (PyErr_Occurred()) SWIG_fail
;
4352 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4360 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Bottom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4361 PyObject
*resultobj
= 0;
4362 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4363 wxAuiPaneInfo
*result
= 0 ;
4366 PyObject
*swig_obj
[1] ;
4368 if (!args
) SWIG_fail
;
4370 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4371 if (!SWIG_IsOK(res1
)) {
4372 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Bottom" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4374 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4376 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4378 wxAuiPaneInfo
&_result_ref
= (arg1
)->Bottom();
4379 result
= (wxAuiPaneInfo
*) &_result_ref
;
4381 wxPyEndAllowThreads(__tstate
);
4382 if (PyErr_Occurred()) SWIG_fail
;
4385 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4393 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Center(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4394 PyObject
*resultobj
= 0;
4395 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4396 wxAuiPaneInfo
*result
= 0 ;
4399 PyObject
*swig_obj
[1] ;
4401 if (!args
) SWIG_fail
;
4403 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4404 if (!SWIG_IsOK(res1
)) {
4405 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Center" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4407 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4409 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4411 wxAuiPaneInfo
&_result_ref
= (arg1
)->Center();
4412 result
= (wxAuiPaneInfo
*) &_result_ref
;
4414 wxPyEndAllowThreads(__tstate
);
4415 if (PyErr_Occurred()) SWIG_fail
;
4418 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4426 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Centre(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4427 PyObject
*resultobj
= 0;
4428 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4429 wxAuiPaneInfo
*result
= 0 ;
4432 PyObject
*swig_obj
[1] ;
4434 if (!args
) SWIG_fail
;
4436 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4437 if (!SWIG_IsOK(res1
)) {
4438 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Centre" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4440 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4442 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4444 wxAuiPaneInfo
&_result_ref
= (arg1
)->Centre();
4445 result
= (wxAuiPaneInfo
*) &_result_ref
;
4447 wxPyEndAllowThreads(__tstate
);
4448 if (PyErr_Occurred()) SWIG_fail
;
4451 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4459 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Direction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4460 PyObject
*resultobj
= 0;
4461 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4463 wxAuiPaneInfo
*result
= 0 ;
4468 PyObject
* obj0
= 0 ;
4469 PyObject
* obj1
= 0 ;
4470 char * kwnames
[] = {
4471 (char *) "self",(char *) "direction", NULL
4474 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Direction",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4475 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4476 if (!SWIG_IsOK(res1
)) {
4477 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Direction" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4479 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4480 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4481 if (!SWIG_IsOK(ecode2
)) {
4482 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Direction" "', expected argument " "2"" of type '" "int""'");
4484 arg2
= static_cast< int >(val2
);
4486 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4488 wxAuiPaneInfo
&_result_ref
= (arg1
)->Direction(arg2
);
4489 result
= (wxAuiPaneInfo
*) &_result_ref
;
4491 wxPyEndAllowThreads(__tstate
);
4492 if (PyErr_Occurred()) SWIG_fail
;
4495 resultobj
= obj0
; Py_INCREF(resultobj
);
4503 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Layer(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 *) "layer", NULL
4518 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Layer",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_Layer" "', 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_Layer" "', expected argument " "2"" of type '" "int""'");
4528 arg2
= static_cast< int >(val2
);
4530 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4532 wxAuiPaneInfo
&_result_ref
= (arg1
)->Layer(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_Row(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 *) "row", NULL
4562 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Row",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_Row" "', 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_Row" "', expected argument " "2"" of type '" "int""'");
4572 arg2
= static_cast< int >(val2
);
4574 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4576 wxAuiPaneInfo
&_result_ref
= (arg1
)->Row(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_Position(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 *) "pos", NULL
4606 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_Position",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_Position" "', 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_Position" "', expected argument " "2"" of type '" "int""'");
4616 arg2
= static_cast< int >(val2
);
4618 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4620 wxAuiPaneInfo
&_result_ref
= (arg1
)->Position(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_BestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4636 PyObject
*resultobj
= 0;
4637 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4639 wxAuiPaneInfo
*result
= 0 ;
4643 PyObject
* obj0
= 0 ;
4644 PyObject
* obj1
= 0 ;
4645 char * kwnames
[] = {
4646 (char *) "self",(char *) "size", NULL
4649 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_BestSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4650 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4651 if (!SWIG_IsOK(res1
)) {
4652 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_BestSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4654 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4657 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4660 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4662 wxAuiPaneInfo
&_result_ref
= (arg1
)->BestSize((wxSize
const &)*arg2
);
4663 result
= (wxAuiPaneInfo
*) &_result_ref
;
4665 wxPyEndAllowThreads(__tstate
);
4666 if (PyErr_Occurred()) SWIG_fail
;
4669 resultobj
= obj0
; Py_INCREF(resultobj
);
4677 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MinSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4678 PyObject
*resultobj
= 0;
4679 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4681 wxAuiPaneInfo
*result
= 0 ;
4685 PyObject
* obj0
= 0 ;
4686 PyObject
* obj1
= 0 ;
4687 char * kwnames
[] = {
4688 (char *) "self",(char *) "size", NULL
4691 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_MinSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4692 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4693 if (!SWIG_IsOK(res1
)) {
4694 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MinSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4696 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4699 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4702 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4704 wxAuiPaneInfo
&_result_ref
= (arg1
)->MinSize((wxSize
const &)*arg2
);
4705 result
= (wxAuiPaneInfo
*) &_result_ref
;
4707 wxPyEndAllowThreads(__tstate
);
4708 if (PyErr_Occurred()) SWIG_fail
;
4711 resultobj
= obj0
; Py_INCREF(resultobj
);
4719 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MaxSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4720 PyObject
*resultobj
= 0;
4721 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4723 wxAuiPaneInfo
*result
= 0 ;
4727 PyObject
* obj0
= 0 ;
4728 PyObject
* obj1
= 0 ;
4729 char * kwnames
[] = {
4730 (char *) "self",(char *) "size", NULL
4733 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_MaxSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4734 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4735 if (!SWIG_IsOK(res1
)) {
4736 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MaxSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4738 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4741 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4744 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4746 wxAuiPaneInfo
&_result_ref
= (arg1
)->MaxSize((wxSize
const &)*arg2
);
4747 result
= (wxAuiPaneInfo
*) &_result_ref
;
4749 wxPyEndAllowThreads(__tstate
);
4750 if (PyErr_Occurred()) SWIG_fail
;
4753 resultobj
= obj0
; Py_INCREF(resultobj
);
4761 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_FloatingPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4762 PyObject
*resultobj
= 0;
4763 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4765 wxAuiPaneInfo
*result
= 0 ;
4769 PyObject
* obj0
= 0 ;
4770 PyObject
* obj1
= 0 ;
4771 char * kwnames
[] = {
4772 (char *) "self",(char *) "pos", NULL
4775 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_FloatingPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4776 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4777 if (!SWIG_IsOK(res1
)) {
4778 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_FloatingPosition" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4780 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4783 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
4786 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4788 wxAuiPaneInfo
&_result_ref
= (arg1
)->FloatingPosition((wxPoint
const &)*arg2
);
4789 result
= (wxAuiPaneInfo
*) &_result_ref
;
4791 wxPyEndAllowThreads(__tstate
);
4792 if (PyErr_Occurred()) SWIG_fail
;
4795 resultobj
= obj0
; Py_INCREF(resultobj
);
4803 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_FloatingSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4804 PyObject
*resultobj
= 0;
4805 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4807 wxAuiPaneInfo
*result
= 0 ;
4811 PyObject
* obj0
= 0 ;
4812 PyObject
* obj1
= 0 ;
4813 char * kwnames
[] = {
4814 (char *) "self",(char *) "size", NULL
4817 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_FloatingSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4818 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4819 if (!SWIG_IsOK(res1
)) {
4820 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_FloatingSize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4822 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4825 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4828 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4830 wxAuiPaneInfo
&_result_ref
= (arg1
)->FloatingSize((wxSize
const &)*arg2
);
4831 result
= (wxAuiPaneInfo
*) &_result_ref
;
4833 wxPyEndAllowThreads(__tstate
);
4834 if (PyErr_Occurred()) SWIG_fail
;
4837 resultobj
= obj0
; Py_INCREF(resultobj
);
4845 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Fixed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4846 PyObject
*resultobj
= 0;
4847 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4848 wxAuiPaneInfo
*result
= 0 ;
4851 PyObject
*swig_obj
[1] ;
4853 if (!args
) SWIG_fail
;
4855 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4856 if (!SWIG_IsOK(res1
)) {
4857 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Fixed" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4859 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4861 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4863 wxAuiPaneInfo
&_result_ref
= (arg1
)->Fixed();
4864 result
= (wxAuiPaneInfo
*) &_result_ref
;
4866 wxPyEndAllowThreads(__tstate
);
4867 if (PyErr_Occurred()) SWIG_fail
;
4870 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4878 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Resizable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4879 PyObject
*resultobj
= 0;
4880 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4881 bool arg2
= (bool) true ;
4882 wxAuiPaneInfo
*result
= 0 ;
4887 PyObject
* obj0
= 0 ;
4888 PyObject
* obj1
= 0 ;
4889 char * kwnames
[] = {
4890 (char *) "self",(char *) "resizable", NULL
4893 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Resizable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4894 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4895 if (!SWIG_IsOK(res1
)) {
4896 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Resizable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4898 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4900 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4901 if (!SWIG_IsOK(ecode2
)) {
4902 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Resizable" "', expected argument " "2"" of type '" "bool""'");
4904 arg2
= static_cast< bool >(val2
);
4907 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4909 wxAuiPaneInfo
&_result_ref
= (arg1
)->Resizable(arg2
);
4910 result
= (wxAuiPaneInfo
*) &_result_ref
;
4912 wxPyEndAllowThreads(__tstate
);
4913 if (PyErr_Occurred()) SWIG_fail
;
4916 resultobj
= obj0
; Py_INCREF(resultobj
);
4924 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Dock(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4925 PyObject
*resultobj
= 0;
4926 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4927 wxAuiPaneInfo
*result
= 0 ;
4930 PyObject
*swig_obj
[1] ;
4932 if (!args
) SWIG_fail
;
4934 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4935 if (!SWIG_IsOK(res1
)) {
4936 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Dock" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4938 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4940 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4942 wxAuiPaneInfo
&_result_ref
= (arg1
)->Dock();
4943 result
= (wxAuiPaneInfo
*) &_result_ref
;
4945 wxPyEndAllowThreads(__tstate
);
4946 if (PyErr_Occurred()) SWIG_fail
;
4949 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4957 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Float(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4958 PyObject
*resultobj
= 0;
4959 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4960 wxAuiPaneInfo
*result
= 0 ;
4963 PyObject
*swig_obj
[1] ;
4965 if (!args
) SWIG_fail
;
4967 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
4968 if (!SWIG_IsOK(res1
)) {
4969 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Float" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
4971 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
4973 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4975 wxAuiPaneInfo
&_result_ref
= (arg1
)->Float();
4976 result
= (wxAuiPaneInfo
*) &_result_ref
;
4978 wxPyEndAllowThreads(__tstate
);
4979 if (PyErr_Occurred()) SWIG_fail
;
4982 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4990 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Hide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4991 PyObject
*resultobj
= 0;
4992 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
4993 wxAuiPaneInfo
*result
= 0 ;
4996 PyObject
*swig_obj
[1] ;
4998 if (!args
) SWIG_fail
;
5000 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5001 if (!SWIG_IsOK(res1
)) {
5002 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Hide" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5004 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5006 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5008 wxAuiPaneInfo
&_result_ref
= (arg1
)->Hide();
5009 result
= (wxAuiPaneInfo
*) &_result_ref
;
5011 wxPyEndAllowThreads(__tstate
);
5012 if (PyErr_Occurred()) SWIG_fail
;
5015 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5023 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Show(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5024 PyObject
*resultobj
= 0;
5025 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5026 bool arg2
= (bool) true ;
5027 wxAuiPaneInfo
*result
= 0 ;
5032 PyObject
* obj0
= 0 ;
5033 PyObject
* obj1
= 0 ;
5034 char * kwnames
[] = {
5035 (char *) "self",(char *) "show", NULL
5038 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Show",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5039 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5040 if (!SWIG_IsOK(res1
)) {
5041 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Show" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5043 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5045 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5046 if (!SWIG_IsOK(ecode2
)) {
5047 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Show" "', expected argument " "2"" of type '" "bool""'");
5049 arg2
= static_cast< bool >(val2
);
5052 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5054 wxAuiPaneInfo
&_result_ref
= (arg1
)->Show(arg2
);
5055 result
= (wxAuiPaneInfo
*) &_result_ref
;
5057 wxPyEndAllowThreads(__tstate
);
5058 if (PyErr_Occurred()) SWIG_fail
;
5061 resultobj
= obj0
; Py_INCREF(resultobj
);
5069 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CaptionVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5070 PyObject
*resultobj
= 0;
5071 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5072 bool arg2
= (bool) true ;
5073 wxAuiPaneInfo
*result
= 0 ;
5078 PyObject
* obj0
= 0 ;
5079 PyObject
* obj1
= 0 ;
5080 char * kwnames
[] = {
5081 (char *) "self",(char *) "visible", NULL
5084 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_CaptionVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5085 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5086 if (!SWIG_IsOK(res1
)) {
5087 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CaptionVisible" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5089 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5091 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5092 if (!SWIG_IsOK(ecode2
)) {
5093 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_CaptionVisible" "', expected argument " "2"" of type '" "bool""'");
5095 arg2
= static_cast< bool >(val2
);
5098 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5100 wxAuiPaneInfo
&_result_ref
= (arg1
)->CaptionVisible(arg2
);
5101 result
= (wxAuiPaneInfo
*) &_result_ref
;
5103 wxPyEndAllowThreads(__tstate
);
5104 if (PyErr_Occurred()) SWIG_fail
;
5107 resultobj
= obj0
; Py_INCREF(resultobj
);
5115 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Maximize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5116 PyObject
*resultobj
= 0;
5117 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5118 wxAuiPaneInfo
*result
= 0 ;
5121 PyObject
*swig_obj
[1] ;
5123 if (!args
) SWIG_fail
;
5125 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5126 if (!SWIG_IsOK(res1
)) {
5127 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Maximize" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5129 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5131 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5133 wxAuiPaneInfo
&_result_ref
= (arg1
)->Maximize();
5134 result
= (wxAuiPaneInfo
*) &_result_ref
;
5136 wxPyEndAllowThreads(__tstate
);
5137 if (PyErr_Occurred()) SWIG_fail
;
5140 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5148 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Restore(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5149 PyObject
*resultobj
= 0;
5150 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5151 wxAuiPaneInfo
*result
= 0 ;
5154 PyObject
*swig_obj
[1] ;
5156 if (!args
) SWIG_fail
;
5158 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5159 if (!SWIG_IsOK(res1
)) {
5160 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Restore" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5162 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5164 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5166 wxAuiPaneInfo
&_result_ref
= (arg1
)->Restore();
5167 result
= (wxAuiPaneInfo
*) &_result_ref
;
5169 wxPyEndAllowThreads(__tstate
);
5170 if (PyErr_Occurred()) SWIG_fail
;
5173 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5181 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_PaneBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5182 PyObject
*resultobj
= 0;
5183 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5184 bool arg2
= (bool) true ;
5185 wxAuiPaneInfo
*result
= 0 ;
5190 PyObject
* obj0
= 0 ;
5191 PyObject
* obj1
= 0 ;
5192 char * kwnames
[] = {
5193 (char *) "self",(char *) "visible", NULL
5196 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_PaneBorder",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5197 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5198 if (!SWIG_IsOK(res1
)) {
5199 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_PaneBorder" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5201 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5203 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5204 if (!SWIG_IsOK(ecode2
)) {
5205 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_PaneBorder" "', expected argument " "2"" of type '" "bool""'");
5207 arg2
= static_cast< bool >(val2
);
5210 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5212 wxAuiPaneInfo
&_result_ref
= (arg1
)->PaneBorder(arg2
);
5213 result
= (wxAuiPaneInfo
*) &_result_ref
;
5215 wxPyEndAllowThreads(__tstate
);
5216 if (PyErr_Occurred()) SWIG_fail
;
5219 resultobj
= obj0
; Py_INCREF(resultobj
);
5227 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Gripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5228 PyObject
*resultobj
= 0;
5229 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5230 bool arg2
= (bool) true ;
5231 wxAuiPaneInfo
*result
= 0 ;
5236 PyObject
* obj0
= 0 ;
5237 PyObject
* obj1
= 0 ;
5238 char * kwnames
[] = {
5239 (char *) "self",(char *) "visible", NULL
5242 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Gripper",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5243 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5244 if (!SWIG_IsOK(res1
)) {
5245 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Gripper" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5247 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5249 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5250 if (!SWIG_IsOK(ecode2
)) {
5251 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Gripper" "', expected argument " "2"" of type '" "bool""'");
5253 arg2
= static_cast< bool >(val2
);
5256 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5258 wxAuiPaneInfo
&_result_ref
= (arg1
)->Gripper(arg2
);
5259 result
= (wxAuiPaneInfo
*) &_result_ref
;
5261 wxPyEndAllowThreads(__tstate
);
5262 if (PyErr_Occurred()) SWIG_fail
;
5265 resultobj
= obj0
; Py_INCREF(resultobj
);
5273 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_GripperTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5274 PyObject
*resultobj
= 0;
5275 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5276 bool arg2
= (bool) true ;
5277 wxAuiPaneInfo
*result
= 0 ;
5282 PyObject
* obj0
= 0 ;
5283 PyObject
* obj1
= 0 ;
5284 char * kwnames
[] = {
5285 (char *) "self",(char *) "attop", NULL
5288 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_GripperTop",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5289 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5290 if (!SWIG_IsOK(res1
)) {
5291 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_GripperTop" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5293 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5295 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5296 if (!SWIG_IsOK(ecode2
)) {
5297 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_GripperTop" "', expected argument " "2"" of type '" "bool""'");
5299 arg2
= static_cast< bool >(val2
);
5302 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5304 wxAuiPaneInfo
&_result_ref
= (arg1
)->GripperTop(arg2
);
5305 result
= (wxAuiPaneInfo
*) &_result_ref
;
5307 wxPyEndAllowThreads(__tstate
);
5308 if (PyErr_Occurred()) SWIG_fail
;
5311 resultobj
= obj0
; Py_INCREF(resultobj
);
5319 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CloseButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5320 PyObject
*resultobj
= 0;
5321 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5322 bool arg2
= (bool) true ;
5323 wxAuiPaneInfo
*result
= 0 ;
5328 PyObject
* obj0
= 0 ;
5329 PyObject
* obj1
= 0 ;
5330 char * kwnames
[] = {
5331 (char *) "self",(char *) "visible", NULL
5334 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_CloseButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5335 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5336 if (!SWIG_IsOK(res1
)) {
5337 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CloseButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5339 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5341 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5342 if (!SWIG_IsOK(ecode2
)) {
5343 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_CloseButton" "', expected argument " "2"" of type '" "bool""'");
5345 arg2
= static_cast< bool >(val2
);
5348 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5350 wxAuiPaneInfo
&_result_ref
= (arg1
)->CloseButton(arg2
);
5351 result
= (wxAuiPaneInfo
*) &_result_ref
;
5353 wxPyEndAllowThreads(__tstate
);
5354 if (PyErr_Occurred()) SWIG_fail
;
5357 resultobj
= obj0
; Py_INCREF(resultobj
);
5365 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MaximizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5366 PyObject
*resultobj
= 0;
5367 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5368 bool arg2
= (bool) true ;
5369 wxAuiPaneInfo
*result
= 0 ;
5374 PyObject
* obj0
= 0 ;
5375 PyObject
* obj1
= 0 ;
5376 char * kwnames
[] = {
5377 (char *) "self",(char *) "visible", NULL
5380 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_MaximizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5381 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5382 if (!SWIG_IsOK(res1
)) {
5383 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MaximizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5385 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5387 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5388 if (!SWIG_IsOK(ecode2
)) {
5389 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_MaximizeButton" "', expected argument " "2"" of type '" "bool""'");
5391 arg2
= static_cast< bool >(val2
);
5394 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5396 wxAuiPaneInfo
&_result_ref
= (arg1
)->MaximizeButton(arg2
);
5397 result
= (wxAuiPaneInfo
*) &_result_ref
;
5399 wxPyEndAllowThreads(__tstate
);
5400 if (PyErr_Occurred()) SWIG_fail
;
5403 resultobj
= obj0
; Py_INCREF(resultobj
);
5411 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_MinimizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5412 PyObject
*resultobj
= 0;
5413 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5414 bool arg2
= (bool) true ;
5415 wxAuiPaneInfo
*result
= 0 ;
5420 PyObject
* obj0
= 0 ;
5421 PyObject
* obj1
= 0 ;
5422 char * kwnames
[] = {
5423 (char *) "self",(char *) "visible", NULL
5426 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_MinimizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5427 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5428 if (!SWIG_IsOK(res1
)) {
5429 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_MinimizeButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5431 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5433 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5434 if (!SWIG_IsOK(ecode2
)) {
5435 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_MinimizeButton" "', expected argument " "2"" of type '" "bool""'");
5437 arg2
= static_cast< bool >(val2
);
5440 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5442 wxAuiPaneInfo
&_result_ref
= (arg1
)->MinimizeButton(arg2
);
5443 result
= (wxAuiPaneInfo
*) &_result_ref
;
5445 wxPyEndAllowThreads(__tstate
);
5446 if (PyErr_Occurred()) SWIG_fail
;
5449 resultobj
= obj0
; Py_INCREF(resultobj
);
5457 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_PinButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5458 PyObject
*resultobj
= 0;
5459 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5460 bool arg2
= (bool) true ;
5461 wxAuiPaneInfo
*result
= 0 ;
5466 PyObject
* obj0
= 0 ;
5467 PyObject
* obj1
= 0 ;
5468 char * kwnames
[] = {
5469 (char *) "self",(char *) "visible", NULL
5472 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_PinButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5473 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5474 if (!SWIG_IsOK(res1
)) {
5475 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_PinButton" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5477 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5479 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5480 if (!SWIG_IsOK(ecode2
)) {
5481 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_PinButton" "', expected argument " "2"" of type '" "bool""'");
5483 arg2
= static_cast< bool >(val2
);
5486 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5488 wxAuiPaneInfo
&_result_ref
= (arg1
)->PinButton(arg2
);
5489 result
= (wxAuiPaneInfo
*) &_result_ref
;
5491 wxPyEndAllowThreads(__tstate
);
5492 if (PyErr_Occurred()) SWIG_fail
;
5495 resultobj
= obj0
; Py_INCREF(resultobj
);
5503 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_DestroyOnClose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5504 PyObject
*resultobj
= 0;
5505 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5506 bool arg2
= (bool) true ;
5507 wxAuiPaneInfo
*result
= 0 ;
5512 PyObject
* obj0
= 0 ;
5513 PyObject
* obj1
= 0 ;
5514 char * kwnames
[] = {
5515 (char *) "self",(char *) "b", NULL
5518 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_DestroyOnClose",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5519 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5520 if (!SWIG_IsOK(res1
)) {
5521 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_DestroyOnClose" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5523 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5525 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5526 if (!SWIG_IsOK(ecode2
)) {
5527 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_DestroyOnClose" "', expected argument " "2"" of type '" "bool""'");
5529 arg2
= static_cast< bool >(val2
);
5532 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5534 wxAuiPaneInfo
&_result_ref
= (arg1
)->DestroyOnClose(arg2
);
5535 result
= (wxAuiPaneInfo
*) &_result_ref
;
5537 wxPyEndAllowThreads(__tstate
);
5538 if (PyErr_Occurred()) SWIG_fail
;
5541 resultobj
= obj0
; Py_INCREF(resultobj
);
5549 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_TopDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5550 PyObject
*resultobj
= 0;
5551 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5552 bool arg2
= (bool) true ;
5553 wxAuiPaneInfo
*result
= 0 ;
5558 PyObject
* obj0
= 0 ;
5559 PyObject
* obj1
= 0 ;
5560 char * kwnames
[] = {
5561 (char *) "self",(char *) "b", NULL
5564 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_TopDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5565 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5566 if (!SWIG_IsOK(res1
)) {
5567 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_TopDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5569 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5571 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5572 if (!SWIG_IsOK(ecode2
)) {
5573 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_TopDockable" "', expected argument " "2"" of type '" "bool""'");
5575 arg2
= static_cast< bool >(val2
);
5578 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5580 wxAuiPaneInfo
&_result_ref
= (arg1
)->TopDockable(arg2
);
5581 result
= (wxAuiPaneInfo
*) &_result_ref
;
5583 wxPyEndAllowThreads(__tstate
);
5584 if (PyErr_Occurred()) SWIG_fail
;
5587 resultobj
= obj0
; Py_INCREF(resultobj
);
5595 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_BottomDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5596 PyObject
*resultobj
= 0;
5597 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5598 bool arg2
= (bool) true ;
5599 wxAuiPaneInfo
*result
= 0 ;
5604 PyObject
* obj0
= 0 ;
5605 PyObject
* obj1
= 0 ;
5606 char * kwnames
[] = {
5607 (char *) "self",(char *) "b", NULL
5610 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_BottomDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5611 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5612 if (!SWIG_IsOK(res1
)) {
5613 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_BottomDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5615 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5617 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5618 if (!SWIG_IsOK(ecode2
)) {
5619 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_BottomDockable" "', expected argument " "2"" of type '" "bool""'");
5621 arg2
= static_cast< bool >(val2
);
5624 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5626 wxAuiPaneInfo
&_result_ref
= (arg1
)->BottomDockable(arg2
);
5627 result
= (wxAuiPaneInfo
*) &_result_ref
;
5629 wxPyEndAllowThreads(__tstate
);
5630 if (PyErr_Occurred()) SWIG_fail
;
5633 resultobj
= obj0
; Py_INCREF(resultobj
);
5641 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_LeftDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5642 PyObject
*resultobj
= 0;
5643 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5644 bool arg2
= (bool) true ;
5645 wxAuiPaneInfo
*result
= 0 ;
5650 PyObject
* obj0
= 0 ;
5651 PyObject
* obj1
= 0 ;
5652 char * kwnames
[] = {
5653 (char *) "self",(char *) "b", NULL
5656 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_LeftDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5657 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5658 if (!SWIG_IsOK(res1
)) {
5659 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_LeftDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5661 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5663 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5664 if (!SWIG_IsOK(ecode2
)) {
5665 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_LeftDockable" "', expected argument " "2"" of type '" "bool""'");
5667 arg2
= static_cast< bool >(val2
);
5670 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5672 wxAuiPaneInfo
&_result_ref
= (arg1
)->LeftDockable(arg2
);
5673 result
= (wxAuiPaneInfo
*) &_result_ref
;
5675 wxPyEndAllowThreads(__tstate
);
5676 if (PyErr_Occurred()) SWIG_fail
;
5679 resultobj
= obj0
; Py_INCREF(resultobj
);
5687 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_RightDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5688 PyObject
*resultobj
= 0;
5689 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5690 bool arg2
= (bool) true ;
5691 wxAuiPaneInfo
*result
= 0 ;
5696 PyObject
* obj0
= 0 ;
5697 PyObject
* obj1
= 0 ;
5698 char * kwnames
[] = {
5699 (char *) "self",(char *) "b", NULL
5702 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_RightDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5703 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5704 if (!SWIG_IsOK(res1
)) {
5705 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_RightDockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5707 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5709 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5710 if (!SWIG_IsOK(ecode2
)) {
5711 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_RightDockable" "', expected argument " "2"" of type '" "bool""'");
5713 arg2
= static_cast< bool >(val2
);
5716 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5718 wxAuiPaneInfo
&_result_ref
= (arg1
)->RightDockable(arg2
);
5719 result
= (wxAuiPaneInfo
*) &_result_ref
;
5721 wxPyEndAllowThreads(__tstate
);
5722 if (PyErr_Occurred()) SWIG_fail
;
5725 resultobj
= obj0
; Py_INCREF(resultobj
);
5733 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Floatable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5734 PyObject
*resultobj
= 0;
5735 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5736 bool arg2
= (bool) true ;
5737 wxAuiPaneInfo
*result
= 0 ;
5742 PyObject
* obj0
= 0 ;
5743 PyObject
* obj1
= 0 ;
5744 char * kwnames
[] = {
5745 (char *) "self",(char *) "b", NULL
5748 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Floatable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5749 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5750 if (!SWIG_IsOK(res1
)) {
5751 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Floatable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5753 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5755 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5756 if (!SWIG_IsOK(ecode2
)) {
5757 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Floatable" "', expected argument " "2"" of type '" "bool""'");
5759 arg2
= static_cast< bool >(val2
);
5762 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5764 wxAuiPaneInfo
&_result_ref
= (arg1
)->Floatable(arg2
);
5765 result
= (wxAuiPaneInfo
*) &_result_ref
;
5767 wxPyEndAllowThreads(__tstate
);
5768 if (PyErr_Occurred()) SWIG_fail
;
5771 resultobj
= obj0
; Py_INCREF(resultobj
);
5779 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Movable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5780 PyObject
*resultobj
= 0;
5781 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5782 bool arg2
= (bool) true ;
5783 wxAuiPaneInfo
*result
= 0 ;
5788 PyObject
* obj0
= 0 ;
5789 PyObject
* obj1
= 0 ;
5790 char * kwnames
[] = {
5791 (char *) "self",(char *) "b", NULL
5794 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Movable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5795 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5796 if (!SWIG_IsOK(res1
)) {
5797 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Movable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5799 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5801 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5802 if (!SWIG_IsOK(ecode2
)) {
5803 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Movable" "', expected argument " "2"" of type '" "bool""'");
5805 arg2
= static_cast< bool >(val2
);
5808 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5810 wxAuiPaneInfo
&_result_ref
= (arg1
)->Movable(arg2
);
5811 result
= (wxAuiPaneInfo
*) &_result_ref
;
5813 wxPyEndAllowThreads(__tstate
);
5814 if (PyErr_Occurred()) SWIG_fail
;
5817 resultobj
= obj0
; Py_INCREF(resultobj
);
5825 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_SaveHidden(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5826 PyObject
*resultobj
= 0;
5827 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5828 wxAuiPaneInfo
*result
= 0 ;
5831 PyObject
*swig_obj
[1] ;
5833 if (!args
) SWIG_fail
;
5835 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5836 if (!SWIG_IsOK(res1
)) {
5837 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_SaveHidden" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5839 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5841 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5843 wxAuiPaneInfo
&_result_ref
= (arg1
)->SaveHidden();
5844 result
= (wxAuiPaneInfo
*) &_result_ref
;
5846 wxPyEndAllowThreads(__tstate
);
5847 if (PyErr_Occurred()) SWIG_fail
;
5850 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5858 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_RestoreHidden(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5859 PyObject
*resultobj
= 0;
5860 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5861 wxAuiPaneInfo
*result
= 0 ;
5864 PyObject
*swig_obj
[1] ;
5866 if (!args
) SWIG_fail
;
5868 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5869 if (!SWIG_IsOK(res1
)) {
5870 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_RestoreHidden" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5872 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5874 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5876 wxAuiPaneInfo
&_result_ref
= (arg1
)->RestoreHidden();
5877 result
= (wxAuiPaneInfo
*) &_result_ref
;
5879 wxPyEndAllowThreads(__tstate
);
5880 if (PyErr_Occurred()) SWIG_fail
;
5883 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5891 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_Dockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5892 PyObject
*resultobj
= 0;
5893 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5894 bool arg2
= (bool) true ;
5895 wxAuiPaneInfo
*result
= 0 ;
5900 PyObject
* obj0
= 0 ;
5901 PyObject
* obj1
= 0 ;
5902 char * kwnames
[] = {
5903 (char *) "self",(char *) "b", NULL
5906 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiPaneInfo_Dockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5907 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5908 if (!SWIG_IsOK(res1
)) {
5909 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_Dockable" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5911 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5913 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5914 if (!SWIG_IsOK(ecode2
)) {
5915 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_Dockable" "', expected argument " "2"" of type '" "bool""'");
5917 arg2
= static_cast< bool >(val2
);
5920 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5922 wxAuiPaneInfo
&_result_ref
= (arg1
)->Dockable(arg2
);
5923 result
= (wxAuiPaneInfo
*) &_result_ref
;
5925 wxPyEndAllowThreads(__tstate
);
5926 if (PyErr_Occurred()) SWIG_fail
;
5929 resultobj
= obj0
; Py_INCREF(resultobj
);
5937 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_DefaultPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5938 PyObject
*resultobj
= 0;
5939 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5940 wxAuiPaneInfo
*result
= 0 ;
5943 PyObject
*swig_obj
[1] ;
5945 if (!args
) SWIG_fail
;
5947 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5948 if (!SWIG_IsOK(res1
)) {
5949 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_DefaultPane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5951 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5953 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5955 wxAuiPaneInfo
&_result_ref
= (arg1
)->DefaultPane();
5956 result
= (wxAuiPaneInfo
*) &_result_ref
;
5958 wxPyEndAllowThreads(__tstate
);
5959 if (PyErr_Occurred()) SWIG_fail
;
5962 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5970 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CentrePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5971 PyObject
*resultobj
= 0;
5972 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
5973 wxAuiPaneInfo
*result
= 0 ;
5976 PyObject
*swig_obj
[1] ;
5978 if (!args
) SWIG_fail
;
5980 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
5981 if (!SWIG_IsOK(res1
)) {
5982 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CentrePane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
5984 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
5986 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5988 wxAuiPaneInfo
&_result_ref
= (arg1
)->CentrePane();
5989 result
= (wxAuiPaneInfo
*) &_result_ref
;
5991 wxPyEndAllowThreads(__tstate
);
5992 if (PyErr_Occurred()) SWIG_fail
;
5995 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
6003 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_CenterPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6004 PyObject
*resultobj
= 0;
6005 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6006 wxAuiPaneInfo
*result
= 0 ;
6009 PyObject
*swig_obj
[1] ;
6011 if (!args
) SWIG_fail
;
6013 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6014 if (!SWIG_IsOK(res1
)) {
6015 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_CenterPane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6017 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6019 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6021 wxAuiPaneInfo
&_result_ref
= (arg1
)->CenterPane();
6022 result
= (wxAuiPaneInfo
*) &_result_ref
;
6024 wxPyEndAllowThreads(__tstate
);
6025 if (PyErr_Occurred()) SWIG_fail
;
6028 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
6036 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_ToolbarPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6037 PyObject
*resultobj
= 0;
6038 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6039 wxAuiPaneInfo
*result
= 0 ;
6042 PyObject
*swig_obj
[1] ;
6044 if (!args
) SWIG_fail
;
6046 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6047 if (!SWIG_IsOK(res1
)) {
6048 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_ToolbarPane" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6050 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6052 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6054 wxAuiPaneInfo
&_result_ref
= (arg1
)->ToolbarPane();
6055 result
= (wxAuiPaneInfo
*) &_result_ref
;
6057 wxPyEndAllowThreads(__tstate
);
6058 if (PyErr_Occurred()) SWIG_fail
;
6061 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
6069 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_SetFlag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6070 PyObject
*resultobj
= 0;
6071 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6074 wxAuiPaneInfo
*result
= 0 ;
6081 PyObject
* obj0
= 0 ;
6082 PyObject
* obj1
= 0 ;
6083 PyObject
* obj2
= 0 ;
6084 char * kwnames
[] = {
6085 (char *) "self",(char *) "flag",(char *) "option_state", NULL
6088 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiPaneInfo_SetFlag",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6089 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6090 if (!SWIG_IsOK(res1
)) {
6091 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_SetFlag" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6093 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6094 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6095 if (!SWIG_IsOK(ecode2
)) {
6096 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_SetFlag" "', expected argument " "2"" of type '" "int""'");
6098 arg2
= static_cast< int >(val2
);
6099 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
6100 if (!SWIG_IsOK(ecode3
)) {
6101 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiPaneInfo_SetFlag" "', expected argument " "3"" of type '" "bool""'");
6103 arg3
= static_cast< bool >(val3
);
6105 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6107 wxAuiPaneInfo
&_result_ref
= (arg1
)->SetFlag(arg2
,arg3
);
6108 result
= (wxAuiPaneInfo
*) &_result_ref
;
6110 wxPyEndAllowThreads(__tstate
);
6111 if (PyErr_Occurred()) SWIG_fail
;
6114 resultobj
= obj0
; Py_INCREF(resultobj
);
6122 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_HasFlag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6123 PyObject
*resultobj
= 0;
6124 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6131 PyObject
* obj0
= 0 ;
6132 PyObject
* obj1
= 0 ;
6133 char * kwnames
[] = {
6134 (char *) "self",(char *) "flag", NULL
6137 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiPaneInfo_HasFlag",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6138 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6139 if (!SWIG_IsOK(res1
)) {
6140 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_HasFlag" "', expected argument " "1"" of type '" "wxAuiPaneInfo const *""'");
6142 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6143 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6144 if (!SWIG_IsOK(ecode2
)) {
6145 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_HasFlag" "', expected argument " "2"" of type '" "int""'");
6147 arg2
= static_cast< int >(val2
);
6149 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6150 result
= (bool)((wxAuiPaneInfo
const *)arg1
)->HasFlag(arg2
);
6151 wxPyEndAllowThreads(__tstate
);
6152 if (PyErr_Occurred()) SWIG_fail
;
6155 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6163 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_name_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6164 PyObject
*resultobj
= 0;
6165 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6166 wxString
*arg2
= (wxString
*) 0 ;
6169 bool temp2
= false ;
6170 PyObject
*swig_obj
[2] ;
6172 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_name_set",2,2,swig_obj
)) SWIG_fail
;
6173 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6174 if (!SWIG_IsOK(res1
)) {
6175 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_name_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6177 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6179 arg2
= wxString_in_helper(swig_obj
[1]);
6180 if (arg2
== NULL
) SWIG_fail
;
6183 if (arg1
) (arg1
)->name
= *arg2
;
6185 resultobj
= SWIG_Py_Void();
6200 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_name_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6201 PyObject
*resultobj
= 0;
6202 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6203 wxString
*result
= 0 ;
6206 PyObject
*swig_obj
[1] ;
6208 if (!args
) SWIG_fail
;
6210 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6211 if (!SWIG_IsOK(res1
)) {
6212 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_name_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6214 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6215 result
= (wxString
*)& ((arg1
)->name
);
6218 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
6220 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
6229 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_caption_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6230 PyObject
*resultobj
= 0;
6231 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6232 wxString
*arg2
= (wxString
*) 0 ;
6235 bool temp2
= false ;
6236 PyObject
*swig_obj
[2] ;
6238 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_caption_set",2,2,swig_obj
)) SWIG_fail
;
6239 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6240 if (!SWIG_IsOK(res1
)) {
6241 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_caption_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6243 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6245 arg2
= wxString_in_helper(swig_obj
[1]);
6246 if (arg2
== NULL
) SWIG_fail
;
6249 if (arg1
) (arg1
)->caption
= *arg2
;
6251 resultobj
= SWIG_Py_Void();
6266 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_caption_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6267 PyObject
*resultobj
= 0;
6268 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6269 wxString
*result
= 0 ;
6272 PyObject
*swig_obj
[1] ;
6274 if (!args
) SWIG_fail
;
6276 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6277 if (!SWIG_IsOK(res1
)) {
6278 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_caption_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6280 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6281 result
= (wxString
*)& ((arg1
)->caption
);
6284 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
6286 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
6295 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_window_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6296 PyObject
*resultobj
= 0;
6297 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6298 wxWindow
*arg2
= (wxWindow
*) 0 ;
6303 PyObject
*swig_obj
[2] ;
6305 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_window_set",2,2,swig_obj
)) SWIG_fail
;
6306 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6307 if (!SWIG_IsOK(res1
)) {
6308 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_window_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6310 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6311 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN
| 0 );
6312 if (!SWIG_IsOK(res2
)) {
6313 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_window_set" "', expected argument " "2"" of type '" "wxWindow *""'");
6315 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
6316 if (arg1
) (arg1
)->window
= arg2
;
6318 resultobj
= SWIG_Py_Void();
6325 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_window_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6326 PyObject
*resultobj
= 0;
6327 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6328 wxWindow
*result
= 0 ;
6331 PyObject
*swig_obj
[1] ;
6333 if (!args
) SWIG_fail
;
6335 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6336 if (!SWIG_IsOK(res1
)) {
6337 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_window_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6339 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6340 result
= (wxWindow
*) ((arg1
)->window
);
6342 resultobj
= wxPyMake_wxObject(result
, 0);
6350 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_frame_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6351 PyObject
*resultobj
= 0;
6352 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6353 wxFrame
*arg2
= (wxFrame
*) 0 ;
6358 PyObject
*swig_obj
[2] ;
6360 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_frame_set",2,2,swig_obj
)) SWIG_fail
;
6361 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6362 if (!SWIG_IsOK(res1
)) {
6363 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_frame_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6365 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6366 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxFrame
, SWIG_POINTER_DISOWN
| 0 );
6367 if (!SWIG_IsOK(res2
)) {
6368 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_frame_set" "', expected argument " "2"" of type '" "wxFrame *""'");
6370 arg2
= reinterpret_cast< wxFrame
* >(argp2
);
6371 if (arg1
) (arg1
)->frame
= arg2
;
6373 resultobj
= SWIG_Py_Void();
6380 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_frame_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6381 PyObject
*resultobj
= 0;
6382 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6383 wxFrame
*result
= 0 ;
6386 PyObject
*swig_obj
[1] ;
6388 if (!args
) SWIG_fail
;
6390 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6391 if (!SWIG_IsOK(res1
)) {
6392 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_frame_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6394 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6395 result
= (wxFrame
*) ((arg1
)->frame
);
6397 resultobj
= wxPyMake_wxObject(result
, 0);
6405 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_state_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6406 PyObject
*resultobj
= 0;
6407 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6413 PyObject
*swig_obj
[2] ;
6415 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_state_set",2,2,swig_obj
)) SWIG_fail
;
6416 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6417 if (!SWIG_IsOK(res1
)) {
6418 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_state_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6420 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6421 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6422 if (!SWIG_IsOK(ecode2
)) {
6423 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_state_set" "', expected argument " "2"" of type '" "int""'");
6425 arg2
= static_cast< int >(val2
);
6426 if (arg1
) (arg1
)->state
= arg2
;
6428 resultobj
= SWIG_Py_Void();
6435 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_state_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6436 PyObject
*resultobj
= 0;
6437 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6441 PyObject
*swig_obj
[1] ;
6443 if (!args
) SWIG_fail
;
6445 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6446 if (!SWIG_IsOK(res1
)) {
6447 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_state_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6449 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6450 result
= (int) ((arg1
)->state
);
6451 resultobj
= SWIG_From_int(static_cast< int >(result
));
6458 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_direction_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6459 PyObject
*resultobj
= 0;
6460 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6466 PyObject
*swig_obj
[2] ;
6468 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
;
6469 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6470 if (!SWIG_IsOK(res1
)) {
6471 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6473 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6474 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6475 if (!SWIG_IsOK(ecode2
)) {
6476 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'");
6478 arg2
= static_cast< int >(val2
);
6479 if (arg1
) (arg1
)->dock_direction
= arg2
;
6481 resultobj
= SWIG_Py_Void();
6488 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_direction_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6489 PyObject
*resultobj
= 0;
6490 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6494 PyObject
*swig_obj
[1] ;
6496 if (!args
) SWIG_fail
;
6498 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6499 if (!SWIG_IsOK(res1
)) {
6500 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6502 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6503 result
= (int) ((arg1
)->dock_direction
);
6504 resultobj
= SWIG_From_int(static_cast< int >(result
));
6511 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_layer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6512 PyObject
*resultobj
= 0;
6513 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6519 PyObject
*swig_obj
[2] ;
6521 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
;
6522 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6523 if (!SWIG_IsOK(res1
)) {
6524 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6526 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6527 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6528 if (!SWIG_IsOK(ecode2
)) {
6529 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'");
6531 arg2
= static_cast< int >(val2
);
6532 if (arg1
) (arg1
)->dock_layer
= arg2
;
6534 resultobj
= SWIG_Py_Void();
6541 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_layer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6542 PyObject
*resultobj
= 0;
6543 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6547 PyObject
*swig_obj
[1] ;
6549 if (!args
) SWIG_fail
;
6551 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6552 if (!SWIG_IsOK(res1
)) {
6553 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6555 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6556 result
= (int) ((arg1
)->dock_layer
);
6557 resultobj
= SWIG_From_int(static_cast< int >(result
));
6564 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_row_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6565 PyObject
*resultobj
= 0;
6566 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6572 PyObject
*swig_obj
[2] ;
6574 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
;
6575 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6576 if (!SWIG_IsOK(res1
)) {
6577 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_row_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6579 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6580 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6581 if (!SWIG_IsOK(ecode2
)) {
6582 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'");
6584 arg2
= static_cast< int >(val2
);
6585 if (arg1
) (arg1
)->dock_row
= arg2
;
6587 resultobj
= SWIG_Py_Void();
6594 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_row_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6595 PyObject
*resultobj
= 0;
6596 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6600 PyObject
*swig_obj
[1] ;
6602 if (!args
) SWIG_fail
;
6604 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6605 if (!SWIG_IsOK(res1
)) {
6606 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_row_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6608 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6609 result
= (int) ((arg1
)->dock_row
);
6610 resultobj
= SWIG_From_int(static_cast< int >(result
));
6617 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_pos_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6618 PyObject
*resultobj
= 0;
6619 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6625 PyObject
*swig_obj
[2] ;
6627 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_pos_set",2,2,swig_obj
)) SWIG_fail
;
6628 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6629 if (!SWIG_IsOK(res1
)) {
6630 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_pos_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6632 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6633 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6634 if (!SWIG_IsOK(ecode2
)) {
6635 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_pos_set" "', expected argument " "2"" of type '" "int""'");
6637 arg2
= static_cast< int >(val2
);
6638 if (arg1
) (arg1
)->dock_pos
= arg2
;
6640 resultobj
= SWIG_Py_Void();
6647 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_pos_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6648 PyObject
*resultobj
= 0;
6649 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6653 PyObject
*swig_obj
[1] ;
6655 if (!args
) SWIG_fail
;
6657 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6658 if (!SWIG_IsOK(res1
)) {
6659 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_pos_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6661 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6662 result
= (int) ((arg1
)->dock_pos
);
6663 resultobj
= SWIG_From_int(static_cast< int >(result
));
6670 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_best_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6671 PyObject
*resultobj
= 0;
6672 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6673 wxSize
*arg2
= (wxSize
*) 0 ;
6678 PyObject
*swig_obj
[2] ;
6680 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_best_size_set",2,2,swig_obj
)) SWIG_fail
;
6681 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6682 if (!SWIG_IsOK(res1
)) {
6683 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_best_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6685 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6686 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6687 if (!SWIG_IsOK(res2
)) {
6688 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_best_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6690 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6691 if (arg1
) (arg1
)->best_size
= *arg2
;
6693 resultobj
= SWIG_Py_Void();
6700 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_best_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6701 PyObject
*resultobj
= 0;
6702 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6703 wxSize
*result
= 0 ;
6706 PyObject
*swig_obj
[1] ;
6708 if (!args
) SWIG_fail
;
6710 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6711 if (!SWIG_IsOK(res1
)) {
6712 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_best_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6714 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6715 result
= (wxSize
*)& ((arg1
)->best_size
);
6716 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6723 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_min_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6724 PyObject
*resultobj
= 0;
6725 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6726 wxSize
*arg2
= (wxSize
*) 0 ;
6731 PyObject
*swig_obj
[2] ;
6733 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
;
6734 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6735 if (!SWIG_IsOK(res1
)) {
6736 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_min_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6738 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6739 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6740 if (!SWIG_IsOK(res2
)) {
6741 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_min_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6743 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6744 if (arg1
) (arg1
)->min_size
= *arg2
;
6746 resultobj
= SWIG_Py_Void();
6753 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_min_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6754 PyObject
*resultobj
= 0;
6755 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6756 wxSize
*result
= 0 ;
6759 PyObject
*swig_obj
[1] ;
6761 if (!args
) SWIG_fail
;
6763 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6764 if (!SWIG_IsOK(res1
)) {
6765 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_min_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6767 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6768 result
= (wxSize
*)& ((arg1
)->min_size
);
6769 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6776 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_max_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6777 PyObject
*resultobj
= 0;
6778 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6779 wxSize
*arg2
= (wxSize
*) 0 ;
6784 PyObject
*swig_obj
[2] ;
6786 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_max_size_set",2,2,swig_obj
)) SWIG_fail
;
6787 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6788 if (!SWIG_IsOK(res1
)) {
6789 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_max_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6791 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6792 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6793 if (!SWIG_IsOK(res2
)) {
6794 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_max_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6796 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6797 if (arg1
) (arg1
)->max_size
= *arg2
;
6799 resultobj
= SWIG_Py_Void();
6806 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_max_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6807 PyObject
*resultobj
= 0;
6808 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6809 wxSize
*result
= 0 ;
6812 PyObject
*swig_obj
[1] ;
6814 if (!args
) SWIG_fail
;
6816 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6817 if (!SWIG_IsOK(res1
)) {
6818 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_max_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6820 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6821 result
= (wxSize
*)& ((arg1
)->max_size
);
6822 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6829 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_pos_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6830 PyObject
*resultobj
= 0;
6831 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6832 wxPoint
*arg2
= (wxPoint
*) 0 ;
6837 PyObject
*swig_obj
[2] ;
6839 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_floating_pos_set",2,2,swig_obj
)) SWIG_fail
;
6840 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6841 if (!SWIG_IsOK(res1
)) {
6842 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_pos_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6844 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6845 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPoint
, 0 | 0 );
6846 if (!SWIG_IsOK(res2
)) {
6847 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_floating_pos_set" "', expected argument " "2"" of type '" "wxPoint *""'");
6849 arg2
= reinterpret_cast< wxPoint
* >(argp2
);
6850 if (arg1
) (arg1
)->floating_pos
= *arg2
;
6852 resultobj
= SWIG_Py_Void();
6859 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_pos_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6860 PyObject
*resultobj
= 0;
6861 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6862 wxPoint
*result
= 0 ;
6865 PyObject
*swig_obj
[1] ;
6867 if (!args
) SWIG_fail
;
6869 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6870 if (!SWIG_IsOK(res1
)) {
6871 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_pos_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6873 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6874 result
= (wxPoint
*)& ((arg1
)->floating_pos
);
6875 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPoint
, 0 | 0 );
6882 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6883 PyObject
*resultobj
= 0;
6884 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6885 wxSize
*arg2
= (wxSize
*) 0 ;
6890 PyObject
*swig_obj
[2] ;
6892 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_floating_size_set",2,2,swig_obj
)) SWIG_fail
;
6893 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6894 if (!SWIG_IsOK(res1
)) {
6895 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_size_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6897 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6898 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6899 if (!SWIG_IsOK(res2
)) {
6900 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_floating_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6902 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6903 if (arg1
) (arg1
)->floating_size
= *arg2
;
6905 resultobj
= SWIG_Py_Void();
6912 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_floating_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6913 PyObject
*resultobj
= 0;
6914 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6915 wxSize
*result
= 0 ;
6918 PyObject
*swig_obj
[1] ;
6920 if (!args
) SWIG_fail
;
6922 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6923 if (!SWIG_IsOK(res1
)) {
6924 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_floating_size_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6926 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6927 result
= (wxSize
*)& ((arg1
)->floating_size
);
6928 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6935 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_proportion_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6936 PyObject
*resultobj
= 0;
6937 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6943 PyObject
*swig_obj
[2] ;
6945 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_dock_proportion_set",2,2,swig_obj
)) SWIG_fail
;
6946 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6947 if (!SWIG_IsOK(res1
)) {
6948 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_proportion_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6950 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6951 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6952 if (!SWIG_IsOK(ecode2
)) {
6953 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneInfo_dock_proportion_set" "', expected argument " "2"" of type '" "int""'");
6955 arg2
= static_cast< int >(val2
);
6956 if (arg1
) (arg1
)->dock_proportion
= arg2
;
6958 resultobj
= SWIG_Py_Void();
6965 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_dock_proportion_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6966 PyObject
*resultobj
= 0;
6967 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6971 PyObject
*swig_obj
[1] ;
6973 if (!args
) SWIG_fail
;
6975 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
6976 if (!SWIG_IsOK(res1
)) {
6977 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_dock_proportion_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
6979 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
6980 result
= (int) ((arg1
)->dock_proportion
);
6981 resultobj
= SWIG_From_int(static_cast< int >(result
));
6988 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_buttons_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6989 PyObject
*resultobj
= 0;
6990 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
6991 wxAuiPaneButtonArray arg2
;
6996 PyObject
*swig_obj
[2] ;
6998 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_buttons_set",2,2,swig_obj
)) SWIG_fail
;
6999 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7000 if (!SWIG_IsOK(res1
)) {
7001 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_buttons_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
7003 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
7005 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxAuiPaneButtonArray
, 0 | 0);
7006 if (!SWIG_IsOK(res2
)) {
7007 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxAuiPaneButtonArray""'");
7010 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiPaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxAuiPaneButtonArray""'");
7012 wxAuiPaneButtonArray
* temp
= reinterpret_cast< wxAuiPaneButtonArray
* >(argp2
);
7014 if (SWIG_IsNewObj(res2
)) delete temp
;
7017 if (arg1
) (arg1
)->buttons
= arg2
;
7019 resultobj
= SWIG_Py_Void();
7026 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_buttons_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7027 PyObject
*resultobj
= 0;
7028 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
7029 wxAuiPaneButtonArray result
;
7032 PyObject
*swig_obj
[1] ;
7034 if (!args
) SWIG_fail
;
7036 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7037 if (!SWIG_IsOK(res1
)) {
7038 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_buttons_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
7040 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
7041 result
= ((arg1
)->buttons
);
7042 resultobj
= SWIG_NewPointerObj((new wxAuiPaneButtonArray(static_cast< const wxAuiPaneButtonArray
& >(result
))), SWIGTYPE_p_wxAuiPaneButtonArray
, SWIG_POINTER_OWN
| 0 );
7049 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7050 PyObject
*resultobj
= 0;
7051 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
7052 wxRect
*arg2
= (wxRect
*) 0 ;
7057 PyObject
*swig_obj
[2] ;
7059 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneInfo_rect_set",2,2,swig_obj
)) SWIG_fail
;
7060 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7061 if (!SWIG_IsOK(res1
)) {
7062 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_rect_set" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
7064 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
7065 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
7066 if (!SWIG_IsOK(res2
)) {
7067 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiPaneInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
7069 arg2
= reinterpret_cast< wxRect
* >(argp2
);
7070 if (arg1
) (arg1
)->rect
= *arg2
;
7072 resultobj
= SWIG_Py_Void();
7079 SWIGINTERN PyObject
*_wrap_AuiPaneInfo_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7080 PyObject
*resultobj
= 0;
7081 wxAuiPaneInfo
*arg1
= (wxAuiPaneInfo
*) 0 ;
7082 wxRect
*result
= 0 ;
7085 PyObject
*swig_obj
[1] ;
7087 if (!args
) SWIG_fail
;
7089 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7090 if (!SWIG_IsOK(res1
)) {
7091 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneInfo_rect_get" "', expected argument " "1"" of type '" "wxAuiPaneInfo *""'");
7093 arg1
= reinterpret_cast< wxAuiPaneInfo
* >(argp1
);
7094 result
= (wxRect
*)& ((arg1
)->rect
);
7095 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
7102 SWIGINTERN PyObject
*AuiPaneInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7104 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7105 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiPaneInfo
, SWIG_NewClientData(obj
));
7106 return SWIG_Py_Void();
7109 SWIGINTERN PyObject
*AuiPaneInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7110 return SWIG_Python_InitShadowInstance(args
);
7113 SWIGINTERN PyObject
*_wrap_new_AuiManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7114 PyObject
*resultobj
= 0;
7115 wxWindow
*arg1
= (wxWindow
*) NULL
;
7116 int arg2
= (int) wxAUI_MGR_DEFAULT
;
7117 wxAuiManager
*result
= 0 ;
7122 PyObject
* obj0
= 0 ;
7123 PyObject
* obj1
= 0 ;
7124 char * kwnames
[] = {
7125 (char *) "managed_wnd",(char *) "flags", NULL
7128 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_AuiManager",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7130 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7131 if (!SWIG_IsOK(res1
)) {
7132 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiManager" "', expected argument " "1"" of type '" "wxWindow *""'");
7134 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
7137 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7138 if (!SWIG_IsOK(ecode2
)) {
7139 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiManager" "', expected argument " "2"" of type '" "int""'");
7141 arg2
= static_cast< int >(val2
);
7144 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7145 result
= (wxAuiManager
*)new wxAuiManager(arg1
,arg2
);
7146 wxPyEndAllowThreads(__tstate
);
7147 if (PyErr_Occurred()) SWIG_fail
;
7149 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManager
, SWIG_POINTER_NEW
| 0 );
7156 SWIGINTERN PyObject
*_wrap_delete_AuiManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7157 PyObject
*resultobj
= 0;
7158 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7161 PyObject
*swig_obj
[1] ;
7163 if (!args
) SWIG_fail
;
7165 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, SWIG_POINTER_DISOWN
| 0 );
7166 if (!SWIG_IsOK(res1
)) {
7167 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiManager" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7169 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7171 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7174 wxPyEndAllowThreads(__tstate
);
7175 if (PyErr_Occurred()) SWIG_fail
;
7177 resultobj
= SWIG_Py_Void();
7184 SWIGINTERN PyObject
*_wrap_AuiManager_UnInit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7185 PyObject
*resultobj
= 0;
7186 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7189 PyObject
*swig_obj
[1] ;
7191 if (!args
) SWIG_fail
;
7193 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7194 if (!SWIG_IsOK(res1
)) {
7195 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_UnInit" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7197 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7199 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7201 wxPyEndAllowThreads(__tstate
);
7202 if (PyErr_Occurred()) SWIG_fail
;
7204 resultobj
= SWIG_Py_Void();
7211 SWIGINTERN PyObject
*_wrap_AuiManager_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7212 PyObject
*resultobj
= 0;
7213 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7219 PyObject
* obj0
= 0 ;
7220 PyObject
* obj1
= 0 ;
7221 char * kwnames
[] = {
7222 (char *) "self",(char *) "flags", NULL
7225 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7226 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7227 if (!SWIG_IsOK(res1
)) {
7228 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetFlags" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7230 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7231 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7232 if (!SWIG_IsOK(ecode2
)) {
7233 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManager_SetFlags" "', expected argument " "2"" of type '" "int""'");
7235 arg2
= static_cast< int >(val2
);
7237 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7238 (arg1
)->SetFlags(arg2
);
7239 wxPyEndAllowThreads(__tstate
);
7240 if (PyErr_Occurred()) SWIG_fail
;
7242 resultobj
= SWIG_Py_Void();
7249 SWIGINTERN PyObject
*_wrap_AuiManager_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7250 PyObject
*resultobj
= 0;
7251 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7255 PyObject
*swig_obj
[1] ;
7257 if (!args
) SWIG_fail
;
7259 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7260 if (!SWIG_IsOK(res1
)) {
7261 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetFlags" "', expected argument " "1"" of type '" "wxAuiManager const *""'");
7263 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7265 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7266 result
= (int)((wxAuiManager
const *)arg1
)->GetFlags();
7267 wxPyEndAllowThreads(__tstate
);
7268 if (PyErr_Occurred()) SWIG_fail
;
7270 resultobj
= SWIG_From_int(static_cast< int >(result
));
7277 SWIGINTERN PyObject
*_wrap_AuiManager_SetManagedWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7278 PyObject
*resultobj
= 0;
7279 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7280 wxWindow
*arg2
= (wxWindow
*) 0 ;
7285 PyObject
* obj0
= 0 ;
7286 PyObject
* obj1
= 0 ;
7287 char * kwnames
[] = {
7288 (char *) "self",(char *) "managed_wnd", NULL
7291 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SetManagedWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7292 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7293 if (!SWIG_IsOK(res1
)) {
7294 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetManagedWindow" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7296 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7297 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7298 if (!SWIG_IsOK(res2
)) {
7299 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_SetManagedWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
7301 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7303 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7304 (arg1
)->SetManagedWindow(arg2
);
7305 wxPyEndAllowThreads(__tstate
);
7306 if (PyErr_Occurred()) SWIG_fail
;
7308 resultobj
= SWIG_Py_Void();
7315 SWIGINTERN PyObject
*_wrap_AuiManager_GetManagedWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7316 PyObject
*resultobj
= 0;
7317 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7318 wxWindow
*result
= 0 ;
7321 PyObject
*swig_obj
[1] ;
7323 if (!args
) SWIG_fail
;
7325 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7326 if (!SWIG_IsOK(res1
)) {
7327 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetManagedWindow" "', expected argument " "1"" of type '" "wxAuiManager const *""'");
7329 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7331 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7332 result
= (wxWindow
*)((wxAuiManager
const *)arg1
)->GetManagedWindow();
7333 wxPyEndAllowThreads(__tstate
);
7334 if (PyErr_Occurred()) SWIG_fail
;
7337 resultobj
= wxPyMake_wxObject(result
, 0);
7345 SWIGINTERN PyObject
*_wrap_AuiManager_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7346 PyObject
*resultobj
= 0;
7347 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7348 wxAuiDockArt
*arg2
= (wxAuiDockArt
*) 0 ;
7352 PyObject
* obj0
= 0 ;
7353 PyObject
* obj1
= 0 ;
7354 char * kwnames
[] = {
7355 (char *) "self",(char *) "art_provider", NULL
7358 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7359 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7360 if (!SWIG_IsOK(res1
)) {
7361 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7363 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7364 res2
= SWIG_ConvertPtr(obj1
, SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxAuiDockArt
, SWIG_POINTER_DISOWN
| 0 );
7365 if (!SWIG_IsOK(res2
)) {
7366 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiDockArt *""'");
7369 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7370 (arg1
)->SetArtProvider(arg2
);
7371 wxPyEndAllowThreads(__tstate
);
7372 if (PyErr_Occurred()) SWIG_fail
;
7374 resultobj
= SWIG_Py_Void();
7381 SWIGINTERN PyObject
*_wrap_AuiManager_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7382 PyObject
*resultobj
= 0;
7383 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7384 wxAuiDockArt
*result
= 0 ;
7387 PyObject
*swig_obj
[1] ;
7389 if (!args
) SWIG_fail
;
7391 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7392 if (!SWIG_IsOK(res1
)) {
7393 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiManager const *""'");
7395 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7397 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7398 result
= (wxAuiDockArt
*)((wxAuiManager
const *)arg1
)->GetArtProvider();
7399 wxPyEndAllowThreads(__tstate
);
7400 if (PyErr_Occurred()) SWIG_fail
;
7402 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
7409 SWIGINTERN PyObject
*_wrap_AuiManager__GetPaneByWidget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7410 PyObject
*resultobj
= 0;
7411 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7412 wxWindow
*arg2
= (wxWindow
*) 0 ;
7413 wxAuiPaneInfo
*result
= 0 ;
7418 PyObject
* obj0
= 0 ;
7419 PyObject
* obj1
= 0 ;
7420 char * kwnames
[] = {
7421 (char *) "self",(char *) "window", NULL
7424 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager__GetPaneByWidget",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7425 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7426 if (!SWIG_IsOK(res1
)) {
7427 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__GetPaneByWidget" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7429 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7430 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7431 if (!SWIG_IsOK(res2
)) {
7432 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager__GetPaneByWidget" "', expected argument " "2"" of type '" "wxWindow *""'");
7434 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7436 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7438 wxAuiPaneInfo
&_result_ref
= (arg1
)->GetPane(arg2
);
7439 result
= (wxAuiPaneInfo
*) &_result_ref
;
7441 wxPyEndAllowThreads(__tstate
);
7442 if (PyErr_Occurred()) SWIG_fail
;
7444 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7451 SWIGINTERN PyObject
*_wrap_AuiManager__GetPaneByName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7452 PyObject
*resultobj
= 0;
7453 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7454 wxString
*arg2
= 0 ;
7455 wxAuiPaneInfo
*result
= 0 ;
7458 bool temp2
= false ;
7459 PyObject
* obj0
= 0 ;
7460 PyObject
* obj1
= 0 ;
7461 char * kwnames
[] = {
7462 (char *) "self",(char *) "name", NULL
7465 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager__GetPaneByName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7466 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7467 if (!SWIG_IsOK(res1
)) {
7468 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__GetPaneByName" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7470 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7472 arg2
= wxString_in_helper(obj1
);
7473 if (arg2
== NULL
) SWIG_fail
;
7477 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7479 wxAuiPaneInfo
&_result_ref
= (arg1
)->GetPane((wxString
const &)*arg2
);
7480 result
= (wxAuiPaneInfo
*) &_result_ref
;
7482 wxPyEndAllowThreads(__tstate
);
7483 if (PyErr_Occurred()) SWIG_fail
;
7485 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
7500 SWIGINTERN PyObject
*_wrap_AuiManager_GetAllPanes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7501 PyObject
*resultobj
= 0;
7502 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7503 wxAuiPaneInfoArray
*result
= 0 ;
7506 PyObject
*swig_obj
[1] ;
7508 if (!args
) SWIG_fail
;
7510 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7511 if (!SWIG_IsOK(res1
)) {
7512 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_GetAllPanes" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7514 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7516 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7518 wxAuiPaneInfoArray
&_result_ref
= (arg1
)->GetAllPanes();
7519 result
= (wxAuiPaneInfoArray
*) &_result_ref
;
7521 wxPyEndAllowThreads(__tstate
);
7522 if (PyErr_Occurred()) SWIG_fail
;
7525 resultobj
= PyList_New(0);
7526 for (size_t i
=0; i
< result
->GetCount(); i
++) {
7527 PyObject
* pane_obj
= SWIG_NewPointerObj((void*)(&result
->Item(i
)), SWIGTYPE_p_wxAuiPaneInfo
, 0);
7528 PyList_Append(resultobj
, pane_obj
);
7537 SWIGINTERN PyObject
*_wrap_AuiManager__AddPane1(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7538 PyObject
*resultobj
= 0;
7539 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7540 wxWindow
*arg2
= (wxWindow
*) 0 ;
7541 wxAuiPaneInfo
*arg3
= 0 ;
7549 PyObject
* obj0
= 0 ;
7550 PyObject
* obj1
= 0 ;
7551 PyObject
* obj2
= 0 ;
7552 char * kwnames
[] = {
7553 (char *) "self",(char *) "window",(char *) "pane_info", NULL
7556 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager__AddPane1",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7557 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7558 if (!SWIG_IsOK(res1
)) {
7559 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__AddPane1" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7561 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7562 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7563 if (!SWIG_IsOK(res2
)) {
7564 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager__AddPane1" "', expected argument " "2"" of type '" "wxWindow *""'");
7566 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7567 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
7568 if (!SWIG_IsOK(res3
)) {
7569 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager__AddPane1" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7572 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager__AddPane1" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7574 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
7576 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7577 result
= (bool)(arg1
)->AddPane(arg2
,(wxAuiPaneInfo
const &)*arg3
);
7578 wxPyEndAllowThreads(__tstate
);
7579 if (PyErr_Occurred()) SWIG_fail
;
7582 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7590 SWIGINTERN PyObject
*_wrap_AuiManager_AddPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7591 PyObject
*resultobj
= 0;
7592 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7593 wxWindow
*arg2
= (wxWindow
*) 0 ;
7594 wxAuiPaneInfo
*arg3
= 0 ;
7604 PyObject
* obj0
= 0 ;
7605 PyObject
* obj1
= 0 ;
7606 PyObject
* obj2
= 0 ;
7607 PyObject
* obj3
= 0 ;
7608 char * kwnames
[] = {
7609 (char *) "self",(char *) "window",(char *) "pane_info",(char *) "drop_pos", NULL
7612 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiManager_AddPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7613 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7614 if (!SWIG_IsOK(res1
)) {
7615 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_AddPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7617 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7618 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7619 if (!SWIG_IsOK(res2
)) {
7620 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_AddPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7622 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7623 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
7624 if (!SWIG_IsOK(res3
)) {
7625 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_AddPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7628 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_AddPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7630 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
7633 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7636 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7637 result
= (bool)(arg1
)->AddPane(arg2
,(wxAuiPaneInfo
const &)*arg3
,(wxPoint
const &)*arg4
);
7638 wxPyEndAllowThreads(__tstate
);
7639 if (PyErr_Occurred()) SWIG_fail
;
7642 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7650 SWIGINTERN PyObject
*_wrap_AuiManager__AddPane2(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7651 PyObject
*resultobj
= 0;
7652 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7653 wxWindow
*arg2
= (wxWindow
*) 0 ;
7654 int arg3
= (int) wxLEFT
;
7655 wxString
const &arg4_defvalue
= wxEmptyString
;
7656 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
7664 bool temp4
= false ;
7665 PyObject
* obj0
= 0 ;
7666 PyObject
* obj1
= 0 ;
7667 PyObject
* obj2
= 0 ;
7668 PyObject
* obj3
= 0 ;
7669 char * kwnames
[] = {
7670 (char *) "self",(char *) "window",(char *) "direction",(char *) "caption", NULL
7673 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:AuiManager__AddPane2",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7674 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7675 if (!SWIG_IsOK(res1
)) {
7676 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager__AddPane2" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7678 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7679 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7680 if (!SWIG_IsOK(res2
)) {
7681 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager__AddPane2" "', expected argument " "2"" of type '" "wxWindow *""'");
7683 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7685 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
7686 if (!SWIG_IsOK(ecode3
)) {
7687 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiManager__AddPane2" "', expected argument " "3"" of type '" "int""'");
7689 arg3
= static_cast< int >(val3
);
7693 arg4
= wxString_in_helper(obj3
);
7694 if (arg4
== NULL
) SWIG_fail
;
7699 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7700 result
= (bool)(arg1
)->AddPane(arg2
,arg3
,(wxString
const &)*arg4
);
7701 wxPyEndAllowThreads(__tstate
);
7702 if (PyErr_Occurred()) SWIG_fail
;
7705 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7721 SWIGINTERN PyObject
*_wrap_AuiManager_InsertPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7722 PyObject
*resultobj
= 0;
7723 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7724 wxWindow
*arg2
= (wxWindow
*) 0 ;
7725 wxAuiPaneInfo
*arg3
= 0 ;
7726 int arg4
= (int) wxAUI_INSERT_PANE
;
7736 PyObject
* obj0
= 0 ;
7737 PyObject
* obj1
= 0 ;
7738 PyObject
* obj2
= 0 ;
7739 PyObject
* obj3
= 0 ;
7740 char * kwnames
[] = {
7741 (char *) "self",(char *) "window",(char *) "insert_location",(char *) "insert_level", NULL
7744 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:AuiManager_InsertPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7745 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7746 if (!SWIG_IsOK(res1
)) {
7747 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_InsertPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7749 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7750 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7751 if (!SWIG_IsOK(res2
)) {
7752 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_InsertPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7754 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7755 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
7756 if (!SWIG_IsOK(res3
)) {
7757 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_InsertPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7760 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_InsertPane" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
7762 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
7764 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
7765 if (!SWIG_IsOK(ecode4
)) {
7766 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiManager_InsertPane" "', expected argument " "4"" of type '" "int""'");
7768 arg4
= static_cast< int >(val4
);
7771 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7772 result
= (bool)(arg1
)->InsertPane(arg2
,(wxAuiPaneInfo
const &)*arg3
,arg4
);
7773 wxPyEndAllowThreads(__tstate
);
7774 if (PyErr_Occurred()) SWIG_fail
;
7777 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7785 SWIGINTERN PyObject
*_wrap_AuiManager_DetachPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7786 PyObject
*resultobj
= 0;
7787 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7788 wxWindow
*arg2
= (wxWindow
*) 0 ;
7794 PyObject
* obj0
= 0 ;
7795 PyObject
* obj1
= 0 ;
7796 char * kwnames
[] = {
7797 (char *) "self",(char *) "window", NULL
7800 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_DetachPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7801 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7802 if (!SWIG_IsOK(res1
)) {
7803 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_DetachPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7805 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7806 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7807 if (!SWIG_IsOK(res2
)) {
7808 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_DetachPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7810 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7812 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7813 result
= (bool)(arg1
)->DetachPane(arg2
);
7814 wxPyEndAllowThreads(__tstate
);
7815 if (PyErr_Occurred()) SWIG_fail
;
7818 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7826 SWIGINTERN PyObject
*_wrap_AuiManager_ClosePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7827 PyObject
*resultobj
= 0;
7828 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7829 wxAuiPaneInfo
*arg2
= 0 ;
7834 PyObject
* obj0
= 0 ;
7835 PyObject
* obj1
= 0 ;
7836 char * kwnames
[] = {
7837 (char *) "self",(char *) "pane_info", NULL
7840 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_ClosePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7841 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7842 if (!SWIG_IsOK(res1
)) {
7843 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_ClosePane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7845 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7846 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
7847 if (!SWIG_IsOK(res2
)) {
7848 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_ClosePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7851 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_ClosePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7853 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
7855 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7856 (arg1
)->ClosePane(*arg2
);
7857 wxPyEndAllowThreads(__tstate
);
7858 if (PyErr_Occurred()) SWIG_fail
;
7860 resultobj
= SWIG_Py_Void();
7867 SWIGINTERN PyObject
*_wrap_AuiManager_MaximizePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7868 PyObject
*resultobj
= 0;
7869 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7870 wxAuiPaneInfo
*arg2
= 0 ;
7875 PyObject
* obj0
= 0 ;
7876 PyObject
* obj1
= 0 ;
7877 char * kwnames
[] = {
7878 (char *) "self",(char *) "pane_info", NULL
7881 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_MaximizePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7882 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7883 if (!SWIG_IsOK(res1
)) {
7884 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_MaximizePane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7886 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7887 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
7888 if (!SWIG_IsOK(res2
)) {
7889 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_MaximizePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7892 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_MaximizePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7894 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
7896 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7897 (arg1
)->MaximizePane(*arg2
);
7898 wxPyEndAllowThreads(__tstate
);
7899 if (PyErr_Occurred()) SWIG_fail
;
7901 resultobj
= SWIG_Py_Void();
7908 SWIGINTERN PyObject
*_wrap_AuiManager_RestorePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7909 PyObject
*resultobj
= 0;
7910 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7911 wxAuiPaneInfo
*arg2
= 0 ;
7916 PyObject
* obj0
= 0 ;
7917 PyObject
* obj1
= 0 ;
7918 char * kwnames
[] = {
7919 (char *) "self",(char *) "pane_info", NULL
7922 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_RestorePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7923 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7924 if (!SWIG_IsOK(res1
)) {
7925 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_RestorePane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7927 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7928 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
7929 if (!SWIG_IsOK(res2
)) {
7930 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_RestorePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7933 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_RestorePane" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
7935 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
7937 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7938 (arg1
)->RestorePane(*arg2
);
7939 wxPyEndAllowThreads(__tstate
);
7940 if (PyErr_Occurred()) SWIG_fail
;
7942 resultobj
= SWIG_Py_Void();
7949 SWIGINTERN PyObject
*_wrap_AuiManager_RestoreMaximizedPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7950 PyObject
*resultobj
= 0;
7951 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7954 PyObject
*swig_obj
[1] ;
7956 if (!args
) SWIG_fail
;
7958 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7959 if (!SWIG_IsOK(res1
)) {
7960 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_RestoreMaximizedPane" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7962 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7964 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7965 (arg1
)->RestoreMaximizedPane();
7966 wxPyEndAllowThreads(__tstate
);
7967 if (PyErr_Occurred()) SWIG_fail
;
7969 resultobj
= SWIG_Py_Void();
7976 SWIGINTERN PyObject
*_wrap_AuiManager_SavePaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7977 PyObject
*resultobj
= 0;
7978 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
7979 wxAuiPaneInfo
*arg2
= 0 ;
7985 PyObject
* obj0
= 0 ;
7986 PyObject
* obj1
= 0 ;
7987 char * kwnames
[] = {
7988 (char *) "self",(char *) "pane", NULL
7991 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_SavePaneInfo",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7992 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
7993 if (!SWIG_IsOK(res1
)) {
7994 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SavePaneInfo" "', expected argument " "1"" of type '" "wxAuiManager *""'");
7996 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
7997 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
7998 if (!SWIG_IsOK(res2
)) {
7999 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_SavePaneInfo" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8002 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_SavePaneInfo" "', expected argument " "2"" of type '" "wxAuiPaneInfo &""'");
8004 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
8006 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8007 result
= (arg1
)->SavePaneInfo(*arg2
);
8008 wxPyEndAllowThreads(__tstate
);
8009 if (PyErr_Occurred()) SWIG_fail
;
8013 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
8015 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
8024 SWIGINTERN PyObject
*_wrap_AuiManager_LoadPaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8025 PyObject
*resultobj
= 0;
8026 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8028 wxAuiPaneInfo
*arg3
= 0 ;
8033 PyObject
* obj0
= 0 ;
8034 PyObject
* obj1
= 0 ;
8035 PyObject
* obj2
= 0 ;
8036 char * kwnames
[] = {
8037 (char *) "self",(char *) "pane_part",(char *) "pane", NULL
8040 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_LoadPaneInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8041 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8042 if (!SWIG_IsOK(res1
)) {
8043 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_LoadPaneInfo" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8045 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8047 wxString
* sptr
= wxString_in_helper(obj1
);
8048 if (sptr
== NULL
) SWIG_fail
;
8052 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
8053 if (!SWIG_IsOK(res3
)) {
8054 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_LoadPaneInfo" "', expected argument " "3"" of type '" "wxAuiPaneInfo &""'");
8057 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_LoadPaneInfo" "', expected argument " "3"" of type '" "wxAuiPaneInfo &""'");
8059 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
8061 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8062 (arg1
)->LoadPaneInfo(arg2
,*arg3
);
8063 wxPyEndAllowThreads(__tstate
);
8064 if (PyErr_Occurred()) SWIG_fail
;
8066 resultobj
= SWIG_Py_Void();
8073 SWIGINTERN PyObject
*_wrap_AuiManager_SavePerspective(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8074 PyObject
*resultobj
= 0;
8075 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8079 PyObject
*swig_obj
[1] ;
8081 if (!args
) SWIG_fail
;
8083 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8084 if (!SWIG_IsOK(res1
)) {
8085 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_SavePerspective" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8087 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8089 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8090 result
= (arg1
)->SavePerspective();
8091 wxPyEndAllowThreads(__tstate
);
8092 if (PyErr_Occurred()) SWIG_fail
;
8096 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
8098 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
8107 SWIGINTERN PyObject
*_wrap_AuiManager_LoadPerspective(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8108 PyObject
*resultobj
= 0;
8109 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8110 wxString
*arg2
= 0 ;
8111 bool arg3
= (bool) true ;
8115 bool temp2
= false ;
8118 PyObject
* obj0
= 0 ;
8119 PyObject
* obj1
= 0 ;
8120 PyObject
* obj2
= 0 ;
8121 char * kwnames
[] = {
8122 (char *) "self",(char *) "perspective",(char *) "update", NULL
8125 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:AuiManager_LoadPerspective",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8126 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8127 if (!SWIG_IsOK(res1
)) {
8128 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_LoadPerspective" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8130 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8132 arg2
= wxString_in_helper(obj1
);
8133 if (arg2
== NULL
) SWIG_fail
;
8137 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
8138 if (!SWIG_IsOK(ecode3
)) {
8139 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiManager_LoadPerspective" "', expected argument " "3"" of type '" "bool""'");
8141 arg3
= static_cast< bool >(val3
);
8144 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8145 result
= (bool)(arg1
)->LoadPerspective((wxString
const &)*arg2
,arg3
);
8146 wxPyEndAllowThreads(__tstate
);
8147 if (PyErr_Occurred()) SWIG_fail
;
8150 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8166 SWIGINTERN PyObject
*_wrap_AuiManager_Update(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8167 PyObject
*resultobj
= 0;
8168 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8171 PyObject
*swig_obj
[1] ;
8173 if (!args
) SWIG_fail
;
8175 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8176 if (!SWIG_IsOK(res1
)) {
8177 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_Update" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8179 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8181 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8183 wxPyEndAllowThreads(__tstate
);
8184 if (PyErr_Occurred()) SWIG_fail
;
8186 resultobj
= SWIG_Py_Void();
8193 SWIGINTERN PyObject
*_wrap_AuiManager_CreateFloatingFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8194 PyObject
*resultobj
= 0;
8195 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8196 wxWindow
*arg2
= (wxWindow
*) 0 ;
8197 wxAuiPaneInfo
*arg3
= 0 ;
8198 wxAuiFloatingFrame
*result
= 0 ;
8205 PyObject
* obj0
= 0 ;
8206 PyObject
* obj1
= 0 ;
8207 PyObject
* obj2
= 0 ;
8208 char * kwnames
[] = {
8209 (char *) "self",(char *) "parent",(char *) "p", NULL
8212 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiManager_CreateFloatingFrame",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8213 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8214 if (!SWIG_IsOK(res1
)) {
8215 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8217 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8218 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8219 if (!SWIG_IsOK(res2
)) {
8220 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "2"" of type '" "wxWindow *""'");
8222 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8223 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
8224 if (!SWIG_IsOK(res3
)) {
8225 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
8228 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_CreateFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
8230 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
8232 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8233 result
= (wxAuiFloatingFrame
*)(arg1
)->CreateFloatingFrame(arg2
,(wxAuiPaneInfo
const &)*arg3
);
8234 wxPyEndAllowThreads(__tstate
);
8235 if (PyErr_Occurred()) SWIG_fail
;
8237 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiFloatingFrame
, 0 | 0 );
8244 SWIGINTERN PyObject
*_wrap_AuiManager_DrawHintRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8245 PyObject
*resultobj
= 0;
8246 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8247 wxWindow
*arg2
= (wxWindow
*) 0 ;
8256 PyObject
* obj0
= 0 ;
8257 PyObject
* obj1
= 0 ;
8258 PyObject
* obj2
= 0 ;
8259 PyObject
* obj3
= 0 ;
8260 char * kwnames
[] = {
8261 (char *) "self",(char *) "pane_window",(char *) "pt",(char *) "offset", NULL
8264 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiManager_DrawHintRect",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
8265 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8266 if (!SWIG_IsOK(res1
)) {
8267 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_DrawHintRect" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8269 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8270 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8271 if (!SWIG_IsOK(res2
)) {
8272 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_DrawHintRect" "', expected argument " "2"" of type '" "wxWindow *""'");
8274 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8277 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
8281 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
8284 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8285 (arg1
)->DrawHintRect(arg2
,(wxPoint
const &)*arg3
,(wxPoint
const &)*arg4
);
8286 wxPyEndAllowThreads(__tstate
);
8287 if (PyErr_Occurred()) SWIG_fail
;
8289 resultobj
= SWIG_Py_Void();
8296 SWIGINTERN PyObject
*_wrap_AuiManager_ShowHint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8297 PyObject
*resultobj
= 0;
8298 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8303 PyObject
* obj0
= 0 ;
8304 PyObject
* obj1
= 0 ;
8305 char * kwnames
[] = {
8306 (char *) "self",(char *) "rect", NULL
8309 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_ShowHint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8310 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8311 if (!SWIG_IsOK(res1
)) {
8312 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_ShowHint" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8314 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8317 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
8320 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8321 (arg1
)->ShowHint((wxRect
const &)*arg2
);
8322 wxPyEndAllowThreads(__tstate
);
8323 if (PyErr_Occurred()) SWIG_fail
;
8325 resultobj
= SWIG_Py_Void();
8332 SWIGINTERN PyObject
*_wrap_AuiManager_HideHint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8333 PyObject
*resultobj
= 0;
8334 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8337 PyObject
*swig_obj
[1] ;
8339 if (!args
) SWIG_fail
;
8341 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8342 if (!SWIG_IsOK(res1
)) {
8343 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_HideHint" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8345 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8347 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8349 wxPyEndAllowThreads(__tstate
);
8350 if (PyErr_Occurred()) SWIG_fail
;
8352 resultobj
= SWIG_Py_Void();
8359 SWIGINTERN PyObject
*_wrap_AuiManager_OnRender(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8360 PyObject
*resultobj
= 0;
8361 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8362 wxAuiManagerEvent
*arg2
= 0 ;
8367 PyObject
* obj0
= 0 ;
8368 PyObject
* obj1
= 0 ;
8369 char * kwnames
[] = {
8370 (char *) "self",(char *) "evt", NULL
8373 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_OnRender",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8374 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8375 if (!SWIG_IsOK(res1
)) {
8376 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_OnRender" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8378 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8379 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiManagerEvent
, 0 );
8380 if (!SWIG_IsOK(res2
)) {
8381 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_OnRender" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8384 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_OnRender" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8386 arg2
= reinterpret_cast< wxAuiManagerEvent
* >(argp2
);
8388 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8389 (arg1
)->OnRender(*arg2
);
8390 wxPyEndAllowThreads(__tstate
);
8391 if (PyErr_Occurred()) SWIG_fail
;
8393 resultobj
= SWIG_Py_Void();
8400 SWIGINTERN PyObject
*_wrap_AuiManager_OnPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8401 PyObject
*resultobj
= 0;
8402 wxAuiManager
*arg1
= (wxAuiManager
*) 0 ;
8403 wxAuiManagerEvent
*arg2
= 0 ;
8408 PyObject
* obj0
= 0 ;
8409 PyObject
* obj1
= 0 ;
8410 char * kwnames
[] = {
8411 (char *) "self",(char *) "evt", NULL
8414 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManager_OnPaneButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8415 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
8416 if (!SWIG_IsOK(res1
)) {
8417 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManager_OnPaneButton" "', expected argument " "1"" of type '" "wxAuiManager *""'");
8419 arg1
= reinterpret_cast< wxAuiManager
* >(argp1
);
8420 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiManagerEvent
, 0 );
8421 if (!SWIG_IsOK(res2
)) {
8422 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManager_OnPaneButton" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8425 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiManager_OnPaneButton" "', expected argument " "2"" of type '" "wxAuiManagerEvent &""'");
8427 arg2
= reinterpret_cast< wxAuiManagerEvent
* >(argp2
);
8429 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8430 (arg1
)->OnPaneButton(*arg2
);
8431 wxPyEndAllowThreads(__tstate
);
8432 if (PyErr_Occurred()) SWIG_fail
;
8434 resultobj
= SWIG_Py_Void();
8441 SWIGINTERN PyObject
*AuiManager_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8443 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8444 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiManager
, SWIG_NewClientData(obj
));
8445 return SWIG_Py_Void();
8448 SWIGINTERN PyObject
*AuiManager_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8449 return SWIG_Python_InitShadowInstance(args
);
8452 SWIGINTERN PyObject
*_wrap_new_AuiManagerEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8453 PyObject
*resultobj
= 0;
8454 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
8455 wxAuiManagerEvent
*result
= 0 ;
8458 PyObject
* obj0
= 0 ;
8459 char * kwnames
[] = {
8460 (char *) "type", NULL
8463 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_AuiManagerEvent",kwnames
,&obj0
)) SWIG_fail
;
8465 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
8466 if (!SWIG_IsOK(ecode1
)) {
8467 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_AuiManagerEvent" "', expected argument " "1"" of type '" "wxEventType""'");
8469 arg1
= static_cast< wxEventType
>(val1
);
8472 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8473 result
= (wxAuiManagerEvent
*)new wxAuiManagerEvent(arg1
);
8474 wxPyEndAllowThreads(__tstate
);
8475 if (PyErr_Occurred()) SWIG_fail
;
8477 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiManagerEvent
, SWIG_POINTER_NEW
| 0 );
8484 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_Clone(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8485 PyObject
*resultobj
= 0;
8486 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8487 wxEvent
*result
= 0 ;
8490 PyObject
*swig_obj
[1] ;
8492 if (!args
) SWIG_fail
;
8494 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8495 if (!SWIG_IsOK(res1
)) {
8496 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_Clone" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8498 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8500 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8501 result
= (wxEvent
*)((wxAuiManagerEvent
const *)arg1
)->Clone();
8502 wxPyEndAllowThreads(__tstate
);
8503 if (PyErr_Occurred()) SWIG_fail
;
8505 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxEvent
, 0 | 0 );
8512 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8513 PyObject
*resultobj
= 0;
8514 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8515 wxAuiPaneInfo
*arg2
= (wxAuiPaneInfo
*) 0 ;
8520 PyObject
* obj0
= 0 ;
8521 PyObject
* obj1
= 0 ;
8522 char * kwnames
[] = {
8523 (char *) "self",(char *) "p", NULL
8526 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8527 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8528 if (!SWIG_IsOK(res1
)) {
8529 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetPane" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8531 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8532 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
8533 if (!SWIG_IsOK(res2
)) {
8534 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_SetPane" "', expected argument " "2"" of type '" "wxAuiPaneInfo *""'");
8536 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
8538 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8539 (arg1
)->SetPane(arg2
);
8540 wxPyEndAllowThreads(__tstate
);
8541 if (PyErr_Occurred()) SWIG_fail
;
8543 resultobj
= SWIG_Py_Void();
8550 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8551 PyObject
*resultobj
= 0;
8552 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8558 PyObject
* obj0
= 0 ;
8559 PyObject
* obj1
= 0 ;
8560 char * kwnames
[] = {
8561 (char *) "self",(char *) "b", NULL
8564 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8565 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8566 if (!SWIG_IsOK(res1
)) {
8567 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetButton" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8569 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8570 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8571 if (!SWIG_IsOK(ecode2
)) {
8572 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_SetButton" "', expected argument " "2"" of type '" "int""'");
8574 arg2
= static_cast< int >(val2
);
8576 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8577 (arg1
)->SetButton(arg2
);
8578 wxPyEndAllowThreads(__tstate
);
8579 if (PyErr_Occurred()) SWIG_fail
;
8581 resultobj
= SWIG_Py_Void();
8588 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8589 PyObject
*resultobj
= 0;
8590 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8591 wxDC
*arg2
= (wxDC
*) 0 ;
8596 PyObject
* obj0
= 0 ;
8597 PyObject
* obj1
= 0 ;
8598 char * kwnames
[] = {
8599 (char *) "self",(char *) "pdc", NULL
8602 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetDC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8603 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8604 if (!SWIG_IsOK(res1
)) {
8605 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetDC" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8607 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8608 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
8609 if (!SWIG_IsOK(res2
)) {
8610 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_SetDC" "', expected argument " "2"" of type '" "wxDC *""'");
8612 arg2
= reinterpret_cast< wxDC
* >(argp2
);
8614 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8615 (arg1
)->SetDC(arg2
);
8616 wxPyEndAllowThreads(__tstate
);
8617 if (PyErr_Occurred()) SWIG_fail
;
8619 resultobj
= SWIG_Py_Void();
8626 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8627 PyObject
*resultobj
= 0;
8628 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8629 wxAuiPaneInfo
*result
= 0 ;
8632 PyObject
*swig_obj
[1] ;
8634 if (!args
) SWIG_fail
;
8636 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8637 if (!SWIG_IsOK(res1
)) {
8638 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetPane" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8640 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8642 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8643 result
= (wxAuiPaneInfo
*)(arg1
)->GetPane();
8644 wxPyEndAllowThreads(__tstate
);
8645 if (PyErr_Occurred()) SWIG_fail
;
8647 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
8654 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8655 PyObject
*resultobj
= 0;
8656 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8660 PyObject
*swig_obj
[1] ;
8662 if (!args
) SWIG_fail
;
8664 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8665 if (!SWIG_IsOK(res1
)) {
8666 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetButton" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8668 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8670 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8671 result
= (int)(arg1
)->GetButton();
8672 wxPyEndAllowThreads(__tstate
);
8673 if (PyErr_Occurred()) SWIG_fail
;
8675 resultobj
= SWIG_From_int(static_cast< int >(result
));
8682 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8683 PyObject
*resultobj
= 0;
8684 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8688 PyObject
*swig_obj
[1] ;
8690 if (!args
) SWIG_fail
;
8692 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8693 if (!SWIG_IsOK(res1
)) {
8694 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetDC" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8696 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8698 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8699 result
= (wxDC
*)(arg1
)->GetDC();
8700 wxPyEndAllowThreads(__tstate
);
8701 if (PyErr_Occurred()) SWIG_fail
;
8704 resultobj
= wxPyMake_wxObject(result
, (bool)0);
8712 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_Veto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8713 PyObject
*resultobj
= 0;
8714 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8715 bool arg2
= (bool) true ;
8720 PyObject
* obj0
= 0 ;
8721 PyObject
* obj1
= 0 ;
8722 char * kwnames
[] = {
8723 (char *) "self",(char *) "veto", NULL
8726 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:AuiManagerEvent_Veto",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_Veto" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8731 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8733 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8734 if (!SWIG_IsOK(ecode2
)) {
8735 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_Veto" "', expected argument " "2"" of type '" "bool""'");
8737 arg2
= static_cast< bool >(val2
);
8740 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8742 wxPyEndAllowThreads(__tstate
);
8743 if (PyErr_Occurred()) SWIG_fail
;
8745 resultobj
= SWIG_Py_Void();
8752 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_GetVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8753 PyObject
*resultobj
= 0;
8754 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8758 PyObject
*swig_obj
[1] ;
8760 if (!args
) SWIG_fail
;
8762 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8763 if (!SWIG_IsOK(res1
)) {
8764 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_GetVeto" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8766 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8768 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8769 result
= (bool)((wxAuiManagerEvent
const *)arg1
)->GetVeto();
8770 wxPyEndAllowThreads(__tstate
);
8771 if (PyErr_Occurred()) SWIG_fail
;
8774 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8782 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_SetCanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8783 PyObject
*resultobj
= 0;
8784 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8790 PyObject
* obj0
= 0 ;
8791 PyObject
* obj1
= 0 ;
8792 char * kwnames
[] = {
8793 (char *) "self",(char *) "can_veto", NULL
8796 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiManagerEvent_SetCanVeto",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8797 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8798 if (!SWIG_IsOK(res1
)) {
8799 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_SetCanVeto" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8801 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8802 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8803 if (!SWIG_IsOK(ecode2
)) {
8804 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_SetCanVeto" "', expected argument " "2"" of type '" "bool""'");
8806 arg2
= static_cast< bool >(val2
);
8808 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8809 (arg1
)->SetCanVeto(arg2
);
8810 wxPyEndAllowThreads(__tstate
);
8811 if (PyErr_Occurred()) SWIG_fail
;
8813 resultobj
= SWIG_Py_Void();
8820 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_CanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8821 PyObject
*resultobj
= 0;
8822 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8826 PyObject
*swig_obj
[1] ;
8828 if (!args
) SWIG_fail
;
8830 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8831 if (!SWIG_IsOK(res1
)) {
8832 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_CanVeto" "', expected argument " "1"" of type '" "wxAuiManagerEvent const *""'");
8834 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8836 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8837 result
= (bool)((wxAuiManagerEvent
const *)arg1
)->CanVeto();
8838 wxPyEndAllowThreads(__tstate
);
8839 if (PyErr_Occurred()) SWIG_fail
;
8842 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8850 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8851 PyObject
*resultobj
= 0;
8852 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8853 wxAuiPaneInfo
*arg2
= (wxAuiPaneInfo
*) 0 ;
8858 PyObject
*swig_obj
[2] ;
8860 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_pane_set",2,2,swig_obj
)) SWIG_fail
;
8861 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8862 if (!SWIG_IsOK(res1
)) {
8863 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_pane_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8865 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8866 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
8867 if (!SWIG_IsOK(res2
)) {
8868 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_pane_set" "', expected argument " "2"" of type '" "wxAuiPaneInfo *""'");
8870 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
8871 if (arg1
) (arg1
)->pane
= arg2
;
8873 resultobj
= SWIG_Py_Void();
8880 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8881 PyObject
*resultobj
= 0;
8882 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8883 wxAuiPaneInfo
*result
= 0 ;
8886 PyObject
*swig_obj
[1] ;
8888 if (!args
) SWIG_fail
;
8890 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8891 if (!SWIG_IsOK(res1
)) {
8892 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_pane_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8894 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8895 result
= (wxAuiPaneInfo
*) ((arg1
)->pane
);
8896 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
8903 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8904 PyObject
*resultobj
= 0;
8905 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8911 PyObject
*swig_obj
[2] ;
8913 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_button_set",2,2,swig_obj
)) SWIG_fail
;
8914 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8915 if (!SWIG_IsOK(res1
)) {
8916 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_button_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8918 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8919 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8920 if (!SWIG_IsOK(ecode2
)) {
8921 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_button_set" "', expected argument " "2"" of type '" "int""'");
8923 arg2
= static_cast< int >(val2
);
8924 if (arg1
) (arg1
)->button
= arg2
;
8926 resultobj
= SWIG_Py_Void();
8933 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8934 PyObject
*resultobj
= 0;
8935 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8939 PyObject
*swig_obj
[1] ;
8941 if (!args
) SWIG_fail
;
8943 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8944 if (!SWIG_IsOK(res1
)) {
8945 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_button_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8947 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8948 result
= (int) ((arg1
)->button
);
8949 resultobj
= SWIG_From_int(static_cast< int >(result
));
8956 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_veto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8957 PyObject
*resultobj
= 0;
8958 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8964 PyObject
*swig_obj
[2] ;
8966 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_veto_flag_set",2,2,swig_obj
)) SWIG_fail
;
8967 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8968 if (!SWIG_IsOK(res1
)) {
8969 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_veto_flag_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
8971 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
8972 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
8973 if (!SWIG_IsOK(ecode2
)) {
8974 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_veto_flag_set" "', expected argument " "2"" of type '" "bool""'");
8976 arg2
= static_cast< bool >(val2
);
8977 if (arg1
) (arg1
)->veto_flag
= arg2
;
8979 resultobj
= SWIG_Py_Void();
8986 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_veto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8987 PyObject
*resultobj
= 0;
8988 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
8992 PyObject
*swig_obj
[1] ;
8994 if (!args
) SWIG_fail
;
8996 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
8997 if (!SWIG_IsOK(res1
)) {
8998 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_veto_flag_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9000 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9001 result
= (bool) ((arg1
)->veto_flag
);
9003 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9011 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_canveto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9012 PyObject
*resultobj
= 0;
9013 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9019 PyObject
*swig_obj
[2] ;
9021 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_canveto_flag_set",2,2,swig_obj
)) SWIG_fail
;
9022 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9023 if (!SWIG_IsOK(res1
)) {
9024 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_canveto_flag_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9026 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9027 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9028 if (!SWIG_IsOK(ecode2
)) {
9029 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiManagerEvent_canveto_flag_set" "', expected argument " "2"" of type '" "bool""'");
9031 arg2
= static_cast< bool >(val2
);
9032 if (arg1
) (arg1
)->canveto_flag
= arg2
;
9034 resultobj
= SWIG_Py_Void();
9041 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_canveto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9042 PyObject
*resultobj
= 0;
9043 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9047 PyObject
*swig_obj
[1] ;
9049 if (!args
) SWIG_fail
;
9051 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9052 if (!SWIG_IsOK(res1
)) {
9053 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_canveto_flag_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9055 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9056 result
= (bool) ((arg1
)->canveto_flag
);
9058 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9066 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_dc_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9067 PyObject
*resultobj
= 0;
9068 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9069 wxDC
*arg2
= (wxDC
*) 0 ;
9074 PyObject
*swig_obj
[2] ;
9076 if (!SWIG_Python_UnpackTuple(args
,"AuiManagerEvent_dc_set",2,2,swig_obj
)) SWIG_fail
;
9077 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9078 if (!SWIG_IsOK(res1
)) {
9079 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_dc_set" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9081 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9082 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxDC
, SWIG_POINTER_DISOWN
| 0 );
9083 if (!SWIG_IsOK(res2
)) {
9084 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiManagerEvent_dc_set" "', expected argument " "2"" of type '" "wxDC *""'");
9086 arg2
= reinterpret_cast< wxDC
* >(argp2
);
9087 if (arg1
) (arg1
)->dc
= arg2
;
9089 resultobj
= SWIG_Py_Void();
9096 SWIGINTERN PyObject
*_wrap_AuiManagerEvent_dc_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9097 PyObject
*resultobj
= 0;
9098 wxAuiManagerEvent
*arg1
= (wxAuiManagerEvent
*) 0 ;
9102 PyObject
*swig_obj
[1] ;
9104 if (!args
) SWIG_fail
;
9106 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiManagerEvent
, 0 | 0 );
9107 if (!SWIG_IsOK(res1
)) {
9108 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiManagerEvent_dc_get" "', expected argument " "1"" of type '" "wxAuiManagerEvent *""'");
9110 arg1
= reinterpret_cast< wxAuiManagerEvent
* >(argp1
);
9111 result
= (wxDC
*) ((arg1
)->dc
);
9113 resultobj
= wxPyMake_wxObject(result
, (bool)0);
9121 SWIGINTERN PyObject
*AuiManagerEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9123 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9124 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiManagerEvent
, SWIG_NewClientData(obj
));
9125 return SWIG_Py_Void();
9128 SWIGINTERN PyObject
*AuiManagerEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9129 return SWIG_Python_InitShadowInstance(args
);
9132 SWIGINTERN PyObject
*_wrap_new_AuiDockInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9133 PyObject
*resultobj
= 0;
9134 wxAuiDockInfo
*result
= 0 ;
9136 if (!SWIG_Python_UnpackTuple(args
,"new_AuiDockInfo",0,0,0)) SWIG_fail
;
9138 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9139 result
= (wxAuiDockInfo
*)new wxAuiDockInfo();
9140 wxPyEndAllowThreads(__tstate
);
9141 if (PyErr_Occurred()) SWIG_fail
;
9143 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDockInfo
, SWIG_POINTER_NEW
| 0 );
9150 SWIGINTERN PyObject
*_wrap_AuiDockInfo_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9151 PyObject
*resultobj
= 0;
9152 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9156 PyObject
*swig_obj
[1] ;
9158 if (!args
) SWIG_fail
;
9160 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9161 if (!SWIG_IsOK(res1
)) {
9162 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_IsOk" "', expected argument " "1"" of type '" "wxAuiDockInfo const *""'");
9164 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9166 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9167 result
= (bool)((wxAuiDockInfo
const *)arg1
)->IsOk();
9168 wxPyEndAllowThreads(__tstate
);
9169 if (PyErr_Occurred()) SWIG_fail
;
9172 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9180 SWIGINTERN PyObject
*_wrap_AuiDockInfo_IsHorizontal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9181 PyObject
*resultobj
= 0;
9182 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9186 PyObject
*swig_obj
[1] ;
9188 if (!args
) SWIG_fail
;
9190 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9191 if (!SWIG_IsOK(res1
)) {
9192 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_IsHorizontal" "', expected argument " "1"" of type '" "wxAuiDockInfo const *""'");
9194 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9196 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9197 result
= (bool)((wxAuiDockInfo
const *)arg1
)->IsHorizontal();
9198 wxPyEndAllowThreads(__tstate
);
9199 if (PyErr_Occurred()) SWIG_fail
;
9202 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9210 SWIGINTERN PyObject
*_wrap_AuiDockInfo_IsVertical(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9211 PyObject
*resultobj
= 0;
9212 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9216 PyObject
*swig_obj
[1] ;
9218 if (!args
) SWIG_fail
;
9220 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9221 if (!SWIG_IsOK(res1
)) {
9222 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_IsVertical" "', expected argument " "1"" of type '" "wxAuiDockInfo const *""'");
9224 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9226 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9227 result
= (bool)((wxAuiDockInfo
const *)arg1
)->IsVertical();
9228 wxPyEndAllowThreads(__tstate
);
9229 if (PyErr_Occurred()) SWIG_fail
;
9232 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9240 SWIGINTERN PyObject
*_wrap_AuiDockInfo_panes_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9241 PyObject
*resultobj
= 0;
9242 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9243 wxAuiPaneInfoPtrArray arg2
;
9248 PyObject
*swig_obj
[2] ;
9250 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_panes_set",2,2,swig_obj
)) SWIG_fail
;
9251 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9252 if (!SWIG_IsOK(res1
)) {
9253 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_panes_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9255 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9257 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxAuiPaneInfoPtrArray
, 0 | 0);
9258 if (!SWIG_IsOK(res2
)) {
9259 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockInfo_panes_set" "', expected argument " "2"" of type '" "wxAuiPaneInfoPtrArray""'");
9262 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockInfo_panes_set" "', expected argument " "2"" of type '" "wxAuiPaneInfoPtrArray""'");
9264 wxAuiPaneInfoPtrArray
* temp
= reinterpret_cast< wxAuiPaneInfoPtrArray
* >(argp2
);
9266 if (SWIG_IsNewObj(res2
)) delete temp
;
9269 if (arg1
) (arg1
)->panes
= arg2
;
9271 resultobj
= SWIG_Py_Void();
9278 SWIGINTERN PyObject
*_wrap_AuiDockInfo_panes_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9279 PyObject
*resultobj
= 0;
9280 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9281 wxAuiPaneInfoPtrArray result
;
9284 PyObject
*swig_obj
[1] ;
9286 if (!args
) SWIG_fail
;
9288 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9289 if (!SWIG_IsOK(res1
)) {
9290 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_panes_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9292 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9293 result
= ((arg1
)->panes
);
9294 resultobj
= SWIG_NewPointerObj((new wxAuiPaneInfoPtrArray(static_cast< const wxAuiPaneInfoPtrArray
& >(result
))), SWIGTYPE_p_wxAuiPaneInfoPtrArray
, SWIG_POINTER_OWN
| 0 );
9301 SWIGINTERN PyObject
*_wrap_AuiDockInfo_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9302 PyObject
*resultobj
= 0;
9303 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9304 wxRect
*arg2
= (wxRect
*) 0 ;
9309 PyObject
*swig_obj
[2] ;
9311 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_rect_set",2,2,swig_obj
)) SWIG_fail
;
9312 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9313 if (!SWIG_IsOK(res1
)) {
9314 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_rect_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9316 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9317 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
9318 if (!SWIG_IsOK(res2
)) {
9319 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
9321 arg2
= reinterpret_cast< wxRect
* >(argp2
);
9322 if (arg1
) (arg1
)->rect
= *arg2
;
9324 resultobj
= SWIG_Py_Void();
9331 SWIGINTERN PyObject
*_wrap_AuiDockInfo_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9332 PyObject
*resultobj
= 0;
9333 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9334 wxRect
*result
= 0 ;
9337 PyObject
*swig_obj
[1] ;
9339 if (!args
) SWIG_fail
;
9341 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9342 if (!SWIG_IsOK(res1
)) {
9343 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_rect_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9345 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9346 result
= (wxRect
*)& ((arg1
)->rect
);
9347 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
9354 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_direction_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9355 PyObject
*resultobj
= 0;
9356 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9362 PyObject
*swig_obj
[2] ;
9364 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
;
9365 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9366 if (!SWIG_IsOK(res1
)) {
9367 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9369 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9370 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9371 if (!SWIG_IsOK(ecode2
)) {
9372 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'");
9374 arg2
= static_cast< int >(val2
);
9375 if (arg1
) (arg1
)->dock_direction
= arg2
;
9377 resultobj
= SWIG_Py_Void();
9384 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_direction_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9385 PyObject
*resultobj
= 0;
9386 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9390 PyObject
*swig_obj
[1] ;
9392 if (!args
) SWIG_fail
;
9394 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9395 if (!SWIG_IsOK(res1
)) {
9396 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9398 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9399 result
= (int) ((arg1
)->dock_direction
);
9400 resultobj
= SWIG_From_int(static_cast< int >(result
));
9407 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_layer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9408 PyObject
*resultobj
= 0;
9409 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9415 PyObject
*swig_obj
[2] ;
9417 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
;
9418 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9419 if (!SWIG_IsOK(res1
)) {
9420 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9422 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9423 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9424 if (!SWIG_IsOK(ecode2
)) {
9425 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'");
9427 arg2
= static_cast< int >(val2
);
9428 if (arg1
) (arg1
)->dock_layer
= arg2
;
9430 resultobj
= SWIG_Py_Void();
9437 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_layer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9438 PyObject
*resultobj
= 0;
9439 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9443 PyObject
*swig_obj
[1] ;
9445 if (!args
) SWIG_fail
;
9447 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9448 if (!SWIG_IsOK(res1
)) {
9449 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9451 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9452 result
= (int) ((arg1
)->dock_layer
);
9453 resultobj
= SWIG_From_int(static_cast< int >(result
));
9460 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_row_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9461 PyObject
*resultobj
= 0;
9462 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9468 PyObject
*swig_obj
[2] ;
9470 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
;
9471 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9472 if (!SWIG_IsOK(res1
)) {
9473 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_row_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9475 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9476 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9477 if (!SWIG_IsOK(ecode2
)) {
9478 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'");
9480 arg2
= static_cast< int >(val2
);
9481 if (arg1
) (arg1
)->dock_row
= arg2
;
9483 resultobj
= SWIG_Py_Void();
9490 SWIGINTERN PyObject
*_wrap_AuiDockInfo_dock_row_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9491 PyObject
*resultobj
= 0;
9492 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9496 PyObject
*swig_obj
[1] ;
9498 if (!args
) SWIG_fail
;
9500 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9501 if (!SWIG_IsOK(res1
)) {
9502 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_dock_row_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9504 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9505 result
= (int) ((arg1
)->dock_row
);
9506 resultobj
= SWIG_From_int(static_cast< int >(result
));
9513 SWIGINTERN PyObject
*_wrap_AuiDockInfo_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9514 PyObject
*resultobj
= 0;
9515 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9521 PyObject
*swig_obj
[2] ;
9523 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_size_set",2,2,swig_obj
)) SWIG_fail
;
9524 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9525 if (!SWIG_IsOK(res1
)) {
9526 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_size_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9528 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9529 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9530 if (!SWIG_IsOK(ecode2
)) {
9531 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_size_set" "', expected argument " "2"" of type '" "int""'");
9533 arg2
= static_cast< int >(val2
);
9534 if (arg1
) (arg1
)->size
= arg2
;
9536 resultobj
= SWIG_Py_Void();
9543 SWIGINTERN PyObject
*_wrap_AuiDockInfo_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9544 PyObject
*resultobj
= 0;
9545 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9549 PyObject
*swig_obj
[1] ;
9551 if (!args
) SWIG_fail
;
9553 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9554 if (!SWIG_IsOK(res1
)) {
9555 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_size_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9557 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9558 result
= (int) ((arg1
)->size
);
9559 resultobj
= SWIG_From_int(static_cast< int >(result
));
9566 SWIGINTERN PyObject
*_wrap_AuiDockInfo_min_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9567 PyObject
*resultobj
= 0;
9568 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9574 PyObject
*swig_obj
[2] ;
9576 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
;
9577 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9578 if (!SWIG_IsOK(res1
)) {
9579 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_min_size_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9581 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9582 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9583 if (!SWIG_IsOK(ecode2
)) {
9584 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_min_size_set" "', expected argument " "2"" of type '" "int""'");
9586 arg2
= static_cast< int >(val2
);
9587 if (arg1
) (arg1
)->min_size
= arg2
;
9589 resultobj
= SWIG_Py_Void();
9596 SWIGINTERN PyObject
*_wrap_AuiDockInfo_min_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9597 PyObject
*resultobj
= 0;
9598 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9602 PyObject
*swig_obj
[1] ;
9604 if (!args
) SWIG_fail
;
9606 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9607 if (!SWIG_IsOK(res1
)) {
9608 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_min_size_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9610 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9611 result
= (int) ((arg1
)->min_size
);
9612 resultobj
= SWIG_From_int(static_cast< int >(result
));
9619 SWIGINTERN PyObject
*_wrap_AuiDockInfo_resizable_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9620 PyObject
*resultobj
= 0;
9621 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9627 PyObject
*swig_obj
[2] ;
9629 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_resizable_set",2,2,swig_obj
)) SWIG_fail
;
9630 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9631 if (!SWIG_IsOK(res1
)) {
9632 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_resizable_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9634 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9635 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9636 if (!SWIG_IsOK(ecode2
)) {
9637 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_resizable_set" "', expected argument " "2"" of type '" "bool""'");
9639 arg2
= static_cast< bool >(val2
);
9640 if (arg1
) (arg1
)->resizable
= arg2
;
9642 resultobj
= SWIG_Py_Void();
9649 SWIGINTERN PyObject
*_wrap_AuiDockInfo_resizable_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9650 PyObject
*resultobj
= 0;
9651 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9655 PyObject
*swig_obj
[1] ;
9657 if (!args
) SWIG_fail
;
9659 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9660 if (!SWIG_IsOK(res1
)) {
9661 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_resizable_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9663 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9664 result
= (bool) ((arg1
)->resizable
);
9666 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9674 SWIGINTERN PyObject
*_wrap_AuiDockInfo_toolbar_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9675 PyObject
*resultobj
= 0;
9676 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9682 PyObject
*swig_obj
[2] ;
9684 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_toolbar_set",2,2,swig_obj
)) SWIG_fail
;
9685 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9686 if (!SWIG_IsOK(res1
)) {
9687 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_toolbar_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9689 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9690 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9691 if (!SWIG_IsOK(ecode2
)) {
9692 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_toolbar_set" "', expected argument " "2"" of type '" "bool""'");
9694 arg2
= static_cast< bool >(val2
);
9695 if (arg1
) (arg1
)->toolbar
= arg2
;
9697 resultobj
= SWIG_Py_Void();
9704 SWIGINTERN PyObject
*_wrap_AuiDockInfo_toolbar_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9705 PyObject
*resultobj
= 0;
9706 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9710 PyObject
*swig_obj
[1] ;
9712 if (!args
) SWIG_fail
;
9714 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9715 if (!SWIG_IsOK(res1
)) {
9716 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_toolbar_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9718 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9719 result
= (bool) ((arg1
)->toolbar
);
9721 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9729 SWIGINTERN PyObject
*_wrap_AuiDockInfo_fixed_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9730 PyObject
*resultobj
= 0;
9731 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9737 PyObject
*swig_obj
[2] ;
9739 if (!SWIG_Python_UnpackTuple(args
,"AuiDockInfo_fixed_set",2,2,swig_obj
)) SWIG_fail
;
9740 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9741 if (!SWIG_IsOK(res1
)) {
9742 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_fixed_set" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9744 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9745 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9746 if (!SWIG_IsOK(ecode2
)) {
9747 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockInfo_fixed_set" "', expected argument " "2"" of type '" "bool""'");
9749 arg2
= static_cast< bool >(val2
);
9750 if (arg1
) (arg1
)->fixed
= arg2
;
9752 resultobj
= SWIG_Py_Void();
9759 SWIGINTERN PyObject
*_wrap_AuiDockInfo_fixed_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9760 PyObject
*resultobj
= 0;
9761 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9765 PyObject
*swig_obj
[1] ;
9767 if (!args
) SWIG_fail
;
9769 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9770 if (!SWIG_IsOK(res1
)) {
9771 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockInfo_fixed_get" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9773 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9774 result
= (bool) ((arg1
)->fixed
);
9776 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9784 SWIGINTERN PyObject
*_wrap_delete_AuiDockInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9785 PyObject
*resultobj
= 0;
9786 wxAuiDockInfo
*arg1
= (wxAuiDockInfo
*) 0 ;
9789 PyObject
*swig_obj
[1] ;
9791 if (!args
) SWIG_fail
;
9793 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockInfo
, SWIG_POINTER_DISOWN
| 0 );
9794 if (!SWIG_IsOK(res1
)) {
9795 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDockInfo" "', expected argument " "1"" of type '" "wxAuiDockInfo *""'");
9797 arg1
= reinterpret_cast< wxAuiDockInfo
* >(argp1
);
9799 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9800 delete_wxAuiDockInfo(arg1
);
9802 wxPyEndAllowThreads(__tstate
);
9803 if (PyErr_Occurred()) SWIG_fail
;
9805 resultobj
= SWIG_Py_Void();
9812 SWIGINTERN PyObject
*AuiDockInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9814 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9815 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDockInfo
, SWIG_NewClientData(obj
));
9816 return SWIG_Py_Void();
9819 SWIGINTERN PyObject
*AuiDockInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9820 return SWIG_Python_InitShadowInstance(args
);
9823 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_type_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9824 PyObject
*resultobj
= 0;
9825 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
9831 PyObject
*swig_obj
[2] ;
9833 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_type_set",2,2,swig_obj
)) SWIG_fail
;
9834 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
9835 if (!SWIG_IsOK(res1
)) {
9836 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_type_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
9838 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
9839 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9840 if (!SWIG_IsOK(ecode2
)) {
9841 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockUIPart_type_set" "', expected argument " "2"" of type '" "int""'");
9843 arg2
= static_cast< int >(val2
);
9844 if (arg1
) (arg1
)->type
= arg2
;
9846 resultobj
= SWIG_Py_Void();
9853 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_type_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9854 PyObject
*resultobj
= 0;
9855 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
9859 PyObject
*swig_obj
[1] ;
9861 if (!args
) SWIG_fail
;
9863 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
9864 if (!SWIG_IsOK(res1
)) {
9865 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_type_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
9867 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
9868 result
= (int) ((arg1
)->type
);
9869 resultobj
= SWIG_From_int(static_cast< int >(result
));
9876 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_orientation_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9877 PyObject
*resultobj
= 0;
9878 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
9884 PyObject
*swig_obj
[2] ;
9886 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_orientation_set",2,2,swig_obj
)) SWIG_fail
;
9887 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
9888 if (!SWIG_IsOK(res1
)) {
9889 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_orientation_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
9891 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
9892 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9893 if (!SWIG_IsOK(ecode2
)) {
9894 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockUIPart_orientation_set" "', expected argument " "2"" of type '" "int""'");
9896 arg2
= static_cast< int >(val2
);
9897 if (arg1
) (arg1
)->orientation
= arg2
;
9899 resultobj
= SWIG_Py_Void();
9906 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_orientation_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9907 PyObject
*resultobj
= 0;
9908 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
9912 PyObject
*swig_obj
[1] ;
9914 if (!args
) SWIG_fail
;
9916 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
9917 if (!SWIG_IsOK(res1
)) {
9918 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_orientation_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
9920 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
9921 result
= (int) ((arg1
)->orientation
);
9922 resultobj
= SWIG_From_int(static_cast< int >(result
));
9929 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_dock_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9930 PyObject
*resultobj
= 0;
9931 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
9932 wxAuiDockInfo
*arg2
= (wxAuiDockInfo
*) 0 ;
9937 PyObject
*swig_obj
[2] ;
9939 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_dock_set",2,2,swig_obj
)) SWIG_fail
;
9940 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
9941 if (!SWIG_IsOK(res1
)) {
9942 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_dock_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
9944 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
9945 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiDockInfo
, SWIG_POINTER_DISOWN
| 0 );
9946 if (!SWIG_IsOK(res2
)) {
9947 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_dock_set" "', expected argument " "2"" of type '" "wxAuiDockInfo *""'");
9949 arg2
= reinterpret_cast< wxAuiDockInfo
* >(argp2
);
9950 if (arg1
) (arg1
)->dock
= arg2
;
9952 resultobj
= SWIG_Py_Void();
9959 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_dock_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9960 PyObject
*resultobj
= 0;
9961 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
9962 wxAuiDockInfo
*result
= 0 ;
9965 PyObject
*swig_obj
[1] ;
9967 if (!args
) SWIG_fail
;
9969 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
9970 if (!SWIG_IsOK(res1
)) {
9971 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_dock_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
9973 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
9974 result
= (wxAuiDockInfo
*) ((arg1
)->dock
);
9975 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDockInfo
, 0 | 0 );
9982 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9983 PyObject
*resultobj
= 0;
9984 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
9985 wxAuiPaneInfo
*arg2
= (wxAuiPaneInfo
*) 0 ;
9990 PyObject
*swig_obj
[2] ;
9992 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_pane_set",2,2,swig_obj
)) SWIG_fail
;
9993 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
9994 if (!SWIG_IsOK(res1
)) {
9995 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_pane_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
9997 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
9998 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
9999 if (!SWIG_IsOK(res2
)) {
10000 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_pane_set" "', expected argument " "2"" of type '" "wxAuiPaneInfo *""'");
10002 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
10003 if (arg1
) (arg1
)->pane
= arg2
;
10005 resultobj
= SWIG_Py_Void();
10012 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10013 PyObject
*resultobj
= 0;
10014 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10015 wxAuiPaneInfo
*result
= 0 ;
10018 PyObject
*swig_obj
[1] ;
10020 if (!args
) SWIG_fail
;
10021 swig_obj
[0] = args
;
10022 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10023 if (!SWIG_IsOK(res1
)) {
10024 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_pane_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10026 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10027 result
= (wxAuiPaneInfo
*) ((arg1
)->pane
);
10028 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0 );
10035 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10036 PyObject
*resultobj
= 0;
10037 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10038 wxAuiPaneButton
*arg2
= (wxAuiPaneButton
*) 0 ;
10043 PyObject
*swig_obj
[2] ;
10045 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_button_set",2,2,swig_obj
)) SWIG_fail
;
10046 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10047 if (!SWIG_IsOK(res1
)) {
10048 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_button_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10050 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10051 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiPaneButton
, SWIG_POINTER_DISOWN
| 0 );
10052 if (!SWIG_IsOK(res2
)) {
10053 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_button_set" "', expected argument " "2"" of type '" "wxAuiPaneButton *""'");
10055 arg2
= reinterpret_cast< wxAuiPaneButton
* >(argp2
);
10056 if (arg1
) (arg1
)->button
= arg2
;
10058 resultobj
= SWIG_Py_Void();
10065 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10066 PyObject
*resultobj
= 0;
10067 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10068 wxAuiPaneButton
*result
= 0 ;
10071 PyObject
*swig_obj
[1] ;
10073 if (!args
) SWIG_fail
;
10074 swig_obj
[0] = args
;
10075 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10076 if (!SWIG_IsOK(res1
)) {
10077 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_button_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10079 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10080 result
= (wxAuiPaneButton
*) ((arg1
)->button
);
10081 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiPaneButton
, 0 | 0 );
10088 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_cont_sizer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10089 PyObject
*resultobj
= 0;
10090 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10091 wxSizer
*arg2
= (wxSizer
*) 0 ;
10096 PyObject
*swig_obj
[2] ;
10098 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_cont_sizer_set",2,2,swig_obj
)) SWIG_fail
;
10099 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10100 if (!SWIG_IsOK(res1
)) {
10101 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_cont_sizer_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10103 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10104 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizer
, SWIG_POINTER_DISOWN
| 0 );
10105 if (!SWIG_IsOK(res2
)) {
10106 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_cont_sizer_set" "', expected argument " "2"" of type '" "wxSizer *""'");
10108 arg2
= reinterpret_cast< wxSizer
* >(argp2
);
10109 if (arg1
) (arg1
)->cont_sizer
= arg2
;
10111 resultobj
= SWIG_Py_Void();
10118 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_cont_sizer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10119 PyObject
*resultobj
= 0;
10120 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10121 wxSizer
*result
= 0 ;
10124 PyObject
*swig_obj
[1] ;
10126 if (!args
) SWIG_fail
;
10127 swig_obj
[0] = args
;
10128 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10129 if (!SWIG_IsOK(res1
)) {
10130 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_cont_sizer_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10132 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10133 result
= (wxSizer
*) ((arg1
)->cont_sizer
);
10135 resultobj
= wxPyMake_wxObject(result
, (bool)0);
10143 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_sizer_item_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10144 PyObject
*resultobj
= 0;
10145 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10146 wxSizerItem
*arg2
= (wxSizerItem
*) 0 ;
10151 PyObject
*swig_obj
[2] ;
10153 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_sizer_item_set",2,2,swig_obj
)) SWIG_fail
;
10154 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10155 if (!SWIG_IsOK(res1
)) {
10156 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_sizer_item_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10158 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10159 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizerItem
, SWIG_POINTER_DISOWN
| 0 );
10160 if (!SWIG_IsOK(res2
)) {
10161 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_sizer_item_set" "', expected argument " "2"" of type '" "wxSizerItem *""'");
10163 arg2
= reinterpret_cast< wxSizerItem
* >(argp2
);
10164 if (arg1
) (arg1
)->sizer_item
= arg2
;
10166 resultobj
= SWIG_Py_Void();
10173 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_sizer_item_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10174 PyObject
*resultobj
= 0;
10175 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10176 wxSizerItem
*result
= 0 ;
10179 PyObject
*swig_obj
[1] ;
10181 if (!args
) SWIG_fail
;
10182 swig_obj
[0] = args
;
10183 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10184 if (!SWIG_IsOK(res1
)) {
10185 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_sizer_item_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10187 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10188 result
= (wxSizerItem
*) ((arg1
)->sizer_item
);
10189 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSizerItem
, 0 | 0 );
10196 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10197 PyObject
*resultobj
= 0;
10198 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10199 wxRect
*arg2
= (wxRect
*) 0 ;
10204 PyObject
*swig_obj
[2] ;
10206 if (!SWIG_Python_UnpackTuple(args
,"AuiDockUIPart_rect_set",2,2,swig_obj
)) SWIG_fail
;
10207 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10208 if (!SWIG_IsOK(res1
)) {
10209 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_rect_set" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10211 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10212 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
10213 if (!SWIG_IsOK(res2
)) {
10214 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockUIPart_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
10216 arg2
= reinterpret_cast< wxRect
* >(argp2
);
10217 if (arg1
) (arg1
)->rect
= *arg2
;
10219 resultobj
= SWIG_Py_Void();
10226 SWIGINTERN PyObject
*_wrap_AuiDockUIPart_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10227 PyObject
*resultobj
= 0;
10228 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10229 wxRect
*result
= 0 ;
10232 PyObject
*swig_obj
[1] ;
10234 if (!args
) SWIG_fail
;
10235 swig_obj
[0] = args
;
10236 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, 0 | 0 );
10237 if (!SWIG_IsOK(res1
)) {
10238 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockUIPart_rect_get" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10240 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10241 result
= (wxRect
*)& ((arg1
)->rect
);
10242 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
10249 SWIGINTERN PyObject
*_wrap_delete_AuiDockUIPart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10250 PyObject
*resultobj
= 0;
10251 wxAuiDockUIPart
*arg1
= (wxAuiDockUIPart
*) 0 ;
10254 PyObject
*swig_obj
[1] ;
10256 if (!args
) SWIG_fail
;
10257 swig_obj
[0] = args
;
10258 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockUIPart
, SWIG_POINTER_DISOWN
| 0 );
10259 if (!SWIG_IsOK(res1
)) {
10260 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDockUIPart" "', expected argument " "1"" of type '" "wxAuiDockUIPart *""'");
10262 arg1
= reinterpret_cast< wxAuiDockUIPart
* >(argp1
);
10264 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10265 delete_wxAuiDockUIPart(arg1
);
10267 wxPyEndAllowThreads(__tstate
);
10268 if (PyErr_Occurred()) SWIG_fail
;
10270 resultobj
= SWIG_Py_Void();
10277 SWIGINTERN PyObject
*AuiDockUIPart_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10279 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10280 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDockUIPart
, SWIG_NewClientData(obj
));
10281 return SWIG_Py_Void();
10284 SWIGINTERN PyObject
*_wrap_AuiPaneButton_button_id_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10285 PyObject
*resultobj
= 0;
10286 wxAuiPaneButton
*arg1
= (wxAuiPaneButton
*) 0 ;
10292 PyObject
*swig_obj
[2] ;
10294 if (!SWIG_Python_UnpackTuple(args
,"AuiPaneButton_button_id_set",2,2,swig_obj
)) SWIG_fail
;
10295 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneButton
, 0 | 0 );
10296 if (!SWIG_IsOK(res1
)) {
10297 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneButton_button_id_set" "', expected argument " "1"" of type '" "wxAuiPaneButton *""'");
10299 arg1
= reinterpret_cast< wxAuiPaneButton
* >(argp1
);
10300 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
10301 if (!SWIG_IsOK(ecode2
)) {
10302 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiPaneButton_button_id_set" "', expected argument " "2"" of type '" "int""'");
10304 arg2
= static_cast< int >(val2
);
10305 if (arg1
) (arg1
)->button_id
= arg2
;
10307 resultobj
= SWIG_Py_Void();
10314 SWIGINTERN PyObject
*_wrap_AuiPaneButton_button_id_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10315 PyObject
*resultobj
= 0;
10316 wxAuiPaneButton
*arg1
= (wxAuiPaneButton
*) 0 ;
10320 PyObject
*swig_obj
[1] ;
10322 if (!args
) SWIG_fail
;
10323 swig_obj
[0] = args
;
10324 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneButton
, 0 | 0 );
10325 if (!SWIG_IsOK(res1
)) {
10326 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiPaneButton_button_id_get" "', expected argument " "1"" of type '" "wxAuiPaneButton *""'");
10328 arg1
= reinterpret_cast< wxAuiPaneButton
* >(argp1
);
10329 result
= (int) ((arg1
)->button_id
);
10330 resultobj
= SWIG_From_int(static_cast< int >(result
));
10337 SWIGINTERN PyObject
*_wrap_delete_AuiPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10338 PyObject
*resultobj
= 0;
10339 wxAuiPaneButton
*arg1
= (wxAuiPaneButton
*) 0 ;
10342 PyObject
*swig_obj
[1] ;
10344 if (!args
) SWIG_fail
;
10345 swig_obj
[0] = args
;
10346 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiPaneButton
, SWIG_POINTER_DISOWN
| 0 );
10347 if (!SWIG_IsOK(res1
)) {
10348 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiPaneButton" "', expected argument " "1"" of type '" "wxAuiPaneButton *""'");
10350 arg1
= reinterpret_cast< wxAuiPaneButton
* >(argp1
);
10352 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10353 delete_wxAuiPaneButton(arg1
);
10355 wxPyEndAllowThreads(__tstate
);
10356 if (PyErr_Occurred()) SWIG_fail
;
10358 resultobj
= SWIG_Py_Void();
10365 SWIGINTERN PyObject
*AuiPaneButton_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10367 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10368 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiPaneButton
, SWIG_NewClientData(obj
));
10369 return SWIG_Py_Void();
10372 SWIGINTERN PyObject
*_wrap_delete_AuiDockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10373 PyObject
*resultobj
= 0;
10374 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10377 PyObject
*swig_obj
[1] ;
10379 if (!args
) SWIG_fail
;
10380 swig_obj
[0] = args
;
10381 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDockArt
, SWIG_POINTER_DISOWN
| 0 );
10382 if (!SWIG_IsOK(res1
)) {
10383 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDockArt" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10385 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10387 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10390 wxPyEndAllowThreads(__tstate
);
10391 if (PyErr_Occurred()) SWIG_fail
;
10393 resultobj
= SWIG_Py_Void();
10400 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10401 PyObject
*resultobj
= 0;
10402 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10409 PyObject
* obj0
= 0 ;
10410 PyObject
* obj1
= 0 ;
10411 char * kwnames
[] = {
10412 (char *) "self",(char *) "id", NULL
10415 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetMetric",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10416 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10417 if (!SWIG_IsOK(res1
)) {
10418 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetMetric" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10420 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10421 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10422 if (!SWIG_IsOK(ecode2
)) {
10423 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetMetric" "', expected argument " "2"" of type '" "int""'");
10425 arg2
= static_cast< int >(val2
);
10427 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10428 result
= (int)(arg1
)->GetMetric(arg2
);
10429 wxPyEndAllowThreads(__tstate
);
10430 if (PyErr_Occurred()) SWIG_fail
;
10432 resultobj
= SWIG_From_int(static_cast< int >(result
));
10439 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10440 PyObject
*resultobj
= 0;
10441 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10450 PyObject
* obj0
= 0 ;
10451 PyObject
* obj1
= 0 ;
10452 PyObject
* obj2
= 0 ;
10453 char * kwnames
[] = {
10454 (char *) "self",(char *) "id",(char *) "new_val", NULL
10457 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetMetric",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10458 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10459 if (!SWIG_IsOK(res1
)) {
10460 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetMetric" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10462 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10463 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10464 if (!SWIG_IsOK(ecode2
)) {
10465 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetMetric" "', expected argument " "2"" of type '" "int""'");
10467 arg2
= static_cast< int >(val2
);
10468 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10469 if (!SWIG_IsOK(ecode3
)) {
10470 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiDockArt_SetMetric" "', expected argument " "3"" of type '" "int""'");
10472 arg3
= static_cast< int >(val3
);
10474 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10475 (arg1
)->SetMetric(arg2
,arg3
);
10476 wxPyEndAllowThreads(__tstate
);
10477 if (PyErr_Occurred()) SWIG_fail
;
10479 resultobj
= SWIG_Py_Void();
10486 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10487 PyObject
*resultobj
= 0;
10488 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10497 PyObject
* obj0
= 0 ;
10498 PyObject
* obj1
= 0 ;
10499 PyObject
* obj2
= 0 ;
10500 char * kwnames
[] = {
10501 (char *) "self",(char *) "id",(char *) "font", NULL
10504 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetFont",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10505 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10506 if (!SWIG_IsOK(res1
)) {
10507 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetFont" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10509 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10510 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10511 if (!SWIG_IsOK(ecode2
)) {
10512 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetFont" "', expected argument " "2"" of type '" "int""'");
10514 arg2
= static_cast< int >(val2
);
10515 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxFont
, 0 | 0);
10516 if (!SWIG_IsOK(res3
)) {
10517 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
10520 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
10522 arg3
= reinterpret_cast< wxFont
* >(argp3
);
10524 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10525 (arg1
)->SetFont(arg2
,(wxFont
const &)*arg3
);
10526 wxPyEndAllowThreads(__tstate
);
10527 if (PyErr_Occurred()) SWIG_fail
;
10529 resultobj
= SWIG_Py_Void();
10536 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10537 PyObject
*resultobj
= 0;
10538 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10545 PyObject
* obj0
= 0 ;
10546 PyObject
* obj1
= 0 ;
10547 char * kwnames
[] = {
10548 (char *) "self",(char *) "id", NULL
10551 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10552 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10553 if (!SWIG_IsOK(res1
)) {
10554 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetFont" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10556 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10557 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10558 if (!SWIG_IsOK(ecode2
)) {
10559 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetFont" "', expected argument " "2"" of type '" "int""'");
10561 arg2
= static_cast< int >(val2
);
10563 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10564 result
= (arg1
)->GetFont(arg2
);
10565 wxPyEndAllowThreads(__tstate
);
10566 if (PyErr_Occurred()) SWIG_fail
;
10568 resultobj
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
10575 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10576 PyObject
*resultobj
= 0;
10577 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10584 PyObject
* obj0
= 0 ;
10585 PyObject
* obj1
= 0 ;
10586 char * kwnames
[] = {
10587 (char *) "self",(char *) "id", NULL
10590 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10591 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10592 if (!SWIG_IsOK(res1
)) {
10593 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetColour" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10595 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10596 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10597 if (!SWIG_IsOK(ecode2
)) {
10598 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetColour" "', expected argument " "2"" of type '" "int""'");
10600 arg2
= static_cast< int >(val2
);
10602 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10603 result
= (arg1
)->GetColour(arg2
);
10604 wxPyEndAllowThreads(__tstate
);
10605 if (PyErr_Occurred()) SWIG_fail
;
10607 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
10614 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10615 PyObject
*resultobj
= 0;
10616 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10618 wxColor
*arg3
= 0 ;
10625 PyObject
* obj0
= 0 ;
10626 PyObject
* obj1
= 0 ;
10627 PyObject
* obj2
= 0 ;
10628 char * kwnames
[] = {
10629 (char *) "self",(char *) "id",(char *) "colour", NULL
10632 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10633 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10634 if (!SWIG_IsOK(res1
)) {
10635 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetColour" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10637 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10638 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10639 if (!SWIG_IsOK(ecode2
)) {
10640 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetColour" "', expected argument " "2"" of type '" "int""'");
10642 arg2
= static_cast< int >(val2
);
10643 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxColor
, 0 | 0);
10644 if (!SWIG_IsOK(res3
)) {
10645 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_SetColour" "', expected argument " "3"" of type '" "wxColor const &""'");
10648 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_SetColour" "', expected argument " "3"" of type '" "wxColor const &""'");
10650 arg3
= reinterpret_cast< wxColor
* >(argp3
);
10652 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10653 (arg1
)->SetColour(arg2
,(wxColor
const &)*arg3
);
10654 wxPyEndAllowThreads(__tstate
);
10655 if (PyErr_Occurred()) SWIG_fail
;
10657 resultobj
= SWIG_Py_Void();
10664 SWIGINTERN PyObject
*_wrap_AuiDockArt_GetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10665 PyObject
*resultobj
= 0;
10666 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10673 PyObject
* obj0
= 0 ;
10674 PyObject
* obj1
= 0 ;
10675 char * kwnames
[] = {
10676 (char *) "self",(char *) "id", NULL
10679 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiDockArt_GetColor",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10680 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10681 if (!SWIG_IsOK(res1
)) {
10682 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_GetColor" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10684 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10685 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10686 if (!SWIG_IsOK(ecode2
)) {
10687 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_GetColor" "', expected argument " "2"" of type '" "int""'");
10689 arg2
= static_cast< int >(val2
);
10691 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10692 result
= (arg1
)->GetColor(arg2
);
10693 wxPyEndAllowThreads(__tstate
);
10694 if (PyErr_Occurred()) SWIG_fail
;
10696 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
10703 SWIGINTERN PyObject
*_wrap_AuiDockArt_SetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10704 PyObject
*resultobj
= 0;
10705 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10707 wxColour
*arg3
= 0 ;
10713 PyObject
* obj0
= 0 ;
10714 PyObject
* obj1
= 0 ;
10715 PyObject
* obj2
= 0 ;
10716 char * kwnames
[] = {
10717 (char *) "self",(char *) "id",(char *) "color", NULL
10720 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiDockArt_SetColor",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10721 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10722 if (!SWIG_IsOK(res1
)) {
10723 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_SetColor" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10725 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10726 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10727 if (!SWIG_IsOK(ecode2
)) {
10728 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiDockArt_SetColor" "', expected argument " "2"" of type '" "int""'");
10730 arg2
= static_cast< int >(val2
);
10733 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
10736 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10737 (arg1
)->SetColor(arg2
,(wxColour
const &)*arg3
);
10738 wxPyEndAllowThreads(__tstate
);
10739 if (PyErr_Occurred()) SWIG_fail
;
10741 resultobj
= SWIG_Py_Void();
10748 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawSash(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10749 PyObject
*resultobj
= 0;
10750 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10752 wxWindow
*arg3
= (wxWindow
*) 0 ;
10764 PyObject
* obj0
= 0 ;
10765 PyObject
* obj1
= 0 ;
10766 PyObject
* obj2
= 0 ;
10767 PyObject
* obj3
= 0 ;
10768 PyObject
* obj4
= 0 ;
10769 char * kwnames
[] = {
10770 (char *) "self",(char *) "dc",(char *) "window",(char *) "orientation",(char *) "rect", NULL
10773 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawSash",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10774 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10775 if (!SWIG_IsOK(res1
)) {
10776 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10778 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10779 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10780 if (!SWIG_IsOK(res2
)) {
10781 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
10784 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
10786 arg2
= reinterpret_cast< wxDC
* >(argp2
);
10787 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10788 if (!SWIG_IsOK(res3
)) {
10789 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "3"" of type '" "wxWindow *""'");
10791 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
10792 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10793 if (!SWIG_IsOK(ecode4
)) {
10794 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiDockArt_DrawSash" "', expected argument " "4"" of type '" "int""'");
10796 arg4
= static_cast< int >(val4
);
10799 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
10802 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10803 (arg1
)->DrawSash(*arg2
,arg3
,arg4
,(wxRect
const &)*arg5
);
10804 wxPyEndAllowThreads(__tstate
);
10805 if (PyErr_Occurred()) SWIG_fail
;
10807 resultobj
= SWIG_Py_Void();
10814 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10815 PyObject
*resultobj
= 0;
10816 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10818 wxWindow
*arg3
= (wxWindow
*) 0 ;
10830 PyObject
* obj0
= 0 ;
10831 PyObject
* obj1
= 0 ;
10832 PyObject
* obj2
= 0 ;
10833 PyObject
* obj3
= 0 ;
10834 PyObject
* obj4
= 0 ;
10835 char * kwnames
[] = {
10836 (char *) "self",(char *) "dc",(char *) "window",(char *) "orientation",(char *) "rect", NULL
10839 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10840 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10841 if (!SWIG_IsOK(res1
)) {
10842 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10844 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10845 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10846 if (!SWIG_IsOK(res2
)) {
10847 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
10850 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
10852 arg2
= reinterpret_cast< wxDC
* >(argp2
);
10853 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10854 if (!SWIG_IsOK(res3
)) {
10855 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "3"" of type '" "wxWindow *""'");
10857 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
10858 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10859 if (!SWIG_IsOK(ecode4
)) {
10860 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiDockArt_DrawBackground" "', expected argument " "4"" of type '" "int""'");
10862 arg4
= static_cast< int >(val4
);
10865 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
10868 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10869 (arg1
)->DrawBackground(*arg2
,arg3
,arg4
,(wxRect
const &)*arg5
);
10870 wxPyEndAllowThreads(__tstate
);
10871 if (PyErr_Occurred()) SWIG_fail
;
10873 resultobj
= SWIG_Py_Void();
10880 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawCaption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10881 PyObject
*resultobj
= 0;
10882 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10884 wxWindow
*arg3
= (wxWindow
*) 0 ;
10885 wxString
*arg4
= 0 ;
10887 wxAuiPaneInfo
*arg6
= 0 ;
10894 bool temp4
= false ;
10898 PyObject
* obj0
= 0 ;
10899 PyObject
* obj1
= 0 ;
10900 PyObject
* obj2
= 0 ;
10901 PyObject
* obj3
= 0 ;
10902 PyObject
* obj4
= 0 ;
10903 PyObject
* obj5
= 0 ;
10904 char * kwnames
[] = {
10905 (char *) "self",(char *) "dc",(char *) "window",(char *) "text",(char *) "rect",(char *) "pane", NULL
10908 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:AuiDockArt_DrawCaption",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
10909 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10910 if (!SWIG_IsOK(res1
)) {
10911 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10913 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10914 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10915 if (!SWIG_IsOK(res2
)) {
10916 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
10919 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
10921 arg2
= reinterpret_cast< wxDC
* >(argp2
);
10922 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10923 if (!SWIG_IsOK(res3
)) {
10924 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "3"" of type '" "wxWindow *""'");
10926 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
10928 arg4
= wxString_in_helper(obj3
);
10929 if (arg4
== NULL
) SWIG_fail
;
10934 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
10936 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
10937 if (!SWIG_IsOK(res6
)) {
10938 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "AuiDockArt_DrawCaption" "', expected argument " "6"" of type '" "wxAuiPaneInfo &""'");
10941 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawCaption" "', expected argument " "6"" of type '" "wxAuiPaneInfo &""'");
10943 arg6
= reinterpret_cast< wxAuiPaneInfo
* >(argp6
);
10945 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10946 (arg1
)->DrawCaption(*arg2
,arg3
,(wxString
const &)*arg4
,(wxRect
const &)*arg5
,*arg6
);
10947 wxPyEndAllowThreads(__tstate
);
10948 if (PyErr_Occurred()) SWIG_fail
;
10950 resultobj
= SWIG_Py_Void();
10965 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawGripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10966 PyObject
*resultobj
= 0;
10967 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
10969 wxWindow
*arg3
= (wxWindow
*) 0 ;
10971 wxAuiPaneInfo
*arg5
= 0 ;
10981 PyObject
* obj0
= 0 ;
10982 PyObject
* obj1
= 0 ;
10983 PyObject
* obj2
= 0 ;
10984 PyObject
* obj3
= 0 ;
10985 PyObject
* obj4
= 0 ;
10986 char * kwnames
[] = {
10987 (char *) "self",(char *) "dc",(char *) "window",(char *) "rect",(char *) "pane", NULL
10990 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawGripper",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10991 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
10992 if (!SWIG_IsOK(res1
)) {
10993 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
10995 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
10996 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10997 if (!SWIG_IsOK(res2
)) {
10998 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
11001 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
11003 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11004 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11005 if (!SWIG_IsOK(res3
)) {
11006 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "3"" of type '" "wxWindow *""'");
11008 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11011 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
11013 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
11014 if (!SWIG_IsOK(res5
)) {
11015 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiDockArt_DrawGripper" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11018 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawGripper" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11020 arg5
= reinterpret_cast< wxAuiPaneInfo
* >(argp5
);
11022 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11023 (arg1
)->DrawGripper(*arg2
,arg3
,(wxRect
const &)*arg4
,*arg5
);
11024 wxPyEndAllowThreads(__tstate
);
11025 if (PyErr_Occurred()) SWIG_fail
;
11027 resultobj
= SWIG_Py_Void();
11034 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11035 PyObject
*resultobj
= 0;
11036 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11038 wxWindow
*arg3
= (wxWindow
*) 0 ;
11040 wxAuiPaneInfo
*arg5
= 0 ;
11050 PyObject
* obj0
= 0 ;
11051 PyObject
* obj1
= 0 ;
11052 PyObject
* obj2
= 0 ;
11053 PyObject
* obj3
= 0 ;
11054 PyObject
* obj4
= 0 ;
11055 char * kwnames
[] = {
11056 (char *) "self",(char *) "dc",(char *) "window",(char *) "rect",(char *) "pane", NULL
11059 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:AuiDockArt_DrawBorder",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11060 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11061 if (!SWIG_IsOK(res1
)) {
11062 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11064 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11065 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11066 if (!SWIG_IsOK(res2
)) {
11067 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
11070 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
11072 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11073 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11074 if (!SWIG_IsOK(res3
)) {
11075 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "3"" of type '" "wxWindow *""'");
11077 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11080 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
11082 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
11083 if (!SWIG_IsOK(res5
)) {
11084 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiDockArt_DrawBorder" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11087 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawBorder" "', expected argument " "5"" of type '" "wxAuiPaneInfo &""'");
11089 arg5
= reinterpret_cast< wxAuiPaneInfo
* >(argp5
);
11091 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11092 (arg1
)->DrawBorder(*arg2
,arg3
,(wxRect
const &)*arg4
,*arg5
);
11093 wxPyEndAllowThreads(__tstate
);
11094 if (PyErr_Occurred()) SWIG_fail
;
11096 resultobj
= SWIG_Py_Void();
11103 SWIGINTERN PyObject
*_wrap_AuiDockArt_DrawPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11104 PyObject
*resultobj
= 0;
11105 wxAuiDockArt
*arg1
= (wxAuiDockArt
*) 0 ;
11107 wxWindow
*arg3
= (wxWindow
*) 0 ;
11111 wxAuiPaneInfo
*arg7
= 0 ;
11125 PyObject
* obj0
= 0 ;
11126 PyObject
* obj1
= 0 ;
11127 PyObject
* obj2
= 0 ;
11128 PyObject
* obj3
= 0 ;
11129 PyObject
* obj4
= 0 ;
11130 PyObject
* obj5
= 0 ;
11131 PyObject
* obj6
= 0 ;
11132 char * kwnames
[] = {
11133 (char *) "self",(char *) "dc",(char *) "window",(char *) "button",(char *) "button_state",(char *) "rect",(char *) "pane", NULL
11136 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:AuiDockArt_DrawPaneButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
11137 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiDockArt
, 0 | 0 );
11138 if (!SWIG_IsOK(res1
)) {
11139 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "1"" of type '" "wxAuiDockArt *""'");
11141 arg1
= reinterpret_cast< wxAuiDockArt
* >(argp1
);
11142 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11143 if (!SWIG_IsOK(res2
)) {
11144 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
11147 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
11149 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11150 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11151 if (!SWIG_IsOK(res3
)) {
11152 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "3"" of type '" "wxWindow *""'");
11154 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11155 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11156 if (!SWIG_IsOK(ecode4
)) {
11157 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "4"" of type '" "int""'");
11159 arg4
= static_cast< int >(val4
);
11160 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
11161 if (!SWIG_IsOK(ecode5
)) {
11162 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "5"" of type '" "int""'");
11164 arg5
= static_cast< int >(val5
);
11167 if ( ! wxRect_helper(obj5
, &arg6
)) SWIG_fail
;
11169 res7
= SWIG_ConvertPtr(obj6
, &argp7
, SWIGTYPE_p_wxAuiPaneInfo
, 0 );
11170 if (!SWIG_IsOK(res7
)) {
11171 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "7"" of type '" "wxAuiPaneInfo &""'");
11174 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiDockArt_DrawPaneButton" "', expected argument " "7"" of type '" "wxAuiPaneInfo &""'");
11176 arg7
= reinterpret_cast< wxAuiPaneInfo
* >(argp7
);
11178 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11179 (arg1
)->DrawPaneButton(*arg2
,arg3
,arg4
,arg5
,(wxRect
const &)*arg6
,*arg7
);
11180 wxPyEndAllowThreads(__tstate
);
11181 if (PyErr_Occurred()) SWIG_fail
;
11183 resultobj
= SWIG_Py_Void();
11190 SWIGINTERN PyObject
*AuiDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11192 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11193 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDockArt
, SWIG_NewClientData(obj
));
11194 return SWIG_Py_Void();
11197 SWIGINTERN PyObject
*_wrap_new_AuiDefaultDockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11198 PyObject
*resultobj
= 0;
11199 wxAuiDefaultDockArt
*result
= 0 ;
11201 if (!SWIG_Python_UnpackTuple(args
,"new_AuiDefaultDockArt",0,0,0)) SWIG_fail
;
11203 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11204 result
= (wxAuiDefaultDockArt
*)new wxAuiDefaultDockArt();
11205 wxPyEndAllowThreads(__tstate
);
11206 if (PyErr_Occurred()) SWIG_fail
;
11208 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDefaultDockArt
, SWIG_POINTER_NEW
| 0 );
11215 SWIGINTERN PyObject
*AuiDefaultDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11217 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11218 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDefaultDockArt
, SWIG_NewClientData(obj
));
11219 return SWIG_Py_Void();
11222 SWIGINTERN PyObject
*AuiDefaultDockArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11223 return SWIG_Python_InitShadowInstance(args
);
11226 SWIGINTERN PyObject
*_wrap_new_AuiFloatingFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11227 PyObject
*resultobj
= 0;
11228 wxWindow
*arg1
= (wxWindow
*) 0 ;
11229 wxAuiManager
*arg2
= (wxAuiManager
*) 0 ;
11230 wxAuiPaneInfo
*arg3
= 0 ;
11231 int arg4
= (int) wxID_ANY
;
11232 long arg5
= (long) wxRESIZE_BORDER
|wxSYSTEM_MENU
|wxCAPTION
|wxFRAME_NO_TASKBAR
|wxFRAME_FLOAT_ON_PARENT
|wxCLIP_CHILDREN
;
11233 wxAuiFloatingFrame
*result
= 0 ;
11244 PyObject
* obj0
= 0 ;
11245 PyObject
* obj1
= 0 ;
11246 PyObject
* obj2
= 0 ;
11247 PyObject
* obj3
= 0 ;
11248 PyObject
* obj4
= 0 ;
11249 char * kwnames
[] = {
11250 (char *) "parent",(char *) "owner_mgr",(char *) "pane",(char *) "id",(char *) "style", NULL
11253 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:new_AuiFloatingFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11254 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11255 if (!SWIG_IsOK(res1
)) {
11256 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiFloatingFrame" "', expected argument " "1"" of type '" "wxWindow *""'");
11258 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
11259 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiManager
, 0 | 0 );
11260 if (!SWIG_IsOK(res2
)) {
11261 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_AuiFloatingFrame" "', expected argument " "2"" of type '" "wxAuiManager *""'");
11263 arg2
= reinterpret_cast< wxAuiManager
* >(argp2
);
11264 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
11265 if (!SWIG_IsOK(res3
)) {
11266 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_AuiFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
11269 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_AuiFloatingFrame" "', expected argument " "3"" of type '" "wxAuiPaneInfo const &""'");
11271 arg3
= reinterpret_cast< wxAuiPaneInfo
* >(argp3
);
11273 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11274 if (!SWIG_IsOK(ecode4
)) {
11275 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_AuiFloatingFrame" "', expected argument " "4"" of type '" "int""'");
11277 arg4
= static_cast< int >(val4
);
11280 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
11281 if (!SWIG_IsOK(ecode5
)) {
11282 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiFloatingFrame" "', expected argument " "5"" of type '" "long""'");
11284 arg5
= static_cast< long >(val5
);
11287 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11288 result
= (wxAuiFloatingFrame
*)new wxAuiFloatingFrame(arg1
,arg2
,(wxAuiPaneInfo
const &)*arg3
,arg4
,arg5
);
11289 wxPyEndAllowThreads(__tstate
);
11290 if (PyErr_Occurred()) SWIG_fail
;
11292 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiFloatingFrame
, SWIG_POINTER_NEW
| 0 );
11299 SWIGINTERN PyObject
*_wrap_delete_AuiFloatingFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11300 PyObject
*resultobj
= 0;
11301 wxAuiFloatingFrame
*arg1
= (wxAuiFloatingFrame
*) 0 ;
11304 PyObject
*swig_obj
[1] ;
11306 if (!args
) SWIG_fail
;
11307 swig_obj
[0] = args
;
11308 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiFloatingFrame
, SWIG_POINTER_DISOWN
| 0 );
11309 if (!SWIG_IsOK(res1
)) {
11310 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiFloatingFrame" "', expected argument " "1"" of type '" "wxAuiFloatingFrame *""'");
11312 arg1
= reinterpret_cast< wxAuiFloatingFrame
* >(argp1
);
11314 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11317 wxPyEndAllowThreads(__tstate
);
11318 if (PyErr_Occurred()) SWIG_fail
;
11320 resultobj
= SWIG_Py_Void();
11327 SWIGINTERN PyObject
*_wrap_AuiFloatingFrame_SetPaneWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11328 PyObject
*resultobj
= 0;
11329 wxAuiFloatingFrame
*arg1
= (wxAuiFloatingFrame
*) 0 ;
11330 wxAuiPaneInfo
*arg2
= 0 ;
11335 PyObject
* obj0
= 0 ;
11336 PyObject
* obj1
= 0 ;
11337 char * kwnames
[] = {
11338 (char *) "self",(char *) "pane", NULL
11341 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiFloatingFrame_SetPaneWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11342 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiFloatingFrame
, 0 | 0 );
11343 if (!SWIG_IsOK(res1
)) {
11344 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiFloatingFrame_SetPaneWindow" "', expected argument " "1"" of type '" "wxAuiFloatingFrame *""'");
11346 arg1
= reinterpret_cast< wxAuiFloatingFrame
* >(argp1
);
11347 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxAuiPaneInfo
, 0 | 0);
11348 if (!SWIG_IsOK(res2
)) {
11349 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiFloatingFrame_SetPaneWindow" "', expected argument " "2"" of type '" "wxAuiPaneInfo const &""'");
11352 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiFloatingFrame_SetPaneWindow" "', expected argument " "2"" of type '" "wxAuiPaneInfo const &""'");
11354 arg2
= reinterpret_cast< wxAuiPaneInfo
* >(argp2
);
11356 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11357 (arg1
)->SetPaneWindow((wxAuiPaneInfo
const &)*arg2
);
11358 wxPyEndAllowThreads(__tstate
);
11359 if (PyErr_Occurred()) SWIG_fail
;
11361 resultobj
= SWIG_Py_Void();
11368 SWIGINTERN PyObject
*AuiFloatingFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11370 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11371 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiFloatingFrame
, SWIG_NewClientData(obj
));
11372 return SWIG_Py_Void();
11375 SWIGINTERN PyObject
*AuiFloatingFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11376 return SWIG_Python_InitShadowInstance(args
);
11379 SWIGINTERN PyObject
*_wrap_delete_AuiTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11380 PyObject
*resultobj
= 0;
11381 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
11384 PyObject
*swig_obj
[1] ;
11386 if (!args
) SWIG_fail
;
11387 swig_obj
[0] = args
;
11388 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabArt
, SWIG_POINTER_DISOWN
| 0 );
11389 if (!SWIG_IsOK(res1
)) {
11390 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabArt" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
11392 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
11394 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11397 wxPyEndAllowThreads(__tstate
);
11398 if (PyErr_Occurred()) SWIG_fail
;
11400 resultobj
= SWIG_Py_Void();
11407 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetNormalFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11408 PyObject
*resultobj
= 0;
11409 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
11415 PyObject
* obj0
= 0 ;
11416 PyObject
* obj1
= 0 ;
11417 char * kwnames
[] = {
11418 (char *) "self",(char *) "font", NULL
11421 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetNormalFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11422 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
11423 if (!SWIG_IsOK(res1
)) {
11424 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetNormalFont" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
11426 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
11427 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
11428 if (!SWIG_IsOK(res2
)) {
11429 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
11432 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
11434 arg2
= reinterpret_cast< wxFont
* >(argp2
);
11436 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11437 (arg1
)->SetNormalFont((wxFont
const &)*arg2
);
11438 wxPyEndAllowThreads(__tstate
);
11439 if (PyErr_Occurred()) SWIG_fail
;
11441 resultobj
= SWIG_Py_Void();
11448 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetSelectedFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11449 PyObject
*resultobj
= 0;
11450 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
11456 PyObject
* obj0
= 0 ;
11457 PyObject
* obj1
= 0 ;
11458 char * kwnames
[] = {
11459 (char *) "self",(char *) "font", NULL
11462 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetSelectedFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11463 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
11464 if (!SWIG_IsOK(res1
)) {
11465 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetSelectedFont" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
11467 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
11468 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
11469 if (!SWIG_IsOK(res2
)) {
11470 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
11473 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
11475 arg2
= reinterpret_cast< wxFont
* >(argp2
);
11477 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11478 (arg1
)->SetSelectedFont((wxFont
const &)*arg2
);
11479 wxPyEndAllowThreads(__tstate
);
11480 if (PyErr_Occurred()) SWIG_fail
;
11482 resultobj
= SWIG_Py_Void();
11489 SWIGINTERN PyObject
*_wrap_AuiTabArt_SetMeasuringFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11490 PyObject
*resultobj
= 0;
11491 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
11497 PyObject
* obj0
= 0 ;
11498 PyObject
* obj1
= 0 ;
11499 char * kwnames
[] = {
11500 (char *) "self",(char *) "font", NULL
11503 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_SetMeasuringFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11504 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
11505 if (!SWIG_IsOK(res1
)) {
11506 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_SetMeasuringFont" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
11508 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
11509 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
11510 if (!SWIG_IsOK(res2
)) {
11511 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
11514 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
11516 arg2
= reinterpret_cast< wxFont
* >(argp2
);
11518 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11519 (arg1
)->SetMeasuringFont((wxFont
const &)*arg2
);
11520 wxPyEndAllowThreads(__tstate
);
11521 if (PyErr_Occurred()) SWIG_fail
;
11523 resultobj
= SWIG_Py_Void();
11530 SWIGINTERN PyObject
*_wrap_AuiTabArt_DrawBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11531 PyObject
*resultobj
= 0;
11532 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
11534 wxWindow
*arg3
= (wxWindow
*) 0 ;
11543 PyObject
* obj0
= 0 ;
11544 PyObject
* obj1
= 0 ;
11545 PyObject
* obj2
= 0 ;
11546 PyObject
* obj3
= 0 ;
11547 char * kwnames
[] = {
11548 (char *) "self",(char *) "dc",(char *) "wnd",(char *) "rect", NULL
11551 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabArt_DrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
11552 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
11553 if (!SWIG_IsOK(res1
)) {
11554 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_DrawBackground" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
11556 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
11557 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11558 if (!SWIG_IsOK(res2
)) {
11559 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
11562 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
11564 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11565 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11566 if (!SWIG_IsOK(res3
)) {
11567 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_DrawBackground" "', expected argument " "3"" of type '" "wxWindow *""'");
11569 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11572 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
11575 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11576 (arg1
)->DrawBackground(*arg2
,arg3
,(wxRect
const &)*arg4
);
11577 wxPyEndAllowThreads(__tstate
);
11578 if (PyErr_Occurred()) SWIG_fail
;
11580 resultobj
= SWIG_Py_Void();
11587 SWIGINTERN PyObject
*_wrap_AuiTabArt_DrawTab(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11588 PyObject
*resultobj
= 0;
11589 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
11591 wxWindow
*arg3
= (wxWindow
*) 0 ;
11593 wxString
*arg5
= 0 ;
11596 wxRect
*arg8
= (wxRect
*) 0 ;
11597 wxRect
*arg9
= (wxRect
*) 0 ;
11598 int *arg10
= (int *) 0 ;
11606 bool temp5
= false ;
11617 PyObject
* obj0
= 0 ;
11618 PyObject
* obj1
= 0 ;
11619 PyObject
* obj2
= 0 ;
11620 PyObject
* obj3
= 0 ;
11621 PyObject
* obj4
= 0 ;
11622 PyObject
* obj5
= 0 ;
11623 PyObject
* obj6
= 0 ;
11624 PyObject
* obj7
= 0 ;
11625 PyObject
* obj8
= 0 ;
11626 PyObject
* obj9
= 0 ;
11627 char * kwnames
[] = {
11628 (char *) "self",(char *) "dc",(char *) "wnd",(char *) "in_rect",(char *) "caption",(char *) "active",(char *) "close_button_state",(char *) "out_tab_rect",(char *) "out_button_rect",(char *) "x_extent", NULL
11631 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOOOO:AuiTabArt_DrawTab",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) SWIG_fail
;
11632 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
11633 if (!SWIG_IsOK(res1
)) {
11634 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
11636 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
11637 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11638 if (!SWIG_IsOK(res2
)) {
11639 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "2"" of type '" "wxDC &""'");
11642 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawTab" "', expected argument " "2"" of type '" "wxDC &""'");
11644 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11645 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11646 if (!SWIG_IsOK(res3
)) {
11647 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "3"" of type '" "wxWindow *""'");
11649 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11652 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
11655 arg5
= wxString_in_helper(obj4
);
11656 if (arg5
== NULL
) SWIG_fail
;
11659 ecode6
= SWIG_AsVal_bool(obj5
, &val6
);
11660 if (!SWIG_IsOK(ecode6
)) {
11661 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "6"" of type '" "bool""'");
11663 arg6
= static_cast< bool >(val6
);
11664 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
11665 if (!SWIG_IsOK(ecode7
)) {
11666 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "7"" of type '" "int""'");
11668 arg7
= static_cast< int >(val7
);
11669 res8
= SWIG_ConvertPtr(obj7
, &argp8
,SWIGTYPE_p_wxRect
, 0 | 0 );
11670 if (!SWIG_IsOK(res8
)) {
11671 SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "8"" of type '" "wxRect *""'");
11673 arg8
= reinterpret_cast< wxRect
* >(argp8
);
11674 res9
= SWIG_ConvertPtr(obj8
, &argp9
,SWIGTYPE_p_wxRect
, 0 | 0 );
11675 if (!SWIG_IsOK(res9
)) {
11676 SWIG_exception_fail(SWIG_ArgError(res9
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "9"" of type '" "wxRect *""'");
11678 arg9
= reinterpret_cast< wxRect
* >(argp9
);
11679 res10
= SWIG_ConvertPtr(obj9
, &argp10
,SWIGTYPE_p_int
, 0 | 0 );
11680 if (!SWIG_IsOK(res10
)) {
11681 SWIG_exception_fail(SWIG_ArgError(res10
), "in method '" "AuiTabArt_DrawTab" "', expected argument " "10"" of type '" "int *""'");
11683 arg10
= reinterpret_cast< int * >(argp10
);
11685 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11686 (arg1
)->DrawTab(*arg2
,arg3
,(wxRect
const &)*arg4
,(wxString
const &)*arg5
,arg6
,arg7
,arg8
,arg9
,arg10
);
11687 wxPyEndAllowThreads(__tstate
);
11688 if (PyErr_Occurred()) SWIG_fail
;
11690 resultobj
= SWIG_Py_Void();
11705 SWIGINTERN PyObject
*_wrap_AuiTabArt_DrawButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11706 PyObject
*resultobj
= 0;
11707 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
11709 wxWindow
*arg3
= (wxWindow
*) 0 ;
11714 wxBitmap
*arg8
= 0 ;
11715 wxRect
*arg9
= (wxRect
*) 0 ;
11733 PyObject
* obj0
= 0 ;
11734 PyObject
* obj1
= 0 ;
11735 PyObject
* obj2
= 0 ;
11736 PyObject
* obj3
= 0 ;
11737 PyObject
* obj4
= 0 ;
11738 PyObject
* obj5
= 0 ;
11739 PyObject
* obj6
= 0 ;
11740 PyObject
* obj7
= 0 ;
11741 PyObject
* obj8
= 0 ;
11742 char * kwnames
[] = {
11743 (char *) "self",(char *) "dc",(char *) "wnd",(char *) "in_rect",(char *) "bitmap_id",(char *) "button_state",(char *) "orientation",(char *) "bitmap_override",(char *) "out_rect", NULL
11746 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOOO:AuiTabArt_DrawButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
)) SWIG_fail
;
11747 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
11748 if (!SWIG_IsOK(res1
)) {
11749 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
11751 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
11752 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11753 if (!SWIG_IsOK(res2
)) {
11754 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "2"" of type '" "wxDC &""'");
11757 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawButton" "', expected argument " "2"" of type '" "wxDC &""'");
11759 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11760 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11761 if (!SWIG_IsOK(res3
)) {
11762 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "3"" of type '" "wxWindow *""'");
11764 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11767 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
11769 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
11770 if (!SWIG_IsOK(ecode5
)) {
11771 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "5"" of type '" "int""'");
11773 arg5
= static_cast< int >(val5
);
11774 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
11775 if (!SWIG_IsOK(ecode6
)) {
11776 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "6"" of type '" "int""'");
11778 arg6
= static_cast< int >(val6
);
11779 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
11780 if (!SWIG_IsOK(ecode7
)) {
11781 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "7"" of type '" "int""'");
11783 arg7
= static_cast< int >(val7
);
11784 res8
= SWIG_ConvertPtr(obj7
, &argp8
, SWIGTYPE_p_wxBitmap
, 0 | 0);
11785 if (!SWIG_IsOK(res8
)) {
11786 SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "8"" of type '" "wxBitmap const &""'");
11789 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_DrawButton" "', expected argument " "8"" of type '" "wxBitmap const &""'");
11791 arg8
= reinterpret_cast< wxBitmap
* >(argp8
);
11792 res9
= SWIG_ConvertPtr(obj8
, &argp9
,SWIGTYPE_p_wxRect
, 0 | 0 );
11793 if (!SWIG_IsOK(res9
)) {
11794 SWIG_exception_fail(SWIG_ArgError(res9
), "in method '" "AuiTabArt_DrawButton" "', expected argument " "9"" of type '" "wxRect *""'");
11796 arg9
= reinterpret_cast< wxRect
* >(argp9
);
11798 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11799 (arg1
)->DrawButton(*arg2
,arg3
,(wxRect
const &)*arg4
,arg5
,arg6
,arg7
,(wxBitmap
const &)*arg8
,arg9
);
11800 wxPyEndAllowThreads(__tstate
);
11801 if (PyErr_Occurred()) SWIG_fail
;
11803 resultobj
= SWIG_Py_Void();
11810 SWIGINTERN PyObject
*_wrap_AuiTabArt_GetTabSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11811 PyObject
*resultobj
= 0;
11812 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
11814 wxWindow
*arg3
= (wxWindow
*) 0 ;
11815 wxString
*arg4
= 0 ;
11818 int *arg7
= (int *) 0 ;
11826 bool temp4
= false ;
11833 PyObject
* obj0
= 0 ;
11834 PyObject
* obj1
= 0 ;
11835 PyObject
* obj2
= 0 ;
11836 PyObject
* obj3
= 0 ;
11837 PyObject
* obj4
= 0 ;
11838 PyObject
* obj5
= 0 ;
11839 PyObject
* obj6
= 0 ;
11840 char * kwnames
[] = {
11841 (char *) "self",(char *) "dc",(char *) "wnd",(char *) "caption",(char *) "active",(char *) "close_button_state",(char *) "x_extent", NULL
11844 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:AuiTabArt_GetTabSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
11845 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
11846 if (!SWIG_IsOK(res1
)) {
11847 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
11849 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
11850 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
11851 if (!SWIG_IsOK(res2
)) {
11852 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "2"" of type '" "wxDC &""'");
11855 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabArt_GetTabSize" "', expected argument " "2"" of type '" "wxDC &""'");
11857 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11858 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11859 if (!SWIG_IsOK(res3
)) {
11860 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "3"" of type '" "wxWindow *""'");
11862 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
11864 arg4
= wxString_in_helper(obj3
);
11865 if (arg4
== NULL
) SWIG_fail
;
11868 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
11869 if (!SWIG_IsOK(ecode5
)) {
11870 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "5"" of type '" "bool""'");
11872 arg5
= static_cast< bool >(val5
);
11873 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
11874 if (!SWIG_IsOK(ecode6
)) {
11875 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "6"" of type '" "int""'");
11877 arg6
= static_cast< int >(val6
);
11878 res7
= SWIG_ConvertPtr(obj6
, &argp7
,SWIGTYPE_p_int
, 0 | 0 );
11879 if (!SWIG_IsOK(res7
)) {
11880 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "AuiTabArt_GetTabSize" "', expected argument " "7"" of type '" "int *""'");
11882 arg7
= reinterpret_cast< int * >(argp7
);
11884 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11885 result
= (arg1
)->GetTabSize(*arg2
,arg3
,(wxString
const &)*arg4
,arg5
,arg6
,arg7
);
11886 wxPyEndAllowThreads(__tstate
);
11887 if (PyErr_Occurred()) SWIG_fail
;
11889 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
11904 SWIGINTERN PyObject
*_wrap_AuiTabArt_ShowWindowList(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11905 PyObject
*resultobj
= 0;
11906 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
11907 wxWindow
*arg2
= (wxWindow
*) 0 ;
11908 wxArrayString
*arg3
= 0 ;
11915 bool temp3
= false ;
11918 PyObject
* obj0
= 0 ;
11919 PyObject
* obj1
= 0 ;
11920 PyObject
* obj2
= 0 ;
11921 PyObject
* obj3
= 0 ;
11922 char * kwnames
[] = {
11923 (char *) "self",(char *) "wnd",(char *) "items",(char *) "active_idx", NULL
11926 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabArt_ShowWindowList",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
11927 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
11928 if (!SWIG_IsOK(res1
)) {
11929 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_ShowWindowList" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
11931 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
11932 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11933 if (!SWIG_IsOK(res2
)) {
11934 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_ShowWindowList" "', expected argument " "2"" of type '" "wxWindow *""'");
11936 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
11938 if (! PySequence_Check(obj2
)) {
11939 PyErr_SetString(PyExc_TypeError
, "Sequence of strings expected.");
11942 arg3
= new wxArrayString
;
11944 int i
, len
=PySequence_Length(obj2
);
11945 for (i
=0; i
<len
; i
++) {
11946 PyObject
* item
= PySequence_GetItem(obj2
, i
);
11947 wxString
* s
= wxString_in_helper(item
);
11948 if (PyErr_Occurred()) SWIG_fail
;
11954 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11955 if (!SWIG_IsOK(ecode4
)) {
11956 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiTabArt_ShowWindowList" "', expected argument " "4"" of type '" "int""'");
11958 arg4
= static_cast< int >(val4
);
11960 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11961 result
= (int)(arg1
)->ShowWindowList(arg2
,(wxArrayString
const &)*arg3
,arg4
);
11962 wxPyEndAllowThreads(__tstate
);
11963 if (PyErr_Occurred()) SWIG_fail
;
11965 resultobj
= SWIG_From_int(static_cast< int >(result
));
11967 if (temp3
) delete arg3
;
11972 if (temp3
) delete arg3
;
11978 SWIGINTERN PyObject
*_wrap_AuiTabArt_GetBestTabCtrlSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11979 PyObject
*resultobj
= 0;
11980 wxAuiTabArt
*arg1
= (wxAuiTabArt
*) 0 ;
11981 wxWindow
*arg2
= (wxWindow
*) 0 ;
11987 PyObject
* obj0
= 0 ;
11988 PyObject
* obj1
= 0 ;
11989 char * kwnames
[] = {
11990 (char *) "self",(char *) "wnd", NULL
11993 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabArt_GetBestTabCtrlSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11994 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
11995 if (!SWIG_IsOK(res1
)) {
11996 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "1"" of type '" "wxAuiTabArt *""'");
11998 arg1
= reinterpret_cast< wxAuiTabArt
* >(argp1
);
11999 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12000 if (!SWIG_IsOK(res2
)) {
12001 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabArt_GetBestTabCtrlSize" "', expected argument " "2"" of type '" "wxWindow *""'");
12003 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12005 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12006 result
= (int)(arg1
)->GetBestTabCtrlSize(arg2
);
12007 wxPyEndAllowThreads(__tstate
);
12008 if (PyErr_Occurred()) SWIG_fail
;
12010 resultobj
= SWIG_From_int(static_cast< int >(result
));
12017 SWIGINTERN PyObject
*AuiTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12019 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12020 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabArt
, SWIG_NewClientData(obj
));
12021 return SWIG_Py_Void();
12024 SWIGINTERN PyObject
*_wrap_new_AuiDefaultTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12025 PyObject
*resultobj
= 0;
12026 wxAuiDefaultTabArt
*result
= 0 ;
12028 if (!SWIG_Python_UnpackTuple(args
,"new_AuiDefaultTabArt",0,0,0)) SWIG_fail
;
12030 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12031 result
= (wxAuiDefaultTabArt
*)new wxAuiDefaultTabArt();
12032 wxPyEndAllowThreads(__tstate
);
12033 if (PyErr_Occurred()) SWIG_fail
;
12035 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiDefaultTabArt
, SWIG_POINTER_NEW
| 0 );
12042 SWIGINTERN PyObject
*_wrap_delete_AuiDefaultTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12043 PyObject
*resultobj
= 0;
12044 wxAuiDefaultTabArt
*arg1
= (wxAuiDefaultTabArt
*) 0 ;
12047 PyObject
*swig_obj
[1] ;
12049 if (!args
) SWIG_fail
;
12050 swig_obj
[0] = args
;
12051 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiDefaultTabArt
, SWIG_POINTER_DISOWN
| 0 );
12052 if (!SWIG_IsOK(res1
)) {
12053 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiDefaultTabArt" "', expected argument " "1"" of type '" "wxAuiDefaultTabArt *""'");
12055 arg1
= reinterpret_cast< wxAuiDefaultTabArt
* >(argp1
);
12057 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12060 wxPyEndAllowThreads(__tstate
);
12061 if (PyErr_Occurred()) SWIG_fail
;
12063 resultobj
= SWIG_Py_Void();
12070 SWIGINTERN PyObject
*AuiDefaultTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12072 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12073 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiDefaultTabArt
, SWIG_NewClientData(obj
));
12074 return SWIG_Py_Void();
12077 SWIGINTERN PyObject
*AuiDefaultTabArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12078 return SWIG_Python_InitShadowInstance(args
);
12081 SWIGINTERN PyObject
*_wrap_new_AuiNotebookEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12082 PyObject
*resultobj
= 0;
12083 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
12084 int arg2
= (int) 0 ;
12085 wxAuiNotebookEvent
*result
= 0 ;
12090 PyObject
* obj0
= 0 ;
12091 PyObject
* obj1
= 0 ;
12092 char * kwnames
[] = {
12093 (char *) "command_type",(char *) "win_id", NULL
12096 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_AuiNotebookEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12098 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
12099 if (!SWIG_IsOK(ecode1
)) {
12100 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_AuiNotebookEvent" "', expected argument " "1"" of type '" "wxEventType""'");
12102 arg1
= static_cast< wxEventType
>(val1
);
12105 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12106 if (!SWIG_IsOK(ecode2
)) {
12107 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiNotebookEvent" "', expected argument " "2"" of type '" "int""'");
12109 arg2
= static_cast< int >(val2
);
12112 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12113 result
= (wxAuiNotebookEvent
*)new wxAuiNotebookEvent(arg1
,arg2
);
12114 wxPyEndAllowThreads(__tstate
);
12115 if (PyErr_Occurred()) SWIG_fail
;
12117 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookEvent
, SWIG_POINTER_NEW
| 0 );
12124 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12125 PyObject
*resultobj
= 0;
12126 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12132 PyObject
* obj0
= 0 ;
12133 PyObject
* obj1
= 0 ;
12134 char * kwnames
[] = {
12135 (char *) "self",(char *) "s", NULL
12138 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12139 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12140 if (!SWIG_IsOK(res1
)) {
12141 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12143 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12144 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12145 if (!SWIG_IsOK(ecode2
)) {
12146 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_SetSelection" "', expected argument " "2"" of type '" "int""'");
12148 arg2
= static_cast< int >(val2
);
12150 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12151 (arg1
)->SetSelection(arg2
);
12152 wxPyEndAllowThreads(__tstate
);
12153 if (PyErr_Occurred()) SWIG_fail
;
12155 resultobj
= SWIG_Py_Void();
12162 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12163 PyObject
*resultobj
= 0;
12164 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12168 PyObject
*swig_obj
[1] ;
12170 if (!args
) SWIG_fail
;
12171 swig_obj
[0] = args
;
12172 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12173 if (!SWIG_IsOK(res1
)) {
12174 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
12176 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12178 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12179 result
= (int)((wxAuiNotebookEvent
const *)arg1
)->GetSelection();
12180 wxPyEndAllowThreads(__tstate
);
12181 if (PyErr_Occurred()) SWIG_fail
;
12183 resultobj
= SWIG_From_int(static_cast< int >(result
));
12190 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetOldSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12191 PyObject
*resultobj
= 0;
12192 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12198 PyObject
* obj0
= 0 ;
12199 PyObject
* obj1
= 0 ;
12200 char * kwnames
[] = {
12201 (char *) "self",(char *) "s", NULL
12204 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetOldSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12205 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12206 if (!SWIG_IsOK(res1
)) {
12207 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetOldSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12209 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12210 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12211 if (!SWIG_IsOK(ecode2
)) {
12212 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_SetOldSelection" "', expected argument " "2"" of type '" "int""'");
12214 arg2
= static_cast< int >(val2
);
12216 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12217 (arg1
)->SetOldSelection(arg2
);
12218 wxPyEndAllowThreads(__tstate
);
12219 if (PyErr_Occurred()) SWIG_fail
;
12221 resultobj
= SWIG_Py_Void();
12228 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetOldSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12229 PyObject
*resultobj
= 0;
12230 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12234 PyObject
*swig_obj
[1] ;
12236 if (!args
) SWIG_fail
;
12237 swig_obj
[0] = args
;
12238 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12239 if (!SWIG_IsOK(res1
)) {
12240 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetOldSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
12242 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12244 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12245 result
= (int)((wxAuiNotebookEvent
const *)arg1
)->GetOldSelection();
12246 wxPyEndAllowThreads(__tstate
);
12247 if (PyErr_Occurred()) SWIG_fail
;
12249 resultobj
= SWIG_From_int(static_cast< int >(result
));
12256 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetDragSource(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12257 PyObject
*resultobj
= 0;
12258 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12259 wxAuiNotebook
*arg2
= (wxAuiNotebook
*) 0 ;
12264 PyObject
* obj0
= 0 ;
12265 PyObject
* obj1
= 0 ;
12266 char * kwnames
[] = {
12267 (char *) "self",(char *) "s", NULL
12270 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetDragSource",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12271 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12272 if (!SWIG_IsOK(res1
)) {
12273 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetDragSource" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12275 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12276 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
12277 if (!SWIG_IsOK(res2
)) {
12278 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookEvent_SetDragSource" "', expected argument " "2"" of type '" "wxAuiNotebook *""'");
12280 arg2
= reinterpret_cast< wxAuiNotebook
* >(argp2
);
12282 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12283 (arg1
)->SetDragSource(arg2
);
12284 wxPyEndAllowThreads(__tstate
);
12285 if (PyErr_Occurred()) SWIG_fail
;
12287 resultobj
= SWIG_Py_Void();
12294 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetDragSource(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12295 PyObject
*resultobj
= 0;
12296 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12297 wxAuiNotebook
*result
= 0 ;
12300 PyObject
*swig_obj
[1] ;
12302 if (!args
) SWIG_fail
;
12303 swig_obj
[0] = args
;
12304 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12305 if (!SWIG_IsOK(res1
)) {
12306 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetDragSource" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
12308 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12310 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12311 result
= (wxAuiNotebook
*)((wxAuiNotebookEvent
const *)arg1
)->GetDragSource();
12312 wxPyEndAllowThreads(__tstate
);
12313 if (PyErr_Occurred()) SWIG_fail
;
12315 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
12322 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_old_selection_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12323 PyObject
*resultobj
= 0;
12324 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12330 PyObject
*swig_obj
[2] ;
12332 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_old_selection_set",2,2,swig_obj
)) SWIG_fail
;
12333 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12334 if (!SWIG_IsOK(res1
)) {
12335 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_old_selection_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12337 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12338 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12339 if (!SWIG_IsOK(ecode2
)) {
12340 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_old_selection_set" "', expected argument " "2"" of type '" "int""'");
12342 arg2
= static_cast< int >(val2
);
12343 if (arg1
) (arg1
)->old_selection
= arg2
;
12345 resultobj
= SWIG_Py_Void();
12352 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_old_selection_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12353 PyObject
*resultobj
= 0;
12354 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12358 PyObject
*swig_obj
[1] ;
12360 if (!args
) SWIG_fail
;
12361 swig_obj
[0] = args
;
12362 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12363 if (!SWIG_IsOK(res1
)) {
12364 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_old_selection_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12366 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12367 result
= (int) ((arg1
)->old_selection
);
12368 resultobj
= SWIG_From_int(static_cast< int >(result
));
12375 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_selection_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12376 PyObject
*resultobj
= 0;
12377 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12383 PyObject
*swig_obj
[2] ;
12385 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_selection_set",2,2,swig_obj
)) SWIG_fail
;
12386 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12387 if (!SWIG_IsOK(res1
)) {
12388 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_selection_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12390 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12391 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12392 if (!SWIG_IsOK(ecode2
)) {
12393 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_selection_set" "', expected argument " "2"" of type '" "int""'");
12395 arg2
= static_cast< int >(val2
);
12396 if (arg1
) (arg1
)->selection
= arg2
;
12398 resultobj
= SWIG_Py_Void();
12405 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_selection_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12406 PyObject
*resultobj
= 0;
12407 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12411 PyObject
*swig_obj
[1] ;
12413 if (!args
) SWIG_fail
;
12414 swig_obj
[0] = args
;
12415 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12416 if (!SWIG_IsOK(res1
)) {
12417 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_selection_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12419 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12420 result
= (int) ((arg1
)->selection
);
12421 resultobj
= SWIG_From_int(static_cast< int >(result
));
12428 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_drag_source_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12429 PyObject
*resultobj
= 0;
12430 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12431 wxAuiNotebook
*arg2
= (wxAuiNotebook
*) 0 ;
12436 PyObject
*swig_obj
[2] ;
12438 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_drag_source_set",2,2,swig_obj
)) SWIG_fail
;
12439 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12440 if (!SWIG_IsOK(res1
)) {
12441 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_drag_source_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12443 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12444 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_DISOWN
| 0 );
12445 if (!SWIG_IsOK(res2
)) {
12446 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookEvent_drag_source_set" "', expected argument " "2"" of type '" "wxAuiNotebook *""'");
12448 arg2
= reinterpret_cast< wxAuiNotebook
* >(argp2
);
12449 if (arg1
) (arg1
)->drag_source
= arg2
;
12451 resultobj
= SWIG_Py_Void();
12458 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_drag_source_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12459 PyObject
*resultobj
= 0;
12460 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
12461 wxAuiNotebook
*result
= 0 ;
12464 PyObject
*swig_obj
[1] ;
12466 if (!args
) SWIG_fail
;
12467 swig_obj
[0] = args
;
12468 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
12469 if (!SWIG_IsOK(res1
)) {
12470 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_drag_source_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
12472 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
12473 result
= (wxAuiNotebook
*) ((arg1
)->drag_source
);
12474 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
12481 SWIGINTERN PyObject
*AuiNotebookEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12483 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12484 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebookEvent
, SWIG_NewClientData(obj
));
12485 return SWIG_Py_Void();
12488 SWIGINTERN PyObject
*AuiNotebookEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12489 return SWIG_Python_InitShadowInstance(args
);
12492 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_window_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12493 PyObject
*resultobj
= 0;
12494 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12495 wxWindow
*arg2
= (wxWindow
*) 0 ;
12500 PyObject
*swig_obj
[2] ;
12502 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_window_set",2,2,swig_obj
)) SWIG_fail
;
12503 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12504 if (!SWIG_IsOK(res1
)) {
12505 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_window_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12507 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12508 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN
| 0 );
12509 if (!SWIG_IsOK(res2
)) {
12510 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_window_set" "', expected argument " "2"" of type '" "wxWindow *""'");
12512 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12513 if (arg1
) (arg1
)->window
= arg2
;
12515 resultobj
= SWIG_Py_Void();
12522 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_window_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12523 PyObject
*resultobj
= 0;
12524 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12525 wxWindow
*result
= 0 ;
12528 PyObject
*swig_obj
[1] ;
12530 if (!args
) SWIG_fail
;
12531 swig_obj
[0] = args
;
12532 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12533 if (!SWIG_IsOK(res1
)) {
12534 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_window_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12536 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12537 result
= (wxWindow
*) ((arg1
)->window
);
12539 resultobj
= wxPyMake_wxObject(result
, 0);
12547 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_caption_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12548 PyObject
*resultobj
= 0;
12549 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12550 wxString
*arg2
= (wxString
*) 0 ;
12553 bool temp2
= false ;
12554 PyObject
*swig_obj
[2] ;
12556 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_caption_set",2,2,swig_obj
)) SWIG_fail
;
12557 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12558 if (!SWIG_IsOK(res1
)) {
12559 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_caption_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12561 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12563 arg2
= wxString_in_helper(swig_obj
[1]);
12564 if (arg2
== NULL
) SWIG_fail
;
12567 if (arg1
) (arg1
)->caption
= *arg2
;
12569 resultobj
= SWIG_Py_Void();
12584 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_caption_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12585 PyObject
*resultobj
= 0;
12586 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12587 wxString
*result
= 0 ;
12590 PyObject
*swig_obj
[1] ;
12592 if (!args
) SWIG_fail
;
12593 swig_obj
[0] = args
;
12594 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12595 if (!SWIG_IsOK(res1
)) {
12596 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_caption_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12598 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12599 result
= (wxString
*)& ((arg1
)->caption
);
12602 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
12604 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
12613 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12614 PyObject
*resultobj
= 0;
12615 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12616 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
12621 PyObject
*swig_obj
[2] ;
12623 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
12624 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12625 if (!SWIG_IsOK(res1
)) {
12626 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_bitmap_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12628 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12629 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
12630 if (!SWIG_IsOK(res2
)) {
12631 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
12633 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
12634 if (arg1
) (arg1
)->bitmap
= *arg2
;
12636 resultobj
= SWIG_Py_Void();
12643 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12644 PyObject
*resultobj
= 0;
12645 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12646 wxBitmap
*result
= 0 ;
12649 PyObject
*swig_obj
[1] ;
12651 if (!args
) SWIG_fail
;
12652 swig_obj
[0] = args
;
12653 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12654 if (!SWIG_IsOK(res1
)) {
12655 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_bitmap_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12657 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12658 result
= (wxBitmap
*)& ((arg1
)->bitmap
);
12659 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
12666 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12667 PyObject
*resultobj
= 0;
12668 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12669 wxRect
*arg2
= (wxRect
*) 0 ;
12674 PyObject
*swig_obj
[2] ;
12676 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_rect_set",2,2,swig_obj
)) SWIG_fail
;
12677 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12678 if (!SWIG_IsOK(res1
)) {
12679 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_rect_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12681 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12682 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
12683 if (!SWIG_IsOK(res2
)) {
12684 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
12686 arg2
= reinterpret_cast< wxRect
* >(argp2
);
12687 if (arg1
) (arg1
)->rect
= *arg2
;
12689 resultobj
= SWIG_Py_Void();
12696 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12697 PyObject
*resultobj
= 0;
12698 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12699 wxRect
*result
= 0 ;
12702 PyObject
*swig_obj
[1] ;
12704 if (!args
) SWIG_fail
;
12705 swig_obj
[0] = args
;
12706 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12707 if (!SWIG_IsOK(res1
)) {
12708 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_rect_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12710 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12711 result
= (wxRect
*)& ((arg1
)->rect
);
12712 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
12719 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_active_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12720 PyObject
*resultobj
= 0;
12721 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12727 PyObject
*swig_obj
[2] ;
12729 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_active_set",2,2,swig_obj
)) SWIG_fail
;
12730 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12731 if (!SWIG_IsOK(res1
)) {
12732 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_active_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12734 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12735 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
12736 if (!SWIG_IsOK(ecode2
)) {
12737 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookPage_active_set" "', expected argument " "2"" of type '" "bool""'");
12739 arg2
= static_cast< bool >(val2
);
12740 if (arg1
) (arg1
)->active
= arg2
;
12742 resultobj
= SWIG_Py_Void();
12749 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_active_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12750 PyObject
*resultobj
= 0;
12751 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12755 PyObject
*swig_obj
[1] ;
12757 if (!args
) SWIG_fail
;
12758 swig_obj
[0] = args
;
12759 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12760 if (!SWIG_IsOK(res1
)) {
12761 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_active_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12763 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12764 result
= (bool) ((arg1
)->active
);
12766 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12774 SWIGINTERN PyObject
*AuiNotebookPage_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12776 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12777 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebookPage
, SWIG_NewClientData(obj
));
12778 return SWIG_Py_Void();
12781 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_id_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12782 PyObject
*resultobj
= 0;
12783 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12789 PyObject
*swig_obj
[2] ;
12791 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_id_set",2,2,swig_obj
)) SWIG_fail
;
12792 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12793 if (!SWIG_IsOK(res1
)) {
12794 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_id_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12796 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12797 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12798 if (!SWIG_IsOK(ecode2
)) {
12799 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_id_set" "', expected argument " "2"" of type '" "int""'");
12801 arg2
= static_cast< int >(val2
);
12802 if (arg1
) (arg1
)->id
= arg2
;
12804 resultobj
= SWIG_Py_Void();
12811 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_id_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12812 PyObject
*resultobj
= 0;
12813 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12817 PyObject
*swig_obj
[1] ;
12819 if (!args
) SWIG_fail
;
12820 swig_obj
[0] = args
;
12821 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12822 if (!SWIG_IsOK(res1
)) {
12823 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_id_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12825 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12826 result
= (int) ((arg1
)->id
);
12827 resultobj
= SWIG_From_int(static_cast< int >(result
));
12834 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_cur_state_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12835 PyObject
*resultobj
= 0;
12836 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12842 PyObject
*swig_obj
[2] ;
12844 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_cur_state_set",2,2,swig_obj
)) SWIG_fail
;
12845 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12846 if (!SWIG_IsOK(res1
)) {
12847 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_cur_state_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12849 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12850 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12851 if (!SWIG_IsOK(ecode2
)) {
12852 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_cur_state_set" "', expected argument " "2"" of type '" "int""'");
12854 arg2
= static_cast< int >(val2
);
12855 if (arg1
) (arg1
)->cur_state
= arg2
;
12857 resultobj
= SWIG_Py_Void();
12864 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_cur_state_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12865 PyObject
*resultobj
= 0;
12866 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12870 PyObject
*swig_obj
[1] ;
12872 if (!args
) SWIG_fail
;
12873 swig_obj
[0] = args
;
12874 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12875 if (!SWIG_IsOK(res1
)) {
12876 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_cur_state_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12878 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12879 result
= (int) ((arg1
)->cur_state
);
12880 resultobj
= SWIG_From_int(static_cast< int >(result
));
12887 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_location_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12888 PyObject
*resultobj
= 0;
12889 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12895 PyObject
*swig_obj
[2] ;
12897 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_location_set",2,2,swig_obj
)) SWIG_fail
;
12898 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12899 if (!SWIG_IsOK(res1
)) {
12900 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_location_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12902 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12903 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12904 if (!SWIG_IsOK(ecode2
)) {
12905 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_location_set" "', expected argument " "2"" of type '" "int""'");
12907 arg2
= static_cast< int >(val2
);
12908 if (arg1
) (arg1
)->location
= arg2
;
12910 resultobj
= SWIG_Py_Void();
12917 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_location_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12918 PyObject
*resultobj
= 0;
12919 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12923 PyObject
*swig_obj
[1] ;
12925 if (!args
) SWIG_fail
;
12926 swig_obj
[0] = args
;
12927 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12928 if (!SWIG_IsOK(res1
)) {
12929 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_location_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12931 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12932 result
= (int) ((arg1
)->location
);
12933 resultobj
= SWIG_From_int(static_cast< int >(result
));
12940 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12941 PyObject
*resultobj
= 0;
12942 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12943 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
12948 PyObject
*swig_obj
[2] ;
12950 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
12951 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12952 if (!SWIG_IsOK(res1
)) {
12953 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_bitmap_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12955 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12956 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
12957 if (!SWIG_IsOK(res2
)) {
12958 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
12960 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
12961 if (arg1
) (arg1
)->bitmap
= *arg2
;
12963 resultobj
= SWIG_Py_Void();
12970 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12971 PyObject
*resultobj
= 0;
12972 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12973 wxBitmap
*result
= 0 ;
12976 PyObject
*swig_obj
[1] ;
12978 if (!args
) SWIG_fail
;
12979 swig_obj
[0] = args
;
12980 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12981 if (!SWIG_IsOK(res1
)) {
12982 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_bitmap_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12984 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12985 result
= (wxBitmap
*)& ((arg1
)->bitmap
);
12986 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
12993 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_dis_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12994 PyObject
*resultobj
= 0;
12995 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12996 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
13001 PyObject
*swig_obj
[2] ;
13003 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_dis_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
13004 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
13005 if (!SWIG_IsOK(res1
)) {
13006 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_dis_bitmap_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
13008 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
13009 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
13010 if (!SWIG_IsOK(res2
)) {
13011 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_dis_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
13013 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
13014 if (arg1
) (arg1
)->dis_bitmap
= *arg2
;
13016 resultobj
= SWIG_Py_Void();
13023 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_dis_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13024 PyObject
*resultobj
= 0;
13025 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
13026 wxBitmap
*result
= 0 ;
13029 PyObject
*swig_obj
[1] ;
13031 if (!args
) SWIG_fail
;
13032 swig_obj
[0] = args
;
13033 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
13034 if (!SWIG_IsOK(res1
)) {
13035 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_dis_bitmap_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
13037 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
13038 result
= (wxBitmap
*)& ((arg1
)->dis_bitmap
);
13039 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
13046 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13047 PyObject
*resultobj
= 0;
13048 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
13049 wxRect
*arg2
= (wxRect
*) 0 ;
13054 PyObject
*swig_obj
[2] ;
13056 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_rect_set",2,2,swig_obj
)) SWIG_fail
;
13057 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
13058 if (!SWIG_IsOK(res1
)) {
13059 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_rect_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
13061 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
13062 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
13063 if (!SWIG_IsOK(res2
)) {
13064 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
13066 arg2
= reinterpret_cast< wxRect
* >(argp2
);
13067 if (arg1
) (arg1
)->rect
= *arg2
;
13069 resultobj
= SWIG_Py_Void();
13076 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13077 PyObject
*resultobj
= 0;
13078 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
13079 wxRect
*result
= 0 ;
13082 PyObject
*swig_obj
[1] ;
13084 if (!args
) SWIG_fail
;
13085 swig_obj
[0] = args
;
13086 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
13087 if (!SWIG_IsOK(res1
)) {
13088 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_rect_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
13090 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
13091 result
= (wxRect
*)& ((arg1
)->rect
);
13092 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
13099 SWIGINTERN PyObject
*AuiTabContainerButton_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13101 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13102 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabContainerButton
, SWIG_NewClientData(obj
));
13103 return SWIG_Py_Void();
13106 SWIGINTERN PyObject
*_wrap_new_AuiTabContainer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13107 PyObject
*resultobj
= 0;
13108 wxAuiTabContainer
*result
= 0 ;
13110 if (!SWIG_Python_UnpackTuple(args
,"new_AuiTabContainer",0,0,0)) SWIG_fail
;
13112 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13113 result
= (wxAuiTabContainer
*)new wxAuiTabContainer();
13114 wxPyEndAllowThreads(__tstate
);
13115 if (PyErr_Occurred()) SWIG_fail
;
13117 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabContainer
, SWIG_POINTER_NEW
| 0 );
13124 SWIGINTERN PyObject
*_wrap_delete_AuiTabContainer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13125 PyObject
*resultobj
= 0;
13126 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13129 PyObject
*swig_obj
[1] ;
13131 if (!args
) SWIG_fail
;
13132 swig_obj
[0] = args
;
13133 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, SWIG_POINTER_DISOWN
| 0 );
13134 if (!SWIG_IsOK(res1
)) {
13135 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabContainer" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13137 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13139 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13142 wxPyEndAllowThreads(__tstate
);
13143 if (PyErr_Occurred()) SWIG_fail
;
13145 resultobj
= SWIG_Py_Void();
13152 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13153 PyObject
*resultobj
= 0;
13154 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13155 wxAuiTabArt
*arg2
= (wxAuiTabArt
*) 0 ;
13160 PyObject
* obj0
= 0 ;
13161 PyObject
* obj1
= 0 ;
13162 char * kwnames
[] = {
13163 (char *) "self",(char *) "art", NULL
13166 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13167 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13168 if (!SWIG_IsOK(res1
)) {
13169 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13171 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13172 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13173 if (!SWIG_IsOK(res2
)) {
13174 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiTabArt *""'");
13176 arg2
= reinterpret_cast< wxAuiTabArt
* >(argp2
);
13178 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13179 (arg1
)->SetArtProvider(arg2
);
13180 wxPyEndAllowThreads(__tstate
);
13181 if (PyErr_Occurred()) SWIG_fail
;
13183 resultobj
= SWIG_Py_Void();
13190 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13191 PyObject
*resultobj
= 0;
13192 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13193 wxAuiTabArt
*result
= 0 ;
13196 PyObject
*swig_obj
[1] ;
13198 if (!args
) SWIG_fail
;
13199 swig_obj
[0] = args
;
13200 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13201 if (!SWIG_IsOK(res1
)) {
13202 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13204 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13206 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13207 result
= (wxAuiTabArt
*)(arg1
)->GetArtProvider();
13208 wxPyEndAllowThreads(__tstate
);
13209 if (PyErr_Occurred()) SWIG_fail
;
13211 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
13218 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13219 PyObject
*resultobj
= 0;
13220 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13226 PyObject
* obj0
= 0 ;
13227 PyObject
* obj1
= 0 ;
13228 char * kwnames
[] = {
13229 (char *) "self",(char *) "flags", NULL
13232 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13233 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13234 if (!SWIG_IsOK(res1
)) {
13235 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetFlags" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13237 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13238 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13239 if (!SWIG_IsOK(ecode2
)) {
13240 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetFlags" "', expected argument " "2"" of type '" "int""'");
13242 arg2
= static_cast< int >(val2
);
13244 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13245 (arg1
)->SetFlags(arg2
);
13246 wxPyEndAllowThreads(__tstate
);
13247 if (PyErr_Occurred()) SWIG_fail
;
13249 resultobj
= SWIG_Py_Void();
13256 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13257 PyObject
*resultobj
= 0;
13258 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13262 PyObject
*swig_obj
[1] ;
13264 if (!args
) SWIG_fail
;
13265 swig_obj
[0] = args
;
13266 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13267 if (!SWIG_IsOK(res1
)) {
13268 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetFlags" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13270 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13272 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13273 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetFlags();
13274 wxPyEndAllowThreads(__tstate
);
13275 if (PyErr_Occurred()) SWIG_fail
;
13277 resultobj
= SWIG_From_int(static_cast< int >(result
));
13284 SWIGINTERN PyObject
*_wrap_AuiTabContainer_AddPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13285 PyObject
*resultobj
= 0;
13286 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13287 wxWindow
*arg2
= (wxWindow
*) 0 ;
13288 wxAuiNotebookPage
*arg3
= 0 ;
13296 PyObject
* obj0
= 0 ;
13297 PyObject
* obj1
= 0 ;
13298 PyObject
* obj2
= 0 ;
13299 char * kwnames
[] = {
13300 (char *) "self",(char *) "page",(char *) "info", NULL
13303 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabContainer_AddPage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13304 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13305 if (!SWIG_IsOK(res1
)) {
13306 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13308 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13309 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13310 if (!SWIG_IsOK(res2
)) {
13311 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "2"" of type '" "wxWindow *""'");
13313 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13314 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0);
13315 if (!SWIG_IsOK(res3
)) {
13316 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
13319 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
13321 arg3
= reinterpret_cast< wxAuiNotebookPage
* >(argp3
);
13323 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13324 result
= (bool)(arg1
)->AddPage(arg2
,(wxAuiNotebookPage
const &)*arg3
);
13325 wxPyEndAllowThreads(__tstate
);
13326 if (PyErr_Occurred()) SWIG_fail
;
13329 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13337 SWIGINTERN PyObject
*_wrap_AuiTabContainer_InsertPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13338 PyObject
*resultobj
= 0;
13339 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13340 wxWindow
*arg2
= (wxWindow
*) 0 ;
13341 wxAuiNotebookPage
*arg3
= 0 ;
13352 PyObject
* obj0
= 0 ;
13353 PyObject
* obj1
= 0 ;
13354 PyObject
* obj2
= 0 ;
13355 PyObject
* obj3
= 0 ;
13356 char * kwnames
[] = {
13357 (char *) "self",(char *) "page",(char *) "info",(char *) "idx", NULL
13360 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13361 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13362 if (!SWIG_IsOK(res1
)) {
13363 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13365 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13366 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13367 if (!SWIG_IsOK(res2
)) {
13368 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "2"" of type '" "wxWindow *""'");
13370 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13371 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0);
13372 if (!SWIG_IsOK(res3
)) {
13373 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
13376 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_InsertPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
13378 arg3
= reinterpret_cast< wxAuiNotebookPage
* >(argp3
);
13379 ecode4
= SWIG_AsVal_size_t(obj3
, &val4
);
13380 if (!SWIG_IsOK(ecode4
)) {
13381 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "4"" of type '" "size_t""'");
13383 arg4
= static_cast< size_t >(val4
);
13385 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13386 result
= (bool)(arg1
)->InsertPage(arg2
,(wxAuiNotebookPage
const &)*arg3
,arg4
);
13387 wxPyEndAllowThreads(__tstate
);
13388 if (PyErr_Occurred()) SWIG_fail
;
13391 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13399 SWIGINTERN PyObject
*_wrap_AuiTabContainer_MovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13400 PyObject
*resultobj
= 0;
13401 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13402 wxWindow
*arg2
= (wxWindow
*) 0 ;
13411 PyObject
* obj0
= 0 ;
13412 PyObject
* obj1
= 0 ;
13413 PyObject
* obj2
= 0 ;
13414 char * kwnames
[] = {
13415 (char *) "self",(char *) "page",(char *) "new_idx", NULL
13418 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabContainer_MovePage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13419 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13420 if (!SWIG_IsOK(res1
)) {
13421 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13423 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13424 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13425 if (!SWIG_IsOK(res2
)) {
13426 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "2"" of type '" "wxWindow *""'");
13428 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13429 ecode3
= SWIG_AsVal_size_t(obj2
, &val3
);
13430 if (!SWIG_IsOK(ecode3
)) {
13431 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "3"" of type '" "size_t""'");
13433 arg3
= static_cast< size_t >(val3
);
13435 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13436 result
= (bool)(arg1
)->MovePage(arg2
,arg3
);
13437 wxPyEndAllowThreads(__tstate
);
13438 if (PyErr_Occurred()) SWIG_fail
;
13441 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13449 SWIGINTERN PyObject
*_wrap_AuiTabContainer_RemovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13450 PyObject
*resultobj
= 0;
13451 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13452 wxWindow
*arg2
= (wxWindow
*) 0 ;
13458 PyObject
* obj0
= 0 ;
13459 PyObject
* obj1
= 0 ;
13460 char * kwnames
[] = {
13461 (char *) "self",(char *) "page", NULL
13464 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_RemovePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13465 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13466 if (!SWIG_IsOK(res1
)) {
13467 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_RemovePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13469 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13470 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13471 if (!SWIG_IsOK(res2
)) {
13472 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_RemovePage" "', expected argument " "2"" of type '" "wxWindow *""'");
13474 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13476 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13477 result
= (bool)(arg1
)->RemovePage(arg2
);
13478 wxPyEndAllowThreads(__tstate
);
13479 if (PyErr_Occurred()) SWIG_fail
;
13482 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13490 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
13491 PyObject
*resultobj
= 0;
13492 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13493 wxWindow
*arg2
= (wxWindow
*) 0 ;
13500 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
13501 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13502 if (!SWIG_IsOK(res1
)) {
13503 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13505 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13506 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13507 if (!SWIG_IsOK(res2
)) {
13508 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "2"" of type '" "wxWindow *""'");
13510 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13512 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13513 result
= (bool)(arg1
)->SetActivePage(arg2
);
13514 wxPyEndAllowThreads(__tstate
);
13515 if (PyErr_Occurred()) SWIG_fail
;
13518 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13526 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
13527 PyObject
*resultobj
= 0;
13528 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13536 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
13537 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13538 if (!SWIG_IsOK(res1
)) {
13539 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13541 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13542 ecode2
= SWIG_AsVal_size_t(swig_obj
[1], &val2
);
13543 if (!SWIG_IsOK(ecode2
)) {
13544 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "2"" of type '" "size_t""'");
13546 arg2
= static_cast< size_t >(val2
);
13548 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13549 result
= (bool)(arg1
)->SetActivePage(arg2
);
13550 wxPyEndAllowThreads(__tstate
);
13551 if (PyErr_Occurred()) SWIG_fail
;
13554 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13562 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage(PyObject
*self
, PyObject
*args
) {
13566 if (!(argc
= SWIG_Python_UnpackTuple(args
,"AuiTabContainer_SetActivePage",0,2,argv
))) SWIG_fail
;
13572 int res
= SWIG_ConvertPtr(argv
[1], &vptr
, SWIGTYPE_p_wxWindow
, 0);
13573 _v
= SWIG_CheckState(res
);
13575 if (!_v
) goto check_1
;
13576 return _wrap_AuiTabContainer_SetActivePage__SWIG_0(self
, argc
, argv
);
13581 return _wrap_AuiTabContainer_SetActivePage__SWIG_1(self
, argc
, argv
);
13585 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'AuiTabContainer_SetActivePage'");
13590 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetNoneActive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13591 PyObject
*resultobj
= 0;
13592 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13595 PyObject
*swig_obj
[1] ;
13597 if (!args
) SWIG_fail
;
13598 swig_obj
[0] = args
;
13599 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13600 if (!SWIG_IsOK(res1
)) {
13601 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetNoneActive" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13603 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13605 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13606 (arg1
)->SetNoneActive();
13607 wxPyEndAllowThreads(__tstate
);
13608 if (PyErr_Occurred()) SWIG_fail
;
13610 resultobj
= SWIG_Py_Void();
13617 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetActivePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13618 PyObject
*resultobj
= 0;
13619 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13623 PyObject
*swig_obj
[1] ;
13625 if (!args
) SWIG_fail
;
13626 swig_obj
[0] = args
;
13627 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13628 if (!SWIG_IsOK(res1
)) {
13629 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13631 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13633 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13634 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetActivePage();
13635 wxPyEndAllowThreads(__tstate
);
13636 if (PyErr_Occurred()) SWIG_fail
;
13638 resultobj
= SWIG_From_int(static_cast< int >(result
));
13645 SWIGINTERN PyObject
*_wrap_AuiTabContainer_TabHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13646 PyObject
*resultobj
= 0;
13647 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13650 wxWindow
**arg4
= (wxWindow
**) 0 ;
13660 PyObject
* obj0
= 0 ;
13661 PyObject
* obj1
= 0 ;
13662 PyObject
* obj2
= 0 ;
13663 PyObject
* obj3
= 0 ;
13664 char * kwnames
[] = {
13665 (char *) "self",(char *) "x",(char *) "y",(char *) "hit", NULL
13668 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_TabHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13669 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13670 if (!SWIG_IsOK(res1
)) {
13671 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13673 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13674 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13675 if (!SWIG_IsOK(ecode2
)) {
13676 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "2"" of type '" "int""'");
13678 arg2
= static_cast< int >(val2
);
13679 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13680 if (!SWIG_IsOK(ecode3
)) {
13681 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "3"" of type '" "int""'");
13683 arg3
= static_cast< int >(val3
);
13684 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_p_wxWindow
, 0 | 0 );
13685 if (!SWIG_IsOK(res4
)) {
13686 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "4"" of type '" "wxWindow **""'");
13688 arg4
= reinterpret_cast< wxWindow
** >(argp4
);
13690 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13691 result
= (bool)((wxAuiTabContainer
const *)arg1
)->TabHitTest(arg2
,arg3
,arg4
);
13692 wxPyEndAllowThreads(__tstate
);
13693 if (PyErr_Occurred()) SWIG_fail
;
13696 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13704 SWIGINTERN PyObject
*_wrap_AuiTabContainer_ButtonHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13705 PyObject
*resultobj
= 0;
13706 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13709 wxAuiTabContainerButton
**arg4
= (wxAuiTabContainerButton
**) 0 ;
13719 PyObject
* obj0
= 0 ;
13720 PyObject
* obj1
= 0 ;
13721 PyObject
* obj2
= 0 ;
13722 PyObject
* obj3
= 0 ;
13723 char * kwnames
[] = {
13724 (char *) "self",(char *) "x",(char *) "y",(char *) "hit", NULL
13727 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_ButtonHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13728 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13729 if (!SWIG_IsOK(res1
)) {
13730 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13732 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13733 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13734 if (!SWIG_IsOK(ecode2
)) {
13735 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "2"" of type '" "int""'");
13737 arg2
= static_cast< int >(val2
);
13738 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13739 if (!SWIG_IsOK(ecode3
)) {
13740 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "3"" of type '" "int""'");
13742 arg3
= static_cast< int >(val3
);
13743 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_p_wxAuiTabContainerButton
, 0 | 0 );
13744 if (!SWIG_IsOK(res4
)) {
13745 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "4"" of type '" "wxAuiTabContainerButton **""'");
13747 arg4
= reinterpret_cast< wxAuiTabContainerButton
** >(argp4
);
13749 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13750 result
= (bool)((wxAuiTabContainer
const *)arg1
)->ButtonHitTest(arg2
,arg3
,arg4
);
13751 wxPyEndAllowThreads(__tstate
);
13752 if (PyErr_Occurred()) SWIG_fail
;
13755 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13763 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetWindowFromIdx(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13764 PyObject
*resultobj
= 0;
13765 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13767 wxWindow
*result
= 0 ;
13772 PyObject
* obj0
= 0 ;
13773 PyObject
* obj1
= 0 ;
13774 char * kwnames
[] = {
13775 (char *) "self",(char *) "idx", NULL
13778 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetWindowFromIdx",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13779 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13780 if (!SWIG_IsOK(res1
)) {
13781 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetWindowFromIdx" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13783 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13784 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13785 if (!SWIG_IsOK(ecode2
)) {
13786 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_GetWindowFromIdx" "', expected argument " "2"" of type '" "size_t""'");
13788 arg2
= static_cast< size_t >(val2
);
13790 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13791 result
= (wxWindow
*)((wxAuiTabContainer
const *)arg1
)->GetWindowFromIdx(arg2
);
13792 wxPyEndAllowThreads(__tstate
);
13793 if (PyErr_Occurred()) SWIG_fail
;
13796 resultobj
= wxPyMake_wxObject(result
, 0);
13804 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetIdxFromWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13805 PyObject
*resultobj
= 0;
13806 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13807 wxWindow
*arg2
= (wxWindow
*) 0 ;
13813 PyObject
* obj0
= 0 ;
13814 PyObject
* obj1
= 0 ;
13815 char * kwnames
[] = {
13816 (char *) "self",(char *) "page", NULL
13819 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetIdxFromWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13820 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13821 if (!SWIG_IsOK(res1
)) {
13822 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetIdxFromWindow" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13824 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13825 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13826 if (!SWIG_IsOK(res2
)) {
13827 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_GetIdxFromWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
13829 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13831 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13832 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetIdxFromWindow(arg2
);
13833 wxPyEndAllowThreads(__tstate
);
13834 if (PyErr_Occurred()) SWIG_fail
;
13836 resultobj
= SWIG_From_int(static_cast< int >(result
));
13843 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPageCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13844 PyObject
*resultobj
= 0;
13845 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13849 PyObject
*swig_obj
[1] ;
13851 if (!args
) SWIG_fail
;
13852 swig_obj
[0] = args
;
13853 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13854 if (!SWIG_IsOK(res1
)) {
13855 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPageCount" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13857 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13859 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13860 result
= (size_t)((wxAuiTabContainer
const *)arg1
)->GetPageCount();
13861 wxPyEndAllowThreads(__tstate
);
13862 if (PyErr_Occurred()) SWIG_fail
;
13864 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
13871 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13872 PyObject
*resultobj
= 0;
13873 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13875 wxAuiNotebookPage
*result
= 0 ;
13880 PyObject
* obj0
= 0 ;
13881 PyObject
* obj1
= 0 ;
13882 char * kwnames
[] = {
13883 (char *) "self",(char *) "idx", NULL
13886 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13887 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13888 if (!SWIG_IsOK(res1
)) {
13889 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13891 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13892 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13893 if (!SWIG_IsOK(ecode2
)) {
13894 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_GetPage" "', expected argument " "2"" of type '" "size_t""'");
13896 arg2
= static_cast< size_t >(val2
);
13898 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13900 wxAuiNotebookPage
&_result_ref
= (arg1
)->GetPage(arg2
);
13901 result
= (wxAuiNotebookPage
*) &_result_ref
;
13903 wxPyEndAllowThreads(__tstate
);
13904 if (PyErr_Occurred()) SWIG_fail
;
13906 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
13913 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13914 PyObject
*resultobj
= 0;
13915 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13916 wxAuiNotebookPageArray
*result
= 0 ;
13919 PyObject
*swig_obj
[1] ;
13921 if (!args
) SWIG_fail
;
13922 swig_obj
[0] = args
;
13923 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13924 if (!SWIG_IsOK(res1
)) {
13925 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPages" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13927 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13929 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13931 wxAuiNotebookPageArray
&_result_ref
= (arg1
)->GetPages();
13932 result
= (wxAuiNotebookPageArray
*) &_result_ref
;
13934 wxPyEndAllowThreads(__tstate
);
13935 if (PyErr_Occurred()) SWIG_fail
;
13937 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookPageArray
, 0 | 0 );
13944 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetNormalFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13945 PyObject
*resultobj
= 0;
13946 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13952 PyObject
* obj0
= 0 ;
13953 PyObject
* obj1
= 0 ;
13954 char * kwnames
[] = {
13955 (char *) "self",(char *) "normal_font", NULL
13958 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetNormalFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13959 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13960 if (!SWIG_IsOK(res1
)) {
13961 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13963 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13964 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
13965 if (!SWIG_IsOK(res2
)) {
13966 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
13969 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
13971 arg2
= reinterpret_cast< wxFont
* >(argp2
);
13973 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13974 (arg1
)->SetNormalFont((wxFont
const &)*arg2
);
13975 wxPyEndAllowThreads(__tstate
);
13976 if (PyErr_Occurred()) SWIG_fail
;
13978 resultobj
= SWIG_Py_Void();
13985 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetSelectedFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13986 PyObject
*resultobj
= 0;
13987 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13993 PyObject
* obj0
= 0 ;
13994 PyObject
* obj1
= 0 ;
13995 char * kwnames
[] = {
13996 (char *) "self",(char *) "selected_font", NULL
13999 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetSelectedFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14000 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14001 if (!SWIG_IsOK(res1
)) {
14002 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14004 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14005 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
14006 if (!SWIG_IsOK(res2
)) {
14007 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14010 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14012 arg2
= reinterpret_cast< wxFont
* >(argp2
);
14014 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14015 (arg1
)->SetSelectedFont((wxFont
const &)*arg2
);
14016 wxPyEndAllowThreads(__tstate
);
14017 if (PyErr_Occurred()) SWIG_fail
;
14019 resultobj
= SWIG_Py_Void();
14026 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetMeasuringFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14027 PyObject
*resultobj
= 0;
14028 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14034 PyObject
* obj0
= 0 ;
14035 PyObject
* obj1
= 0 ;
14036 char * kwnames
[] = {
14037 (char *) "self",(char *) "measuring_font", NULL
14040 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetMeasuringFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14041 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14042 if (!SWIG_IsOK(res1
)) {
14043 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14045 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14046 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
14047 if (!SWIG_IsOK(res2
)) {
14048 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14051 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
14053 arg2
= reinterpret_cast< wxFont
* >(argp2
);
14055 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14056 (arg1
)->SetMeasuringFont((wxFont
const &)*arg2
);
14057 wxPyEndAllowThreads(__tstate
);
14058 if (PyErr_Occurred()) SWIG_fail
;
14060 resultobj
= SWIG_Py_Void();
14067 SWIGINTERN PyObject
*_wrap_AuiTabContainer_DoShowHide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14068 PyObject
*resultobj
= 0;
14069 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14072 PyObject
*swig_obj
[1] ;
14074 if (!args
) SWIG_fail
;
14075 swig_obj
[0] = args
;
14076 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14077 if (!SWIG_IsOK(res1
)) {
14078 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_DoShowHide" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14080 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14082 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14083 (arg1
)->DoShowHide();
14084 wxPyEndAllowThreads(__tstate
);
14085 if (PyErr_Occurred()) SWIG_fail
;
14087 resultobj
= SWIG_Py_Void();
14094 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14095 PyObject
*resultobj
= 0;
14096 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14101 PyObject
* obj0
= 0 ;
14102 PyObject
* obj1
= 0 ;
14103 char * kwnames
[] = {
14104 (char *) "self",(char *) "rect", NULL
14107 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14108 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14109 if (!SWIG_IsOK(res1
)) {
14110 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetRect" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14112 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14115 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
14118 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14119 (arg1
)->SetRect((wxRect
const &)*arg2
);
14120 wxPyEndAllowThreads(__tstate
);
14121 if (PyErr_Occurred()) SWIG_fail
;
14123 resultobj
= SWIG_Py_Void();
14130 SWIGINTERN PyObject
*_wrap_AuiTabContainer_RemoveButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14131 PyObject
*resultobj
= 0;
14132 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14138 PyObject
* obj0
= 0 ;
14139 PyObject
* obj1
= 0 ;
14140 char * kwnames
[] = {
14141 (char *) "self",(char *) "id", NULL
14144 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_RemoveButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14145 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14146 if (!SWIG_IsOK(res1
)) {
14147 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_RemoveButton" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14149 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14150 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14151 if (!SWIG_IsOK(ecode2
)) {
14152 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_RemoveButton" "', expected argument " "2"" of type '" "int""'");
14154 arg2
= static_cast< int >(val2
);
14156 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14157 (arg1
)->RemoveButton(arg2
);
14158 wxPyEndAllowThreads(__tstate
);
14159 if (PyErr_Occurred()) SWIG_fail
;
14161 resultobj
= SWIG_Py_Void();
14168 SWIGINTERN PyObject
*_wrap_AuiTabContainer_AddButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14169 PyObject
*resultobj
= 0;
14170 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14173 wxBitmap
const &arg4_defvalue
= wxNullBitmap
;
14174 wxBitmap
*arg4
= (wxBitmap
*) &arg4_defvalue
;
14175 wxBitmap
const &arg5_defvalue
= wxNullBitmap
;
14176 wxBitmap
*arg5
= (wxBitmap
*) &arg5_defvalue
;
14187 PyObject
* obj0
= 0 ;
14188 PyObject
* obj1
= 0 ;
14189 PyObject
* obj2
= 0 ;
14190 PyObject
* obj3
= 0 ;
14191 PyObject
* obj4
= 0 ;
14192 char * kwnames
[] = {
14193 (char *) "self",(char *) "id",(char *) "location",(char *) "normal_bitmap",(char *) "disabled_bitmap", NULL
14196 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:AuiTabContainer_AddButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
14197 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14198 if (!SWIG_IsOK(res1
)) {
14199 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14201 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14202 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14203 if (!SWIG_IsOK(ecode2
)) {
14204 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "2"" of type '" "int""'");
14206 arg2
= static_cast< int >(val2
);
14207 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14208 if (!SWIG_IsOK(ecode3
)) {
14209 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "3"" of type '" "int""'");
14211 arg3
= static_cast< int >(val3
);
14213 res4
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxBitmap
, 0 | 0);
14214 if (!SWIG_IsOK(res4
)) {
14215 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "4"" of type '" "wxBitmap const &""'");
14218 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddButton" "', expected argument " "4"" of type '" "wxBitmap const &""'");
14220 arg4
= reinterpret_cast< wxBitmap
* >(argp4
);
14223 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
, 0 | 0);
14224 if (!SWIG_IsOK(res5
)) {
14225 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "5"" of type '" "wxBitmap const &""'");
14228 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddButton" "', expected argument " "5"" of type '" "wxBitmap const &""'");
14230 arg5
= reinterpret_cast< wxBitmap
* >(argp5
);
14233 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14234 (arg1
)->AddButton(arg2
,arg3
,(wxBitmap
const &)*arg4
,(wxBitmap
const &)*arg5
);
14235 wxPyEndAllowThreads(__tstate
);
14236 if (PyErr_Occurred()) SWIG_fail
;
14238 resultobj
= SWIG_Py_Void();
14245 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetTabOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14246 PyObject
*resultobj
= 0;
14247 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14251 PyObject
*swig_obj
[1] ;
14253 if (!args
) SWIG_fail
;
14254 swig_obj
[0] = args
;
14255 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14256 if (!SWIG_IsOK(res1
)) {
14257 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetTabOffset" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
14259 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14261 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14262 result
= (size_t)((wxAuiTabContainer
const *)arg1
)->GetTabOffset();
14263 wxPyEndAllowThreads(__tstate
);
14264 if (PyErr_Occurred()) SWIG_fail
;
14266 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14273 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetTabOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14274 PyObject
*resultobj
= 0;
14275 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
14281 PyObject
* obj0
= 0 ;
14282 PyObject
* obj1
= 0 ;
14283 char * kwnames
[] = {
14284 (char *) "self",(char *) "offset", NULL
14287 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetTabOffset",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14288 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
14289 if (!SWIG_IsOK(res1
)) {
14290 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetTabOffset" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
14292 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
14293 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14294 if (!SWIG_IsOK(ecode2
)) {
14295 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetTabOffset" "', expected argument " "2"" of type '" "size_t""'");
14297 arg2
= static_cast< size_t >(val2
);
14299 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14300 (arg1
)->SetTabOffset(arg2
);
14301 wxPyEndAllowThreads(__tstate
);
14302 if (PyErr_Occurred()) SWIG_fail
;
14304 resultobj
= SWIG_Py_Void();
14311 SWIGINTERN PyObject
*AuiTabContainer_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14313 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
14314 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabContainer
, SWIG_NewClientData(obj
));
14315 return SWIG_Py_Void();
14318 SWIGINTERN PyObject
*AuiTabContainer_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14319 return SWIG_Python_InitShadowInstance(args
);
14322 SWIGINTERN PyObject
*_wrap_new_AuiTabCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14323 PyObject
*resultobj
= 0;
14324 wxWindow
*arg1
= (wxWindow
*) 0 ;
14325 int arg2
= (int) wxID_ANY
;
14326 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
14327 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
14328 wxSize
const &arg4_defvalue
= wxDefaultSize
;
14329 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
14330 long arg5
= (long) 0 ;
14331 wxAuiTabCtrl
*result
= 0 ;
14340 PyObject
* obj0
= 0 ;
14341 PyObject
* obj1
= 0 ;
14342 PyObject
* obj2
= 0 ;
14343 PyObject
* obj3
= 0 ;
14344 PyObject
* obj4
= 0 ;
14345 char * kwnames
[] = {
14346 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
14349 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_AuiTabCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
14350 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14351 if (!SWIG_IsOK(res1
)) {
14352 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiTabCtrl" "', expected argument " "1"" of type '" "wxWindow *""'");
14354 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
14356 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14357 if (!SWIG_IsOK(ecode2
)) {
14358 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiTabCtrl" "', expected argument " "2"" of type '" "int""'");
14360 arg2
= static_cast< int >(val2
);
14365 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
14371 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
14375 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
14376 if (!SWIG_IsOK(ecode5
)) {
14377 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiTabCtrl" "', expected argument " "5"" of type '" "long""'");
14379 arg5
= static_cast< long >(val5
);
14382 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14383 result
= (wxAuiTabCtrl
*)new wxAuiTabCtrl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
14384 wxPyEndAllowThreads(__tstate
);
14385 if (PyErr_Occurred()) SWIG_fail
;
14387 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabCtrl
, SWIG_POINTER_NEW
| 0 );
14394 SWIGINTERN PyObject
*_wrap_delete_AuiTabCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14395 PyObject
*resultobj
= 0;
14396 wxAuiTabCtrl
*arg1
= (wxAuiTabCtrl
*) 0 ;
14399 PyObject
*swig_obj
[1] ;
14401 if (!args
) SWIG_fail
;
14402 swig_obj
[0] = args
;
14403 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabCtrl
, SWIG_POINTER_DISOWN
| 0 );
14404 if (!SWIG_IsOK(res1
)) {
14405 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabCtrl" "', expected argument " "1"" of type '" "wxAuiTabCtrl *""'");
14407 arg1
= reinterpret_cast< wxAuiTabCtrl
* >(argp1
);
14409 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14412 wxPyEndAllowThreads(__tstate
);
14413 if (PyErr_Occurred()) SWIG_fail
;
14415 resultobj
= SWIG_Py_Void();
14422 SWIGINTERN PyObject
*AuiTabCtrl_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14424 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
14425 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabCtrl
, SWIG_NewClientData(obj
));
14426 return SWIG_Py_Void();
14429 SWIGINTERN PyObject
*AuiTabCtrl_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14430 return SWIG_Python_InitShadowInstance(args
);
14433 SWIGINTERN PyObject
*_wrap_new_PreAuiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14434 PyObject
*resultobj
= 0;
14435 wxAuiNotebook
*result
= 0 ;
14437 if (!SWIG_Python_UnpackTuple(args
,"new_PreAuiNotebook",0,0,0)) SWIG_fail
;
14439 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14440 result
= (wxAuiNotebook
*)new wxAuiNotebook();
14441 wxPyEndAllowThreads(__tstate
);
14442 if (PyErr_Occurred()) SWIG_fail
;
14444 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_OWN
| 0 );
14451 SWIGINTERN PyObject
*_wrap_new_AuiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14452 PyObject
*resultobj
= 0;
14453 wxWindow
*arg1
= (wxWindow
*) 0 ;
14454 int arg2
= (int) wxID_ANY
;
14455 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
14456 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
14457 wxSize
const &arg4_defvalue
= wxDefaultSize
;
14458 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
14459 long arg5
= (long) wxAUI_NB_DEFAULT_STYLE
;
14460 wxAuiNotebook
*result
= 0 ;
14469 PyObject
* obj0
= 0 ;
14470 PyObject
* obj1
= 0 ;
14471 PyObject
* obj2
= 0 ;
14472 PyObject
* obj3
= 0 ;
14473 PyObject
* obj4
= 0 ;
14474 char * kwnames
[] = {
14475 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
14478 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_AuiNotebook",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
14479 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14480 if (!SWIG_IsOK(res1
)) {
14481 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiNotebook" "', expected argument " "1"" of type '" "wxWindow *""'");
14483 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
14485 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14486 if (!SWIG_IsOK(ecode2
)) {
14487 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiNotebook" "', expected argument " "2"" of type '" "int""'");
14489 arg2
= static_cast< int >(val2
);
14494 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
14500 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
14504 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
14505 if (!SWIG_IsOK(ecode5
)) {
14506 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiNotebook" "', expected argument " "5"" of type '" "long""'");
14508 arg5
= static_cast< long >(val5
);
14511 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14512 result
= (wxAuiNotebook
*)new wxAuiNotebook(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
14513 wxPyEndAllowThreads(__tstate
);
14514 if (PyErr_Occurred()) SWIG_fail
;
14516 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_NEW
| 0 );
14523 SWIGINTERN PyObject
*_wrap_delete_AuiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14524 PyObject
*resultobj
= 0;
14525 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
14528 PyObject
*swig_obj
[1] ;
14530 if (!args
) SWIG_fail
;
14531 swig_obj
[0] = args
;
14532 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, SWIG_POINTER_DISOWN
| 0 );
14533 if (!SWIG_IsOK(res1
)) {
14534 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiNotebook" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
14536 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
14538 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14541 wxPyEndAllowThreads(__tstate
);
14542 if (PyErr_Occurred()) SWIG_fail
;
14544 resultobj
= SWIG_Py_Void();
14551 SWIGINTERN PyObject
*_wrap_AuiNotebook_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14552 PyObject
*resultobj
= 0;
14553 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
14554 wxWindow
*arg2
= (wxWindow
*) 0 ;
14555 int arg3
= (int) wxID_ANY
;
14556 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
14557 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
14558 wxSize
const &arg5_defvalue
= wxDefaultSize
;
14559 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
14560 long arg6
= (long) 0 ;
14572 PyObject
* obj0
= 0 ;
14573 PyObject
* obj1
= 0 ;
14574 PyObject
* obj2
= 0 ;
14575 PyObject
* obj3
= 0 ;
14576 PyObject
* obj4
= 0 ;
14577 PyObject
* obj5
= 0 ;
14578 char * kwnames
[] = {
14579 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
14582 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:AuiNotebook_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
14583 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
14584 if (!SWIG_IsOK(res1
)) {
14585 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_Create" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
14587 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
14588 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14589 if (!SWIG_IsOK(res2
)) {
14590 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
14592 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
14594 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14595 if (!SWIG_IsOK(ecode3
)) {
14596 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiNotebook_Create" "', expected argument " "3"" of type '" "int""'");
14598 arg3
= static_cast< int >(val3
);
14603 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
14609 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
14613 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
14614 if (!SWIG_IsOK(ecode6
)) {
14615 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiNotebook_Create" "', expected argument " "6"" of type '" "long""'");
14617 arg6
= static_cast< long >(val6
);
14620 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14621 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
);
14622 wxPyEndAllowThreads(__tstate
);
14623 if (PyErr_Occurred()) SWIG_fail
;
14626 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14634 SWIGINTERN PyObject
*_wrap_AuiNotebook_AddPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14635 PyObject
*resultobj
= 0;
14636 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
14637 wxWindow
*arg2
= (wxWindow
*) 0 ;
14638 wxString
*arg3
= 0 ;
14639 bool arg4
= (bool) false ;
14640 wxBitmap
const &arg5_defvalue
= wxNullBitmap
;
14641 wxBitmap
*arg5
= (wxBitmap
*) &arg5_defvalue
;
14647 bool temp3
= false ;
14652 PyObject
* obj0
= 0 ;
14653 PyObject
* obj1
= 0 ;
14654 PyObject
* obj2
= 0 ;
14655 PyObject
* obj3
= 0 ;
14656 PyObject
* obj4
= 0 ;
14657 char * kwnames
[] = {
14658 (char *) "self",(char *) "page",(char *) "caption",(char *) "select",(char *) "bitmap", NULL
14661 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:AuiNotebook_AddPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
14662 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
14663 if (!SWIG_IsOK(res1
)) {
14664 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_AddPage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
14666 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
14667 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14668 if (!SWIG_IsOK(res2
)) {
14669 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_AddPage" "', expected argument " "2"" of type '" "wxWindow *""'");
14671 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
14673 arg3
= wxString_in_helper(obj2
);
14674 if (arg3
== NULL
) SWIG_fail
;
14678 ecode4
= SWIG_AsVal_bool(obj3
, &val4
);
14679 if (!SWIG_IsOK(ecode4
)) {
14680 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiNotebook_AddPage" "', expected argument " "4"" of type '" "bool""'");
14682 arg4
= static_cast< bool >(val4
);
14685 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
, 0 | 0);
14686 if (!SWIG_IsOK(res5
)) {
14687 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiNotebook_AddPage" "', expected argument " "5"" of type '" "wxBitmap const &""'");
14690 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiNotebook_AddPage" "', expected argument " "5"" of type '" "wxBitmap const &""'");
14692 arg5
= reinterpret_cast< wxBitmap
* >(argp5
);
14695 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14696 result
= (bool)(arg1
)->AddPage(arg2
,(wxString
const &)*arg3
,arg4
,(wxBitmap
const &)*arg5
);
14697 wxPyEndAllowThreads(__tstate
);
14698 if (PyErr_Occurred()) SWIG_fail
;
14701 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14717 SWIGINTERN PyObject
*_wrap_AuiNotebook_InsertPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14718 PyObject
*resultobj
= 0;
14719 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
14721 wxWindow
*arg3
= (wxWindow
*) 0 ;
14722 wxString
*arg4
= 0 ;
14723 bool arg5
= (bool) false ;
14724 wxBitmap
const &arg6_defvalue
= wxNullBitmap
;
14725 wxBitmap
*arg6
= (wxBitmap
*) &arg6_defvalue
;
14733 bool temp4
= false ;
14738 PyObject
* obj0
= 0 ;
14739 PyObject
* obj1
= 0 ;
14740 PyObject
* obj2
= 0 ;
14741 PyObject
* obj3
= 0 ;
14742 PyObject
* obj4
= 0 ;
14743 PyObject
* obj5
= 0 ;
14744 char * kwnames
[] = {
14745 (char *) "self",(char *) "page_idx",(char *) "page",(char *) "caption",(char *) "select",(char *) "bitmap", NULL
14748 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:AuiNotebook_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
14749 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
14750 if (!SWIG_IsOK(res1
)) {
14751 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
14753 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
14754 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14755 if (!SWIG_IsOK(ecode2
)) {
14756 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "2"" of type '" "size_t""'");
14758 arg2
= static_cast< size_t >(val2
);
14759 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14760 if (!SWIG_IsOK(res3
)) {
14761 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "3"" of type '" "wxWindow *""'");
14763 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
14765 arg4
= wxString_in_helper(obj3
);
14766 if (arg4
== NULL
) SWIG_fail
;
14770 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
14771 if (!SWIG_IsOK(ecode5
)) {
14772 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "5"" of type '" "bool""'");
14774 arg5
= static_cast< bool >(val5
);
14777 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxBitmap
, 0 | 0);
14778 if (!SWIG_IsOK(res6
)) {
14779 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "AuiNotebook_InsertPage" "', expected argument " "6"" of type '" "wxBitmap const &""'");
14782 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiNotebook_InsertPage" "', expected argument " "6"" of type '" "wxBitmap const &""'");
14784 arg6
= reinterpret_cast< wxBitmap
* >(argp6
);
14787 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14788 result
= (bool)(arg1
)->InsertPage(arg2
,arg3
,(wxString
const &)*arg4
,arg5
,(wxBitmap
const &)*arg6
);
14789 wxPyEndAllowThreads(__tstate
);
14790 if (PyErr_Occurred()) SWIG_fail
;
14793 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14809 SWIGINTERN PyObject
*_wrap_AuiNotebook_DeletePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14810 PyObject
*resultobj
= 0;
14811 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
14818 PyObject
* obj0
= 0 ;
14819 PyObject
* obj1
= 0 ;
14820 char * kwnames
[] = {
14821 (char *) "self",(char *) "page", NULL
14824 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_DeletePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14825 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
14826 if (!SWIG_IsOK(res1
)) {
14827 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_DeletePage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
14829 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
14830 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14831 if (!SWIG_IsOK(ecode2
)) {
14832 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_DeletePage" "', expected argument " "2"" of type '" "size_t""'");
14834 arg2
= static_cast< size_t >(val2
);
14836 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14837 result
= (bool)(arg1
)->DeletePage(arg2
);
14838 wxPyEndAllowThreads(__tstate
);
14839 if (PyErr_Occurred()) SWIG_fail
;
14842 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14850 SWIGINTERN PyObject
*_wrap_AuiNotebook_RemovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14851 PyObject
*resultobj
= 0;
14852 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
14859 PyObject
* obj0
= 0 ;
14860 PyObject
* obj1
= 0 ;
14861 char * kwnames
[] = {
14862 (char *) "self",(char *) "page", NULL
14865 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_RemovePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14866 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
14867 if (!SWIG_IsOK(res1
)) {
14868 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_RemovePage" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
14870 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
14871 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14872 if (!SWIG_IsOK(ecode2
)) {
14873 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_RemovePage" "', expected argument " "2"" of type '" "size_t""'");
14875 arg2
= static_cast< size_t >(val2
);
14877 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14878 result
= (bool)(arg1
)->RemovePage(arg2
);
14879 wxPyEndAllowThreads(__tstate
);
14880 if (PyErr_Occurred()) SWIG_fail
;
14883 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14891 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetPageText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14892 PyObject
*resultobj
= 0;
14893 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
14895 wxString
*arg3
= 0 ;
14901 bool temp3
= false ;
14902 PyObject
* obj0
= 0 ;
14903 PyObject
* obj1
= 0 ;
14904 PyObject
* obj2
= 0 ;
14905 char * kwnames
[] = {
14906 (char *) "self",(char *) "page",(char *) "text", NULL
14909 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiNotebook_SetPageText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14910 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
14911 if (!SWIG_IsOK(res1
)) {
14912 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetPageText" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
14914 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
14915 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14916 if (!SWIG_IsOK(ecode2
)) {
14917 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetPageText" "', expected argument " "2"" of type '" "size_t""'");
14919 arg2
= static_cast< size_t >(val2
);
14921 arg3
= wxString_in_helper(obj2
);
14922 if (arg3
== NULL
) SWIG_fail
;
14926 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14927 result
= (bool)(arg1
)->SetPageText(arg2
,(wxString
const &)*arg3
);
14928 wxPyEndAllowThreads(__tstate
);
14929 if (PyErr_Occurred()) SWIG_fail
;
14932 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14948 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14949 PyObject
*resultobj
= 0;
14950 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
14957 PyObject
* obj0
= 0 ;
14958 PyObject
* obj1
= 0 ;
14959 char * kwnames
[] = {
14960 (char *) "self",(char *) "new_page", NULL
14963 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14964 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
14965 if (!SWIG_IsOK(res1
)) {
14966 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetSelection" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
14968 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
14969 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14970 if (!SWIG_IsOK(ecode2
)) {
14971 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_SetSelection" "', expected argument " "2"" of type '" "size_t""'");
14973 arg2
= static_cast< size_t >(val2
);
14975 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14976 result
= (size_t)(arg1
)->SetSelection(arg2
);
14977 wxPyEndAllowThreads(__tstate
);
14978 if (PyErr_Occurred()) SWIG_fail
;
14980 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14987 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14988 PyObject
*resultobj
= 0;
14989 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
14993 PyObject
*swig_obj
[1] ;
14995 if (!args
) SWIG_fail
;
14996 swig_obj
[0] = args
;
14997 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
14998 if (!SWIG_IsOK(res1
)) {
14999 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetSelection" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15001 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15003 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15004 result
= (int)((wxAuiNotebook
const *)arg1
)->GetSelection();
15005 wxPyEndAllowThreads(__tstate
);
15006 if (PyErr_Occurred()) SWIG_fail
;
15008 resultobj
= SWIG_From_int(static_cast< int >(result
));
15015 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetPageCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15016 PyObject
*resultobj
= 0;
15017 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15021 PyObject
*swig_obj
[1] ;
15023 if (!args
) SWIG_fail
;
15024 swig_obj
[0] = args
;
15025 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15026 if (!SWIG_IsOK(res1
)) {
15027 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPageCount" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15029 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15031 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15032 result
= (size_t)((wxAuiNotebook
const *)arg1
)->GetPageCount();
15033 wxPyEndAllowThreads(__tstate
);
15034 if (PyErr_Occurred()) SWIG_fail
;
15036 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
15043 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15044 PyObject
*resultobj
= 0;
15045 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15047 wxWindow
*result
= 0 ;
15052 PyObject
* obj0
= 0 ;
15053 PyObject
* obj1
= 0 ;
15054 char * kwnames
[] = {
15055 (char *) "self",(char *) "page_idx", NULL
15058 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_GetPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15059 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15060 if (!SWIG_IsOK(res1
)) {
15061 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetPage" "', expected argument " "1"" of type '" "wxAuiNotebook const *""'");
15063 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15064 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15065 if (!SWIG_IsOK(ecode2
)) {
15066 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebook_GetPage" "', expected argument " "2"" of type '" "size_t""'");
15068 arg2
= static_cast< size_t >(val2
);
15070 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15071 result
= (wxWindow
*)((wxAuiNotebook
const *)arg1
)->GetPage(arg2
);
15072 wxPyEndAllowThreads(__tstate
);
15073 if (PyErr_Occurred()) SWIG_fail
;
15076 resultobj
= wxPyMake_wxObject(result
, 0);
15084 SWIGINTERN PyObject
*_wrap_AuiNotebook_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15085 PyObject
*resultobj
= 0;
15086 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15087 wxAuiTabArt
*arg2
= (wxAuiTabArt
*) 0 ;
15092 PyObject
* obj0
= 0 ;
15093 PyObject
* obj1
= 0 ;
15094 char * kwnames
[] = {
15095 (char *) "self",(char *) "art", NULL
15098 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebook_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15099 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15100 if (!SWIG_IsOK(res1
)) {
15101 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15103 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15104 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
15105 if (!SWIG_IsOK(res2
)) {
15106 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebook_SetArtProvider" "', expected argument " "2"" of type '" "wxAuiTabArt *""'");
15108 arg2
= reinterpret_cast< wxAuiTabArt
* >(argp2
);
15110 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15111 (arg1
)->SetArtProvider(arg2
);
15112 wxPyEndAllowThreads(__tstate
);
15113 if (PyErr_Occurred()) SWIG_fail
;
15115 resultobj
= SWIG_Py_Void();
15122 SWIGINTERN PyObject
*_wrap_AuiNotebook_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15123 PyObject
*resultobj
= 0;
15124 wxAuiNotebook
*arg1
= (wxAuiNotebook
*) 0 ;
15125 wxAuiTabArt
*result
= 0 ;
15128 PyObject
*swig_obj
[1] ;
15130 if (!args
) SWIG_fail
;
15131 swig_obj
[0] = args
;
15132 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebook
, 0 | 0 );
15133 if (!SWIG_IsOK(res1
)) {
15134 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebook_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiNotebook *""'");
15136 arg1
= reinterpret_cast< wxAuiNotebook
* >(argp1
);
15138 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15139 result
= (wxAuiTabArt
*)(arg1
)->GetArtProvider();
15140 wxPyEndAllowThreads(__tstate
);
15141 if (PyErr_Occurred()) SWIG_fail
;
15143 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabArt
, 0 | 0 );
15150 SWIGINTERN PyObject
*AuiNotebook_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15152 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15153 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebook
, SWIG_NewClientData(obj
));
15154 return SWIG_Py_Void();
15157 SWIGINTERN PyObject
*AuiNotebook_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15158 return SWIG_Python_InitShadowInstance(args
);
15161 SWIGINTERN PyObject
*PyAuiDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15163 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15164 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyAuiDockArt
, SWIG_NewClientData(obj
));
15165 return SWIG_Py_Void();
15168 SWIGINTERN PyObject
*PyAuiTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15170 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15171 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyAuiTabArt
, SWIG_NewClientData(obj
));
15172 return SWIG_Py_Void();
15175 static PyMethodDef SwigMethods
[] = {
15176 { (char *)"new_AuiPaneInfo", (PyCFunction
)_wrap_new_AuiPaneInfo
, METH_NOARGS
, NULL
},
15177 { (char *)"delete_AuiPaneInfo", (PyCFunction
)_wrap_delete_AuiPaneInfo
, METH_O
, NULL
},
15178 { (char *)"AuiPaneInfo_SafeSet", (PyCFunction
) _wrap_AuiPaneInfo_SafeSet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15179 { (char *)"AuiPaneInfo_IsOk", (PyCFunction
)_wrap_AuiPaneInfo_IsOk
, METH_O
, NULL
},
15180 { (char *)"AuiPaneInfo_IsFixed", (PyCFunction
)_wrap_AuiPaneInfo_IsFixed
, METH_O
, NULL
},
15181 { (char *)"AuiPaneInfo_IsResizable", (PyCFunction
)_wrap_AuiPaneInfo_IsResizable
, METH_O
, NULL
},
15182 { (char *)"AuiPaneInfo_IsShown", (PyCFunction
)_wrap_AuiPaneInfo_IsShown
, METH_O
, NULL
},
15183 { (char *)"AuiPaneInfo_IsFloating", (PyCFunction
)_wrap_AuiPaneInfo_IsFloating
, METH_O
, NULL
},
15184 { (char *)"AuiPaneInfo_IsDocked", (PyCFunction
)_wrap_AuiPaneInfo_IsDocked
, METH_O
, NULL
},
15185 { (char *)"AuiPaneInfo_IsToolbar", (PyCFunction
)_wrap_AuiPaneInfo_IsToolbar
, METH_O
, NULL
},
15186 { (char *)"AuiPaneInfo_IsTopDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsTopDockable
, METH_O
, NULL
},
15187 { (char *)"AuiPaneInfo_IsBottomDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsBottomDockable
, METH_O
, NULL
},
15188 { (char *)"AuiPaneInfo_IsLeftDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsLeftDockable
, METH_O
, NULL
},
15189 { (char *)"AuiPaneInfo_IsRightDockable", (PyCFunction
)_wrap_AuiPaneInfo_IsRightDockable
, METH_O
, NULL
},
15190 { (char *)"AuiPaneInfo_IsFloatable", (PyCFunction
)_wrap_AuiPaneInfo_IsFloatable
, METH_O
, NULL
},
15191 { (char *)"AuiPaneInfo_IsMovable", (PyCFunction
)_wrap_AuiPaneInfo_IsMovable
, METH_O
, NULL
},
15192 { (char *)"AuiPaneInfo_IsDestroyOnClose", (PyCFunction
)_wrap_AuiPaneInfo_IsDestroyOnClose
, METH_O
, NULL
},
15193 { (char *)"AuiPaneInfo_IsMaximized", (PyCFunction
)_wrap_AuiPaneInfo_IsMaximized
, METH_O
, NULL
},
15194 { (char *)"AuiPaneInfo_HasCaption", (PyCFunction
)_wrap_AuiPaneInfo_HasCaption
, METH_O
, NULL
},
15195 { (char *)"AuiPaneInfo_HasGripper", (PyCFunction
)_wrap_AuiPaneInfo_HasGripper
, METH_O
, NULL
},
15196 { (char *)"AuiPaneInfo_HasBorder", (PyCFunction
)_wrap_AuiPaneInfo_HasBorder
, METH_O
, NULL
},
15197 { (char *)"AuiPaneInfo_HasCloseButton", (PyCFunction
)_wrap_AuiPaneInfo_HasCloseButton
, METH_O
, NULL
},
15198 { (char *)"AuiPaneInfo_HasMaximizeButton", (PyCFunction
)_wrap_AuiPaneInfo_HasMaximizeButton
, METH_O
, NULL
},
15199 { (char *)"AuiPaneInfo_HasMinimizeButton", (PyCFunction
)_wrap_AuiPaneInfo_HasMinimizeButton
, METH_O
, NULL
},
15200 { (char *)"AuiPaneInfo_HasPinButton", (PyCFunction
)_wrap_AuiPaneInfo_HasPinButton
, METH_O
, NULL
},
15201 { (char *)"AuiPaneInfo_HasGripperTop", (PyCFunction
)_wrap_AuiPaneInfo_HasGripperTop
, METH_O
, NULL
},
15202 { (char *)"AuiPaneInfo_Window", (PyCFunction
) _wrap_AuiPaneInfo_Window
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15203 { (char *)"AuiPaneInfo_Name", (PyCFunction
) _wrap_AuiPaneInfo_Name
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15204 { (char *)"AuiPaneInfo_Caption", (PyCFunction
) _wrap_AuiPaneInfo_Caption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15205 { (char *)"AuiPaneInfo_Left", (PyCFunction
)_wrap_AuiPaneInfo_Left
, METH_O
, NULL
},
15206 { (char *)"AuiPaneInfo_Right", (PyCFunction
)_wrap_AuiPaneInfo_Right
, METH_O
, NULL
},
15207 { (char *)"AuiPaneInfo_Top", (PyCFunction
)_wrap_AuiPaneInfo_Top
, METH_O
, NULL
},
15208 { (char *)"AuiPaneInfo_Bottom", (PyCFunction
)_wrap_AuiPaneInfo_Bottom
, METH_O
, NULL
},
15209 { (char *)"AuiPaneInfo_Center", (PyCFunction
)_wrap_AuiPaneInfo_Center
, METH_O
, NULL
},
15210 { (char *)"AuiPaneInfo_Centre", (PyCFunction
)_wrap_AuiPaneInfo_Centre
, METH_O
, NULL
},
15211 { (char *)"AuiPaneInfo_Direction", (PyCFunction
) _wrap_AuiPaneInfo_Direction
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15212 { (char *)"AuiPaneInfo_Layer", (PyCFunction
) _wrap_AuiPaneInfo_Layer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15213 { (char *)"AuiPaneInfo_Row", (PyCFunction
) _wrap_AuiPaneInfo_Row
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15214 { (char *)"AuiPaneInfo_Position", (PyCFunction
) _wrap_AuiPaneInfo_Position
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15215 { (char *)"AuiPaneInfo_BestSize", (PyCFunction
) _wrap_AuiPaneInfo_BestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15216 { (char *)"AuiPaneInfo_MinSize", (PyCFunction
) _wrap_AuiPaneInfo_MinSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15217 { (char *)"AuiPaneInfo_MaxSize", (PyCFunction
) _wrap_AuiPaneInfo_MaxSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15218 { (char *)"AuiPaneInfo_FloatingPosition", (PyCFunction
) _wrap_AuiPaneInfo_FloatingPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15219 { (char *)"AuiPaneInfo_FloatingSize", (PyCFunction
) _wrap_AuiPaneInfo_FloatingSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15220 { (char *)"AuiPaneInfo_Fixed", (PyCFunction
)_wrap_AuiPaneInfo_Fixed
, METH_O
, NULL
},
15221 { (char *)"AuiPaneInfo_Resizable", (PyCFunction
) _wrap_AuiPaneInfo_Resizable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15222 { (char *)"AuiPaneInfo_Dock", (PyCFunction
)_wrap_AuiPaneInfo_Dock
, METH_O
, NULL
},
15223 { (char *)"AuiPaneInfo_Float", (PyCFunction
)_wrap_AuiPaneInfo_Float
, METH_O
, NULL
},
15224 { (char *)"AuiPaneInfo_Hide", (PyCFunction
)_wrap_AuiPaneInfo_Hide
, METH_O
, NULL
},
15225 { (char *)"AuiPaneInfo_Show", (PyCFunction
) _wrap_AuiPaneInfo_Show
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15226 { (char *)"AuiPaneInfo_CaptionVisible", (PyCFunction
) _wrap_AuiPaneInfo_CaptionVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15227 { (char *)"AuiPaneInfo_Maximize", (PyCFunction
)_wrap_AuiPaneInfo_Maximize
, METH_O
, NULL
},
15228 { (char *)"AuiPaneInfo_Restore", (PyCFunction
)_wrap_AuiPaneInfo_Restore
, METH_O
, NULL
},
15229 { (char *)"AuiPaneInfo_PaneBorder", (PyCFunction
) _wrap_AuiPaneInfo_PaneBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15230 { (char *)"AuiPaneInfo_Gripper", (PyCFunction
) _wrap_AuiPaneInfo_Gripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15231 { (char *)"AuiPaneInfo_GripperTop", (PyCFunction
) _wrap_AuiPaneInfo_GripperTop
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15232 { (char *)"AuiPaneInfo_CloseButton", (PyCFunction
) _wrap_AuiPaneInfo_CloseButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15233 { (char *)"AuiPaneInfo_MaximizeButton", (PyCFunction
) _wrap_AuiPaneInfo_MaximizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15234 { (char *)"AuiPaneInfo_MinimizeButton", (PyCFunction
) _wrap_AuiPaneInfo_MinimizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15235 { (char *)"AuiPaneInfo_PinButton", (PyCFunction
) _wrap_AuiPaneInfo_PinButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15236 { (char *)"AuiPaneInfo_DestroyOnClose", (PyCFunction
) _wrap_AuiPaneInfo_DestroyOnClose
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15237 { (char *)"AuiPaneInfo_TopDockable", (PyCFunction
) _wrap_AuiPaneInfo_TopDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15238 { (char *)"AuiPaneInfo_BottomDockable", (PyCFunction
) _wrap_AuiPaneInfo_BottomDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15239 { (char *)"AuiPaneInfo_LeftDockable", (PyCFunction
) _wrap_AuiPaneInfo_LeftDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15240 { (char *)"AuiPaneInfo_RightDockable", (PyCFunction
) _wrap_AuiPaneInfo_RightDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15241 { (char *)"AuiPaneInfo_Floatable", (PyCFunction
) _wrap_AuiPaneInfo_Floatable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15242 { (char *)"AuiPaneInfo_Movable", (PyCFunction
) _wrap_AuiPaneInfo_Movable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15243 { (char *)"AuiPaneInfo_SaveHidden", (PyCFunction
)_wrap_AuiPaneInfo_SaveHidden
, METH_O
, NULL
},
15244 { (char *)"AuiPaneInfo_RestoreHidden", (PyCFunction
)_wrap_AuiPaneInfo_RestoreHidden
, METH_O
, NULL
},
15245 { (char *)"AuiPaneInfo_Dockable", (PyCFunction
) _wrap_AuiPaneInfo_Dockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15246 { (char *)"AuiPaneInfo_DefaultPane", (PyCFunction
)_wrap_AuiPaneInfo_DefaultPane
, METH_O
, NULL
},
15247 { (char *)"AuiPaneInfo_CentrePane", (PyCFunction
)_wrap_AuiPaneInfo_CentrePane
, METH_O
, NULL
},
15248 { (char *)"AuiPaneInfo_CenterPane", (PyCFunction
)_wrap_AuiPaneInfo_CenterPane
, METH_O
, NULL
},
15249 { (char *)"AuiPaneInfo_ToolbarPane", (PyCFunction
)_wrap_AuiPaneInfo_ToolbarPane
, METH_O
, NULL
},
15250 { (char *)"AuiPaneInfo_SetFlag", (PyCFunction
) _wrap_AuiPaneInfo_SetFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15251 { (char *)"AuiPaneInfo_HasFlag", (PyCFunction
) _wrap_AuiPaneInfo_HasFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15252 { (char *)"AuiPaneInfo_name_set", _wrap_AuiPaneInfo_name_set
, METH_VARARGS
, NULL
},
15253 { (char *)"AuiPaneInfo_name_get", (PyCFunction
)_wrap_AuiPaneInfo_name_get
, METH_O
, NULL
},
15254 { (char *)"AuiPaneInfo_caption_set", _wrap_AuiPaneInfo_caption_set
, METH_VARARGS
, NULL
},
15255 { (char *)"AuiPaneInfo_caption_get", (PyCFunction
)_wrap_AuiPaneInfo_caption_get
, METH_O
, NULL
},
15256 { (char *)"AuiPaneInfo_window_set", _wrap_AuiPaneInfo_window_set
, METH_VARARGS
, NULL
},
15257 { (char *)"AuiPaneInfo_window_get", (PyCFunction
)_wrap_AuiPaneInfo_window_get
, METH_O
, NULL
},
15258 { (char *)"AuiPaneInfo_frame_set", _wrap_AuiPaneInfo_frame_set
, METH_VARARGS
, NULL
},
15259 { (char *)"AuiPaneInfo_frame_get", (PyCFunction
)_wrap_AuiPaneInfo_frame_get
, METH_O
, NULL
},
15260 { (char *)"AuiPaneInfo_state_set", _wrap_AuiPaneInfo_state_set
, METH_VARARGS
, NULL
},
15261 { (char *)"AuiPaneInfo_state_get", (PyCFunction
)_wrap_AuiPaneInfo_state_get
, METH_O
, NULL
},
15262 { (char *)"AuiPaneInfo_dock_direction_set", _wrap_AuiPaneInfo_dock_direction_set
, METH_VARARGS
, NULL
},
15263 { (char *)"AuiPaneInfo_dock_direction_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_direction_get
, METH_O
, NULL
},
15264 { (char *)"AuiPaneInfo_dock_layer_set", _wrap_AuiPaneInfo_dock_layer_set
, METH_VARARGS
, NULL
},
15265 { (char *)"AuiPaneInfo_dock_layer_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_layer_get
, METH_O
, NULL
},
15266 { (char *)"AuiPaneInfo_dock_row_set", _wrap_AuiPaneInfo_dock_row_set
, METH_VARARGS
, NULL
},
15267 { (char *)"AuiPaneInfo_dock_row_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_row_get
, METH_O
, NULL
},
15268 { (char *)"AuiPaneInfo_dock_pos_set", _wrap_AuiPaneInfo_dock_pos_set
, METH_VARARGS
, NULL
},
15269 { (char *)"AuiPaneInfo_dock_pos_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_pos_get
, METH_O
, NULL
},
15270 { (char *)"AuiPaneInfo_best_size_set", _wrap_AuiPaneInfo_best_size_set
, METH_VARARGS
, NULL
},
15271 { (char *)"AuiPaneInfo_best_size_get", (PyCFunction
)_wrap_AuiPaneInfo_best_size_get
, METH_O
, NULL
},
15272 { (char *)"AuiPaneInfo_min_size_set", _wrap_AuiPaneInfo_min_size_set
, METH_VARARGS
, NULL
},
15273 { (char *)"AuiPaneInfo_min_size_get", (PyCFunction
)_wrap_AuiPaneInfo_min_size_get
, METH_O
, NULL
},
15274 { (char *)"AuiPaneInfo_max_size_set", _wrap_AuiPaneInfo_max_size_set
, METH_VARARGS
, NULL
},
15275 { (char *)"AuiPaneInfo_max_size_get", (PyCFunction
)_wrap_AuiPaneInfo_max_size_get
, METH_O
, NULL
},
15276 { (char *)"AuiPaneInfo_floating_pos_set", _wrap_AuiPaneInfo_floating_pos_set
, METH_VARARGS
, NULL
},
15277 { (char *)"AuiPaneInfo_floating_pos_get", (PyCFunction
)_wrap_AuiPaneInfo_floating_pos_get
, METH_O
, NULL
},
15278 { (char *)"AuiPaneInfo_floating_size_set", _wrap_AuiPaneInfo_floating_size_set
, METH_VARARGS
, NULL
},
15279 { (char *)"AuiPaneInfo_floating_size_get", (PyCFunction
)_wrap_AuiPaneInfo_floating_size_get
, METH_O
, NULL
},
15280 { (char *)"AuiPaneInfo_dock_proportion_set", _wrap_AuiPaneInfo_dock_proportion_set
, METH_VARARGS
, NULL
},
15281 { (char *)"AuiPaneInfo_dock_proportion_get", (PyCFunction
)_wrap_AuiPaneInfo_dock_proportion_get
, METH_O
, NULL
},
15282 { (char *)"AuiPaneInfo_buttons_set", _wrap_AuiPaneInfo_buttons_set
, METH_VARARGS
, NULL
},
15283 { (char *)"AuiPaneInfo_buttons_get", (PyCFunction
)_wrap_AuiPaneInfo_buttons_get
, METH_O
, NULL
},
15284 { (char *)"AuiPaneInfo_rect_set", _wrap_AuiPaneInfo_rect_set
, METH_VARARGS
, NULL
},
15285 { (char *)"AuiPaneInfo_rect_get", (PyCFunction
)_wrap_AuiPaneInfo_rect_get
, METH_O
, NULL
},
15286 { (char *)"AuiPaneInfo_swigregister", AuiPaneInfo_swigregister
, METH_VARARGS
, NULL
},
15287 { (char *)"AuiPaneInfo_swiginit", AuiPaneInfo_swiginit
, METH_VARARGS
, NULL
},
15288 { (char *)"new_AuiManager", (PyCFunction
) _wrap_new_AuiManager
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15289 { (char *)"delete_AuiManager", (PyCFunction
)_wrap_delete_AuiManager
, METH_O
, NULL
},
15290 { (char *)"AuiManager_UnInit", (PyCFunction
)_wrap_AuiManager_UnInit
, METH_O
, NULL
},
15291 { (char *)"AuiManager_SetFlags", (PyCFunction
) _wrap_AuiManager_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15292 { (char *)"AuiManager_GetFlags", (PyCFunction
)_wrap_AuiManager_GetFlags
, METH_O
, NULL
},
15293 { (char *)"AuiManager_SetManagedWindow", (PyCFunction
) _wrap_AuiManager_SetManagedWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15294 { (char *)"AuiManager_GetManagedWindow", (PyCFunction
)_wrap_AuiManager_GetManagedWindow
, METH_O
, NULL
},
15295 { (char *)"AuiManager_SetArtProvider", (PyCFunction
) _wrap_AuiManager_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15296 { (char *)"AuiManager_GetArtProvider", (PyCFunction
)_wrap_AuiManager_GetArtProvider
, METH_O
, NULL
},
15297 { (char *)"AuiManager__GetPaneByWidget", (PyCFunction
) _wrap_AuiManager__GetPaneByWidget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15298 { (char *)"AuiManager__GetPaneByName", (PyCFunction
) _wrap_AuiManager__GetPaneByName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15299 { (char *)"AuiManager_GetAllPanes", (PyCFunction
)_wrap_AuiManager_GetAllPanes
, METH_O
, NULL
},
15300 { (char *)"AuiManager__AddPane1", (PyCFunction
) _wrap_AuiManager__AddPane1
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15301 { (char *)"AuiManager_AddPane", (PyCFunction
) _wrap_AuiManager_AddPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15302 { (char *)"AuiManager__AddPane2", (PyCFunction
) _wrap_AuiManager__AddPane2
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15303 { (char *)"AuiManager_InsertPane", (PyCFunction
) _wrap_AuiManager_InsertPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15304 { (char *)"AuiManager_DetachPane", (PyCFunction
) _wrap_AuiManager_DetachPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15305 { (char *)"AuiManager_ClosePane", (PyCFunction
) _wrap_AuiManager_ClosePane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15306 { (char *)"AuiManager_MaximizePane", (PyCFunction
) _wrap_AuiManager_MaximizePane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15307 { (char *)"AuiManager_RestorePane", (PyCFunction
) _wrap_AuiManager_RestorePane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15308 { (char *)"AuiManager_RestoreMaximizedPane", (PyCFunction
)_wrap_AuiManager_RestoreMaximizedPane
, METH_O
, NULL
},
15309 { (char *)"AuiManager_SavePaneInfo", (PyCFunction
) _wrap_AuiManager_SavePaneInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15310 { (char *)"AuiManager_LoadPaneInfo", (PyCFunction
) _wrap_AuiManager_LoadPaneInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15311 { (char *)"AuiManager_SavePerspective", (PyCFunction
)_wrap_AuiManager_SavePerspective
, METH_O
, NULL
},
15312 { (char *)"AuiManager_LoadPerspective", (PyCFunction
) _wrap_AuiManager_LoadPerspective
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15313 { (char *)"AuiManager_Update", (PyCFunction
)_wrap_AuiManager_Update
, METH_O
, NULL
},
15314 { (char *)"AuiManager_CreateFloatingFrame", (PyCFunction
) _wrap_AuiManager_CreateFloatingFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15315 { (char *)"AuiManager_DrawHintRect", (PyCFunction
) _wrap_AuiManager_DrawHintRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15316 { (char *)"AuiManager_ShowHint", (PyCFunction
) _wrap_AuiManager_ShowHint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15317 { (char *)"AuiManager_HideHint", (PyCFunction
)_wrap_AuiManager_HideHint
, METH_O
, NULL
},
15318 { (char *)"AuiManager_OnRender", (PyCFunction
) _wrap_AuiManager_OnRender
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15319 { (char *)"AuiManager_OnPaneButton", (PyCFunction
) _wrap_AuiManager_OnPaneButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15320 { (char *)"AuiManager_swigregister", AuiManager_swigregister
, METH_VARARGS
, NULL
},
15321 { (char *)"AuiManager_swiginit", AuiManager_swiginit
, METH_VARARGS
, NULL
},
15322 { (char *)"new_AuiManagerEvent", (PyCFunction
) _wrap_new_AuiManagerEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15323 { (char *)"AuiManagerEvent_Clone", (PyCFunction
)_wrap_AuiManagerEvent_Clone
, METH_O
, NULL
},
15324 { (char *)"AuiManagerEvent_SetPane", (PyCFunction
) _wrap_AuiManagerEvent_SetPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15325 { (char *)"AuiManagerEvent_SetButton", (PyCFunction
) _wrap_AuiManagerEvent_SetButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15326 { (char *)"AuiManagerEvent_SetDC", (PyCFunction
) _wrap_AuiManagerEvent_SetDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15327 { (char *)"AuiManagerEvent_GetPane", (PyCFunction
)_wrap_AuiManagerEvent_GetPane
, METH_O
, NULL
},
15328 { (char *)"AuiManagerEvent_GetButton", (PyCFunction
)_wrap_AuiManagerEvent_GetButton
, METH_O
, NULL
},
15329 { (char *)"AuiManagerEvent_GetDC", (PyCFunction
)_wrap_AuiManagerEvent_GetDC
, METH_O
, NULL
},
15330 { (char *)"AuiManagerEvent_Veto", (PyCFunction
) _wrap_AuiManagerEvent_Veto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15331 { (char *)"AuiManagerEvent_GetVeto", (PyCFunction
)_wrap_AuiManagerEvent_GetVeto
, METH_O
, NULL
},
15332 { (char *)"AuiManagerEvent_SetCanVeto", (PyCFunction
) _wrap_AuiManagerEvent_SetCanVeto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15333 { (char *)"AuiManagerEvent_CanVeto", (PyCFunction
)_wrap_AuiManagerEvent_CanVeto
, METH_O
, NULL
},
15334 { (char *)"AuiManagerEvent_pane_set", _wrap_AuiManagerEvent_pane_set
, METH_VARARGS
, NULL
},
15335 { (char *)"AuiManagerEvent_pane_get", (PyCFunction
)_wrap_AuiManagerEvent_pane_get
, METH_O
, NULL
},
15336 { (char *)"AuiManagerEvent_button_set", _wrap_AuiManagerEvent_button_set
, METH_VARARGS
, NULL
},
15337 { (char *)"AuiManagerEvent_button_get", (PyCFunction
)_wrap_AuiManagerEvent_button_get
, METH_O
, NULL
},
15338 { (char *)"AuiManagerEvent_veto_flag_set", _wrap_AuiManagerEvent_veto_flag_set
, METH_VARARGS
, NULL
},
15339 { (char *)"AuiManagerEvent_veto_flag_get", (PyCFunction
)_wrap_AuiManagerEvent_veto_flag_get
, METH_O
, NULL
},
15340 { (char *)"AuiManagerEvent_canveto_flag_set", _wrap_AuiManagerEvent_canveto_flag_set
, METH_VARARGS
, NULL
},
15341 { (char *)"AuiManagerEvent_canveto_flag_get", (PyCFunction
)_wrap_AuiManagerEvent_canveto_flag_get
, METH_O
, NULL
},
15342 { (char *)"AuiManagerEvent_dc_set", _wrap_AuiManagerEvent_dc_set
, METH_VARARGS
, NULL
},
15343 { (char *)"AuiManagerEvent_dc_get", (PyCFunction
)_wrap_AuiManagerEvent_dc_get
, METH_O
, NULL
},
15344 { (char *)"AuiManagerEvent_swigregister", AuiManagerEvent_swigregister
, METH_VARARGS
, NULL
},
15345 { (char *)"AuiManagerEvent_swiginit", AuiManagerEvent_swiginit
, METH_VARARGS
, NULL
},
15346 { (char *)"new_AuiDockInfo", (PyCFunction
)_wrap_new_AuiDockInfo
, METH_NOARGS
, NULL
},
15347 { (char *)"AuiDockInfo_IsOk", (PyCFunction
)_wrap_AuiDockInfo_IsOk
, METH_O
, NULL
},
15348 { (char *)"AuiDockInfo_IsHorizontal", (PyCFunction
)_wrap_AuiDockInfo_IsHorizontal
, METH_O
, NULL
},
15349 { (char *)"AuiDockInfo_IsVertical", (PyCFunction
)_wrap_AuiDockInfo_IsVertical
, METH_O
, NULL
},
15350 { (char *)"AuiDockInfo_panes_set", _wrap_AuiDockInfo_panes_set
, METH_VARARGS
, NULL
},
15351 { (char *)"AuiDockInfo_panes_get", (PyCFunction
)_wrap_AuiDockInfo_panes_get
, METH_O
, NULL
},
15352 { (char *)"AuiDockInfo_rect_set", _wrap_AuiDockInfo_rect_set
, METH_VARARGS
, NULL
},
15353 { (char *)"AuiDockInfo_rect_get", (PyCFunction
)_wrap_AuiDockInfo_rect_get
, METH_O
, NULL
},
15354 { (char *)"AuiDockInfo_dock_direction_set", _wrap_AuiDockInfo_dock_direction_set
, METH_VARARGS
, NULL
},
15355 { (char *)"AuiDockInfo_dock_direction_get", (PyCFunction
)_wrap_AuiDockInfo_dock_direction_get
, METH_O
, NULL
},
15356 { (char *)"AuiDockInfo_dock_layer_set", _wrap_AuiDockInfo_dock_layer_set
, METH_VARARGS
, NULL
},
15357 { (char *)"AuiDockInfo_dock_layer_get", (PyCFunction
)_wrap_AuiDockInfo_dock_layer_get
, METH_O
, NULL
},
15358 { (char *)"AuiDockInfo_dock_row_set", _wrap_AuiDockInfo_dock_row_set
, METH_VARARGS
, NULL
},
15359 { (char *)"AuiDockInfo_dock_row_get", (PyCFunction
)_wrap_AuiDockInfo_dock_row_get
, METH_O
, NULL
},
15360 { (char *)"AuiDockInfo_size_set", _wrap_AuiDockInfo_size_set
, METH_VARARGS
, NULL
},
15361 { (char *)"AuiDockInfo_size_get", (PyCFunction
)_wrap_AuiDockInfo_size_get
, METH_O
, NULL
},
15362 { (char *)"AuiDockInfo_min_size_set", _wrap_AuiDockInfo_min_size_set
, METH_VARARGS
, NULL
},
15363 { (char *)"AuiDockInfo_min_size_get", (PyCFunction
)_wrap_AuiDockInfo_min_size_get
, METH_O
, NULL
},
15364 { (char *)"AuiDockInfo_resizable_set", _wrap_AuiDockInfo_resizable_set
, METH_VARARGS
, NULL
},
15365 { (char *)"AuiDockInfo_resizable_get", (PyCFunction
)_wrap_AuiDockInfo_resizable_get
, METH_O
, NULL
},
15366 { (char *)"AuiDockInfo_toolbar_set", _wrap_AuiDockInfo_toolbar_set
, METH_VARARGS
, NULL
},
15367 { (char *)"AuiDockInfo_toolbar_get", (PyCFunction
)_wrap_AuiDockInfo_toolbar_get
, METH_O
, NULL
},
15368 { (char *)"AuiDockInfo_fixed_set", _wrap_AuiDockInfo_fixed_set
, METH_VARARGS
, NULL
},
15369 { (char *)"AuiDockInfo_fixed_get", (PyCFunction
)_wrap_AuiDockInfo_fixed_get
, METH_O
, NULL
},
15370 { (char *)"delete_AuiDockInfo", (PyCFunction
)_wrap_delete_AuiDockInfo
, METH_O
, NULL
},
15371 { (char *)"AuiDockInfo_swigregister", AuiDockInfo_swigregister
, METH_VARARGS
, NULL
},
15372 { (char *)"AuiDockInfo_swiginit", AuiDockInfo_swiginit
, METH_VARARGS
, NULL
},
15373 { (char *)"AuiDockUIPart_type_set", _wrap_AuiDockUIPart_type_set
, METH_VARARGS
, NULL
},
15374 { (char *)"AuiDockUIPart_type_get", (PyCFunction
)_wrap_AuiDockUIPart_type_get
, METH_O
, NULL
},
15375 { (char *)"AuiDockUIPart_orientation_set", _wrap_AuiDockUIPart_orientation_set
, METH_VARARGS
, NULL
},
15376 { (char *)"AuiDockUIPart_orientation_get", (PyCFunction
)_wrap_AuiDockUIPart_orientation_get
, METH_O
, NULL
},
15377 { (char *)"AuiDockUIPart_dock_set", _wrap_AuiDockUIPart_dock_set
, METH_VARARGS
, NULL
},
15378 { (char *)"AuiDockUIPart_dock_get", (PyCFunction
)_wrap_AuiDockUIPart_dock_get
, METH_O
, NULL
},
15379 { (char *)"AuiDockUIPart_pane_set", _wrap_AuiDockUIPart_pane_set
, METH_VARARGS
, NULL
},
15380 { (char *)"AuiDockUIPart_pane_get", (PyCFunction
)_wrap_AuiDockUIPart_pane_get
, METH_O
, NULL
},
15381 { (char *)"AuiDockUIPart_button_set", _wrap_AuiDockUIPart_button_set
, METH_VARARGS
, NULL
},
15382 { (char *)"AuiDockUIPart_button_get", (PyCFunction
)_wrap_AuiDockUIPart_button_get
, METH_O
, NULL
},
15383 { (char *)"AuiDockUIPart_cont_sizer_set", _wrap_AuiDockUIPart_cont_sizer_set
, METH_VARARGS
, NULL
},
15384 { (char *)"AuiDockUIPart_cont_sizer_get", (PyCFunction
)_wrap_AuiDockUIPart_cont_sizer_get
, METH_O
, NULL
},
15385 { (char *)"AuiDockUIPart_sizer_item_set", _wrap_AuiDockUIPart_sizer_item_set
, METH_VARARGS
, NULL
},
15386 { (char *)"AuiDockUIPart_sizer_item_get", (PyCFunction
)_wrap_AuiDockUIPart_sizer_item_get
, METH_O
, NULL
},
15387 { (char *)"AuiDockUIPart_rect_set", _wrap_AuiDockUIPart_rect_set
, METH_VARARGS
, NULL
},
15388 { (char *)"AuiDockUIPart_rect_get", (PyCFunction
)_wrap_AuiDockUIPart_rect_get
, METH_O
, NULL
},
15389 { (char *)"delete_AuiDockUIPart", (PyCFunction
)_wrap_delete_AuiDockUIPart
, METH_O
, NULL
},
15390 { (char *)"AuiDockUIPart_swigregister", AuiDockUIPart_swigregister
, METH_VARARGS
, NULL
},
15391 { (char *)"AuiPaneButton_button_id_set", _wrap_AuiPaneButton_button_id_set
, METH_VARARGS
, NULL
},
15392 { (char *)"AuiPaneButton_button_id_get", (PyCFunction
)_wrap_AuiPaneButton_button_id_get
, METH_O
, NULL
},
15393 { (char *)"delete_AuiPaneButton", (PyCFunction
)_wrap_delete_AuiPaneButton
, METH_O
, NULL
},
15394 { (char *)"AuiPaneButton_swigregister", AuiPaneButton_swigregister
, METH_VARARGS
, NULL
},
15395 { (char *)"delete_AuiDockArt", (PyCFunction
)_wrap_delete_AuiDockArt
, METH_O
, NULL
},
15396 { (char *)"AuiDockArt_GetMetric", (PyCFunction
) _wrap_AuiDockArt_GetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15397 { (char *)"AuiDockArt_SetMetric", (PyCFunction
) _wrap_AuiDockArt_SetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15398 { (char *)"AuiDockArt_SetFont", (PyCFunction
) _wrap_AuiDockArt_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15399 { (char *)"AuiDockArt_GetFont", (PyCFunction
) _wrap_AuiDockArt_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15400 { (char *)"AuiDockArt_GetColour", (PyCFunction
) _wrap_AuiDockArt_GetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15401 { (char *)"AuiDockArt_SetColour", (PyCFunction
) _wrap_AuiDockArt_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15402 { (char *)"AuiDockArt_GetColor", (PyCFunction
) _wrap_AuiDockArt_GetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15403 { (char *)"AuiDockArt_SetColor", (PyCFunction
) _wrap_AuiDockArt_SetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15404 { (char *)"AuiDockArt_DrawSash", (PyCFunction
) _wrap_AuiDockArt_DrawSash
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15405 { (char *)"AuiDockArt_DrawBackground", (PyCFunction
) _wrap_AuiDockArt_DrawBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15406 { (char *)"AuiDockArt_DrawCaption", (PyCFunction
) _wrap_AuiDockArt_DrawCaption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15407 { (char *)"AuiDockArt_DrawGripper", (PyCFunction
) _wrap_AuiDockArt_DrawGripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15408 { (char *)"AuiDockArt_DrawBorder", (PyCFunction
) _wrap_AuiDockArt_DrawBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15409 { (char *)"AuiDockArt_DrawPaneButton", (PyCFunction
) _wrap_AuiDockArt_DrawPaneButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15410 { (char *)"AuiDockArt_swigregister", AuiDockArt_swigregister
, METH_VARARGS
, NULL
},
15411 { (char *)"new_AuiDefaultDockArt", (PyCFunction
)_wrap_new_AuiDefaultDockArt
, METH_NOARGS
, NULL
},
15412 { (char *)"AuiDefaultDockArt_swigregister", AuiDefaultDockArt_swigregister
, METH_VARARGS
, NULL
},
15413 { (char *)"AuiDefaultDockArt_swiginit", AuiDefaultDockArt_swiginit
, METH_VARARGS
, NULL
},
15414 { (char *)"new_AuiFloatingFrame", (PyCFunction
) _wrap_new_AuiFloatingFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15415 { (char *)"delete_AuiFloatingFrame", (PyCFunction
)_wrap_delete_AuiFloatingFrame
, METH_O
, NULL
},
15416 { (char *)"AuiFloatingFrame_SetPaneWindow", (PyCFunction
) _wrap_AuiFloatingFrame_SetPaneWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15417 { (char *)"AuiFloatingFrame_swigregister", AuiFloatingFrame_swigregister
, METH_VARARGS
, NULL
},
15418 { (char *)"AuiFloatingFrame_swiginit", AuiFloatingFrame_swiginit
, METH_VARARGS
, NULL
},
15419 { (char *)"delete_AuiTabArt", (PyCFunction
)_wrap_delete_AuiTabArt
, METH_O
, NULL
},
15420 { (char *)"AuiTabArt_SetNormalFont", (PyCFunction
) _wrap_AuiTabArt_SetNormalFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15421 { (char *)"AuiTabArt_SetSelectedFont", (PyCFunction
) _wrap_AuiTabArt_SetSelectedFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15422 { (char *)"AuiTabArt_SetMeasuringFont", (PyCFunction
) _wrap_AuiTabArt_SetMeasuringFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15423 { (char *)"AuiTabArt_DrawBackground", (PyCFunction
) _wrap_AuiTabArt_DrawBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15424 { (char *)"AuiTabArt_DrawTab", (PyCFunction
) _wrap_AuiTabArt_DrawTab
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15425 { (char *)"AuiTabArt_DrawButton", (PyCFunction
) _wrap_AuiTabArt_DrawButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15426 { (char *)"AuiTabArt_GetTabSize", (PyCFunction
) _wrap_AuiTabArt_GetTabSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15427 { (char *)"AuiTabArt_ShowWindowList", (PyCFunction
) _wrap_AuiTabArt_ShowWindowList
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15428 { (char *)"AuiTabArt_GetBestTabCtrlSize", (PyCFunction
) _wrap_AuiTabArt_GetBestTabCtrlSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15429 { (char *)"AuiTabArt_swigregister", AuiTabArt_swigregister
, METH_VARARGS
, NULL
},
15430 { (char *)"new_AuiDefaultTabArt", (PyCFunction
)_wrap_new_AuiDefaultTabArt
, METH_NOARGS
, NULL
},
15431 { (char *)"delete_AuiDefaultTabArt", (PyCFunction
)_wrap_delete_AuiDefaultTabArt
, METH_O
, NULL
},
15432 { (char *)"AuiDefaultTabArt_swigregister", AuiDefaultTabArt_swigregister
, METH_VARARGS
, NULL
},
15433 { (char *)"AuiDefaultTabArt_swiginit", AuiDefaultTabArt_swiginit
, METH_VARARGS
, NULL
},
15434 { (char *)"new_AuiNotebookEvent", (PyCFunction
) _wrap_new_AuiNotebookEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15435 { (char *)"AuiNotebookEvent_SetSelection", (PyCFunction
) _wrap_AuiNotebookEvent_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15436 { (char *)"AuiNotebookEvent_GetSelection", (PyCFunction
)_wrap_AuiNotebookEvent_GetSelection
, METH_O
, NULL
},
15437 { (char *)"AuiNotebookEvent_SetOldSelection", (PyCFunction
) _wrap_AuiNotebookEvent_SetOldSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15438 { (char *)"AuiNotebookEvent_GetOldSelection", (PyCFunction
)_wrap_AuiNotebookEvent_GetOldSelection
, METH_O
, NULL
},
15439 { (char *)"AuiNotebookEvent_SetDragSource", (PyCFunction
) _wrap_AuiNotebookEvent_SetDragSource
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15440 { (char *)"AuiNotebookEvent_GetDragSource", (PyCFunction
)_wrap_AuiNotebookEvent_GetDragSource
, METH_O
, NULL
},
15441 { (char *)"AuiNotebookEvent_old_selection_set", _wrap_AuiNotebookEvent_old_selection_set
, METH_VARARGS
, NULL
},
15442 { (char *)"AuiNotebookEvent_old_selection_get", (PyCFunction
)_wrap_AuiNotebookEvent_old_selection_get
, METH_O
, NULL
},
15443 { (char *)"AuiNotebookEvent_selection_set", _wrap_AuiNotebookEvent_selection_set
, METH_VARARGS
, NULL
},
15444 { (char *)"AuiNotebookEvent_selection_get", (PyCFunction
)_wrap_AuiNotebookEvent_selection_get
, METH_O
, NULL
},
15445 { (char *)"AuiNotebookEvent_drag_source_set", _wrap_AuiNotebookEvent_drag_source_set
, METH_VARARGS
, NULL
},
15446 { (char *)"AuiNotebookEvent_drag_source_get", (PyCFunction
)_wrap_AuiNotebookEvent_drag_source_get
, METH_O
, NULL
},
15447 { (char *)"AuiNotebookEvent_swigregister", AuiNotebookEvent_swigregister
, METH_VARARGS
, NULL
},
15448 { (char *)"AuiNotebookEvent_swiginit", AuiNotebookEvent_swiginit
, METH_VARARGS
, NULL
},
15449 { (char *)"AuiNotebookPage_window_set", _wrap_AuiNotebookPage_window_set
, METH_VARARGS
, NULL
},
15450 { (char *)"AuiNotebookPage_window_get", (PyCFunction
)_wrap_AuiNotebookPage_window_get
, METH_O
, NULL
},
15451 { (char *)"AuiNotebookPage_caption_set", _wrap_AuiNotebookPage_caption_set
, METH_VARARGS
, NULL
},
15452 { (char *)"AuiNotebookPage_caption_get", (PyCFunction
)_wrap_AuiNotebookPage_caption_get
, METH_O
, NULL
},
15453 { (char *)"AuiNotebookPage_bitmap_set", _wrap_AuiNotebookPage_bitmap_set
, METH_VARARGS
, NULL
},
15454 { (char *)"AuiNotebookPage_bitmap_get", (PyCFunction
)_wrap_AuiNotebookPage_bitmap_get
, METH_O
, NULL
},
15455 { (char *)"AuiNotebookPage_rect_set", _wrap_AuiNotebookPage_rect_set
, METH_VARARGS
, NULL
},
15456 { (char *)"AuiNotebookPage_rect_get", (PyCFunction
)_wrap_AuiNotebookPage_rect_get
, METH_O
, NULL
},
15457 { (char *)"AuiNotebookPage_active_set", _wrap_AuiNotebookPage_active_set
, METH_VARARGS
, NULL
},
15458 { (char *)"AuiNotebookPage_active_get", (PyCFunction
)_wrap_AuiNotebookPage_active_get
, METH_O
, NULL
},
15459 { (char *)"AuiNotebookPage_swigregister", AuiNotebookPage_swigregister
, METH_VARARGS
, NULL
},
15460 { (char *)"AuiTabContainerButton_id_set", _wrap_AuiTabContainerButton_id_set
, METH_VARARGS
, NULL
},
15461 { (char *)"AuiTabContainerButton_id_get", (PyCFunction
)_wrap_AuiTabContainerButton_id_get
, METH_O
, NULL
},
15462 { (char *)"AuiTabContainerButton_cur_state_set", _wrap_AuiTabContainerButton_cur_state_set
, METH_VARARGS
, NULL
},
15463 { (char *)"AuiTabContainerButton_cur_state_get", (PyCFunction
)_wrap_AuiTabContainerButton_cur_state_get
, METH_O
, NULL
},
15464 { (char *)"AuiTabContainerButton_location_set", _wrap_AuiTabContainerButton_location_set
, METH_VARARGS
, NULL
},
15465 { (char *)"AuiTabContainerButton_location_get", (PyCFunction
)_wrap_AuiTabContainerButton_location_get
, METH_O
, NULL
},
15466 { (char *)"AuiTabContainerButton_bitmap_set", _wrap_AuiTabContainerButton_bitmap_set
, METH_VARARGS
, NULL
},
15467 { (char *)"AuiTabContainerButton_bitmap_get", (PyCFunction
)_wrap_AuiTabContainerButton_bitmap_get
, METH_O
, NULL
},
15468 { (char *)"AuiTabContainerButton_dis_bitmap_set", _wrap_AuiTabContainerButton_dis_bitmap_set
, METH_VARARGS
, NULL
},
15469 { (char *)"AuiTabContainerButton_dis_bitmap_get", (PyCFunction
)_wrap_AuiTabContainerButton_dis_bitmap_get
, METH_O
, NULL
},
15470 { (char *)"AuiTabContainerButton_rect_set", _wrap_AuiTabContainerButton_rect_set
, METH_VARARGS
, NULL
},
15471 { (char *)"AuiTabContainerButton_rect_get", (PyCFunction
)_wrap_AuiTabContainerButton_rect_get
, METH_O
, NULL
},
15472 { (char *)"AuiTabContainerButton_swigregister", AuiTabContainerButton_swigregister
, METH_VARARGS
, NULL
},
15473 { (char *)"new_AuiTabContainer", (PyCFunction
)_wrap_new_AuiTabContainer
, METH_NOARGS
, NULL
},
15474 { (char *)"delete_AuiTabContainer", (PyCFunction
)_wrap_delete_AuiTabContainer
, METH_O
, NULL
},
15475 { (char *)"AuiTabContainer_SetArtProvider", (PyCFunction
) _wrap_AuiTabContainer_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15476 { (char *)"AuiTabContainer_GetArtProvider", (PyCFunction
)_wrap_AuiTabContainer_GetArtProvider
, METH_O
, NULL
},
15477 { (char *)"AuiTabContainer_SetFlags", (PyCFunction
) _wrap_AuiTabContainer_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15478 { (char *)"AuiTabContainer_GetFlags", (PyCFunction
)_wrap_AuiTabContainer_GetFlags
, METH_O
, NULL
},
15479 { (char *)"AuiTabContainer_AddPage", (PyCFunction
) _wrap_AuiTabContainer_AddPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15480 { (char *)"AuiTabContainer_InsertPage", (PyCFunction
) _wrap_AuiTabContainer_InsertPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15481 { (char *)"AuiTabContainer_MovePage", (PyCFunction
) _wrap_AuiTabContainer_MovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15482 { (char *)"AuiTabContainer_RemovePage", (PyCFunction
) _wrap_AuiTabContainer_RemovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15483 { (char *)"AuiTabContainer_SetActivePage", _wrap_AuiTabContainer_SetActivePage
, METH_VARARGS
, NULL
},
15484 { (char *)"AuiTabContainer_SetNoneActive", (PyCFunction
)_wrap_AuiTabContainer_SetNoneActive
, METH_O
, NULL
},
15485 { (char *)"AuiTabContainer_GetActivePage", (PyCFunction
)_wrap_AuiTabContainer_GetActivePage
, METH_O
, NULL
},
15486 { (char *)"AuiTabContainer_TabHitTest", (PyCFunction
) _wrap_AuiTabContainer_TabHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15487 { (char *)"AuiTabContainer_ButtonHitTest", (PyCFunction
) _wrap_AuiTabContainer_ButtonHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15488 { (char *)"AuiTabContainer_GetWindowFromIdx", (PyCFunction
) _wrap_AuiTabContainer_GetWindowFromIdx
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15489 { (char *)"AuiTabContainer_GetIdxFromWindow", (PyCFunction
) _wrap_AuiTabContainer_GetIdxFromWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15490 { (char *)"AuiTabContainer_GetPageCount", (PyCFunction
)_wrap_AuiTabContainer_GetPageCount
, METH_O
, NULL
},
15491 { (char *)"AuiTabContainer_GetPage", (PyCFunction
) _wrap_AuiTabContainer_GetPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15492 { (char *)"AuiTabContainer_GetPages", (PyCFunction
)_wrap_AuiTabContainer_GetPages
, METH_O
, NULL
},
15493 { (char *)"AuiTabContainer_SetNormalFont", (PyCFunction
) _wrap_AuiTabContainer_SetNormalFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15494 { (char *)"AuiTabContainer_SetSelectedFont", (PyCFunction
) _wrap_AuiTabContainer_SetSelectedFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15495 { (char *)"AuiTabContainer_SetMeasuringFont", (PyCFunction
) _wrap_AuiTabContainer_SetMeasuringFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15496 { (char *)"AuiTabContainer_DoShowHide", (PyCFunction
)_wrap_AuiTabContainer_DoShowHide
, METH_O
, NULL
},
15497 { (char *)"AuiTabContainer_SetRect", (PyCFunction
) _wrap_AuiTabContainer_SetRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15498 { (char *)"AuiTabContainer_RemoveButton", (PyCFunction
) _wrap_AuiTabContainer_RemoveButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15499 { (char *)"AuiTabContainer_AddButton", (PyCFunction
) _wrap_AuiTabContainer_AddButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15500 { (char *)"AuiTabContainer_GetTabOffset", (PyCFunction
)_wrap_AuiTabContainer_GetTabOffset
, METH_O
, NULL
},
15501 { (char *)"AuiTabContainer_SetTabOffset", (PyCFunction
) _wrap_AuiTabContainer_SetTabOffset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15502 { (char *)"AuiTabContainer_swigregister", AuiTabContainer_swigregister
, METH_VARARGS
, NULL
},
15503 { (char *)"AuiTabContainer_swiginit", AuiTabContainer_swiginit
, METH_VARARGS
, NULL
},
15504 { (char *)"new_AuiTabCtrl", (PyCFunction
) _wrap_new_AuiTabCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15505 { (char *)"delete_AuiTabCtrl", (PyCFunction
)_wrap_delete_AuiTabCtrl
, METH_O
, NULL
},
15506 { (char *)"AuiTabCtrl_swigregister", AuiTabCtrl_swigregister
, METH_VARARGS
, NULL
},
15507 { (char *)"AuiTabCtrl_swiginit", AuiTabCtrl_swiginit
, METH_VARARGS
, NULL
},
15508 { (char *)"new_PreAuiNotebook", (PyCFunction
)_wrap_new_PreAuiNotebook
, METH_NOARGS
, NULL
},
15509 { (char *)"new_AuiNotebook", (PyCFunction
) _wrap_new_AuiNotebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15510 { (char *)"delete_AuiNotebook", (PyCFunction
)_wrap_delete_AuiNotebook
, METH_O
, NULL
},
15511 { (char *)"AuiNotebook_Create", (PyCFunction
) _wrap_AuiNotebook_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15512 { (char *)"AuiNotebook_AddPage", (PyCFunction
) _wrap_AuiNotebook_AddPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15513 { (char *)"AuiNotebook_InsertPage", (PyCFunction
) _wrap_AuiNotebook_InsertPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15514 { (char *)"AuiNotebook_DeletePage", (PyCFunction
) _wrap_AuiNotebook_DeletePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15515 { (char *)"AuiNotebook_RemovePage", (PyCFunction
) _wrap_AuiNotebook_RemovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15516 { (char *)"AuiNotebook_SetPageText", (PyCFunction
) _wrap_AuiNotebook_SetPageText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15517 { (char *)"AuiNotebook_SetSelection", (PyCFunction
) _wrap_AuiNotebook_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15518 { (char *)"AuiNotebook_GetSelection", (PyCFunction
)_wrap_AuiNotebook_GetSelection
, METH_O
, NULL
},
15519 { (char *)"AuiNotebook_GetPageCount", (PyCFunction
)_wrap_AuiNotebook_GetPageCount
, METH_O
, NULL
},
15520 { (char *)"AuiNotebook_GetPage", (PyCFunction
) _wrap_AuiNotebook_GetPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15521 { (char *)"AuiNotebook_SetArtProvider", (PyCFunction
) _wrap_AuiNotebook_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
15522 { (char *)"AuiNotebook_GetArtProvider", (PyCFunction
)_wrap_AuiNotebook_GetArtProvider
, METH_O
, NULL
},
15523 { (char *)"AuiNotebook_swigregister", AuiNotebook_swigregister
, METH_VARARGS
, NULL
},
15524 { (char *)"AuiNotebook_swiginit", AuiNotebook_swiginit
, METH_VARARGS
, NULL
},
15525 { (char *)"PyAuiDockArt_swigregister", PyAuiDockArt_swigregister
, METH_VARARGS
, NULL
},
15526 { (char *)"PyAuiTabArt_swigregister", PyAuiTabArt_swigregister
, METH_VARARGS
, NULL
},
15527 { NULL
, NULL
, 0, NULL
}
15531 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
15533 static void *_p_wxAuiFloatingFrameTo_p_wxMiniFrame(void *x
) {
15534 return (void *)((wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
15536 static void *_p_wxBoxSizerTo_p_wxSizer(void *x
) {
15537 return (void *)((wxSizer
*) ((wxBoxSizer
*) x
));
15539 static void *_p_wxStaticBoxSizerTo_p_wxSizer(void *x
) {
15540 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
15542 static void *_p_wxStdDialogButtonSizerTo_p_wxSizer(void *x
) {
15543 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
15545 static void *_p_wxGridBagSizerTo_p_wxSizer(void *x
) {
15546 return (void *)((wxSizer
*) (wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
15548 static void *_p_wxGridSizerTo_p_wxSizer(void *x
) {
15549 return (void *)((wxSizer
*) ((wxGridSizer
*) x
));
15551 static void *_p_wxFlexGridSizerTo_p_wxSizer(void *x
) {
15552 return (void *)((wxSizer
*) (wxGridSizer
*) ((wxFlexGridSizer
*) x
));
15554 static void *_p_wxPySizerTo_p_wxSizer(void *x
) {
15555 return (void *)((wxSizer
*) ((wxPySizer
*) x
));
15557 static void *_p_wxAuiDefaultTabArtTo_p_wxAuiTabArt(void *x
) {
15558 return (void *)((wxAuiTabArt
*) ((wxAuiDefaultTabArt
*) x
));
15560 static void *_p_wxPyAuiTabArtTo_p_wxAuiTabArt(void *x
) {
15561 return (void *)((wxAuiTabArt
*) (wxAuiDefaultTabArt
*) ((wxPyAuiTabArt
*) x
));
15563 static void *_p_wxSplitterEventTo_p_wxNotifyEvent(void *x
) {
15564 return (void *)((wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
15566 static void *_p_wxAuiNotebookEventTo_p_wxNotifyEvent(void *x
) {
15567 return (void *)((wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
15569 static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x
) {
15570 return (void *)((wxTopLevelWindow
*) ((wxFrame
*) x
));
15572 static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x
) {
15573 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMiniFrame
*) x
));
15575 static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x
) {
15576 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFontDialog
*) x
));
15578 static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x
) {
15579 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxDirDialog
*) x
));
15581 static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x
) {
15582 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxColourDialog
*) x
));
15584 static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x
) {
15585 return (void *)((wxTopLevelWindow
*) ((wxDialog
*) x
));
15587 static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x
) {
15588 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxSplashScreen
*) x
));
15590 static void *_p_wxTipWindowTo_p_wxTopLevelWindow(void *x
) {
15591 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxTipWindow
*) x
));
15593 static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x
) {
15594 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIParentFrame
*) x
));
15596 static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x
) {
15597 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIChildFrame
*) x
));
15599 static void *_p_wxAuiFloatingFrameTo_p_wxTopLevelWindow(void *x
) {
15600 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
15602 static void *_p_wxNumberEntryDialogTo_p_wxTopLevelWindow(void *x
) {
15603 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxNumberEntryDialog
*) x
));
15605 static void *_p_wxPasswordEntryDialogTo_p_wxTopLevelWindow(void *x
) {
15606 return (void *)((wxTopLevelWindow
*) (wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
15608 static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x
) {
15609 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxTextEntryDialog
*) x
));
15611 static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
15612 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxSingleChoiceDialog
*) x
));
15614 static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
15615 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMultiChoiceDialog
*) x
));
15617 static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x
) {
15618 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFileDialog
*) x
));
15620 static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x
) {
15621 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMessageDialog
*) x
));
15623 static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x
) {
15624 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxProgressDialog
*) x
));
15626 static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x
) {
15627 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFindReplaceDialog
*) x
));
15629 static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
15630 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxPreviewFrame
*) x
));
15632 static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
15633 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
15635 static void *_p_wxSplashScreenTo_p_wxWindow(void *x
) {
15636 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
15638 static void *_p_wxMiniFrameTo_p_wxWindow(void *x
) {
15639 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
15641 static void *_p_wxPyPanelTo_p_wxWindow(void *x
) {
15642 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyPanel
*) x
));
15644 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
15645 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
15647 static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x
) {
15648 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
15650 static void *_p_wxProgressDialogTo_p_wxWindow(void *x
) {
15651 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
15653 static void *_p_wxMessageDialogTo_p_wxWindow(void *x
) {
15654 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
15656 static void *_p_wxNumberEntryDialogTo_p_wxWindow(void *x
) {
15657 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
15659 static void *_p_wxPasswordEntryDialogTo_p_wxWindow(void *x
) {
15660 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
15662 static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x
) {
15663 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
15665 static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x
) {
15666 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
15668 static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x
) {
15669 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
15671 static void *_p_wxFileDialogTo_p_wxWindow(void *x
) {
15672 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
15674 static void *_p_wxPanelTo_p_wxWindow(void *x
) {
15675 return (void *)((wxWindow
*) ((wxPanel
*) x
));
15677 static void *_p_wxStatusBarTo_p_wxWindow(void *x
) {
15678 return (void *)((wxWindow
*) ((wxStatusBar
*) x
));
15680 static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x
) {
15681 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyVScrolledWindow
*) x
));
15683 static void *_p_wxTipWindowTo_p_wxWindow(void *x
) {
15684 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxTipWindow
*) x
));
15686 static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x
) {
15687 return (void *)((wxWindow
*) (wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
15689 static void *_p_wxPopupWindowTo_p_wxWindow(void *x
) {
15690 return (void *)((wxWindow
*) ((wxPopupWindow
*) x
));
15692 static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x
) {
15693 return (void *)((wxWindow
*) (wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
15695 static void *_p_wxScrolledWindowTo_p_wxWindow(void *x
) {
15696 return (void *)((wxWindow
*) (wxPanel
*) ((wxScrolledWindow
*) x
));
15698 static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x
) {
15699 return (void *)((wxWindow
*) ((wxTopLevelWindow
*) x
));
15701 static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x
) {
15702 return (void *)((wxWindow
*) ((wxSplashScreenWindow
*) x
));
15704 static void *_p_wxSplitterWindowTo_p_wxWindow(void *x
) {
15705 return (void *)((wxWindow
*) ((wxSplitterWindow
*) x
));
15707 static void *_p_wxSashWindowTo_p_wxWindow(void *x
) {
15708 return (void *)((wxWindow
*) ((wxSashWindow
*) x
));
15710 static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x
) {
15711 return (void *)((wxWindow
*) ((wxMDIClientWindow
*) x
));
15713 static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x
) {
15714 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
15716 static void *_p_wxControlTo_p_wxWindow(void *x
) {
15717 return (void *)((wxWindow
*) ((wxControl
*) x
));
15719 static void *_p_wxPreviewFrameTo_p_wxWindow(void *x
) {
15720 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
15722 static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x
) {
15723 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
15725 static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x
) {
15726 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
15728 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
15729 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
15731 static void *_p_wxPyWindowTo_p_wxWindow(void *x
) {
15732 return (void *)((wxWindow
*) ((wxPyWindow
*) x
));
15734 static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x
) {
15735 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
15737 static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x
) {
15738 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
15740 static void *_p_wxPyVListBoxTo_p_wxWindow(void *x
) {
15741 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
15743 static void *_p_wxAuiNotebookTo_p_wxWindow(void *x
) {
15744 return (void *)((wxWindow
*) (wxControl
*) ((wxAuiNotebook
*) x
));
15746 static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x
) {
15747 return (void *)((wxWindow
*) (wxPanel
*) ((wxPreviewControlBar
*) x
));
15749 static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x
) {
15750 return (void *)((wxWindow
*) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
15752 static void *_p_wxAuiTabCtrlTo_p_wxWindow(void *x
) {
15753 return (void *)((wxWindow
*) (wxControl
*) ((wxAuiTabCtrl
*) x
));
15755 static void *_p_wxFrameTo_p_wxWindow(void *x
) {
15756 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxFrame
*) x
));
15758 static void *_p_wxFontDialogTo_p_wxWindow(void *x
) {
15759 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
15761 static void *_p_wxDirDialogTo_p_wxWindow(void *x
) {
15762 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
15764 static void *_p_wxColourDialogTo_p_wxWindow(void *x
) {
15765 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
15767 static void *_p_wxDialogTo_p_wxWindow(void *x
) {
15768 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxDialog
*) x
));
15770 static void *_p_wxAuiFloatingFrameTo_p_wxWindow(void *x
) {
15771 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
15773 static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x
) {
15774 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
15776 static void *_p_p_wxSplashScreenTo_p_p_wxWindow(void *x
) {
15777 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
**) x
));
15779 static void *_p_p_wxMiniFrameTo_p_p_wxWindow(void *x
) {
15780 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
**) x
));
15782 static void *_p_p_wxPyPanelTo_p_p_wxWindow(void *x
) {
15783 return (void *)((wxWindow
**) (wxPanel
*) ((wxPyPanel
**) x
));
15785 static void *_p_p_wxMenuBarTo_p_p_wxWindow(void *x
) {
15786 return (void *)((wxWindow
**) ((wxMenuBar
**) x
));
15788 static void *_p_p_wxFindReplaceDialogTo_p_p_wxWindow(void *x
) {
15789 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
**) x
));
15791 static void *_p_p_wxProgressDialogTo_p_p_wxWindow(void *x
) {
15792 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
**) x
));
15794 static void *_p_p_wxMessageDialogTo_p_p_wxWindow(void *x
) {
15795 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
**) x
));
15797 static void *_p_p_wxNumberEntryDialogTo_p_p_wxWindow(void *x
) {
15798 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
**) x
));
15800 static void *_p_p_wxPasswordEntryDialogTo_p_p_wxWindow(void *x
) {
15801 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
**) x
));
15803 static void *_p_p_wxTextEntryDialogTo_p_p_wxWindow(void *x
) {
15804 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
**) x
));
15806 static void *_p_p_wxSingleChoiceDialogTo_p_p_wxWindow(void *x
) {
15807 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
**) x
));
15809 static void *_p_p_wxMultiChoiceDialogTo_p_p_wxWindow(void *x
) {
15810 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
**) x
));
15812 static void *_p_p_wxFileDialogTo_p_p_wxWindow(void *x
) {
15813 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
**) x
));
15815 static void *_p_p_wxPanelTo_p_p_wxWindow(void *x
) {
15816 return (void *)((wxWindow
**) ((wxPanel
**) x
));
15818 static void *_p_p_wxStatusBarTo_p_p_wxWindow(void *x
) {
15819 return (void *)((wxWindow
**) ((wxStatusBar
**) x
));
15821 static void *_p_p_wxPyVScrolledWindowTo_p_p_wxWindow(void *x
) {
15822 return (void *)((wxWindow
**) (wxPanel
*) ((wxPyVScrolledWindow
**) x
));
15824 static void *_p_p_wxTipWindowTo_p_p_wxWindow(void *x
) {
15825 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxTipWindow
**) x
));
15827 static void *_p_p_wxPyPopupTransientWindowTo_p_p_wxWindow(void *x
) {
15828 return (void *)((wxWindow
**) (wxPopupWindow
*) ((wxPyPopupTransientWindow
**) x
));
15830 static void *_p_p_wxPopupWindowTo_p_p_wxWindow(void *x
) {
15831 return (void *)((wxWindow
**) ((wxPopupWindow
**) x
));
15833 static void *_p_p_wxSashLayoutWindowTo_p_p_wxWindow(void *x
) {
15834 return (void *)((wxWindow
**) (wxSashWindow
*) ((wxSashLayoutWindow
**) x
));
15836 static void *_p_p_wxScrolledWindowTo_p_p_wxWindow(void *x
) {
15837 return (void *)((wxWindow
**) (wxPanel
*) ((wxScrolledWindow
**) x
));
15839 static void *_p_p_wxTopLevelWindowTo_p_p_wxWindow(void *x
) {
15840 return (void *)((wxWindow
**) ((wxTopLevelWindow
**) x
));
15842 static void *_p_p_wxSplashScreenWindowTo_p_p_wxWindow(void *x
) {
15843 return (void *)((wxWindow
**) ((wxSplashScreenWindow
**) x
));
15845 static void *_p_p_wxSplitterWindowTo_p_p_wxWindow(void *x
) {
15846 return (void *)((wxWindow
**) ((wxSplitterWindow
**) x
));
15848 static void *_p_p_wxSashWindowTo_p_p_wxWindow(void *x
) {
15849 return (void *)((wxWindow
**) ((wxSashWindow
**) x
));
15851 static void *_p_p_wxMDIClientWindowTo_p_p_wxWindow(void *x
) {
15852 return (void *)((wxWindow
**) ((wxMDIClientWindow
**) x
));
15854 static void *_p_p_wxPyScrolledWindowTo_p_p_wxWindow(void *x
) {
15855 return (void *)((wxWindow
**) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
**) x
));
15857 static void *_p_p_wxControlTo_p_p_wxWindow(void *x
) {
15858 return (void *)((wxWindow
**) ((wxControl
**) x
));
15860 static void *_p_p_wxPreviewFrameTo_p_p_wxWindow(void *x
) {
15861 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
**) x
));
15863 static void *_p_p_wxPyPreviewFrameTo_p_p_wxWindow(void *x
) {
15864 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
**) x
));
15866 static void *_p_p_wxMDIChildFrameTo_p_p_wxWindow(void *x
) {
15867 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
**) x
));
15869 static void *_p_p_wxControlWithItemsTo_p_p_wxWindow(void *x
) {
15870 return (void *)((wxWindow
**) (wxControl
*) ((wxControlWithItems
**) x
));
15872 static void *_p_p_wxPyWindowTo_p_p_wxWindow(void *x
) {
15873 return (void *)((wxWindow
**) ((wxPyWindow
**) x
));
15875 static void *_p_p_wxPreviewCanvasTo_p_p_wxWindow(void *x
) {
15876 return (void *)((wxWindow
**) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
**) x
));
15878 static void *_p_p_wxPyHtmlListBoxTo_p_p_wxWindow(void *x
) {
15879 return (void *)((wxWindow
**) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
**) x
));
15881 static void *_p_p_wxPyVListBoxTo_p_p_wxWindow(void *x
) {
15882 return (void *)((wxWindow
**) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
**) x
));
15884 static void *_p_p_wxAuiNotebookTo_p_p_wxWindow(void *x
) {
15885 return (void *)((wxWindow
**) (wxControl
*) ((wxAuiNotebook
**) x
));
15887 static void *_p_p_wxPreviewControlBarTo_p_p_wxWindow(void *x
) {
15888 return (void *)((wxWindow
**) (wxPanel
*) ((wxPreviewControlBar
**) x
));
15890 static void *_p_p_wxPyPreviewControlBarTo_p_p_wxWindow(void *x
) {
15891 return (void *)((wxWindow
**) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
**) x
));
15893 static void *_p_p_wxAuiTabCtrlTo_p_p_wxWindow(void *x
) {
15894 return (void *)((wxWindow
**) (wxControl
*) ((wxAuiTabCtrl
**) x
));
15896 static void *_p_p_wxFrameTo_p_p_wxWindow(void *x
) {
15897 return (void *)((wxWindow
**) (wxTopLevelWindow
*) ((wxFrame
**) x
));
15899 static void *_p_p_wxFontDialogTo_p_p_wxWindow(void *x
) {
15900 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
**) x
));
15902 static void *_p_p_wxDirDialogTo_p_p_wxWindow(void *x
) {
15903 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
**) x
));
15905 static void *_p_p_wxColourDialogTo_p_p_wxWindow(void *x
) {
15906 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
**) x
));
15908 static void *_p_p_wxDialogTo_p_p_wxWindow(void *x
) {
15909 return (void *)((wxWindow
**) (wxTopLevelWindow
*) ((wxDialog
**) x
));
15911 static void *_p_p_wxAuiFloatingFrameTo_p_p_wxWindow(void *x
) {
15912 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
**) x
));
15914 static void *_p_p_wxMDIParentFrameTo_p_p_wxWindow(void *x
) {
15915 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
**) x
));
15917 static void *_p_wxControlWithItemsTo_p_wxControl(void *x
) {
15918 return (void *)((wxControl
*) ((wxControlWithItems
*) x
));
15920 static void *_p_wxAuiTabCtrlTo_p_wxControl(void *x
) {
15921 return (void *)((wxControl
*) ((wxAuiTabCtrl
*) x
));
15923 static void *_p_wxAuiNotebookTo_p_wxControl(void *x
) {
15924 return (void *)((wxControl
*) ((wxAuiNotebook
*) x
));
15926 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
15927 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
15929 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
15930 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
15932 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
15933 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
15935 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
15936 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
15938 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
15939 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
15941 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
15942 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
15944 static void *_p_wxSplitterEventTo_p_wxEvent(void *x
) {
15945 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
15947 static void *_p_wxAuiManagerEventTo_p_wxEvent(void *x
) {
15948 return (void *)((wxEvent
*) ((wxAuiManagerEvent
*) x
));
15950 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
15951 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
15953 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
15954 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
15956 static void *_p_wxFindDialogEventTo_p_wxEvent(void *x
) {
15957 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
15959 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
15960 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
15962 static void *_p_wxMouseCaptureLostEventTo_p_wxEvent(void *x
) {
15963 return (void *)((wxEvent
*) ((wxMouseCaptureLostEvent
*) x
));
15965 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
15966 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
15968 static void *_p_wxCalculateLayoutEventTo_p_wxEvent(void *x
) {
15969 return (void *)((wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
15971 static void *_p_wxAuiNotebookEventTo_p_wxEvent(void *x
) {
15972 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
15974 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
15975 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
15977 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
15978 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
15980 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
15981 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
15983 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
15984 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
15986 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
15987 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
15989 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
15990 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
15992 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
15993 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
15995 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
15996 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
15998 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
15999 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
16001 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
16002 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
16004 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
16005 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
16007 static void *_p_wxClipboardTextEventTo_p_wxEvent(void *x
) {
16008 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
16010 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
16011 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
16013 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
16014 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
16016 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
16017 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
16019 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
16020 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
16022 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
16023 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
16025 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
16026 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
16028 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
16029 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
16031 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
16032 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
16034 static void *_p_wxSashEventTo_p_wxEvent(void *x
) {
16035 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxSashEvent
*) x
));
16037 static void *_p_wxQueryLayoutInfoEventTo_p_wxEvent(void *x
) {
16038 return (void *)((wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
16040 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
16041 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
16043 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
16044 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
16046 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
16047 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
16049 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
16050 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
16052 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
16053 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
16055 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
16056 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
16058 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
16059 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
16061 static void *_p_wxTaskBarIconEventTo_p_wxEvent(void *x
) {
16062 return (void *)((wxEvent
*) ((wxTaskBarIconEvent
*) x
));
16064 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
16065 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
16067 static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x
) {
16068 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
16070 static void *_p_wxPreviewFrameTo_p_wxObject(void *x
) {
16071 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
16073 static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x
) {
16074 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
16076 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
16077 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
16079 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
16080 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
16082 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
16083 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
16085 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
16086 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
16088 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
16089 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
16091 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
16092 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
16094 static void *_p_wxSizerTo_p_wxObject(void *x
) {
16095 return (void *)((wxObject
*) ((wxSizer
*) x
));
16097 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
16098 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
16100 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
16101 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
16103 static void *_p_wxPyPanelTo_p_wxObject(void *x
) {
16104 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
16106 static void *_p_wxEventTo_p_wxObject(void *x
) {
16107 return (void *)((wxObject
*) ((wxEvent
*) x
));
16109 static void *_p_wxFontDataTo_p_wxObject(void *x
) {
16110 return (void *)((wxObject
*) ((wxFontData
*) x
));
16112 static void *_p_wxPrintDataTo_p_wxObject(void *x
) {
16113 return (void *)((wxObject
*) ((wxPrintData
*) x
));
16115 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
16116 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
16118 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
16119 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
16121 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
16122 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
16124 static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x
) {
16125 return (void *)((wxObject
*) ((wxLayoutAlgorithm
*) x
));
16127 static void *_p_wxPyTaskBarIconTo_p_wxObject(void *x
) {
16128 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
16130 static void *_p_wxFindDialogEventTo_p_wxObject(void *x
) {
16131 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
16133 static void *_p_wxAuiTabCtrlTo_p_wxObject(void *x
) {
16134 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxAuiTabCtrl
*) x
));
16136 static void *_p_wxClipboardTextEventTo_p_wxObject(void *x
) {
16137 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
16139 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
16140 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
16142 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
16143 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
16145 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
16146 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
16148 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
16149 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
16151 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
16152 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
16154 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
16155 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
16157 static void *_p_wxPreviewCanvasTo_p_wxObject(void *x
) {
16158 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
16160 static void *_p_wxControlTo_p_wxObject(void *x
) {
16161 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
16163 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
16164 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
16166 static void *_p_wxSplitterEventTo_p_wxObject(void *x
) {
16167 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
16169 static void *_p_wxAuiManagerEventTo_p_wxObject(void *x
) {
16170 return (void *)((wxObject
*) (wxEvent
*) ((wxAuiManagerEvent
*) x
));
16172 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
16173 return (void *)((wxObject
*) ((wxFSFile
*) x
));
16175 static void *_p_wxFindReplaceDataTo_p_wxObject(void *x
) {
16176 return (void *)((wxObject
*) ((wxFindReplaceData
*) x
));
16178 static void *_p_wxAuiFloatingFrameTo_p_wxObject(void *x
) {
16179 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
16181 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
16182 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
16184 static void *_p_wxMDIChildFrameTo_p_wxObject(void *x
) {
16185 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
16187 static void *_p_wxAuiNotebookTo_p_wxObject(void *x
) {
16188 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxAuiNotebook
*) x
));
16190 static void *_p_wxColourDataTo_p_wxObject(void *x
) {
16191 return (void *)((wxObject
*) ((wxColourData
*) x
));
16193 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
16194 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
16196 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
16197 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
16199 static void *_p_wxPyWindowTo_p_wxObject(void *x
) {
16200 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPyWindow
*) x
));
16202 static void *_p_wxSplashScreenTo_p_wxObject(void *x
) {
16203 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
16205 static void *_p_wxFileDialogTo_p_wxObject(void *x
) {
16206 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
16208 static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x
) {
16209 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
16211 static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x
) {
16212 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
16214 static void *_p_wxTextEntryDialogTo_p_wxObject(void *x
) {
16215 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
16217 static void *_p_wxPasswordEntryDialogTo_p_wxObject(void *x
) {
16218 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
16220 static void *_p_wxNumberEntryDialogTo_p_wxObject(void *x
) {
16221 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
16223 static void *_p_wxMessageDialogTo_p_wxObject(void *x
) {
16224 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
16226 static void *_p_wxProgressDialogTo_p_wxObject(void *x
) {
16227 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
16229 static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x
) {
16230 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
16232 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
16233 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
16235 static void *_p_wxPrinterTo_p_wxObject(void *x
) {
16236 return (void *)((wxObject
*) ((wxPrinter
*) x
));
16238 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
16239 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
16241 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
16242 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
16244 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
16245 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
16247 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
16248 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
16250 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
16251 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
16253 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
16254 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
16256 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
16257 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
16259 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
16260 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
16262 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
16263 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
16265 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
16266 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
16268 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
16269 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
16271 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
16272 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
16274 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
16275 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
16277 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
16278 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
16280 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
16281 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
16283 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
16284 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
16286 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
16287 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
16289 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
16290 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
16292 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
16293 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
16295 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
16296 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
16298 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
16299 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
16301 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
16302 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
16304 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
16305 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
16307 static void *_p_wxTGAHandlerTo_p_wxObject(void *x
) {
16308 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTGAHandler
*) x
));
16310 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
16311 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
16313 static void *_p_wxMouseCaptureLostEventTo_p_wxObject(void *x
) {
16314 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureLostEvent
*) x
));
16316 static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x
) {
16317 return (void *)((wxObject
*) (wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
16319 static void *_p_wxPyVListBoxTo_p_wxObject(void *x
) {
16320 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
16322 static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x
) {
16323 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
16325 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
16326 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
16328 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
16329 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
16331 static void *_p_wxMiniFrameTo_p_wxObject(void *x
) {
16332 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
16334 static void *_p_wxImageTo_p_wxObject(void *x
) {
16335 return (void *)((wxObject
*) ((wxImage
*) x
));
16337 static void *_p_wxFrameTo_p_wxObject(void *x
) {
16338 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
16340 static void *_p_wxPyPrintoutTo_p_wxObject(void *x
) {
16341 return (void *)((wxObject
*) ((wxPyPrintout
*) x
));
16343 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
16344 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
16346 static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x
) {
16347 return (void *)((wxObject
*) (wxEvent
*) ((wxTaskBarIconEvent
*) x
));
16349 static void *_p_wxStatusBarTo_p_wxObject(void *x
) {
16350 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxStatusBar
*) x
));
16352 static void *_p_wxAuiManagerTo_p_wxObject(void *x
) {
16353 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxAuiManager
*) x
));
16355 static void *_p_wxMDIParentFrameTo_p_wxObject(void *x
) {
16356 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
16358 static void *_p_wxAuiNotebookEventTo_p_wxObject(void *x
) {
16359 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
16361 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
16362 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
16364 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
16365 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
16367 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
16368 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
16370 static void *_p_wxWindowTo_p_wxObject(void *x
) {
16371 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
16373 static void *_p_wxMenuTo_p_wxObject(void *x
) {
16374 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
16376 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
16377 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
16379 static void *_p_wxScrolledWindowTo_p_wxObject(void *x
) {
16380 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
16382 static void *_p_wxTopLevelWindowTo_p_wxObject(void *x
) {
16383 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxTopLevelWindow
*) x
));
16385 static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x
) {
16386 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplashScreenWindow
*) x
));
16388 static void *_p_wxSplitterWindowTo_p_wxObject(void *x
) {
16389 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplitterWindow
*) x
));
16391 static void *_p_wxSashWindowTo_p_wxObject(void *x
) {
16392 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSashWindow
*) x
));
16394 static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x
) {
16395 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
16397 static void *_p_wxPopupWindowTo_p_wxObject(void *x
) {
16398 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPopupWindow
*) x
));
16400 static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x
) {
16401 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
16403 static void *_p_wxTipWindowTo_p_wxObject(void *x
) {
16404 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxTipWindow
*) x
));
16406 static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x
) {
16407 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
16409 static void *_p_wxMDIClientWindowTo_p_wxObject(void *x
) {
16410 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMDIClientWindow
*) x
));
16412 static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x
) {
16413 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
16415 static void *_p_wxSashEventTo_p_wxObject(void *x
) {
16416 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxSashEvent
*) x
));
16418 static void *_p_wxPrintPreviewTo_p_wxObject(void *x
) {
16419 return (void *)((wxObject
*) ((wxPrintPreview
*) x
));
16421 static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x
) {
16422 return (void *)((wxObject
*) (wxPrintPreview
*) ((wxPyPrintPreview
*) x
));
16424 static void *_p_wxPanelTo_p_wxObject(void *x
) {
16425 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPanel
*) x
));
16427 static void *_p_wxDialogTo_p_wxObject(void *x
) {
16428 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
16430 static void *_p_wxColourDialogTo_p_wxObject(void *x
) {
16431 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
16433 static void *_p_wxDirDialogTo_p_wxObject(void *x
) {
16434 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
16436 static void *_p_wxFontDialogTo_p_wxObject(void *x
) {
16437 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
16439 static void *_p_wxPageSetupDialogTo_p_wxObject(void *x
) {
16440 return (void *)((wxObject
*) ((wxPageSetupDialog
*) x
));
16442 static void *_p_wxPrintDialogTo_p_wxObject(void *x
) {
16443 return (void *)((wxObject
*) ((wxPrintDialog
*) x
));
16445 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
16446 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
16448 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
16449 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
16451 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
16452 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
16454 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
16455 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
16457 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
16458 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
16460 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
16461 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
16463 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
16464 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
16466 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
16467 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
16469 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
16470 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
16472 static void *_p_wxPreviewControlBarTo_p_wxObject(void *x
) {
16473 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
16475 static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x
) {
16476 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
16478 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
16479 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
16481 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
16482 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
16484 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
16485 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
16487 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
16488 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
16490 static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x
) {
16491 return (void *)((wxObject
*) ((wxPageSetupDialogData
*) x
));
16493 static void *_p_wxPrintDialogDataTo_p_wxObject(void *x
) {
16494 return (void *)((wxObject
*) ((wxPrintDialogData
*) x
));
16496 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
16497 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
16499 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
16500 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
16502 static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x
) {
16503 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
16505 static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x
) {
16506 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
16508 static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x
) {
16509 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
16511 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
16512 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
16514 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
16515 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
16517 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
16518 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
16520 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
16521 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
16523 static void *_p_wxPasswordEntryDialogTo_p_wxEvtHandler(void *x
) {
16524 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
16526 static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x
) {
16527 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
16529 static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x
) {
16530 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
16532 static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x
) {
16533 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
16535 static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x
) {
16536 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
16538 static void *_p_wxNumberEntryDialogTo_p_wxEvtHandler(void *x
) {
16539 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
16541 static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x
) {
16542 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
16544 static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x
) {
16545 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
16547 static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x
) {
16548 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
16550 static void *_p_wxPanelTo_p_wxEvtHandler(void *x
) {
16551 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPanel
*) x
));
16553 static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x
) {
16554 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxStatusBar
*) x
));
16556 static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x
) {
16557 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
16559 static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x
) {
16560 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxTipWindow
*) x
));
16562 static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x
) {
16563 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
16565 static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x
) {
16566 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPopupWindow
*) x
));
16568 static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x
) {
16569 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
16571 static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x
) {
16572 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSashWindow
*) x
));
16574 static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x
) {
16575 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplitterWindow
*) x
));
16577 static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x
) {
16578 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplashScreenWindow
*) x
));
16580 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
16581 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
16583 static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x
) {
16584 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
16586 static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x
) {
16587 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxTopLevelWindow
*) x
));
16589 static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x
) {
16590 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMDIClientWindow
*) x
));
16592 static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x
) {
16593 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
16595 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
16596 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
16598 static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x
) {
16599 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
16601 static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x
) {
16602 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
16604 static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x
) {
16605 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
16607 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
16608 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
16610 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
16611 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
16613 static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x
) {
16614 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPyWindow
*) x
));
16616 static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x
) {
16617 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
16619 static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x
) {
16620 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
16622 static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x
) {
16623 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
16625 static void *_p_wxAuiNotebookTo_p_wxEvtHandler(void *x
) {
16626 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxAuiNotebook
*) x
));
16628 static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x
) {
16629 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
16631 static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x
) {
16632 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
16634 static void *_p_wxPyTaskBarIconTo_p_wxEvtHandler(void *x
) {
16635 return (void *)((wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
16637 static void *_p_wxAuiTabCtrlTo_p_wxEvtHandler(void *x
) {
16638 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxAuiTabCtrl
*) x
));
16640 static void *_p_wxFrameTo_p_wxEvtHandler(void *x
) {
16641 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
16643 static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x
) {
16644 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
16646 static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x
) {
16647 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
16649 static void *_p_wxDialogTo_p_wxEvtHandler(void *x
) {
16650 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
16652 static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x
) {
16653 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
16655 static void *_p_wxAuiFloatingFrameTo_p_wxEvtHandler(void *x
) {
16656 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
16658 static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x
) {
16659 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
16661 static void *_p_wxAuiManagerTo_p_wxEvtHandler(void *x
) {
16662 return (void *)((wxEvtHandler
*) ((wxAuiManager
*) x
));
16664 static void *_p_wxAuiTabCtrlTo_p_wxAuiTabContainer(void *x
) {
16665 return (void *)((wxAuiTabContainer
*) ((wxAuiTabCtrl
*) x
));
16667 static void *_p_wxGBSizerItemTo_p_wxSizerItem(void *x
) {
16668 return (void *)((wxSizerItem
*) ((wxGBSizerItem
*) x
));
16670 static void *_p_wxMDIChildFrameTo_p_wxFrame(void *x
) {
16671 return (void *)((wxFrame
*) ((wxMDIChildFrame
*) x
));
16673 static void *_p_wxProgressDialogTo_p_wxFrame(void *x
) {
16674 return (void *)((wxFrame
*) ((wxProgressDialog
*) x
));
16676 static void *_p_wxTipWindowTo_p_wxFrame(void *x
) {
16677 return (void *)((wxFrame
*) ((wxTipWindow
*) x
));
16679 static void *_p_wxPreviewFrameTo_p_wxFrame(void *x
) {
16680 return (void *)((wxFrame
*) ((wxPreviewFrame
*) x
));
16682 static void *_p_wxPyPreviewFrameTo_p_wxFrame(void *x
) {
16683 return (void *)((wxFrame
*) (wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
16685 static void *_p_wxMiniFrameTo_p_wxFrame(void *x
) {
16686 return (void *)((wxFrame
*) ((wxMiniFrame
*) x
));
16688 static void *_p_wxSplashScreenTo_p_wxFrame(void *x
) {
16689 return (void *)((wxFrame
*) ((wxSplashScreen
*) x
));
16691 static void *_p_wxMDIParentFrameTo_p_wxFrame(void *x
) {
16692 return (void *)((wxFrame
*) ((wxMDIParentFrame
*) x
));
16694 static void *_p_wxAuiFloatingFrameTo_p_wxFrame(void *x
) {
16695 return (void *)((wxFrame
*) (wxMiniFrame
*) ((wxAuiFloatingFrame
*) x
));
16697 static void *_p_wxSashEventTo_p_wxCommandEvent(void *x
) {
16698 return (void *)((wxCommandEvent
*) ((wxSashEvent
*) x
));
16700 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) {
16701 return (void *)((wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
16703 static void *_p_wxSplitterEventTo_p_wxCommandEvent(void *x
) {
16704 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
16706 static void *_p_wxClipboardTextEventTo_p_wxCommandEvent(void *x
) {
16707 return (void *)((wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
16709 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) {
16710 return (void *)((wxCommandEvent
*) ((wxScrollEvent
*) x
));
16712 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) {
16713 return (void *)((wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
16715 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) {
16716 return (void *)((wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
16718 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) {
16719 return (void *)((wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
16721 static void *_p_wxAuiNotebookEventTo_p_wxCommandEvent(void *x
) {
16722 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
16724 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) {
16725 return (void *)((wxCommandEvent
*) ((wxDateEvent
*) x
));
16727 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) {
16728 return (void *)((wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
16730 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) {
16731 return (void *)((wxCommandEvent
*) ((wxNotifyEvent
*) x
));
16733 static void *_p_wxFindDialogEventTo_p_wxCommandEvent(void *x
) {
16734 return (void *)((wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
16736 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) {
16737 return (void *)((wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
16739 static void *_p_wxAuiDefaultDockArtTo_p_wxAuiDockArt(void *x
) {
16740 return (void *)((wxAuiDockArt
*) ((wxAuiDefaultDockArt
*) x
));
16742 static void *_p_wxPyAuiDockArtTo_p_wxAuiDockArt(void *x
) {
16743 return (void *)((wxAuiDockArt
*) (wxAuiDefaultDockArt
*) ((wxPyAuiDockArt
*) x
));
16745 static void *_p_wxPyAuiDockArtTo_p_wxAuiDefaultDockArt(void *x
) {
16746 return (void *)((wxAuiDefaultDockArt
*) ((wxPyAuiDockArt
*) x
));
16748 static void *_p_wxPyAuiTabArtTo_p_wxAuiDefaultTabArt(void *x
) {
16749 return (void *)((wxAuiDefaultTabArt
*) ((wxPyAuiTabArt
*) x
));
16751 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, (void*)0, 0};
16752 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};
16753 static swig_type_info _swigt__p_int
= {"_p_int", "int *", 0, 0, (void*)0, 0};
16754 static swig_type_info _swigt__p_p_wxAuiTabContainerButton
= {"_p_p_wxAuiTabContainerButton", "wxAuiTabContainerButton **", 0, 0, (void*)0, 0};
16755 static swig_type_info _swigt__p_p_wxWindow
= {"_p_p_wxWindow", "wxWindow **", 0, 0, (void*)0, 0};
16756 static swig_type_info _swigt__p_p_wxSplashScreen
= {"_p_p_wxSplashScreen", 0, 0, 0, 0, 0};
16757 static swig_type_info _swigt__p_p_wxMiniFrame
= {"_p_p_wxMiniFrame", 0, 0, 0, 0, 0};
16758 static swig_type_info _swigt__p_p_wxPyPanel
= {"_p_p_wxPyPanel", 0, 0, 0, 0, 0};
16759 static swig_type_info _swigt__p_p_wxMenuBar
= {"_p_p_wxMenuBar", 0, 0, 0, 0, 0};
16760 static swig_type_info _swigt__p_p_wxFindReplaceDialog
= {"_p_p_wxFindReplaceDialog", 0, 0, 0, 0, 0};
16761 static swig_type_info _swigt__p_p_wxProgressDialog
= {"_p_p_wxProgressDialog", 0, 0, 0, 0, 0};
16762 static swig_type_info _swigt__p_p_wxMessageDialog
= {"_p_p_wxMessageDialog", 0, 0, 0, 0, 0};
16763 static swig_type_info _swigt__p_p_wxNumberEntryDialog
= {"_p_p_wxNumberEntryDialog", 0, 0, 0, 0, 0};
16764 static swig_type_info _swigt__p_p_wxPasswordEntryDialog
= {"_p_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0};
16765 static swig_type_info _swigt__p_p_wxTextEntryDialog
= {"_p_p_wxTextEntryDialog", 0, 0, 0, 0, 0};
16766 static swig_type_info _swigt__p_p_wxSingleChoiceDialog
= {"_p_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0};
16767 static swig_type_info _swigt__p_p_wxMultiChoiceDialog
= {"_p_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0};
16768 static swig_type_info _swigt__p_p_wxFileDialog
= {"_p_p_wxFileDialog", 0, 0, 0, 0, 0};
16769 static swig_type_info _swigt__p_p_wxPanel
= {"_p_p_wxPanel", 0, 0, 0, 0, 0};
16770 static swig_type_info _swigt__p_p_wxStatusBar
= {"_p_p_wxStatusBar", 0, 0, 0, 0, 0};
16771 static swig_type_info _swigt__p_p_wxPyVScrolledWindow
= {"_p_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0};
16772 static swig_type_info _swigt__p_p_wxTipWindow
= {"_p_p_wxTipWindow", 0, 0, 0, 0, 0};
16773 static swig_type_info _swigt__p_p_wxPyPopupTransientWindow
= {"_p_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0};
16774 static swig_type_info _swigt__p_p_wxPopupWindow
= {"_p_p_wxPopupWindow", 0, 0, 0, 0, 0};
16775 static swig_type_info _swigt__p_p_wxSashLayoutWindow
= {"_p_p_wxSashLayoutWindow", 0, 0, 0, 0, 0};
16776 static swig_type_info _swigt__p_p_wxScrolledWindow
= {"_p_p_wxScrolledWindow", 0, 0, 0, 0, 0};
16777 static swig_type_info _swigt__p_p_wxTopLevelWindow
= {"_p_p_wxTopLevelWindow", 0, 0, 0, 0, 0};
16778 static swig_type_info _swigt__p_p_wxSplashScreenWindow
= {"_p_p_wxSplashScreenWindow", 0, 0, 0, 0, 0};
16779 static swig_type_info _swigt__p_p_wxSplitterWindow
= {"_p_p_wxSplitterWindow", 0, 0, 0, 0, 0};
16780 static swig_type_info _swigt__p_p_wxSashWindow
= {"_p_p_wxSashWindow", 0, 0, 0, 0, 0};
16781 static swig_type_info _swigt__p_p_wxMDIClientWindow
= {"_p_p_wxMDIClientWindow", 0, 0, 0, 0, 0};
16782 static swig_type_info _swigt__p_p_wxPyScrolledWindow
= {"_p_p_wxPyScrolledWindow", 0, 0, 0, 0, 0};
16783 static swig_type_info _swigt__p_p_wxPreviewFrame
= {"_p_p_wxPreviewFrame", 0, 0, 0, 0, 0};
16784 static swig_type_info _swigt__p_p_wxPyPreviewFrame
= {"_p_p_wxPyPreviewFrame", 0, 0, 0, 0, 0};
16785 static swig_type_info _swigt__p_p_wxControl
= {"_p_p_wxControl", 0, 0, 0, 0, 0};
16786 static swig_type_info _swigt__p_p_wxMDIChildFrame
= {"_p_p_wxMDIChildFrame", 0, 0, 0, 0, 0};
16787 static swig_type_info _swigt__p_p_wxControlWithItems
= {"_p_p_wxControlWithItems", 0, 0, 0, 0, 0};
16788 static swig_type_info _swigt__p_p_wxPyWindow
= {"_p_p_wxPyWindow", 0, 0, 0, 0, 0};
16789 static swig_type_info _swigt__p_p_wxPreviewCanvas
= {"_p_p_wxPreviewCanvas", 0, 0, 0, 0, 0};
16790 static swig_type_info _swigt__p_p_wxPyHtmlListBox
= {"_p_p_wxPyHtmlListBox", 0, 0, 0, 0, 0};
16791 static swig_type_info _swigt__p_p_wxPyVListBox
= {"_p_p_wxPyVListBox", 0, 0, 0, 0, 0};
16792 static swig_type_info _swigt__p_p_wxAuiNotebook
= {"_p_p_wxAuiNotebook", 0, 0, 0, 0, 0};
16793 static swig_type_info _swigt__p_p_wxPreviewControlBar
= {"_p_p_wxPreviewControlBar", 0, 0, 0, 0, 0};
16794 static swig_type_info _swigt__p_p_wxPyPreviewControlBar
= {"_p_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0};
16795 static swig_type_info _swigt__p_p_wxAuiTabCtrl
= {"_p_p_wxAuiTabCtrl", 0, 0, 0, 0, 0};
16796 static swig_type_info _swigt__p_p_wxFrame
= {"_p_p_wxFrame", 0, 0, 0, 0, 0};
16797 static swig_type_info _swigt__p_p_wxFontDialog
= {"_p_p_wxFontDialog", 0, 0, 0, 0, 0};
16798 static swig_type_info _swigt__p_p_wxDirDialog
= {"_p_p_wxDirDialog", 0, 0, 0, 0, 0};
16799 static swig_type_info _swigt__p_p_wxColourDialog
= {"_p_p_wxColourDialog", 0, 0, 0, 0, 0};
16800 static swig_type_info _swigt__p_p_wxDialog
= {"_p_p_wxDialog", 0, 0, 0, 0, 0};
16801 static swig_type_info _swigt__p_p_wxAuiFloatingFrame
= {"_p_p_wxAuiFloatingFrame", 0, 0, 0, 0, 0};
16802 static swig_type_info _swigt__p_p_wxMDIParentFrame
= {"_p_p_wxMDIParentFrame", 0, 0, 0, 0, 0};
16803 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0};
16804 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0};
16805 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxUIntPtr *", 0, 0, (void*)0, 0};
16806 static swig_type_info _swigt__p_wxArrayString
= {"_p_wxArrayString", "wxArrayString *", 0, 0, (void*)0, 0};
16807 static swig_type_info _swigt__p_wxAuiDefaultDockArt
= {"_p_wxAuiDefaultDockArt", "wxAuiDefaultDockArt *", 0, 0, (void*)0, 0};
16808 static swig_type_info _swigt__p_wxAuiDefaultTabArt
= {"_p_wxAuiDefaultTabArt", "wxAuiDefaultTabArt *", 0, 0, (void*)0, 0};
16809 static swig_type_info _swigt__p_wxAuiDockArt
= {"_p_wxAuiDockArt", "wxAuiDockArt *", 0, 0, (void*)0, 0};
16810 static swig_type_info _swigt__p_wxAuiDockInfo
= {"_p_wxAuiDockInfo", "wxAuiDockInfo *", 0, 0, (void*)0, 0};
16811 static swig_type_info _swigt__p_wxAuiDockUIPart
= {"_p_wxAuiDockUIPart", "wxAuiDockUIPart *", 0, 0, (void*)0, 0};
16812 static swig_type_info _swigt__p_wxAuiFloatingFrame
= {"_p_wxAuiFloatingFrame", "wxAuiFloatingFrame *", 0, 0, (void*)0, 0};
16813 static swig_type_info _swigt__p_wxAuiManager
= {"_p_wxAuiManager", "wxAuiManager *", 0, 0, (void*)0, 0};
16814 static swig_type_info _swigt__p_wxAuiManagerEvent
= {"_p_wxAuiManagerEvent", "wxAuiManagerEvent *", 0, 0, (void*)0, 0};
16815 static swig_type_info _swigt__p_wxAuiNotebook
= {"_p_wxAuiNotebook", "wxAuiNotebook *", 0, 0, (void*)0, 0};
16816 static swig_type_info _swigt__p_wxAuiNotebookEvent
= {"_p_wxAuiNotebookEvent", "wxAuiNotebookEvent *", 0, 0, (void*)0, 0};
16817 static swig_type_info _swigt__p_wxAuiNotebookPage
= {"_p_wxAuiNotebookPage", "wxAuiNotebookPage *", 0, 0, (void*)0, 0};
16818 static swig_type_info _swigt__p_wxAuiNotebookPageArray
= {"_p_wxAuiNotebookPageArray", "wxAuiNotebookPageArray *", 0, 0, (void*)0, 0};
16819 static swig_type_info _swigt__p_wxAuiPaneButton
= {"_p_wxAuiPaneButton", "wxAuiPaneButton *", 0, 0, (void*)0, 0};
16820 static swig_type_info _swigt__p_wxAuiPaneButtonArray
= {"_p_wxAuiPaneButtonArray", "wxAuiPaneButtonArray *", 0, 0, (void*)0, 0};
16821 static swig_type_info _swigt__p_wxAuiPaneInfo
= {"_p_wxAuiPaneInfo", "wxAuiPaneInfo *", 0, 0, (void*)0, 0};
16822 static swig_type_info _swigt__p_wxAuiPaneInfoPtrArray
= {"_p_wxAuiPaneInfoPtrArray", "wxAuiPaneInfoPtrArray *", 0, 0, (void*)0, 0};
16823 static swig_type_info _swigt__p_wxAuiTabArt
= {"_p_wxAuiTabArt", "wxAuiTabArt *", 0, 0, (void*)0, 0};
16824 static swig_type_info _swigt__p_wxAuiTabContainer
= {"_p_wxAuiTabContainer", "wxAuiTabContainer *", 0, 0, (void*)0, 0};
16825 static swig_type_info _swigt__p_wxAuiTabContainerButton
= {"_p_wxAuiTabContainerButton", "wxAuiTabContainerButton *", 0, 0, (void*)0, 0};
16826 static swig_type_info _swigt__p_wxAuiTabCtrl
= {"_p_wxAuiTabCtrl", "wxAuiTabCtrl *", 0, 0, (void*)0, 0};
16827 static swig_type_info _swigt__p_wxBitmap
= {"_p_wxBitmap", "wxBitmap *", 0, 0, (void*)0, 0};
16828 static swig_type_info _swigt__p_wxColor
= {"_p_wxColor", "wxColor *", 0, 0, (void*)0, 0};
16829 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0};
16830 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", "wxCommandEvent *", 0, 0, (void*)0, 0};
16831 static swig_type_info _swigt__p_wxSashEvent
= {"_p_wxSashEvent", 0, 0, 0, 0, 0};
16832 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0};
16833 static swig_type_info _swigt__p_wxSplitterEvent
= {"_p_wxSplitterEvent", 0, 0, 0, 0, 0};
16834 static swig_type_info _swigt__p_wxClipboardTextEvent
= {"_p_wxClipboardTextEvent", 0, 0, 0, 0, 0};
16835 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0};
16836 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0};
16837 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0};
16838 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0};
16839 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0, 0};
16840 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0};
16841 static swig_type_info _swigt__p_wxFindDialogEvent
= {"_p_wxFindDialogEvent", 0, 0, 0, 0, 0};
16842 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0};
16843 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", "wxControl *", 0, 0, (void*)0, 0};
16844 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0};
16845 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0};
16846 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0};
16847 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0};
16848 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0, 0};
16849 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0, 0};
16850 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0};
16851 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0};
16852 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0};
16853 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0};
16854 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0, 0};
16855 static swig_type_info _swigt__p_wxMouseCaptureLostEvent
= {"_p_wxMouseCaptureLostEvent", 0, 0, 0, 0, 0};
16856 static swig_type_info _swigt__p_wxCalculateLayoutEvent
= {"_p_wxCalculateLayoutEvent", 0, 0, 0, 0, 0};
16857 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0};
16858 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0};
16859 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0};
16860 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0};
16861 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0, 0};
16862 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0};
16863 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0};
16864 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0};
16865 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0};
16866 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0};
16867 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0};
16868 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0};
16869 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0};
16870 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0};
16871 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0};
16872 static swig_type_info _swigt__p_wxQueryLayoutInfoEvent
= {"_p_wxQueryLayoutInfoEvent", 0, 0, 0, 0, 0};
16873 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0, 0};
16874 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0};
16875 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0};
16876 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", 0, 0, 0, 0, 0};
16877 static swig_type_info _swigt__p_wxTaskBarIconEvent
= {"_p_wxTaskBarIconEvent", 0, 0, 0, 0, 0};
16878 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0};
16879 static swig_type_info _swigt__p_wxSplashScreen
= {"_p_wxSplashScreen", 0, 0, 0, 0, 0};
16880 static swig_type_info _swigt__p_wxPyPanel
= {"_p_wxPyPanel", 0, 0, 0, 0, 0};
16881 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", 0, 0, 0, 0, 0};
16882 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", 0, 0, 0, 0, 0};
16883 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0, 0};
16884 static swig_type_info _swigt__p_wxNumberEntryDialog
= {"_p_wxNumberEntryDialog", 0, 0, 0, 0, 0};
16885 static swig_type_info _swigt__p_wxFileDialog
= {"_p_wxFileDialog", 0, 0, 0, 0, 0};
16886 static swig_type_info _swigt__p_wxMultiChoiceDialog
= {"_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0};
16887 static swig_type_info _swigt__p_wxFindReplaceDialog
= {"_p_wxFindReplaceDialog", 0, 0, 0, 0, 0};
16888 static swig_type_info _swigt__p_wxProgressDialog
= {"_p_wxProgressDialog", 0, 0, 0, 0, 0};
16889 static swig_type_info _swigt__p_wxMessageDialog
= {"_p_wxMessageDialog", 0, 0, 0, 0, 0};
16890 static swig_type_info _swigt__p_wxPasswordEntryDialog
= {"_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0};
16891 static swig_type_info _swigt__p_wxTextEntryDialog
= {"_p_wxTextEntryDialog", 0, 0, 0, 0, 0};
16892 static swig_type_info _swigt__p_wxSingleChoiceDialog
= {"_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0};
16893 static swig_type_info _swigt__p_wxPanel
= {"_p_wxPanel", 0, 0, 0, 0, 0};
16894 static swig_type_info _swigt__p_wxStatusBar
= {"_p_wxStatusBar", 0, 0, 0, 0, 0};
16895 static swig_type_info _swigt__p_wxScrolledWindow
= {"_p_wxScrolledWindow", 0, 0, 0, 0, 0};
16896 static swig_type_info _swigt__p_wxTipWindow
= {"_p_wxTipWindow", 0, 0, 0, 0, 0};
16897 static swig_type_info _swigt__p_wxMDIClientWindow
= {"_p_wxMDIClientWindow", 0, 0, 0, 0, 0};
16898 static swig_type_info _swigt__p_wxPyScrolledWindow
= {"_p_wxPyScrolledWindow", 0, 0, 0, 0, 0};
16899 static swig_type_info _swigt__p_wxSashWindow
= {"_p_wxSashWindow", 0, 0, 0, 0, 0};
16900 static swig_type_info _swigt__p_wxSplitterWindow
= {"_p_wxSplitterWindow", 0, 0, 0, 0, 0};
16901 static swig_type_info _swigt__p_wxSplashScreenWindow
= {"_p_wxSplashScreenWindow", 0, 0, 0, 0, 0};
16902 static swig_type_info _swigt__p_wxSashLayoutWindow
= {"_p_wxSashLayoutWindow", 0, 0, 0, 0, 0};
16903 static swig_type_info _swigt__p_wxPopupWindow
= {"_p_wxPopupWindow", 0, 0, 0, 0, 0};
16904 static swig_type_info _swigt__p_wxPyPopupTransientWindow
= {"_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0};
16905 static swig_type_info _swigt__p_wxPyVScrolledWindow
= {"_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0};
16906 static swig_type_info _swigt__p_wxPyPreviewFrame
= {"_p_wxPyPreviewFrame", 0, 0, 0, 0, 0};
16907 static swig_type_info _swigt__p_wxPreviewFrame
= {"_p_wxPreviewFrame", 0, 0, 0, 0, 0};
16908 static swig_type_info _swigt__p_wxMDIChildFrame
= {"_p_wxMDIChildFrame", 0, 0, 0, 0, 0};
16909 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0, 0};
16910 static swig_type_info _swigt__p_wxPyWindow
= {"_p_wxPyWindow", 0, 0, 0, 0, 0};
16911 static swig_type_info _swigt__p_wxPreviewCanvas
= {"_p_wxPreviewCanvas", 0, 0, 0, 0, 0};
16912 static swig_type_info _swigt__p_wxPyHtmlListBox
= {"_p_wxPyHtmlListBox", 0, 0, 0, 0, 0};
16913 static swig_type_info _swigt__p_wxPyVListBox
= {"_p_wxPyVListBox", 0, 0, 0, 0, 0};
16914 static swig_type_info _swigt__p_wxPreviewControlBar
= {"_p_wxPreviewControlBar", 0, 0, 0, 0, 0};
16915 static swig_type_info _swigt__p_wxPyPreviewControlBar
= {"_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0};
16916 static swig_type_info _swigt__p_wxPyTaskBarIcon
= {"_p_wxPyTaskBarIcon", 0, 0, 0, 0, 0};
16917 static swig_type_info _swigt__p_wxFontDialog
= {"_p_wxFontDialog", 0, 0, 0, 0, 0};
16918 static swig_type_info _swigt__p_wxDirDialog
= {"_p_wxDirDialog", 0, 0, 0, 0, 0};
16919 static swig_type_info _swigt__p_wxColourDialog
= {"_p_wxColourDialog", 0, 0, 0, 0, 0};
16920 static swig_type_info _swigt__p_wxDialog
= {"_p_wxDialog", 0, 0, 0, 0, 0};
16921 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", 0, 0, 0, 0, 0};
16922 static swig_type_info _swigt__p_wxMDIParentFrame
= {"_p_wxMDIParentFrame", 0, 0, 0, 0, 0};
16923 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0};
16924 static swig_type_info _swigt__p_wxFrame
= {"_p_wxFrame", "wxFrame *", 0, 0, (void*)0, 0};
16925 static swig_type_info _swigt__p_wxMiniFrame
= {"_p_wxMiniFrame", "wxMiniFrame *", 0, 0, (void*)0, 0};
16926 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", "wxNotifyEvent *", 0, 0, (void*)0, 0};
16927 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0};
16928 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0};
16929 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0};
16930 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0};
16931 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0};
16932 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0};
16933 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0};
16934 static swig_type_info _swigt__p_wxFontData
= {"_p_wxFontData", 0, 0, 0, 0, 0};
16935 static swig_type_info _swigt__p_wxPrintData
= {"_p_wxPrintData", 0, 0, 0, 0, 0};
16936 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0, 0};
16937 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0};
16938 static swig_type_info _swigt__p_wxLayoutAlgorithm
= {"_p_wxLayoutAlgorithm", 0, 0, 0, 0, 0};
16939 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0, 0};
16940 static swig_type_info _swigt__p_wxFindReplaceData
= {"_p_wxFindReplaceData", 0, 0, 0, 0, 0};
16941 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0, 0};
16942 static swig_type_info _swigt__p_wxColourData
= {"_p_wxColourData", 0, 0, 0, 0, 0};
16943 static swig_type_info _swigt__p_wxPrinter
= {"_p_wxPrinter", 0, 0, 0, 0, 0};
16944 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0, 0};
16945 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0};
16946 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0};
16947 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0};
16948 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0};
16949 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0};
16950 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0, 0};
16951 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0, 0};
16952 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0, 0};
16953 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0};
16954 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0};
16955 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0, 0};
16956 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0};
16957 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0};
16958 static swig_type_info _swigt__p_wxTGAHandler
= {"_p_wxTGAHandler", 0, 0, 0, 0, 0};
16959 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0};
16960 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0};
16961 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0, 0};
16962 static swig_type_info _swigt__p_wxPyPrintout
= {"_p_wxPyPrintout", 0, 0, 0, 0, 0};
16963 static swig_type_info _swigt__p_wxPrintPreview
= {"_p_wxPrintPreview", 0, 0, 0, 0, 0};
16964 static swig_type_info _swigt__p_wxPyPrintPreview
= {"_p_wxPyPrintPreview", 0, 0, 0, 0, 0};
16965 static swig_type_info _swigt__p_wxPageSetupDialog
= {"_p_wxPageSetupDialog", 0, 0, 0, 0, 0};
16966 static swig_type_info _swigt__p_wxPrintDialog
= {"_p_wxPrintDialog", 0, 0, 0, 0, 0};
16967 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", 0, 0, 0, 0, 0};
16968 static swig_type_info _swigt__p_wxPageSetupDialogData
= {"_p_wxPageSetupDialogData", 0, 0, 0, 0, 0};
16969 static swig_type_info _swigt__p_wxPrintDialogData
= {"_p_wxPrintDialogData", 0, 0, 0, 0, 0};
16970 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0};
16971 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0};
16972 static swig_type_info _swigt__p_wxPyAuiDockArt
= {"_p_wxPyAuiDockArt", "wxPyAuiDockArt *", 0, 0, (void*)0, 0};
16973 static swig_type_info _swigt__p_wxPyAuiTabArt
= {"_p_wxPyAuiTabArt", "wxPyAuiTabArt *", 0, 0, (void*)0, 0};
16974 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0};
16975 static swig_type_info _swigt__p_wxSize
= {"_p_wxSize", "wxSize *", 0, 0, (void*)0, 0};
16976 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", "wxSizer *", 0, 0, (void*)0, 0};
16977 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", "wxSizerItem *", 0, 0, (void*)0, 0};
16978 static swig_type_info _swigt__p_wxString
= {"_p_wxString", "wxString *", 0, 0, (void*)0, 0};
16979 static swig_type_info _swigt__p_wxTopLevelWindow
= {"_p_wxTopLevelWindow", "wxTopLevelWindow *", 0, 0, (void*)0, 0};
16980 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0};
16982 static swig_type_info
*swig_type_initial
[] = {
16984 &_swigt__p_form_ops_t
,
16986 &_swigt__p_p_wxAuiFloatingFrame
,
16987 &_swigt__p_p_wxAuiNotebook
,
16988 &_swigt__p_p_wxAuiTabContainerButton
,
16989 &_swigt__p_p_wxAuiTabCtrl
,
16990 &_swigt__p_p_wxColourDialog
,
16991 &_swigt__p_p_wxControl
,
16992 &_swigt__p_p_wxControlWithItems
,
16993 &_swigt__p_p_wxDialog
,
16994 &_swigt__p_p_wxDirDialog
,
16995 &_swigt__p_p_wxFileDialog
,
16996 &_swigt__p_p_wxFindReplaceDialog
,
16997 &_swigt__p_p_wxFontDialog
,
16998 &_swigt__p_p_wxFrame
,
16999 &_swigt__p_p_wxMDIChildFrame
,
17000 &_swigt__p_p_wxMDIClientWindow
,
17001 &_swigt__p_p_wxMDIParentFrame
,
17002 &_swigt__p_p_wxMenuBar
,
17003 &_swigt__p_p_wxMessageDialog
,
17004 &_swigt__p_p_wxMiniFrame
,
17005 &_swigt__p_p_wxMultiChoiceDialog
,
17006 &_swigt__p_p_wxNumberEntryDialog
,
17007 &_swigt__p_p_wxPanel
,
17008 &_swigt__p_p_wxPasswordEntryDialog
,
17009 &_swigt__p_p_wxPopupWindow
,
17010 &_swigt__p_p_wxPreviewCanvas
,
17011 &_swigt__p_p_wxPreviewControlBar
,
17012 &_swigt__p_p_wxPreviewFrame
,
17013 &_swigt__p_p_wxProgressDialog
,
17014 &_swigt__p_p_wxPyHtmlListBox
,
17015 &_swigt__p_p_wxPyPanel
,
17016 &_swigt__p_p_wxPyPopupTransientWindow
,
17017 &_swigt__p_p_wxPyPreviewControlBar
,
17018 &_swigt__p_p_wxPyPreviewFrame
,
17019 &_swigt__p_p_wxPyScrolledWindow
,
17020 &_swigt__p_p_wxPyVListBox
,
17021 &_swigt__p_p_wxPyVScrolledWindow
,
17022 &_swigt__p_p_wxPyWindow
,
17023 &_swigt__p_p_wxSashLayoutWindow
,
17024 &_swigt__p_p_wxSashWindow
,
17025 &_swigt__p_p_wxScrolledWindow
,
17026 &_swigt__p_p_wxSingleChoiceDialog
,
17027 &_swigt__p_p_wxSplashScreen
,
17028 &_swigt__p_p_wxSplashScreenWindow
,
17029 &_swigt__p_p_wxSplitterWindow
,
17030 &_swigt__p_p_wxStatusBar
,
17031 &_swigt__p_p_wxTextEntryDialog
,
17032 &_swigt__p_p_wxTipWindow
,
17033 &_swigt__p_p_wxTopLevelWindow
,
17034 &_swigt__p_p_wxWindow
,
17035 &_swigt__p_unsigned_char
,
17036 &_swigt__p_unsigned_int
,
17037 &_swigt__p_unsigned_long
,
17038 &_swigt__p_wxANIHandler
,
17039 &_swigt__p_wxAcceleratorTable
,
17040 &_swigt__p_wxActivateEvent
,
17041 &_swigt__p_wxArrayString
,
17042 &_swigt__p_wxAuiDefaultDockArt
,
17043 &_swigt__p_wxAuiDefaultTabArt
,
17044 &_swigt__p_wxAuiDockArt
,
17045 &_swigt__p_wxAuiDockInfo
,
17046 &_swigt__p_wxAuiDockUIPart
,
17047 &_swigt__p_wxAuiFloatingFrame
,
17048 &_swigt__p_wxAuiManager
,
17049 &_swigt__p_wxAuiManagerEvent
,
17050 &_swigt__p_wxAuiNotebook
,
17051 &_swigt__p_wxAuiNotebookEvent
,
17052 &_swigt__p_wxAuiNotebookPage
,
17053 &_swigt__p_wxAuiNotebookPageArray
,
17054 &_swigt__p_wxAuiPaneButton
,
17055 &_swigt__p_wxAuiPaneButtonArray
,
17056 &_swigt__p_wxAuiPaneInfo
,
17057 &_swigt__p_wxAuiPaneInfoPtrArray
,
17058 &_swigt__p_wxAuiTabArt
,
17059 &_swigt__p_wxAuiTabContainer
,
17060 &_swigt__p_wxAuiTabContainerButton
,
17061 &_swigt__p_wxAuiTabCtrl
,
17062 &_swigt__p_wxBMPHandler
,
17063 &_swigt__p_wxBitmap
,
17064 &_swigt__p_wxBoxSizer
,
17065 &_swigt__p_wxCURHandler
,
17066 &_swigt__p_wxCalculateLayoutEvent
,
17067 &_swigt__p_wxChildFocusEvent
,
17068 &_swigt__p_wxClipboardTextEvent
,
17069 &_swigt__p_wxCloseEvent
,
17070 &_swigt__p_wxColor
,
17071 &_swigt__p_wxColour
,
17072 &_swigt__p_wxColourData
,
17073 &_swigt__p_wxColourDialog
,
17074 &_swigt__p_wxCommandEvent
,
17075 &_swigt__p_wxContextMenuEvent
,
17076 &_swigt__p_wxControl
,
17077 &_swigt__p_wxControlWithItems
,
17079 &_swigt__p_wxDateEvent
,
17080 &_swigt__p_wxDialog
,
17081 &_swigt__p_wxDirDialog
,
17082 &_swigt__p_wxDisplayChangedEvent
,
17083 &_swigt__p_wxDropFilesEvent
,
17084 &_swigt__p_wxDuplexMode
,
17085 &_swigt__p_wxEraseEvent
,
17086 &_swigt__p_wxEvent
,
17087 &_swigt__p_wxEvtHandler
,
17088 &_swigt__p_wxFSFile
,
17089 &_swigt__p_wxFileDialog
,
17090 &_swigt__p_wxFileSystem
,
17091 &_swigt__p_wxFindDialogEvent
,
17092 &_swigt__p_wxFindReplaceData
,
17093 &_swigt__p_wxFindReplaceDialog
,
17094 &_swigt__p_wxFlexGridSizer
,
17095 &_swigt__p_wxFocusEvent
,
17097 &_swigt__p_wxFontData
,
17098 &_swigt__p_wxFontDialog
,
17099 &_swigt__p_wxFrame
,
17100 &_swigt__p_wxGBSizerItem
,
17101 &_swigt__p_wxGIFHandler
,
17102 &_swigt__p_wxGridBagSizer
,
17103 &_swigt__p_wxGridSizer
,
17104 &_swigt__p_wxICOHandler
,
17105 &_swigt__p_wxIconizeEvent
,
17106 &_swigt__p_wxIdleEvent
,
17107 &_swigt__p_wxImage
,
17108 &_swigt__p_wxImageHandler
,
17109 &_swigt__p_wxIndividualLayoutConstraint
,
17110 &_swigt__p_wxInitDialogEvent
,
17111 &_swigt__p_wxJPEGHandler
,
17112 &_swigt__p_wxKeyEvent
,
17113 &_swigt__p_wxLayoutAlgorithm
,
17114 &_swigt__p_wxLayoutConstraints
,
17115 &_swigt__p_wxMDIChildFrame
,
17116 &_swigt__p_wxMDIClientWindow
,
17117 &_swigt__p_wxMDIParentFrame
,
17118 &_swigt__p_wxMaximizeEvent
,
17120 &_swigt__p_wxMenuBar
,
17121 &_swigt__p_wxMenuEvent
,
17122 &_swigt__p_wxMenuItem
,
17123 &_swigt__p_wxMessageDialog
,
17124 &_swigt__p_wxMiniFrame
,
17125 &_swigt__p_wxMouseCaptureChangedEvent
,
17126 &_swigt__p_wxMouseCaptureLostEvent
,
17127 &_swigt__p_wxMouseEvent
,
17128 &_swigt__p_wxMoveEvent
,
17129 &_swigt__p_wxMultiChoiceDialog
,
17130 &_swigt__p_wxNavigationKeyEvent
,
17131 &_swigt__p_wxNcPaintEvent
,
17132 &_swigt__p_wxNotifyEvent
,
17133 &_swigt__p_wxNumberEntryDialog
,
17134 &_swigt__p_wxObject
,
17135 &_swigt__p_wxPCXHandler
,
17136 &_swigt__p_wxPNGHandler
,
17137 &_swigt__p_wxPNMHandler
,
17138 &_swigt__p_wxPageSetupDialog
,
17139 &_swigt__p_wxPageSetupDialogData
,
17140 &_swigt__p_wxPaintEvent
,
17141 &_swigt__p_wxPaletteChangedEvent
,
17142 &_swigt__p_wxPanel
,
17143 &_swigt__p_wxPaperSize
,
17144 &_swigt__p_wxPasswordEntryDialog
,
17145 &_swigt__p_wxPoint
,
17146 &_swigt__p_wxPopupWindow
,
17147 &_swigt__p_wxPreviewCanvas
,
17148 &_swigt__p_wxPreviewControlBar
,
17149 &_swigt__p_wxPreviewFrame
,
17150 &_swigt__p_wxPrintData
,
17151 &_swigt__p_wxPrintDialog
,
17152 &_swigt__p_wxPrintDialogData
,
17153 &_swigt__p_wxPrintPreview
,
17154 &_swigt__p_wxPrinter
,
17155 &_swigt__p_wxProgressDialog
,
17156 &_swigt__p_wxPyApp
,
17157 &_swigt__p_wxPyAuiDockArt
,
17158 &_swigt__p_wxPyAuiTabArt
,
17159 &_swigt__p_wxPyCommandEvent
,
17160 &_swigt__p_wxPyEvent
,
17161 &_swigt__p_wxPyHtmlListBox
,
17162 &_swigt__p_wxPyImageHandler
,
17163 &_swigt__p_wxPyPanel
,
17164 &_swigt__p_wxPyPopupTransientWindow
,
17165 &_swigt__p_wxPyPreviewControlBar
,
17166 &_swigt__p_wxPyPreviewFrame
,
17167 &_swigt__p_wxPyPrintPreview
,
17168 &_swigt__p_wxPyPrintout
,
17169 &_swigt__p_wxPyScrolledWindow
,
17170 &_swigt__p_wxPySizer
,
17171 &_swigt__p_wxPyTaskBarIcon
,
17172 &_swigt__p_wxPyVListBox
,
17173 &_swigt__p_wxPyVScrolledWindow
,
17174 &_swigt__p_wxPyValidator
,
17175 &_swigt__p_wxPyWindow
,
17176 &_swigt__p_wxQueryLayoutInfoEvent
,
17177 &_swigt__p_wxQueryNewPaletteEvent
,
17179 &_swigt__p_wxSashEvent
,
17180 &_swigt__p_wxSashLayoutWindow
,
17181 &_swigt__p_wxSashWindow
,
17182 &_swigt__p_wxScrollEvent
,
17183 &_swigt__p_wxScrollWinEvent
,
17184 &_swigt__p_wxScrolledWindow
,
17185 &_swigt__p_wxSetCursorEvent
,
17186 &_swigt__p_wxShowEvent
,
17187 &_swigt__p_wxSingleChoiceDialog
,
17189 &_swigt__p_wxSizeEvent
,
17190 &_swigt__p_wxSizer
,
17191 &_swigt__p_wxSizerItem
,
17192 &_swigt__p_wxSplashScreen
,
17193 &_swigt__p_wxSplashScreenWindow
,
17194 &_swigt__p_wxSplitterEvent
,
17195 &_swigt__p_wxSplitterWindow
,
17196 &_swigt__p_wxStaticBoxSizer
,
17197 &_swigt__p_wxStatusBar
,
17198 &_swigt__p_wxStdDialogButtonSizer
,
17199 &_swigt__p_wxString
,
17200 &_swigt__p_wxSysColourChangedEvent
,
17201 &_swigt__p_wxTGAHandler
,
17202 &_swigt__p_wxTIFFHandler
,
17203 &_swigt__p_wxTaskBarIconEvent
,
17204 &_swigt__p_wxTextEntryDialog
,
17205 &_swigt__p_wxTipWindow
,
17206 &_swigt__p_wxTopLevelWindow
,
17207 &_swigt__p_wxUpdateUIEvent
,
17208 &_swigt__p_wxValidator
,
17209 &_swigt__p_wxWindow
,
17210 &_swigt__p_wxWindowCreateEvent
,
17211 &_swigt__p_wxWindowDestroyEvent
,
17212 &_swigt__p_wxXPMHandler
,
17215 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
17216 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
17217 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
17218 static swig_cast_info _swigc__p_p_wxAuiTabContainerButton
[] = { {&_swigt__p_p_wxAuiTabContainerButton
, 0, 0, 0},{0, 0, 0, 0}};
17219 static swig_cast_info _swigc__p_p_wxSplashScreen
[] = {{&_swigt__p_p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
17220 static swig_cast_info _swigc__p_p_wxMiniFrame
[] = {{&_swigt__p_p_wxMiniFrame
, 0, 0, 0},{0, 0, 0, 0}};
17221 static swig_cast_info _swigc__p_p_wxPyPanel
[] = {{&_swigt__p_p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
17222 static swig_cast_info _swigc__p_p_wxMenuBar
[] = {{&_swigt__p_p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
17223 static swig_cast_info _swigc__p_p_wxFindReplaceDialog
[] = {{&_swigt__p_p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
17224 static swig_cast_info _swigc__p_p_wxProgressDialog
[] = {{&_swigt__p_p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
17225 static swig_cast_info _swigc__p_p_wxMessageDialog
[] = {{&_swigt__p_p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
17226 static swig_cast_info _swigc__p_p_wxNumberEntryDialog
[] = {{&_swigt__p_p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
17227 static swig_cast_info _swigc__p_p_wxPasswordEntryDialog
[] = {{&_swigt__p_p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
17228 static swig_cast_info _swigc__p_p_wxTextEntryDialog
[] = {{&_swigt__p_p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
17229 static swig_cast_info _swigc__p_p_wxSingleChoiceDialog
[] = {{&_swigt__p_p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
17230 static swig_cast_info _swigc__p_p_wxMultiChoiceDialog
[] = {{&_swigt__p_p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
17231 static swig_cast_info _swigc__p_p_wxFileDialog
[] = {{&_swigt__p_p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
17232 static swig_cast_info _swigc__p_p_wxPanel
[] = {{&_swigt__p_p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}};
17233 static swig_cast_info _swigc__p_p_wxStatusBar
[] = {{&_swigt__p_p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
17234 static swig_cast_info _swigc__p_p_wxPyVScrolledWindow
[] = {{&_swigt__p_p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
17235 static swig_cast_info _swigc__p_p_wxTipWindow
[] = {{&_swigt__p_p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
17236 static swig_cast_info _swigc__p_p_wxPyPopupTransientWindow
[] = {{&_swigt__p_p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}};
17237 static swig_cast_info _swigc__p_p_wxPopupWindow
[] = {{&_swigt__p_p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}};
17238 static swig_cast_info _swigc__p_p_wxSashLayoutWindow
[] = {{&_swigt__p_p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
17239 static swig_cast_info _swigc__p_p_wxScrolledWindow
[] = {{&_swigt__p_p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
17240 static swig_cast_info _swigc__p_p_wxTopLevelWindow
[] = {{&_swigt__p_p_wxTopLevelWindow
, 0, 0, 0},{0, 0, 0, 0}};
17241 static swig_cast_info _swigc__p_p_wxSplashScreenWindow
[] = {{&_swigt__p_p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
17242 static swig_cast_info _swigc__p_p_wxSplitterWindow
[] = {{&_swigt__p_p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
17243 static swig_cast_info _swigc__p_p_wxSashWindow
[] = {{&_swigt__p_p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}};
17244 static swig_cast_info _swigc__p_p_wxMDIClientWindow
[] = {{&_swigt__p_p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
17245 static swig_cast_info _swigc__p_p_wxPyScrolledWindow
[] = {{&_swigt__p_p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
17246 static swig_cast_info _swigc__p_p_wxPreviewFrame
[] = {{&_swigt__p_p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
17247 static swig_cast_info _swigc__p_p_wxPyPreviewFrame
[] = {{&_swigt__p_p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
17248 static swig_cast_info _swigc__p_p_wxControl
[] = {{&_swigt__p_p_wxControl
, 0, 0, 0},{0, 0, 0, 0}};
17249 static swig_cast_info _swigc__p_p_wxMDIChildFrame
[] = {{&_swigt__p_p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
17250 static swig_cast_info _swigc__p_p_wxControlWithItems
[] = {{&_swigt__p_p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
17251 static swig_cast_info _swigc__p_p_wxPyWindow
[] = {{&_swigt__p_p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
17252 static swig_cast_info _swigc__p_p_wxPreviewCanvas
[] = {{&_swigt__p_p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
17253 static swig_cast_info _swigc__p_p_wxPyHtmlListBox
[] = {{&_swigt__p_p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
17254 static swig_cast_info _swigc__p_p_wxPyVListBox
[] = {{&_swigt__p_p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}};
17255 static swig_cast_info _swigc__p_p_wxAuiNotebook
[] = {{&_swigt__p_p_wxAuiNotebook
, 0, 0, 0},{0, 0, 0, 0}};
17256 static swig_cast_info _swigc__p_p_wxPreviewControlBar
[] = {{&_swigt__p_p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
17257 static swig_cast_info _swigc__p_p_wxPyPreviewControlBar
[] = {{&_swigt__p_p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
17258 static swig_cast_info _swigc__p_p_wxAuiTabCtrl
[] = {{&_swigt__p_p_wxAuiTabCtrl
, 0, 0, 0},{0, 0, 0, 0}};
17259 static swig_cast_info _swigc__p_p_wxFrame
[] = {{&_swigt__p_p_wxFrame
, 0, 0, 0},{0, 0, 0, 0}};
17260 static swig_cast_info _swigc__p_p_wxFontDialog
[] = {{&_swigt__p_p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
17261 static swig_cast_info _swigc__p_p_wxDirDialog
[] = {{&_swigt__p_p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
17262 static swig_cast_info _swigc__p_p_wxColourDialog
[] = {{&_swigt__p_p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
17263 static swig_cast_info _swigc__p_p_wxDialog
[] = {{&_swigt__p_p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}};
17264 static swig_cast_info _swigc__p_p_wxAuiFloatingFrame
[] = {{&_swigt__p_p_wxAuiFloatingFrame
, 0, 0, 0},{0, 0, 0, 0}};
17265 static swig_cast_info _swigc__p_p_wxMDIParentFrame
[] = {{&_swigt__p_p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
17266 static swig_cast_info _swigc__p_p_wxWindow
[] = { {&_swigt__p_p_wxSplashScreen
, _p_p_wxSplashScreenTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxMiniFrame
, _p_p_wxMiniFrameTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyPanel
, _p_p_wxPyPanelTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxMenuBar
, _p_p_wxMenuBarTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxFindReplaceDialog
, _p_p_wxFindReplaceDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxProgressDialog
, _p_p_wxProgressDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxMessageDialog
, _p_p_wxMessageDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxNumberEntryDialog
, _p_p_wxNumberEntryDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPasswordEntryDialog
, _p_p_wxPasswordEntryDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxTextEntryDialog
, _p_p_wxTextEntryDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxSingleChoiceDialog
, _p_p_wxSingleChoiceDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxMultiChoiceDialog
, _p_p_wxMultiChoiceDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxFileDialog
, _p_p_wxFileDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPanel
, _p_p_wxPanelTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxStatusBar
, _p_p_wxStatusBarTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyVScrolledWindow
, _p_p_wxPyVScrolledWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxTipWindow
, _p_p_wxTipWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyPopupTransientWindow
, _p_p_wxPyPopupTransientWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPopupWindow
, _p_p_wxPopupWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxSashLayoutWindow
, _p_p_wxSashLayoutWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxScrolledWindow
, _p_p_wxScrolledWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxTopLevelWindow
, _p_p_wxTopLevelWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxSplashScreenWindow
, _p_p_wxSplashScreenWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxSplitterWindow
, _p_p_wxSplitterWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxSashWindow
, _p_p_wxSashWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxMDIClientWindow
, _p_p_wxMDIClientWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyScrolledWindow
, _p_p_wxPyScrolledWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxWindow
, 0, 0, 0}, {&_swigt__p_p_wxPreviewFrame
, _p_p_wxPreviewFrameTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyPreviewFrame
, _p_p_wxPyPreviewFrameTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxControl
, _p_p_wxControlTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxMDIChildFrame
, _p_p_wxMDIChildFrameTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxControlWithItems
, _p_p_wxControlWithItemsTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyWindow
, _p_p_wxPyWindowTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPreviewCanvas
, _p_p_wxPreviewCanvasTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyHtmlListBox
, _p_p_wxPyHtmlListBoxTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyVListBox
, _p_p_wxPyVListBoxTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxAuiNotebook
, _p_p_wxAuiNotebookTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPreviewControlBar
, _p_p_wxPreviewControlBarTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxPyPreviewControlBar
, _p_p_wxPyPreviewControlBarTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxAuiTabCtrl
, _p_p_wxAuiTabCtrlTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxFrame
, _p_p_wxFrameTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxFontDialog
, _p_p_wxFontDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxDirDialog
, _p_p_wxDirDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxColourDialog
, _p_p_wxColourDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxDialog
, _p_p_wxDialogTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxAuiFloatingFrame
, _p_p_wxAuiFloatingFrameTo_p_p_wxWindow
, 0, 0}, {&_swigt__p_p_wxMDIParentFrame
, _p_p_wxMDIParentFrameTo_p_p_wxWindow
, 0, 0},{0, 0, 0, 0}};
17267 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
17268 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
17269 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
17270 static swig_cast_info _swigc__p_wxArrayString
[] = { {&_swigt__p_wxArrayString
, 0, 0, 0},{0, 0, 0, 0}};
17271 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}};
17272 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}};
17273 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}};
17274 static swig_cast_info _swigc__p_wxAuiDockInfo
[] = { {&_swigt__p_wxAuiDockInfo
, 0, 0, 0},{0, 0, 0, 0}};
17275 static swig_cast_info _swigc__p_wxAuiDockUIPart
[] = { {&_swigt__p_wxAuiDockUIPart
, 0, 0, 0},{0, 0, 0, 0}};
17276 static swig_cast_info _swigc__p_wxAuiFloatingFrame
[] = { {&_swigt__p_wxAuiFloatingFrame
, 0, 0, 0},{0, 0, 0, 0}};
17277 static swig_cast_info _swigc__p_wxAuiManager
[] = { {&_swigt__p_wxAuiManager
, 0, 0, 0},{0, 0, 0, 0}};
17278 static swig_cast_info _swigc__p_wxAuiManagerEvent
[] = { {&_swigt__p_wxAuiManagerEvent
, 0, 0, 0},{0, 0, 0, 0}};
17279 static swig_cast_info _swigc__p_wxAuiNotebook
[] = { {&_swigt__p_wxAuiNotebook
, 0, 0, 0},{0, 0, 0, 0}};
17280 static swig_cast_info _swigc__p_wxAuiNotebookEvent
[] = { {&_swigt__p_wxAuiNotebookEvent
, 0, 0, 0},{0, 0, 0, 0}};
17281 static swig_cast_info _swigc__p_wxAuiNotebookPage
[] = { {&_swigt__p_wxAuiNotebookPage
, 0, 0, 0},{0, 0, 0, 0}};
17282 static swig_cast_info _swigc__p_wxAuiNotebookPageArray
[] = { {&_swigt__p_wxAuiNotebookPageArray
, 0, 0, 0},{0, 0, 0, 0}};
17283 static swig_cast_info _swigc__p_wxAuiPaneButton
[] = { {&_swigt__p_wxAuiPaneButton
, 0, 0, 0},{0, 0, 0, 0}};
17284 static swig_cast_info _swigc__p_wxAuiPaneButtonArray
[] = { {&_swigt__p_wxAuiPaneButtonArray
, 0, 0, 0},{0, 0, 0, 0}};
17285 static swig_cast_info _swigc__p_wxAuiPaneInfo
[] = { {&_swigt__p_wxAuiPaneInfo
, 0, 0, 0},{0, 0, 0, 0}};
17286 static swig_cast_info _swigc__p_wxAuiPaneInfoPtrArray
[] = { {&_swigt__p_wxAuiPaneInfoPtrArray
, 0, 0, 0},{0, 0, 0, 0}};
17287 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},{0, 0, 0, 0}};
17288 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}};
17289 static swig_cast_info _swigc__p_wxAuiTabContainerButton
[] = { {&_swigt__p_wxAuiTabContainerButton
, 0, 0, 0},{0, 0, 0, 0}};
17290 static swig_cast_info _swigc__p_wxAuiTabCtrl
[] = { {&_swigt__p_wxAuiTabCtrl
, 0, 0, 0},{0, 0, 0, 0}};
17291 static swig_cast_info _swigc__p_wxBitmap
[] = { {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}};
17292 static swig_cast_info _swigc__p_wxColor
[] = { {&_swigt__p_wxColor
, 0, 0, 0},{0, 0, 0, 0}};
17293 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
17294 static swig_cast_info _swigc__p_wxSashEvent
[] = {{&_swigt__p_wxSashEvent
, 0, 0, 0},{0, 0, 0, 0}};
17295 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
17296 static swig_cast_info _swigc__p_wxSplitterEvent
[] = {{&_swigt__p_wxSplitterEvent
, 0, 0, 0},{0, 0, 0, 0}};
17297 static swig_cast_info _swigc__p_wxClipboardTextEvent
[] = {{&_swigt__p_wxClipboardTextEvent
, 0, 0, 0},{0, 0, 0, 0}};
17298 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
17299 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
17300 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
17301 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
17302 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
17303 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
17304 static swig_cast_info _swigc__p_wxFindDialogEvent
[] = {{&_swigt__p_wxFindDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
17305 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
17306 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}};
17307 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
17308 static swig_cast_info _swigc__p_wxControl
[] = { {&_swigt__p_wxControl
, 0, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxControl
, 0, 0}, {&_swigt__p_wxAuiTabCtrl
, _p_wxAuiTabCtrlTo_p_wxControl
, 0, 0}, {&_swigt__p_wxAuiNotebook
, _p_wxAuiNotebookTo_p_wxControl
, 0, 0},{0, 0, 0, 0}};
17309 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
17310 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
17311 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
17312 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
17313 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
17314 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
17315 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
17316 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
17317 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
17318 static swig_cast_info _swigc__p_wxMouseCaptureLostEvent
[] = {{&_swigt__p_wxMouseCaptureLostEvent
, 0, 0, 0},{0, 0, 0, 0}};
17319 static swig_cast_info _swigc__p_wxCalculateLayoutEvent
[] = {{&_swigt__p_wxCalculateLayoutEvent
, 0, 0, 0},{0, 0, 0, 0}};
17320 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
17321 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
17322 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
17323 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
17324 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
17325 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
17326 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
17327 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
17328 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
17329 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
17330 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
17331 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
17332 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
17333 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
17334 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
17335 static swig_cast_info _swigc__p_wxQueryLayoutInfoEvent
[] = {{&_swigt__p_wxQueryLayoutInfoEvent
, 0, 0, 0},{0, 0, 0, 0}};
17336 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
17337 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
17338 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
17339 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
17340 static swig_cast_info _swigc__p_wxTaskBarIconEvent
[] = {{&_swigt__p_wxTaskBarIconEvent
, 0, 0, 0},{0, 0, 0, 0}};
17341 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}};
17342 static swig_cast_info _swigc__p_wxSplashScreen
[] = {{&_swigt__p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
17343 static swig_cast_info _swigc__p_wxPyPanel
[] = {{&_swigt__p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
17344 static swig_cast_info _swigc__p_wxMenuBar
[] = {{&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
17345 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}};
17346 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
17347 static swig_cast_info _swigc__p_wxNumberEntryDialog
[] = {{&_swigt__p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
17348 static swig_cast_info _swigc__p_wxFileDialog
[] = {{&_swigt__p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
17349 static swig_cast_info _swigc__p_wxMultiChoiceDialog
[] = {{&_swigt__p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
17350 static swig_cast_info _swigc__p_wxFindReplaceDialog
[] = {{&_swigt__p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
17351 static swig_cast_info _swigc__p_wxProgressDialog
[] = {{&_swigt__p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
17352 static swig_cast_info _swigc__p_wxMessageDialog
[] = {{&_swigt__p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
17353 static swig_cast_info _swigc__p_wxPasswordEntryDialog
[] = {{&_swigt__p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
17354 static swig_cast_info _swigc__p_wxTextEntryDialog
[] = {{&_swigt__p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
17355 static swig_cast_info _swigc__p_wxSingleChoiceDialog
[] = {{&_swigt__p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
17356 static swig_cast_info _swigc__p_wxPanel
[] = {{&_swigt__p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}};
17357 static swig_cast_info _swigc__p_wxStatusBar
[] = {{&_swigt__p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
17358 static swig_cast_info _swigc__p_wxScrolledWindow
[] = {{&_swigt__p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
17359 static swig_cast_info _swigc__p_wxTipWindow
[] = {{&_swigt__p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
17360 static swig_cast_info _swigc__p_wxMDIClientWindow
[] = {{&_swigt__p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
17361 static swig_cast_info _swigc__p_wxPyScrolledWindow
[] = {{&_swigt__p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
17362 static swig_cast_info _swigc__p_wxSashWindow
[] = {{&_swigt__p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}};
17363 static swig_cast_info _swigc__p_wxSplitterWindow
[] = {{&_swigt__p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
17364 static swig_cast_info _swigc__p_wxSplashScreenWindow
[] = {{&_swigt__p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
17365 static swig_cast_info _swigc__p_wxSashLayoutWindow
[] = {{&_swigt__p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
17366 static swig_cast_info _swigc__p_wxPopupWindow
[] = {{&_swigt__p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}};
17367 static swig_cast_info _swigc__p_wxPyPopupTransientWindow
[] = {{&_swigt__p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}};
17368 static swig_cast_info _swigc__p_wxPyVScrolledWindow
[] = {{&_swigt__p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
17369 static swig_cast_info _swigc__p_wxPyPreviewFrame
[] = {{&_swigt__p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
17370 static swig_cast_info _swigc__p_wxPreviewFrame
[] = {{&_swigt__p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
17371 static swig_cast_info _swigc__p_wxMDIChildFrame
[] = {{&_swigt__p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
17372 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
17373 static swig_cast_info _swigc__p_wxPyWindow
[] = {{&_swigt__p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
17374 static swig_cast_info _swigc__p_wxPreviewCanvas
[] = {{&_swigt__p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
17375 static swig_cast_info _swigc__p_wxPyHtmlListBox
[] = {{&_swigt__p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
17376 static swig_cast_info _swigc__p_wxPyVListBox
[] = {{&_swigt__p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}};
17377 static swig_cast_info _swigc__p_wxPreviewControlBar
[] = {{&_swigt__p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
17378 static swig_cast_info _swigc__p_wxPyPreviewControlBar
[] = {{&_swigt__p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
17379 static swig_cast_info _swigc__p_wxPyTaskBarIcon
[] = {{&_swigt__p_wxPyTaskBarIcon
, 0, 0, 0},{0, 0, 0, 0}};
17380 static swig_cast_info _swigc__p_wxFontDialog
[] = {{&_swigt__p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
17381 static swig_cast_info _swigc__p_wxDirDialog
[] = {{&_swigt__p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
17382 static swig_cast_info _swigc__p_wxColourDialog
[] = {{&_swigt__p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
17383 static swig_cast_info _swigc__p_wxDialog
[] = {{&_swigt__p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}};
17384 static swig_cast_info _swigc__p_wxMenu
[] = {{&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
17385 static swig_cast_info _swigc__p_wxMDIParentFrame
[] = {{&_swigt__p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
17386 static swig_cast_info _swigc__p_wxEvtHandler
[] = { {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_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_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_wxPanel
, _p_wxPanelTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_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_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxEvtHandler
, 0, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxAuiNotebook
, _p_wxAuiNotebookTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyTaskBarIcon
, _p_wxPyTaskBarIconTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxAuiTabCtrl
, _p_wxAuiTabCtrlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMenu
, _p_wxMenuTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxAuiManager
, _p_wxAuiManagerTo_p_wxEvtHandler
, 0, 0},{0, 0, 0, 0}};
17387 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
17388 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_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxFrame
, 0, 0},{0, 0, 0, 0}};
17389 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}};
17390 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}};
17391 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
17392 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
17393 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
17394 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
17395 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
17396 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
17397 static swig_cast_info _swigc__p_wxFontData
[] = {{&_swigt__p_wxFontData
, 0, 0, 0},{0, 0, 0, 0}};
17398 static swig_cast_info _swigc__p_wxPrintData
[] = {{&_swigt__p_wxPrintData
, 0, 0, 0},{0, 0, 0, 0}};
17399 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
17400 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
17401 static swig_cast_info _swigc__p_wxLayoutAlgorithm
[] = {{&_swigt__p_wxLayoutAlgorithm
, 0, 0, 0},{0, 0, 0, 0}};
17402 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
17403 static swig_cast_info _swigc__p_wxFindReplaceData
[] = {{&_swigt__p_wxFindReplaceData
, 0, 0, 0},{0, 0, 0, 0}};
17404 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
17405 static swig_cast_info _swigc__p_wxColourData
[] = {{&_swigt__p_wxColourData
, 0, 0, 0},{0, 0, 0, 0}};
17406 static swig_cast_info _swigc__p_wxPrinter
[] = {{&_swigt__p_wxPrinter
, 0, 0, 0},{0, 0, 0, 0}};
17407 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
17408 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
17409 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
17410 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
17411 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
17412 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
17413 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
17414 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
17415 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
17416 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
17417 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
17418 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
17419 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
17420 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
17421 static swig_cast_info _swigc__p_wxTGAHandler
[] = {{&_swigt__p_wxTGAHandler
, 0, 0, 0},{0, 0, 0, 0}};
17422 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
17423 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
17424 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
17425 static swig_cast_info _swigc__p_wxPyPrintout
[] = {{&_swigt__p_wxPyPrintout
, 0, 0, 0},{0, 0, 0, 0}};
17426 static swig_cast_info _swigc__p_wxPrintPreview
[] = {{&_swigt__p_wxPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
17427 static swig_cast_info _swigc__p_wxPyPrintPreview
[] = {{&_swigt__p_wxPyPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
17428 static swig_cast_info _swigc__p_wxPageSetupDialog
[] = {{&_swigt__p_wxPageSetupDialog
, 0, 0, 0},{0, 0, 0, 0}};
17429 static swig_cast_info _swigc__p_wxPrintDialog
[] = {{&_swigt__p_wxPrintDialog
, 0, 0, 0},{0, 0, 0, 0}};
17430 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
17431 static swig_cast_info _swigc__p_wxPageSetupDialogData
[] = {{&_swigt__p_wxPageSetupDialogData
, 0, 0, 0},{0, 0, 0, 0}};
17432 static swig_cast_info _swigc__p_wxPrintDialogData
[] = {{&_swigt__p_wxPrintDialogData
, 0, 0, 0},{0, 0, 0, 0}};
17433 static swig_cast_info _swigc__p_wxObject
[] = { {&_swigt__p_wxQueryLayoutInfoEvent
, _p_wxQueryLayoutInfoEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxLayoutConstraints
, _p_wxLayoutConstraintsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizerItem
, _p_wxSizerItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGBSizerItem
, _p_wxGBSizerItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIndividualLayoutConstraint
, _p_wxIndividualLayoutConstraintTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStaticBoxSizer
, _p_wxStaticBoxSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBoxSizer
, _p_wxBoxSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizer
, _p_wxSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGridBagSizer
, _p_wxGridBagSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenu
, _p_wxMenuTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFontData
, _p_wxFontDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintData
, _p_wxPrintDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEvent
, _p_wxEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGridSizer
, _p_wxGridSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFlexGridSizer
, _p_wxFlexGridSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyTaskBarIcon
, _p_wxPyTaskBarIconTo_p_wxObject
, 0, 0}, {&_swigt__p_wxLayoutAlgorithm
, _p_wxLayoutAlgorithmTo_p_wxObject
, 0, 0}, {&_swigt__p_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFindDialogEvent
, _p_wxFindDialogEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAuiTabCtrl
, _p_wxAuiTabCtrlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPaintEvent
, _p_wxPaintEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNcPaintEvent
, _p_wxNcPaintEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPaletteChangedEvent
, _p_wxPaletteChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDisplayChangedEvent
, _p_wxDisplayChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMouseCaptureChangedEvent
, _p_wxMouseCaptureChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSysColourChangedEvent
, _p_wxSysColourChangedEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxObject
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSetCursorEvent
, _p_wxSetCursorEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplitterEvent
, _p_wxSplitterEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAuiManagerEvent
, _p_wxAuiManagerEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFSFile
, _p_wxFSFileTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFindReplaceData
, _p_wxFindReplaceDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPySizer
, _p_wxPySizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAuiNotebook
, _p_wxAuiNotebookTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxColourData
, _p_wxColourDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxShowEvent
, _p_wxShowEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrinter
, _p_wxPrinterTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxQueryNewPaletteEvent
, _p_wxQueryNewPaletteEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMaximizeEvent
, _p_wxMaximizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIconizeEvent
, _p_wxIconizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxActivateEvent
, _p_wxActivateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizeEvent
, _p_wxSizeEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMoveEvent
, _p_wxMoveEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuItem
, _p_wxMenuItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMouseCaptureLostEvent
, _p_wxMouseCaptureLostEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCalculateLayoutEvent
, _p_wxCalculateLayoutEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPNGHandler
, _p_wxPNGHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGIFHandler
, _p_wxGIFHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPCXHandler
, _p_wxPCXHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxJPEGHandler
, _p_wxJPEGHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPNMHandler
, _p_wxPNMHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxANIHandler
, _p_wxANIHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCURHandler
, _p_wxCURHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxICOHandler
, _p_wxICOHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBMPHandler
, _p_wxBMPHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyImageHandler
, _p_wxPyImageHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxImageHandler
, _p_wxImageHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxXPMHandler
, _p_wxXPMHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTIFFHandler
, _p_wxTIFFHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTGAHandler
, _p_wxTGAHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEvtHandler
, _p_wxEvtHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStdDialogButtonSizer
, _p_wxStdDialogButtonSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAcceleratorTable
, _p_wxAcceleratorTableTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxImage
, _p_wxImageTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPrintout
, _p_wxPyPrintoutTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTaskBarIconEvent
, _p_wxTaskBarIconEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrollWinEvent
, _p_wxScrollWinEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAuiManager
, _p_wxAuiManagerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAuiNotebookEvent
, _p_wxAuiNotebookEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxObject
, 0, 0, 0}, {&_swigt__p_wxKeyEvent
, _p_wxKeyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNavigationKeyEvent
, _p_wxNavigationKeyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSashEvent
, _p_wxSashEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintPreview
, _p_wxPrintPreviewTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPrintPreview
, _p_wxPyPrintPreviewTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPageSetupDialog
, _p_wxPageSetupDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintDialog
, _p_wxPrintDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFileSystem
, _p_wxFileSystemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuEvent
, _p_wxMenuEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCloseEvent
, _p_wxCloseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMouseEvent
, _p_wxMouseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEraseEvent
, _p_wxEraseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCommandEvent
, _p_wxCommandEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFocusEvent
, _p_wxFocusEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDropFilesEvent
, _p_wxDropFilesEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPageSetupDialogData
, _p_wxPageSetupDialogDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintDialogData
, _p_wxPrintDialogDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxObject
, 0, 0},{0, 0, 0, 0}};
17434 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
17435 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
17436 static swig_cast_info _swigc__p_wxPyAuiDockArt
[] = { {&_swigt__p_wxPyAuiDockArt
, 0, 0, 0},{0, 0, 0, 0}};
17437 static swig_cast_info _swigc__p_wxPyAuiTabArt
[] = { {&_swigt__p_wxPyAuiTabArt
, 0, 0, 0},{0, 0, 0, 0}};
17438 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
17439 static swig_cast_info _swigc__p_wxSize
[] = { {&_swigt__p_wxSize
, 0, 0, 0},{0, 0, 0, 0}};
17440 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}};
17441 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}};
17442 static swig_cast_info _swigc__p_wxString
[] = { {&_swigt__p_wxString
, 0, 0, 0},{0, 0, 0, 0}};
17443 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_wxDirDialog
, _p_wxDirDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_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_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_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}};
17444 static swig_cast_info _swigc__p_wxWindow
[] = { {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxWindow
, 0, 0, 0}, {&_swigt__p_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_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxAuiNotebook
, _p_wxAuiNotebookTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxAuiTabCtrl
, _p_wxAuiTabCtrlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxAuiFloatingFrame
, _p_wxAuiFloatingFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxWindow
, 0, 0},{0, 0, 0, 0}};
17446 static swig_cast_info
*swig_cast_initial
[] = {
17448 _swigc__p_form_ops_t
,
17450 _swigc__p_p_wxAuiFloatingFrame
,
17451 _swigc__p_p_wxAuiNotebook
,
17452 _swigc__p_p_wxAuiTabContainerButton
,
17453 _swigc__p_p_wxAuiTabCtrl
,
17454 _swigc__p_p_wxColourDialog
,
17455 _swigc__p_p_wxControl
,
17456 _swigc__p_p_wxControlWithItems
,
17457 _swigc__p_p_wxDialog
,
17458 _swigc__p_p_wxDirDialog
,
17459 _swigc__p_p_wxFileDialog
,
17460 _swigc__p_p_wxFindReplaceDialog
,
17461 _swigc__p_p_wxFontDialog
,
17462 _swigc__p_p_wxFrame
,
17463 _swigc__p_p_wxMDIChildFrame
,
17464 _swigc__p_p_wxMDIClientWindow
,
17465 _swigc__p_p_wxMDIParentFrame
,
17466 _swigc__p_p_wxMenuBar
,
17467 _swigc__p_p_wxMessageDialog
,
17468 _swigc__p_p_wxMiniFrame
,
17469 _swigc__p_p_wxMultiChoiceDialog
,
17470 _swigc__p_p_wxNumberEntryDialog
,
17471 _swigc__p_p_wxPanel
,
17472 _swigc__p_p_wxPasswordEntryDialog
,
17473 _swigc__p_p_wxPopupWindow
,
17474 _swigc__p_p_wxPreviewCanvas
,
17475 _swigc__p_p_wxPreviewControlBar
,
17476 _swigc__p_p_wxPreviewFrame
,
17477 _swigc__p_p_wxProgressDialog
,
17478 _swigc__p_p_wxPyHtmlListBox
,
17479 _swigc__p_p_wxPyPanel
,
17480 _swigc__p_p_wxPyPopupTransientWindow
,
17481 _swigc__p_p_wxPyPreviewControlBar
,
17482 _swigc__p_p_wxPyPreviewFrame
,
17483 _swigc__p_p_wxPyScrolledWindow
,
17484 _swigc__p_p_wxPyVListBox
,
17485 _swigc__p_p_wxPyVScrolledWindow
,
17486 _swigc__p_p_wxPyWindow
,
17487 _swigc__p_p_wxSashLayoutWindow
,
17488 _swigc__p_p_wxSashWindow
,
17489 _swigc__p_p_wxScrolledWindow
,
17490 _swigc__p_p_wxSingleChoiceDialog
,
17491 _swigc__p_p_wxSplashScreen
,
17492 _swigc__p_p_wxSplashScreenWindow
,
17493 _swigc__p_p_wxSplitterWindow
,
17494 _swigc__p_p_wxStatusBar
,
17495 _swigc__p_p_wxTextEntryDialog
,
17496 _swigc__p_p_wxTipWindow
,
17497 _swigc__p_p_wxTopLevelWindow
,
17498 _swigc__p_p_wxWindow
,
17499 _swigc__p_unsigned_char
,
17500 _swigc__p_unsigned_int
,
17501 _swigc__p_unsigned_long
,
17502 _swigc__p_wxANIHandler
,
17503 _swigc__p_wxAcceleratorTable
,
17504 _swigc__p_wxActivateEvent
,
17505 _swigc__p_wxArrayString
,
17506 _swigc__p_wxAuiDefaultDockArt
,
17507 _swigc__p_wxAuiDefaultTabArt
,
17508 _swigc__p_wxAuiDockArt
,
17509 _swigc__p_wxAuiDockInfo
,
17510 _swigc__p_wxAuiDockUIPart
,
17511 _swigc__p_wxAuiFloatingFrame
,
17512 _swigc__p_wxAuiManager
,
17513 _swigc__p_wxAuiManagerEvent
,
17514 _swigc__p_wxAuiNotebook
,
17515 _swigc__p_wxAuiNotebookEvent
,
17516 _swigc__p_wxAuiNotebookPage
,
17517 _swigc__p_wxAuiNotebookPageArray
,
17518 _swigc__p_wxAuiPaneButton
,
17519 _swigc__p_wxAuiPaneButtonArray
,
17520 _swigc__p_wxAuiPaneInfo
,
17521 _swigc__p_wxAuiPaneInfoPtrArray
,
17522 _swigc__p_wxAuiTabArt
,
17523 _swigc__p_wxAuiTabContainer
,
17524 _swigc__p_wxAuiTabContainerButton
,
17525 _swigc__p_wxAuiTabCtrl
,
17526 _swigc__p_wxBMPHandler
,
17527 _swigc__p_wxBitmap
,
17528 _swigc__p_wxBoxSizer
,
17529 _swigc__p_wxCURHandler
,
17530 _swigc__p_wxCalculateLayoutEvent
,
17531 _swigc__p_wxChildFocusEvent
,
17532 _swigc__p_wxClipboardTextEvent
,
17533 _swigc__p_wxCloseEvent
,
17535 _swigc__p_wxColour
,
17536 _swigc__p_wxColourData
,
17537 _swigc__p_wxColourDialog
,
17538 _swigc__p_wxCommandEvent
,
17539 _swigc__p_wxContextMenuEvent
,
17540 _swigc__p_wxControl
,
17541 _swigc__p_wxControlWithItems
,
17543 _swigc__p_wxDateEvent
,
17544 _swigc__p_wxDialog
,
17545 _swigc__p_wxDirDialog
,
17546 _swigc__p_wxDisplayChangedEvent
,
17547 _swigc__p_wxDropFilesEvent
,
17548 _swigc__p_wxDuplexMode
,
17549 _swigc__p_wxEraseEvent
,
17551 _swigc__p_wxEvtHandler
,
17552 _swigc__p_wxFSFile
,
17553 _swigc__p_wxFileDialog
,
17554 _swigc__p_wxFileSystem
,
17555 _swigc__p_wxFindDialogEvent
,
17556 _swigc__p_wxFindReplaceData
,
17557 _swigc__p_wxFindReplaceDialog
,
17558 _swigc__p_wxFlexGridSizer
,
17559 _swigc__p_wxFocusEvent
,
17561 _swigc__p_wxFontData
,
17562 _swigc__p_wxFontDialog
,
17564 _swigc__p_wxGBSizerItem
,
17565 _swigc__p_wxGIFHandler
,
17566 _swigc__p_wxGridBagSizer
,
17567 _swigc__p_wxGridSizer
,
17568 _swigc__p_wxICOHandler
,
17569 _swigc__p_wxIconizeEvent
,
17570 _swigc__p_wxIdleEvent
,
17572 _swigc__p_wxImageHandler
,
17573 _swigc__p_wxIndividualLayoutConstraint
,
17574 _swigc__p_wxInitDialogEvent
,
17575 _swigc__p_wxJPEGHandler
,
17576 _swigc__p_wxKeyEvent
,
17577 _swigc__p_wxLayoutAlgorithm
,
17578 _swigc__p_wxLayoutConstraints
,
17579 _swigc__p_wxMDIChildFrame
,
17580 _swigc__p_wxMDIClientWindow
,
17581 _swigc__p_wxMDIParentFrame
,
17582 _swigc__p_wxMaximizeEvent
,
17584 _swigc__p_wxMenuBar
,
17585 _swigc__p_wxMenuEvent
,
17586 _swigc__p_wxMenuItem
,
17587 _swigc__p_wxMessageDialog
,
17588 _swigc__p_wxMiniFrame
,
17589 _swigc__p_wxMouseCaptureChangedEvent
,
17590 _swigc__p_wxMouseCaptureLostEvent
,
17591 _swigc__p_wxMouseEvent
,
17592 _swigc__p_wxMoveEvent
,
17593 _swigc__p_wxMultiChoiceDialog
,
17594 _swigc__p_wxNavigationKeyEvent
,
17595 _swigc__p_wxNcPaintEvent
,
17596 _swigc__p_wxNotifyEvent
,
17597 _swigc__p_wxNumberEntryDialog
,
17598 _swigc__p_wxObject
,
17599 _swigc__p_wxPCXHandler
,
17600 _swigc__p_wxPNGHandler
,
17601 _swigc__p_wxPNMHandler
,
17602 _swigc__p_wxPageSetupDialog
,
17603 _swigc__p_wxPageSetupDialogData
,
17604 _swigc__p_wxPaintEvent
,
17605 _swigc__p_wxPaletteChangedEvent
,
17607 _swigc__p_wxPaperSize
,
17608 _swigc__p_wxPasswordEntryDialog
,
17610 _swigc__p_wxPopupWindow
,
17611 _swigc__p_wxPreviewCanvas
,
17612 _swigc__p_wxPreviewControlBar
,
17613 _swigc__p_wxPreviewFrame
,
17614 _swigc__p_wxPrintData
,
17615 _swigc__p_wxPrintDialog
,
17616 _swigc__p_wxPrintDialogData
,
17617 _swigc__p_wxPrintPreview
,
17618 _swigc__p_wxPrinter
,
17619 _swigc__p_wxProgressDialog
,
17621 _swigc__p_wxPyAuiDockArt
,
17622 _swigc__p_wxPyAuiTabArt
,
17623 _swigc__p_wxPyCommandEvent
,
17624 _swigc__p_wxPyEvent
,
17625 _swigc__p_wxPyHtmlListBox
,
17626 _swigc__p_wxPyImageHandler
,
17627 _swigc__p_wxPyPanel
,
17628 _swigc__p_wxPyPopupTransientWindow
,
17629 _swigc__p_wxPyPreviewControlBar
,
17630 _swigc__p_wxPyPreviewFrame
,
17631 _swigc__p_wxPyPrintPreview
,
17632 _swigc__p_wxPyPrintout
,
17633 _swigc__p_wxPyScrolledWindow
,
17634 _swigc__p_wxPySizer
,
17635 _swigc__p_wxPyTaskBarIcon
,
17636 _swigc__p_wxPyVListBox
,
17637 _swigc__p_wxPyVScrolledWindow
,
17638 _swigc__p_wxPyValidator
,
17639 _swigc__p_wxPyWindow
,
17640 _swigc__p_wxQueryLayoutInfoEvent
,
17641 _swigc__p_wxQueryNewPaletteEvent
,
17643 _swigc__p_wxSashEvent
,
17644 _swigc__p_wxSashLayoutWindow
,
17645 _swigc__p_wxSashWindow
,
17646 _swigc__p_wxScrollEvent
,
17647 _swigc__p_wxScrollWinEvent
,
17648 _swigc__p_wxScrolledWindow
,
17649 _swigc__p_wxSetCursorEvent
,
17650 _swigc__p_wxShowEvent
,
17651 _swigc__p_wxSingleChoiceDialog
,
17653 _swigc__p_wxSizeEvent
,
17655 _swigc__p_wxSizerItem
,
17656 _swigc__p_wxSplashScreen
,
17657 _swigc__p_wxSplashScreenWindow
,
17658 _swigc__p_wxSplitterEvent
,
17659 _swigc__p_wxSplitterWindow
,
17660 _swigc__p_wxStaticBoxSizer
,
17661 _swigc__p_wxStatusBar
,
17662 _swigc__p_wxStdDialogButtonSizer
,
17663 _swigc__p_wxString
,
17664 _swigc__p_wxSysColourChangedEvent
,
17665 _swigc__p_wxTGAHandler
,
17666 _swigc__p_wxTIFFHandler
,
17667 _swigc__p_wxTaskBarIconEvent
,
17668 _swigc__p_wxTextEntryDialog
,
17669 _swigc__p_wxTipWindow
,
17670 _swigc__p_wxTopLevelWindow
,
17671 _swigc__p_wxUpdateUIEvent
,
17672 _swigc__p_wxValidator
,
17673 _swigc__p_wxWindow
,
17674 _swigc__p_wxWindowCreateEvent
,
17675 _swigc__p_wxWindowDestroyEvent
,
17676 _swigc__p_wxXPMHandler
,
17680 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
17682 static swig_const_info swig_const_table
[] = {
17683 {0, 0, 0, 0.0, 0, 0}};
17688 /* -----------------------------------------------------------------------------
17689 * Type initialization:
17690 * This problem is tough by the requirement that no dynamic
17691 * memory is used. Also, since swig_type_info structures store pointers to
17692 * swig_cast_info structures and swig_cast_info structures store pointers back
17693 * to swig_type_info structures, we need some lookup code at initialization.
17694 * The idea is that swig generates all the structures that are needed.
17695 * The runtime then collects these partially filled structures.
17696 * The SWIG_InitializeModule function takes these initial arrays out of
17697 * swig_module, and does all the lookup, filling in the swig_module.types
17698 * array with the correct data and linking the correct swig_cast_info
17699 * structures together.
17701 * The generated swig_type_info structures are assigned staticly to an initial
17702 * array. We just loop though that array, and handle each type individually.
17703 * First we lookup if this type has been already loaded, and if so, use the
17704 * loaded structure instead of the generated one. Then we have to fill in the
17705 * cast linked list. The cast data is initially stored in something like a
17706 * two-dimensional array. Each row corresponds to a type (there are the same
17707 * number of rows as there are in the swig_type_initial array). Each entry in
17708 * a column is one of the swig_cast_info structures for that type.
17709 * The cast_initial array is actually an array of arrays, because each row has
17710 * a variable number of columns. So to actually build the cast linked list,
17711 * we find the array of casts associated with the type, and loop through it
17712 * adding the casts to the list. The one last trick we need to do is making
17713 * sure the type pointer in the swig_cast_info struct is correct.
17715 * First off, we lookup the cast->type name to see if it is already loaded.
17716 * There are three cases to handle:
17717 * 1) If the cast->type has already been loaded AND the type we are adding
17718 * casting info to has not been loaded (it is in this module), THEN we
17719 * replace the cast->type pointer with the type pointer that has already
17721 * 2) If BOTH types (the one we are adding casting info to, and the
17722 * cast->type) are loaded, THEN the cast info has already been loaded by
17723 * the previous module so we just ignore it.
17724 * 3) Finally, if cast->type has not already been loaded, then we add that
17725 * swig_cast_info to the linked list (because the cast->type) pointer will
17727 * ----------------------------------------------------------------------------- */
17737 #define SWIGRUNTIME_DEBUG
17741 SWIG_InitializeModule(void *clientdata
) {
17743 swig_module_info
*module_head
;
17744 static int init_run
= 0;
17746 clientdata
= clientdata
;
17748 if (init_run
) return;
17751 /* Initialize the swig_module */
17752 swig_module
.type_initial
= swig_type_initial
;
17753 swig_module
.cast_initial
= swig_cast_initial
;
17755 /* Try and load any already created modules */
17756 module_head
= SWIG_GetModule(clientdata
);
17758 swig_module
.next
= module_head
->next
;
17759 module_head
->next
= &swig_module
;
17761 /* This is the first module loaded */
17762 swig_module
.next
= &swig_module
;
17763 SWIG_SetModule(clientdata
, &swig_module
);
17766 /* Now work on filling in swig_module.types */
17767 #ifdef SWIGRUNTIME_DEBUG
17768 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
17770 for (i
= 0; i
< swig_module
.size
; ++i
) {
17771 swig_type_info
*type
= 0;
17772 swig_type_info
*ret
;
17773 swig_cast_info
*cast
;
17775 #ifdef SWIGRUNTIME_DEBUG
17776 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
17779 /* if there is another module already loaded */
17780 if (swig_module
.next
!= &swig_module
) {
17781 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
17784 /* Overwrite clientdata field */
17785 #ifdef SWIGRUNTIME_DEBUG
17786 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
17788 if (swig_module
.type_initial
[i
]->clientdata
) {
17789 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
17790 #ifdef SWIGRUNTIME_DEBUG
17791 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
17795 type
= swig_module
.type_initial
[i
];
17798 /* Insert casting types */
17799 cast
= swig_module
.cast_initial
[i
];
17800 while (cast
->type
) {
17801 /* Don't need to add information already in the list */
17803 #ifdef SWIGRUNTIME_DEBUG
17804 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
17806 if (swig_module
.next
!= &swig_module
) {
17807 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
17808 #ifdef SWIGRUNTIME_DEBUG
17809 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
17813 if (type
== swig_module
.type_initial
[i
]) {
17814 #ifdef SWIGRUNTIME_DEBUG
17815 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
17820 /* Check for casting already in the list */
17821 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
17822 #ifdef SWIGRUNTIME_DEBUG
17823 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
17825 if (!ocast
) ret
= 0;
17830 #ifdef SWIGRUNTIME_DEBUG
17831 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
17834 type
->cast
->prev
= cast
;
17835 cast
->next
= type
->cast
;
17841 /* Set entry in modules->types array equal to the type */
17842 swig_module
.types
[i
] = type
;
17844 swig_module
.types
[i
] = 0;
17846 #ifdef SWIGRUNTIME_DEBUG
17847 printf("**** SWIG_InitializeModule: Cast List ******\n");
17848 for (i
= 0; i
< swig_module
.size
; ++i
) {
17850 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
17851 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
17852 while (cast
->type
) {
17853 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
17857 printf("---- Total casts: %d\n",j
);
17859 printf("**** SWIG_InitializeModule: Cast List ******\n");
17863 /* This function will propagate the clientdata field of type to
17864 * any new swig_type_info structures that have been added into the list
17865 * of equivalent types. It is like calling
17866 * SWIG_TypeClientData(type, clientdata) a second time.
17869 SWIG_PropagateClientData(void) {
17871 swig_cast_info
*equiv
;
17872 static int init_run
= 0;
17874 if (init_run
) return;
17877 for (i
= 0; i
< swig_module
.size
; i
++) {
17878 if (swig_module
.types
[i
]->clientdata
) {
17879 equiv
= swig_module
.types
[i
]->cast
;
17881 if (!equiv
->converter
) {
17882 if (equiv
->type
&& !equiv
->type
->clientdata
)
17883 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
17885 equiv
= equiv
->next
;
17905 /* Python-specific SWIG API */
17906 #define SWIG_newvarlink() SWIG_Python_newvarlink()
17907 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
17908 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
17910 /* -----------------------------------------------------------------------------
17911 * global variable support code.
17912 * ----------------------------------------------------------------------------- */
17914 typedef struct swig_globalvar
{
17915 char *name
; /* Name of global variable */
17916 PyObject
*(*get_attr
)(void); /* Return the current value */
17917 int (*set_attr
)(PyObject
*); /* Set the value */
17918 struct swig_globalvar
*next
;
17921 typedef struct swig_varlinkobject
{
17923 swig_globalvar
*vars
;
17924 } swig_varlinkobject
;
17926 SWIGINTERN PyObject
*
17927 swig_varlink_repr(swig_varlinkobject
*SWIGUNUSEDPARM(v
)) {
17928 return PyString_FromString("<Swig global variables>");
17931 SWIGINTERN PyObject
*
17932 swig_varlink_str(swig_varlinkobject
*v
) {
17933 PyObject
*str
= PyString_FromString("(");
17934 swig_globalvar
*var
;
17935 for (var
= v
->vars
; var
; var
=var
->next
) {
17936 PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
));
17937 if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", "));
17939 PyString_ConcatAndDel(&str
,PyString_FromString(")"));
17944 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) {
17945 PyObject
*str
= swig_varlink_str(v
);
17946 fprintf(fp
,"Swig global variables ");
17947 fprintf(fp
,"%s\n", PyString_AsString(str
));
17953 swig_varlink_dealloc(swig_varlinkobject
*v
) {
17954 swig_globalvar
*var
= v
->vars
;
17956 swig_globalvar
*n
= var
->next
;
17963 SWIGINTERN PyObject
*
17964 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
17965 PyObject
*res
= NULL
;
17966 swig_globalvar
*var
= v
->vars
;
17968 if (strcmp(var
->name
,n
) == 0) {
17969 res
= (*var
->get_attr
)();
17974 if (res
== NULL
&& !PyErr_Occurred()) {
17975 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
17981 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
17983 swig_globalvar
*var
= v
->vars
;
17985 if (strcmp(var
->name
,n
) == 0) {
17986 res
= (*var
->set_attr
)(p
);
17991 if (res
== 1 && !PyErr_Occurred()) {
17992 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
17997 SWIGINTERN PyTypeObject
*
17998 swig_varlink_type(void) {
17999 static char varlink__doc__
[] = "Swig var link object";
18000 static PyTypeObject varlink_type
;
18001 static int type_init
= 0;
18003 const PyTypeObject tmp
18005 PyObject_HEAD_INIT(NULL
)
18006 0, /* Number of items in variable part (ob_size) */
18007 (char *)"swigvarlink", /* Type name (tp_name) */
18008 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
18009 0, /* Itemsize (tp_itemsize) */
18010 (destructor
) swig_varlink_dealloc
, /* Deallocator (tp_dealloc) */
18011 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
18012 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
18013 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
18014 0, /* tp_compare */
18015 (reprfunc
) swig_varlink_repr
, /* tp_repr */
18016 0, /* tp_as_number */
18017 0, /* tp_as_sequence */
18018 0, /* tp_as_mapping */
18021 (reprfunc
)swig_varlink_str
, /* tp_str */
18022 0, /* tp_getattro */
18023 0, /* tp_setattro */
18024 0, /* tp_as_buffer */
18026 varlink__doc__
, /* tp_doc */
18027 0, /* tp_traverse */
18029 0, /* tp_richcompare */
18030 0, /* tp_weaklistoffset */
18031 #if PY_VERSION_HEX >= 0x02020000
18032 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
18034 #if PY_VERSION_HEX >= 0x02030000
18037 #ifdef COUNT_ALLOCS
18038 0,0,0,0 /* tp_alloc -> tp_next */
18041 varlink_type
= tmp
;
18042 varlink_type
.ob_type
= &PyType_Type
;
18045 return &varlink_type
;
18048 /* Create a variable linking object for use later */
18049 SWIGINTERN PyObject
*
18050 SWIG_Python_newvarlink(void) {
18051 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
18055 return ((PyObject
*) result
);
18059 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
18060 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
18061 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
18063 size_t size
= strlen(name
)+1;
18064 gv
->name
= (char *)malloc(size
);
18066 strncpy(gv
->name
,name
,size
);
18067 gv
->get_attr
= get_attr
;
18068 gv
->set_attr
= set_attr
;
18069 gv
->next
= v
->vars
;
18075 SWIGINTERN PyObject
*
18077 static PyObject
*_SWIG_globals
= 0;
18078 if (!_SWIG_globals
) _SWIG_globals
= SWIG_newvarlink();
18079 return _SWIG_globals
;
18082 /* -----------------------------------------------------------------------------
18083 * constants/methods manipulation
18084 * ----------------------------------------------------------------------------- */
18086 /* Install Constants */
18088 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
18091 for (i
= 0; constants
[i
].type
; ++i
) {
18092 switch(constants
[i
].type
) {
18093 case SWIG_PY_POINTER
:
18094 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
18096 case SWIG_PY_BINARY
:
18097 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
18104 PyDict_SetItemString(d
, constants
[i
].name
, obj
);
18110 /* -----------------------------------------------------------------------------*/
18111 /* Fix SwigMethods to carry the callback ptrs when needed */
18112 /* -----------------------------------------------------------------------------*/
18115 SWIG_Python_FixMethods(PyMethodDef
*methods
,
18116 swig_const_info
*const_table
,
18117 swig_type_info
**types
,
18118 swig_type_info
**types_initial
) {
18120 for (i
= 0; methods
[i
].ml_name
; ++i
) {
18121 const char *c
= methods
[i
].ml_doc
;
18122 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
18124 swig_const_info
*ci
= 0;
18125 const char *name
= c
+ 10;
18126 for (j
= 0; const_table
[j
].type
; ++j
) {
18127 if (strncmp(const_table
[j
].name
, name
,
18128 strlen(const_table
[j
].name
)) == 0) {
18129 ci
= &(const_table
[j
]);
18134 size_t shift
= (ci
->ptype
) - types
;
18135 swig_type_info
*ty
= types_initial
[shift
];
18136 size_t ldoc
= (c
- methods
[i
].ml_doc
);
18137 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
18138 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
18141 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
18143 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
18145 strncpy(buff
, "swig_ptr: ", 10);
18147 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
18148 methods
[i
].ml_doc
= ndoc
;
18160 /* -----------------------------------------------------------------------------*
18161 * Partial Init method
18162 * -----------------------------------------------------------------------------*/
18167 SWIGEXPORT
void SWIG_init(void) {
18170 /* Fix SwigMethods to carry the callback ptrs when needed */
18171 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
18173 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
18174 d
= PyModule_GetDict(m
);
18176 SWIG_InitializeModule(0);
18177 SWIG_InstallConstants(d
,swig_const_table
);
18180 SWIG_Python_SetConstant(d
, "USE_AUI",SWIG_From_int(static_cast< int >(1)));
18181 SWIG_Python_SetConstant(d
, "AUI_DOCK_NONE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_NONE
)));
18182 SWIG_Python_SetConstant(d
, "AUI_DOCK_TOP",SWIG_From_int(static_cast< int >(wxAUI_DOCK_TOP
)));
18183 SWIG_Python_SetConstant(d
, "AUI_DOCK_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_RIGHT
)));
18184 SWIG_Python_SetConstant(d
, "AUI_DOCK_BOTTOM",SWIG_From_int(static_cast< int >(wxAUI_DOCK_BOTTOM
)));
18185 SWIG_Python_SetConstant(d
, "AUI_DOCK_LEFT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_LEFT
)));
18186 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTER",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTER
)));
18187 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTRE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTRE
)));
18188 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_FLOATING",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_FLOATING
)));
18189 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_ACTIVE_PANE",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_ACTIVE_PANE
)));
18190 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_DRAG",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_DRAG
)));
18191 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_HINT
)));
18192 SWIG_Python_SetConstant(d
, "AUI_MGR_VENETIAN_BLINDS_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_VENETIAN_BLINDS_HINT
)));
18193 SWIG_Python_SetConstant(d
, "AUI_MGR_RECTANGLE_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_RECTANGLE_HINT
)));
18194 SWIG_Python_SetConstant(d
, "AUI_MGR_HINT_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_HINT_FADE
)));
18195 SWIG_Python_SetConstant(d
, "AUI_MGR_NO_VENETIAN_BLINDS_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_NO_VENETIAN_BLINDS_FADE
)));
18196 SWIG_Python_SetConstant(d
, "AUI_MGR_DEFAULT",SWIG_From_int(static_cast< int >(wxAUI_MGR_DEFAULT
)));
18197 SWIG_Python_SetConstant(d
, "AUI_ART_SASH_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_SASH_SIZE
)));
18198 SWIG_Python_SetConstant(d
, "AUI_ART_CAPTION_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_CAPTION_SIZE
)));
18199 SWIG_Python_SetConstant(d
, "AUI_ART_GRIPPER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_GRIPPER_SIZE
)));
18200 SWIG_Python_SetConstant(d
, "AUI_ART_PANE_BORDER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_PANE_BORDER_SIZE
)));
18201 SWIG_Python_SetConstant(d
, "AUI_ART_PANE_BUTTON_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_PANE_BUTTON_SIZE
)));
18202 SWIG_Python_SetConstant(d
, "AUI_ART_BACKGROUND_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_BACKGROUND_COLOUR
)));
18203 SWIG_Python_SetConstant(d
, "AUI_ART_SASH_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_SASH_COLOUR
)));
18204 SWIG_Python_SetConstant(d
, "AUI_ART_ACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_ACTIVE_CAPTION_COLOUR
)));
18205 SWIG_Python_SetConstant(d
, "AUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR
)));
18206 SWIG_Python_SetConstant(d
, "AUI_ART_INACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_INACTIVE_CAPTION_COLOUR
)));
18207 SWIG_Python_SetConstant(d
, "AUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR
)));
18208 SWIG_Python_SetConstant(d
, "AUI_ART_ACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_ACTIVE_CAPTION_TEXT_COLOUR
)));
18209 SWIG_Python_SetConstant(d
, "AUI_ART_INACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_INACTIVE_CAPTION_TEXT_COLOUR
)));
18210 SWIG_Python_SetConstant(d
, "AUI_ART_BORDER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_BORDER_COLOUR
)));
18211 SWIG_Python_SetConstant(d
, "AUI_ART_GRIPPER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_GRIPPER_COLOUR
)));
18212 SWIG_Python_SetConstant(d
, "AUI_ART_CAPTION_FONT",SWIG_From_int(static_cast< int >(wxAUI_ART_CAPTION_FONT
)));
18213 SWIG_Python_SetConstant(d
, "AUI_ART_GRADIENT_TYPE",SWIG_From_int(static_cast< int >(wxAUI_ART_GRADIENT_TYPE
)));
18214 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_NONE",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_NONE
)));
18215 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_VERTICAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_VERTICAL
)));
18216 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_HORIZONTAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_HORIZONTAL
)));
18217 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_NORMAL",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_NORMAL
)));
18218 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_HOVER",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_HOVER
)));
18219 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_PRESSED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_PRESSED
)));
18220 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_DISABLED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_DISABLED
)));
18221 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_HIDDEN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_HIDDEN
)));
18222 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CLOSE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CLOSE
)));
18223 SWIG_Python_SetConstant(d
, "AUI_BUTTON_MAXIMIZE_RESTORE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_MAXIMIZE_RESTORE
)));
18224 SWIG_Python_SetConstant(d
, "AUI_BUTTON_MINIMIZE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_MINIMIZE
)));
18225 SWIG_Python_SetConstant(d
, "AUI_BUTTON_PIN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_PIN
)));
18226 SWIG_Python_SetConstant(d
, "AUI_BUTTON_OPTIONS",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_OPTIONS
)));
18227 SWIG_Python_SetConstant(d
, "AUI_BUTTON_WINDOWLIST",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_WINDOWLIST
)));
18228 SWIG_Python_SetConstant(d
, "AUI_BUTTON_LEFT",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_LEFT
)));
18229 SWIG_Python_SetConstant(d
, "AUI_BUTTON_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_RIGHT
)));
18230 SWIG_Python_SetConstant(d
, "AUI_BUTTON_UP",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_UP
)));
18231 SWIG_Python_SetConstant(d
, "AUI_BUTTON_DOWN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_DOWN
)));
18232 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM1",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM1
)));
18233 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM2",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM2
)));
18234 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM3",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM3
)));
18235 SWIG_Python_SetConstant(d
, "AUI_INSERT_PANE",SWIG_From_int(static_cast< int >(wxAUI_INSERT_PANE
)));
18236 SWIG_Python_SetConstant(d
, "AUI_INSERT_ROW",SWIG_From_int(static_cast< int >(wxAUI_INSERT_ROW
)));
18237 SWIG_Python_SetConstant(d
, "AUI_INSERT_DOCK",SWIG_From_int(static_cast< int >(wxAUI_INSERT_DOCK
)));
18238 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals());
18239 SWIG_addvarlink(SWIG_globals(),(char*)"AuiNullDockInfo",AuiNullDockInfo_get
, AuiNullDockInfo_set
);
18240 SWIG_addvarlink(SWIG_globals(),(char*)"AuiNullPaneInfo",AuiNullPaneInfo_get
, AuiNullPaneInfo_set
);
18241 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionFloating",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionFloating
)));
18242 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionHidden",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionHidden
)));
18243 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionLeftDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionLeftDockable
)));
18244 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionRightDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionRightDockable
)));
18245 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionTopDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionTopDockable
)));
18246 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionBottomDockable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionBottomDockable
)));
18247 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionFloatable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionFloatable
)));
18248 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionMovable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionMovable
)));
18249 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionResizable",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionResizable
)));
18250 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionPaneBorder",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionPaneBorder
)));
18251 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionCaption",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionCaption
)));
18252 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionGripper",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionGripper
)));
18253 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionDestroyOnClose",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionDestroyOnClose
)));
18254 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionToolbar",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionToolbar
)));
18255 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionActive",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionActive
)));
18256 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionGripperTop",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionGripperTop
)));
18257 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionMaximized",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionMaximized
)));
18258 SWIG_Python_SetConstant(d
, "AuiPaneInfo_optionSavedHidden",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::optionSavedHidden
)));
18259 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonClose",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonClose
)));
18260 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonMaximize",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonMaximize
)));
18261 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonMinimize",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonMinimize
)));
18262 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonPin",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonPin
)));
18263 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonCustom1",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonCustom1
)));
18264 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonCustom2",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonCustom2
)));
18265 SWIG_Python_SetConstant(d
, "AuiPaneInfo_buttonCustom3",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::buttonCustom3
)));
18266 SWIG_Python_SetConstant(d
, "AuiPaneInfo_actionPane",SWIG_From_int(static_cast< int >(wxAuiPaneInfo::actionPane
)));
18267 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeCaption",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeCaption
)));
18268 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeGripper",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeGripper
)));
18269 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeDock",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeDock
)));
18270 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeDockSizer",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeDockSizer
)));
18271 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePane",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePane
)));
18272 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePaneSizer",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePaneSizer
)));
18273 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typeBackground",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typeBackground
)));
18274 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePaneBorder",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePaneBorder
)));
18275 SWIG_Python_SetConstant(d
, "AuiDockUIPart_typePaneButton",SWIG_From_int(static_cast< int >(wxAuiDockUIPart::typePaneButton
)));
18276 PyDict_SetItemString(d
, "wxEVT_AUI_PANEBUTTON", PyInt_FromLong(wxEVT_AUI_PANEBUTTON
));
18277 PyDict_SetItemString(d
, "wxEVT_AUI_PANECLOSE", PyInt_FromLong(wxEVT_AUI_PANECLOSE
));
18278 PyDict_SetItemString(d
, "wxEVT_AUI_PANEMAXIMIZE", PyInt_FromLong(wxEVT_AUI_PANEMAXIMIZE
));
18279 PyDict_SetItemString(d
, "wxEVT_AUI_PANERESTORE", PyInt_FromLong(wxEVT_AUI_PANERESTORE
));
18280 PyDict_SetItemString(d
, "wxEVT_AUI_RENDER", PyInt_FromLong(wxEVT_AUI_RENDER
));
18281 SWIG_Python_SetConstant(d
, "AUI_NB_TOP",SWIG_From_int(static_cast< int >(wxAUI_NB_TOP
)));
18282 SWIG_Python_SetConstant(d
, "AUI_NB_LEFT",SWIG_From_int(static_cast< int >(wxAUI_NB_LEFT
)));
18283 SWIG_Python_SetConstant(d
, "AUI_NB_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_NB_RIGHT
)));
18284 SWIG_Python_SetConstant(d
, "AUI_NB_BOTTOM",SWIG_From_int(static_cast< int >(wxAUI_NB_BOTTOM
)));
18285 SWIG_Python_SetConstant(d
, "AUI_NB_TAB_SPLIT",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_SPLIT
)));
18286 SWIG_Python_SetConstant(d
, "AUI_NB_TAB_MOVE",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_MOVE
)));
18287 SWIG_Python_SetConstant(d
, "AUI_NB_TAB_EXTERNAL_MOVE",SWIG_From_int(static_cast< int >(wxAUI_NB_TAB_EXTERNAL_MOVE
)));
18288 SWIG_Python_SetConstant(d
, "AUI_NB_SCROLL_BUTTONS",SWIG_From_int(static_cast< int >(wxAUI_NB_SCROLL_BUTTONS
)));
18289 SWIG_Python_SetConstant(d
, "AUI_NB_WINDOWLIST_BUTTON",SWIG_From_int(static_cast< int >(wxAUI_NB_WINDOWLIST_BUTTON
)));
18290 SWIG_Python_SetConstant(d
, "AUI_NB_CLOSE_BUTTON",SWIG_From_int(static_cast< int >(wxAUI_NB_CLOSE_BUTTON
)));
18291 SWIG_Python_SetConstant(d
, "AUI_NB_CLOSE_ON_ACTIVE_TAB",SWIG_From_int(static_cast< int >(wxAUI_NB_CLOSE_ON_ACTIVE_TAB
)));
18292 SWIG_Python_SetConstant(d
, "AUI_NB_CLOSE_ON_ALL_TABS",SWIG_From_int(static_cast< int >(wxAUI_NB_CLOSE_ON_ALL_TABS
)));
18293 SWIG_Python_SetConstant(d
, "AUI_NB_DEFAULT_STYLE",SWIG_From_int(static_cast< int >(wxAUI_NB_DEFAULT_STYLE
)));
18294 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE
));
18295 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED
));
18296 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING
));
18297 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_BUTTON", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_BUTTON
));
18298 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG
));
18299 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_END_DRAG", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG
));
18300 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION
));
18301 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND
));