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_wxAuiMultiNotebook swig_types[3]
2470 #define SWIGTYPE_p_p_wxAuiTabContainerButton swig_types[4]
2471 #define SWIGTYPE_p_p_wxAuiTabCtrl swig_types[5]
2472 #define SWIGTYPE_p_p_wxColourDialog swig_types[6]
2473 #define SWIGTYPE_p_p_wxControl swig_types[7]
2474 #define SWIGTYPE_p_p_wxControlWithItems swig_types[8]
2475 #define SWIGTYPE_p_p_wxDialog swig_types[9]
2476 #define SWIGTYPE_p_p_wxDirDialog swig_types[10]
2477 #define SWIGTYPE_p_p_wxFileDialog swig_types[11]
2478 #define SWIGTYPE_p_p_wxFindReplaceDialog swig_types[12]
2479 #define SWIGTYPE_p_p_wxFloatingPane 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_wxAuiMultiNotebook swig_types[58]
2525 #define SWIGTYPE_p_wxAuiNotebookEvent swig_types[59]
2526 #define SWIGTYPE_p_wxAuiNotebookPage swig_types[60]
2527 #define SWIGTYPE_p_wxAuiNotebookPageArray swig_types[61]
2528 #define SWIGTYPE_p_wxAuiTabContainer swig_types[62]
2529 #define SWIGTYPE_p_wxAuiTabContainerButton swig_types[63]
2530 #define SWIGTYPE_p_wxAuiTabCtrl swig_types[64]
2531 #define SWIGTYPE_p_wxBMPHandler swig_types[65]
2532 #define SWIGTYPE_p_wxBitmap swig_types[66]
2533 #define SWIGTYPE_p_wxBoxSizer swig_types[67]
2534 #define SWIGTYPE_p_wxCURHandler swig_types[68]
2535 #define SWIGTYPE_p_wxCalculateLayoutEvent swig_types[69]
2536 #define SWIGTYPE_p_wxChildFocusEvent swig_types[70]
2537 #define SWIGTYPE_p_wxClipboardTextEvent swig_types[71]
2538 #define SWIGTYPE_p_wxCloseEvent swig_types[72]
2539 #define SWIGTYPE_p_wxColor swig_types[73]
2540 #define SWIGTYPE_p_wxColour swig_types[74]
2541 #define SWIGTYPE_p_wxColourData swig_types[75]
2542 #define SWIGTYPE_p_wxColourDialog swig_types[76]
2543 #define SWIGTYPE_p_wxCommandEvent swig_types[77]
2544 #define SWIGTYPE_p_wxContextMenuEvent swig_types[78]
2545 #define SWIGTYPE_p_wxControl swig_types[79]
2546 #define SWIGTYPE_p_wxControlWithItems swig_types[80]
2547 #define SWIGTYPE_p_wxDC swig_types[81]
2548 #define SWIGTYPE_p_wxDateEvent swig_types[82]
2549 #define SWIGTYPE_p_wxDefaultDockArt swig_types[83]
2550 #define SWIGTYPE_p_wxDefaultTabArt swig_types[84]
2551 #define SWIGTYPE_p_wxDialog swig_types[85]
2552 #define SWIGTYPE_p_wxDirDialog swig_types[86]
2553 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[87]
2554 #define SWIGTYPE_p_wxDockArt swig_types[88]
2555 #define SWIGTYPE_p_wxDockInfo swig_types[89]
2556 #define SWIGTYPE_p_wxDockUIPart swig_types[90]
2557 #define SWIGTYPE_p_wxDropFilesEvent swig_types[91]
2558 #define SWIGTYPE_p_wxDuplexMode swig_types[92]
2559 #define SWIGTYPE_p_wxEraseEvent swig_types[93]
2560 #define SWIGTYPE_p_wxEvent swig_types[94]
2561 #define SWIGTYPE_p_wxEvtHandler swig_types[95]
2562 #define SWIGTYPE_p_wxFSFile swig_types[96]
2563 #define SWIGTYPE_p_wxFileDialog swig_types[97]
2564 #define SWIGTYPE_p_wxFileSystem swig_types[98]
2565 #define SWIGTYPE_p_wxFindDialogEvent swig_types[99]
2566 #define SWIGTYPE_p_wxFindReplaceData swig_types[100]
2567 #define SWIGTYPE_p_wxFindReplaceDialog swig_types[101]
2568 #define SWIGTYPE_p_wxFlexGridSizer swig_types[102]
2569 #define SWIGTYPE_p_wxFloatingPane swig_types[103]
2570 #define SWIGTYPE_p_wxFocusEvent swig_types[104]
2571 #define SWIGTYPE_p_wxFont swig_types[105]
2572 #define SWIGTYPE_p_wxFontData swig_types[106]
2573 #define SWIGTYPE_p_wxFontDialog swig_types[107]
2574 #define SWIGTYPE_p_wxFrame swig_types[108]
2575 #define SWIGTYPE_p_wxFrameManager swig_types[109]
2576 #define SWIGTYPE_p_wxFrameManagerEvent swig_types[110]
2577 #define SWIGTYPE_p_wxGBSizerItem swig_types[111]
2578 #define SWIGTYPE_p_wxGIFHandler swig_types[112]
2579 #define SWIGTYPE_p_wxGridBagSizer swig_types[113]
2580 #define SWIGTYPE_p_wxGridSizer swig_types[114]
2581 #define SWIGTYPE_p_wxICOHandler swig_types[115]
2582 #define SWIGTYPE_p_wxIconizeEvent swig_types[116]
2583 #define SWIGTYPE_p_wxIdleEvent swig_types[117]
2584 #define SWIGTYPE_p_wxImage swig_types[118]
2585 #define SWIGTYPE_p_wxImageHandler swig_types[119]
2586 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[120]
2587 #define SWIGTYPE_p_wxInitDialogEvent swig_types[121]
2588 #define SWIGTYPE_p_wxJPEGHandler swig_types[122]
2589 #define SWIGTYPE_p_wxKeyEvent swig_types[123]
2590 #define SWIGTYPE_p_wxLayoutAlgorithm swig_types[124]
2591 #define SWIGTYPE_p_wxLayoutConstraints swig_types[125]
2592 #define SWIGTYPE_p_wxMDIChildFrame swig_types[126]
2593 #define SWIGTYPE_p_wxMDIClientWindow swig_types[127]
2594 #define SWIGTYPE_p_wxMDIParentFrame swig_types[128]
2595 #define SWIGTYPE_p_wxMaximizeEvent swig_types[129]
2596 #define SWIGTYPE_p_wxMenu swig_types[130]
2597 #define SWIGTYPE_p_wxMenuBar swig_types[131]
2598 #define SWIGTYPE_p_wxMenuEvent swig_types[132]
2599 #define SWIGTYPE_p_wxMenuItem swig_types[133]
2600 #define SWIGTYPE_p_wxMessageDialog swig_types[134]
2601 #define SWIGTYPE_p_wxMiniFrame swig_types[135]
2602 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[136]
2603 #define SWIGTYPE_p_wxMouseCaptureLostEvent swig_types[137]
2604 #define SWIGTYPE_p_wxMouseEvent swig_types[138]
2605 #define SWIGTYPE_p_wxMoveEvent swig_types[139]
2606 #define SWIGTYPE_p_wxMultiChoiceDialog swig_types[140]
2607 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[141]
2608 #define SWIGTYPE_p_wxNcPaintEvent swig_types[142]
2609 #define SWIGTYPE_p_wxNotifyEvent swig_types[143]
2610 #define SWIGTYPE_p_wxNumberEntryDialog swig_types[144]
2611 #define SWIGTYPE_p_wxObject swig_types[145]
2612 #define SWIGTYPE_p_wxPCXHandler swig_types[146]
2613 #define SWIGTYPE_p_wxPNGHandler swig_types[147]
2614 #define SWIGTYPE_p_wxPNMHandler swig_types[148]
2615 #define SWIGTYPE_p_wxPageSetupDialog swig_types[149]
2616 #define SWIGTYPE_p_wxPageSetupDialogData swig_types[150]
2617 #define SWIGTYPE_p_wxPaintEvent swig_types[151]
2618 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[152]
2619 #define SWIGTYPE_p_wxPaneButton swig_types[153]
2620 #define SWIGTYPE_p_wxPaneButtonArray swig_types[154]
2621 #define SWIGTYPE_p_wxPaneInfo swig_types[155]
2622 #define SWIGTYPE_p_wxPaneInfoPtrArray swig_types[156]
2623 #define SWIGTYPE_p_wxPanel swig_types[157]
2624 #define SWIGTYPE_p_wxPaperSize swig_types[158]
2625 #define SWIGTYPE_p_wxPasswordEntryDialog swig_types[159]
2626 #define SWIGTYPE_p_wxPoint swig_types[160]
2627 #define SWIGTYPE_p_wxPopupWindow swig_types[161]
2628 #define SWIGTYPE_p_wxPreviewCanvas swig_types[162]
2629 #define SWIGTYPE_p_wxPreviewControlBar swig_types[163]
2630 #define SWIGTYPE_p_wxPreviewFrame swig_types[164]
2631 #define SWIGTYPE_p_wxPrintData swig_types[165]
2632 #define SWIGTYPE_p_wxPrintDialog swig_types[166]
2633 #define SWIGTYPE_p_wxPrintDialogData swig_types[167]
2634 #define SWIGTYPE_p_wxPrintPreview swig_types[168]
2635 #define SWIGTYPE_p_wxPrinter swig_types[169]
2636 #define SWIGTYPE_p_wxProgressDialog swig_types[170]
2637 #define SWIGTYPE_p_wxPyApp swig_types[171]
2638 #define SWIGTYPE_p_wxPyCommandEvent swig_types[172]
2639 #define SWIGTYPE_p_wxPyDockArt swig_types[173]
2640 #define SWIGTYPE_p_wxPyEvent swig_types[174]
2641 #define SWIGTYPE_p_wxPyHtmlListBox swig_types[175]
2642 #define SWIGTYPE_p_wxPyImageHandler swig_types[176]
2643 #define SWIGTYPE_p_wxPyPanel swig_types[177]
2644 #define SWIGTYPE_p_wxPyPopupTransientWindow swig_types[178]
2645 #define SWIGTYPE_p_wxPyPreviewControlBar swig_types[179]
2646 #define SWIGTYPE_p_wxPyPreviewFrame swig_types[180]
2647 #define SWIGTYPE_p_wxPyPrintPreview swig_types[181]
2648 #define SWIGTYPE_p_wxPyPrintout swig_types[182]
2649 #define SWIGTYPE_p_wxPyScrolledWindow swig_types[183]
2650 #define SWIGTYPE_p_wxPySizer swig_types[184]
2651 #define SWIGTYPE_p_wxPyTabArt swig_types[185]
2652 #define SWIGTYPE_p_wxPyTaskBarIcon swig_types[186]
2653 #define SWIGTYPE_p_wxPyVListBox swig_types[187]
2654 #define SWIGTYPE_p_wxPyVScrolledWindow swig_types[188]
2655 #define SWIGTYPE_p_wxPyValidator swig_types[189]
2656 #define SWIGTYPE_p_wxPyWindow swig_types[190]
2657 #define SWIGTYPE_p_wxQueryLayoutInfoEvent swig_types[191]
2658 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[192]
2659 #define SWIGTYPE_p_wxRect swig_types[193]
2660 #define SWIGTYPE_p_wxSashEvent swig_types[194]
2661 #define SWIGTYPE_p_wxSashLayoutWindow swig_types[195]
2662 #define SWIGTYPE_p_wxSashWindow swig_types[196]
2663 #define SWIGTYPE_p_wxScrollEvent swig_types[197]
2664 #define SWIGTYPE_p_wxScrollWinEvent swig_types[198]
2665 #define SWIGTYPE_p_wxScrolledWindow swig_types[199]
2666 #define SWIGTYPE_p_wxSetCursorEvent swig_types[200]
2667 #define SWIGTYPE_p_wxShowEvent swig_types[201]
2668 #define SWIGTYPE_p_wxSingleChoiceDialog swig_types[202]
2669 #define SWIGTYPE_p_wxSize swig_types[203]
2670 #define SWIGTYPE_p_wxSizeEvent swig_types[204]
2671 #define SWIGTYPE_p_wxSizer swig_types[205]
2672 #define SWIGTYPE_p_wxSizerItem swig_types[206]
2673 #define SWIGTYPE_p_wxSplashScreen swig_types[207]
2674 #define SWIGTYPE_p_wxSplashScreenWindow swig_types[208]
2675 #define SWIGTYPE_p_wxSplitterEvent swig_types[209]
2676 #define SWIGTYPE_p_wxSplitterWindow swig_types[210]
2677 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[211]
2678 #define SWIGTYPE_p_wxStatusBar swig_types[212]
2679 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[213]
2680 #define SWIGTYPE_p_wxString swig_types[214]
2681 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[215]
2682 #define SWIGTYPE_p_wxTGAHandler swig_types[216]
2683 #define SWIGTYPE_p_wxTIFFHandler swig_types[217]
2684 #define SWIGTYPE_p_wxTabArt swig_types[218]
2685 #define SWIGTYPE_p_wxTaskBarIconEvent swig_types[219]
2686 #define SWIGTYPE_p_wxTextEntryDialog swig_types[220]
2687 #define SWIGTYPE_p_wxTipWindow swig_types[221]
2688 #define SWIGTYPE_p_wxTopLevelWindow swig_types[222]
2689 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[223]
2690 #define SWIGTYPE_p_wxValidator swig_types[224]
2691 #define SWIGTYPE_p_wxWindow swig_types[225]
2692 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[226]
2693 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[227]
2694 #define SWIGTYPE_p_wxXPMHandler swig_types[228]
2695 static swig_type_info
*swig_types
[230];
2696 static swig_module_info swig_module
= {swig_types
, 229, 0, 0, 0, 0};
2697 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2698 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
2700 /* -------- TYPES TABLE (END) -------- */
2702 #if (PY_VERSION_HEX <= 0x02000000)
2703 # if !defined(SWIG_PYTHON_CLASSIC)
2704 # error "This python version requires to use swig with the '-classic' option"
2707 #if (PY_VERSION_HEX <= 0x02020000)
2708 # error "This python version requires to use swig with the '-nomodern' option"
2710 #if (PY_VERSION_HEX <= 0x02020000)
2711 # error "This python version requires to use swig with the '-nomodernargs' option"
2714 # error "This python version requires to use swig with the '-nofastunpack' option"
2717 /*-----------------------------------------------
2719 ------------------------------------------------*/
2720 #define SWIG_init init_aui
2722 #define SWIG_name "_aui"
2724 #define SWIGVERSION 0x010329
2727 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
2728 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))
2731 #include <stdexcept>
2735 class PyObject_ptr
{
2740 PyObject_ptr() :_obj(0)
2744 PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
)
2749 PyObject_ptr(PyObject
*obj
, bool initial_ref
= true) :_obj(obj
)
2751 if (initial_ref
) Py_XINCREF(_obj
);
2754 PyObject_ptr
& operator=(const PyObject_ptr
& item
)
2756 Py_XINCREF(item
._obj
);
2767 operator PyObject
*() const
2772 PyObject
*operator->() const
2781 struct PyObject_var
: PyObject_ptr
{
2782 PyObject_var(PyObject
* obj
= 0) : PyObject_ptr(obj
, false) { }
2784 PyObject_var
& operator = (PyObject
* obj
)
2794 #include "wx/wxPython/wxPython.h"
2795 #include "wx/wxPython/pyclasses.h"
2796 #include <wx/aui/aui.h>
2799 #define SWIG_From_long PyInt_FromLong
2802 SWIGINTERNINLINE PyObject
*
2803 SWIG_From_int (int value
)
2805 return SWIG_From_long (value
);
2811 # define LLONG_MIN LONG_LONG_MIN
2814 # define LLONG_MAX LONG_LONG_MAX
2817 # define ULLONG_MAX ULONG_LONG_MAX
2822 SWIG_AsVal_long (PyObject
* obj
, long* val
)
2824 if (PyNumber_Check(obj
)) {
2825 if (val
) *val
= PyInt_AsLong(obj
);
2828 return SWIG_TypeError
;
2833 SWIG_AsVal_int (PyObject
* obj
, int *val
)
2836 int res
= SWIG_AsVal_long (obj
, &v
);
2837 if (SWIG_IsOK(res
)) {
2838 if ((v
< INT_MIN
|| v
> INT_MAX
)) {
2839 return SWIG_OverflowError
;
2841 if (val
) *val
= static_cast< int >(v
);
2849 SWIG_AsVal_bool (PyObject
*obj
, bool *val
)
2851 if (obj
== Py_True
) {
2852 if (val
) *val
= true;
2854 } else if (obj
== Py_False
) {
2855 if (val
) *val
= false;
2859 int res
= SWIG_AddCast(SWIG_AsVal_long (obj
, val
? &v
: 0));
2860 if (SWIG_IsOK(res
) && val
) *val
= v
? true : false;
2865 SWIGINTERN
void delete_wxDockInfo(wxDockInfo
*self
){}
2866 SWIGINTERN
void delete_wxDockUIPart(wxDockUIPart
*self
){}
2867 SWIGINTERN
void delete_wxPaneButton(wxPaneButton
*self
){}
2870 SWIG_AsVal_unsigned_SS_long (PyObject
* obj
, unsigned long* val
)
2873 if (SWIG_AsVal_long(obj
, &v
) && v
< 0) {
2874 return SWIG_TypeError
;
2877 *val
= (unsigned long)v
;
2882 SWIGINTERNINLINE
int
2883 SWIG_AsVal_size_t (PyObject
* obj
, size_t *val
)
2886 int res
= SWIG_AsVal_unsigned_SS_long (obj
, val
? &v
: 0);
2887 if (SWIG_IsOK(res
) && val
) *val
= static_cast< size_t >(v
);
2892 SWIGINTERNINLINE PyObject
*
2893 SWIG_From_unsigned_SS_long (unsigned long value
)
2895 return (value
> LONG_MAX
) ?
2896 PyLong_FromUnsignedLong(value
) : PyInt_FromLong(static_cast< long >(value
));
2900 SWIGINTERNINLINE PyObject
*
2901 SWIG_From_size_t (size_t value
)
2903 return SWIG_From_unsigned_SS_long (static_cast< unsigned long >(value
));
2907 // A wxDocArt class that knows how to forward virtuals to Python methods
2908 class wxPyDockArt
: public wxDefaultDockArt
2910 wxPyDockArt() : wxDefaultDockArt() {}
2912 DEC_PYCALLBACK_INT_INT(GetMetric
);
2913 DEC_PYCALLBACK_VOID_INTINT(SetMetric
);
2914 DEC_PYCALLBACK__INTFONT(SetFont
);
2915 DEC_PYCALLBACK_FONT_INT(GetFont
);
2916 DEC_PYCALLBACK_COLOUR_INT(GetColour
);
2917 DEC_PYCALLBACK__INTCOLOUR(SetColour
);
2919 virtual void DrawSash(wxDC
& dc
,
2925 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2926 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawSash"))) {
2927 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2928 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2929 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2930 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiO)",
2931 odc
, owin
, orientation
, orect
));
2936 wxPyEndBlockThreads(blocked
);
2938 wxDefaultDockArt::DrawSash(dc
, window
, orientation
, rect
);
2941 virtual void DrawBackground(wxDC
& dc
,
2947 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2948 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBackground"))) {
2949 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2950 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2951 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2952 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiO)",
2953 odc
, owin
, orientation
, orect
));
2958 wxPyEndBlockThreads(blocked
);
2960 wxDefaultDockArt::DrawBackground(dc
, window
, orientation
, rect
);
2963 virtual void DrawCaption(wxDC
& dc
,
2965 const wxString
& text
,
2970 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2971 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawCaption"))) {
2972 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2973 PyObject
* owin
= wxPyMake_wxObject(window
, false);
2974 PyObject
* otext
= wx2PyString(text
);
2975 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
2976 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxPaneInfo"), 0);
2977 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOOOO)",
2978 odc
, owin
, otext
, orect
, opane
));
2985 wxPyEndBlockThreads(blocked
);
2987 wxDefaultDockArt::DrawCaption(dc
, window
, text
, rect
, pane
);
2990 virtual void DrawGripper(wxDC
& dc
,
2996 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
2997 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawGripper"))) {
2998 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
2999 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3000 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3001 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxPaneInfo"), 0);
3002 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOOO)", odc
, owin
, orect
, opane
));
3007 wxPyEndBlockThreads(blocked
);
3009 wxDefaultDockArt::DrawGripper(dc
, window
, rect
, pane
);
3012 virtual void DrawBorder(wxDC
& dc
,
3018 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3019 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBorder"))) {
3020 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3021 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3022 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3023 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxPaneInfo"), 0);
3024 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOO)", odc
, orect
, opane
));
3030 wxPyEndBlockThreads(blocked
);
3032 wxDefaultDockArt::DrawBorder(dc
, window
, rect
, pane
);
3035 virtual void DrawPaneButton(wxDC
& dc
,
3043 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3044 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawPaneButton"))) {
3045 PyObject
* odc
= wxPyMake_wxObject(&dc
, false);
3046 PyObject
* owin
= wxPyMake_wxObject(window
, false);
3047 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3048 PyObject
* opane
= wxPyConstructObject((void*)&pane
, wxT("wxPaneInfo"), 0);
3049 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OOiIOO)",
3050 odc
, owin
, button
, button_state
,
3057 wxPyEndBlockThreads(blocked
);
3059 wxDefaultDockArt::DrawPaneButton(dc
, window
, button
, button_state
, rect
, pane
);
3066 IMP_PYCALLBACK_INT_INT(wxPyDockArt
, wxDefaultDockArt
, GetMetric
);
3067 IMP_PYCALLBACK_VOID_INTINT(wxPyDockArt
, wxDefaultDockArt
, SetMetric
);
3068 IMP_PYCALLBACK__INTFONT(wxPyDockArt
, wxDefaultDockArt
, SetFont
);
3069 IMP_PYCALLBACK_FONT_INT(wxPyDockArt
, wxDefaultDockArt
, GetFont
);
3070 IMP_PYCALLBACK_COLOUR_INT(wxPyDockArt
, wxDefaultDockArt
, GetColour
);
3071 IMP_PYCALLBACK__INTCOLOUR(wxPyDockArt
, wxDefaultDockArt
, SetColour
);
3075 // A wxTabArt class that knows how to forward virtuals to Python methods
3076 class wxPyTabArt
: public wxDefaultTabArt
3078 wxPyTabArt() : wxDefaultTabArt() {}
3081 virtual void DrawBackground( wxDC
* dc
,
3082 const wxRect
& rect
)
3085 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3086 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawBackground"))) {
3087 PyObject
* odc
= wxPyMake_wxObject(dc
, false);
3088 PyObject
* orect
= wxPyConstructObject((void*)&rect
, wxT("wxRect"), 0);
3089 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(OO)", odc
, orect
));
3093 wxPyEndBlockThreads(blocked
);
3095 wxDefaultTabArt::DrawBackground(dc
, rect
);
3098 virtual void DrawTab( wxDC
* dc
,
3099 const wxRect
& in_rect
,
3100 const wxString
& caption
,
3106 const char* errmsg
= "DrawTab should return a sequence containing (out_rect, x_extent)";
3107 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3108 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawTab"))) {
3109 PyObject
* odc
= wxPyMake_wxObject(dc
, false);
3110 PyObject
* orect
= wxPyConstructObject((void*)&in_rect
, wxT("wxRect"), 0);
3111 PyObject
* otext
= wx2PyString(caption
);
3113 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("(OOOi)", odc
, orect
, otext
, (int)active
));
3115 if (PySequence_Check(ro
) && PyObject_Length(ro
) == 2) {
3116 PyObject
* o1
= PySequence_GetItem(ro
, 0);
3117 PyObject
* o2
= PySequence_GetItem(ro
, 1);
3118 if (!wxRect_helper(o1
, &out_rect
))
3119 PyErr_SetString(PyExc_TypeError
, errmsg
);
3120 else if (!PyInt_Check(o2
))
3121 PyErr_SetString(PyExc_TypeError
, errmsg
);
3123 *x_extent
= PyInt_AsLong(o2
);
3129 PyErr_SetString(PyExc_TypeError
, errmsg
);
3138 wxPyEndBlockThreads(blocked
);
3140 wxDefaultTabArt::DrawTab(dc
, in_rect
, caption
, active
, out_rect
, x_extent
);
3144 virtual void DrawButton( wxDC
* dc
,
3145 const wxRect
& in_rect
,
3149 const wxBitmap
& bitmap_override
,
3153 const char* errmsg
= "DrawButton should return a wxRect";
3154 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3155 if ((found
= wxPyCBH_findCallback(m_myInst
, "DrawButton"))) {
3156 PyObject
* odc
= wxPyMake_wxObject(dc
, false);
3157 PyObject
* orect
= wxPyConstructObject((void*)&in_rect
, wxT("wxRect"), 0);
3158 PyObject
* obmp
= wxPyConstructObject((void*)&bitmap_override
, wxT("wxBitmap"), 0);
3160 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("(OOiiiO)", odc
, orect
,
3161 bitmap_id
, button_state
, orientation
,
3164 if (!wxRect_helper(ro
, &out_rect
))
3165 PyErr_SetString(PyExc_TypeError
, errmsg
);
3173 wxPyEndBlockThreads(blocked
);
3175 wxDefaultTabArt::DrawButton(dc
, in_rect
, bitmap_id
, button_state
, orientation
, bitmap_override
, out_rect
);
3179 virtual wxSize
GetTabSize( wxDC
* dc
,
3180 const wxString
& caption
,
3185 wxSize rv
, *prv
= &rv
;
3186 const char* errmsg
= "GetTabSize should return a sequence containing (size, x_extent)";
3187 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3188 if ((found
= wxPyCBH_findCallback(m_myInst
, "GetTabSize"))) {
3189 PyObject
* odc
= wxPyMake_wxObject(dc
, false);
3190 PyObject
* otext
= wx2PyString(caption
);
3192 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("(OOi)", odc
, otext
, (int)active
));
3194 if (PySequence_Check(ro
) && PyObject_Length(ro
) == 2) {
3195 PyObject
* o1
= PySequence_GetItem(ro
, 0);
3196 PyObject
* o2
= PySequence_GetItem(ro
, 1);
3197 if (!wxSize_helper(o1
, &prv
))
3198 PyErr_SetString(PyExc_TypeError
, errmsg
);
3199 else if (!PyInt_Check(o2
))
3200 PyErr_SetString(PyExc_TypeError
, errmsg
);
3202 *x_extent
= PyInt_AsLong(o2
);
3208 PyErr_SetString(PyExc_TypeError
, errmsg
);
3216 wxPyEndBlockThreads(blocked
);
3218 rv
= wxDefaultTabArt::GetTabSize(dc
, caption
, active
, x_extent
);
3224 DEC_PYCALLBACK__FONT(SetNormalFont
);
3225 DEC_PYCALLBACK__FONT(SetSelectedFont
);
3226 DEC_PYCALLBACK__FONT(SetMeasuringFont
);
3227 DEC_PYCALLBACK_INT_WIN(GetBestTabCtrlSize
);
3233 IMP_PYCALLBACK__FONT(wxPyTabArt
, wxDefaultTabArt
, SetNormalFont
);
3234 IMP_PYCALLBACK__FONT(wxPyTabArt
, wxDefaultTabArt
, SetSelectedFont
);
3235 IMP_PYCALLBACK__FONT(wxPyTabArt
, wxDefaultTabArt
, SetMeasuringFont
);
3236 IMP_PYCALLBACK_INT_WIN(wxPyTabArt
, wxDefaultTabArt
, GetBestTabCtrlSize
);
3241 SWIGINTERN
int NullDockInfo_set(PyObject
*_val
) {
3244 int res
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxDockInfo
, 0 | 0);
3245 if (!SWIG_IsOK(res
)) {
3246 SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxNullDockInfo""' of type '""wxDockInfo""'");
3249 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxNullDockInfo""' of type '""wxDockInfo""'");
3252 temp
= reinterpret_cast< wxDockInfo
* >(argp
);
3253 wxNullDockInfo
= *temp
;
3254 if (SWIG_IsNewObj(res
)) delete temp
;
3263 SWIGINTERN PyObject
*NullDockInfo_get(void) {
3264 PyObject
*pyobj
= 0;
3266 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxNullDockInfo
), SWIGTYPE_p_wxDockInfo
, 0 );
3271 SWIGINTERN
int NullPaneInfo_set(PyObject
*_val
) {
3274 int res
= SWIG_ConvertPtr(_val
, &argp
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
3275 if (!SWIG_IsOK(res
)) {
3276 SWIG_exception_fail(SWIG_ArgError(res
), "in variable '""wxNullPaneInfo""' of type '""wxPaneInfo""'");
3279 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in variable '""wxNullPaneInfo""' of type '""wxPaneInfo""'");
3282 temp
= reinterpret_cast< wxPaneInfo
* >(argp
);
3283 wxNullPaneInfo
= *temp
;
3284 if (SWIG_IsNewObj(res
)) delete temp
;
3293 SWIGINTERN PyObject
*NullPaneInfo_get(void) {
3294 PyObject
*pyobj
= 0;
3296 pyobj
= SWIG_NewPointerObj(SWIG_as_voidptr(&wxNullPaneInfo
), SWIGTYPE_p_wxPaneInfo
, 0 );
3301 SWIGINTERN PyObject
*_wrap_new_PaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3302 PyObject
*resultobj
= 0;
3303 wxPaneInfo
*result
= 0 ;
3305 if (!SWIG_Python_UnpackTuple(args
,"new_PaneInfo",0,0,0)) SWIG_fail
;
3307 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3308 result
= (wxPaneInfo
*)new wxPaneInfo();
3309 wxPyEndAllowThreads(__tstate
);
3310 if (PyErr_Occurred()) SWIG_fail
;
3312 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, SWIG_POINTER_NEW
| 0 );
3319 SWIGINTERN PyObject
*_wrap_delete_PaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3320 PyObject
*resultobj
= 0;
3321 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3324 PyObject
*swig_obj
[1] ;
3326 if (!args
) SWIG_fail
;
3328 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
3329 if (!SWIG_IsOK(res1
)) {
3330 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_PaneInfo" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3332 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3334 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3337 wxPyEndAllowThreads(__tstate
);
3338 if (PyErr_Occurred()) SWIG_fail
;
3340 resultobj
= SWIG_Py_Void();
3347 SWIGINTERN PyObject
*_wrap_PaneInfo_SafeSet(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3348 PyObject
*resultobj
= 0;
3349 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3355 PyObject
* obj0
= 0 ;
3356 PyObject
* obj1
= 0 ;
3357 char * kwnames
[] = {
3358 (char *) "self",(char *) "source", NULL
3361 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_SafeSet",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3362 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3363 if (!SWIG_IsOK(res1
)) {
3364 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_SafeSet" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
3366 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3368 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
3369 if (!SWIG_IsOK(res2
)) {
3370 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_SafeSet" "', expected argument " "2"" of type '" "wxPaneInfo""'");
3373 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PaneInfo_SafeSet" "', expected argument " "2"" of type '" "wxPaneInfo""'");
3375 wxPaneInfo
* temp
= reinterpret_cast< wxPaneInfo
* >(argp2
);
3377 if (SWIG_IsNewObj(res2
)) delete temp
;
3381 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3382 (arg1
)->SafeSet(arg2
);
3383 wxPyEndAllowThreads(__tstate
);
3384 if (PyErr_Occurred()) SWIG_fail
;
3386 resultobj
= SWIG_Py_Void();
3393 SWIGINTERN PyObject
*_wrap_PaneInfo_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3394 PyObject
*resultobj
= 0;
3395 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3399 PyObject
*swig_obj
[1] ;
3401 if (!args
) SWIG_fail
;
3403 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3404 if (!SWIG_IsOK(res1
)) {
3405 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsOk" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3407 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3409 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3410 result
= (bool)((wxPaneInfo
const *)arg1
)->IsOk();
3411 wxPyEndAllowThreads(__tstate
);
3412 if (PyErr_Occurred()) SWIG_fail
;
3415 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3423 SWIGINTERN PyObject
*_wrap_PaneInfo_IsFixed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3424 PyObject
*resultobj
= 0;
3425 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3429 PyObject
*swig_obj
[1] ;
3431 if (!args
) SWIG_fail
;
3433 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3434 if (!SWIG_IsOK(res1
)) {
3435 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsFixed" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3437 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3439 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3440 result
= (bool)((wxPaneInfo
const *)arg1
)->IsFixed();
3441 wxPyEndAllowThreads(__tstate
);
3442 if (PyErr_Occurred()) SWIG_fail
;
3445 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3453 SWIGINTERN PyObject
*_wrap_PaneInfo_IsResizable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3454 PyObject
*resultobj
= 0;
3455 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3459 PyObject
*swig_obj
[1] ;
3461 if (!args
) SWIG_fail
;
3463 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3464 if (!SWIG_IsOK(res1
)) {
3465 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsResizable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3467 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3469 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3470 result
= (bool)((wxPaneInfo
const *)arg1
)->IsResizable();
3471 wxPyEndAllowThreads(__tstate
);
3472 if (PyErr_Occurred()) SWIG_fail
;
3475 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3483 SWIGINTERN PyObject
*_wrap_PaneInfo_IsShown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3484 PyObject
*resultobj
= 0;
3485 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3489 PyObject
*swig_obj
[1] ;
3491 if (!args
) SWIG_fail
;
3493 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3494 if (!SWIG_IsOK(res1
)) {
3495 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsShown" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3497 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3499 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3500 result
= (bool)((wxPaneInfo
const *)arg1
)->IsShown();
3501 wxPyEndAllowThreads(__tstate
);
3502 if (PyErr_Occurred()) SWIG_fail
;
3505 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3513 SWIGINTERN PyObject
*_wrap_PaneInfo_IsFloating(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3514 PyObject
*resultobj
= 0;
3515 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3519 PyObject
*swig_obj
[1] ;
3521 if (!args
) SWIG_fail
;
3523 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3524 if (!SWIG_IsOK(res1
)) {
3525 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsFloating" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3527 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3529 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3530 result
= (bool)((wxPaneInfo
const *)arg1
)->IsFloating();
3531 wxPyEndAllowThreads(__tstate
);
3532 if (PyErr_Occurred()) SWIG_fail
;
3535 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3543 SWIGINTERN PyObject
*_wrap_PaneInfo_IsDocked(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3544 PyObject
*resultobj
= 0;
3545 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3549 PyObject
*swig_obj
[1] ;
3551 if (!args
) SWIG_fail
;
3553 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3554 if (!SWIG_IsOK(res1
)) {
3555 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsDocked" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3557 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3559 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3560 result
= (bool)((wxPaneInfo
const *)arg1
)->IsDocked();
3561 wxPyEndAllowThreads(__tstate
);
3562 if (PyErr_Occurred()) SWIG_fail
;
3565 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3573 SWIGINTERN PyObject
*_wrap_PaneInfo_IsToolbar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3574 PyObject
*resultobj
= 0;
3575 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3579 PyObject
*swig_obj
[1] ;
3581 if (!args
) SWIG_fail
;
3583 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3584 if (!SWIG_IsOK(res1
)) {
3585 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsToolbar" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3587 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3589 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3590 result
= (bool)((wxPaneInfo
const *)arg1
)->IsToolbar();
3591 wxPyEndAllowThreads(__tstate
);
3592 if (PyErr_Occurred()) SWIG_fail
;
3595 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3603 SWIGINTERN PyObject
*_wrap_PaneInfo_IsTopDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3604 PyObject
*resultobj
= 0;
3605 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3609 PyObject
*swig_obj
[1] ;
3611 if (!args
) SWIG_fail
;
3613 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3614 if (!SWIG_IsOK(res1
)) {
3615 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsTopDockable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3617 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3619 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3620 result
= (bool)((wxPaneInfo
const *)arg1
)->IsTopDockable();
3621 wxPyEndAllowThreads(__tstate
);
3622 if (PyErr_Occurred()) SWIG_fail
;
3625 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3633 SWIGINTERN PyObject
*_wrap_PaneInfo_IsBottomDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3634 PyObject
*resultobj
= 0;
3635 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3639 PyObject
*swig_obj
[1] ;
3641 if (!args
) SWIG_fail
;
3643 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3644 if (!SWIG_IsOK(res1
)) {
3645 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsBottomDockable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3647 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3649 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3650 result
= (bool)((wxPaneInfo
const *)arg1
)->IsBottomDockable();
3651 wxPyEndAllowThreads(__tstate
);
3652 if (PyErr_Occurred()) SWIG_fail
;
3655 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3663 SWIGINTERN PyObject
*_wrap_PaneInfo_IsLeftDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3664 PyObject
*resultobj
= 0;
3665 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3669 PyObject
*swig_obj
[1] ;
3671 if (!args
) SWIG_fail
;
3673 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3674 if (!SWIG_IsOK(res1
)) {
3675 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsLeftDockable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3677 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3679 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3680 result
= (bool)((wxPaneInfo
const *)arg1
)->IsLeftDockable();
3681 wxPyEndAllowThreads(__tstate
);
3682 if (PyErr_Occurred()) SWIG_fail
;
3685 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3693 SWIGINTERN PyObject
*_wrap_PaneInfo_IsRightDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3694 PyObject
*resultobj
= 0;
3695 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3699 PyObject
*swig_obj
[1] ;
3701 if (!args
) SWIG_fail
;
3703 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3704 if (!SWIG_IsOK(res1
)) {
3705 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsRightDockable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3707 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3709 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3710 result
= (bool)((wxPaneInfo
const *)arg1
)->IsRightDockable();
3711 wxPyEndAllowThreads(__tstate
);
3712 if (PyErr_Occurred()) SWIG_fail
;
3715 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3723 SWIGINTERN PyObject
*_wrap_PaneInfo_IsFloatable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3724 PyObject
*resultobj
= 0;
3725 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3729 PyObject
*swig_obj
[1] ;
3731 if (!args
) SWIG_fail
;
3733 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3734 if (!SWIG_IsOK(res1
)) {
3735 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsFloatable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3737 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3739 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3740 result
= (bool)((wxPaneInfo
const *)arg1
)->IsFloatable();
3741 wxPyEndAllowThreads(__tstate
);
3742 if (PyErr_Occurred()) SWIG_fail
;
3745 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3753 SWIGINTERN PyObject
*_wrap_PaneInfo_IsMovable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3754 PyObject
*resultobj
= 0;
3755 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3759 PyObject
*swig_obj
[1] ;
3761 if (!args
) SWIG_fail
;
3763 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3764 if (!SWIG_IsOK(res1
)) {
3765 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsMovable" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3767 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3769 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3770 result
= (bool)((wxPaneInfo
const *)arg1
)->IsMovable();
3771 wxPyEndAllowThreads(__tstate
);
3772 if (PyErr_Occurred()) SWIG_fail
;
3775 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3783 SWIGINTERN PyObject
*_wrap_PaneInfo_IsDestroyOnClose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3784 PyObject
*resultobj
= 0;
3785 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3789 PyObject
*swig_obj
[1] ;
3791 if (!args
) SWIG_fail
;
3793 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3794 if (!SWIG_IsOK(res1
)) {
3795 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_IsDestroyOnClose" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3797 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3799 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3800 result
= (bool)((wxPaneInfo
const *)arg1
)->IsDestroyOnClose();
3801 wxPyEndAllowThreads(__tstate
);
3802 if (PyErr_Occurred()) SWIG_fail
;
3805 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3813 SWIGINTERN PyObject
*_wrap_PaneInfo_HasCaption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3814 PyObject
*resultobj
= 0;
3815 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3819 PyObject
*swig_obj
[1] ;
3821 if (!args
) SWIG_fail
;
3823 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3824 if (!SWIG_IsOK(res1
)) {
3825 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasCaption" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3827 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3829 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3830 result
= (bool)((wxPaneInfo
const *)arg1
)->HasCaption();
3831 wxPyEndAllowThreads(__tstate
);
3832 if (PyErr_Occurred()) SWIG_fail
;
3835 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3843 SWIGINTERN PyObject
*_wrap_PaneInfo_HasGripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3844 PyObject
*resultobj
= 0;
3845 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3849 PyObject
*swig_obj
[1] ;
3851 if (!args
) SWIG_fail
;
3853 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3854 if (!SWIG_IsOK(res1
)) {
3855 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasGripper" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3857 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3859 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3860 result
= (bool)((wxPaneInfo
const *)arg1
)->HasGripper();
3861 wxPyEndAllowThreads(__tstate
);
3862 if (PyErr_Occurred()) SWIG_fail
;
3865 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3873 SWIGINTERN PyObject
*_wrap_PaneInfo_HasBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3874 PyObject
*resultobj
= 0;
3875 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3879 PyObject
*swig_obj
[1] ;
3881 if (!args
) SWIG_fail
;
3883 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3884 if (!SWIG_IsOK(res1
)) {
3885 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasBorder" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3887 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3889 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3890 result
= (bool)((wxPaneInfo
const *)arg1
)->HasBorder();
3891 wxPyEndAllowThreads(__tstate
);
3892 if (PyErr_Occurred()) SWIG_fail
;
3895 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3903 SWIGINTERN PyObject
*_wrap_PaneInfo_HasCloseButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3904 PyObject
*resultobj
= 0;
3905 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3909 PyObject
*swig_obj
[1] ;
3911 if (!args
) SWIG_fail
;
3913 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3914 if (!SWIG_IsOK(res1
)) {
3915 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasCloseButton" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3917 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3919 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3920 result
= (bool)((wxPaneInfo
const *)arg1
)->HasCloseButton();
3921 wxPyEndAllowThreads(__tstate
);
3922 if (PyErr_Occurred()) SWIG_fail
;
3925 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3933 SWIGINTERN PyObject
*_wrap_PaneInfo_HasMaximizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3934 PyObject
*resultobj
= 0;
3935 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3939 PyObject
*swig_obj
[1] ;
3941 if (!args
) SWIG_fail
;
3943 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3944 if (!SWIG_IsOK(res1
)) {
3945 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasMaximizeButton" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3947 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3949 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3950 result
= (bool)((wxPaneInfo
const *)arg1
)->HasMaximizeButton();
3951 wxPyEndAllowThreads(__tstate
);
3952 if (PyErr_Occurred()) SWIG_fail
;
3955 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3963 SWIGINTERN PyObject
*_wrap_PaneInfo_HasMinimizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3964 PyObject
*resultobj
= 0;
3965 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3969 PyObject
*swig_obj
[1] ;
3971 if (!args
) SWIG_fail
;
3973 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
3974 if (!SWIG_IsOK(res1
)) {
3975 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasMinimizeButton" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
3977 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
3979 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3980 result
= (bool)((wxPaneInfo
const *)arg1
)->HasMinimizeButton();
3981 wxPyEndAllowThreads(__tstate
);
3982 if (PyErr_Occurred()) SWIG_fail
;
3985 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3993 SWIGINTERN PyObject
*_wrap_PaneInfo_HasPinButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3994 PyObject
*resultobj
= 0;
3995 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
3999 PyObject
*swig_obj
[1] ;
4001 if (!args
) SWIG_fail
;
4003 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4004 if (!SWIG_IsOK(res1
)) {
4005 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasPinButton" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
4007 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4009 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4010 result
= (bool)((wxPaneInfo
const *)arg1
)->HasPinButton();
4011 wxPyEndAllowThreads(__tstate
);
4012 if (PyErr_Occurred()) SWIG_fail
;
4015 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4023 SWIGINTERN PyObject
*_wrap_PaneInfo_HasGripperTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4024 PyObject
*resultobj
= 0;
4025 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4029 PyObject
*swig_obj
[1] ;
4031 if (!args
) SWIG_fail
;
4033 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4034 if (!SWIG_IsOK(res1
)) {
4035 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasGripperTop" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
4037 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4039 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4040 result
= (bool)((wxPaneInfo
const *)arg1
)->HasGripperTop();
4041 wxPyEndAllowThreads(__tstate
);
4042 if (PyErr_Occurred()) SWIG_fail
;
4045 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4053 SWIGINTERN PyObject
*_wrap_PaneInfo_Window(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4054 PyObject
*resultobj
= 0;
4055 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4056 wxWindow
*arg2
= (wxWindow
*) 0 ;
4057 wxPaneInfo
*result
= 0 ;
4062 PyObject
* obj0
= 0 ;
4063 PyObject
* obj1
= 0 ;
4064 char * kwnames
[] = {
4065 (char *) "self",(char *) "w", NULL
4068 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Window",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4069 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4070 if (!SWIG_IsOK(res1
)) {
4071 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Window" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4073 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4074 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
4075 if (!SWIG_IsOK(res2
)) {
4076 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_Window" "', expected argument " "2"" of type '" "wxWindow *""'");
4078 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
4080 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4082 wxPaneInfo
&_result_ref
= (arg1
)->Window(arg2
);
4083 result
= (wxPaneInfo
*) &_result_ref
;
4085 wxPyEndAllowThreads(__tstate
);
4086 if (PyErr_Occurred()) SWIG_fail
;
4089 resultobj
= obj0
; Py_INCREF(resultobj
);
4097 SWIGINTERN PyObject
*_wrap_PaneInfo_Name(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4098 PyObject
*resultobj
= 0;
4099 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4100 wxString
*arg2
= 0 ;
4101 wxPaneInfo
*result
= 0 ;
4104 bool temp2
= false ;
4105 PyObject
* obj0
= 0 ;
4106 PyObject
* obj1
= 0 ;
4107 char * kwnames
[] = {
4108 (char *) "self",(char *) "n", NULL
4111 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Name",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4112 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4113 if (!SWIG_IsOK(res1
)) {
4114 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Name" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4116 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4118 arg2
= wxString_in_helper(obj1
);
4119 if (arg2
== NULL
) SWIG_fail
;
4123 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4125 wxPaneInfo
&_result_ref
= (arg1
)->Name((wxString
const &)*arg2
);
4126 result
= (wxPaneInfo
*) &_result_ref
;
4128 wxPyEndAllowThreads(__tstate
);
4129 if (PyErr_Occurred()) SWIG_fail
;
4132 resultobj
= obj0
; Py_INCREF(resultobj
);
4148 SWIGINTERN PyObject
*_wrap_PaneInfo_Caption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4149 PyObject
*resultobj
= 0;
4150 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4151 wxString
*arg2
= 0 ;
4152 wxPaneInfo
*result
= 0 ;
4155 bool temp2
= false ;
4156 PyObject
* obj0
= 0 ;
4157 PyObject
* obj1
= 0 ;
4158 char * kwnames
[] = {
4159 (char *) "self",(char *) "c", NULL
4162 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Caption",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4163 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4164 if (!SWIG_IsOK(res1
)) {
4165 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Caption" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4167 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4169 arg2
= wxString_in_helper(obj1
);
4170 if (arg2
== NULL
) SWIG_fail
;
4174 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4176 wxPaneInfo
&_result_ref
= (arg1
)->Caption((wxString
const &)*arg2
);
4177 result
= (wxPaneInfo
*) &_result_ref
;
4179 wxPyEndAllowThreads(__tstate
);
4180 if (PyErr_Occurred()) SWIG_fail
;
4183 resultobj
= obj0
; Py_INCREF(resultobj
);
4199 SWIGINTERN PyObject
*_wrap_PaneInfo_Left(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4200 PyObject
*resultobj
= 0;
4201 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4202 wxPaneInfo
*result
= 0 ;
4205 PyObject
*swig_obj
[1] ;
4207 if (!args
) SWIG_fail
;
4209 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4210 if (!SWIG_IsOK(res1
)) {
4211 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Left" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4213 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4215 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4217 wxPaneInfo
&_result_ref
= (arg1
)->Left();
4218 result
= (wxPaneInfo
*) &_result_ref
;
4220 wxPyEndAllowThreads(__tstate
);
4221 if (PyErr_Occurred()) SWIG_fail
;
4224 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4232 SWIGINTERN PyObject
*_wrap_PaneInfo_Right(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4233 PyObject
*resultobj
= 0;
4234 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4235 wxPaneInfo
*result
= 0 ;
4238 PyObject
*swig_obj
[1] ;
4240 if (!args
) SWIG_fail
;
4242 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4243 if (!SWIG_IsOK(res1
)) {
4244 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Right" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4246 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4248 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4250 wxPaneInfo
&_result_ref
= (arg1
)->Right();
4251 result
= (wxPaneInfo
*) &_result_ref
;
4253 wxPyEndAllowThreads(__tstate
);
4254 if (PyErr_Occurred()) SWIG_fail
;
4257 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4265 SWIGINTERN PyObject
*_wrap_PaneInfo_Top(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4266 PyObject
*resultobj
= 0;
4267 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4268 wxPaneInfo
*result
= 0 ;
4271 PyObject
*swig_obj
[1] ;
4273 if (!args
) SWIG_fail
;
4275 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4276 if (!SWIG_IsOK(res1
)) {
4277 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Top" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4279 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4281 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4283 wxPaneInfo
&_result_ref
= (arg1
)->Top();
4284 result
= (wxPaneInfo
*) &_result_ref
;
4286 wxPyEndAllowThreads(__tstate
);
4287 if (PyErr_Occurred()) SWIG_fail
;
4290 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4298 SWIGINTERN PyObject
*_wrap_PaneInfo_Bottom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4299 PyObject
*resultobj
= 0;
4300 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4301 wxPaneInfo
*result
= 0 ;
4304 PyObject
*swig_obj
[1] ;
4306 if (!args
) SWIG_fail
;
4308 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4309 if (!SWIG_IsOK(res1
)) {
4310 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Bottom" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4312 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4314 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4316 wxPaneInfo
&_result_ref
= (arg1
)->Bottom();
4317 result
= (wxPaneInfo
*) &_result_ref
;
4319 wxPyEndAllowThreads(__tstate
);
4320 if (PyErr_Occurred()) SWIG_fail
;
4323 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4331 SWIGINTERN PyObject
*_wrap_PaneInfo_Center(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4332 PyObject
*resultobj
= 0;
4333 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4334 wxPaneInfo
*result
= 0 ;
4337 PyObject
*swig_obj
[1] ;
4339 if (!args
) SWIG_fail
;
4341 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4342 if (!SWIG_IsOK(res1
)) {
4343 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Center" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4345 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4347 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4349 wxPaneInfo
&_result_ref
= (arg1
)->Center();
4350 result
= (wxPaneInfo
*) &_result_ref
;
4352 wxPyEndAllowThreads(__tstate
);
4353 if (PyErr_Occurred()) SWIG_fail
;
4356 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4364 SWIGINTERN PyObject
*_wrap_PaneInfo_Centre(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4365 PyObject
*resultobj
= 0;
4366 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4367 wxPaneInfo
*result
= 0 ;
4370 PyObject
*swig_obj
[1] ;
4372 if (!args
) SWIG_fail
;
4374 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4375 if (!SWIG_IsOK(res1
)) {
4376 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Centre" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4378 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4380 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4382 wxPaneInfo
&_result_ref
= (arg1
)->Centre();
4383 result
= (wxPaneInfo
*) &_result_ref
;
4385 wxPyEndAllowThreads(__tstate
);
4386 if (PyErr_Occurred()) SWIG_fail
;
4389 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4397 SWIGINTERN PyObject
*_wrap_PaneInfo_Direction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4398 PyObject
*resultobj
= 0;
4399 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4401 wxPaneInfo
*result
= 0 ;
4406 PyObject
* obj0
= 0 ;
4407 PyObject
* obj1
= 0 ;
4408 char * kwnames
[] = {
4409 (char *) "self",(char *) "direction", NULL
4412 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Direction",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4413 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4414 if (!SWIG_IsOK(res1
)) {
4415 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Direction" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4417 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4418 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4419 if (!SWIG_IsOK(ecode2
)) {
4420 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Direction" "', expected argument " "2"" of type '" "int""'");
4422 arg2
= static_cast< int >(val2
);
4424 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4426 wxPaneInfo
&_result_ref
= (arg1
)->Direction(arg2
);
4427 result
= (wxPaneInfo
*) &_result_ref
;
4429 wxPyEndAllowThreads(__tstate
);
4430 if (PyErr_Occurred()) SWIG_fail
;
4433 resultobj
= obj0
; Py_INCREF(resultobj
);
4441 SWIGINTERN PyObject
*_wrap_PaneInfo_Layer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4442 PyObject
*resultobj
= 0;
4443 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4445 wxPaneInfo
*result
= 0 ;
4450 PyObject
* obj0
= 0 ;
4451 PyObject
* obj1
= 0 ;
4452 char * kwnames
[] = {
4453 (char *) "self",(char *) "layer", NULL
4456 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Layer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4457 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4458 if (!SWIG_IsOK(res1
)) {
4459 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Layer" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4461 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4462 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4463 if (!SWIG_IsOK(ecode2
)) {
4464 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Layer" "', expected argument " "2"" of type '" "int""'");
4466 arg2
= static_cast< int >(val2
);
4468 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4470 wxPaneInfo
&_result_ref
= (arg1
)->Layer(arg2
);
4471 result
= (wxPaneInfo
*) &_result_ref
;
4473 wxPyEndAllowThreads(__tstate
);
4474 if (PyErr_Occurred()) SWIG_fail
;
4477 resultobj
= obj0
; Py_INCREF(resultobj
);
4485 SWIGINTERN PyObject
*_wrap_PaneInfo_Row(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4486 PyObject
*resultobj
= 0;
4487 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4489 wxPaneInfo
*result
= 0 ;
4494 PyObject
* obj0
= 0 ;
4495 PyObject
* obj1
= 0 ;
4496 char * kwnames
[] = {
4497 (char *) "self",(char *) "row", NULL
4500 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Row",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4501 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4502 if (!SWIG_IsOK(res1
)) {
4503 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Row" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4505 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4506 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4507 if (!SWIG_IsOK(ecode2
)) {
4508 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Row" "', expected argument " "2"" of type '" "int""'");
4510 arg2
= static_cast< int >(val2
);
4512 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4514 wxPaneInfo
&_result_ref
= (arg1
)->Row(arg2
);
4515 result
= (wxPaneInfo
*) &_result_ref
;
4517 wxPyEndAllowThreads(__tstate
);
4518 if (PyErr_Occurred()) SWIG_fail
;
4521 resultobj
= obj0
; Py_INCREF(resultobj
);
4529 SWIGINTERN PyObject
*_wrap_PaneInfo_Position(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4530 PyObject
*resultobj
= 0;
4531 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4533 wxPaneInfo
*result
= 0 ;
4538 PyObject
* obj0
= 0 ;
4539 PyObject
* obj1
= 0 ;
4540 char * kwnames
[] = {
4541 (char *) "self",(char *) "pos", NULL
4544 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_Position",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4545 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4546 if (!SWIG_IsOK(res1
)) {
4547 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Position" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4549 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4550 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4551 if (!SWIG_IsOK(ecode2
)) {
4552 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Position" "', expected argument " "2"" of type '" "int""'");
4554 arg2
= static_cast< int >(val2
);
4556 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4558 wxPaneInfo
&_result_ref
= (arg1
)->Position(arg2
);
4559 result
= (wxPaneInfo
*) &_result_ref
;
4561 wxPyEndAllowThreads(__tstate
);
4562 if (PyErr_Occurred()) SWIG_fail
;
4565 resultobj
= obj0
; Py_INCREF(resultobj
);
4573 SWIGINTERN PyObject
*_wrap_PaneInfo_BestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4574 PyObject
*resultobj
= 0;
4575 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4577 wxPaneInfo
*result
= 0 ;
4581 PyObject
* obj0
= 0 ;
4582 PyObject
* obj1
= 0 ;
4583 char * kwnames
[] = {
4584 (char *) "self",(char *) "size", NULL
4587 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_BestSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4588 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4589 if (!SWIG_IsOK(res1
)) {
4590 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_BestSize" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4592 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4595 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4598 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4600 wxPaneInfo
&_result_ref
= (arg1
)->BestSize((wxSize
const &)*arg2
);
4601 result
= (wxPaneInfo
*) &_result_ref
;
4603 wxPyEndAllowThreads(__tstate
);
4604 if (PyErr_Occurred()) SWIG_fail
;
4607 resultobj
= obj0
; Py_INCREF(resultobj
);
4615 SWIGINTERN PyObject
*_wrap_PaneInfo_MinSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4616 PyObject
*resultobj
= 0;
4617 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4619 wxPaneInfo
*result
= 0 ;
4623 PyObject
* obj0
= 0 ;
4624 PyObject
* obj1
= 0 ;
4625 char * kwnames
[] = {
4626 (char *) "self",(char *) "size", NULL
4629 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_MinSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4630 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4631 if (!SWIG_IsOK(res1
)) {
4632 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_MinSize" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4634 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4637 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4640 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4642 wxPaneInfo
&_result_ref
= (arg1
)->MinSize((wxSize
const &)*arg2
);
4643 result
= (wxPaneInfo
*) &_result_ref
;
4645 wxPyEndAllowThreads(__tstate
);
4646 if (PyErr_Occurred()) SWIG_fail
;
4649 resultobj
= obj0
; Py_INCREF(resultobj
);
4657 SWIGINTERN PyObject
*_wrap_PaneInfo_MaxSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4658 PyObject
*resultobj
= 0;
4659 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4661 wxPaneInfo
*result
= 0 ;
4665 PyObject
* obj0
= 0 ;
4666 PyObject
* obj1
= 0 ;
4667 char * kwnames
[] = {
4668 (char *) "self",(char *) "size", NULL
4671 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_MaxSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4672 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4673 if (!SWIG_IsOK(res1
)) {
4674 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_MaxSize" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4676 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4679 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4682 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4684 wxPaneInfo
&_result_ref
= (arg1
)->MaxSize((wxSize
const &)*arg2
);
4685 result
= (wxPaneInfo
*) &_result_ref
;
4687 wxPyEndAllowThreads(__tstate
);
4688 if (PyErr_Occurred()) SWIG_fail
;
4691 resultobj
= obj0
; Py_INCREF(resultobj
);
4699 SWIGINTERN PyObject
*_wrap_PaneInfo_FloatingPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4700 PyObject
*resultobj
= 0;
4701 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4703 wxPaneInfo
*result
= 0 ;
4707 PyObject
* obj0
= 0 ;
4708 PyObject
* obj1
= 0 ;
4709 char * kwnames
[] = {
4710 (char *) "self",(char *) "pos", NULL
4713 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_FloatingPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4714 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4715 if (!SWIG_IsOK(res1
)) {
4716 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_FloatingPosition" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4718 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4721 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
4724 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4726 wxPaneInfo
&_result_ref
= (arg1
)->FloatingPosition((wxPoint
const &)*arg2
);
4727 result
= (wxPaneInfo
*) &_result_ref
;
4729 wxPyEndAllowThreads(__tstate
);
4730 if (PyErr_Occurred()) SWIG_fail
;
4733 resultobj
= obj0
; Py_INCREF(resultobj
);
4741 SWIGINTERN PyObject
*_wrap_PaneInfo_FloatingSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4742 PyObject
*resultobj
= 0;
4743 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4745 wxPaneInfo
*result
= 0 ;
4749 PyObject
* obj0
= 0 ;
4750 PyObject
* obj1
= 0 ;
4751 char * kwnames
[] = {
4752 (char *) "self",(char *) "size", NULL
4755 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_FloatingSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4756 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4757 if (!SWIG_IsOK(res1
)) {
4758 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_FloatingSize" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4760 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4763 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
4766 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4768 wxPaneInfo
&_result_ref
= (arg1
)->FloatingSize((wxSize
const &)*arg2
);
4769 result
= (wxPaneInfo
*) &_result_ref
;
4771 wxPyEndAllowThreads(__tstate
);
4772 if (PyErr_Occurred()) SWIG_fail
;
4775 resultobj
= obj0
; Py_INCREF(resultobj
);
4783 SWIGINTERN PyObject
*_wrap_PaneInfo_Fixed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4784 PyObject
*resultobj
= 0;
4785 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4786 wxPaneInfo
*result
= 0 ;
4789 PyObject
*swig_obj
[1] ;
4791 if (!args
) SWIG_fail
;
4793 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4794 if (!SWIG_IsOK(res1
)) {
4795 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Fixed" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4797 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4799 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4801 wxPaneInfo
&_result_ref
= (arg1
)->Fixed();
4802 result
= (wxPaneInfo
*) &_result_ref
;
4804 wxPyEndAllowThreads(__tstate
);
4805 if (PyErr_Occurred()) SWIG_fail
;
4808 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4816 SWIGINTERN PyObject
*_wrap_PaneInfo_Resizable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4817 PyObject
*resultobj
= 0;
4818 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4819 bool arg2
= (bool) true ;
4820 wxPaneInfo
*result
= 0 ;
4825 PyObject
* obj0
= 0 ;
4826 PyObject
* obj1
= 0 ;
4827 char * kwnames
[] = {
4828 (char *) "self",(char *) "resizable", NULL
4831 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Resizable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4832 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4833 if (!SWIG_IsOK(res1
)) {
4834 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Resizable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4836 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4838 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4839 if (!SWIG_IsOK(ecode2
)) {
4840 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Resizable" "', expected argument " "2"" of type '" "bool""'");
4842 arg2
= static_cast< bool >(val2
);
4845 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4847 wxPaneInfo
&_result_ref
= (arg1
)->Resizable(arg2
);
4848 result
= (wxPaneInfo
*) &_result_ref
;
4850 wxPyEndAllowThreads(__tstate
);
4851 if (PyErr_Occurred()) SWIG_fail
;
4854 resultobj
= obj0
; Py_INCREF(resultobj
);
4862 SWIGINTERN PyObject
*_wrap_PaneInfo_Dock(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4863 PyObject
*resultobj
= 0;
4864 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4865 wxPaneInfo
*result
= 0 ;
4868 PyObject
*swig_obj
[1] ;
4870 if (!args
) SWIG_fail
;
4872 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4873 if (!SWIG_IsOK(res1
)) {
4874 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Dock" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4876 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4878 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4880 wxPaneInfo
&_result_ref
= (arg1
)->Dock();
4881 result
= (wxPaneInfo
*) &_result_ref
;
4883 wxPyEndAllowThreads(__tstate
);
4884 if (PyErr_Occurred()) SWIG_fail
;
4887 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4895 SWIGINTERN PyObject
*_wrap_PaneInfo_Float(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4896 PyObject
*resultobj
= 0;
4897 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4898 wxPaneInfo
*result
= 0 ;
4901 PyObject
*swig_obj
[1] ;
4903 if (!args
) SWIG_fail
;
4905 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4906 if (!SWIG_IsOK(res1
)) {
4907 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Float" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4909 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4911 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4913 wxPaneInfo
&_result_ref
= (arg1
)->Float();
4914 result
= (wxPaneInfo
*) &_result_ref
;
4916 wxPyEndAllowThreads(__tstate
);
4917 if (PyErr_Occurred()) SWIG_fail
;
4920 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4928 SWIGINTERN PyObject
*_wrap_PaneInfo_Hide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4929 PyObject
*resultobj
= 0;
4930 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4931 wxPaneInfo
*result
= 0 ;
4934 PyObject
*swig_obj
[1] ;
4936 if (!args
) SWIG_fail
;
4938 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4939 if (!SWIG_IsOK(res1
)) {
4940 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Hide" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4942 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4944 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4946 wxPaneInfo
&_result_ref
= (arg1
)->Hide();
4947 result
= (wxPaneInfo
*) &_result_ref
;
4949 wxPyEndAllowThreads(__tstate
);
4950 if (PyErr_Occurred()) SWIG_fail
;
4953 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
4961 SWIGINTERN PyObject
*_wrap_PaneInfo_Show(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4962 PyObject
*resultobj
= 0;
4963 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
4964 bool arg2
= (bool) true ;
4965 wxPaneInfo
*result
= 0 ;
4970 PyObject
* obj0
= 0 ;
4971 PyObject
* obj1
= 0 ;
4972 char * kwnames
[] = {
4973 (char *) "self",(char *) "show", NULL
4976 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Show",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4977 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
4978 if (!SWIG_IsOK(res1
)) {
4979 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Show" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
4981 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
4983 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4984 if (!SWIG_IsOK(ecode2
)) {
4985 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Show" "', expected argument " "2"" of type '" "bool""'");
4987 arg2
= static_cast< bool >(val2
);
4990 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4992 wxPaneInfo
&_result_ref
= (arg1
)->Show(arg2
);
4993 result
= (wxPaneInfo
*) &_result_ref
;
4995 wxPyEndAllowThreads(__tstate
);
4996 if (PyErr_Occurred()) SWIG_fail
;
4999 resultobj
= obj0
; Py_INCREF(resultobj
);
5007 SWIGINTERN PyObject
*_wrap_PaneInfo_CaptionVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5008 PyObject
*resultobj
= 0;
5009 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5010 bool arg2
= (bool) true ;
5011 wxPaneInfo
*result
= 0 ;
5016 PyObject
* obj0
= 0 ;
5017 PyObject
* obj1
= 0 ;
5018 char * kwnames
[] = {
5019 (char *) "self",(char *) "visible", NULL
5022 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_CaptionVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5023 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5024 if (!SWIG_IsOK(res1
)) {
5025 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_CaptionVisible" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5027 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5029 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5030 if (!SWIG_IsOK(ecode2
)) {
5031 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_CaptionVisible" "', expected argument " "2"" of type '" "bool""'");
5033 arg2
= static_cast< bool >(val2
);
5036 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5038 wxPaneInfo
&_result_ref
= (arg1
)->CaptionVisible(arg2
);
5039 result
= (wxPaneInfo
*) &_result_ref
;
5041 wxPyEndAllowThreads(__tstate
);
5042 if (PyErr_Occurred()) SWIG_fail
;
5045 resultobj
= obj0
; Py_INCREF(resultobj
);
5053 SWIGINTERN PyObject
*_wrap_PaneInfo_PaneBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5054 PyObject
*resultobj
= 0;
5055 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5056 bool arg2
= (bool) true ;
5057 wxPaneInfo
*result
= 0 ;
5062 PyObject
* obj0
= 0 ;
5063 PyObject
* obj1
= 0 ;
5064 char * kwnames
[] = {
5065 (char *) "self",(char *) "visible", NULL
5068 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_PaneBorder",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5069 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5070 if (!SWIG_IsOK(res1
)) {
5071 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_PaneBorder" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5073 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5075 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5076 if (!SWIG_IsOK(ecode2
)) {
5077 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_PaneBorder" "', expected argument " "2"" of type '" "bool""'");
5079 arg2
= static_cast< bool >(val2
);
5082 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5084 wxPaneInfo
&_result_ref
= (arg1
)->PaneBorder(arg2
);
5085 result
= (wxPaneInfo
*) &_result_ref
;
5087 wxPyEndAllowThreads(__tstate
);
5088 if (PyErr_Occurred()) SWIG_fail
;
5091 resultobj
= obj0
; Py_INCREF(resultobj
);
5099 SWIGINTERN PyObject
*_wrap_PaneInfo_Gripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5100 PyObject
*resultobj
= 0;
5101 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5102 bool arg2
= (bool) true ;
5103 wxPaneInfo
*result
= 0 ;
5108 PyObject
* obj0
= 0 ;
5109 PyObject
* obj1
= 0 ;
5110 char * kwnames
[] = {
5111 (char *) "self",(char *) "visible", NULL
5114 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Gripper",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5115 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5116 if (!SWIG_IsOK(res1
)) {
5117 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Gripper" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5119 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5121 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5122 if (!SWIG_IsOK(ecode2
)) {
5123 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Gripper" "', expected argument " "2"" of type '" "bool""'");
5125 arg2
= static_cast< bool >(val2
);
5128 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5130 wxPaneInfo
&_result_ref
= (arg1
)->Gripper(arg2
);
5131 result
= (wxPaneInfo
*) &_result_ref
;
5133 wxPyEndAllowThreads(__tstate
);
5134 if (PyErr_Occurred()) SWIG_fail
;
5137 resultobj
= obj0
; Py_INCREF(resultobj
);
5145 SWIGINTERN PyObject
*_wrap_PaneInfo_GripperTop(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5146 PyObject
*resultobj
= 0;
5147 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5148 bool arg2
= (bool) true ;
5149 wxPaneInfo
*result
= 0 ;
5154 PyObject
* obj0
= 0 ;
5155 PyObject
* obj1
= 0 ;
5156 char * kwnames
[] = {
5157 (char *) "self",(char *) "attop", NULL
5160 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_GripperTop",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5161 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5162 if (!SWIG_IsOK(res1
)) {
5163 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_GripperTop" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5165 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5167 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5168 if (!SWIG_IsOK(ecode2
)) {
5169 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_GripperTop" "', expected argument " "2"" of type '" "bool""'");
5171 arg2
= static_cast< bool >(val2
);
5174 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5176 wxPaneInfo
&_result_ref
= (arg1
)->GripperTop(arg2
);
5177 result
= (wxPaneInfo
*) &_result_ref
;
5179 wxPyEndAllowThreads(__tstate
);
5180 if (PyErr_Occurred()) SWIG_fail
;
5183 resultobj
= obj0
; Py_INCREF(resultobj
);
5191 SWIGINTERN PyObject
*_wrap_PaneInfo_CloseButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5192 PyObject
*resultobj
= 0;
5193 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5194 bool arg2
= (bool) true ;
5195 wxPaneInfo
*result
= 0 ;
5200 PyObject
* obj0
= 0 ;
5201 PyObject
* obj1
= 0 ;
5202 char * kwnames
[] = {
5203 (char *) "self",(char *) "visible", NULL
5206 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_CloseButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5207 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5208 if (!SWIG_IsOK(res1
)) {
5209 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_CloseButton" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5211 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5213 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5214 if (!SWIG_IsOK(ecode2
)) {
5215 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_CloseButton" "', expected argument " "2"" of type '" "bool""'");
5217 arg2
= static_cast< bool >(val2
);
5220 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5222 wxPaneInfo
&_result_ref
= (arg1
)->CloseButton(arg2
);
5223 result
= (wxPaneInfo
*) &_result_ref
;
5225 wxPyEndAllowThreads(__tstate
);
5226 if (PyErr_Occurred()) SWIG_fail
;
5229 resultobj
= obj0
; Py_INCREF(resultobj
);
5237 SWIGINTERN PyObject
*_wrap_PaneInfo_MaximizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5238 PyObject
*resultobj
= 0;
5239 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5240 bool arg2
= (bool) true ;
5241 wxPaneInfo
*result
= 0 ;
5246 PyObject
* obj0
= 0 ;
5247 PyObject
* obj1
= 0 ;
5248 char * kwnames
[] = {
5249 (char *) "self",(char *) "visible", NULL
5252 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_MaximizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5253 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5254 if (!SWIG_IsOK(res1
)) {
5255 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_MaximizeButton" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5257 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5259 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5260 if (!SWIG_IsOK(ecode2
)) {
5261 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_MaximizeButton" "', expected argument " "2"" of type '" "bool""'");
5263 arg2
= static_cast< bool >(val2
);
5266 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5268 wxPaneInfo
&_result_ref
= (arg1
)->MaximizeButton(arg2
);
5269 result
= (wxPaneInfo
*) &_result_ref
;
5271 wxPyEndAllowThreads(__tstate
);
5272 if (PyErr_Occurred()) SWIG_fail
;
5275 resultobj
= obj0
; Py_INCREF(resultobj
);
5283 SWIGINTERN PyObject
*_wrap_PaneInfo_MinimizeButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5284 PyObject
*resultobj
= 0;
5285 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5286 bool arg2
= (bool) true ;
5287 wxPaneInfo
*result
= 0 ;
5292 PyObject
* obj0
= 0 ;
5293 PyObject
* obj1
= 0 ;
5294 char * kwnames
[] = {
5295 (char *) "self",(char *) "visible", NULL
5298 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_MinimizeButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5299 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5300 if (!SWIG_IsOK(res1
)) {
5301 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_MinimizeButton" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5303 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5305 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5306 if (!SWIG_IsOK(ecode2
)) {
5307 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_MinimizeButton" "', expected argument " "2"" of type '" "bool""'");
5309 arg2
= static_cast< bool >(val2
);
5312 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5314 wxPaneInfo
&_result_ref
= (arg1
)->MinimizeButton(arg2
);
5315 result
= (wxPaneInfo
*) &_result_ref
;
5317 wxPyEndAllowThreads(__tstate
);
5318 if (PyErr_Occurred()) SWIG_fail
;
5321 resultobj
= obj0
; Py_INCREF(resultobj
);
5329 SWIGINTERN PyObject
*_wrap_PaneInfo_PinButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5330 PyObject
*resultobj
= 0;
5331 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5332 bool arg2
= (bool) true ;
5333 wxPaneInfo
*result
= 0 ;
5338 PyObject
* obj0
= 0 ;
5339 PyObject
* obj1
= 0 ;
5340 char * kwnames
[] = {
5341 (char *) "self",(char *) "visible", NULL
5344 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_PinButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5345 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5346 if (!SWIG_IsOK(res1
)) {
5347 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_PinButton" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5349 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5351 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5352 if (!SWIG_IsOK(ecode2
)) {
5353 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_PinButton" "', expected argument " "2"" of type '" "bool""'");
5355 arg2
= static_cast< bool >(val2
);
5358 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5360 wxPaneInfo
&_result_ref
= (arg1
)->PinButton(arg2
);
5361 result
= (wxPaneInfo
*) &_result_ref
;
5363 wxPyEndAllowThreads(__tstate
);
5364 if (PyErr_Occurred()) SWIG_fail
;
5367 resultobj
= obj0
; Py_INCREF(resultobj
);
5375 SWIGINTERN PyObject
*_wrap_PaneInfo_DestroyOnClose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5376 PyObject
*resultobj
= 0;
5377 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5378 bool arg2
= (bool) true ;
5379 wxPaneInfo
*result
= 0 ;
5384 PyObject
* obj0
= 0 ;
5385 PyObject
* obj1
= 0 ;
5386 char * kwnames
[] = {
5387 (char *) "self",(char *) "b", NULL
5390 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_DestroyOnClose",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5391 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5392 if (!SWIG_IsOK(res1
)) {
5393 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_DestroyOnClose" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5395 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5397 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5398 if (!SWIG_IsOK(ecode2
)) {
5399 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_DestroyOnClose" "', expected argument " "2"" of type '" "bool""'");
5401 arg2
= static_cast< bool >(val2
);
5404 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5406 wxPaneInfo
&_result_ref
= (arg1
)->DestroyOnClose(arg2
);
5407 result
= (wxPaneInfo
*) &_result_ref
;
5409 wxPyEndAllowThreads(__tstate
);
5410 if (PyErr_Occurred()) SWIG_fail
;
5413 resultobj
= obj0
; Py_INCREF(resultobj
);
5421 SWIGINTERN PyObject
*_wrap_PaneInfo_TopDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5422 PyObject
*resultobj
= 0;
5423 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5424 bool arg2
= (bool) true ;
5425 wxPaneInfo
*result
= 0 ;
5430 PyObject
* obj0
= 0 ;
5431 PyObject
* obj1
= 0 ;
5432 char * kwnames
[] = {
5433 (char *) "self",(char *) "b", NULL
5436 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_TopDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5437 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5438 if (!SWIG_IsOK(res1
)) {
5439 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_TopDockable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5441 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5443 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5444 if (!SWIG_IsOK(ecode2
)) {
5445 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_TopDockable" "', expected argument " "2"" of type '" "bool""'");
5447 arg2
= static_cast< bool >(val2
);
5450 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5452 wxPaneInfo
&_result_ref
= (arg1
)->TopDockable(arg2
);
5453 result
= (wxPaneInfo
*) &_result_ref
;
5455 wxPyEndAllowThreads(__tstate
);
5456 if (PyErr_Occurred()) SWIG_fail
;
5459 resultobj
= obj0
; Py_INCREF(resultobj
);
5467 SWIGINTERN PyObject
*_wrap_PaneInfo_BottomDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5468 PyObject
*resultobj
= 0;
5469 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5470 bool arg2
= (bool) true ;
5471 wxPaneInfo
*result
= 0 ;
5476 PyObject
* obj0
= 0 ;
5477 PyObject
* obj1
= 0 ;
5478 char * kwnames
[] = {
5479 (char *) "self",(char *) "b", NULL
5482 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_BottomDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5483 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5484 if (!SWIG_IsOK(res1
)) {
5485 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_BottomDockable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5487 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5489 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5490 if (!SWIG_IsOK(ecode2
)) {
5491 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_BottomDockable" "', expected argument " "2"" of type '" "bool""'");
5493 arg2
= static_cast< bool >(val2
);
5496 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5498 wxPaneInfo
&_result_ref
= (arg1
)->BottomDockable(arg2
);
5499 result
= (wxPaneInfo
*) &_result_ref
;
5501 wxPyEndAllowThreads(__tstate
);
5502 if (PyErr_Occurred()) SWIG_fail
;
5505 resultobj
= obj0
; Py_INCREF(resultobj
);
5513 SWIGINTERN PyObject
*_wrap_PaneInfo_LeftDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5514 PyObject
*resultobj
= 0;
5515 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5516 bool arg2
= (bool) true ;
5517 wxPaneInfo
*result
= 0 ;
5522 PyObject
* obj0
= 0 ;
5523 PyObject
* obj1
= 0 ;
5524 char * kwnames
[] = {
5525 (char *) "self",(char *) "b", NULL
5528 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_LeftDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5529 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5530 if (!SWIG_IsOK(res1
)) {
5531 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_LeftDockable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5533 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5535 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5536 if (!SWIG_IsOK(ecode2
)) {
5537 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_LeftDockable" "', expected argument " "2"" of type '" "bool""'");
5539 arg2
= static_cast< bool >(val2
);
5542 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5544 wxPaneInfo
&_result_ref
= (arg1
)->LeftDockable(arg2
);
5545 result
= (wxPaneInfo
*) &_result_ref
;
5547 wxPyEndAllowThreads(__tstate
);
5548 if (PyErr_Occurred()) SWIG_fail
;
5551 resultobj
= obj0
; Py_INCREF(resultobj
);
5559 SWIGINTERN PyObject
*_wrap_PaneInfo_RightDockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5560 PyObject
*resultobj
= 0;
5561 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5562 bool arg2
= (bool) true ;
5563 wxPaneInfo
*result
= 0 ;
5568 PyObject
* obj0
= 0 ;
5569 PyObject
* obj1
= 0 ;
5570 char * kwnames
[] = {
5571 (char *) "self",(char *) "b", NULL
5574 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_RightDockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5575 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5576 if (!SWIG_IsOK(res1
)) {
5577 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_RightDockable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5579 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5581 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5582 if (!SWIG_IsOK(ecode2
)) {
5583 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_RightDockable" "', expected argument " "2"" of type '" "bool""'");
5585 arg2
= static_cast< bool >(val2
);
5588 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5590 wxPaneInfo
&_result_ref
= (arg1
)->RightDockable(arg2
);
5591 result
= (wxPaneInfo
*) &_result_ref
;
5593 wxPyEndAllowThreads(__tstate
);
5594 if (PyErr_Occurred()) SWIG_fail
;
5597 resultobj
= obj0
; Py_INCREF(resultobj
);
5605 SWIGINTERN PyObject
*_wrap_PaneInfo_Floatable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5606 PyObject
*resultobj
= 0;
5607 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5608 bool arg2
= (bool) true ;
5609 wxPaneInfo
*result
= 0 ;
5614 PyObject
* obj0
= 0 ;
5615 PyObject
* obj1
= 0 ;
5616 char * kwnames
[] = {
5617 (char *) "self",(char *) "b", NULL
5620 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Floatable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5621 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5622 if (!SWIG_IsOK(res1
)) {
5623 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Floatable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5625 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5627 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5628 if (!SWIG_IsOK(ecode2
)) {
5629 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Floatable" "', expected argument " "2"" of type '" "bool""'");
5631 arg2
= static_cast< bool >(val2
);
5634 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5636 wxPaneInfo
&_result_ref
= (arg1
)->Floatable(arg2
);
5637 result
= (wxPaneInfo
*) &_result_ref
;
5639 wxPyEndAllowThreads(__tstate
);
5640 if (PyErr_Occurred()) SWIG_fail
;
5643 resultobj
= obj0
; Py_INCREF(resultobj
);
5651 SWIGINTERN PyObject
*_wrap_PaneInfo_Movable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5652 PyObject
*resultobj
= 0;
5653 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5654 bool arg2
= (bool) true ;
5655 wxPaneInfo
*result
= 0 ;
5660 PyObject
* obj0
= 0 ;
5661 PyObject
* obj1
= 0 ;
5662 char * kwnames
[] = {
5663 (char *) "self",(char *) "b", NULL
5666 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Movable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5667 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5668 if (!SWIG_IsOK(res1
)) {
5669 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Movable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5671 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5673 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5674 if (!SWIG_IsOK(ecode2
)) {
5675 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Movable" "', expected argument " "2"" of type '" "bool""'");
5677 arg2
= static_cast< bool >(val2
);
5680 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5682 wxPaneInfo
&_result_ref
= (arg1
)->Movable(arg2
);
5683 result
= (wxPaneInfo
*) &_result_ref
;
5685 wxPyEndAllowThreads(__tstate
);
5686 if (PyErr_Occurred()) SWIG_fail
;
5689 resultobj
= obj0
; Py_INCREF(resultobj
);
5697 SWIGINTERN PyObject
*_wrap_PaneInfo_Dockable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5698 PyObject
*resultobj
= 0;
5699 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5700 bool arg2
= (bool) true ;
5701 wxPaneInfo
*result
= 0 ;
5706 PyObject
* obj0
= 0 ;
5707 PyObject
* obj1
= 0 ;
5708 char * kwnames
[] = {
5709 (char *) "self",(char *) "b", NULL
5712 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PaneInfo_Dockable",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5713 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5714 if (!SWIG_IsOK(res1
)) {
5715 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_Dockable" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5717 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5719 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5720 if (!SWIG_IsOK(ecode2
)) {
5721 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_Dockable" "', expected argument " "2"" of type '" "bool""'");
5723 arg2
= static_cast< bool >(val2
);
5726 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5728 wxPaneInfo
&_result_ref
= (arg1
)->Dockable(arg2
);
5729 result
= (wxPaneInfo
*) &_result_ref
;
5731 wxPyEndAllowThreads(__tstate
);
5732 if (PyErr_Occurred()) SWIG_fail
;
5735 resultobj
= obj0
; Py_INCREF(resultobj
);
5743 SWIGINTERN PyObject
*_wrap_PaneInfo_DefaultPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5744 PyObject
*resultobj
= 0;
5745 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5746 wxPaneInfo
*result
= 0 ;
5749 PyObject
*swig_obj
[1] ;
5751 if (!args
) SWIG_fail
;
5753 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5754 if (!SWIG_IsOK(res1
)) {
5755 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_DefaultPane" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5757 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5759 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5761 wxPaneInfo
&_result_ref
= (arg1
)->DefaultPane();
5762 result
= (wxPaneInfo
*) &_result_ref
;
5764 wxPyEndAllowThreads(__tstate
);
5765 if (PyErr_Occurred()) SWIG_fail
;
5768 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5776 SWIGINTERN PyObject
*_wrap_PaneInfo_CentrePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5777 PyObject
*resultobj
= 0;
5778 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5779 wxPaneInfo
*result
= 0 ;
5782 PyObject
*swig_obj
[1] ;
5784 if (!args
) SWIG_fail
;
5786 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5787 if (!SWIG_IsOK(res1
)) {
5788 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_CentrePane" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5790 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5792 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5794 wxPaneInfo
&_result_ref
= (arg1
)->CentrePane();
5795 result
= (wxPaneInfo
*) &_result_ref
;
5797 wxPyEndAllowThreads(__tstate
);
5798 if (PyErr_Occurred()) SWIG_fail
;
5801 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5809 SWIGINTERN PyObject
*_wrap_PaneInfo_CenterPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5810 PyObject
*resultobj
= 0;
5811 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5812 wxPaneInfo
*result
= 0 ;
5815 PyObject
*swig_obj
[1] ;
5817 if (!args
) SWIG_fail
;
5819 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5820 if (!SWIG_IsOK(res1
)) {
5821 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_CenterPane" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5823 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5825 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5827 wxPaneInfo
&_result_ref
= (arg1
)->CenterPane();
5828 result
= (wxPaneInfo
*) &_result_ref
;
5830 wxPyEndAllowThreads(__tstate
);
5831 if (PyErr_Occurred()) SWIG_fail
;
5834 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5842 SWIGINTERN PyObject
*_wrap_PaneInfo_ToolbarPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5843 PyObject
*resultobj
= 0;
5844 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5845 wxPaneInfo
*result
= 0 ;
5848 PyObject
*swig_obj
[1] ;
5850 if (!args
) SWIG_fail
;
5852 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5853 if (!SWIG_IsOK(res1
)) {
5854 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_ToolbarPane" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5856 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5858 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5860 wxPaneInfo
&_result_ref
= (arg1
)->ToolbarPane();
5861 result
= (wxPaneInfo
*) &_result_ref
;
5863 wxPyEndAllowThreads(__tstate
);
5864 if (PyErr_Occurred()) SWIG_fail
;
5867 resultobj
= swig_obj
[0]; Py_INCREF(resultobj
);
5875 SWIGINTERN PyObject
*_wrap_PaneInfo_SetFlag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5876 PyObject
*resultobj
= 0;
5877 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5880 wxPaneInfo
*result
= 0 ;
5887 PyObject
* obj0
= 0 ;
5888 PyObject
* obj1
= 0 ;
5889 PyObject
* obj2
= 0 ;
5890 char * kwnames
[] = {
5891 (char *) "self",(char *) "flag",(char *) "option_state", NULL
5894 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PaneInfo_SetFlag",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5895 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5896 if (!SWIG_IsOK(res1
)) {
5897 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_SetFlag" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5899 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5900 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5901 if (!SWIG_IsOK(ecode2
)) {
5902 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_SetFlag" "', expected argument " "2"" of type '" "int""'");
5904 arg2
= static_cast< int >(val2
);
5905 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5906 if (!SWIG_IsOK(ecode3
)) {
5907 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PaneInfo_SetFlag" "', expected argument " "3"" of type '" "bool""'");
5909 arg3
= static_cast< bool >(val3
);
5911 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5913 wxPaneInfo
&_result_ref
= (arg1
)->SetFlag(arg2
,arg3
);
5914 result
= (wxPaneInfo
*) &_result_ref
;
5916 wxPyEndAllowThreads(__tstate
);
5917 if (PyErr_Occurred()) SWIG_fail
;
5920 resultobj
= obj0
; Py_INCREF(resultobj
);
5928 SWIGINTERN PyObject
*_wrap_PaneInfo_HasFlag(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5929 PyObject
*resultobj
= 0;
5930 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5937 PyObject
* obj0
= 0 ;
5938 PyObject
* obj1
= 0 ;
5939 char * kwnames
[] = {
5940 (char *) "self",(char *) "flag", NULL
5943 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PaneInfo_HasFlag",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5944 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5945 if (!SWIG_IsOK(res1
)) {
5946 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_HasFlag" "', expected argument " "1"" of type '" "wxPaneInfo const *""'");
5948 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5949 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5950 if (!SWIG_IsOK(ecode2
)) {
5951 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_HasFlag" "', expected argument " "2"" of type '" "int""'");
5953 arg2
= static_cast< int >(val2
);
5955 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5956 result
= (bool)((wxPaneInfo
const *)arg1
)->HasFlag(arg2
);
5957 wxPyEndAllowThreads(__tstate
);
5958 if (PyErr_Occurred()) SWIG_fail
;
5961 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5969 SWIGINTERN PyObject
*_wrap_PaneInfo_name_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5970 PyObject
*resultobj
= 0;
5971 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
5972 wxString
*arg2
= (wxString
*) 0 ;
5975 bool temp2
= false ;
5976 PyObject
*swig_obj
[2] ;
5978 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_name_set",2,2,swig_obj
)) SWIG_fail
;
5979 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
5980 if (!SWIG_IsOK(res1
)) {
5981 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_name_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
5983 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
5985 arg2
= wxString_in_helper(swig_obj
[1]);
5986 if (arg2
== NULL
) SWIG_fail
;
5989 if (arg1
) (arg1
)->name
= *arg2
;
5991 resultobj
= SWIG_Py_Void();
6006 SWIGINTERN PyObject
*_wrap_PaneInfo_name_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6007 PyObject
*resultobj
= 0;
6008 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6009 wxString
*result
= 0 ;
6012 PyObject
*swig_obj
[1] ;
6014 if (!args
) SWIG_fail
;
6016 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6017 if (!SWIG_IsOK(res1
)) {
6018 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_name_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6020 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6021 result
= (wxString
*)& ((arg1
)->name
);
6024 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
6026 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
6035 SWIGINTERN PyObject
*_wrap_PaneInfo_caption_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6036 PyObject
*resultobj
= 0;
6037 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6038 wxString
*arg2
= (wxString
*) 0 ;
6041 bool temp2
= false ;
6042 PyObject
*swig_obj
[2] ;
6044 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_caption_set",2,2,swig_obj
)) SWIG_fail
;
6045 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6046 if (!SWIG_IsOK(res1
)) {
6047 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_caption_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6049 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6051 arg2
= wxString_in_helper(swig_obj
[1]);
6052 if (arg2
== NULL
) SWIG_fail
;
6055 if (arg1
) (arg1
)->caption
= *arg2
;
6057 resultobj
= SWIG_Py_Void();
6072 SWIGINTERN PyObject
*_wrap_PaneInfo_caption_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6073 PyObject
*resultobj
= 0;
6074 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6075 wxString
*result
= 0 ;
6078 PyObject
*swig_obj
[1] ;
6080 if (!args
) SWIG_fail
;
6082 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6083 if (!SWIG_IsOK(res1
)) {
6084 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_caption_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6086 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6087 result
= (wxString
*)& ((arg1
)->caption
);
6090 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
6092 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
6101 SWIGINTERN PyObject
*_wrap_PaneInfo_window_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6102 PyObject
*resultobj
= 0;
6103 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6104 wxWindow
*arg2
= (wxWindow
*) 0 ;
6109 PyObject
*swig_obj
[2] ;
6111 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_window_set",2,2,swig_obj
)) SWIG_fail
;
6112 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6113 if (!SWIG_IsOK(res1
)) {
6114 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_window_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6116 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6117 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN
| 0 );
6118 if (!SWIG_IsOK(res2
)) {
6119 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_window_set" "', expected argument " "2"" of type '" "wxWindow *""'");
6121 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
6122 if (arg1
) (arg1
)->window
= arg2
;
6124 resultobj
= SWIG_Py_Void();
6131 SWIGINTERN PyObject
*_wrap_PaneInfo_window_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6132 PyObject
*resultobj
= 0;
6133 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6134 wxWindow
*result
= 0 ;
6137 PyObject
*swig_obj
[1] ;
6139 if (!args
) SWIG_fail
;
6141 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6142 if (!SWIG_IsOK(res1
)) {
6143 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_window_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6145 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6146 result
= (wxWindow
*) ((arg1
)->window
);
6148 resultobj
= wxPyMake_wxObject(result
, 0);
6156 SWIGINTERN PyObject
*_wrap_PaneInfo_frame_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6157 PyObject
*resultobj
= 0;
6158 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6159 wxFrame
*arg2
= (wxFrame
*) 0 ;
6164 PyObject
*swig_obj
[2] ;
6166 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_frame_set",2,2,swig_obj
)) SWIG_fail
;
6167 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6168 if (!SWIG_IsOK(res1
)) {
6169 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_frame_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6171 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6172 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxFrame
, SWIG_POINTER_DISOWN
| 0 );
6173 if (!SWIG_IsOK(res2
)) {
6174 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_frame_set" "', expected argument " "2"" of type '" "wxFrame *""'");
6176 arg2
= reinterpret_cast< wxFrame
* >(argp2
);
6177 if (arg1
) (arg1
)->frame
= arg2
;
6179 resultobj
= SWIG_Py_Void();
6186 SWIGINTERN PyObject
*_wrap_PaneInfo_frame_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6187 PyObject
*resultobj
= 0;
6188 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6189 wxFrame
*result
= 0 ;
6192 PyObject
*swig_obj
[1] ;
6194 if (!args
) SWIG_fail
;
6196 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6197 if (!SWIG_IsOK(res1
)) {
6198 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_frame_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6200 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6201 result
= (wxFrame
*) ((arg1
)->frame
);
6203 resultobj
= wxPyMake_wxObject(result
, 0);
6211 SWIGINTERN PyObject
*_wrap_PaneInfo_state_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6212 PyObject
*resultobj
= 0;
6213 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6219 PyObject
*swig_obj
[2] ;
6221 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_state_set",2,2,swig_obj
)) SWIG_fail
;
6222 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6223 if (!SWIG_IsOK(res1
)) {
6224 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_state_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6226 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6227 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6228 if (!SWIG_IsOK(ecode2
)) {
6229 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_state_set" "', expected argument " "2"" of type '" "int""'");
6231 arg2
= static_cast< int >(val2
);
6232 if (arg1
) (arg1
)->state
= arg2
;
6234 resultobj
= SWIG_Py_Void();
6241 SWIGINTERN PyObject
*_wrap_PaneInfo_state_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6242 PyObject
*resultobj
= 0;
6243 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6247 PyObject
*swig_obj
[1] ;
6249 if (!args
) SWIG_fail
;
6251 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6252 if (!SWIG_IsOK(res1
)) {
6253 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_state_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6255 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6256 result
= (int) ((arg1
)->state
);
6257 resultobj
= SWIG_From_int(static_cast< int >(result
));
6264 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_direction_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6265 PyObject
*resultobj
= 0;
6266 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6272 PyObject
*swig_obj
[2] ;
6274 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
;
6275 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6276 if (!SWIG_IsOK(res1
)) {
6277 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6279 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6280 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6281 if (!SWIG_IsOK(ecode2
)) {
6282 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'");
6284 arg2
= static_cast< int >(val2
);
6285 if (arg1
) (arg1
)->dock_direction
= arg2
;
6287 resultobj
= SWIG_Py_Void();
6294 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_direction_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6295 PyObject
*resultobj
= 0;
6296 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6300 PyObject
*swig_obj
[1] ;
6302 if (!args
) SWIG_fail
;
6304 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6305 if (!SWIG_IsOK(res1
)) {
6306 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6308 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6309 result
= (int) ((arg1
)->dock_direction
);
6310 resultobj
= SWIG_From_int(static_cast< int >(result
));
6317 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_layer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6318 PyObject
*resultobj
= 0;
6319 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6325 PyObject
*swig_obj
[2] ;
6327 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
;
6328 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6329 if (!SWIG_IsOK(res1
)) {
6330 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6332 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6333 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6334 if (!SWIG_IsOK(ecode2
)) {
6335 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'");
6337 arg2
= static_cast< int >(val2
);
6338 if (arg1
) (arg1
)->dock_layer
= arg2
;
6340 resultobj
= SWIG_Py_Void();
6347 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_layer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6348 PyObject
*resultobj
= 0;
6349 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6353 PyObject
*swig_obj
[1] ;
6355 if (!args
) SWIG_fail
;
6357 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6358 if (!SWIG_IsOK(res1
)) {
6359 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6361 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6362 result
= (int) ((arg1
)->dock_layer
);
6363 resultobj
= SWIG_From_int(static_cast< int >(result
));
6370 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_row_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6371 PyObject
*resultobj
= 0;
6372 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6378 PyObject
*swig_obj
[2] ;
6380 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
;
6381 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6382 if (!SWIG_IsOK(res1
)) {
6383 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_row_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6385 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6386 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6387 if (!SWIG_IsOK(ecode2
)) {
6388 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'");
6390 arg2
= static_cast< int >(val2
);
6391 if (arg1
) (arg1
)->dock_row
= arg2
;
6393 resultobj
= SWIG_Py_Void();
6400 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_row_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6401 PyObject
*resultobj
= 0;
6402 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6406 PyObject
*swig_obj
[1] ;
6408 if (!args
) SWIG_fail
;
6410 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6411 if (!SWIG_IsOK(res1
)) {
6412 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_row_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6414 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6415 result
= (int) ((arg1
)->dock_row
);
6416 resultobj
= SWIG_From_int(static_cast< int >(result
));
6423 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_pos_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6424 PyObject
*resultobj
= 0;
6425 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6431 PyObject
*swig_obj
[2] ;
6433 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_dock_pos_set",2,2,swig_obj
)) SWIG_fail
;
6434 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6435 if (!SWIG_IsOK(res1
)) {
6436 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_pos_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6438 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6439 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6440 if (!SWIG_IsOK(ecode2
)) {
6441 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_dock_pos_set" "', expected argument " "2"" of type '" "int""'");
6443 arg2
= static_cast< int >(val2
);
6444 if (arg1
) (arg1
)->dock_pos
= arg2
;
6446 resultobj
= SWIG_Py_Void();
6453 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_pos_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6454 PyObject
*resultobj
= 0;
6455 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6459 PyObject
*swig_obj
[1] ;
6461 if (!args
) SWIG_fail
;
6463 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6464 if (!SWIG_IsOK(res1
)) {
6465 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_pos_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6467 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6468 result
= (int) ((arg1
)->dock_pos
);
6469 resultobj
= SWIG_From_int(static_cast< int >(result
));
6476 SWIGINTERN PyObject
*_wrap_PaneInfo_best_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6477 PyObject
*resultobj
= 0;
6478 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6479 wxSize
*arg2
= (wxSize
*) 0 ;
6484 PyObject
*swig_obj
[2] ;
6486 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_best_size_set",2,2,swig_obj
)) SWIG_fail
;
6487 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6488 if (!SWIG_IsOK(res1
)) {
6489 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_best_size_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6491 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6492 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6493 if (!SWIG_IsOK(res2
)) {
6494 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_best_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6496 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6497 if (arg1
) (arg1
)->best_size
= *arg2
;
6499 resultobj
= SWIG_Py_Void();
6506 SWIGINTERN PyObject
*_wrap_PaneInfo_best_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6507 PyObject
*resultobj
= 0;
6508 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6509 wxSize
*result
= 0 ;
6512 PyObject
*swig_obj
[1] ;
6514 if (!args
) SWIG_fail
;
6516 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6517 if (!SWIG_IsOK(res1
)) {
6518 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_best_size_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6520 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6521 result
= (wxSize
*)& ((arg1
)->best_size
);
6522 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6529 SWIGINTERN PyObject
*_wrap_PaneInfo_min_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6530 PyObject
*resultobj
= 0;
6531 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6532 wxSize
*arg2
= (wxSize
*) 0 ;
6537 PyObject
*swig_obj
[2] ;
6539 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
;
6540 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6541 if (!SWIG_IsOK(res1
)) {
6542 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_min_size_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6544 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6545 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6546 if (!SWIG_IsOK(res2
)) {
6547 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_min_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6549 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6550 if (arg1
) (arg1
)->min_size
= *arg2
;
6552 resultobj
= SWIG_Py_Void();
6559 SWIGINTERN PyObject
*_wrap_PaneInfo_min_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6560 PyObject
*resultobj
= 0;
6561 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6562 wxSize
*result
= 0 ;
6565 PyObject
*swig_obj
[1] ;
6567 if (!args
) SWIG_fail
;
6569 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6570 if (!SWIG_IsOK(res1
)) {
6571 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_min_size_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6573 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6574 result
= (wxSize
*)& ((arg1
)->min_size
);
6575 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6582 SWIGINTERN PyObject
*_wrap_PaneInfo_max_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6583 PyObject
*resultobj
= 0;
6584 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6585 wxSize
*arg2
= (wxSize
*) 0 ;
6590 PyObject
*swig_obj
[2] ;
6592 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_max_size_set",2,2,swig_obj
)) SWIG_fail
;
6593 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6594 if (!SWIG_IsOK(res1
)) {
6595 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_max_size_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6597 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6598 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6599 if (!SWIG_IsOK(res2
)) {
6600 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_max_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6602 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6603 if (arg1
) (arg1
)->max_size
= *arg2
;
6605 resultobj
= SWIG_Py_Void();
6612 SWIGINTERN PyObject
*_wrap_PaneInfo_max_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6613 PyObject
*resultobj
= 0;
6614 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6615 wxSize
*result
= 0 ;
6618 PyObject
*swig_obj
[1] ;
6620 if (!args
) SWIG_fail
;
6622 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6623 if (!SWIG_IsOK(res1
)) {
6624 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_max_size_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6626 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6627 result
= (wxSize
*)& ((arg1
)->max_size
);
6628 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6635 SWIGINTERN PyObject
*_wrap_PaneInfo_floating_pos_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6636 PyObject
*resultobj
= 0;
6637 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6638 wxPoint
*arg2
= (wxPoint
*) 0 ;
6643 PyObject
*swig_obj
[2] ;
6645 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_floating_pos_set",2,2,swig_obj
)) SWIG_fail
;
6646 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6647 if (!SWIG_IsOK(res1
)) {
6648 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_floating_pos_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6650 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6651 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPoint
, 0 | 0 );
6652 if (!SWIG_IsOK(res2
)) {
6653 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_floating_pos_set" "', expected argument " "2"" of type '" "wxPoint *""'");
6655 arg2
= reinterpret_cast< wxPoint
* >(argp2
);
6656 if (arg1
) (arg1
)->floating_pos
= *arg2
;
6658 resultobj
= SWIG_Py_Void();
6665 SWIGINTERN PyObject
*_wrap_PaneInfo_floating_pos_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6666 PyObject
*resultobj
= 0;
6667 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6668 wxPoint
*result
= 0 ;
6671 PyObject
*swig_obj
[1] ;
6673 if (!args
) SWIG_fail
;
6675 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6676 if (!SWIG_IsOK(res1
)) {
6677 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_floating_pos_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6679 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6680 result
= (wxPoint
*)& ((arg1
)->floating_pos
);
6681 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPoint
, 0 | 0 );
6688 SWIGINTERN PyObject
*_wrap_PaneInfo_floating_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6689 PyObject
*resultobj
= 0;
6690 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6691 wxSize
*arg2
= (wxSize
*) 0 ;
6696 PyObject
*swig_obj
[2] ;
6698 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_floating_size_set",2,2,swig_obj
)) SWIG_fail
;
6699 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6700 if (!SWIG_IsOK(res1
)) {
6701 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_floating_size_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6703 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6704 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSize
, 0 | 0 );
6705 if (!SWIG_IsOK(res2
)) {
6706 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_floating_size_set" "', expected argument " "2"" of type '" "wxSize *""'");
6708 arg2
= reinterpret_cast< wxSize
* >(argp2
);
6709 if (arg1
) (arg1
)->floating_size
= *arg2
;
6711 resultobj
= SWIG_Py_Void();
6718 SWIGINTERN PyObject
*_wrap_PaneInfo_floating_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6719 PyObject
*resultobj
= 0;
6720 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6721 wxSize
*result
= 0 ;
6724 PyObject
*swig_obj
[1] ;
6726 if (!args
) SWIG_fail
;
6728 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6729 if (!SWIG_IsOK(res1
)) {
6730 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_floating_size_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6732 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6733 result
= (wxSize
*)& ((arg1
)->floating_size
);
6734 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
6741 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_proportion_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6742 PyObject
*resultobj
= 0;
6743 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6749 PyObject
*swig_obj
[2] ;
6751 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_dock_proportion_set",2,2,swig_obj
)) SWIG_fail
;
6752 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6753 if (!SWIG_IsOK(res1
)) {
6754 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_proportion_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6756 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6757 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
6758 if (!SWIG_IsOK(ecode2
)) {
6759 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneInfo_dock_proportion_set" "', expected argument " "2"" of type '" "int""'");
6761 arg2
= static_cast< int >(val2
);
6762 if (arg1
) (arg1
)->dock_proportion
= arg2
;
6764 resultobj
= SWIG_Py_Void();
6771 SWIGINTERN PyObject
*_wrap_PaneInfo_dock_proportion_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6772 PyObject
*resultobj
= 0;
6773 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6777 PyObject
*swig_obj
[1] ;
6779 if (!args
) SWIG_fail
;
6781 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6782 if (!SWIG_IsOK(res1
)) {
6783 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_dock_proportion_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6785 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6786 result
= (int) ((arg1
)->dock_proportion
);
6787 resultobj
= SWIG_From_int(static_cast< int >(result
));
6794 SWIGINTERN PyObject
*_wrap_PaneInfo_buttons_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6795 PyObject
*resultobj
= 0;
6796 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6797 wxPaneButtonArray arg2
;
6802 PyObject
*swig_obj
[2] ;
6804 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_buttons_set",2,2,swig_obj
)) SWIG_fail
;
6805 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6806 if (!SWIG_IsOK(res1
)) {
6807 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_buttons_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6809 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6811 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxPaneButtonArray
, 0 | 0);
6812 if (!SWIG_IsOK(res2
)) {
6813 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxPaneButtonArray""'");
6816 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PaneInfo_buttons_set" "', expected argument " "2"" of type '" "wxPaneButtonArray""'");
6818 wxPaneButtonArray
* temp
= reinterpret_cast< wxPaneButtonArray
* >(argp2
);
6820 if (SWIG_IsNewObj(res2
)) delete temp
;
6823 if (arg1
) (arg1
)->buttons
= arg2
;
6825 resultobj
= SWIG_Py_Void();
6832 SWIGINTERN PyObject
*_wrap_PaneInfo_buttons_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6833 PyObject
*resultobj
= 0;
6834 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6835 wxPaneButtonArray result
;
6838 PyObject
*swig_obj
[1] ;
6840 if (!args
) SWIG_fail
;
6842 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6843 if (!SWIG_IsOK(res1
)) {
6844 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_buttons_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6846 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6847 result
= ((arg1
)->buttons
);
6848 resultobj
= SWIG_NewPointerObj((new wxPaneButtonArray(static_cast< const wxPaneButtonArray
& >(result
))), SWIGTYPE_p_wxPaneButtonArray
, SWIG_POINTER_OWN
| 0 );
6855 SWIGINTERN PyObject
*_wrap_PaneInfo_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6856 PyObject
*resultobj
= 0;
6857 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6858 wxRect
*arg2
= (wxRect
*) 0 ;
6863 PyObject
*swig_obj
[2] ;
6865 if (!SWIG_Python_UnpackTuple(args
,"PaneInfo_rect_set",2,2,swig_obj
)) SWIG_fail
;
6866 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6867 if (!SWIG_IsOK(res1
)) {
6868 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_rect_set" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6870 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6871 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
6872 if (!SWIG_IsOK(res2
)) {
6873 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PaneInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
6875 arg2
= reinterpret_cast< wxRect
* >(argp2
);
6876 if (arg1
) (arg1
)->rect
= *arg2
;
6878 resultobj
= SWIG_Py_Void();
6885 SWIGINTERN PyObject
*_wrap_PaneInfo_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6886 PyObject
*resultobj
= 0;
6887 wxPaneInfo
*arg1
= (wxPaneInfo
*) 0 ;
6888 wxRect
*result
= 0 ;
6891 PyObject
*swig_obj
[1] ;
6893 if (!args
) SWIG_fail
;
6895 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
6896 if (!SWIG_IsOK(res1
)) {
6897 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneInfo_rect_get" "', expected argument " "1"" of type '" "wxPaneInfo *""'");
6899 arg1
= reinterpret_cast< wxPaneInfo
* >(argp1
);
6900 result
= (wxRect
*)& ((arg1
)->rect
);
6901 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
6908 SWIGINTERN PyObject
*PaneInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6910 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
6911 SWIG_TypeNewClientData(SWIGTYPE_p_wxPaneInfo
, SWIG_NewClientData(obj
));
6912 return SWIG_Py_Void();
6915 SWIGINTERN PyObject
*PaneInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6916 return SWIG_Python_InitShadowInstance(args
);
6919 SWIGINTERN PyObject
*_wrap_new_FrameManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6920 PyObject
*resultobj
= 0;
6921 wxWindow
*arg1
= (wxWindow
*) NULL
;
6922 int arg2
= (int) wxAUI_MGR_DEFAULT
;
6923 wxFrameManager
*result
= 0 ;
6928 PyObject
* obj0
= 0 ;
6929 PyObject
* obj1
= 0 ;
6930 char * kwnames
[] = {
6931 (char *) "managed_wnd",(char *) "flags", NULL
6934 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_FrameManager",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6936 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
6937 if (!SWIG_IsOK(res1
)) {
6938 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_FrameManager" "', expected argument " "1"" of type '" "wxWindow *""'");
6940 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
6943 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6944 if (!SWIG_IsOK(ecode2
)) {
6945 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_FrameManager" "', expected argument " "2"" of type '" "int""'");
6947 arg2
= static_cast< int >(val2
);
6950 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6951 result
= (wxFrameManager
*)new wxFrameManager(arg1
,arg2
);
6952 wxPyEndAllowThreads(__tstate
);
6953 if (PyErr_Occurred()) SWIG_fail
;
6955 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFrameManager
, SWIG_POINTER_NEW
| 0 );
6962 SWIGINTERN PyObject
*_wrap_delete_FrameManager(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6963 PyObject
*resultobj
= 0;
6964 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6967 PyObject
*swig_obj
[1] ;
6969 if (!args
) SWIG_fail
;
6971 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, SWIG_POINTER_DISOWN
| 0 );
6972 if (!SWIG_IsOK(res1
)) {
6973 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FrameManager" "', expected argument " "1"" of type '" "wxFrameManager *""'");
6975 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
6977 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6980 wxPyEndAllowThreads(__tstate
);
6981 if (PyErr_Occurred()) SWIG_fail
;
6983 resultobj
= SWIG_Py_Void();
6990 SWIGINTERN PyObject
*_wrap_FrameManager_UnInit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6991 PyObject
*resultobj
= 0;
6992 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
6995 PyObject
*swig_obj
[1] ;
6997 if (!args
) SWIG_fail
;
6999 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7000 if (!SWIG_IsOK(res1
)) {
7001 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_UnInit" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7003 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7005 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7007 wxPyEndAllowThreads(__tstate
);
7008 if (PyErr_Occurred()) SWIG_fail
;
7010 resultobj
= SWIG_Py_Void();
7017 SWIGINTERN PyObject
*_wrap_FrameManager_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7018 PyObject
*resultobj
= 0;
7019 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7025 PyObject
* obj0
= 0 ;
7026 PyObject
* obj1
= 0 ;
7027 char * kwnames
[] = {
7028 (char *) "self",(char *) "flags", NULL
7031 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7032 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7033 if (!SWIG_IsOK(res1
)) {
7034 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_SetFlags" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7036 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7037 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7038 if (!SWIG_IsOK(ecode2
)) {
7039 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManager_SetFlags" "', expected argument " "2"" of type '" "int""'");
7041 arg2
= static_cast< int >(val2
);
7043 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7044 (arg1
)->SetFlags(arg2
);
7045 wxPyEndAllowThreads(__tstate
);
7046 if (PyErr_Occurred()) SWIG_fail
;
7048 resultobj
= SWIG_Py_Void();
7055 SWIGINTERN PyObject
*_wrap_FrameManager_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7056 PyObject
*resultobj
= 0;
7057 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7061 PyObject
*swig_obj
[1] ;
7063 if (!args
) SWIG_fail
;
7065 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7066 if (!SWIG_IsOK(res1
)) {
7067 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_GetFlags" "', expected argument " "1"" of type '" "wxFrameManager const *""'");
7069 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7071 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7072 result
= (int)((wxFrameManager
const *)arg1
)->GetFlags();
7073 wxPyEndAllowThreads(__tstate
);
7074 if (PyErr_Occurred()) SWIG_fail
;
7076 resultobj
= SWIG_From_int(static_cast< int >(result
));
7083 SWIGINTERN PyObject
*_wrap_FrameManager_SetManagedWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7084 PyObject
*resultobj
= 0;
7085 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7086 wxWindow
*arg2
= (wxWindow
*) 0 ;
7091 PyObject
* obj0
= 0 ;
7092 PyObject
* obj1
= 0 ;
7093 char * kwnames
[] = {
7094 (char *) "self",(char *) "managed_wnd", NULL
7097 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_SetManagedWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7098 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7099 if (!SWIG_IsOK(res1
)) {
7100 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_SetManagedWindow" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7102 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7103 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7104 if (!SWIG_IsOK(res2
)) {
7105 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_SetManagedWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
7107 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7109 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7110 (arg1
)->SetManagedWindow(arg2
);
7111 wxPyEndAllowThreads(__tstate
);
7112 if (PyErr_Occurred()) SWIG_fail
;
7114 resultobj
= SWIG_Py_Void();
7121 SWIGINTERN PyObject
*_wrap_FrameManager_GetManagedWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7122 PyObject
*resultobj
= 0;
7123 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7124 wxWindow
*result
= 0 ;
7127 PyObject
*swig_obj
[1] ;
7129 if (!args
) SWIG_fail
;
7131 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7132 if (!SWIG_IsOK(res1
)) {
7133 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_GetManagedWindow" "', expected argument " "1"" of type '" "wxFrameManager const *""'");
7135 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7137 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7138 result
= (wxWindow
*)((wxFrameManager
const *)arg1
)->GetManagedWindow();
7139 wxPyEndAllowThreads(__tstate
);
7140 if (PyErr_Occurred()) SWIG_fail
;
7143 resultobj
= wxPyMake_wxObject(result
, 0);
7151 SWIGINTERN PyObject
*_wrap_FrameManager_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7152 PyObject
*resultobj
= 0;
7153 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7154 wxDockArt
*arg2
= (wxDockArt
*) 0 ;
7158 PyObject
* obj0
= 0 ;
7159 PyObject
* obj1
= 0 ;
7160 char * kwnames
[] = {
7161 (char *) "self",(char *) "art_provider", NULL
7164 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7165 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7166 if (!SWIG_IsOK(res1
)) {
7167 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_SetArtProvider" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7169 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7170 res2
= SWIG_ConvertPtr(obj1
, SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxDockArt
, SWIG_POINTER_DISOWN
| 0 );
7171 if (!SWIG_IsOK(res2
)) {
7172 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_SetArtProvider" "', expected argument " "2"" of type '" "wxDockArt *""'");
7175 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7176 (arg1
)->SetArtProvider(arg2
);
7177 wxPyEndAllowThreads(__tstate
);
7178 if (PyErr_Occurred()) SWIG_fail
;
7180 resultobj
= SWIG_Py_Void();
7187 SWIGINTERN PyObject
*_wrap_FrameManager_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7188 PyObject
*resultobj
= 0;
7189 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7190 wxDockArt
*result
= 0 ;
7193 PyObject
*swig_obj
[1] ;
7195 if (!args
) SWIG_fail
;
7197 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7198 if (!SWIG_IsOK(res1
)) {
7199 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_GetArtProvider" "', expected argument " "1"" of type '" "wxFrameManager const *""'");
7201 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7203 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7204 result
= (wxDockArt
*)((wxFrameManager
const *)arg1
)->GetArtProvider();
7205 wxPyEndAllowThreads(__tstate
);
7206 if (PyErr_Occurred()) SWIG_fail
;
7208 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDockArt
, 0 | 0 );
7215 SWIGINTERN PyObject
*_wrap_FrameManager__GetPaneByWidget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7216 PyObject
*resultobj
= 0;
7217 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7218 wxWindow
*arg2
= (wxWindow
*) 0 ;
7219 wxPaneInfo
*result
= 0 ;
7224 PyObject
* obj0
= 0 ;
7225 PyObject
* obj1
= 0 ;
7226 char * kwnames
[] = {
7227 (char *) "self",(char *) "window", NULL
7230 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager__GetPaneByWidget",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7231 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7232 if (!SWIG_IsOK(res1
)) {
7233 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager__GetPaneByWidget" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7235 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7236 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7237 if (!SWIG_IsOK(res2
)) {
7238 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager__GetPaneByWidget" "', expected argument " "2"" of type '" "wxWindow *""'");
7240 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7242 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7244 wxPaneInfo
&_result_ref
= (arg1
)->GetPane(arg2
);
7245 result
= (wxPaneInfo
*) &_result_ref
;
7247 wxPyEndAllowThreads(__tstate
);
7248 if (PyErr_Occurred()) SWIG_fail
;
7250 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
7257 SWIGINTERN PyObject
*_wrap_FrameManager__GetPaneByName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7258 PyObject
*resultobj
= 0;
7259 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7260 wxString
*arg2
= 0 ;
7261 wxPaneInfo
*result
= 0 ;
7264 bool temp2
= false ;
7265 PyObject
* obj0
= 0 ;
7266 PyObject
* obj1
= 0 ;
7267 char * kwnames
[] = {
7268 (char *) "self",(char *) "name", NULL
7271 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager__GetPaneByName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7272 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7273 if (!SWIG_IsOK(res1
)) {
7274 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager__GetPaneByName" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7276 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7278 arg2
= wxString_in_helper(obj1
);
7279 if (arg2
== NULL
) SWIG_fail
;
7283 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7285 wxPaneInfo
&_result_ref
= (arg1
)->GetPane((wxString
const &)*arg2
);
7286 result
= (wxPaneInfo
*) &_result_ref
;
7288 wxPyEndAllowThreads(__tstate
);
7289 if (PyErr_Occurred()) SWIG_fail
;
7291 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
7306 SWIGINTERN PyObject
*_wrap_FrameManager_GetAllPanes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7307 PyObject
*resultobj
= 0;
7308 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7309 wxPaneInfoArray
*result
= 0 ;
7312 PyObject
*swig_obj
[1] ;
7314 if (!args
) SWIG_fail
;
7316 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7317 if (!SWIG_IsOK(res1
)) {
7318 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_GetAllPanes" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7320 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7322 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7324 wxPaneInfoArray
&_result_ref
= (arg1
)->GetAllPanes();
7325 result
= (wxPaneInfoArray
*) &_result_ref
;
7327 wxPyEndAllowThreads(__tstate
);
7328 if (PyErr_Occurred()) SWIG_fail
;
7331 resultobj
= PyList_New(0);
7332 for (size_t i
=0; i
< result
->GetCount(); i
++) {
7333 PyObject
* pane_obj
= SWIG_NewPointerObj((void*)(&result
->Item(i
)), SWIGTYPE_p_wxPaneInfo
, 0);
7334 PyList_Append(resultobj
, pane_obj
);
7343 SWIGINTERN PyObject
*_wrap_FrameManager__AddPane1(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7344 PyObject
*resultobj
= 0;
7345 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7346 wxWindow
*arg2
= (wxWindow
*) 0 ;
7347 wxPaneInfo
*arg3
= 0 ;
7355 PyObject
* obj0
= 0 ;
7356 PyObject
* obj1
= 0 ;
7357 PyObject
* obj2
= 0 ;
7358 char * kwnames
[] = {
7359 (char *) "self",(char *) "window",(char *) "pane_info", NULL
7362 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:FrameManager__AddPane1",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7363 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7364 if (!SWIG_IsOK(res1
)) {
7365 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager__AddPane1" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7367 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7368 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7369 if (!SWIG_IsOK(res2
)) {
7370 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager__AddPane1" "', expected argument " "2"" of type '" "wxWindow *""'");
7372 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7373 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
7374 if (!SWIG_IsOK(res3
)) {
7375 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "FrameManager__AddPane1" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7378 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager__AddPane1" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7380 arg3
= reinterpret_cast< wxPaneInfo
* >(argp3
);
7382 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7383 result
= (bool)(arg1
)->AddPane(arg2
,(wxPaneInfo
const &)*arg3
);
7384 wxPyEndAllowThreads(__tstate
);
7385 if (PyErr_Occurred()) SWIG_fail
;
7388 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7396 SWIGINTERN PyObject
*_wrap_FrameManager_AddPaneAtPos(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7397 PyObject
*resultobj
= 0;
7398 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7399 wxWindow
*arg2
= (wxWindow
*) 0 ;
7400 wxPaneInfo
*arg3
= 0 ;
7410 PyObject
* obj0
= 0 ;
7411 PyObject
* obj1
= 0 ;
7412 PyObject
* obj2
= 0 ;
7413 PyObject
* obj3
= 0 ;
7414 char * kwnames
[] = {
7415 (char *) "self",(char *) "window",(char *) "pane_info",(char *) "drop_pos", NULL
7418 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:FrameManager_AddPaneAtPos",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7419 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7420 if (!SWIG_IsOK(res1
)) {
7421 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_AddPaneAtPos" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7423 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7424 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7425 if (!SWIG_IsOK(res2
)) {
7426 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_AddPaneAtPos" "', expected argument " "2"" of type '" "wxWindow *""'");
7428 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7429 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
7430 if (!SWIG_IsOK(res3
)) {
7431 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "FrameManager_AddPaneAtPos" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7434 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_AddPaneAtPos" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7436 arg3
= reinterpret_cast< wxPaneInfo
* >(argp3
);
7439 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7442 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7443 result
= (bool)(arg1
)->AddPane(arg2
,(wxPaneInfo
const &)*arg3
,(wxPoint
const &)*arg4
);
7444 wxPyEndAllowThreads(__tstate
);
7445 if (PyErr_Occurred()) SWIG_fail
;
7448 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7456 SWIGINTERN PyObject
*_wrap_FrameManager__AddPane2(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7457 PyObject
*resultobj
= 0;
7458 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7459 wxWindow
*arg2
= (wxWindow
*) 0 ;
7460 int arg3
= (int) wxLEFT
;
7461 wxString
const &arg4_defvalue
= wxEmptyString
;
7462 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
7470 bool temp4
= false ;
7471 PyObject
* obj0
= 0 ;
7472 PyObject
* obj1
= 0 ;
7473 PyObject
* obj2
= 0 ;
7474 PyObject
* obj3
= 0 ;
7475 char * kwnames
[] = {
7476 (char *) "self",(char *) "window",(char *) "direction",(char *) "caption", NULL
7479 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:FrameManager__AddPane2",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7480 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7481 if (!SWIG_IsOK(res1
)) {
7482 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager__AddPane2" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7484 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7485 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7486 if (!SWIG_IsOK(res2
)) {
7487 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager__AddPane2" "', expected argument " "2"" of type '" "wxWindow *""'");
7489 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7491 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
7492 if (!SWIG_IsOK(ecode3
)) {
7493 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FrameManager__AddPane2" "', expected argument " "3"" of type '" "int""'");
7495 arg3
= static_cast< int >(val3
);
7499 arg4
= wxString_in_helper(obj3
);
7500 if (arg4
== NULL
) SWIG_fail
;
7505 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7506 result
= (bool)(arg1
)->AddPane(arg2
,arg3
,(wxString
const &)*arg4
);
7507 wxPyEndAllowThreads(__tstate
);
7508 if (PyErr_Occurred()) SWIG_fail
;
7511 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7527 SWIGINTERN PyObject
*_wrap_FrameManager_InsertPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7528 PyObject
*resultobj
= 0;
7529 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7530 wxWindow
*arg2
= (wxWindow
*) 0 ;
7531 wxPaneInfo
*arg3
= 0 ;
7532 int arg4
= (int) wxAUI_INSERT_PANE
;
7542 PyObject
* obj0
= 0 ;
7543 PyObject
* obj1
= 0 ;
7544 PyObject
* obj2
= 0 ;
7545 PyObject
* obj3
= 0 ;
7546 char * kwnames
[] = {
7547 (char *) "self",(char *) "window",(char *) "insert_location",(char *) "insert_level", NULL
7550 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:FrameManager_InsertPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7551 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7552 if (!SWIG_IsOK(res1
)) {
7553 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_InsertPane" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7555 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7556 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7557 if (!SWIG_IsOK(res2
)) {
7558 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_InsertPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7560 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7561 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
7562 if (!SWIG_IsOK(res3
)) {
7563 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "FrameManager_InsertPane" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7566 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_InsertPane" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7568 arg3
= reinterpret_cast< wxPaneInfo
* >(argp3
);
7570 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
7571 if (!SWIG_IsOK(ecode4
)) {
7572 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "FrameManager_InsertPane" "', expected argument " "4"" of type '" "int""'");
7574 arg4
= static_cast< int >(val4
);
7577 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7578 result
= (bool)(arg1
)->InsertPane(arg2
,(wxPaneInfo
const &)*arg3
,arg4
);
7579 wxPyEndAllowThreads(__tstate
);
7580 if (PyErr_Occurred()) SWIG_fail
;
7583 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7591 SWIGINTERN PyObject
*_wrap_FrameManager_DetachPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7592 PyObject
*resultobj
= 0;
7593 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7594 wxWindow
*arg2
= (wxWindow
*) 0 ;
7600 PyObject
* obj0
= 0 ;
7601 PyObject
* obj1
= 0 ;
7602 char * kwnames
[] = {
7603 (char *) "self",(char *) "window", NULL
7606 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_DetachPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7607 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7608 if (!SWIG_IsOK(res1
)) {
7609 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_DetachPane" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7611 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7612 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7613 if (!SWIG_IsOK(res2
)) {
7614 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_DetachPane" "', expected argument " "2"" of type '" "wxWindow *""'");
7616 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7618 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7619 result
= (bool)(arg1
)->DetachPane(arg2
);
7620 wxPyEndAllowThreads(__tstate
);
7621 if (PyErr_Occurred()) SWIG_fail
;
7624 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7632 SWIGINTERN PyObject
*_wrap_FrameManager_ClosePane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7633 PyObject
*resultobj
= 0;
7634 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7635 wxPaneInfo
*arg2
= 0 ;
7640 PyObject
* obj0
= 0 ;
7641 PyObject
* obj1
= 0 ;
7642 char * kwnames
[] = {
7643 (char *) "self",(char *) "pane_info", NULL
7646 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_ClosePane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7647 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7648 if (!SWIG_IsOK(res1
)) {
7649 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_ClosePane" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7651 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7652 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPaneInfo
, 0 );
7653 if (!SWIG_IsOK(res2
)) {
7654 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_ClosePane" "', expected argument " "2"" of type '" "wxPaneInfo &""'");
7657 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_ClosePane" "', expected argument " "2"" of type '" "wxPaneInfo &""'");
7659 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
7661 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7662 (arg1
)->ClosePane(*arg2
);
7663 wxPyEndAllowThreads(__tstate
);
7664 if (PyErr_Occurred()) SWIG_fail
;
7666 resultobj
= SWIG_Py_Void();
7673 SWIGINTERN PyObject
*_wrap_FrameManager_SavePaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7674 PyObject
*resultobj
= 0;
7675 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7676 wxPaneInfo
*arg2
= 0 ;
7682 PyObject
* obj0
= 0 ;
7683 PyObject
* obj1
= 0 ;
7684 char * kwnames
[] = {
7685 (char *) "self",(char *) "pane", NULL
7688 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_SavePaneInfo",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7689 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7690 if (!SWIG_IsOK(res1
)) {
7691 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_SavePaneInfo" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7693 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7694 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPaneInfo
, 0 );
7695 if (!SWIG_IsOK(res2
)) {
7696 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_SavePaneInfo" "', expected argument " "2"" of type '" "wxPaneInfo &""'");
7699 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_SavePaneInfo" "', expected argument " "2"" of type '" "wxPaneInfo &""'");
7701 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
7703 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7704 result
= (arg1
)->SavePaneInfo(*arg2
);
7705 wxPyEndAllowThreads(__tstate
);
7706 if (PyErr_Occurred()) SWIG_fail
;
7710 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
7712 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
7721 SWIGINTERN PyObject
*_wrap_FrameManager_LoadPaneInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7722 PyObject
*resultobj
= 0;
7723 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7725 wxPaneInfo
*arg3
= 0 ;
7730 PyObject
* obj0
= 0 ;
7731 PyObject
* obj1
= 0 ;
7732 PyObject
* obj2
= 0 ;
7733 char * kwnames
[] = {
7734 (char *) "self",(char *) "pane_part",(char *) "pane", NULL
7737 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:FrameManager_LoadPaneInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7738 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7739 if (!SWIG_IsOK(res1
)) {
7740 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_LoadPaneInfo" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7742 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7744 wxString
* sptr
= wxString_in_helper(obj1
);
7745 if (sptr
== NULL
) SWIG_fail
;
7749 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxPaneInfo
, 0 );
7750 if (!SWIG_IsOK(res3
)) {
7751 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "FrameManager_LoadPaneInfo" "', expected argument " "3"" of type '" "wxPaneInfo &""'");
7754 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_LoadPaneInfo" "', expected argument " "3"" of type '" "wxPaneInfo &""'");
7756 arg3
= reinterpret_cast< wxPaneInfo
* >(argp3
);
7758 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7759 (arg1
)->LoadPaneInfo(arg2
,*arg3
);
7760 wxPyEndAllowThreads(__tstate
);
7761 if (PyErr_Occurred()) SWIG_fail
;
7763 resultobj
= SWIG_Py_Void();
7770 SWIGINTERN PyObject
*_wrap_FrameManager_SavePerspective(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7771 PyObject
*resultobj
= 0;
7772 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7776 PyObject
*swig_obj
[1] ;
7778 if (!args
) SWIG_fail
;
7780 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7781 if (!SWIG_IsOK(res1
)) {
7782 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_SavePerspective" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7784 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7786 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7787 result
= (arg1
)->SavePerspective();
7788 wxPyEndAllowThreads(__tstate
);
7789 if (PyErr_Occurred()) SWIG_fail
;
7793 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
7795 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
7804 SWIGINTERN PyObject
*_wrap_FrameManager_LoadPerspective(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7805 PyObject
*resultobj
= 0;
7806 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7807 wxString
*arg2
= 0 ;
7808 bool arg3
= (bool) true ;
7812 bool temp2
= false ;
7815 PyObject
* obj0
= 0 ;
7816 PyObject
* obj1
= 0 ;
7817 PyObject
* obj2
= 0 ;
7818 char * kwnames
[] = {
7819 (char *) "self",(char *) "perspective",(char *) "update", NULL
7822 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:FrameManager_LoadPerspective",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7823 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7824 if (!SWIG_IsOK(res1
)) {
7825 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_LoadPerspective" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7827 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7829 arg2
= wxString_in_helper(obj1
);
7830 if (arg2
== NULL
) SWIG_fail
;
7834 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
7835 if (!SWIG_IsOK(ecode3
)) {
7836 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FrameManager_LoadPerspective" "', expected argument " "3"" of type '" "bool""'");
7838 arg3
= static_cast< bool >(val3
);
7841 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7842 result
= (bool)(arg1
)->LoadPerspective((wxString
const &)*arg2
,arg3
);
7843 wxPyEndAllowThreads(__tstate
);
7844 if (PyErr_Occurred()) SWIG_fail
;
7847 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7863 SWIGINTERN PyObject
*_wrap_FrameManager_Update(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7864 PyObject
*resultobj
= 0;
7865 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7868 PyObject
*swig_obj
[1] ;
7870 if (!args
) SWIG_fail
;
7872 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7873 if (!SWIG_IsOK(res1
)) {
7874 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_Update" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7876 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7878 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7880 wxPyEndAllowThreads(__tstate
);
7881 if (PyErr_Occurred()) SWIG_fail
;
7883 resultobj
= SWIG_Py_Void();
7890 SWIGINTERN PyObject
*_wrap_FrameManager_CreateFloatingFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7891 PyObject
*resultobj
= 0;
7892 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7893 wxWindow
*arg2
= (wxWindow
*) 0 ;
7894 wxPaneInfo
*arg3
= 0 ;
7895 wxFloatingPane
*result
= 0 ;
7902 PyObject
* obj0
= 0 ;
7903 PyObject
* obj1
= 0 ;
7904 PyObject
* obj2
= 0 ;
7905 char * kwnames
[] = {
7906 (char *) "self",(char *) "parent",(char *) "p", NULL
7909 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:FrameManager_CreateFloatingFrame",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7910 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7911 if (!SWIG_IsOK(res1
)) {
7912 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_CreateFloatingFrame" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7914 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7915 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7916 if (!SWIG_IsOK(res2
)) {
7917 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_CreateFloatingFrame" "', expected argument " "2"" of type '" "wxWindow *""'");
7919 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7920 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
7921 if (!SWIG_IsOK(res3
)) {
7922 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "FrameManager_CreateFloatingFrame" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7925 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_CreateFloatingFrame" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
7927 arg3
= reinterpret_cast< wxPaneInfo
* >(argp3
);
7929 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7930 result
= (wxFloatingPane
*)(arg1
)->CreateFloatingFrame(arg2
,(wxPaneInfo
const &)*arg3
);
7931 wxPyEndAllowThreads(__tstate
);
7932 if (PyErr_Occurred()) SWIG_fail
;
7934 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFloatingPane
, 0 | 0 );
7941 SWIGINTERN PyObject
*_wrap_FrameManager_DrawHintRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7942 PyObject
*resultobj
= 0;
7943 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
7944 wxWindow
*arg2
= (wxWindow
*) 0 ;
7953 PyObject
* obj0
= 0 ;
7954 PyObject
* obj1
= 0 ;
7955 PyObject
* obj2
= 0 ;
7956 PyObject
* obj3
= 0 ;
7957 char * kwnames
[] = {
7958 (char *) "self",(char *) "pane_window",(char *) "pt",(char *) "offset", NULL
7961 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:FrameManager_DrawHintRect",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7962 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
7963 if (!SWIG_IsOK(res1
)) {
7964 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_DrawHintRect" "', expected argument " "1"" of type '" "wxFrameManager *""'");
7966 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
7967 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7968 if (!SWIG_IsOK(res2
)) {
7969 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_DrawHintRect" "', expected argument " "2"" of type '" "wxWindow *""'");
7971 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7974 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
7978 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7981 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7982 (arg1
)->DrawHintRect(arg2
,(wxPoint
const &)*arg3
,(wxPoint
const &)*arg4
);
7983 wxPyEndAllowThreads(__tstate
);
7984 if (PyErr_Occurred()) SWIG_fail
;
7986 resultobj
= SWIG_Py_Void();
7993 SWIGINTERN PyObject
*_wrap_FrameManager_ShowHint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7994 PyObject
*resultobj
= 0;
7995 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
8000 PyObject
* obj0
= 0 ;
8001 PyObject
* obj1
= 0 ;
8002 char * kwnames
[] = {
8003 (char *) "self",(char *) "rect", NULL
8006 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_ShowHint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8007 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
8008 if (!SWIG_IsOK(res1
)) {
8009 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_ShowHint" "', expected argument " "1"" of type '" "wxFrameManager *""'");
8011 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
8014 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
8017 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8018 (arg1
)->ShowHint((wxRect
const &)*arg2
);
8019 wxPyEndAllowThreads(__tstate
);
8020 if (PyErr_Occurred()) SWIG_fail
;
8022 resultobj
= SWIG_Py_Void();
8029 SWIGINTERN PyObject
*_wrap_FrameManager_HideHint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8030 PyObject
*resultobj
= 0;
8031 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
8034 PyObject
*swig_obj
[1] ;
8036 if (!args
) SWIG_fail
;
8038 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
8039 if (!SWIG_IsOK(res1
)) {
8040 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_HideHint" "', expected argument " "1"" of type '" "wxFrameManager *""'");
8042 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
8044 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8046 wxPyEndAllowThreads(__tstate
);
8047 if (PyErr_Occurred()) SWIG_fail
;
8049 resultobj
= SWIG_Py_Void();
8056 SWIGINTERN PyObject
*_wrap_FrameManager_OnRender(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8057 PyObject
*resultobj
= 0;
8058 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
8059 wxFrameManagerEvent
*arg2
= 0 ;
8064 PyObject
* obj0
= 0 ;
8065 PyObject
* obj1
= 0 ;
8066 char * kwnames
[] = {
8067 (char *) "self",(char *) "evt", NULL
8070 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_OnRender",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8071 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
8072 if (!SWIG_IsOK(res1
)) {
8073 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_OnRender" "', expected argument " "1"" of type '" "wxFrameManager *""'");
8075 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
8076 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFrameManagerEvent
, 0 );
8077 if (!SWIG_IsOK(res2
)) {
8078 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_OnRender" "', expected argument " "2"" of type '" "wxFrameManagerEvent &""'");
8081 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_OnRender" "', expected argument " "2"" of type '" "wxFrameManagerEvent &""'");
8083 arg2
= reinterpret_cast< wxFrameManagerEvent
* >(argp2
);
8085 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8086 (arg1
)->OnRender(*arg2
);
8087 wxPyEndAllowThreads(__tstate
);
8088 if (PyErr_Occurred()) SWIG_fail
;
8090 resultobj
= SWIG_Py_Void();
8097 SWIGINTERN PyObject
*_wrap_FrameManager_OnPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8098 PyObject
*resultobj
= 0;
8099 wxFrameManager
*arg1
= (wxFrameManager
*) 0 ;
8100 wxFrameManagerEvent
*arg2
= 0 ;
8105 PyObject
* obj0
= 0 ;
8106 PyObject
* obj1
= 0 ;
8107 char * kwnames
[] = {
8108 (char *) "self",(char *) "evt", NULL
8111 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManager_OnPaneButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8112 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
8113 if (!SWIG_IsOK(res1
)) {
8114 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManager_OnPaneButton" "', expected argument " "1"" of type '" "wxFrameManager *""'");
8116 arg1
= reinterpret_cast< wxFrameManager
* >(argp1
);
8117 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFrameManagerEvent
, 0 );
8118 if (!SWIG_IsOK(res2
)) {
8119 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManager_OnPaneButton" "', expected argument " "2"" of type '" "wxFrameManagerEvent &""'");
8122 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FrameManager_OnPaneButton" "', expected argument " "2"" of type '" "wxFrameManagerEvent &""'");
8124 arg2
= reinterpret_cast< wxFrameManagerEvent
* >(argp2
);
8126 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8127 (arg1
)->OnPaneButton(*arg2
);
8128 wxPyEndAllowThreads(__tstate
);
8129 if (PyErr_Occurred()) SWIG_fail
;
8131 resultobj
= SWIG_Py_Void();
8138 SWIGINTERN PyObject
*FrameManager_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8140 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8141 SWIG_TypeNewClientData(SWIGTYPE_p_wxFrameManager
, SWIG_NewClientData(obj
));
8142 return SWIG_Py_Void();
8145 SWIGINTERN PyObject
*FrameManager_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8146 return SWIG_Python_InitShadowInstance(args
);
8149 SWIGINTERN PyObject
*_wrap_new_FrameManagerEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8150 PyObject
*resultobj
= 0;
8151 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
8152 wxFrameManagerEvent
*result
= 0 ;
8155 PyObject
* obj0
= 0 ;
8156 char * kwnames
[] = {
8157 (char *) "type", NULL
8160 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_FrameManagerEvent",kwnames
,&obj0
)) SWIG_fail
;
8162 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
8163 if (!SWIG_IsOK(ecode1
)) {
8164 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_FrameManagerEvent" "', expected argument " "1"" of type '" "wxEventType""'");
8166 arg1
= static_cast< wxEventType
>(val1
);
8169 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8170 result
= (wxFrameManagerEvent
*)new wxFrameManagerEvent(arg1
);
8171 wxPyEndAllowThreads(__tstate
);
8172 if (PyErr_Occurred()) SWIG_fail
;
8174 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFrameManagerEvent
, SWIG_POINTER_NEW
| 0 );
8181 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_Clone(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8182 PyObject
*resultobj
= 0;
8183 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8184 wxEvent
*result
= 0 ;
8187 PyObject
*swig_obj
[1] ;
8189 if (!args
) SWIG_fail
;
8191 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8192 if (!SWIG_IsOK(res1
)) {
8193 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_Clone" "', expected argument " "1"" of type '" "wxFrameManagerEvent const *""'");
8195 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8197 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8198 result
= (wxEvent
*)((wxFrameManagerEvent
const *)arg1
)->Clone();
8199 wxPyEndAllowThreads(__tstate
);
8200 if (PyErr_Occurred()) SWIG_fail
;
8202 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxEvent
, 0 | 0 );
8209 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_SetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8210 PyObject
*resultobj
= 0;
8211 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8212 wxPaneInfo
*arg2
= (wxPaneInfo
*) 0 ;
8217 PyObject
* obj0
= 0 ;
8218 PyObject
* obj1
= 0 ;
8219 char * kwnames
[] = {
8220 (char *) "self",(char *) "p", NULL
8223 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManagerEvent_SetPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8224 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8225 if (!SWIG_IsOK(res1
)) {
8226 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_SetPane" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8228 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8229 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
8230 if (!SWIG_IsOK(res2
)) {
8231 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManagerEvent_SetPane" "', expected argument " "2"" of type '" "wxPaneInfo *""'");
8233 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
8235 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8236 (arg1
)->SetPane(arg2
);
8237 wxPyEndAllowThreads(__tstate
);
8238 if (PyErr_Occurred()) SWIG_fail
;
8240 resultobj
= SWIG_Py_Void();
8247 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_SetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8248 PyObject
*resultobj
= 0;
8249 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8255 PyObject
* obj0
= 0 ;
8256 PyObject
* obj1
= 0 ;
8257 char * kwnames
[] = {
8258 (char *) "self",(char *) "b", NULL
8261 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManagerEvent_SetButton",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8262 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8263 if (!SWIG_IsOK(res1
)) {
8264 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_SetButton" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8266 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8267 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8268 if (!SWIG_IsOK(ecode2
)) {
8269 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_SetButton" "', expected argument " "2"" of type '" "int""'");
8271 arg2
= static_cast< int >(val2
);
8273 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8274 (arg1
)->SetButton(arg2
);
8275 wxPyEndAllowThreads(__tstate
);
8276 if (PyErr_Occurred()) SWIG_fail
;
8278 resultobj
= SWIG_Py_Void();
8285 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_SetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8286 PyObject
*resultobj
= 0;
8287 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8288 wxDC
*arg2
= (wxDC
*) 0 ;
8293 PyObject
* obj0
= 0 ;
8294 PyObject
* obj1
= 0 ;
8295 char * kwnames
[] = {
8296 (char *) "self",(char *) "pdc", NULL
8299 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManagerEvent_SetDC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8300 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8301 if (!SWIG_IsOK(res1
)) {
8302 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_SetDC" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8304 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8305 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
8306 if (!SWIG_IsOK(res2
)) {
8307 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManagerEvent_SetDC" "', expected argument " "2"" of type '" "wxDC *""'");
8309 arg2
= reinterpret_cast< wxDC
* >(argp2
);
8311 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8312 (arg1
)->SetDC(arg2
);
8313 wxPyEndAllowThreads(__tstate
);
8314 if (PyErr_Occurred()) SWIG_fail
;
8316 resultobj
= SWIG_Py_Void();
8323 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_GetPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8324 PyObject
*resultobj
= 0;
8325 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8326 wxPaneInfo
*result
= 0 ;
8329 PyObject
*swig_obj
[1] ;
8331 if (!args
) SWIG_fail
;
8333 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8334 if (!SWIG_IsOK(res1
)) {
8335 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_GetPane" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8337 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8339 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8340 result
= (wxPaneInfo
*)(arg1
)->GetPane();
8341 wxPyEndAllowThreads(__tstate
);
8342 if (PyErr_Occurred()) SWIG_fail
;
8344 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
8351 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_GetButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8352 PyObject
*resultobj
= 0;
8353 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8357 PyObject
*swig_obj
[1] ;
8359 if (!args
) SWIG_fail
;
8361 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8362 if (!SWIG_IsOK(res1
)) {
8363 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_GetButton" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8365 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8367 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8368 result
= (int)(arg1
)->GetButton();
8369 wxPyEndAllowThreads(__tstate
);
8370 if (PyErr_Occurred()) SWIG_fail
;
8372 resultobj
= SWIG_From_int(static_cast< int >(result
));
8379 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_GetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8380 PyObject
*resultobj
= 0;
8381 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8385 PyObject
*swig_obj
[1] ;
8387 if (!args
) SWIG_fail
;
8389 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8390 if (!SWIG_IsOK(res1
)) {
8391 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_GetDC" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8393 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8395 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8396 result
= (wxDC
*)(arg1
)->GetDC();
8397 wxPyEndAllowThreads(__tstate
);
8398 if (PyErr_Occurred()) SWIG_fail
;
8401 resultobj
= wxPyMake_wxObject(result
, (bool)0);
8409 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_Veto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8410 PyObject
*resultobj
= 0;
8411 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8412 bool arg2
= (bool) true ;
8417 PyObject
* obj0
= 0 ;
8418 PyObject
* obj1
= 0 ;
8419 char * kwnames
[] = {
8420 (char *) "self",(char *) "veto", NULL
8423 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:FrameManagerEvent_Veto",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8424 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8425 if (!SWIG_IsOK(res1
)) {
8426 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_Veto" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8428 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8430 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8431 if (!SWIG_IsOK(ecode2
)) {
8432 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_Veto" "', expected argument " "2"" of type '" "bool""'");
8434 arg2
= static_cast< bool >(val2
);
8437 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8439 wxPyEndAllowThreads(__tstate
);
8440 if (PyErr_Occurred()) SWIG_fail
;
8442 resultobj
= SWIG_Py_Void();
8449 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_GetVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8450 PyObject
*resultobj
= 0;
8451 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8455 PyObject
*swig_obj
[1] ;
8457 if (!args
) SWIG_fail
;
8459 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8460 if (!SWIG_IsOK(res1
)) {
8461 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_GetVeto" "', expected argument " "1"" of type '" "wxFrameManagerEvent const *""'");
8463 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8465 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8466 result
= (bool)((wxFrameManagerEvent
const *)arg1
)->GetVeto();
8467 wxPyEndAllowThreads(__tstate
);
8468 if (PyErr_Occurred()) SWIG_fail
;
8471 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8479 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_SetCanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8480 PyObject
*resultobj
= 0;
8481 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8487 PyObject
* obj0
= 0 ;
8488 PyObject
* obj1
= 0 ;
8489 char * kwnames
[] = {
8490 (char *) "self",(char *) "can_veto", NULL
8493 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FrameManagerEvent_SetCanVeto",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8494 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8495 if (!SWIG_IsOK(res1
)) {
8496 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_SetCanVeto" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8498 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8499 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8500 if (!SWIG_IsOK(ecode2
)) {
8501 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_SetCanVeto" "', expected argument " "2"" of type '" "bool""'");
8503 arg2
= static_cast< bool >(val2
);
8505 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8506 (arg1
)->SetCanVeto(arg2
);
8507 wxPyEndAllowThreads(__tstate
);
8508 if (PyErr_Occurred()) SWIG_fail
;
8510 resultobj
= SWIG_Py_Void();
8517 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_CanVeto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8518 PyObject
*resultobj
= 0;
8519 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8523 PyObject
*swig_obj
[1] ;
8525 if (!args
) SWIG_fail
;
8527 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8528 if (!SWIG_IsOK(res1
)) {
8529 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_CanVeto" "', expected argument " "1"" of type '" "wxFrameManagerEvent const *""'");
8531 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8533 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8534 result
= (bool)((wxFrameManagerEvent
const *)arg1
)->CanVeto();
8535 wxPyEndAllowThreads(__tstate
);
8536 if (PyErr_Occurred()) SWIG_fail
;
8539 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8547 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8548 PyObject
*resultobj
= 0;
8549 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8550 wxPaneInfo
*arg2
= (wxPaneInfo
*) 0 ;
8555 PyObject
*swig_obj
[2] ;
8557 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_pane_set",2,2,swig_obj
)) SWIG_fail
;
8558 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8559 if (!SWIG_IsOK(res1
)) {
8560 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_pane_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8562 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8563 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
8564 if (!SWIG_IsOK(res2
)) {
8565 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManagerEvent_pane_set" "', expected argument " "2"" of type '" "wxPaneInfo *""'");
8567 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
8568 if (arg1
) (arg1
)->pane
= arg2
;
8570 resultobj
= SWIG_Py_Void();
8577 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8578 PyObject
*resultobj
= 0;
8579 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8580 wxPaneInfo
*result
= 0 ;
8583 PyObject
*swig_obj
[1] ;
8585 if (!args
) SWIG_fail
;
8587 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8588 if (!SWIG_IsOK(res1
)) {
8589 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_pane_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8591 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8592 result
= (wxPaneInfo
*) ((arg1
)->pane
);
8593 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
8600 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8601 PyObject
*resultobj
= 0;
8602 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8608 PyObject
*swig_obj
[2] ;
8610 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_button_set",2,2,swig_obj
)) SWIG_fail
;
8611 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8612 if (!SWIG_IsOK(res1
)) {
8613 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_button_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8615 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8616 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
8617 if (!SWIG_IsOK(ecode2
)) {
8618 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_button_set" "', expected argument " "2"" of type '" "int""'");
8620 arg2
= static_cast< int >(val2
);
8621 if (arg1
) (arg1
)->button
= arg2
;
8623 resultobj
= SWIG_Py_Void();
8630 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8631 PyObject
*resultobj
= 0;
8632 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8636 PyObject
*swig_obj
[1] ;
8638 if (!args
) SWIG_fail
;
8640 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8641 if (!SWIG_IsOK(res1
)) {
8642 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_button_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8644 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8645 result
= (int) ((arg1
)->button
);
8646 resultobj
= SWIG_From_int(static_cast< int >(result
));
8653 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_veto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8654 PyObject
*resultobj
= 0;
8655 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8661 PyObject
*swig_obj
[2] ;
8663 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_veto_flag_set",2,2,swig_obj
)) SWIG_fail
;
8664 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8665 if (!SWIG_IsOK(res1
)) {
8666 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_veto_flag_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8668 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8669 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
8670 if (!SWIG_IsOK(ecode2
)) {
8671 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_veto_flag_set" "', expected argument " "2"" of type '" "bool""'");
8673 arg2
= static_cast< bool >(val2
);
8674 if (arg1
) (arg1
)->veto_flag
= arg2
;
8676 resultobj
= SWIG_Py_Void();
8683 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_veto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8684 PyObject
*resultobj
= 0;
8685 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8689 PyObject
*swig_obj
[1] ;
8691 if (!args
) SWIG_fail
;
8693 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8694 if (!SWIG_IsOK(res1
)) {
8695 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_veto_flag_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8697 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8698 result
= (bool) ((arg1
)->veto_flag
);
8700 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8708 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_canveto_flag_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8709 PyObject
*resultobj
= 0;
8710 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8716 PyObject
*swig_obj
[2] ;
8718 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_canveto_flag_set",2,2,swig_obj
)) SWIG_fail
;
8719 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8720 if (!SWIG_IsOK(res1
)) {
8721 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_canveto_flag_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8723 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8724 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
8725 if (!SWIG_IsOK(ecode2
)) {
8726 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FrameManagerEvent_canveto_flag_set" "', expected argument " "2"" of type '" "bool""'");
8728 arg2
= static_cast< bool >(val2
);
8729 if (arg1
) (arg1
)->canveto_flag
= arg2
;
8731 resultobj
= SWIG_Py_Void();
8738 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_canveto_flag_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8739 PyObject
*resultobj
= 0;
8740 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8744 PyObject
*swig_obj
[1] ;
8746 if (!args
) SWIG_fail
;
8748 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8749 if (!SWIG_IsOK(res1
)) {
8750 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_canveto_flag_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8752 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8753 result
= (bool) ((arg1
)->canveto_flag
);
8755 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8763 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_dc_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8764 PyObject
*resultobj
= 0;
8765 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8766 wxDC
*arg2
= (wxDC
*) 0 ;
8771 PyObject
*swig_obj
[2] ;
8773 if (!SWIG_Python_UnpackTuple(args
,"FrameManagerEvent_dc_set",2,2,swig_obj
)) SWIG_fail
;
8774 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8775 if (!SWIG_IsOK(res1
)) {
8776 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_dc_set" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8778 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8779 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxDC
, SWIG_POINTER_DISOWN
| 0 );
8780 if (!SWIG_IsOK(res2
)) {
8781 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FrameManagerEvent_dc_set" "', expected argument " "2"" of type '" "wxDC *""'");
8783 arg2
= reinterpret_cast< wxDC
* >(argp2
);
8784 if (arg1
) (arg1
)->dc
= arg2
;
8786 resultobj
= SWIG_Py_Void();
8793 SWIGINTERN PyObject
*_wrap_FrameManagerEvent_dc_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8794 PyObject
*resultobj
= 0;
8795 wxFrameManagerEvent
*arg1
= (wxFrameManagerEvent
*) 0 ;
8799 PyObject
*swig_obj
[1] ;
8801 if (!args
) SWIG_fail
;
8803 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrameManagerEvent
, 0 | 0 );
8804 if (!SWIG_IsOK(res1
)) {
8805 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FrameManagerEvent_dc_get" "', expected argument " "1"" of type '" "wxFrameManagerEvent *""'");
8807 arg1
= reinterpret_cast< wxFrameManagerEvent
* >(argp1
);
8808 result
= (wxDC
*) ((arg1
)->dc
);
8810 resultobj
= wxPyMake_wxObject(result
, (bool)0);
8818 SWIGINTERN PyObject
*FrameManagerEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8820 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8821 SWIG_TypeNewClientData(SWIGTYPE_p_wxFrameManagerEvent
, SWIG_NewClientData(obj
));
8822 return SWIG_Py_Void();
8825 SWIGINTERN PyObject
*FrameManagerEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8826 return SWIG_Python_InitShadowInstance(args
);
8829 SWIGINTERN PyObject
*_wrap_new_DockInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8830 PyObject
*resultobj
= 0;
8831 wxDockInfo
*result
= 0 ;
8833 if (!SWIG_Python_UnpackTuple(args
,"new_DockInfo",0,0,0)) SWIG_fail
;
8835 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8836 result
= (wxDockInfo
*)new wxDockInfo();
8837 wxPyEndAllowThreads(__tstate
);
8838 if (PyErr_Occurred()) SWIG_fail
;
8840 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDockInfo
, SWIG_POINTER_NEW
| 0 );
8847 SWIGINTERN PyObject
*_wrap_DockInfo_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8848 PyObject
*resultobj
= 0;
8849 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8853 PyObject
*swig_obj
[1] ;
8855 if (!args
) SWIG_fail
;
8857 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8858 if (!SWIG_IsOK(res1
)) {
8859 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_IsOk" "', expected argument " "1"" of type '" "wxDockInfo const *""'");
8861 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8863 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8864 result
= (bool)((wxDockInfo
const *)arg1
)->IsOk();
8865 wxPyEndAllowThreads(__tstate
);
8866 if (PyErr_Occurred()) SWIG_fail
;
8869 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8877 SWIGINTERN PyObject
*_wrap_DockInfo_IsHorizontal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8878 PyObject
*resultobj
= 0;
8879 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8883 PyObject
*swig_obj
[1] ;
8885 if (!args
) SWIG_fail
;
8887 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8888 if (!SWIG_IsOK(res1
)) {
8889 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_IsHorizontal" "', expected argument " "1"" of type '" "wxDockInfo const *""'");
8891 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8893 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8894 result
= (bool)((wxDockInfo
const *)arg1
)->IsHorizontal();
8895 wxPyEndAllowThreads(__tstate
);
8896 if (PyErr_Occurred()) SWIG_fail
;
8899 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8907 SWIGINTERN PyObject
*_wrap_DockInfo_IsVertical(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8908 PyObject
*resultobj
= 0;
8909 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8913 PyObject
*swig_obj
[1] ;
8915 if (!args
) SWIG_fail
;
8917 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8918 if (!SWIG_IsOK(res1
)) {
8919 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_IsVertical" "', expected argument " "1"" of type '" "wxDockInfo const *""'");
8921 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8923 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8924 result
= (bool)((wxDockInfo
const *)arg1
)->IsVertical();
8925 wxPyEndAllowThreads(__tstate
);
8926 if (PyErr_Occurred()) SWIG_fail
;
8929 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8937 SWIGINTERN PyObject
*_wrap_DockInfo_panes_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8938 PyObject
*resultobj
= 0;
8939 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8940 wxPaneInfoPtrArray arg2
;
8945 PyObject
*swig_obj
[2] ;
8947 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_panes_set",2,2,swig_obj
)) SWIG_fail
;
8948 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8949 if (!SWIG_IsOK(res1
)) {
8950 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_panes_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8952 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8954 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
, SWIGTYPE_p_wxPaneInfoPtrArray
, 0 | 0);
8955 if (!SWIG_IsOK(res2
)) {
8956 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockInfo_panes_set" "', expected argument " "2"" of type '" "wxPaneInfoPtrArray""'");
8959 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockInfo_panes_set" "', expected argument " "2"" of type '" "wxPaneInfoPtrArray""'");
8961 wxPaneInfoPtrArray
* temp
= reinterpret_cast< wxPaneInfoPtrArray
* >(argp2
);
8963 if (SWIG_IsNewObj(res2
)) delete temp
;
8966 if (arg1
) (arg1
)->panes
= arg2
;
8968 resultobj
= SWIG_Py_Void();
8975 SWIGINTERN PyObject
*_wrap_DockInfo_panes_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8976 PyObject
*resultobj
= 0;
8977 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
8978 wxPaneInfoPtrArray result
;
8981 PyObject
*swig_obj
[1] ;
8983 if (!args
) SWIG_fail
;
8985 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
8986 if (!SWIG_IsOK(res1
)) {
8987 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_panes_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
8989 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
8990 result
= ((arg1
)->panes
);
8991 resultobj
= SWIG_NewPointerObj((new wxPaneInfoPtrArray(static_cast< const wxPaneInfoPtrArray
& >(result
))), SWIGTYPE_p_wxPaneInfoPtrArray
, SWIG_POINTER_OWN
| 0 );
8998 SWIGINTERN PyObject
*_wrap_DockInfo_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8999 PyObject
*resultobj
= 0;
9000 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9001 wxRect
*arg2
= (wxRect
*) 0 ;
9006 PyObject
*swig_obj
[2] ;
9008 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_rect_set",2,2,swig_obj
)) SWIG_fail
;
9009 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9010 if (!SWIG_IsOK(res1
)) {
9011 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_rect_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9013 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9014 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
9015 if (!SWIG_IsOK(res2
)) {
9016 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockInfo_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
9018 arg2
= reinterpret_cast< wxRect
* >(argp2
);
9019 if (arg1
) (arg1
)->rect
= *arg2
;
9021 resultobj
= SWIG_Py_Void();
9028 SWIGINTERN PyObject
*_wrap_DockInfo_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9029 PyObject
*resultobj
= 0;
9030 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9031 wxRect
*result
= 0 ;
9034 PyObject
*swig_obj
[1] ;
9036 if (!args
) SWIG_fail
;
9038 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9039 if (!SWIG_IsOK(res1
)) {
9040 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_rect_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9042 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9043 result
= (wxRect
*)& ((arg1
)->rect
);
9044 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
9051 SWIGINTERN PyObject
*_wrap_DockInfo_dock_direction_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9052 PyObject
*resultobj
= 0;
9053 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9059 PyObject
*swig_obj
[2] ;
9061 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_dock_direction_set",2,2,swig_obj
)) SWIG_fail
;
9062 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9063 if (!SWIG_IsOK(res1
)) {
9064 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_direction_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9066 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9067 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9068 if (!SWIG_IsOK(ecode2
)) {
9069 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_dock_direction_set" "', expected argument " "2"" of type '" "int""'");
9071 arg2
= static_cast< int >(val2
);
9072 if (arg1
) (arg1
)->dock_direction
= arg2
;
9074 resultobj
= SWIG_Py_Void();
9081 SWIGINTERN PyObject
*_wrap_DockInfo_dock_direction_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9082 PyObject
*resultobj
= 0;
9083 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9087 PyObject
*swig_obj
[1] ;
9089 if (!args
) SWIG_fail
;
9091 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9092 if (!SWIG_IsOK(res1
)) {
9093 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_direction_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9095 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9096 result
= (int) ((arg1
)->dock_direction
);
9097 resultobj
= SWIG_From_int(static_cast< int >(result
));
9104 SWIGINTERN PyObject
*_wrap_DockInfo_dock_layer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9105 PyObject
*resultobj
= 0;
9106 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9112 PyObject
*swig_obj
[2] ;
9114 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_dock_layer_set",2,2,swig_obj
)) SWIG_fail
;
9115 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9116 if (!SWIG_IsOK(res1
)) {
9117 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_layer_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9119 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9120 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9121 if (!SWIG_IsOK(ecode2
)) {
9122 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_dock_layer_set" "', expected argument " "2"" of type '" "int""'");
9124 arg2
= static_cast< int >(val2
);
9125 if (arg1
) (arg1
)->dock_layer
= arg2
;
9127 resultobj
= SWIG_Py_Void();
9134 SWIGINTERN PyObject
*_wrap_DockInfo_dock_layer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9135 PyObject
*resultobj
= 0;
9136 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9140 PyObject
*swig_obj
[1] ;
9142 if (!args
) SWIG_fail
;
9144 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9145 if (!SWIG_IsOK(res1
)) {
9146 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_layer_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9148 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9149 result
= (int) ((arg1
)->dock_layer
);
9150 resultobj
= SWIG_From_int(static_cast< int >(result
));
9157 SWIGINTERN PyObject
*_wrap_DockInfo_dock_row_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9158 PyObject
*resultobj
= 0;
9159 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9165 PyObject
*swig_obj
[2] ;
9167 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_dock_row_set",2,2,swig_obj
)) SWIG_fail
;
9168 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9169 if (!SWIG_IsOK(res1
)) {
9170 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_row_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9172 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9173 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9174 if (!SWIG_IsOK(ecode2
)) {
9175 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_dock_row_set" "', expected argument " "2"" of type '" "int""'");
9177 arg2
= static_cast< int >(val2
);
9178 if (arg1
) (arg1
)->dock_row
= arg2
;
9180 resultobj
= SWIG_Py_Void();
9187 SWIGINTERN PyObject
*_wrap_DockInfo_dock_row_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9188 PyObject
*resultobj
= 0;
9189 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9193 PyObject
*swig_obj
[1] ;
9195 if (!args
) SWIG_fail
;
9197 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9198 if (!SWIG_IsOK(res1
)) {
9199 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_dock_row_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9201 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9202 result
= (int) ((arg1
)->dock_row
);
9203 resultobj
= SWIG_From_int(static_cast< int >(result
));
9210 SWIGINTERN PyObject
*_wrap_DockInfo_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9211 PyObject
*resultobj
= 0;
9212 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9218 PyObject
*swig_obj
[2] ;
9220 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_size_set",2,2,swig_obj
)) SWIG_fail
;
9221 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9222 if (!SWIG_IsOK(res1
)) {
9223 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_size_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9225 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9226 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9227 if (!SWIG_IsOK(ecode2
)) {
9228 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_size_set" "', expected argument " "2"" of type '" "int""'");
9230 arg2
= static_cast< int >(val2
);
9231 if (arg1
) (arg1
)->size
= arg2
;
9233 resultobj
= SWIG_Py_Void();
9240 SWIGINTERN PyObject
*_wrap_DockInfo_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9241 PyObject
*resultobj
= 0;
9242 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9246 PyObject
*swig_obj
[1] ;
9248 if (!args
) SWIG_fail
;
9250 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9251 if (!SWIG_IsOK(res1
)) {
9252 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_size_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9254 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9255 result
= (int) ((arg1
)->size
);
9256 resultobj
= SWIG_From_int(static_cast< int >(result
));
9263 SWIGINTERN PyObject
*_wrap_DockInfo_min_size_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9264 PyObject
*resultobj
= 0;
9265 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9271 PyObject
*swig_obj
[2] ;
9273 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_min_size_set",2,2,swig_obj
)) SWIG_fail
;
9274 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9275 if (!SWIG_IsOK(res1
)) {
9276 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_min_size_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9278 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9279 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9280 if (!SWIG_IsOK(ecode2
)) {
9281 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_min_size_set" "', expected argument " "2"" of type '" "int""'");
9283 arg2
= static_cast< int >(val2
);
9284 if (arg1
) (arg1
)->min_size
= arg2
;
9286 resultobj
= SWIG_Py_Void();
9293 SWIGINTERN PyObject
*_wrap_DockInfo_min_size_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9294 PyObject
*resultobj
= 0;
9295 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9299 PyObject
*swig_obj
[1] ;
9301 if (!args
) SWIG_fail
;
9303 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9304 if (!SWIG_IsOK(res1
)) {
9305 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_min_size_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9307 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9308 result
= (int) ((arg1
)->min_size
);
9309 resultobj
= SWIG_From_int(static_cast< int >(result
));
9316 SWIGINTERN PyObject
*_wrap_DockInfo_resizable_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9317 PyObject
*resultobj
= 0;
9318 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9324 PyObject
*swig_obj
[2] ;
9326 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_resizable_set",2,2,swig_obj
)) SWIG_fail
;
9327 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9328 if (!SWIG_IsOK(res1
)) {
9329 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_resizable_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9331 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9332 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9333 if (!SWIG_IsOK(ecode2
)) {
9334 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_resizable_set" "', expected argument " "2"" of type '" "bool""'");
9336 arg2
= static_cast< bool >(val2
);
9337 if (arg1
) (arg1
)->resizable
= arg2
;
9339 resultobj
= SWIG_Py_Void();
9346 SWIGINTERN PyObject
*_wrap_DockInfo_resizable_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9347 PyObject
*resultobj
= 0;
9348 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9352 PyObject
*swig_obj
[1] ;
9354 if (!args
) SWIG_fail
;
9356 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9357 if (!SWIG_IsOK(res1
)) {
9358 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_resizable_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9360 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9361 result
= (bool) ((arg1
)->resizable
);
9363 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9371 SWIGINTERN PyObject
*_wrap_DockInfo_toolbar_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9372 PyObject
*resultobj
= 0;
9373 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9379 PyObject
*swig_obj
[2] ;
9381 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_toolbar_set",2,2,swig_obj
)) SWIG_fail
;
9382 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9383 if (!SWIG_IsOK(res1
)) {
9384 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_toolbar_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9386 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9387 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9388 if (!SWIG_IsOK(ecode2
)) {
9389 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_toolbar_set" "', expected argument " "2"" of type '" "bool""'");
9391 arg2
= static_cast< bool >(val2
);
9392 if (arg1
) (arg1
)->toolbar
= arg2
;
9394 resultobj
= SWIG_Py_Void();
9401 SWIGINTERN PyObject
*_wrap_DockInfo_toolbar_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9402 PyObject
*resultobj
= 0;
9403 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9407 PyObject
*swig_obj
[1] ;
9409 if (!args
) SWIG_fail
;
9411 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9412 if (!SWIG_IsOK(res1
)) {
9413 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_toolbar_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9415 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9416 result
= (bool) ((arg1
)->toolbar
);
9418 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9426 SWIGINTERN PyObject
*_wrap_DockInfo_fixed_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9427 PyObject
*resultobj
= 0;
9428 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9434 PyObject
*swig_obj
[2] ;
9436 if (!SWIG_Python_UnpackTuple(args
,"DockInfo_fixed_set",2,2,swig_obj
)) SWIG_fail
;
9437 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9438 if (!SWIG_IsOK(res1
)) {
9439 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_fixed_set" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9441 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9442 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
9443 if (!SWIG_IsOK(ecode2
)) {
9444 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockInfo_fixed_set" "', expected argument " "2"" of type '" "bool""'");
9446 arg2
= static_cast< bool >(val2
);
9447 if (arg1
) (arg1
)->fixed
= arg2
;
9449 resultobj
= SWIG_Py_Void();
9456 SWIGINTERN PyObject
*_wrap_DockInfo_fixed_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9457 PyObject
*resultobj
= 0;
9458 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9462 PyObject
*swig_obj
[1] ;
9464 if (!args
) SWIG_fail
;
9466 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9467 if (!SWIG_IsOK(res1
)) {
9468 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockInfo_fixed_get" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9470 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9471 result
= (bool) ((arg1
)->fixed
);
9473 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9481 SWIGINTERN PyObject
*_wrap_delete_DockInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9482 PyObject
*resultobj
= 0;
9483 wxDockInfo
*arg1
= (wxDockInfo
*) 0 ;
9486 PyObject
*swig_obj
[1] ;
9488 if (!args
) SWIG_fail
;
9490 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockInfo
, SWIG_POINTER_DISOWN
| 0 );
9491 if (!SWIG_IsOK(res1
)) {
9492 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DockInfo" "', expected argument " "1"" of type '" "wxDockInfo *""'");
9494 arg1
= reinterpret_cast< wxDockInfo
* >(argp1
);
9496 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9497 delete_wxDockInfo(arg1
);
9499 wxPyEndAllowThreads(__tstate
);
9500 if (PyErr_Occurred()) SWIG_fail
;
9502 resultobj
= SWIG_Py_Void();
9509 SWIGINTERN PyObject
*DockInfo_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9511 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9512 SWIG_TypeNewClientData(SWIGTYPE_p_wxDockInfo
, SWIG_NewClientData(obj
));
9513 return SWIG_Py_Void();
9516 SWIGINTERN PyObject
*DockInfo_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9517 return SWIG_Python_InitShadowInstance(args
);
9520 SWIGINTERN PyObject
*_wrap_DockUIPart_type_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9521 PyObject
*resultobj
= 0;
9522 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9528 PyObject
*swig_obj
[2] ;
9530 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_type_set",2,2,swig_obj
)) SWIG_fail
;
9531 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9532 if (!SWIG_IsOK(res1
)) {
9533 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_type_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9535 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9536 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9537 if (!SWIG_IsOK(ecode2
)) {
9538 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockUIPart_type_set" "', expected argument " "2"" of type '" "int""'");
9540 arg2
= static_cast< int >(val2
);
9541 if (arg1
) (arg1
)->type
= arg2
;
9543 resultobj
= SWIG_Py_Void();
9550 SWIGINTERN PyObject
*_wrap_DockUIPart_type_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9551 PyObject
*resultobj
= 0;
9552 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9556 PyObject
*swig_obj
[1] ;
9558 if (!args
) SWIG_fail
;
9560 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9561 if (!SWIG_IsOK(res1
)) {
9562 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_type_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9564 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9565 result
= (int) ((arg1
)->type
);
9566 resultobj
= SWIG_From_int(static_cast< int >(result
));
9573 SWIGINTERN PyObject
*_wrap_DockUIPart_orientation_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9574 PyObject
*resultobj
= 0;
9575 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9581 PyObject
*swig_obj
[2] ;
9583 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_orientation_set",2,2,swig_obj
)) SWIG_fail
;
9584 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9585 if (!SWIG_IsOK(res1
)) {
9586 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_orientation_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9588 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9589 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9590 if (!SWIG_IsOK(ecode2
)) {
9591 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockUIPart_orientation_set" "', expected argument " "2"" of type '" "int""'");
9593 arg2
= static_cast< int >(val2
);
9594 if (arg1
) (arg1
)->orientation
= arg2
;
9596 resultobj
= SWIG_Py_Void();
9603 SWIGINTERN PyObject
*_wrap_DockUIPart_orientation_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9604 PyObject
*resultobj
= 0;
9605 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9609 PyObject
*swig_obj
[1] ;
9611 if (!args
) SWIG_fail
;
9613 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9614 if (!SWIG_IsOK(res1
)) {
9615 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_orientation_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9617 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9618 result
= (int) ((arg1
)->orientation
);
9619 resultobj
= SWIG_From_int(static_cast< int >(result
));
9626 SWIGINTERN PyObject
*_wrap_DockUIPart_dock_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9627 PyObject
*resultobj
= 0;
9628 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9629 wxDockInfo
*arg2
= (wxDockInfo
*) 0 ;
9634 PyObject
*swig_obj
[2] ;
9636 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_dock_set",2,2,swig_obj
)) SWIG_fail
;
9637 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9638 if (!SWIG_IsOK(res1
)) {
9639 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_dock_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9641 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9642 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxDockInfo
, SWIG_POINTER_DISOWN
| 0 );
9643 if (!SWIG_IsOK(res2
)) {
9644 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_dock_set" "', expected argument " "2"" of type '" "wxDockInfo *""'");
9646 arg2
= reinterpret_cast< wxDockInfo
* >(argp2
);
9647 if (arg1
) (arg1
)->dock
= arg2
;
9649 resultobj
= SWIG_Py_Void();
9656 SWIGINTERN PyObject
*_wrap_DockUIPart_dock_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9657 PyObject
*resultobj
= 0;
9658 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9659 wxDockInfo
*result
= 0 ;
9662 PyObject
*swig_obj
[1] ;
9664 if (!args
) SWIG_fail
;
9666 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9667 if (!SWIG_IsOK(res1
)) {
9668 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_dock_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9670 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9671 result
= (wxDockInfo
*) ((arg1
)->dock
);
9672 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDockInfo
, 0 | 0 );
9679 SWIGINTERN PyObject
*_wrap_DockUIPart_pane_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9680 PyObject
*resultobj
= 0;
9681 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9682 wxPaneInfo
*arg2
= (wxPaneInfo
*) 0 ;
9687 PyObject
*swig_obj
[2] ;
9689 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_pane_set",2,2,swig_obj
)) SWIG_fail
;
9690 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9691 if (!SWIG_IsOK(res1
)) {
9692 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_pane_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9694 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9695 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPaneInfo
, SWIG_POINTER_DISOWN
| 0 );
9696 if (!SWIG_IsOK(res2
)) {
9697 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_pane_set" "', expected argument " "2"" of type '" "wxPaneInfo *""'");
9699 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
9700 if (arg1
) (arg1
)->pane
= arg2
;
9702 resultobj
= SWIG_Py_Void();
9709 SWIGINTERN PyObject
*_wrap_DockUIPart_pane_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9710 PyObject
*resultobj
= 0;
9711 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9712 wxPaneInfo
*result
= 0 ;
9715 PyObject
*swig_obj
[1] ;
9717 if (!args
) SWIG_fail
;
9719 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9720 if (!SWIG_IsOK(res1
)) {
9721 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_pane_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9723 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9724 result
= (wxPaneInfo
*) ((arg1
)->pane
);
9725 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneInfo
, 0 | 0 );
9732 SWIGINTERN PyObject
*_wrap_DockUIPart_button_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9733 PyObject
*resultobj
= 0;
9734 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9735 wxPaneButton
*arg2
= (wxPaneButton
*) 0 ;
9740 PyObject
*swig_obj
[2] ;
9742 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_button_set",2,2,swig_obj
)) SWIG_fail
;
9743 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9744 if (!SWIG_IsOK(res1
)) {
9745 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_button_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9747 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9748 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxPaneButton
, SWIG_POINTER_DISOWN
| 0 );
9749 if (!SWIG_IsOK(res2
)) {
9750 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_button_set" "', expected argument " "2"" of type '" "wxPaneButton *""'");
9752 arg2
= reinterpret_cast< wxPaneButton
* >(argp2
);
9753 if (arg1
) (arg1
)->button
= arg2
;
9755 resultobj
= SWIG_Py_Void();
9762 SWIGINTERN PyObject
*_wrap_DockUIPart_button_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9763 PyObject
*resultobj
= 0;
9764 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9765 wxPaneButton
*result
= 0 ;
9768 PyObject
*swig_obj
[1] ;
9770 if (!args
) SWIG_fail
;
9772 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9773 if (!SWIG_IsOK(res1
)) {
9774 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_button_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9776 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9777 result
= (wxPaneButton
*) ((arg1
)->button
);
9778 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPaneButton
, 0 | 0 );
9785 SWIGINTERN PyObject
*_wrap_DockUIPart_cont_sizer_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9786 PyObject
*resultobj
= 0;
9787 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9788 wxSizer
*arg2
= (wxSizer
*) 0 ;
9793 PyObject
*swig_obj
[2] ;
9795 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_cont_sizer_set",2,2,swig_obj
)) SWIG_fail
;
9796 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9797 if (!SWIG_IsOK(res1
)) {
9798 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_cont_sizer_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9800 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9801 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizer
, SWIG_POINTER_DISOWN
| 0 );
9802 if (!SWIG_IsOK(res2
)) {
9803 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_cont_sizer_set" "', expected argument " "2"" of type '" "wxSizer *""'");
9805 arg2
= reinterpret_cast< wxSizer
* >(argp2
);
9806 if (arg1
) (arg1
)->cont_sizer
= arg2
;
9808 resultobj
= SWIG_Py_Void();
9815 SWIGINTERN PyObject
*_wrap_DockUIPart_cont_sizer_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9816 PyObject
*resultobj
= 0;
9817 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9818 wxSizer
*result
= 0 ;
9821 PyObject
*swig_obj
[1] ;
9823 if (!args
) SWIG_fail
;
9825 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9826 if (!SWIG_IsOK(res1
)) {
9827 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_cont_sizer_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9829 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9830 result
= (wxSizer
*) ((arg1
)->cont_sizer
);
9832 resultobj
= wxPyMake_wxObject(result
, (bool)0);
9840 SWIGINTERN PyObject
*_wrap_DockUIPart_sizer_item_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9841 PyObject
*resultobj
= 0;
9842 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9843 wxSizerItem
*arg2
= (wxSizerItem
*) 0 ;
9848 PyObject
*swig_obj
[2] ;
9850 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_sizer_item_set",2,2,swig_obj
)) SWIG_fail
;
9851 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9852 if (!SWIG_IsOK(res1
)) {
9853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_sizer_item_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9855 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9856 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxSizerItem
, SWIG_POINTER_DISOWN
| 0 );
9857 if (!SWIG_IsOK(res2
)) {
9858 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_sizer_item_set" "', expected argument " "2"" of type '" "wxSizerItem *""'");
9860 arg2
= reinterpret_cast< wxSizerItem
* >(argp2
);
9861 if (arg1
) (arg1
)->sizer_item
= arg2
;
9863 resultobj
= SWIG_Py_Void();
9870 SWIGINTERN PyObject
*_wrap_DockUIPart_sizer_item_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9871 PyObject
*resultobj
= 0;
9872 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9873 wxSizerItem
*result
= 0 ;
9876 PyObject
*swig_obj
[1] ;
9878 if (!args
) SWIG_fail
;
9880 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9881 if (!SWIG_IsOK(res1
)) {
9882 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_sizer_item_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9884 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9885 result
= (wxSizerItem
*) ((arg1
)->sizer_item
);
9886 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSizerItem
, 0 | 0 );
9893 SWIGINTERN PyObject
*_wrap_DockUIPart_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9894 PyObject
*resultobj
= 0;
9895 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9896 wxRect
*arg2
= (wxRect
*) 0 ;
9901 PyObject
*swig_obj
[2] ;
9903 if (!SWIG_Python_UnpackTuple(args
,"DockUIPart_rect_set",2,2,swig_obj
)) SWIG_fail
;
9904 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9905 if (!SWIG_IsOK(res1
)) {
9906 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_rect_set" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9908 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9909 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
9910 if (!SWIG_IsOK(res2
)) {
9911 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockUIPart_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
9913 arg2
= reinterpret_cast< wxRect
* >(argp2
);
9914 if (arg1
) (arg1
)->rect
= *arg2
;
9916 resultobj
= SWIG_Py_Void();
9923 SWIGINTERN PyObject
*_wrap_DockUIPart_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9924 PyObject
*resultobj
= 0;
9925 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9926 wxRect
*result
= 0 ;
9929 PyObject
*swig_obj
[1] ;
9931 if (!args
) SWIG_fail
;
9933 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, 0 | 0 );
9934 if (!SWIG_IsOK(res1
)) {
9935 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockUIPart_rect_get" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9937 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9938 result
= (wxRect
*)& ((arg1
)->rect
);
9939 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
9946 SWIGINTERN PyObject
*_wrap_delete_DockUIPart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9947 PyObject
*resultobj
= 0;
9948 wxDockUIPart
*arg1
= (wxDockUIPart
*) 0 ;
9951 PyObject
*swig_obj
[1] ;
9953 if (!args
) SWIG_fail
;
9955 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockUIPart
, SWIG_POINTER_DISOWN
| 0 );
9956 if (!SWIG_IsOK(res1
)) {
9957 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DockUIPart" "', expected argument " "1"" of type '" "wxDockUIPart *""'");
9959 arg1
= reinterpret_cast< wxDockUIPart
* >(argp1
);
9961 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9962 delete_wxDockUIPart(arg1
);
9964 wxPyEndAllowThreads(__tstate
);
9965 if (PyErr_Occurred()) SWIG_fail
;
9967 resultobj
= SWIG_Py_Void();
9974 SWIGINTERN PyObject
*DockUIPart_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9976 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9977 SWIG_TypeNewClientData(SWIGTYPE_p_wxDockUIPart
, SWIG_NewClientData(obj
));
9978 return SWIG_Py_Void();
9981 SWIGINTERN PyObject
*_wrap_PaneButton_button_id_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9982 PyObject
*resultobj
= 0;
9983 wxPaneButton
*arg1
= (wxPaneButton
*) 0 ;
9989 PyObject
*swig_obj
[2] ;
9991 if (!SWIG_Python_UnpackTuple(args
,"PaneButton_button_id_set",2,2,swig_obj
)) SWIG_fail
;
9992 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneButton
, 0 | 0 );
9993 if (!SWIG_IsOK(res1
)) {
9994 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneButton_button_id_set" "', expected argument " "1"" of type '" "wxPaneButton *""'");
9996 arg1
= reinterpret_cast< wxPaneButton
* >(argp1
);
9997 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
9998 if (!SWIG_IsOK(ecode2
)) {
9999 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PaneButton_button_id_set" "', expected argument " "2"" of type '" "int""'");
10001 arg2
= static_cast< int >(val2
);
10002 if (arg1
) (arg1
)->button_id
= arg2
;
10004 resultobj
= SWIG_Py_Void();
10011 SWIGINTERN PyObject
*_wrap_PaneButton_button_id_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10012 PyObject
*resultobj
= 0;
10013 wxPaneButton
*arg1
= (wxPaneButton
*) 0 ;
10017 PyObject
*swig_obj
[1] ;
10019 if (!args
) SWIG_fail
;
10020 swig_obj
[0] = args
;
10021 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneButton
, 0 | 0 );
10022 if (!SWIG_IsOK(res1
)) {
10023 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PaneButton_button_id_get" "', expected argument " "1"" of type '" "wxPaneButton *""'");
10025 arg1
= reinterpret_cast< wxPaneButton
* >(argp1
);
10026 result
= (int) ((arg1
)->button_id
);
10027 resultobj
= SWIG_From_int(static_cast< int >(result
));
10034 SWIGINTERN PyObject
*_wrap_delete_PaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10035 PyObject
*resultobj
= 0;
10036 wxPaneButton
*arg1
= (wxPaneButton
*) 0 ;
10039 PyObject
*swig_obj
[1] ;
10041 if (!args
) SWIG_fail
;
10042 swig_obj
[0] = args
;
10043 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPaneButton
, SWIG_POINTER_DISOWN
| 0 );
10044 if (!SWIG_IsOK(res1
)) {
10045 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_PaneButton" "', expected argument " "1"" of type '" "wxPaneButton *""'");
10047 arg1
= reinterpret_cast< wxPaneButton
* >(argp1
);
10049 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10050 delete_wxPaneButton(arg1
);
10052 wxPyEndAllowThreads(__tstate
);
10053 if (PyErr_Occurred()) SWIG_fail
;
10055 resultobj
= SWIG_Py_Void();
10062 SWIGINTERN PyObject
*PaneButton_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10064 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10065 SWIG_TypeNewClientData(SWIGTYPE_p_wxPaneButton
, SWIG_NewClientData(obj
));
10066 return SWIG_Py_Void();
10069 SWIGINTERN PyObject
*_wrap_delete_DockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10070 PyObject
*resultobj
= 0;
10071 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10074 PyObject
*swig_obj
[1] ;
10076 if (!args
) SWIG_fail
;
10077 swig_obj
[0] = args
;
10078 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDockArt
, SWIG_POINTER_DISOWN
| 0 );
10079 if (!SWIG_IsOK(res1
)) {
10080 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DockArt" "', expected argument " "1"" of type '" "wxDockArt *""'");
10082 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10084 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10087 wxPyEndAllowThreads(__tstate
);
10088 if (PyErr_Occurred()) SWIG_fail
;
10090 resultobj
= SWIG_Py_Void();
10097 SWIGINTERN PyObject
*_wrap_DockArt_GetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10098 PyObject
*resultobj
= 0;
10099 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10106 PyObject
* obj0
= 0 ;
10107 PyObject
* obj1
= 0 ;
10108 char * kwnames
[] = {
10109 (char *) "self",(char *) "id", NULL
10112 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetMetric",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10113 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10114 if (!SWIG_IsOK(res1
)) {
10115 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetMetric" "', expected argument " "1"" of type '" "wxDockArt *""'");
10117 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10118 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10119 if (!SWIG_IsOK(ecode2
)) {
10120 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetMetric" "', expected argument " "2"" of type '" "int""'");
10122 arg2
= static_cast< int >(val2
);
10124 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10125 result
= (int)(arg1
)->GetMetric(arg2
);
10126 wxPyEndAllowThreads(__tstate
);
10127 if (PyErr_Occurred()) SWIG_fail
;
10129 resultobj
= SWIG_From_int(static_cast< int >(result
));
10136 SWIGINTERN PyObject
*_wrap_DockArt_SetMetric(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10137 PyObject
*resultobj
= 0;
10138 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10147 PyObject
* obj0
= 0 ;
10148 PyObject
* obj1
= 0 ;
10149 PyObject
* obj2
= 0 ;
10150 char * kwnames
[] = {
10151 (char *) "self",(char *) "id",(char *) "new_val", NULL
10154 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetMetric",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10155 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10156 if (!SWIG_IsOK(res1
)) {
10157 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetMetric" "', expected argument " "1"" of type '" "wxDockArt *""'");
10159 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10160 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10161 if (!SWIG_IsOK(ecode2
)) {
10162 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetMetric" "', expected argument " "2"" of type '" "int""'");
10164 arg2
= static_cast< int >(val2
);
10165 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10166 if (!SWIG_IsOK(ecode3
)) {
10167 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "DockArt_SetMetric" "', expected argument " "3"" of type '" "int""'");
10169 arg3
= static_cast< int >(val3
);
10171 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10172 (arg1
)->SetMetric(arg2
,arg3
);
10173 wxPyEndAllowThreads(__tstate
);
10174 if (PyErr_Occurred()) SWIG_fail
;
10176 resultobj
= SWIG_Py_Void();
10183 SWIGINTERN PyObject
*_wrap_DockArt_SetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10184 PyObject
*resultobj
= 0;
10185 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10194 PyObject
* obj0
= 0 ;
10195 PyObject
* obj1
= 0 ;
10196 PyObject
* obj2
= 0 ;
10197 char * kwnames
[] = {
10198 (char *) "self",(char *) "id",(char *) "font", NULL
10201 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetFont",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10202 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10203 if (!SWIG_IsOK(res1
)) {
10204 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetFont" "', expected argument " "1"" of type '" "wxDockArt *""'");
10206 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10207 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10208 if (!SWIG_IsOK(ecode2
)) {
10209 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetFont" "', expected argument " "2"" of type '" "int""'");
10211 arg2
= static_cast< int >(val2
);
10212 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxFont
, 0 | 0);
10213 if (!SWIG_IsOK(res3
)) {
10214 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
10217 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_SetFont" "', expected argument " "3"" of type '" "wxFont const &""'");
10219 arg3
= reinterpret_cast< wxFont
* >(argp3
);
10221 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10222 (arg1
)->SetFont(arg2
,(wxFont
const &)*arg3
);
10223 wxPyEndAllowThreads(__tstate
);
10224 if (PyErr_Occurred()) SWIG_fail
;
10226 resultobj
= SWIG_Py_Void();
10233 SWIGINTERN PyObject
*_wrap_DockArt_GetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10234 PyObject
*resultobj
= 0;
10235 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10242 PyObject
* obj0
= 0 ;
10243 PyObject
* obj1
= 0 ;
10244 char * kwnames
[] = {
10245 (char *) "self",(char *) "id", NULL
10248 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10249 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10250 if (!SWIG_IsOK(res1
)) {
10251 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetFont" "', expected argument " "1"" of type '" "wxDockArt *""'");
10253 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10254 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10255 if (!SWIG_IsOK(ecode2
)) {
10256 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetFont" "', expected argument " "2"" of type '" "int""'");
10258 arg2
= static_cast< int >(val2
);
10260 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10261 result
= (arg1
)->GetFont(arg2
);
10262 wxPyEndAllowThreads(__tstate
);
10263 if (PyErr_Occurred()) SWIG_fail
;
10265 resultobj
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
10272 SWIGINTERN PyObject
*_wrap_DockArt_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10273 PyObject
*resultobj
= 0;
10274 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10281 PyObject
* obj0
= 0 ;
10282 PyObject
* obj1
= 0 ;
10283 char * kwnames
[] = {
10284 (char *) "self",(char *) "id", NULL
10287 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10288 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10289 if (!SWIG_IsOK(res1
)) {
10290 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetColour" "', expected argument " "1"" of type '" "wxDockArt *""'");
10292 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10293 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10294 if (!SWIG_IsOK(ecode2
)) {
10295 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetColour" "', expected argument " "2"" of type '" "int""'");
10297 arg2
= static_cast< int >(val2
);
10299 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10300 result
= (arg1
)->GetColour(arg2
);
10301 wxPyEndAllowThreads(__tstate
);
10302 if (PyErr_Occurred()) SWIG_fail
;
10304 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
10311 SWIGINTERN PyObject
*_wrap_DockArt_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10312 PyObject
*resultobj
= 0;
10313 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10315 wxColor
*arg3
= 0 ;
10322 PyObject
* obj0
= 0 ;
10323 PyObject
* obj1
= 0 ;
10324 PyObject
* obj2
= 0 ;
10325 char * kwnames
[] = {
10326 (char *) "self",(char *) "id",(char *) "colour", NULL
10329 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10330 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10331 if (!SWIG_IsOK(res1
)) {
10332 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetColour" "', expected argument " "1"" of type '" "wxDockArt *""'");
10334 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10335 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10336 if (!SWIG_IsOK(ecode2
)) {
10337 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetColour" "', expected argument " "2"" of type '" "int""'");
10339 arg2
= static_cast< int >(val2
);
10340 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxColor
, 0 | 0);
10341 if (!SWIG_IsOK(res3
)) {
10342 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_SetColour" "', expected argument " "3"" of type '" "wxColor const &""'");
10345 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_SetColour" "', expected argument " "3"" of type '" "wxColor const &""'");
10347 arg3
= reinterpret_cast< wxColor
* >(argp3
);
10349 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10350 (arg1
)->SetColour(arg2
,(wxColor
const &)*arg3
);
10351 wxPyEndAllowThreads(__tstate
);
10352 if (PyErr_Occurred()) SWIG_fail
;
10354 resultobj
= SWIG_Py_Void();
10361 SWIGINTERN PyObject
*_wrap_DockArt_GetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10362 PyObject
*resultobj
= 0;
10363 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10370 PyObject
* obj0
= 0 ;
10371 PyObject
* obj1
= 0 ;
10372 char * kwnames
[] = {
10373 (char *) "self",(char *) "id", NULL
10376 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DockArt_GetColor",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10377 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10378 if (!SWIG_IsOK(res1
)) {
10379 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_GetColor" "', expected argument " "1"" of type '" "wxDockArt *""'");
10381 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10382 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10383 if (!SWIG_IsOK(ecode2
)) {
10384 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_GetColor" "', expected argument " "2"" of type '" "int""'");
10386 arg2
= static_cast< int >(val2
);
10388 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10389 result
= (arg1
)->GetColor(arg2
);
10390 wxPyEndAllowThreads(__tstate
);
10391 if (PyErr_Occurred()) SWIG_fail
;
10393 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
10400 SWIGINTERN PyObject
*_wrap_DockArt_SetColor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10401 PyObject
*resultobj
= 0;
10402 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10404 wxColour
*arg3
= 0 ;
10410 PyObject
* obj0
= 0 ;
10411 PyObject
* obj1
= 0 ;
10412 PyObject
* obj2
= 0 ;
10413 char * kwnames
[] = {
10414 (char *) "self",(char *) "id",(char *) "color", NULL
10417 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:DockArt_SetColor",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10418 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10419 if (!SWIG_IsOK(res1
)) {
10420 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_SetColor" "', expected argument " "1"" of type '" "wxDockArt *""'");
10422 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10423 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10424 if (!SWIG_IsOK(ecode2
)) {
10425 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "DockArt_SetColor" "', expected argument " "2"" of type '" "int""'");
10427 arg2
= static_cast< int >(val2
);
10430 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
10433 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10434 (arg1
)->SetColor(arg2
,(wxColour
const &)*arg3
);
10435 wxPyEndAllowThreads(__tstate
);
10436 if (PyErr_Occurred()) SWIG_fail
;
10438 resultobj
= SWIG_Py_Void();
10445 SWIGINTERN PyObject
*_wrap_DockArt_DrawSash(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10446 PyObject
*resultobj
= 0;
10447 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10449 wxWindow
*arg3
= (wxWindow
*) 0 ;
10461 PyObject
* obj0
= 0 ;
10462 PyObject
* obj1
= 0 ;
10463 PyObject
* obj2
= 0 ;
10464 PyObject
* obj3
= 0 ;
10465 PyObject
* obj4
= 0 ;
10466 char * kwnames
[] = {
10467 (char *) "self",(char *) "dc",(char *) "window",(char *) "orientation",(char *) "rect", NULL
10470 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DockArt_DrawSash",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10471 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10472 if (!SWIG_IsOK(res1
)) {
10473 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawSash" "', expected argument " "1"" of type '" "wxDockArt *""'");
10475 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10476 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10477 if (!SWIG_IsOK(res2
)) {
10478 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
10481 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawSash" "', expected argument " "2"" of type '" "wxDC &""'");
10483 arg2
= reinterpret_cast< wxDC
* >(argp2
);
10484 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10485 if (!SWIG_IsOK(res3
)) {
10486 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_DrawSash" "', expected argument " "3"" of type '" "wxWindow *""'");
10488 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
10489 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10490 if (!SWIG_IsOK(ecode4
)) {
10491 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DockArt_DrawSash" "', expected argument " "4"" of type '" "int""'");
10493 arg4
= static_cast< int >(val4
);
10496 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
10499 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10500 (arg1
)->DrawSash(*arg2
,arg3
,arg4
,(wxRect
const &)*arg5
);
10501 wxPyEndAllowThreads(__tstate
);
10502 if (PyErr_Occurred()) SWIG_fail
;
10504 resultobj
= SWIG_Py_Void();
10511 SWIGINTERN PyObject
*_wrap_DockArt_DrawBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10512 PyObject
*resultobj
= 0;
10513 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10515 wxWindow
*arg3
= (wxWindow
*) 0 ;
10527 PyObject
* obj0
= 0 ;
10528 PyObject
* obj1
= 0 ;
10529 PyObject
* obj2
= 0 ;
10530 PyObject
* obj3
= 0 ;
10531 PyObject
* obj4
= 0 ;
10532 char * kwnames
[] = {
10533 (char *) "self",(char *) "dc",(char *) "window",(char *) "orientation",(char *) "rect", NULL
10536 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DockArt_DrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10537 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10538 if (!SWIG_IsOK(res1
)) {
10539 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawBackground" "', expected argument " "1"" of type '" "wxDockArt *""'");
10541 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10542 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10543 if (!SWIG_IsOK(res2
)) {
10544 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
10547 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
10549 arg2
= reinterpret_cast< wxDC
* >(argp2
);
10550 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10551 if (!SWIG_IsOK(res3
)) {
10552 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_DrawBackground" "', expected argument " "3"" of type '" "wxWindow *""'");
10554 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
10555 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10556 if (!SWIG_IsOK(ecode4
)) {
10557 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DockArt_DrawBackground" "', expected argument " "4"" of type '" "int""'");
10559 arg4
= static_cast< int >(val4
);
10562 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
10565 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10566 (arg1
)->DrawBackground(*arg2
,arg3
,arg4
,(wxRect
const &)*arg5
);
10567 wxPyEndAllowThreads(__tstate
);
10568 if (PyErr_Occurred()) SWIG_fail
;
10570 resultobj
= SWIG_Py_Void();
10577 SWIGINTERN PyObject
*_wrap_DockArt_DrawCaption(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10578 PyObject
*resultobj
= 0;
10579 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10581 wxWindow
*arg3
= (wxWindow
*) 0 ;
10582 wxString
*arg4
= 0 ;
10584 wxPaneInfo
*arg6
= 0 ;
10591 bool temp4
= false ;
10595 PyObject
* obj0
= 0 ;
10596 PyObject
* obj1
= 0 ;
10597 PyObject
* obj2
= 0 ;
10598 PyObject
* obj3
= 0 ;
10599 PyObject
* obj4
= 0 ;
10600 PyObject
* obj5
= 0 ;
10601 char * kwnames
[] = {
10602 (char *) "self",(char *) "dc",(char *) "window",(char *) "text",(char *) "rect",(char *) "pane", NULL
10605 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOO:DockArt_DrawCaption",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
10606 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10607 if (!SWIG_IsOK(res1
)) {
10608 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawCaption" "', expected argument " "1"" of type '" "wxDockArt *""'");
10610 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10611 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10612 if (!SWIG_IsOK(res2
)) {
10613 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
10616 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawCaption" "', expected argument " "2"" of type '" "wxDC &""'");
10618 arg2
= reinterpret_cast< wxDC
* >(argp2
);
10619 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10620 if (!SWIG_IsOK(res3
)) {
10621 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_DrawCaption" "', expected argument " "3"" of type '" "wxWindow *""'");
10623 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
10625 arg4
= wxString_in_helper(obj3
);
10626 if (arg4
== NULL
) SWIG_fail
;
10631 if ( ! wxRect_helper(obj4
, &arg5
)) SWIG_fail
;
10633 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxPaneInfo
, 0 );
10634 if (!SWIG_IsOK(res6
)) {
10635 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "DockArt_DrawCaption" "', expected argument " "6"" of type '" "wxPaneInfo &""'");
10638 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawCaption" "', expected argument " "6"" of type '" "wxPaneInfo &""'");
10640 arg6
= reinterpret_cast< wxPaneInfo
* >(argp6
);
10642 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10643 (arg1
)->DrawCaption(*arg2
,arg3
,(wxString
const &)*arg4
,(wxRect
const &)*arg5
,*arg6
);
10644 wxPyEndAllowThreads(__tstate
);
10645 if (PyErr_Occurred()) SWIG_fail
;
10647 resultobj
= SWIG_Py_Void();
10662 SWIGINTERN PyObject
*_wrap_DockArt_DrawGripper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10663 PyObject
*resultobj
= 0;
10664 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10666 wxWindow
*arg3
= (wxWindow
*) 0 ;
10668 wxPaneInfo
*arg5
= 0 ;
10678 PyObject
* obj0
= 0 ;
10679 PyObject
* obj1
= 0 ;
10680 PyObject
* obj2
= 0 ;
10681 PyObject
* obj3
= 0 ;
10682 PyObject
* obj4
= 0 ;
10683 char * kwnames
[] = {
10684 (char *) "self",(char *) "dc",(char *) "window",(char *) "rect",(char *) "pane", NULL
10687 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DockArt_DrawGripper",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10688 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10689 if (!SWIG_IsOK(res1
)) {
10690 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawGripper" "', expected argument " "1"" of type '" "wxDockArt *""'");
10692 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10693 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10694 if (!SWIG_IsOK(res2
)) {
10695 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
10698 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawGripper" "', expected argument " "2"" of type '" "wxDC &""'");
10700 arg2
= reinterpret_cast< wxDC
* >(argp2
);
10701 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10702 if (!SWIG_IsOK(res3
)) {
10703 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_DrawGripper" "', expected argument " "3"" of type '" "wxWindow *""'");
10705 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
10708 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
10710 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxPaneInfo
, 0 );
10711 if (!SWIG_IsOK(res5
)) {
10712 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "DockArt_DrawGripper" "', expected argument " "5"" of type '" "wxPaneInfo &""'");
10715 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawGripper" "', expected argument " "5"" of type '" "wxPaneInfo &""'");
10717 arg5
= reinterpret_cast< wxPaneInfo
* >(argp5
);
10719 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10720 (arg1
)->DrawGripper(*arg2
,arg3
,(wxRect
const &)*arg4
,*arg5
);
10721 wxPyEndAllowThreads(__tstate
);
10722 if (PyErr_Occurred()) SWIG_fail
;
10724 resultobj
= SWIG_Py_Void();
10731 SWIGINTERN PyObject
*_wrap_DockArt_DrawBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10732 PyObject
*resultobj
= 0;
10733 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10735 wxWindow
*arg3
= (wxWindow
*) 0 ;
10737 wxPaneInfo
*arg5
= 0 ;
10747 PyObject
* obj0
= 0 ;
10748 PyObject
* obj1
= 0 ;
10749 PyObject
* obj2
= 0 ;
10750 PyObject
* obj3
= 0 ;
10751 PyObject
* obj4
= 0 ;
10752 char * kwnames
[] = {
10753 (char *) "self",(char *) "dc",(char *) "window",(char *) "rect",(char *) "pane", NULL
10756 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:DockArt_DrawBorder",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10757 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10758 if (!SWIG_IsOK(res1
)) {
10759 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawBorder" "', expected argument " "1"" of type '" "wxDockArt *""'");
10761 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10762 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10763 if (!SWIG_IsOK(res2
)) {
10764 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
10767 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawBorder" "', expected argument " "2"" of type '" "wxDC &""'");
10769 arg2
= reinterpret_cast< wxDC
* >(argp2
);
10770 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10771 if (!SWIG_IsOK(res3
)) {
10772 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_DrawBorder" "', expected argument " "3"" of type '" "wxWindow *""'");
10774 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
10777 if ( ! wxRect_helper(obj3
, &arg4
)) SWIG_fail
;
10779 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxPaneInfo
, 0 );
10780 if (!SWIG_IsOK(res5
)) {
10781 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "DockArt_DrawBorder" "', expected argument " "5"" of type '" "wxPaneInfo &""'");
10784 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawBorder" "', expected argument " "5"" of type '" "wxPaneInfo &""'");
10786 arg5
= reinterpret_cast< wxPaneInfo
* >(argp5
);
10788 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10789 (arg1
)->DrawBorder(*arg2
,arg3
,(wxRect
const &)*arg4
,*arg5
);
10790 wxPyEndAllowThreads(__tstate
);
10791 if (PyErr_Occurred()) SWIG_fail
;
10793 resultobj
= SWIG_Py_Void();
10800 SWIGINTERN PyObject
*_wrap_DockArt_DrawPaneButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10801 PyObject
*resultobj
= 0;
10802 wxDockArt
*arg1
= (wxDockArt
*) 0 ;
10804 wxWindow
*arg3
= (wxWindow
*) 0 ;
10808 wxPaneInfo
*arg7
= 0 ;
10822 PyObject
* obj0
= 0 ;
10823 PyObject
* obj1
= 0 ;
10824 PyObject
* obj2
= 0 ;
10825 PyObject
* obj3
= 0 ;
10826 PyObject
* obj4
= 0 ;
10827 PyObject
* obj5
= 0 ;
10828 PyObject
* obj6
= 0 ;
10829 char * kwnames
[] = {
10830 (char *) "self",(char *) "dc",(char *) "window",(char *) "button",(char *) "button_state",(char *) "rect",(char *) "pane", NULL
10833 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:DockArt_DrawPaneButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
10834 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDockArt
, 0 | 0 );
10835 if (!SWIG_IsOK(res1
)) {
10836 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "1"" of type '" "wxDockArt *""'");
10838 arg1
= reinterpret_cast< wxDockArt
* >(argp1
);
10839 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
10840 if (!SWIG_IsOK(res2
)) {
10841 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
10844 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawPaneButton" "', expected argument " "2"" of type '" "wxDC &""'");
10846 arg2
= reinterpret_cast< wxDC
* >(argp2
);
10847 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10848 if (!SWIG_IsOK(res3
)) {
10849 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "3"" of type '" "wxWindow *""'");
10851 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
10852 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10853 if (!SWIG_IsOK(ecode4
)) {
10854 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "4"" of type '" "int""'");
10856 arg4
= static_cast< int >(val4
);
10857 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
10858 if (!SWIG_IsOK(ecode5
)) {
10859 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "5"" of type '" "int""'");
10861 arg5
= static_cast< int >(val5
);
10864 if ( ! wxRect_helper(obj5
, &arg6
)) SWIG_fail
;
10866 res7
= SWIG_ConvertPtr(obj6
, &argp7
, SWIGTYPE_p_wxPaneInfo
, 0 );
10867 if (!SWIG_IsOK(res7
)) {
10868 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "DockArt_DrawPaneButton" "', expected argument " "7"" of type '" "wxPaneInfo &""'");
10871 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "DockArt_DrawPaneButton" "', expected argument " "7"" of type '" "wxPaneInfo &""'");
10873 arg7
= reinterpret_cast< wxPaneInfo
* >(argp7
);
10875 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10876 (arg1
)->DrawPaneButton(*arg2
,arg3
,arg4
,arg5
,(wxRect
const &)*arg6
,*arg7
);
10877 wxPyEndAllowThreads(__tstate
);
10878 if (PyErr_Occurred()) SWIG_fail
;
10880 resultobj
= SWIG_Py_Void();
10887 SWIGINTERN PyObject
*DockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10889 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10890 SWIG_TypeNewClientData(SWIGTYPE_p_wxDockArt
, SWIG_NewClientData(obj
));
10891 return SWIG_Py_Void();
10894 SWIGINTERN PyObject
*_wrap_new_DefaultDockArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10895 PyObject
*resultobj
= 0;
10896 wxDefaultDockArt
*result
= 0 ;
10898 if (!SWIG_Python_UnpackTuple(args
,"new_DefaultDockArt",0,0,0)) SWIG_fail
;
10900 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10901 result
= (wxDefaultDockArt
*)new wxDefaultDockArt();
10902 wxPyEndAllowThreads(__tstate
);
10903 if (PyErr_Occurred()) SWIG_fail
;
10905 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDefaultDockArt
, SWIG_POINTER_NEW
| 0 );
10912 SWIGINTERN PyObject
*DefaultDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10914 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10915 SWIG_TypeNewClientData(SWIGTYPE_p_wxDefaultDockArt
, SWIG_NewClientData(obj
));
10916 return SWIG_Py_Void();
10919 SWIGINTERN PyObject
*DefaultDockArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10920 return SWIG_Python_InitShadowInstance(args
);
10923 SWIGINTERN PyObject
*_wrap_new_FloatingPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10924 PyObject
*resultobj
= 0;
10925 wxWindow
*arg1
= (wxWindow
*) 0 ;
10926 wxFrameManager
*arg2
= (wxFrameManager
*) 0 ;
10927 wxPaneInfo
*arg3
= 0 ;
10928 int arg4
= (int) wxID_ANY
;
10929 long arg5
= (long) wxRESIZE_BORDER
|wxSYSTEM_MENU
|wxCAPTION
|wxFRAME_NO_TASKBAR
|wxFRAME_FLOAT_ON_PARENT
|wxCLIP_CHILDREN
;
10930 wxFloatingPane
*result
= 0 ;
10941 PyObject
* obj0
= 0 ;
10942 PyObject
* obj1
= 0 ;
10943 PyObject
* obj2
= 0 ;
10944 PyObject
* obj3
= 0 ;
10945 PyObject
* obj4
= 0 ;
10946 char * kwnames
[] = {
10947 (char *) "parent",(char *) "owner_mgr",(char *) "pane",(char *) "id",(char *) "style", NULL
10950 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:new_FloatingPane",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
10951 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10952 if (!SWIG_IsOK(res1
)) {
10953 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_FloatingPane" "', expected argument " "1"" of type '" "wxWindow *""'");
10955 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
10956 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFrameManager
, 0 | 0 );
10957 if (!SWIG_IsOK(res2
)) {
10958 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_FloatingPane" "', expected argument " "2"" of type '" "wxFrameManager *""'");
10960 arg2
= reinterpret_cast< wxFrameManager
* >(argp2
);
10961 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
10962 if (!SWIG_IsOK(res3
)) {
10963 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_FloatingPane" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
10966 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_FloatingPane" "', expected argument " "3"" of type '" "wxPaneInfo const &""'");
10968 arg3
= reinterpret_cast< wxPaneInfo
* >(argp3
);
10970 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10971 if (!SWIG_IsOK(ecode4
)) {
10972 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_FloatingPane" "', expected argument " "4"" of type '" "int""'");
10974 arg4
= static_cast< int >(val4
);
10977 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
10978 if (!SWIG_IsOK(ecode5
)) {
10979 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_FloatingPane" "', expected argument " "5"" of type '" "long""'");
10981 arg5
= static_cast< long >(val5
);
10984 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10985 result
= (wxFloatingPane
*)new wxFloatingPane(arg1
,arg2
,(wxPaneInfo
const &)*arg3
,arg4
,arg5
);
10986 wxPyEndAllowThreads(__tstate
);
10987 if (PyErr_Occurred()) SWIG_fail
;
10989 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFloatingPane
, SWIG_POINTER_NEW
| 0 );
10996 SWIGINTERN PyObject
*_wrap_delete_FloatingPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10997 PyObject
*resultobj
= 0;
10998 wxFloatingPane
*arg1
= (wxFloatingPane
*) 0 ;
11001 PyObject
*swig_obj
[1] ;
11003 if (!args
) SWIG_fail
;
11004 swig_obj
[0] = args
;
11005 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFloatingPane
, SWIG_POINTER_DISOWN
| 0 );
11006 if (!SWIG_IsOK(res1
)) {
11007 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FloatingPane" "', expected argument " "1"" of type '" "wxFloatingPane *""'");
11009 arg1
= reinterpret_cast< wxFloatingPane
* >(argp1
);
11011 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11014 wxPyEndAllowThreads(__tstate
);
11015 if (PyErr_Occurred()) SWIG_fail
;
11017 resultobj
= SWIG_Py_Void();
11024 SWIGINTERN PyObject
*_wrap_FloatingPane_SetPaneWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11025 PyObject
*resultobj
= 0;
11026 wxFloatingPane
*arg1
= (wxFloatingPane
*) 0 ;
11027 wxPaneInfo
*arg2
= 0 ;
11032 PyObject
* obj0
= 0 ;
11033 PyObject
* obj1
= 0 ;
11034 char * kwnames
[] = {
11035 (char *) "self",(char *) "pane", NULL
11038 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FloatingPane_SetPaneWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11039 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFloatingPane
, 0 | 0 );
11040 if (!SWIG_IsOK(res1
)) {
11041 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FloatingPane_SetPaneWindow" "', expected argument " "1"" of type '" "wxFloatingPane *""'");
11043 arg1
= reinterpret_cast< wxFloatingPane
* >(argp1
);
11044 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPaneInfo
, 0 | 0);
11045 if (!SWIG_IsOK(res2
)) {
11046 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FloatingPane_SetPaneWindow" "', expected argument " "2"" of type '" "wxPaneInfo const &""'");
11049 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FloatingPane_SetPaneWindow" "', expected argument " "2"" of type '" "wxPaneInfo const &""'");
11051 arg2
= reinterpret_cast< wxPaneInfo
* >(argp2
);
11053 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11054 (arg1
)->SetPaneWindow((wxPaneInfo
const &)*arg2
);
11055 wxPyEndAllowThreads(__tstate
);
11056 if (PyErr_Occurred()) SWIG_fail
;
11058 resultobj
= SWIG_Py_Void();
11065 SWIGINTERN PyObject
*FloatingPane_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11067 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11068 SWIG_TypeNewClientData(SWIGTYPE_p_wxFloatingPane
, SWIG_NewClientData(obj
));
11069 return SWIG_Py_Void();
11072 SWIGINTERN PyObject
*FloatingPane_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11073 return SWIG_Python_InitShadowInstance(args
);
11076 SWIGINTERN PyObject
*_wrap_delete_TabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11077 PyObject
*resultobj
= 0;
11078 wxTabArt
*arg1
= (wxTabArt
*) 0 ;
11081 PyObject
*swig_obj
[1] ;
11083 if (!args
) SWIG_fail
;
11084 swig_obj
[0] = args
;
11085 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTabArt
, SWIG_POINTER_DISOWN
| 0 );
11086 if (!SWIG_IsOK(res1
)) {
11087 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_TabArt" "', expected argument " "1"" of type '" "wxTabArt *""'");
11089 arg1
= reinterpret_cast< wxTabArt
* >(argp1
);
11091 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11094 wxPyEndAllowThreads(__tstate
);
11095 if (PyErr_Occurred()) SWIG_fail
;
11097 resultobj
= SWIG_Py_Void();
11104 SWIGINTERN PyObject
*_wrap_TabArt_SetNormalFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11105 PyObject
*resultobj
= 0;
11106 wxTabArt
*arg1
= (wxTabArt
*) 0 ;
11112 PyObject
* obj0
= 0 ;
11113 PyObject
* obj1
= 0 ;
11114 char * kwnames
[] = {
11115 (char *) "self",(char *) "font", NULL
11118 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TabArt_SetNormalFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11119 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTabArt
, 0 | 0 );
11120 if (!SWIG_IsOK(res1
)) {
11121 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TabArt_SetNormalFont" "', expected argument " "1"" of type '" "wxTabArt *""'");
11123 arg1
= reinterpret_cast< wxTabArt
* >(argp1
);
11124 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
11125 if (!SWIG_IsOK(res2
)) {
11126 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TabArt_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
11129 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TabArt_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
11131 arg2
= reinterpret_cast< wxFont
* >(argp2
);
11133 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11134 (arg1
)->SetNormalFont((wxFont
const &)*arg2
);
11135 wxPyEndAllowThreads(__tstate
);
11136 if (PyErr_Occurred()) SWIG_fail
;
11138 resultobj
= SWIG_Py_Void();
11145 SWIGINTERN PyObject
*_wrap_TabArt_SetSelectedFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11146 PyObject
*resultobj
= 0;
11147 wxTabArt
*arg1
= (wxTabArt
*) 0 ;
11153 PyObject
* obj0
= 0 ;
11154 PyObject
* obj1
= 0 ;
11155 char * kwnames
[] = {
11156 (char *) "self",(char *) "font", NULL
11159 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TabArt_SetSelectedFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11160 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTabArt
, 0 | 0 );
11161 if (!SWIG_IsOK(res1
)) {
11162 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TabArt_SetSelectedFont" "', expected argument " "1"" of type '" "wxTabArt *""'");
11164 arg1
= reinterpret_cast< wxTabArt
* >(argp1
);
11165 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
11166 if (!SWIG_IsOK(res2
)) {
11167 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TabArt_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
11170 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TabArt_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
11172 arg2
= reinterpret_cast< wxFont
* >(argp2
);
11174 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11175 (arg1
)->SetSelectedFont((wxFont
const &)*arg2
);
11176 wxPyEndAllowThreads(__tstate
);
11177 if (PyErr_Occurred()) SWIG_fail
;
11179 resultobj
= SWIG_Py_Void();
11186 SWIGINTERN PyObject
*_wrap_TabArt_SetMeasuringFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11187 PyObject
*resultobj
= 0;
11188 wxTabArt
*arg1
= (wxTabArt
*) 0 ;
11194 PyObject
* obj0
= 0 ;
11195 PyObject
* obj1
= 0 ;
11196 char * kwnames
[] = {
11197 (char *) "self",(char *) "font", NULL
11200 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TabArt_SetMeasuringFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11201 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTabArt
, 0 | 0 );
11202 if (!SWIG_IsOK(res1
)) {
11203 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TabArt_SetMeasuringFont" "', expected argument " "1"" of type '" "wxTabArt *""'");
11205 arg1
= reinterpret_cast< wxTabArt
* >(argp1
);
11206 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
11207 if (!SWIG_IsOK(res2
)) {
11208 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TabArt_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
11211 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TabArt_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
11213 arg2
= reinterpret_cast< wxFont
* >(argp2
);
11215 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11216 (arg1
)->SetMeasuringFont((wxFont
const &)*arg2
);
11217 wxPyEndAllowThreads(__tstate
);
11218 if (PyErr_Occurred()) SWIG_fail
;
11220 resultobj
= SWIG_Py_Void();
11227 SWIGINTERN PyObject
*_wrap_TabArt_DrawBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11228 PyObject
*resultobj
= 0;
11229 wxTabArt
*arg1
= (wxTabArt
*) 0 ;
11230 wxDC
*arg2
= (wxDC
*) 0 ;
11237 PyObject
* obj0
= 0 ;
11238 PyObject
* obj1
= 0 ;
11239 PyObject
* obj2
= 0 ;
11240 char * kwnames
[] = {
11241 (char *) "self",(char *) "dc",(char *) "rect", NULL
11244 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:TabArt_DrawBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11245 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTabArt
, 0 | 0 );
11246 if (!SWIG_IsOK(res1
)) {
11247 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TabArt_DrawBackground" "', expected argument " "1"" of type '" "wxTabArt *""'");
11249 arg1
= reinterpret_cast< wxTabArt
* >(argp1
);
11250 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
11251 if (!SWIG_IsOK(res2
)) {
11252 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TabArt_DrawBackground" "', expected argument " "2"" of type '" "wxDC *""'");
11254 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11257 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
11260 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11261 (arg1
)->DrawBackground(arg2
,(wxRect
const &)*arg3
);
11262 wxPyEndAllowThreads(__tstate
);
11263 if (PyErr_Occurred()) SWIG_fail
;
11265 resultobj
= SWIG_Py_Void();
11272 SWIGINTERN PyObject
*_wrap_TabArt_DrawTab(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11273 PyObject
*resultobj
= 0;
11274 wxTabArt
*arg1
= (wxTabArt
*) 0 ;
11275 wxDC
*arg2
= (wxDC
*) 0 ;
11277 wxString
*arg4
= 0 ;
11279 wxRect
*arg6
= (wxRect
*) 0 ;
11280 int *arg7
= (int *) 0 ;
11286 bool temp4
= false ;
11293 PyObject
* obj0
= 0 ;
11294 PyObject
* obj1
= 0 ;
11295 PyObject
* obj2
= 0 ;
11296 PyObject
* obj3
= 0 ;
11297 PyObject
* obj4
= 0 ;
11298 PyObject
* obj5
= 0 ;
11299 PyObject
* obj6
= 0 ;
11300 char * kwnames
[] = {
11301 (char *) "self",(char *) "dc",(char *) "in_rect",(char *) "caption",(char *) "active",(char *) "out_rect",(char *) "x_extent", NULL
11304 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:TabArt_DrawTab",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
11305 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTabArt
, 0 | 0 );
11306 if (!SWIG_IsOK(res1
)) {
11307 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TabArt_DrawTab" "', expected argument " "1"" of type '" "wxTabArt *""'");
11309 arg1
= reinterpret_cast< wxTabArt
* >(argp1
);
11310 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
11311 if (!SWIG_IsOK(res2
)) {
11312 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TabArt_DrawTab" "', expected argument " "2"" of type '" "wxDC *""'");
11314 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11317 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
11320 arg4
= wxString_in_helper(obj3
);
11321 if (arg4
== NULL
) SWIG_fail
;
11324 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
11325 if (!SWIG_IsOK(ecode5
)) {
11326 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "TabArt_DrawTab" "', expected argument " "5"" of type '" "bool""'");
11328 arg5
= static_cast< bool >(val5
);
11329 res6
= SWIG_ConvertPtr(obj5
, &argp6
,SWIGTYPE_p_wxRect
, 0 | 0 );
11330 if (!SWIG_IsOK(res6
)) {
11331 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "TabArt_DrawTab" "', expected argument " "6"" of type '" "wxRect *""'");
11333 arg6
= reinterpret_cast< wxRect
* >(argp6
);
11334 res7
= SWIG_ConvertPtr(obj6
, &argp7
,SWIGTYPE_p_int
, 0 | 0 );
11335 if (!SWIG_IsOK(res7
)) {
11336 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "TabArt_DrawTab" "', expected argument " "7"" of type '" "int *""'");
11338 arg7
= reinterpret_cast< int * >(argp7
);
11340 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11341 (arg1
)->DrawTab(arg2
,(wxRect
const &)*arg3
,(wxString
const &)*arg4
,arg5
,arg6
,arg7
);
11342 wxPyEndAllowThreads(__tstate
);
11343 if (PyErr_Occurred()) SWIG_fail
;
11345 resultobj
= SWIG_Py_Void();
11360 SWIGINTERN PyObject
*_wrap_TabArt_DrawButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11361 PyObject
*resultobj
= 0;
11362 wxTabArt
*arg1
= (wxTabArt
*) 0 ;
11363 wxDC
*arg2
= (wxDC
*) 0 ;
11368 wxBitmap
*arg7
= 0 ;
11369 wxRect
*arg8
= (wxRect
*) 0 ;
11385 PyObject
* obj0
= 0 ;
11386 PyObject
* obj1
= 0 ;
11387 PyObject
* obj2
= 0 ;
11388 PyObject
* obj3
= 0 ;
11389 PyObject
* obj4
= 0 ;
11390 PyObject
* obj5
= 0 ;
11391 PyObject
* obj6
= 0 ;
11392 PyObject
* obj7
= 0 ;
11393 char * kwnames
[] = {
11394 (char *) "self",(char *) "dc",(char *) "in_rect",(char *) "bitmap_id",(char *) "button_state",(char *) "orientation",(char *) "bitmap_override",(char *) "out_rect", NULL
11397 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOO:TabArt_DrawButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
11398 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTabArt
, 0 | 0 );
11399 if (!SWIG_IsOK(res1
)) {
11400 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TabArt_DrawButton" "', expected argument " "1"" of type '" "wxTabArt *""'");
11402 arg1
= reinterpret_cast< wxTabArt
* >(argp1
);
11403 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
11404 if (!SWIG_IsOK(res2
)) {
11405 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TabArt_DrawButton" "', expected argument " "2"" of type '" "wxDC *""'");
11407 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11410 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
11412 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11413 if (!SWIG_IsOK(ecode4
)) {
11414 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "TabArt_DrawButton" "', expected argument " "4"" of type '" "int""'");
11416 arg4
= static_cast< int >(val4
);
11417 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
11418 if (!SWIG_IsOK(ecode5
)) {
11419 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "TabArt_DrawButton" "', expected argument " "5"" of type '" "int""'");
11421 arg5
= static_cast< int >(val5
);
11422 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
11423 if (!SWIG_IsOK(ecode6
)) {
11424 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "TabArt_DrawButton" "', expected argument " "6"" of type '" "int""'");
11426 arg6
= static_cast< int >(val6
);
11427 res7
= SWIG_ConvertPtr(obj6
, &argp7
, SWIGTYPE_p_wxBitmap
, 0 | 0);
11428 if (!SWIG_IsOK(res7
)) {
11429 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "TabArt_DrawButton" "', expected argument " "7"" of type '" "wxBitmap const &""'");
11432 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TabArt_DrawButton" "', expected argument " "7"" of type '" "wxBitmap const &""'");
11434 arg7
= reinterpret_cast< wxBitmap
* >(argp7
);
11435 res8
= SWIG_ConvertPtr(obj7
, &argp8
,SWIGTYPE_p_wxRect
, 0 | 0 );
11436 if (!SWIG_IsOK(res8
)) {
11437 SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "TabArt_DrawButton" "', expected argument " "8"" of type '" "wxRect *""'");
11439 arg8
= reinterpret_cast< wxRect
* >(argp8
);
11441 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11442 (arg1
)->DrawButton(arg2
,(wxRect
const &)*arg3
,arg4
,arg5
,arg6
,(wxBitmap
const &)*arg7
,arg8
);
11443 wxPyEndAllowThreads(__tstate
);
11444 if (PyErr_Occurred()) SWIG_fail
;
11446 resultobj
= SWIG_Py_Void();
11453 SWIGINTERN PyObject
*_wrap_TabArt_GetTabSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11454 PyObject
*resultobj
= 0;
11455 wxTabArt
*arg1
= (wxTabArt
*) 0 ;
11456 wxDC
*arg2
= (wxDC
*) 0 ;
11457 wxString
*arg3
= 0 ;
11459 int *arg5
= (int *) 0 ;
11465 bool temp3
= false ;
11470 PyObject
* obj0
= 0 ;
11471 PyObject
* obj1
= 0 ;
11472 PyObject
* obj2
= 0 ;
11473 PyObject
* obj3
= 0 ;
11474 PyObject
* obj4
= 0 ;
11475 char * kwnames
[] = {
11476 (char *) "self",(char *) "dc",(char *) "caption",(char *) "active",(char *) "x_extent", NULL
11479 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:TabArt_GetTabSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
11480 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTabArt
, 0 | 0 );
11481 if (!SWIG_IsOK(res1
)) {
11482 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TabArt_GetTabSize" "', expected argument " "1"" of type '" "wxTabArt *""'");
11484 arg1
= reinterpret_cast< wxTabArt
* >(argp1
);
11485 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
11486 if (!SWIG_IsOK(res2
)) {
11487 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TabArt_GetTabSize" "', expected argument " "2"" of type '" "wxDC *""'");
11489 arg2
= reinterpret_cast< wxDC
* >(argp2
);
11491 arg3
= wxString_in_helper(obj2
);
11492 if (arg3
== NULL
) SWIG_fail
;
11495 ecode4
= SWIG_AsVal_bool(obj3
, &val4
);
11496 if (!SWIG_IsOK(ecode4
)) {
11497 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "TabArt_GetTabSize" "', expected argument " "4"" of type '" "bool""'");
11499 arg4
= static_cast< bool >(val4
);
11500 res5
= SWIG_ConvertPtr(obj4
, &argp5
,SWIGTYPE_p_int
, 0 | 0 );
11501 if (!SWIG_IsOK(res5
)) {
11502 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "TabArt_GetTabSize" "', expected argument " "5"" of type '" "int *""'");
11504 arg5
= reinterpret_cast< int * >(argp5
);
11506 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11507 result
= (arg1
)->GetTabSize(arg2
,(wxString
const &)*arg3
,arg4
,arg5
);
11508 wxPyEndAllowThreads(__tstate
);
11509 if (PyErr_Occurred()) SWIG_fail
;
11511 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
11526 SWIGINTERN PyObject
*_wrap_TabArt_GetBestTabCtrlSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11527 PyObject
*resultobj
= 0;
11528 wxTabArt
*arg1
= (wxTabArt
*) 0 ;
11529 wxWindow
*arg2
= (wxWindow
*) 0 ;
11535 PyObject
* obj0
= 0 ;
11536 PyObject
* obj1
= 0 ;
11537 char * kwnames
[] = {
11538 (char *) "self",(char *) "wnd", NULL
11541 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TabArt_GetBestTabCtrlSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11542 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTabArt
, 0 | 0 );
11543 if (!SWIG_IsOK(res1
)) {
11544 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TabArt_GetBestTabCtrlSize" "', expected argument " "1"" of type '" "wxTabArt *""'");
11546 arg1
= reinterpret_cast< wxTabArt
* >(argp1
);
11547 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
11548 if (!SWIG_IsOK(res2
)) {
11549 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TabArt_GetBestTabCtrlSize" "', expected argument " "2"" of type '" "wxWindow *""'");
11551 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
11553 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11554 result
= (int)(arg1
)->GetBestTabCtrlSize(arg2
);
11555 wxPyEndAllowThreads(__tstate
);
11556 if (PyErr_Occurred()) SWIG_fail
;
11558 resultobj
= SWIG_From_int(static_cast< int >(result
));
11565 SWIGINTERN PyObject
*TabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11567 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11568 SWIG_TypeNewClientData(SWIGTYPE_p_wxTabArt
, SWIG_NewClientData(obj
));
11569 return SWIG_Py_Void();
11572 SWIGINTERN PyObject
*_wrap_new_DefaultTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11573 PyObject
*resultobj
= 0;
11574 wxDefaultTabArt
*result
= 0 ;
11576 if (!SWIG_Python_UnpackTuple(args
,"new_DefaultTabArt",0,0,0)) SWIG_fail
;
11578 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11579 result
= (wxDefaultTabArt
*)new wxDefaultTabArt();
11580 wxPyEndAllowThreads(__tstate
);
11581 if (PyErr_Occurred()) SWIG_fail
;
11583 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDefaultTabArt
, SWIG_POINTER_NEW
| 0 );
11590 SWIGINTERN PyObject
*_wrap_delete_DefaultTabArt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11591 PyObject
*resultobj
= 0;
11592 wxDefaultTabArt
*arg1
= (wxDefaultTabArt
*) 0 ;
11595 PyObject
*swig_obj
[1] ;
11597 if (!args
) SWIG_fail
;
11598 swig_obj
[0] = args
;
11599 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDefaultTabArt
, SWIG_POINTER_DISOWN
| 0 );
11600 if (!SWIG_IsOK(res1
)) {
11601 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_DefaultTabArt" "', expected argument " "1"" of type '" "wxDefaultTabArt *""'");
11603 arg1
= reinterpret_cast< wxDefaultTabArt
* >(argp1
);
11605 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11608 wxPyEndAllowThreads(__tstate
);
11609 if (PyErr_Occurred()) SWIG_fail
;
11611 resultobj
= SWIG_Py_Void();
11618 SWIGINTERN PyObject
*DefaultTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11620 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11621 SWIG_TypeNewClientData(SWIGTYPE_p_wxDefaultTabArt
, SWIG_NewClientData(obj
));
11622 return SWIG_Py_Void();
11625 SWIGINTERN PyObject
*DefaultTabArt_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11626 return SWIG_Python_InitShadowInstance(args
);
11629 SWIGINTERN PyObject
*_wrap_new_AuiNotebookEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11630 PyObject
*resultobj
= 0;
11631 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
11632 int arg2
= (int) 0 ;
11633 wxAuiNotebookEvent
*result
= 0 ;
11638 PyObject
* obj0
= 0 ;
11639 PyObject
* obj1
= 0 ;
11640 char * kwnames
[] = {
11641 (char *) "command_type",(char *) "win_id", NULL
11644 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_AuiNotebookEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11646 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
11647 if (!SWIG_IsOK(ecode1
)) {
11648 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_AuiNotebookEvent" "', expected argument " "1"" of type '" "wxEventType""'");
11650 arg1
= static_cast< wxEventType
>(val1
);
11653 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11654 if (!SWIG_IsOK(ecode2
)) {
11655 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiNotebookEvent" "', expected argument " "2"" of type '" "int""'");
11657 arg2
= static_cast< int >(val2
);
11660 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11661 result
= (wxAuiNotebookEvent
*)new wxAuiNotebookEvent(arg1
,arg2
);
11662 wxPyEndAllowThreads(__tstate
);
11663 if (PyErr_Occurred()) SWIG_fail
;
11665 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookEvent
, SWIG_POINTER_NEW
| 0 );
11672 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11673 PyObject
*resultobj
= 0;
11674 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11680 PyObject
* obj0
= 0 ;
11681 PyObject
* obj1
= 0 ;
11682 char * kwnames
[] = {
11683 (char *) "self",(char *) "s", NULL
11686 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11687 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11688 if (!SWIG_IsOK(res1
)) {
11689 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11691 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11692 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11693 if (!SWIG_IsOK(ecode2
)) {
11694 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_SetSelection" "', expected argument " "2"" of type '" "int""'");
11696 arg2
= static_cast< int >(val2
);
11698 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11699 (arg1
)->SetSelection(arg2
);
11700 wxPyEndAllowThreads(__tstate
);
11701 if (PyErr_Occurred()) SWIG_fail
;
11703 resultobj
= SWIG_Py_Void();
11710 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_SetOldSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11711 PyObject
*resultobj
= 0;
11712 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11718 PyObject
* obj0
= 0 ;
11719 PyObject
* obj1
= 0 ;
11720 char * kwnames
[] = {
11721 (char *) "self",(char *) "s", NULL
11724 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiNotebookEvent_SetOldSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11725 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11726 if (!SWIG_IsOK(res1
)) {
11727 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_SetOldSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11729 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11730 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11731 if (!SWIG_IsOK(ecode2
)) {
11732 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_SetOldSelection" "', expected argument " "2"" of type '" "int""'");
11734 arg2
= static_cast< int >(val2
);
11736 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11737 (arg1
)->SetOldSelection(arg2
);
11738 wxPyEndAllowThreads(__tstate
);
11739 if (PyErr_Occurred()) SWIG_fail
;
11741 resultobj
= SWIG_Py_Void();
11748 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11749 PyObject
*resultobj
= 0;
11750 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11754 PyObject
*swig_obj
[1] ;
11756 if (!args
) SWIG_fail
;
11757 swig_obj
[0] = args
;
11758 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11759 if (!SWIG_IsOK(res1
)) {
11760 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
11762 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11764 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11765 result
= (int)((wxAuiNotebookEvent
const *)arg1
)->GetSelection();
11766 wxPyEndAllowThreads(__tstate
);
11767 if (PyErr_Occurred()) SWIG_fail
;
11769 resultobj
= SWIG_From_int(static_cast< int >(result
));
11776 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_GetOldSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11777 PyObject
*resultobj
= 0;
11778 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11782 PyObject
*swig_obj
[1] ;
11784 if (!args
) SWIG_fail
;
11785 swig_obj
[0] = args
;
11786 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11787 if (!SWIG_IsOK(res1
)) {
11788 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_GetOldSelection" "', expected argument " "1"" of type '" "wxAuiNotebookEvent const *""'");
11790 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11792 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11793 result
= (int)((wxAuiNotebookEvent
const *)arg1
)->GetOldSelection();
11794 wxPyEndAllowThreads(__tstate
);
11795 if (PyErr_Occurred()) SWIG_fail
;
11797 resultobj
= SWIG_From_int(static_cast< int >(result
));
11804 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_old_selection_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11805 PyObject
*resultobj
= 0;
11806 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11812 PyObject
*swig_obj
[2] ;
11814 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_old_selection_set",2,2,swig_obj
)) SWIG_fail
;
11815 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11816 if (!SWIG_IsOK(res1
)) {
11817 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_old_selection_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11819 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11820 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
11821 if (!SWIG_IsOK(ecode2
)) {
11822 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_old_selection_set" "', expected argument " "2"" of type '" "int""'");
11824 arg2
= static_cast< int >(val2
);
11825 if (arg1
) (arg1
)->old_selection
= arg2
;
11827 resultobj
= SWIG_Py_Void();
11834 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_old_selection_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11835 PyObject
*resultobj
= 0;
11836 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11840 PyObject
*swig_obj
[1] ;
11842 if (!args
) SWIG_fail
;
11843 swig_obj
[0] = args
;
11844 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11845 if (!SWIG_IsOK(res1
)) {
11846 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_old_selection_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11848 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11849 result
= (int) ((arg1
)->old_selection
);
11850 resultobj
= SWIG_From_int(static_cast< int >(result
));
11857 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_selection_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11858 PyObject
*resultobj
= 0;
11859 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11865 PyObject
*swig_obj
[2] ;
11867 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookEvent_selection_set",2,2,swig_obj
)) SWIG_fail
;
11868 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11869 if (!SWIG_IsOK(res1
)) {
11870 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_selection_set" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11872 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11873 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
11874 if (!SWIG_IsOK(ecode2
)) {
11875 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookEvent_selection_set" "', expected argument " "2"" of type '" "int""'");
11877 arg2
= static_cast< int >(val2
);
11878 if (arg1
) (arg1
)->selection
= arg2
;
11880 resultobj
= SWIG_Py_Void();
11887 SWIGINTERN PyObject
*_wrap_AuiNotebookEvent_selection_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11888 PyObject
*resultobj
= 0;
11889 wxAuiNotebookEvent
*arg1
= (wxAuiNotebookEvent
*) 0 ;
11893 PyObject
*swig_obj
[1] ;
11895 if (!args
) SWIG_fail
;
11896 swig_obj
[0] = args
;
11897 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookEvent
, 0 | 0 );
11898 if (!SWIG_IsOK(res1
)) {
11899 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookEvent_selection_get" "', expected argument " "1"" of type '" "wxAuiNotebookEvent *""'");
11901 arg1
= reinterpret_cast< wxAuiNotebookEvent
* >(argp1
);
11902 result
= (int) ((arg1
)->selection
);
11903 resultobj
= SWIG_From_int(static_cast< int >(result
));
11910 SWIGINTERN PyObject
*AuiNotebookEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11912 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11913 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebookEvent
, SWIG_NewClientData(obj
));
11914 return SWIG_Py_Void();
11917 SWIGINTERN PyObject
*AuiNotebookEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11918 return SWIG_Python_InitShadowInstance(args
);
11921 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_window_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11922 PyObject
*resultobj
= 0;
11923 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
11924 wxWindow
*arg2
= (wxWindow
*) 0 ;
11929 PyObject
*swig_obj
[2] ;
11931 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_window_set",2,2,swig_obj
)) SWIG_fail
;
11932 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
11933 if (!SWIG_IsOK(res1
)) {
11934 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_window_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
11936 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
11937 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, SWIG_POINTER_DISOWN
| 0 );
11938 if (!SWIG_IsOK(res2
)) {
11939 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_window_set" "', expected argument " "2"" of type '" "wxWindow *""'");
11941 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
11942 if (arg1
) (arg1
)->window
= arg2
;
11944 resultobj
= SWIG_Py_Void();
11951 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_window_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11952 PyObject
*resultobj
= 0;
11953 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
11954 wxWindow
*result
= 0 ;
11957 PyObject
*swig_obj
[1] ;
11959 if (!args
) SWIG_fail
;
11960 swig_obj
[0] = args
;
11961 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
11962 if (!SWIG_IsOK(res1
)) {
11963 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_window_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
11965 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
11966 result
= (wxWindow
*) ((arg1
)->window
);
11968 resultobj
= wxPyMake_wxObject(result
, 0);
11976 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_caption_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11977 PyObject
*resultobj
= 0;
11978 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
11979 wxString
*arg2
= (wxString
*) 0 ;
11982 bool temp2
= false ;
11983 PyObject
*swig_obj
[2] ;
11985 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_caption_set",2,2,swig_obj
)) SWIG_fail
;
11986 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
11987 if (!SWIG_IsOK(res1
)) {
11988 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_caption_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
11990 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
11992 arg2
= wxString_in_helper(swig_obj
[1]);
11993 if (arg2
== NULL
) SWIG_fail
;
11996 if (arg1
) (arg1
)->caption
= *arg2
;
11998 resultobj
= SWIG_Py_Void();
12013 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_caption_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12014 PyObject
*resultobj
= 0;
12015 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12016 wxString
*result
= 0 ;
12019 PyObject
*swig_obj
[1] ;
12021 if (!args
) SWIG_fail
;
12022 swig_obj
[0] = args
;
12023 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12024 if (!SWIG_IsOK(res1
)) {
12025 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_caption_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12027 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12028 result
= (wxString
*)& ((arg1
)->caption
);
12031 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
12033 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
12042 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12043 PyObject
*resultobj
= 0;
12044 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12045 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
12050 PyObject
*swig_obj
[2] ;
12052 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
12053 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12054 if (!SWIG_IsOK(res1
)) {
12055 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_bitmap_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12057 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12058 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
12059 if (!SWIG_IsOK(res2
)) {
12060 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
12062 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
12063 if (arg1
) (arg1
)->bitmap
= *arg2
;
12065 resultobj
= SWIG_Py_Void();
12072 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12073 PyObject
*resultobj
= 0;
12074 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12075 wxBitmap
*result
= 0 ;
12078 PyObject
*swig_obj
[1] ;
12080 if (!args
) SWIG_fail
;
12081 swig_obj
[0] = args
;
12082 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12083 if (!SWIG_IsOK(res1
)) {
12084 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_bitmap_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12086 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12087 result
= (wxBitmap
*)& ((arg1
)->bitmap
);
12088 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
12095 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12096 PyObject
*resultobj
= 0;
12097 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12098 wxRect
*arg2
= (wxRect
*) 0 ;
12103 PyObject
*swig_obj
[2] ;
12105 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_rect_set",2,2,swig_obj
)) SWIG_fail
;
12106 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12107 if (!SWIG_IsOK(res1
)) {
12108 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_rect_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12110 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12111 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
12112 if (!SWIG_IsOK(res2
)) {
12113 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiNotebookPage_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
12115 arg2
= reinterpret_cast< wxRect
* >(argp2
);
12116 if (arg1
) (arg1
)->rect
= *arg2
;
12118 resultobj
= SWIG_Py_Void();
12125 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12126 PyObject
*resultobj
= 0;
12127 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12128 wxRect
*result
= 0 ;
12131 PyObject
*swig_obj
[1] ;
12133 if (!args
) SWIG_fail
;
12134 swig_obj
[0] = args
;
12135 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12136 if (!SWIG_IsOK(res1
)) {
12137 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_rect_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12139 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12140 result
= (wxRect
*)& ((arg1
)->rect
);
12141 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
12148 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_active_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12149 PyObject
*resultobj
= 0;
12150 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12156 PyObject
*swig_obj
[2] ;
12158 if (!SWIG_Python_UnpackTuple(args
,"AuiNotebookPage_active_set",2,2,swig_obj
)) SWIG_fail
;
12159 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12160 if (!SWIG_IsOK(res1
)) {
12161 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_active_set" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12163 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12164 ecode2
= SWIG_AsVal_bool(swig_obj
[1], &val2
);
12165 if (!SWIG_IsOK(ecode2
)) {
12166 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiNotebookPage_active_set" "', expected argument " "2"" of type '" "bool""'");
12168 arg2
= static_cast< bool >(val2
);
12169 if (arg1
) (arg1
)->active
= arg2
;
12171 resultobj
= SWIG_Py_Void();
12178 SWIGINTERN PyObject
*_wrap_AuiNotebookPage_active_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12179 PyObject
*resultobj
= 0;
12180 wxAuiNotebookPage
*arg1
= (wxAuiNotebookPage
*) 0 ;
12184 PyObject
*swig_obj
[1] ;
12186 if (!args
) SWIG_fail
;
12187 swig_obj
[0] = args
;
12188 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
12189 if (!SWIG_IsOK(res1
)) {
12190 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiNotebookPage_active_get" "', expected argument " "1"" of type '" "wxAuiNotebookPage *""'");
12192 arg1
= reinterpret_cast< wxAuiNotebookPage
* >(argp1
);
12193 result
= (bool) ((arg1
)->active
);
12195 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12203 SWIGINTERN PyObject
*AuiNotebookPage_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12205 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12206 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiNotebookPage
, SWIG_NewClientData(obj
));
12207 return SWIG_Py_Void();
12210 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_id_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12211 PyObject
*resultobj
= 0;
12212 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12218 PyObject
*swig_obj
[2] ;
12220 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_id_set",2,2,swig_obj
)) SWIG_fail
;
12221 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12222 if (!SWIG_IsOK(res1
)) {
12223 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_id_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12225 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12226 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12227 if (!SWIG_IsOK(ecode2
)) {
12228 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_id_set" "', expected argument " "2"" of type '" "int""'");
12230 arg2
= static_cast< int >(val2
);
12231 if (arg1
) (arg1
)->id
= arg2
;
12233 resultobj
= SWIG_Py_Void();
12240 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_id_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12241 PyObject
*resultobj
= 0;
12242 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12246 PyObject
*swig_obj
[1] ;
12248 if (!args
) SWIG_fail
;
12249 swig_obj
[0] = args
;
12250 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12251 if (!SWIG_IsOK(res1
)) {
12252 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_id_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12254 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12255 result
= (int) ((arg1
)->id
);
12256 resultobj
= SWIG_From_int(static_cast< int >(result
));
12263 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_cur_state_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12264 PyObject
*resultobj
= 0;
12265 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12271 PyObject
*swig_obj
[2] ;
12273 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_cur_state_set",2,2,swig_obj
)) SWIG_fail
;
12274 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12275 if (!SWIG_IsOK(res1
)) {
12276 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_cur_state_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12278 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12279 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12280 if (!SWIG_IsOK(ecode2
)) {
12281 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_cur_state_set" "', expected argument " "2"" of type '" "int""'");
12283 arg2
= static_cast< int >(val2
);
12284 if (arg1
) (arg1
)->cur_state
= arg2
;
12286 resultobj
= SWIG_Py_Void();
12293 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_cur_state_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12294 PyObject
*resultobj
= 0;
12295 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12299 PyObject
*swig_obj
[1] ;
12301 if (!args
) SWIG_fail
;
12302 swig_obj
[0] = args
;
12303 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12304 if (!SWIG_IsOK(res1
)) {
12305 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_cur_state_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12307 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12308 result
= (int) ((arg1
)->cur_state
);
12309 resultobj
= SWIG_From_int(static_cast< int >(result
));
12316 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_location_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12317 PyObject
*resultobj
= 0;
12318 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12324 PyObject
*swig_obj
[2] ;
12326 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_location_set",2,2,swig_obj
)) SWIG_fail
;
12327 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12328 if (!SWIG_IsOK(res1
)) {
12329 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_location_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12331 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12332 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
12333 if (!SWIG_IsOK(ecode2
)) {
12334 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainerButton_location_set" "', expected argument " "2"" of type '" "int""'");
12336 arg2
= static_cast< int >(val2
);
12337 if (arg1
) (arg1
)->location
= arg2
;
12339 resultobj
= SWIG_Py_Void();
12346 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_location_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12347 PyObject
*resultobj
= 0;
12348 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12352 PyObject
*swig_obj
[1] ;
12354 if (!args
) SWIG_fail
;
12355 swig_obj
[0] = args
;
12356 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12357 if (!SWIG_IsOK(res1
)) {
12358 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_location_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12360 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12361 result
= (int) ((arg1
)->location
);
12362 resultobj
= SWIG_From_int(static_cast< int >(result
));
12369 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12370 PyObject
*resultobj
= 0;
12371 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12372 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
12377 PyObject
*swig_obj
[2] ;
12379 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
12380 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12381 if (!SWIG_IsOK(res1
)) {
12382 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_bitmap_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12384 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12385 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
12386 if (!SWIG_IsOK(res2
)) {
12387 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
12389 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
12390 if (arg1
) (arg1
)->bitmap
= *arg2
;
12392 resultobj
= SWIG_Py_Void();
12399 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12400 PyObject
*resultobj
= 0;
12401 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12402 wxBitmap
*result
= 0 ;
12405 PyObject
*swig_obj
[1] ;
12407 if (!args
) SWIG_fail
;
12408 swig_obj
[0] = args
;
12409 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12410 if (!SWIG_IsOK(res1
)) {
12411 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_bitmap_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12413 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12414 result
= (wxBitmap
*)& ((arg1
)->bitmap
);
12415 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
12422 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_dis_bitmap_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12423 PyObject
*resultobj
= 0;
12424 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12425 wxBitmap
*arg2
= (wxBitmap
*) 0 ;
12430 PyObject
*swig_obj
[2] ;
12432 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_dis_bitmap_set",2,2,swig_obj
)) SWIG_fail
;
12433 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12434 if (!SWIG_IsOK(res1
)) {
12435 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_dis_bitmap_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12437 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12438 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxBitmap
, 0 | 0 );
12439 if (!SWIG_IsOK(res2
)) {
12440 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_dis_bitmap_set" "', expected argument " "2"" of type '" "wxBitmap *""'");
12442 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
12443 if (arg1
) (arg1
)->dis_bitmap
= *arg2
;
12445 resultobj
= SWIG_Py_Void();
12452 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_dis_bitmap_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12453 PyObject
*resultobj
= 0;
12454 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12455 wxBitmap
*result
= 0 ;
12458 PyObject
*swig_obj
[1] ;
12460 if (!args
) SWIG_fail
;
12461 swig_obj
[0] = args
;
12462 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12463 if (!SWIG_IsOK(res1
)) {
12464 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_dis_bitmap_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12466 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12467 result
= (wxBitmap
*)& ((arg1
)->dis_bitmap
);
12468 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxBitmap
, 0 | 0 );
12475 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_rect_set(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12476 PyObject
*resultobj
= 0;
12477 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12478 wxRect
*arg2
= (wxRect
*) 0 ;
12483 PyObject
*swig_obj
[2] ;
12485 if (!SWIG_Python_UnpackTuple(args
,"AuiTabContainerButton_rect_set",2,2,swig_obj
)) SWIG_fail
;
12486 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12487 if (!SWIG_IsOK(res1
)) {
12488 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_rect_set" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12490 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12491 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxRect
, 0 | 0 );
12492 if (!SWIG_IsOK(res2
)) {
12493 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainerButton_rect_set" "', expected argument " "2"" of type '" "wxRect *""'");
12495 arg2
= reinterpret_cast< wxRect
* >(argp2
);
12496 if (arg1
) (arg1
)->rect
= *arg2
;
12498 resultobj
= SWIG_Py_Void();
12505 SWIGINTERN PyObject
*_wrap_AuiTabContainerButton_rect_get(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12506 PyObject
*resultobj
= 0;
12507 wxAuiTabContainerButton
*arg1
= (wxAuiTabContainerButton
*) 0 ;
12508 wxRect
*result
= 0 ;
12511 PyObject
*swig_obj
[1] ;
12513 if (!args
) SWIG_fail
;
12514 swig_obj
[0] = args
;
12515 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainerButton
, 0 | 0 );
12516 if (!SWIG_IsOK(res1
)) {
12517 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainerButton_rect_get" "', expected argument " "1"" of type '" "wxAuiTabContainerButton *""'");
12519 arg1
= reinterpret_cast< wxAuiTabContainerButton
* >(argp1
);
12520 result
= (wxRect
*)& ((arg1
)->rect
);
12521 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxRect
, 0 | 0 );
12528 SWIGINTERN PyObject
*AuiTabContainerButton_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12530 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12531 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabContainerButton
, SWIG_NewClientData(obj
));
12532 return SWIG_Py_Void();
12535 SWIGINTERN PyObject
*_wrap_new_AuiTabContainer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12536 PyObject
*resultobj
= 0;
12537 wxAuiTabContainer
*result
= 0 ;
12539 if (!SWIG_Python_UnpackTuple(args
,"new_AuiTabContainer",0,0,0)) SWIG_fail
;
12541 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12542 result
= (wxAuiTabContainer
*)new wxAuiTabContainer();
12543 wxPyEndAllowThreads(__tstate
);
12544 if (PyErr_Occurred()) SWIG_fail
;
12546 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabContainer
, SWIG_POINTER_NEW
| 0 );
12553 SWIGINTERN PyObject
*_wrap_delete_AuiTabContainer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12554 PyObject
*resultobj
= 0;
12555 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12558 PyObject
*swig_obj
[1] ;
12560 if (!args
) SWIG_fail
;
12561 swig_obj
[0] = args
;
12562 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, SWIG_POINTER_DISOWN
| 0 );
12563 if (!SWIG_IsOK(res1
)) {
12564 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabContainer" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12566 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12568 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12571 wxPyEndAllowThreads(__tstate
);
12572 if (PyErr_Occurred()) SWIG_fail
;
12574 resultobj
= SWIG_Py_Void();
12581 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12582 PyObject
*resultobj
= 0;
12583 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12584 wxTabArt
*arg2
= (wxTabArt
*) 0 ;
12589 PyObject
* obj0
= 0 ;
12590 PyObject
* obj1
= 0 ;
12591 char * kwnames
[] = {
12592 (char *) "self",(char *) "art", NULL
12595 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12596 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12597 if (!SWIG_IsOK(res1
)) {
12598 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12600 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12601 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxTabArt
, 0 | 0 );
12602 if (!SWIG_IsOK(res2
)) {
12603 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetArtProvider" "', expected argument " "2"" of type '" "wxTabArt *""'");
12605 arg2
= reinterpret_cast< wxTabArt
* >(argp2
);
12607 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12608 (arg1
)->SetArtProvider(arg2
);
12609 wxPyEndAllowThreads(__tstate
);
12610 if (PyErr_Occurred()) SWIG_fail
;
12612 resultobj
= SWIG_Py_Void();
12619 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12620 PyObject
*resultobj
= 0;
12621 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12622 wxTabArt
*result
= 0 ;
12625 PyObject
*swig_obj
[1] ;
12627 if (!args
) SWIG_fail
;
12628 swig_obj
[0] = args
;
12629 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12630 if (!SWIG_IsOK(res1
)) {
12631 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12633 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12635 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12636 result
= (wxTabArt
*)(arg1
)->GetArtProvider();
12637 wxPyEndAllowThreads(__tstate
);
12638 if (PyErr_Occurred()) SWIG_fail
;
12640 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTabArt
, 0 | 0 );
12647 SWIGINTERN PyObject
*_wrap_AuiTabContainer_AddPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12648 PyObject
*resultobj
= 0;
12649 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12650 wxWindow
*arg2
= (wxWindow
*) 0 ;
12651 wxAuiNotebookPage
*arg3
= 0 ;
12659 PyObject
* obj0
= 0 ;
12660 PyObject
* obj1
= 0 ;
12661 PyObject
* obj2
= 0 ;
12662 char * kwnames
[] = {
12663 (char *) "self",(char *) "page",(char *) "info", NULL
12666 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabContainer_AddPage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12667 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12668 if (!SWIG_IsOK(res1
)) {
12669 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12671 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12672 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12673 if (!SWIG_IsOK(res2
)) {
12674 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "2"" of type '" "wxWindow *""'");
12676 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12677 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0);
12678 if (!SWIG_IsOK(res3
)) {
12679 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabContainer_AddPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
12682 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
12684 arg3
= reinterpret_cast< wxAuiNotebookPage
* >(argp3
);
12686 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12687 result
= (bool)(arg1
)->AddPage(arg2
,(wxAuiNotebookPage
const &)*arg3
);
12688 wxPyEndAllowThreads(__tstate
);
12689 if (PyErr_Occurred()) SWIG_fail
;
12692 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12700 SWIGINTERN PyObject
*_wrap_AuiTabContainer_InsertPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12701 PyObject
*resultobj
= 0;
12702 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12703 wxWindow
*arg2
= (wxWindow
*) 0 ;
12704 wxAuiNotebookPage
*arg3
= 0 ;
12715 PyObject
* obj0
= 0 ;
12716 PyObject
* obj1
= 0 ;
12717 PyObject
* obj2
= 0 ;
12718 PyObject
* obj3
= 0 ;
12719 char * kwnames
[] = {
12720 (char *) "self",(char *) "page",(char *) "info",(char *) "idx", NULL
12723 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
12724 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12725 if (!SWIG_IsOK(res1
)) {
12726 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12728 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12729 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12730 if (!SWIG_IsOK(res2
)) {
12731 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "2"" of type '" "wxWindow *""'");
12733 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12734 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0);
12735 if (!SWIG_IsOK(res3
)) {
12736 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
12739 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_InsertPage" "', expected argument " "3"" of type '" "wxAuiNotebookPage const &""'");
12741 arg3
= reinterpret_cast< wxAuiNotebookPage
* >(argp3
);
12742 ecode4
= SWIG_AsVal_size_t(obj3
, &val4
);
12743 if (!SWIG_IsOK(ecode4
)) {
12744 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiTabContainer_InsertPage" "', expected argument " "4"" of type '" "size_t""'");
12746 arg4
= static_cast< size_t >(val4
);
12748 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12749 result
= (bool)(arg1
)->InsertPage(arg2
,(wxAuiNotebookPage
const &)*arg3
,arg4
);
12750 wxPyEndAllowThreads(__tstate
);
12751 if (PyErr_Occurred()) SWIG_fail
;
12754 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12762 SWIGINTERN PyObject
*_wrap_AuiTabContainer_MovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12763 PyObject
*resultobj
= 0;
12764 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12765 wxWindow
*arg2
= (wxWindow
*) 0 ;
12774 PyObject
* obj0
= 0 ;
12775 PyObject
* obj1
= 0 ;
12776 PyObject
* obj2
= 0 ;
12777 char * kwnames
[] = {
12778 (char *) "self",(char *) "page",(char *) "new_idx", NULL
12781 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiTabContainer_MovePage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12782 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12783 if (!SWIG_IsOK(res1
)) {
12784 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12786 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12787 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12788 if (!SWIG_IsOK(res2
)) {
12789 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "2"" of type '" "wxWindow *""'");
12791 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12792 ecode3
= SWIG_AsVal_size_t(obj2
, &val3
);
12793 if (!SWIG_IsOK(ecode3
)) {
12794 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_MovePage" "', expected argument " "3"" of type '" "size_t""'");
12796 arg3
= static_cast< size_t >(val3
);
12798 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12799 result
= (bool)(arg1
)->MovePage(arg2
,arg3
);
12800 wxPyEndAllowThreads(__tstate
);
12801 if (PyErr_Occurred()) SWIG_fail
;
12804 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12812 SWIGINTERN PyObject
*_wrap_AuiTabContainer_RemovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12813 PyObject
*resultobj
= 0;
12814 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12815 wxWindow
*arg2
= (wxWindow
*) 0 ;
12821 PyObject
* obj0
= 0 ;
12822 PyObject
* obj1
= 0 ;
12823 char * kwnames
[] = {
12824 (char *) "self",(char *) "page", NULL
12827 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_RemovePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12828 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12829 if (!SWIG_IsOK(res1
)) {
12830 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_RemovePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12832 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12833 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12834 if (!SWIG_IsOK(res2
)) {
12835 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_RemovePage" "', expected argument " "2"" of type '" "wxWindow *""'");
12837 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12839 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12840 result
= (bool)(arg1
)->RemovePage(arg2
);
12841 wxPyEndAllowThreads(__tstate
);
12842 if (PyErr_Occurred()) SWIG_fail
;
12845 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12853 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
12854 PyObject
*resultobj
= 0;
12855 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12856 wxWindow
*arg2
= (wxWindow
*) 0 ;
12863 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
12864 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12865 if (!SWIG_IsOK(res1
)) {
12866 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12868 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12869 res2
= SWIG_ConvertPtr(swig_obj
[1], &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12870 if (!SWIG_IsOK(res2
)) {
12871 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "2"" of type '" "wxWindow *""'");
12873 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12875 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12876 result
= (bool)(arg1
)->SetActivePage(arg2
);
12877 wxPyEndAllowThreads(__tstate
);
12878 if (PyErr_Occurred()) SWIG_fail
;
12881 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12889 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
12890 PyObject
*resultobj
= 0;
12891 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12899 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
12900 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12901 if (!SWIG_IsOK(res1
)) {
12902 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12904 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12905 ecode2
= SWIG_AsVal_size_t(swig_obj
[1], &val2
);
12906 if (!SWIG_IsOK(ecode2
)) {
12907 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetActivePage" "', expected argument " "2"" of type '" "size_t""'");
12909 arg2
= static_cast< size_t >(val2
);
12911 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12912 result
= (bool)(arg1
)->SetActivePage(arg2
);
12913 wxPyEndAllowThreads(__tstate
);
12914 if (PyErr_Occurred()) SWIG_fail
;
12917 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12925 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetActivePage(PyObject
*self
, PyObject
*args
) {
12929 if (!(argc
= SWIG_Python_UnpackTuple(args
,"AuiTabContainer_SetActivePage",0,2,argv
))) SWIG_fail
;
12935 int res
= SWIG_ConvertPtr(argv
[1], &vptr
, SWIGTYPE_p_wxWindow
, 0);
12936 _v
= SWIG_CheckState(res
);
12938 if (!_v
) goto check_1
;
12939 return _wrap_AuiTabContainer_SetActivePage__SWIG_0(self
, argc
, argv
);
12944 return _wrap_AuiTabContainer_SetActivePage__SWIG_1(self
, argc
, argv
);
12948 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'AuiTabContainer_SetActivePage'");
12953 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetNoneActive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12954 PyObject
*resultobj
= 0;
12955 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12958 PyObject
*swig_obj
[1] ;
12960 if (!args
) SWIG_fail
;
12961 swig_obj
[0] = args
;
12962 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12963 if (!SWIG_IsOK(res1
)) {
12964 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetNoneActive" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
12966 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12968 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12969 (arg1
)->SetNoneActive();
12970 wxPyEndAllowThreads(__tstate
);
12971 if (PyErr_Occurred()) SWIG_fail
;
12973 resultobj
= SWIG_Py_Void();
12980 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetActivePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12981 PyObject
*resultobj
= 0;
12982 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
12986 PyObject
*swig_obj
[1] ;
12988 if (!args
) SWIG_fail
;
12989 swig_obj
[0] = args
;
12990 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
12991 if (!SWIG_IsOK(res1
)) {
12992 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetActivePage" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
12994 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
12996 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12997 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetActivePage();
12998 wxPyEndAllowThreads(__tstate
);
12999 if (PyErr_Occurred()) SWIG_fail
;
13001 resultobj
= SWIG_From_int(static_cast< int >(result
));
13008 SWIGINTERN PyObject
*_wrap_AuiTabContainer_TabHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13009 PyObject
*resultobj
= 0;
13010 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13013 wxWindow
**arg4
= (wxWindow
**) 0 ;
13023 PyObject
* obj0
= 0 ;
13024 PyObject
* obj1
= 0 ;
13025 PyObject
* obj2
= 0 ;
13026 PyObject
* obj3
= 0 ;
13027 char * kwnames
[] = {
13028 (char *) "self",(char *) "x",(char *) "y",(char *) "hit", NULL
13031 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_TabHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13032 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13033 if (!SWIG_IsOK(res1
)) {
13034 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13036 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13037 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13038 if (!SWIG_IsOK(ecode2
)) {
13039 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "2"" of type '" "int""'");
13041 arg2
= static_cast< int >(val2
);
13042 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13043 if (!SWIG_IsOK(ecode3
)) {
13044 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "3"" of type '" "int""'");
13046 arg3
= static_cast< int >(val3
);
13047 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_p_wxWindow
, 0 | 0 );
13048 if (!SWIG_IsOK(res4
)) {
13049 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_TabHitTest" "', expected argument " "4"" of type '" "wxWindow **""'");
13051 arg4
= reinterpret_cast< wxWindow
** >(argp4
);
13053 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13054 result
= (bool)((wxAuiTabContainer
const *)arg1
)->TabHitTest(arg2
,arg3
,arg4
);
13055 wxPyEndAllowThreads(__tstate
);
13056 if (PyErr_Occurred()) SWIG_fail
;
13059 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13067 SWIGINTERN PyObject
*_wrap_AuiTabContainer_ButtonHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13068 PyObject
*resultobj
= 0;
13069 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13072 wxAuiTabContainerButton
**arg4
= (wxAuiTabContainerButton
**) 0 ;
13082 PyObject
* obj0
= 0 ;
13083 PyObject
* obj1
= 0 ;
13084 PyObject
* obj2
= 0 ;
13085 PyObject
* obj3
= 0 ;
13086 char * kwnames
[] = {
13087 (char *) "self",(char *) "x",(char *) "y",(char *) "hit", NULL
13090 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:AuiTabContainer_ButtonHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13091 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13092 if (!SWIG_IsOK(res1
)) {
13093 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13095 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13096 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13097 if (!SWIG_IsOK(ecode2
)) {
13098 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "2"" of type '" "int""'");
13100 arg2
= static_cast< int >(val2
);
13101 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13102 if (!SWIG_IsOK(ecode3
)) {
13103 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "3"" of type '" "int""'");
13105 arg3
= static_cast< int >(val3
);
13106 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_p_wxAuiTabContainerButton
, 0 | 0 );
13107 if (!SWIG_IsOK(res4
)) {
13108 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_ButtonHitTest" "', expected argument " "4"" of type '" "wxAuiTabContainerButton **""'");
13110 arg4
= reinterpret_cast< wxAuiTabContainerButton
** >(argp4
);
13112 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13113 result
= (bool)((wxAuiTabContainer
const *)arg1
)->ButtonHitTest(arg2
,arg3
,arg4
);
13114 wxPyEndAllowThreads(__tstate
);
13115 if (PyErr_Occurred()) SWIG_fail
;
13118 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13126 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetWindowFromIdx(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13127 PyObject
*resultobj
= 0;
13128 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13130 wxWindow
*result
= 0 ;
13135 PyObject
* obj0
= 0 ;
13136 PyObject
* obj1
= 0 ;
13137 char * kwnames
[] = {
13138 (char *) "self",(char *) "idx", NULL
13141 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetWindowFromIdx",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13142 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13143 if (!SWIG_IsOK(res1
)) {
13144 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetWindowFromIdx" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13146 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13147 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13148 if (!SWIG_IsOK(ecode2
)) {
13149 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_GetWindowFromIdx" "', expected argument " "2"" of type '" "size_t""'");
13151 arg2
= static_cast< size_t >(val2
);
13153 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13154 result
= (wxWindow
*)((wxAuiTabContainer
const *)arg1
)->GetWindowFromIdx(arg2
);
13155 wxPyEndAllowThreads(__tstate
);
13156 if (PyErr_Occurred()) SWIG_fail
;
13159 resultobj
= wxPyMake_wxObject(result
, 0);
13167 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetIdxFromWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13168 PyObject
*resultobj
= 0;
13169 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13170 wxWindow
*arg2
= (wxWindow
*) 0 ;
13176 PyObject
* obj0
= 0 ;
13177 PyObject
* obj1
= 0 ;
13178 char * kwnames
[] = {
13179 (char *) "self",(char *) "page", NULL
13182 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetIdxFromWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13183 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13184 if (!SWIG_IsOK(res1
)) {
13185 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetIdxFromWindow" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13187 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13188 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13189 if (!SWIG_IsOK(res2
)) {
13190 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_GetIdxFromWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
13192 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13194 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13195 result
= (int)((wxAuiTabContainer
const *)arg1
)->GetIdxFromWindow(arg2
);
13196 wxPyEndAllowThreads(__tstate
);
13197 if (PyErr_Occurred()) SWIG_fail
;
13199 resultobj
= SWIG_From_int(static_cast< int >(result
));
13206 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPageCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13207 PyObject
*resultobj
= 0;
13208 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13212 PyObject
*swig_obj
[1] ;
13214 if (!args
) SWIG_fail
;
13215 swig_obj
[0] = args
;
13216 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13217 if (!SWIG_IsOK(res1
)) {
13218 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPageCount" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13220 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13222 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13223 result
= (size_t)((wxAuiTabContainer
const *)arg1
)->GetPageCount();
13224 wxPyEndAllowThreads(__tstate
);
13225 if (PyErr_Occurred()) SWIG_fail
;
13227 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
13234 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13235 PyObject
*resultobj
= 0;
13236 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13238 wxAuiNotebookPage
*result
= 0 ;
13243 PyObject
* obj0
= 0 ;
13244 PyObject
* obj1
= 0 ;
13245 char * kwnames
[] = {
13246 (char *) "self",(char *) "idx", NULL
13249 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_GetPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13250 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13251 if (!SWIG_IsOK(res1
)) {
13252 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPage" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13254 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13255 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13256 if (!SWIG_IsOK(ecode2
)) {
13257 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_GetPage" "', expected argument " "2"" of type '" "size_t""'");
13259 arg2
= static_cast< size_t >(val2
);
13261 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13263 wxAuiNotebookPage
&_result_ref
= (arg1
)->GetPage(arg2
);
13264 result
= (wxAuiNotebookPage
*) &_result_ref
;
13266 wxPyEndAllowThreads(__tstate
);
13267 if (PyErr_Occurred()) SWIG_fail
;
13269 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookPage
, 0 | 0 );
13276 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetPages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13277 PyObject
*resultobj
= 0;
13278 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13279 wxAuiNotebookPageArray
*result
= 0 ;
13282 PyObject
*swig_obj
[1] ;
13284 if (!args
) SWIG_fail
;
13285 swig_obj
[0] = args
;
13286 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13287 if (!SWIG_IsOK(res1
)) {
13288 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetPages" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13290 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13292 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13294 wxAuiNotebookPageArray
&_result_ref
= (arg1
)->GetPages();
13295 result
= (wxAuiNotebookPageArray
*) &_result_ref
;
13297 wxPyEndAllowThreads(__tstate
);
13298 if (PyErr_Occurred()) SWIG_fail
;
13300 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiNotebookPageArray
, 0 | 0 );
13307 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetNormalFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13308 PyObject
*resultobj
= 0;
13309 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13315 PyObject
* obj0
= 0 ;
13316 PyObject
* obj1
= 0 ;
13317 char * kwnames
[] = {
13318 (char *) "self",(char *) "normal_font", NULL
13321 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetNormalFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13322 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13323 if (!SWIG_IsOK(res1
)) {
13324 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13326 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13327 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
13328 if (!SWIG_IsOK(res2
)) {
13329 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
13332 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetNormalFont" "', expected argument " "2"" of type '" "wxFont const &""'");
13334 arg2
= reinterpret_cast< wxFont
* >(argp2
);
13336 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13337 (arg1
)->SetNormalFont((wxFont
const &)*arg2
);
13338 wxPyEndAllowThreads(__tstate
);
13339 if (PyErr_Occurred()) SWIG_fail
;
13341 resultobj
= SWIG_Py_Void();
13348 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetSelectedFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13349 PyObject
*resultobj
= 0;
13350 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13356 PyObject
* obj0
= 0 ;
13357 PyObject
* obj1
= 0 ;
13358 char * kwnames
[] = {
13359 (char *) "self",(char *) "selected_font", NULL
13362 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetSelectedFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13363 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13364 if (!SWIG_IsOK(res1
)) {
13365 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13367 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13368 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
13369 if (!SWIG_IsOK(res2
)) {
13370 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
13373 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetSelectedFont" "', expected argument " "2"" of type '" "wxFont const &""'");
13375 arg2
= reinterpret_cast< wxFont
* >(argp2
);
13377 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13378 (arg1
)->SetSelectedFont((wxFont
const &)*arg2
);
13379 wxPyEndAllowThreads(__tstate
);
13380 if (PyErr_Occurred()) SWIG_fail
;
13382 resultobj
= SWIG_Py_Void();
13389 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetMeasuringFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13390 PyObject
*resultobj
= 0;
13391 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13397 PyObject
* obj0
= 0 ;
13398 PyObject
* obj1
= 0 ;
13399 char * kwnames
[] = {
13400 (char *) "self",(char *) "measuring_font", NULL
13403 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetMeasuringFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13404 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13405 if (!SWIG_IsOK(res1
)) {
13406 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13408 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13409 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
13410 if (!SWIG_IsOK(res2
)) {
13411 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
13414 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_SetMeasuringFont" "', expected argument " "2"" of type '" "wxFont const &""'");
13416 arg2
= reinterpret_cast< wxFont
* >(argp2
);
13418 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13419 (arg1
)->SetMeasuringFont((wxFont
const &)*arg2
);
13420 wxPyEndAllowThreads(__tstate
);
13421 if (PyErr_Occurred()) SWIG_fail
;
13423 resultobj
= SWIG_Py_Void();
13430 SWIGINTERN PyObject
*_wrap_AuiTabContainer_DoShowHide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13431 PyObject
*resultobj
= 0;
13432 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13435 PyObject
*swig_obj
[1] ;
13437 if (!args
) SWIG_fail
;
13438 swig_obj
[0] = args
;
13439 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13440 if (!SWIG_IsOK(res1
)) {
13441 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_DoShowHide" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13443 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13445 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13446 (arg1
)->DoShowHide();
13447 wxPyEndAllowThreads(__tstate
);
13448 if (PyErr_Occurred()) SWIG_fail
;
13450 resultobj
= SWIG_Py_Void();
13457 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13458 PyObject
*resultobj
= 0;
13459 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13464 PyObject
* obj0
= 0 ;
13465 PyObject
* obj1
= 0 ;
13466 char * kwnames
[] = {
13467 (char *) "self",(char *) "rect", NULL
13470 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13471 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13472 if (!SWIG_IsOK(res1
)) {
13473 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetRect" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13475 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13478 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
13481 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13482 (arg1
)->SetRect((wxRect
const &)*arg2
);
13483 wxPyEndAllowThreads(__tstate
);
13484 if (PyErr_Occurred()) SWIG_fail
;
13486 resultobj
= SWIG_Py_Void();
13493 SWIGINTERN PyObject
*_wrap_AuiTabContainer_AddButton(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13494 PyObject
*resultobj
= 0;
13495 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13498 wxBitmap
const &arg4_defvalue
= wxNullBitmap
;
13499 wxBitmap
*arg4
= (wxBitmap
*) &arg4_defvalue
;
13500 wxBitmap
const &arg5_defvalue
= wxNullBitmap
;
13501 wxBitmap
*arg5
= (wxBitmap
*) &arg5_defvalue
;
13512 PyObject
* obj0
= 0 ;
13513 PyObject
* obj1
= 0 ;
13514 PyObject
* obj2
= 0 ;
13515 PyObject
* obj3
= 0 ;
13516 PyObject
* obj4
= 0 ;
13517 char * kwnames
[] = {
13518 (char *) "self",(char *) "id",(char *) "location",(char *) "normal_bitmap",(char *) "disabled_bitmap", NULL
13521 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:AuiTabContainer_AddButton",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
13522 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13523 if (!SWIG_IsOK(res1
)) {
13524 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13526 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13527 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13528 if (!SWIG_IsOK(ecode2
)) {
13529 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "2"" of type '" "int""'");
13531 arg2
= static_cast< int >(val2
);
13532 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13533 if (!SWIG_IsOK(ecode3
)) {
13534 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "3"" of type '" "int""'");
13536 arg3
= static_cast< int >(val3
);
13538 res4
= SWIG_ConvertPtr(obj3
, &argp4
, SWIGTYPE_p_wxBitmap
, 0 | 0);
13539 if (!SWIG_IsOK(res4
)) {
13540 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "4"" of type '" "wxBitmap const &""'");
13543 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddButton" "', expected argument " "4"" of type '" "wxBitmap const &""'");
13545 arg4
= reinterpret_cast< wxBitmap
* >(argp4
);
13548 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
, 0 | 0);
13549 if (!SWIG_IsOK(res5
)) {
13550 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiTabContainer_AddButton" "', expected argument " "5"" of type '" "wxBitmap const &""'");
13553 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiTabContainer_AddButton" "', expected argument " "5"" of type '" "wxBitmap const &""'");
13555 arg5
= reinterpret_cast< wxBitmap
* >(argp5
);
13558 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13559 (arg1
)->AddButton(arg2
,arg3
,(wxBitmap
const &)*arg4
,(wxBitmap
const &)*arg5
);
13560 wxPyEndAllowThreads(__tstate
);
13561 if (PyErr_Occurred()) SWIG_fail
;
13563 resultobj
= SWIG_Py_Void();
13570 SWIGINTERN PyObject
*_wrap_AuiTabContainer_GetTabOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13571 PyObject
*resultobj
= 0;
13572 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13576 PyObject
*swig_obj
[1] ;
13578 if (!args
) SWIG_fail
;
13579 swig_obj
[0] = args
;
13580 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13581 if (!SWIG_IsOK(res1
)) {
13582 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_GetTabOffset" "', expected argument " "1"" of type '" "wxAuiTabContainer const *""'");
13584 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13586 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13587 result
= (size_t)((wxAuiTabContainer
const *)arg1
)->GetTabOffset();
13588 wxPyEndAllowThreads(__tstate
);
13589 if (PyErr_Occurred()) SWIG_fail
;
13591 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
13598 SWIGINTERN PyObject
*_wrap_AuiTabContainer_SetTabOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13599 PyObject
*resultobj
= 0;
13600 wxAuiTabContainer
*arg1
= (wxAuiTabContainer
*) 0 ;
13606 PyObject
* obj0
= 0 ;
13607 PyObject
* obj1
= 0 ;
13608 char * kwnames
[] = {
13609 (char *) "self",(char *) "offset", NULL
13612 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiTabContainer_SetTabOffset",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13613 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiTabContainer
, 0 | 0 );
13614 if (!SWIG_IsOK(res1
)) {
13615 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiTabContainer_SetTabOffset" "', expected argument " "1"" of type '" "wxAuiTabContainer *""'");
13617 arg1
= reinterpret_cast< wxAuiTabContainer
* >(argp1
);
13618 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13619 if (!SWIG_IsOK(ecode2
)) {
13620 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiTabContainer_SetTabOffset" "', expected argument " "2"" of type '" "size_t""'");
13622 arg2
= static_cast< size_t >(val2
);
13624 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13625 (arg1
)->SetTabOffset(arg2
);
13626 wxPyEndAllowThreads(__tstate
);
13627 if (PyErr_Occurred()) SWIG_fail
;
13629 resultobj
= SWIG_Py_Void();
13636 SWIGINTERN PyObject
*AuiTabContainer_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13638 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13639 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabContainer
, SWIG_NewClientData(obj
));
13640 return SWIG_Py_Void();
13643 SWIGINTERN PyObject
*AuiTabContainer_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13644 return SWIG_Python_InitShadowInstance(args
);
13647 SWIGINTERN PyObject
*_wrap_new_AuiTabCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13648 PyObject
*resultobj
= 0;
13649 wxWindow
*arg1
= (wxWindow
*) 0 ;
13650 int arg2
= (int) wxID_ANY
;
13651 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
13652 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
13653 wxSize
const &arg4_defvalue
= wxDefaultSize
;
13654 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
13655 long arg5
= (long) 0 ;
13656 wxAuiTabCtrl
*result
= 0 ;
13665 PyObject
* obj0
= 0 ;
13666 PyObject
* obj1
= 0 ;
13667 PyObject
* obj2
= 0 ;
13668 PyObject
* obj3
= 0 ;
13669 PyObject
* obj4
= 0 ;
13670 char * kwnames
[] = {
13671 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
13674 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_AuiTabCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
13675 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13676 if (!SWIG_IsOK(res1
)) {
13677 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiTabCtrl" "', expected argument " "1"" of type '" "wxWindow *""'");
13679 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
13681 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13682 if (!SWIG_IsOK(ecode2
)) {
13683 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiTabCtrl" "', expected argument " "2"" of type '" "int""'");
13685 arg2
= static_cast< int >(val2
);
13690 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
13696 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
13700 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
13701 if (!SWIG_IsOK(ecode5
)) {
13702 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiTabCtrl" "', expected argument " "5"" of type '" "long""'");
13704 arg5
= static_cast< long >(val5
);
13707 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13708 result
= (wxAuiTabCtrl
*)new wxAuiTabCtrl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
13709 wxPyEndAllowThreads(__tstate
);
13710 if (PyErr_Occurred()) SWIG_fail
;
13712 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiTabCtrl
, SWIG_POINTER_NEW
| 0 );
13719 SWIGINTERN PyObject
*_wrap_delete_AuiTabCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13720 PyObject
*resultobj
= 0;
13721 wxAuiTabCtrl
*arg1
= (wxAuiTabCtrl
*) 0 ;
13724 PyObject
*swig_obj
[1] ;
13726 if (!args
) SWIG_fail
;
13727 swig_obj
[0] = args
;
13728 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiTabCtrl
, SWIG_POINTER_DISOWN
| 0 );
13729 if (!SWIG_IsOK(res1
)) {
13730 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_AuiTabCtrl" "', expected argument " "1"" of type '" "wxAuiTabCtrl *""'");
13732 arg1
= reinterpret_cast< wxAuiTabCtrl
* >(argp1
);
13734 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13737 wxPyEndAllowThreads(__tstate
);
13738 if (PyErr_Occurred()) SWIG_fail
;
13740 resultobj
= SWIG_Py_Void();
13747 SWIGINTERN PyObject
*AuiTabCtrl_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13749 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13750 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiTabCtrl
, SWIG_NewClientData(obj
));
13751 return SWIG_Py_Void();
13754 SWIGINTERN PyObject
*AuiTabCtrl_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13755 return SWIG_Python_InitShadowInstance(args
);
13758 SWIGINTERN PyObject
*_wrap_new_PreAuiMultiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13759 PyObject
*resultobj
= 0;
13760 wxAuiMultiNotebook
*result
= 0 ;
13762 if (!SWIG_Python_UnpackTuple(args
,"new_PreAuiMultiNotebook",0,0,0)) SWIG_fail
;
13764 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13765 result
= (wxAuiMultiNotebook
*)new wxAuiMultiNotebook();
13766 wxPyEndAllowThreads(__tstate
);
13767 if (PyErr_Occurred()) SWIG_fail
;
13769 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMultiNotebook
, SWIG_POINTER_OWN
| 0 );
13776 SWIGINTERN PyObject
*_wrap_new_AuiMultiNotebook(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13777 PyObject
*resultobj
= 0;
13778 wxWindow
*arg1
= (wxWindow
*) 0 ;
13779 int arg2
= (int) wxID_ANY
;
13780 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
13781 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
13782 wxSize
const &arg4_defvalue
= wxDefaultSize
;
13783 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
13784 long arg5
= (long) 0 ;
13785 wxAuiMultiNotebook
*result
= 0 ;
13794 PyObject
* obj0
= 0 ;
13795 PyObject
* obj1
= 0 ;
13796 PyObject
* obj2
= 0 ;
13797 PyObject
* obj3
= 0 ;
13798 PyObject
* obj4
= 0 ;
13799 char * kwnames
[] = {
13800 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
13803 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:new_AuiMultiNotebook",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
13804 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13805 if (!SWIG_IsOK(res1
)) {
13806 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_AuiMultiNotebook" "', expected argument " "1"" of type '" "wxWindow *""'");
13808 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
13810 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13811 if (!SWIG_IsOK(ecode2
)) {
13812 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_AuiMultiNotebook" "', expected argument " "2"" of type '" "int""'");
13814 arg2
= static_cast< int >(val2
);
13819 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
13825 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
13829 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
13830 if (!SWIG_IsOK(ecode5
)) {
13831 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_AuiMultiNotebook" "', expected argument " "5"" of type '" "long""'");
13833 arg5
= static_cast< long >(val5
);
13836 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13837 result
= (wxAuiMultiNotebook
*)new wxAuiMultiNotebook(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
);
13838 wxPyEndAllowThreads(__tstate
);
13839 if (PyErr_Occurred()) SWIG_fail
;
13841 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxAuiMultiNotebook
, SWIG_POINTER_NEW
| 0 );
13848 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13849 PyObject
*resultobj
= 0;
13850 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
13851 wxWindow
*arg2
= (wxWindow
*) 0 ;
13852 int arg3
= (int) wxID_ANY
;
13853 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
13854 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
13855 wxSize
const &arg5_defvalue
= wxDefaultSize
;
13856 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
13857 long arg6
= (long) 0 ;
13869 PyObject
* obj0
= 0 ;
13870 PyObject
* obj1
= 0 ;
13871 PyObject
* obj2
= 0 ;
13872 PyObject
* obj3
= 0 ;
13873 PyObject
* obj4
= 0 ;
13874 PyObject
* obj5
= 0 ;
13875 char * kwnames
[] = {
13876 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
13879 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:AuiMultiNotebook_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
13880 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
13881 if (!SWIG_IsOK(res1
)) {
13882 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_Create" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
13884 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
13885 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13886 if (!SWIG_IsOK(res2
)) {
13887 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMultiNotebook_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
13889 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13891 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13892 if (!SWIG_IsOK(ecode3
)) {
13893 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "AuiMultiNotebook_Create" "', expected argument " "3"" of type '" "int""'");
13895 arg3
= static_cast< int >(val3
);
13900 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
13906 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
13910 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
13911 if (!SWIG_IsOK(ecode6
)) {
13912 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "AuiMultiNotebook_Create" "', expected argument " "6"" of type '" "long""'");
13914 arg6
= static_cast< long >(val6
);
13917 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13918 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
);
13919 wxPyEndAllowThreads(__tstate
);
13920 if (PyErr_Occurred()) SWIG_fail
;
13923 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13931 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_AddPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13932 PyObject
*resultobj
= 0;
13933 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
13934 wxWindow
*arg2
= (wxWindow
*) 0 ;
13935 wxString
*arg3
= 0 ;
13936 bool arg4
= (bool) false ;
13937 wxBitmap
const &arg5_defvalue
= wxNullBitmap
;
13938 wxBitmap
*arg5
= (wxBitmap
*) &arg5_defvalue
;
13944 bool temp3
= false ;
13949 PyObject
* obj0
= 0 ;
13950 PyObject
* obj1
= 0 ;
13951 PyObject
* obj2
= 0 ;
13952 PyObject
* obj3
= 0 ;
13953 PyObject
* obj4
= 0 ;
13954 char * kwnames
[] = {
13955 (char *) "self",(char *) "page",(char *) "caption",(char *) "select",(char *) "bitmap", NULL
13958 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:AuiMultiNotebook_AddPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
13959 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
13960 if (!SWIG_IsOK(res1
)) {
13961 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_AddPage" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
13963 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
13964 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13965 if (!SWIG_IsOK(res2
)) {
13966 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMultiNotebook_AddPage" "', expected argument " "2"" of type '" "wxWindow *""'");
13968 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13970 arg3
= wxString_in_helper(obj2
);
13971 if (arg3
== NULL
) SWIG_fail
;
13975 ecode4
= SWIG_AsVal_bool(obj3
, &val4
);
13976 if (!SWIG_IsOK(ecode4
)) {
13977 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "AuiMultiNotebook_AddPage" "', expected argument " "4"" of type '" "bool""'");
13979 arg4
= static_cast< bool >(val4
);
13982 res5
= SWIG_ConvertPtr(obj4
, &argp5
, SWIGTYPE_p_wxBitmap
, 0 | 0);
13983 if (!SWIG_IsOK(res5
)) {
13984 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "AuiMultiNotebook_AddPage" "', expected argument " "5"" of type '" "wxBitmap const &""'");
13987 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMultiNotebook_AddPage" "', expected argument " "5"" of type '" "wxBitmap const &""'");
13989 arg5
= reinterpret_cast< wxBitmap
* >(argp5
);
13992 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13993 result
= (bool)(arg1
)->AddPage(arg2
,(wxString
const &)*arg3
,arg4
,(wxBitmap
const &)*arg5
);
13994 wxPyEndAllowThreads(__tstate
);
13995 if (PyErr_Occurred()) SWIG_fail
;
13998 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14014 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_InsertPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14015 PyObject
*resultobj
= 0;
14016 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
14018 wxWindow
*arg3
= (wxWindow
*) 0 ;
14019 wxString
*arg4
= 0 ;
14020 bool arg5
= (bool) false ;
14021 wxBitmap
const &arg6_defvalue
= wxNullBitmap
;
14022 wxBitmap
*arg6
= (wxBitmap
*) &arg6_defvalue
;
14030 bool temp4
= false ;
14035 PyObject
* obj0
= 0 ;
14036 PyObject
* obj1
= 0 ;
14037 PyObject
* obj2
= 0 ;
14038 PyObject
* obj3
= 0 ;
14039 PyObject
* obj4
= 0 ;
14040 PyObject
* obj5
= 0 ;
14041 char * kwnames
[] = {
14042 (char *) "self",(char *) "page_idx",(char *) "page",(char *) "caption",(char *) "select",(char *) "bitmap", NULL
14045 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:AuiMultiNotebook_InsertPage",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
14046 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
14047 if (!SWIG_IsOK(res1
)) {
14048 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_InsertPage" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
14050 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
14051 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14052 if (!SWIG_IsOK(ecode2
)) {
14053 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMultiNotebook_InsertPage" "', expected argument " "2"" of type '" "size_t""'");
14055 arg2
= static_cast< size_t >(val2
);
14056 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14057 if (!SWIG_IsOK(res3
)) {
14058 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "AuiMultiNotebook_InsertPage" "', expected argument " "3"" of type '" "wxWindow *""'");
14060 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
14062 arg4
= wxString_in_helper(obj3
);
14063 if (arg4
== NULL
) SWIG_fail
;
14067 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
14068 if (!SWIG_IsOK(ecode5
)) {
14069 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "AuiMultiNotebook_InsertPage" "', expected argument " "5"" of type '" "bool""'");
14071 arg5
= static_cast< bool >(val5
);
14074 res6
= SWIG_ConvertPtr(obj5
, &argp6
, SWIGTYPE_p_wxBitmap
, 0 | 0);
14075 if (!SWIG_IsOK(res6
)) {
14076 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "AuiMultiNotebook_InsertPage" "', expected argument " "6"" of type '" "wxBitmap const &""'");
14079 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "AuiMultiNotebook_InsertPage" "', expected argument " "6"" of type '" "wxBitmap const &""'");
14081 arg6
= reinterpret_cast< wxBitmap
* >(argp6
);
14084 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14085 result
= (bool)(arg1
)->InsertPage(arg2
,arg3
,(wxString
const &)*arg4
,arg5
,(wxBitmap
const &)*arg6
);
14086 wxPyEndAllowThreads(__tstate
);
14087 if (PyErr_Occurred()) SWIG_fail
;
14090 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14106 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_DeletePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14107 PyObject
*resultobj
= 0;
14108 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
14115 PyObject
* obj0
= 0 ;
14116 PyObject
* obj1
= 0 ;
14117 char * kwnames
[] = {
14118 (char *) "self",(char *) "page", NULL
14121 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMultiNotebook_DeletePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14122 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
14123 if (!SWIG_IsOK(res1
)) {
14124 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_DeletePage" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
14126 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
14127 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14128 if (!SWIG_IsOK(ecode2
)) {
14129 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMultiNotebook_DeletePage" "', expected argument " "2"" of type '" "size_t""'");
14131 arg2
= static_cast< size_t >(val2
);
14133 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14134 result
= (bool)(arg1
)->DeletePage(arg2
);
14135 wxPyEndAllowThreads(__tstate
);
14136 if (PyErr_Occurred()) SWIG_fail
;
14139 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14147 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_RemovePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14148 PyObject
*resultobj
= 0;
14149 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
14156 PyObject
* obj0
= 0 ;
14157 PyObject
* obj1
= 0 ;
14158 char * kwnames
[] = {
14159 (char *) "self",(char *) "page", NULL
14162 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMultiNotebook_RemovePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14163 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
14164 if (!SWIG_IsOK(res1
)) {
14165 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_RemovePage" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
14167 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
14168 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14169 if (!SWIG_IsOK(ecode2
)) {
14170 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMultiNotebook_RemovePage" "', expected argument " "2"" of type '" "size_t""'");
14172 arg2
= static_cast< size_t >(val2
);
14174 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14175 result
= (bool)(arg1
)->RemovePage(arg2
);
14176 wxPyEndAllowThreads(__tstate
);
14177 if (PyErr_Occurred()) SWIG_fail
;
14180 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14188 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_SetPageText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14189 PyObject
*resultobj
= 0;
14190 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
14192 wxString
*arg3
= 0 ;
14198 bool temp3
= false ;
14199 PyObject
* obj0
= 0 ;
14200 PyObject
* obj1
= 0 ;
14201 PyObject
* obj2
= 0 ;
14202 char * kwnames
[] = {
14203 (char *) "self",(char *) "page",(char *) "text", NULL
14206 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:AuiMultiNotebook_SetPageText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14207 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
14208 if (!SWIG_IsOK(res1
)) {
14209 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_SetPageText" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
14211 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
14212 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14213 if (!SWIG_IsOK(ecode2
)) {
14214 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMultiNotebook_SetPageText" "', expected argument " "2"" of type '" "size_t""'");
14216 arg2
= static_cast< size_t >(val2
);
14218 arg3
= wxString_in_helper(obj2
);
14219 if (arg3
== NULL
) SWIG_fail
;
14223 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14224 result
= (bool)(arg1
)->SetPageText(arg2
,(wxString
const &)*arg3
);
14225 wxPyEndAllowThreads(__tstate
);
14226 if (PyErr_Occurred()) SWIG_fail
;
14229 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14245 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14246 PyObject
*resultobj
= 0;
14247 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
14254 PyObject
* obj0
= 0 ;
14255 PyObject
* obj1
= 0 ;
14256 char * kwnames
[] = {
14257 (char *) "self",(char *) "new_page", NULL
14260 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMultiNotebook_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14261 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
14262 if (!SWIG_IsOK(res1
)) {
14263 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_SetSelection" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
14265 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
14266 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14267 if (!SWIG_IsOK(ecode2
)) {
14268 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMultiNotebook_SetSelection" "', expected argument " "2"" of type '" "size_t""'");
14270 arg2
= static_cast< size_t >(val2
);
14272 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14273 result
= (size_t)(arg1
)->SetSelection(arg2
);
14274 wxPyEndAllowThreads(__tstate
);
14275 if (PyErr_Occurred()) SWIG_fail
;
14277 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14284 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14285 PyObject
*resultobj
= 0;
14286 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
14290 PyObject
*swig_obj
[1] ;
14292 if (!args
) SWIG_fail
;
14293 swig_obj
[0] = args
;
14294 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
14295 if (!SWIG_IsOK(res1
)) {
14296 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_GetSelection" "', expected argument " "1"" of type '" "wxAuiMultiNotebook const *""'");
14298 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
14300 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14301 result
= (int)((wxAuiMultiNotebook
const *)arg1
)->GetSelection();
14302 wxPyEndAllowThreads(__tstate
);
14303 if (PyErr_Occurred()) SWIG_fail
;
14305 resultobj
= SWIG_From_int(static_cast< int >(result
));
14312 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_GetPageCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14313 PyObject
*resultobj
= 0;
14314 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
14318 PyObject
*swig_obj
[1] ;
14320 if (!args
) SWIG_fail
;
14321 swig_obj
[0] = args
;
14322 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
14323 if (!SWIG_IsOK(res1
)) {
14324 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_GetPageCount" "', expected argument " "1"" of type '" "wxAuiMultiNotebook const *""'");
14326 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
14328 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14329 result
= (size_t)((wxAuiMultiNotebook
const *)arg1
)->GetPageCount();
14330 wxPyEndAllowThreads(__tstate
);
14331 if (PyErr_Occurred()) SWIG_fail
;
14333 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14340 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_GetPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14341 PyObject
*resultobj
= 0;
14342 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
14344 wxWindow
*result
= 0 ;
14349 PyObject
* obj0
= 0 ;
14350 PyObject
* obj1
= 0 ;
14351 char * kwnames
[] = {
14352 (char *) "self",(char *) "page_idx", NULL
14355 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMultiNotebook_GetPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14356 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
14357 if (!SWIG_IsOK(res1
)) {
14358 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_GetPage" "', expected argument " "1"" of type '" "wxAuiMultiNotebook const *""'");
14360 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
14361 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14362 if (!SWIG_IsOK(ecode2
)) {
14363 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "AuiMultiNotebook_GetPage" "', expected argument " "2"" of type '" "size_t""'");
14365 arg2
= static_cast< size_t >(val2
);
14367 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14368 result
= (wxWindow
*)((wxAuiMultiNotebook
const *)arg1
)->GetPage(arg2
);
14369 wxPyEndAllowThreads(__tstate
);
14370 if (PyErr_Occurred()) SWIG_fail
;
14373 resultobj
= wxPyMake_wxObject(result
, 0);
14381 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_SetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14382 PyObject
*resultobj
= 0;
14383 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
14384 wxTabArt
*arg2
= (wxTabArt
*) 0 ;
14389 PyObject
* obj0
= 0 ;
14390 PyObject
* obj1
= 0 ;
14391 char * kwnames
[] = {
14392 (char *) "self",(char *) "art", NULL
14395 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:AuiMultiNotebook_SetArtProvider",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14396 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
14397 if (!SWIG_IsOK(res1
)) {
14398 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_SetArtProvider" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
14400 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
14401 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxTabArt
, 0 | 0 );
14402 if (!SWIG_IsOK(res2
)) {
14403 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "AuiMultiNotebook_SetArtProvider" "', expected argument " "2"" of type '" "wxTabArt *""'");
14405 arg2
= reinterpret_cast< wxTabArt
* >(argp2
);
14407 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14408 (arg1
)->SetArtProvider(arg2
);
14409 wxPyEndAllowThreads(__tstate
);
14410 if (PyErr_Occurred()) SWIG_fail
;
14412 resultobj
= SWIG_Py_Void();
14419 SWIGINTERN PyObject
*_wrap_AuiMultiNotebook_GetArtProvider(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14420 PyObject
*resultobj
= 0;
14421 wxAuiMultiNotebook
*arg1
= (wxAuiMultiNotebook
*) 0 ;
14422 wxTabArt
*result
= 0 ;
14425 PyObject
*swig_obj
[1] ;
14427 if (!args
) SWIG_fail
;
14428 swig_obj
[0] = args
;
14429 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxAuiMultiNotebook
, 0 | 0 );
14430 if (!SWIG_IsOK(res1
)) {
14431 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "AuiMultiNotebook_GetArtProvider" "', expected argument " "1"" of type '" "wxAuiMultiNotebook *""'");
14433 arg1
= reinterpret_cast< wxAuiMultiNotebook
* >(argp1
);
14435 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14436 result
= (wxTabArt
*)(arg1
)->GetArtProvider();
14437 wxPyEndAllowThreads(__tstate
);
14438 if (PyErr_Occurred()) SWIG_fail
;
14440 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTabArt
, 0 | 0 );
14447 SWIGINTERN PyObject
*AuiMultiNotebook_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14449 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
14450 SWIG_TypeNewClientData(SWIGTYPE_p_wxAuiMultiNotebook
, SWIG_NewClientData(obj
));
14451 return SWIG_Py_Void();
14454 SWIGINTERN PyObject
*AuiMultiNotebook_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14455 return SWIG_Python_InitShadowInstance(args
);
14458 SWIGINTERN PyObject
*PyDockArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14460 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
14461 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyDockArt
, SWIG_NewClientData(obj
));
14462 return SWIG_Py_Void();
14465 SWIGINTERN PyObject
*PyTabArt_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14467 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
14468 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyTabArt
, SWIG_NewClientData(obj
));
14469 return SWIG_Py_Void();
14472 static PyMethodDef SwigMethods
[] = {
14473 { (char *)"new_PaneInfo", (PyCFunction
)_wrap_new_PaneInfo
, METH_NOARGS
, NULL
},
14474 { (char *)"delete_PaneInfo", (PyCFunction
)_wrap_delete_PaneInfo
, METH_O
, NULL
},
14475 { (char *)"PaneInfo_SafeSet", (PyCFunction
) _wrap_PaneInfo_SafeSet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14476 { (char *)"PaneInfo_IsOk", (PyCFunction
)_wrap_PaneInfo_IsOk
, METH_O
, NULL
},
14477 { (char *)"PaneInfo_IsFixed", (PyCFunction
)_wrap_PaneInfo_IsFixed
, METH_O
, NULL
},
14478 { (char *)"PaneInfo_IsResizable", (PyCFunction
)_wrap_PaneInfo_IsResizable
, METH_O
, NULL
},
14479 { (char *)"PaneInfo_IsShown", (PyCFunction
)_wrap_PaneInfo_IsShown
, METH_O
, NULL
},
14480 { (char *)"PaneInfo_IsFloating", (PyCFunction
)_wrap_PaneInfo_IsFloating
, METH_O
, NULL
},
14481 { (char *)"PaneInfo_IsDocked", (PyCFunction
)_wrap_PaneInfo_IsDocked
, METH_O
, NULL
},
14482 { (char *)"PaneInfo_IsToolbar", (PyCFunction
)_wrap_PaneInfo_IsToolbar
, METH_O
, NULL
},
14483 { (char *)"PaneInfo_IsTopDockable", (PyCFunction
)_wrap_PaneInfo_IsTopDockable
, METH_O
, NULL
},
14484 { (char *)"PaneInfo_IsBottomDockable", (PyCFunction
)_wrap_PaneInfo_IsBottomDockable
, METH_O
, NULL
},
14485 { (char *)"PaneInfo_IsLeftDockable", (PyCFunction
)_wrap_PaneInfo_IsLeftDockable
, METH_O
, NULL
},
14486 { (char *)"PaneInfo_IsRightDockable", (PyCFunction
)_wrap_PaneInfo_IsRightDockable
, METH_O
, NULL
},
14487 { (char *)"PaneInfo_IsFloatable", (PyCFunction
)_wrap_PaneInfo_IsFloatable
, METH_O
, NULL
},
14488 { (char *)"PaneInfo_IsMovable", (PyCFunction
)_wrap_PaneInfo_IsMovable
, METH_O
, NULL
},
14489 { (char *)"PaneInfo_IsDestroyOnClose", (PyCFunction
)_wrap_PaneInfo_IsDestroyOnClose
, METH_O
, NULL
},
14490 { (char *)"PaneInfo_HasCaption", (PyCFunction
)_wrap_PaneInfo_HasCaption
, METH_O
, NULL
},
14491 { (char *)"PaneInfo_HasGripper", (PyCFunction
)_wrap_PaneInfo_HasGripper
, METH_O
, NULL
},
14492 { (char *)"PaneInfo_HasBorder", (PyCFunction
)_wrap_PaneInfo_HasBorder
, METH_O
, NULL
},
14493 { (char *)"PaneInfo_HasCloseButton", (PyCFunction
)_wrap_PaneInfo_HasCloseButton
, METH_O
, NULL
},
14494 { (char *)"PaneInfo_HasMaximizeButton", (PyCFunction
)_wrap_PaneInfo_HasMaximizeButton
, METH_O
, NULL
},
14495 { (char *)"PaneInfo_HasMinimizeButton", (PyCFunction
)_wrap_PaneInfo_HasMinimizeButton
, METH_O
, NULL
},
14496 { (char *)"PaneInfo_HasPinButton", (PyCFunction
)_wrap_PaneInfo_HasPinButton
, METH_O
, NULL
},
14497 { (char *)"PaneInfo_HasGripperTop", (PyCFunction
)_wrap_PaneInfo_HasGripperTop
, METH_O
, NULL
},
14498 { (char *)"PaneInfo_Window", (PyCFunction
) _wrap_PaneInfo_Window
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14499 { (char *)"PaneInfo_Name", (PyCFunction
) _wrap_PaneInfo_Name
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14500 { (char *)"PaneInfo_Caption", (PyCFunction
) _wrap_PaneInfo_Caption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14501 { (char *)"PaneInfo_Left", (PyCFunction
)_wrap_PaneInfo_Left
, METH_O
, NULL
},
14502 { (char *)"PaneInfo_Right", (PyCFunction
)_wrap_PaneInfo_Right
, METH_O
, NULL
},
14503 { (char *)"PaneInfo_Top", (PyCFunction
)_wrap_PaneInfo_Top
, METH_O
, NULL
},
14504 { (char *)"PaneInfo_Bottom", (PyCFunction
)_wrap_PaneInfo_Bottom
, METH_O
, NULL
},
14505 { (char *)"PaneInfo_Center", (PyCFunction
)_wrap_PaneInfo_Center
, METH_O
, NULL
},
14506 { (char *)"PaneInfo_Centre", (PyCFunction
)_wrap_PaneInfo_Centre
, METH_O
, NULL
},
14507 { (char *)"PaneInfo_Direction", (PyCFunction
) _wrap_PaneInfo_Direction
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14508 { (char *)"PaneInfo_Layer", (PyCFunction
) _wrap_PaneInfo_Layer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14509 { (char *)"PaneInfo_Row", (PyCFunction
) _wrap_PaneInfo_Row
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14510 { (char *)"PaneInfo_Position", (PyCFunction
) _wrap_PaneInfo_Position
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14511 { (char *)"PaneInfo_BestSize", (PyCFunction
) _wrap_PaneInfo_BestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14512 { (char *)"PaneInfo_MinSize", (PyCFunction
) _wrap_PaneInfo_MinSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14513 { (char *)"PaneInfo_MaxSize", (PyCFunction
) _wrap_PaneInfo_MaxSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14514 { (char *)"PaneInfo_FloatingPosition", (PyCFunction
) _wrap_PaneInfo_FloatingPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14515 { (char *)"PaneInfo_FloatingSize", (PyCFunction
) _wrap_PaneInfo_FloatingSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14516 { (char *)"PaneInfo_Fixed", (PyCFunction
)_wrap_PaneInfo_Fixed
, METH_O
, NULL
},
14517 { (char *)"PaneInfo_Resizable", (PyCFunction
) _wrap_PaneInfo_Resizable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14518 { (char *)"PaneInfo_Dock", (PyCFunction
)_wrap_PaneInfo_Dock
, METH_O
, NULL
},
14519 { (char *)"PaneInfo_Float", (PyCFunction
)_wrap_PaneInfo_Float
, METH_O
, NULL
},
14520 { (char *)"PaneInfo_Hide", (PyCFunction
)_wrap_PaneInfo_Hide
, METH_O
, NULL
},
14521 { (char *)"PaneInfo_Show", (PyCFunction
) _wrap_PaneInfo_Show
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14522 { (char *)"PaneInfo_CaptionVisible", (PyCFunction
) _wrap_PaneInfo_CaptionVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14523 { (char *)"PaneInfo_PaneBorder", (PyCFunction
) _wrap_PaneInfo_PaneBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14524 { (char *)"PaneInfo_Gripper", (PyCFunction
) _wrap_PaneInfo_Gripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14525 { (char *)"PaneInfo_GripperTop", (PyCFunction
) _wrap_PaneInfo_GripperTop
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14526 { (char *)"PaneInfo_CloseButton", (PyCFunction
) _wrap_PaneInfo_CloseButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14527 { (char *)"PaneInfo_MaximizeButton", (PyCFunction
) _wrap_PaneInfo_MaximizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14528 { (char *)"PaneInfo_MinimizeButton", (PyCFunction
) _wrap_PaneInfo_MinimizeButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14529 { (char *)"PaneInfo_PinButton", (PyCFunction
) _wrap_PaneInfo_PinButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14530 { (char *)"PaneInfo_DestroyOnClose", (PyCFunction
) _wrap_PaneInfo_DestroyOnClose
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14531 { (char *)"PaneInfo_TopDockable", (PyCFunction
) _wrap_PaneInfo_TopDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14532 { (char *)"PaneInfo_BottomDockable", (PyCFunction
) _wrap_PaneInfo_BottomDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14533 { (char *)"PaneInfo_LeftDockable", (PyCFunction
) _wrap_PaneInfo_LeftDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14534 { (char *)"PaneInfo_RightDockable", (PyCFunction
) _wrap_PaneInfo_RightDockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14535 { (char *)"PaneInfo_Floatable", (PyCFunction
) _wrap_PaneInfo_Floatable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14536 { (char *)"PaneInfo_Movable", (PyCFunction
) _wrap_PaneInfo_Movable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14537 { (char *)"PaneInfo_Dockable", (PyCFunction
) _wrap_PaneInfo_Dockable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14538 { (char *)"PaneInfo_DefaultPane", (PyCFunction
)_wrap_PaneInfo_DefaultPane
, METH_O
, NULL
},
14539 { (char *)"PaneInfo_CentrePane", (PyCFunction
)_wrap_PaneInfo_CentrePane
, METH_O
, NULL
},
14540 { (char *)"PaneInfo_CenterPane", (PyCFunction
)_wrap_PaneInfo_CenterPane
, METH_O
, NULL
},
14541 { (char *)"PaneInfo_ToolbarPane", (PyCFunction
)_wrap_PaneInfo_ToolbarPane
, METH_O
, NULL
},
14542 { (char *)"PaneInfo_SetFlag", (PyCFunction
) _wrap_PaneInfo_SetFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14543 { (char *)"PaneInfo_HasFlag", (PyCFunction
) _wrap_PaneInfo_HasFlag
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14544 { (char *)"PaneInfo_name_set", _wrap_PaneInfo_name_set
, METH_VARARGS
, NULL
},
14545 { (char *)"PaneInfo_name_get", (PyCFunction
)_wrap_PaneInfo_name_get
, METH_O
, NULL
},
14546 { (char *)"PaneInfo_caption_set", _wrap_PaneInfo_caption_set
, METH_VARARGS
, NULL
},
14547 { (char *)"PaneInfo_caption_get", (PyCFunction
)_wrap_PaneInfo_caption_get
, METH_O
, NULL
},
14548 { (char *)"PaneInfo_window_set", _wrap_PaneInfo_window_set
, METH_VARARGS
, NULL
},
14549 { (char *)"PaneInfo_window_get", (PyCFunction
)_wrap_PaneInfo_window_get
, METH_O
, NULL
},
14550 { (char *)"PaneInfo_frame_set", _wrap_PaneInfo_frame_set
, METH_VARARGS
, NULL
},
14551 { (char *)"PaneInfo_frame_get", (PyCFunction
)_wrap_PaneInfo_frame_get
, METH_O
, NULL
},
14552 { (char *)"PaneInfo_state_set", _wrap_PaneInfo_state_set
, METH_VARARGS
, NULL
},
14553 { (char *)"PaneInfo_state_get", (PyCFunction
)_wrap_PaneInfo_state_get
, METH_O
, NULL
},
14554 { (char *)"PaneInfo_dock_direction_set", _wrap_PaneInfo_dock_direction_set
, METH_VARARGS
, NULL
},
14555 { (char *)"PaneInfo_dock_direction_get", (PyCFunction
)_wrap_PaneInfo_dock_direction_get
, METH_O
, NULL
},
14556 { (char *)"PaneInfo_dock_layer_set", _wrap_PaneInfo_dock_layer_set
, METH_VARARGS
, NULL
},
14557 { (char *)"PaneInfo_dock_layer_get", (PyCFunction
)_wrap_PaneInfo_dock_layer_get
, METH_O
, NULL
},
14558 { (char *)"PaneInfo_dock_row_set", _wrap_PaneInfo_dock_row_set
, METH_VARARGS
, NULL
},
14559 { (char *)"PaneInfo_dock_row_get", (PyCFunction
)_wrap_PaneInfo_dock_row_get
, METH_O
, NULL
},
14560 { (char *)"PaneInfo_dock_pos_set", _wrap_PaneInfo_dock_pos_set
, METH_VARARGS
, NULL
},
14561 { (char *)"PaneInfo_dock_pos_get", (PyCFunction
)_wrap_PaneInfo_dock_pos_get
, METH_O
, NULL
},
14562 { (char *)"PaneInfo_best_size_set", _wrap_PaneInfo_best_size_set
, METH_VARARGS
, NULL
},
14563 { (char *)"PaneInfo_best_size_get", (PyCFunction
)_wrap_PaneInfo_best_size_get
, METH_O
, NULL
},
14564 { (char *)"PaneInfo_min_size_set", _wrap_PaneInfo_min_size_set
, METH_VARARGS
, NULL
},
14565 { (char *)"PaneInfo_min_size_get", (PyCFunction
)_wrap_PaneInfo_min_size_get
, METH_O
, NULL
},
14566 { (char *)"PaneInfo_max_size_set", _wrap_PaneInfo_max_size_set
, METH_VARARGS
, NULL
},
14567 { (char *)"PaneInfo_max_size_get", (PyCFunction
)_wrap_PaneInfo_max_size_get
, METH_O
, NULL
},
14568 { (char *)"PaneInfo_floating_pos_set", _wrap_PaneInfo_floating_pos_set
, METH_VARARGS
, NULL
},
14569 { (char *)"PaneInfo_floating_pos_get", (PyCFunction
)_wrap_PaneInfo_floating_pos_get
, METH_O
, NULL
},
14570 { (char *)"PaneInfo_floating_size_set", _wrap_PaneInfo_floating_size_set
, METH_VARARGS
, NULL
},
14571 { (char *)"PaneInfo_floating_size_get", (PyCFunction
)_wrap_PaneInfo_floating_size_get
, METH_O
, NULL
},
14572 { (char *)"PaneInfo_dock_proportion_set", _wrap_PaneInfo_dock_proportion_set
, METH_VARARGS
, NULL
},
14573 { (char *)"PaneInfo_dock_proportion_get", (PyCFunction
)_wrap_PaneInfo_dock_proportion_get
, METH_O
, NULL
},
14574 { (char *)"PaneInfo_buttons_set", _wrap_PaneInfo_buttons_set
, METH_VARARGS
, NULL
},
14575 { (char *)"PaneInfo_buttons_get", (PyCFunction
)_wrap_PaneInfo_buttons_get
, METH_O
, NULL
},
14576 { (char *)"PaneInfo_rect_set", _wrap_PaneInfo_rect_set
, METH_VARARGS
, NULL
},
14577 { (char *)"PaneInfo_rect_get", (PyCFunction
)_wrap_PaneInfo_rect_get
, METH_O
, NULL
},
14578 { (char *)"PaneInfo_swigregister", PaneInfo_swigregister
, METH_VARARGS
, NULL
},
14579 { (char *)"PaneInfo_swiginit", PaneInfo_swiginit
, METH_VARARGS
, NULL
},
14580 { (char *)"new_FrameManager", (PyCFunction
) _wrap_new_FrameManager
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14581 { (char *)"delete_FrameManager", (PyCFunction
)_wrap_delete_FrameManager
, METH_O
, NULL
},
14582 { (char *)"FrameManager_UnInit", (PyCFunction
)_wrap_FrameManager_UnInit
, METH_O
, NULL
},
14583 { (char *)"FrameManager_SetFlags", (PyCFunction
) _wrap_FrameManager_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14584 { (char *)"FrameManager_GetFlags", (PyCFunction
)_wrap_FrameManager_GetFlags
, METH_O
, NULL
},
14585 { (char *)"FrameManager_SetManagedWindow", (PyCFunction
) _wrap_FrameManager_SetManagedWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14586 { (char *)"FrameManager_GetManagedWindow", (PyCFunction
)_wrap_FrameManager_GetManagedWindow
, METH_O
, NULL
},
14587 { (char *)"FrameManager_SetArtProvider", (PyCFunction
) _wrap_FrameManager_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14588 { (char *)"FrameManager_GetArtProvider", (PyCFunction
)_wrap_FrameManager_GetArtProvider
, METH_O
, NULL
},
14589 { (char *)"FrameManager__GetPaneByWidget", (PyCFunction
) _wrap_FrameManager__GetPaneByWidget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14590 { (char *)"FrameManager__GetPaneByName", (PyCFunction
) _wrap_FrameManager__GetPaneByName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14591 { (char *)"FrameManager_GetAllPanes", (PyCFunction
)_wrap_FrameManager_GetAllPanes
, METH_O
, NULL
},
14592 { (char *)"FrameManager__AddPane1", (PyCFunction
) _wrap_FrameManager__AddPane1
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14593 { (char *)"FrameManager_AddPaneAtPos", (PyCFunction
) _wrap_FrameManager_AddPaneAtPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14594 { (char *)"FrameManager__AddPane2", (PyCFunction
) _wrap_FrameManager__AddPane2
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14595 { (char *)"FrameManager_InsertPane", (PyCFunction
) _wrap_FrameManager_InsertPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14596 { (char *)"FrameManager_DetachPane", (PyCFunction
) _wrap_FrameManager_DetachPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14597 { (char *)"FrameManager_ClosePane", (PyCFunction
) _wrap_FrameManager_ClosePane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14598 { (char *)"FrameManager_SavePaneInfo", (PyCFunction
) _wrap_FrameManager_SavePaneInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14599 { (char *)"FrameManager_LoadPaneInfo", (PyCFunction
) _wrap_FrameManager_LoadPaneInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14600 { (char *)"FrameManager_SavePerspective", (PyCFunction
)_wrap_FrameManager_SavePerspective
, METH_O
, NULL
},
14601 { (char *)"FrameManager_LoadPerspective", (PyCFunction
) _wrap_FrameManager_LoadPerspective
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14602 { (char *)"FrameManager_Update", (PyCFunction
)_wrap_FrameManager_Update
, METH_O
, NULL
},
14603 { (char *)"FrameManager_CreateFloatingFrame", (PyCFunction
) _wrap_FrameManager_CreateFloatingFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14604 { (char *)"FrameManager_DrawHintRect", (PyCFunction
) _wrap_FrameManager_DrawHintRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14605 { (char *)"FrameManager_ShowHint", (PyCFunction
) _wrap_FrameManager_ShowHint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14606 { (char *)"FrameManager_HideHint", (PyCFunction
)_wrap_FrameManager_HideHint
, METH_O
, NULL
},
14607 { (char *)"FrameManager_OnRender", (PyCFunction
) _wrap_FrameManager_OnRender
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14608 { (char *)"FrameManager_OnPaneButton", (PyCFunction
) _wrap_FrameManager_OnPaneButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14609 { (char *)"FrameManager_swigregister", FrameManager_swigregister
, METH_VARARGS
, NULL
},
14610 { (char *)"FrameManager_swiginit", FrameManager_swiginit
, METH_VARARGS
, NULL
},
14611 { (char *)"new_FrameManagerEvent", (PyCFunction
) _wrap_new_FrameManagerEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14612 { (char *)"FrameManagerEvent_Clone", (PyCFunction
)_wrap_FrameManagerEvent_Clone
, METH_O
, NULL
},
14613 { (char *)"FrameManagerEvent_SetPane", (PyCFunction
) _wrap_FrameManagerEvent_SetPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14614 { (char *)"FrameManagerEvent_SetButton", (PyCFunction
) _wrap_FrameManagerEvent_SetButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14615 { (char *)"FrameManagerEvent_SetDC", (PyCFunction
) _wrap_FrameManagerEvent_SetDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14616 { (char *)"FrameManagerEvent_GetPane", (PyCFunction
)_wrap_FrameManagerEvent_GetPane
, METH_O
, NULL
},
14617 { (char *)"FrameManagerEvent_GetButton", (PyCFunction
)_wrap_FrameManagerEvent_GetButton
, METH_O
, NULL
},
14618 { (char *)"FrameManagerEvent_GetDC", (PyCFunction
)_wrap_FrameManagerEvent_GetDC
, METH_O
, NULL
},
14619 { (char *)"FrameManagerEvent_Veto", (PyCFunction
) _wrap_FrameManagerEvent_Veto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14620 { (char *)"FrameManagerEvent_GetVeto", (PyCFunction
)_wrap_FrameManagerEvent_GetVeto
, METH_O
, NULL
},
14621 { (char *)"FrameManagerEvent_SetCanVeto", (PyCFunction
) _wrap_FrameManagerEvent_SetCanVeto
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14622 { (char *)"FrameManagerEvent_CanVeto", (PyCFunction
)_wrap_FrameManagerEvent_CanVeto
, METH_O
, NULL
},
14623 { (char *)"FrameManagerEvent_pane_set", _wrap_FrameManagerEvent_pane_set
, METH_VARARGS
, NULL
},
14624 { (char *)"FrameManagerEvent_pane_get", (PyCFunction
)_wrap_FrameManagerEvent_pane_get
, METH_O
, NULL
},
14625 { (char *)"FrameManagerEvent_button_set", _wrap_FrameManagerEvent_button_set
, METH_VARARGS
, NULL
},
14626 { (char *)"FrameManagerEvent_button_get", (PyCFunction
)_wrap_FrameManagerEvent_button_get
, METH_O
, NULL
},
14627 { (char *)"FrameManagerEvent_veto_flag_set", _wrap_FrameManagerEvent_veto_flag_set
, METH_VARARGS
, NULL
},
14628 { (char *)"FrameManagerEvent_veto_flag_get", (PyCFunction
)_wrap_FrameManagerEvent_veto_flag_get
, METH_O
, NULL
},
14629 { (char *)"FrameManagerEvent_canveto_flag_set", _wrap_FrameManagerEvent_canveto_flag_set
, METH_VARARGS
, NULL
},
14630 { (char *)"FrameManagerEvent_canveto_flag_get", (PyCFunction
)_wrap_FrameManagerEvent_canveto_flag_get
, METH_O
, NULL
},
14631 { (char *)"FrameManagerEvent_dc_set", _wrap_FrameManagerEvent_dc_set
, METH_VARARGS
, NULL
},
14632 { (char *)"FrameManagerEvent_dc_get", (PyCFunction
)_wrap_FrameManagerEvent_dc_get
, METH_O
, NULL
},
14633 { (char *)"FrameManagerEvent_swigregister", FrameManagerEvent_swigregister
, METH_VARARGS
, NULL
},
14634 { (char *)"FrameManagerEvent_swiginit", FrameManagerEvent_swiginit
, METH_VARARGS
, NULL
},
14635 { (char *)"new_DockInfo", (PyCFunction
)_wrap_new_DockInfo
, METH_NOARGS
, NULL
},
14636 { (char *)"DockInfo_IsOk", (PyCFunction
)_wrap_DockInfo_IsOk
, METH_O
, NULL
},
14637 { (char *)"DockInfo_IsHorizontal", (PyCFunction
)_wrap_DockInfo_IsHorizontal
, METH_O
, NULL
},
14638 { (char *)"DockInfo_IsVertical", (PyCFunction
)_wrap_DockInfo_IsVertical
, METH_O
, NULL
},
14639 { (char *)"DockInfo_panes_set", _wrap_DockInfo_panes_set
, METH_VARARGS
, NULL
},
14640 { (char *)"DockInfo_panes_get", (PyCFunction
)_wrap_DockInfo_panes_get
, METH_O
, NULL
},
14641 { (char *)"DockInfo_rect_set", _wrap_DockInfo_rect_set
, METH_VARARGS
, NULL
},
14642 { (char *)"DockInfo_rect_get", (PyCFunction
)_wrap_DockInfo_rect_get
, METH_O
, NULL
},
14643 { (char *)"DockInfo_dock_direction_set", _wrap_DockInfo_dock_direction_set
, METH_VARARGS
, NULL
},
14644 { (char *)"DockInfo_dock_direction_get", (PyCFunction
)_wrap_DockInfo_dock_direction_get
, METH_O
, NULL
},
14645 { (char *)"DockInfo_dock_layer_set", _wrap_DockInfo_dock_layer_set
, METH_VARARGS
, NULL
},
14646 { (char *)"DockInfo_dock_layer_get", (PyCFunction
)_wrap_DockInfo_dock_layer_get
, METH_O
, NULL
},
14647 { (char *)"DockInfo_dock_row_set", _wrap_DockInfo_dock_row_set
, METH_VARARGS
, NULL
},
14648 { (char *)"DockInfo_dock_row_get", (PyCFunction
)_wrap_DockInfo_dock_row_get
, METH_O
, NULL
},
14649 { (char *)"DockInfo_size_set", _wrap_DockInfo_size_set
, METH_VARARGS
, NULL
},
14650 { (char *)"DockInfo_size_get", (PyCFunction
)_wrap_DockInfo_size_get
, METH_O
, NULL
},
14651 { (char *)"DockInfo_min_size_set", _wrap_DockInfo_min_size_set
, METH_VARARGS
, NULL
},
14652 { (char *)"DockInfo_min_size_get", (PyCFunction
)_wrap_DockInfo_min_size_get
, METH_O
, NULL
},
14653 { (char *)"DockInfo_resizable_set", _wrap_DockInfo_resizable_set
, METH_VARARGS
, NULL
},
14654 { (char *)"DockInfo_resizable_get", (PyCFunction
)_wrap_DockInfo_resizable_get
, METH_O
, NULL
},
14655 { (char *)"DockInfo_toolbar_set", _wrap_DockInfo_toolbar_set
, METH_VARARGS
, NULL
},
14656 { (char *)"DockInfo_toolbar_get", (PyCFunction
)_wrap_DockInfo_toolbar_get
, METH_O
, NULL
},
14657 { (char *)"DockInfo_fixed_set", _wrap_DockInfo_fixed_set
, METH_VARARGS
, NULL
},
14658 { (char *)"DockInfo_fixed_get", (PyCFunction
)_wrap_DockInfo_fixed_get
, METH_O
, NULL
},
14659 { (char *)"delete_DockInfo", (PyCFunction
)_wrap_delete_DockInfo
, METH_O
, NULL
},
14660 { (char *)"DockInfo_swigregister", DockInfo_swigregister
, METH_VARARGS
, NULL
},
14661 { (char *)"DockInfo_swiginit", DockInfo_swiginit
, METH_VARARGS
, NULL
},
14662 { (char *)"DockUIPart_type_set", _wrap_DockUIPart_type_set
, METH_VARARGS
, NULL
},
14663 { (char *)"DockUIPart_type_get", (PyCFunction
)_wrap_DockUIPart_type_get
, METH_O
, NULL
},
14664 { (char *)"DockUIPart_orientation_set", _wrap_DockUIPart_orientation_set
, METH_VARARGS
, NULL
},
14665 { (char *)"DockUIPart_orientation_get", (PyCFunction
)_wrap_DockUIPart_orientation_get
, METH_O
, NULL
},
14666 { (char *)"DockUIPart_dock_set", _wrap_DockUIPart_dock_set
, METH_VARARGS
, NULL
},
14667 { (char *)"DockUIPart_dock_get", (PyCFunction
)_wrap_DockUIPart_dock_get
, METH_O
, NULL
},
14668 { (char *)"DockUIPart_pane_set", _wrap_DockUIPart_pane_set
, METH_VARARGS
, NULL
},
14669 { (char *)"DockUIPart_pane_get", (PyCFunction
)_wrap_DockUIPart_pane_get
, METH_O
, NULL
},
14670 { (char *)"DockUIPart_button_set", _wrap_DockUIPart_button_set
, METH_VARARGS
, NULL
},
14671 { (char *)"DockUIPart_button_get", (PyCFunction
)_wrap_DockUIPart_button_get
, METH_O
, NULL
},
14672 { (char *)"DockUIPart_cont_sizer_set", _wrap_DockUIPart_cont_sizer_set
, METH_VARARGS
, NULL
},
14673 { (char *)"DockUIPart_cont_sizer_get", (PyCFunction
)_wrap_DockUIPart_cont_sizer_get
, METH_O
, NULL
},
14674 { (char *)"DockUIPart_sizer_item_set", _wrap_DockUIPart_sizer_item_set
, METH_VARARGS
, NULL
},
14675 { (char *)"DockUIPart_sizer_item_get", (PyCFunction
)_wrap_DockUIPart_sizer_item_get
, METH_O
, NULL
},
14676 { (char *)"DockUIPart_rect_set", _wrap_DockUIPart_rect_set
, METH_VARARGS
, NULL
},
14677 { (char *)"DockUIPart_rect_get", (PyCFunction
)_wrap_DockUIPart_rect_get
, METH_O
, NULL
},
14678 { (char *)"delete_DockUIPart", (PyCFunction
)_wrap_delete_DockUIPart
, METH_O
, NULL
},
14679 { (char *)"DockUIPart_swigregister", DockUIPart_swigregister
, METH_VARARGS
, NULL
},
14680 { (char *)"PaneButton_button_id_set", _wrap_PaneButton_button_id_set
, METH_VARARGS
, NULL
},
14681 { (char *)"PaneButton_button_id_get", (PyCFunction
)_wrap_PaneButton_button_id_get
, METH_O
, NULL
},
14682 { (char *)"delete_PaneButton", (PyCFunction
)_wrap_delete_PaneButton
, METH_O
, NULL
},
14683 { (char *)"PaneButton_swigregister", PaneButton_swigregister
, METH_VARARGS
, NULL
},
14684 { (char *)"delete_DockArt", (PyCFunction
)_wrap_delete_DockArt
, METH_O
, NULL
},
14685 { (char *)"DockArt_GetMetric", (PyCFunction
) _wrap_DockArt_GetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14686 { (char *)"DockArt_SetMetric", (PyCFunction
) _wrap_DockArt_SetMetric
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14687 { (char *)"DockArt_SetFont", (PyCFunction
) _wrap_DockArt_SetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14688 { (char *)"DockArt_GetFont", (PyCFunction
) _wrap_DockArt_GetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14689 { (char *)"DockArt_GetColour", (PyCFunction
) _wrap_DockArt_GetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14690 { (char *)"DockArt_SetColour", (PyCFunction
) _wrap_DockArt_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14691 { (char *)"DockArt_GetColor", (PyCFunction
) _wrap_DockArt_GetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14692 { (char *)"DockArt_SetColor", (PyCFunction
) _wrap_DockArt_SetColor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14693 { (char *)"DockArt_DrawSash", (PyCFunction
) _wrap_DockArt_DrawSash
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14694 { (char *)"DockArt_DrawBackground", (PyCFunction
) _wrap_DockArt_DrawBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14695 { (char *)"DockArt_DrawCaption", (PyCFunction
) _wrap_DockArt_DrawCaption
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14696 { (char *)"DockArt_DrawGripper", (PyCFunction
) _wrap_DockArt_DrawGripper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14697 { (char *)"DockArt_DrawBorder", (PyCFunction
) _wrap_DockArt_DrawBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14698 { (char *)"DockArt_DrawPaneButton", (PyCFunction
) _wrap_DockArt_DrawPaneButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14699 { (char *)"DockArt_swigregister", DockArt_swigregister
, METH_VARARGS
, NULL
},
14700 { (char *)"new_DefaultDockArt", (PyCFunction
)_wrap_new_DefaultDockArt
, METH_NOARGS
, NULL
},
14701 { (char *)"DefaultDockArt_swigregister", DefaultDockArt_swigregister
, METH_VARARGS
, NULL
},
14702 { (char *)"DefaultDockArt_swiginit", DefaultDockArt_swiginit
, METH_VARARGS
, NULL
},
14703 { (char *)"new_FloatingPane", (PyCFunction
) _wrap_new_FloatingPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14704 { (char *)"delete_FloatingPane", (PyCFunction
)_wrap_delete_FloatingPane
, METH_O
, NULL
},
14705 { (char *)"FloatingPane_SetPaneWindow", (PyCFunction
) _wrap_FloatingPane_SetPaneWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14706 { (char *)"FloatingPane_swigregister", FloatingPane_swigregister
, METH_VARARGS
, NULL
},
14707 { (char *)"FloatingPane_swiginit", FloatingPane_swiginit
, METH_VARARGS
, NULL
},
14708 { (char *)"delete_TabArt", (PyCFunction
)_wrap_delete_TabArt
, METH_O
, NULL
},
14709 { (char *)"TabArt_SetNormalFont", (PyCFunction
) _wrap_TabArt_SetNormalFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14710 { (char *)"TabArt_SetSelectedFont", (PyCFunction
) _wrap_TabArt_SetSelectedFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14711 { (char *)"TabArt_SetMeasuringFont", (PyCFunction
) _wrap_TabArt_SetMeasuringFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14712 { (char *)"TabArt_DrawBackground", (PyCFunction
) _wrap_TabArt_DrawBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14713 { (char *)"TabArt_DrawTab", (PyCFunction
) _wrap_TabArt_DrawTab
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14714 { (char *)"TabArt_DrawButton", (PyCFunction
) _wrap_TabArt_DrawButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14715 { (char *)"TabArt_GetTabSize", (PyCFunction
) _wrap_TabArt_GetTabSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14716 { (char *)"TabArt_GetBestTabCtrlSize", (PyCFunction
) _wrap_TabArt_GetBestTabCtrlSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14717 { (char *)"TabArt_swigregister", TabArt_swigregister
, METH_VARARGS
, NULL
},
14718 { (char *)"new_DefaultTabArt", (PyCFunction
)_wrap_new_DefaultTabArt
, METH_NOARGS
, NULL
},
14719 { (char *)"delete_DefaultTabArt", (PyCFunction
)_wrap_delete_DefaultTabArt
, METH_O
, NULL
},
14720 { (char *)"DefaultTabArt_swigregister", DefaultTabArt_swigregister
, METH_VARARGS
, NULL
},
14721 { (char *)"DefaultTabArt_swiginit", DefaultTabArt_swiginit
, METH_VARARGS
, NULL
},
14722 { (char *)"new_AuiNotebookEvent", (PyCFunction
) _wrap_new_AuiNotebookEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14723 { (char *)"AuiNotebookEvent_SetSelection", (PyCFunction
) _wrap_AuiNotebookEvent_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14724 { (char *)"AuiNotebookEvent_SetOldSelection", (PyCFunction
) _wrap_AuiNotebookEvent_SetOldSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14725 { (char *)"AuiNotebookEvent_GetSelection", (PyCFunction
)_wrap_AuiNotebookEvent_GetSelection
, METH_O
, NULL
},
14726 { (char *)"AuiNotebookEvent_GetOldSelection", (PyCFunction
)_wrap_AuiNotebookEvent_GetOldSelection
, METH_O
, NULL
},
14727 { (char *)"AuiNotebookEvent_old_selection_set", _wrap_AuiNotebookEvent_old_selection_set
, METH_VARARGS
, NULL
},
14728 { (char *)"AuiNotebookEvent_old_selection_get", (PyCFunction
)_wrap_AuiNotebookEvent_old_selection_get
, METH_O
, NULL
},
14729 { (char *)"AuiNotebookEvent_selection_set", _wrap_AuiNotebookEvent_selection_set
, METH_VARARGS
, NULL
},
14730 { (char *)"AuiNotebookEvent_selection_get", (PyCFunction
)_wrap_AuiNotebookEvent_selection_get
, METH_O
, NULL
},
14731 { (char *)"AuiNotebookEvent_swigregister", AuiNotebookEvent_swigregister
, METH_VARARGS
, NULL
},
14732 { (char *)"AuiNotebookEvent_swiginit", AuiNotebookEvent_swiginit
, METH_VARARGS
, NULL
},
14733 { (char *)"AuiNotebookPage_window_set", _wrap_AuiNotebookPage_window_set
, METH_VARARGS
, NULL
},
14734 { (char *)"AuiNotebookPage_window_get", (PyCFunction
)_wrap_AuiNotebookPage_window_get
, METH_O
, NULL
},
14735 { (char *)"AuiNotebookPage_caption_set", _wrap_AuiNotebookPage_caption_set
, METH_VARARGS
, NULL
},
14736 { (char *)"AuiNotebookPage_caption_get", (PyCFunction
)_wrap_AuiNotebookPage_caption_get
, METH_O
, NULL
},
14737 { (char *)"AuiNotebookPage_bitmap_set", _wrap_AuiNotebookPage_bitmap_set
, METH_VARARGS
, NULL
},
14738 { (char *)"AuiNotebookPage_bitmap_get", (PyCFunction
)_wrap_AuiNotebookPage_bitmap_get
, METH_O
, NULL
},
14739 { (char *)"AuiNotebookPage_rect_set", _wrap_AuiNotebookPage_rect_set
, METH_VARARGS
, NULL
},
14740 { (char *)"AuiNotebookPage_rect_get", (PyCFunction
)_wrap_AuiNotebookPage_rect_get
, METH_O
, NULL
},
14741 { (char *)"AuiNotebookPage_active_set", _wrap_AuiNotebookPage_active_set
, METH_VARARGS
, NULL
},
14742 { (char *)"AuiNotebookPage_active_get", (PyCFunction
)_wrap_AuiNotebookPage_active_get
, METH_O
, NULL
},
14743 { (char *)"AuiNotebookPage_swigregister", AuiNotebookPage_swigregister
, METH_VARARGS
, NULL
},
14744 { (char *)"AuiTabContainerButton_id_set", _wrap_AuiTabContainerButton_id_set
, METH_VARARGS
, NULL
},
14745 { (char *)"AuiTabContainerButton_id_get", (PyCFunction
)_wrap_AuiTabContainerButton_id_get
, METH_O
, NULL
},
14746 { (char *)"AuiTabContainerButton_cur_state_set", _wrap_AuiTabContainerButton_cur_state_set
, METH_VARARGS
, NULL
},
14747 { (char *)"AuiTabContainerButton_cur_state_get", (PyCFunction
)_wrap_AuiTabContainerButton_cur_state_get
, METH_O
, NULL
},
14748 { (char *)"AuiTabContainerButton_location_set", _wrap_AuiTabContainerButton_location_set
, METH_VARARGS
, NULL
},
14749 { (char *)"AuiTabContainerButton_location_get", (PyCFunction
)_wrap_AuiTabContainerButton_location_get
, METH_O
, NULL
},
14750 { (char *)"AuiTabContainerButton_bitmap_set", _wrap_AuiTabContainerButton_bitmap_set
, METH_VARARGS
, NULL
},
14751 { (char *)"AuiTabContainerButton_bitmap_get", (PyCFunction
)_wrap_AuiTabContainerButton_bitmap_get
, METH_O
, NULL
},
14752 { (char *)"AuiTabContainerButton_dis_bitmap_set", _wrap_AuiTabContainerButton_dis_bitmap_set
, METH_VARARGS
, NULL
},
14753 { (char *)"AuiTabContainerButton_dis_bitmap_get", (PyCFunction
)_wrap_AuiTabContainerButton_dis_bitmap_get
, METH_O
, NULL
},
14754 { (char *)"AuiTabContainerButton_rect_set", _wrap_AuiTabContainerButton_rect_set
, METH_VARARGS
, NULL
},
14755 { (char *)"AuiTabContainerButton_rect_get", (PyCFunction
)_wrap_AuiTabContainerButton_rect_get
, METH_O
, NULL
},
14756 { (char *)"AuiTabContainerButton_swigregister", AuiTabContainerButton_swigregister
, METH_VARARGS
, NULL
},
14757 { (char *)"new_AuiTabContainer", (PyCFunction
)_wrap_new_AuiTabContainer
, METH_NOARGS
, NULL
},
14758 { (char *)"delete_AuiTabContainer", (PyCFunction
)_wrap_delete_AuiTabContainer
, METH_O
, NULL
},
14759 { (char *)"AuiTabContainer_SetArtProvider", (PyCFunction
) _wrap_AuiTabContainer_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14760 { (char *)"AuiTabContainer_GetArtProvider", (PyCFunction
)_wrap_AuiTabContainer_GetArtProvider
, METH_O
, NULL
},
14761 { (char *)"AuiTabContainer_AddPage", (PyCFunction
) _wrap_AuiTabContainer_AddPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14762 { (char *)"AuiTabContainer_InsertPage", (PyCFunction
) _wrap_AuiTabContainer_InsertPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14763 { (char *)"AuiTabContainer_MovePage", (PyCFunction
) _wrap_AuiTabContainer_MovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14764 { (char *)"AuiTabContainer_RemovePage", (PyCFunction
) _wrap_AuiTabContainer_RemovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14765 { (char *)"AuiTabContainer_SetActivePage", _wrap_AuiTabContainer_SetActivePage
, METH_VARARGS
, NULL
},
14766 { (char *)"AuiTabContainer_SetNoneActive", (PyCFunction
)_wrap_AuiTabContainer_SetNoneActive
, METH_O
, NULL
},
14767 { (char *)"AuiTabContainer_GetActivePage", (PyCFunction
)_wrap_AuiTabContainer_GetActivePage
, METH_O
, NULL
},
14768 { (char *)"AuiTabContainer_TabHitTest", (PyCFunction
) _wrap_AuiTabContainer_TabHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14769 { (char *)"AuiTabContainer_ButtonHitTest", (PyCFunction
) _wrap_AuiTabContainer_ButtonHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14770 { (char *)"AuiTabContainer_GetWindowFromIdx", (PyCFunction
) _wrap_AuiTabContainer_GetWindowFromIdx
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14771 { (char *)"AuiTabContainer_GetIdxFromWindow", (PyCFunction
) _wrap_AuiTabContainer_GetIdxFromWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14772 { (char *)"AuiTabContainer_GetPageCount", (PyCFunction
)_wrap_AuiTabContainer_GetPageCount
, METH_O
, NULL
},
14773 { (char *)"AuiTabContainer_GetPage", (PyCFunction
) _wrap_AuiTabContainer_GetPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14774 { (char *)"AuiTabContainer_GetPages", (PyCFunction
)_wrap_AuiTabContainer_GetPages
, METH_O
, NULL
},
14775 { (char *)"AuiTabContainer_SetNormalFont", (PyCFunction
) _wrap_AuiTabContainer_SetNormalFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14776 { (char *)"AuiTabContainer_SetSelectedFont", (PyCFunction
) _wrap_AuiTabContainer_SetSelectedFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14777 { (char *)"AuiTabContainer_SetMeasuringFont", (PyCFunction
) _wrap_AuiTabContainer_SetMeasuringFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14778 { (char *)"AuiTabContainer_DoShowHide", (PyCFunction
)_wrap_AuiTabContainer_DoShowHide
, METH_O
, NULL
},
14779 { (char *)"AuiTabContainer_SetRect", (PyCFunction
) _wrap_AuiTabContainer_SetRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14780 { (char *)"AuiTabContainer_AddButton", (PyCFunction
) _wrap_AuiTabContainer_AddButton
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14781 { (char *)"AuiTabContainer_GetTabOffset", (PyCFunction
)_wrap_AuiTabContainer_GetTabOffset
, METH_O
, NULL
},
14782 { (char *)"AuiTabContainer_SetTabOffset", (PyCFunction
) _wrap_AuiTabContainer_SetTabOffset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14783 { (char *)"AuiTabContainer_swigregister", AuiTabContainer_swigregister
, METH_VARARGS
, NULL
},
14784 { (char *)"AuiTabContainer_swiginit", AuiTabContainer_swiginit
, METH_VARARGS
, NULL
},
14785 { (char *)"new_AuiTabCtrl", (PyCFunction
) _wrap_new_AuiTabCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14786 { (char *)"delete_AuiTabCtrl", (PyCFunction
)_wrap_delete_AuiTabCtrl
, METH_O
, NULL
},
14787 { (char *)"AuiTabCtrl_swigregister", AuiTabCtrl_swigregister
, METH_VARARGS
, NULL
},
14788 { (char *)"AuiTabCtrl_swiginit", AuiTabCtrl_swiginit
, METH_VARARGS
, NULL
},
14789 { (char *)"new_PreAuiMultiNotebook", (PyCFunction
)_wrap_new_PreAuiMultiNotebook
, METH_NOARGS
, NULL
},
14790 { (char *)"new_AuiMultiNotebook", (PyCFunction
) _wrap_new_AuiMultiNotebook
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14791 { (char *)"AuiMultiNotebook_Create", (PyCFunction
) _wrap_AuiMultiNotebook_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14792 { (char *)"AuiMultiNotebook_AddPage", (PyCFunction
) _wrap_AuiMultiNotebook_AddPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14793 { (char *)"AuiMultiNotebook_InsertPage", (PyCFunction
) _wrap_AuiMultiNotebook_InsertPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14794 { (char *)"AuiMultiNotebook_DeletePage", (PyCFunction
) _wrap_AuiMultiNotebook_DeletePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14795 { (char *)"AuiMultiNotebook_RemovePage", (PyCFunction
) _wrap_AuiMultiNotebook_RemovePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14796 { (char *)"AuiMultiNotebook_SetPageText", (PyCFunction
) _wrap_AuiMultiNotebook_SetPageText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14797 { (char *)"AuiMultiNotebook_SetSelection", (PyCFunction
) _wrap_AuiMultiNotebook_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14798 { (char *)"AuiMultiNotebook_GetSelection", (PyCFunction
)_wrap_AuiMultiNotebook_GetSelection
, METH_O
, NULL
},
14799 { (char *)"AuiMultiNotebook_GetPageCount", (PyCFunction
)_wrap_AuiMultiNotebook_GetPageCount
, METH_O
, NULL
},
14800 { (char *)"AuiMultiNotebook_GetPage", (PyCFunction
) _wrap_AuiMultiNotebook_GetPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14801 { (char *)"AuiMultiNotebook_SetArtProvider", (PyCFunction
) _wrap_AuiMultiNotebook_SetArtProvider
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
14802 { (char *)"AuiMultiNotebook_GetArtProvider", (PyCFunction
)_wrap_AuiMultiNotebook_GetArtProvider
, METH_O
, NULL
},
14803 { (char *)"AuiMultiNotebook_swigregister", AuiMultiNotebook_swigregister
, METH_VARARGS
, NULL
},
14804 { (char *)"AuiMultiNotebook_swiginit", AuiMultiNotebook_swiginit
, METH_VARARGS
, NULL
},
14805 { (char *)"PyDockArt_swigregister", PyDockArt_swigregister
, METH_VARARGS
, NULL
},
14806 { (char *)"PyTabArt_swigregister", PyTabArt_swigregister
, METH_VARARGS
, NULL
},
14807 { NULL
, NULL
, 0, NULL
}
14811 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
14813 static void *_p_wxFloatingPaneTo_p_wxMiniFrame(void *x
) {
14814 return (void *)((wxMiniFrame
*) ((wxFloatingPane
*) x
));
14816 static void *_p_wxBoxSizerTo_p_wxSizer(void *x
) {
14817 return (void *)((wxSizer
*) ((wxBoxSizer
*) x
));
14819 static void *_p_wxStaticBoxSizerTo_p_wxSizer(void *x
) {
14820 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
14822 static void *_p_wxStdDialogButtonSizerTo_p_wxSizer(void *x
) {
14823 return (void *)((wxSizer
*) (wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
14825 static void *_p_wxGridBagSizerTo_p_wxSizer(void *x
) {
14826 return (void *)((wxSizer
*) (wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
14828 static void *_p_wxGridSizerTo_p_wxSizer(void *x
) {
14829 return (void *)((wxSizer
*) ((wxGridSizer
*) x
));
14831 static void *_p_wxFlexGridSizerTo_p_wxSizer(void *x
) {
14832 return (void *)((wxSizer
*) (wxGridSizer
*) ((wxFlexGridSizer
*) x
));
14834 static void *_p_wxPySizerTo_p_wxSizer(void *x
) {
14835 return (void *)((wxSizer
*) ((wxPySizer
*) x
));
14837 static void *_p_wxSplitterEventTo_p_wxNotifyEvent(void *x
) {
14838 return (void *)((wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
14840 static void *_p_wxAuiNotebookEventTo_p_wxNotifyEvent(void *x
) {
14841 return (void *)((wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
14843 static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x
) {
14844 return (void *)((wxTopLevelWindow
*) ((wxFrame
*) x
));
14846 static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x
) {
14847 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMiniFrame
*) x
));
14849 static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x
) {
14850 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFontDialog
*) x
));
14852 static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x
) {
14853 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxDirDialog
*) x
));
14855 static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x
) {
14856 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxColourDialog
*) x
));
14858 static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x
) {
14859 return (void *)((wxTopLevelWindow
*) ((wxDialog
*) x
));
14861 static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x
) {
14862 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxSplashScreen
*) x
));
14864 static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x
) {
14865 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIParentFrame
*) x
));
14867 static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x
) {
14868 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIChildFrame
*) x
));
14870 static void *_p_wxFloatingPaneTo_p_wxTopLevelWindow(void *x
) {
14871 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
14873 static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x
) {
14874 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMessageDialog
*) x
));
14876 static void *_p_wxNumberEntryDialogTo_p_wxTopLevelWindow(void *x
) {
14877 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxNumberEntryDialog
*) x
));
14879 static void *_p_wxPasswordEntryDialogTo_p_wxTopLevelWindow(void *x
) {
14880 return (void *)((wxTopLevelWindow
*) (wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
14882 static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x
) {
14883 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxTextEntryDialog
*) x
));
14885 static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
14886 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxSingleChoiceDialog
*) x
));
14888 static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
14889 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMultiChoiceDialog
*) x
));
14891 static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x
) {
14892 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFileDialog
*) x
));
14894 static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x
) {
14895 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxProgressDialog
*) x
));
14897 static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x
) {
14898 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFindReplaceDialog
*) x
));
14900 static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
14901 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxPreviewFrame
*) x
));
14903 static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
14904 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
14906 static void *_p_wxSplashScreenTo_p_wxWindow(void *x
) {
14907 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
14909 static void *_p_wxMiniFrameTo_p_wxWindow(void *x
) {
14910 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
14912 static void *_p_wxPyPanelTo_p_wxWindow(void *x
) {
14913 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyPanel
*) x
));
14915 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
14916 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
14918 static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x
) {
14919 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
14921 static void *_p_wxProgressDialogTo_p_wxWindow(void *x
) {
14922 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
14924 static void *_p_wxMessageDialogTo_p_wxWindow(void *x
) {
14925 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
14927 static void *_p_wxNumberEntryDialogTo_p_wxWindow(void *x
) {
14928 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
14930 static void *_p_wxPasswordEntryDialogTo_p_wxWindow(void *x
) {
14931 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
14933 static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x
) {
14934 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
14936 static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x
) {
14937 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
14939 static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x
) {
14940 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
14942 static void *_p_wxFileDialogTo_p_wxWindow(void *x
) {
14943 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
14945 static void *_p_wxPanelTo_p_wxWindow(void *x
) {
14946 return (void *)((wxWindow
*) ((wxPanel
*) x
));
14948 static void *_p_wxStatusBarTo_p_wxWindow(void *x
) {
14949 return (void *)((wxWindow
*) ((wxStatusBar
*) x
));
14951 static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x
) {
14952 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyVScrolledWindow
*) x
));
14954 static void *_p_wxTipWindowTo_p_wxWindow(void *x
) {
14955 return (void *)((wxWindow
*) (wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
14957 static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x
) {
14958 return (void *)((wxWindow
*) (wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
14960 static void *_p_wxPopupWindowTo_p_wxWindow(void *x
) {
14961 return (void *)((wxWindow
*) ((wxPopupWindow
*) x
));
14963 static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x
) {
14964 return (void *)((wxWindow
*) (wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
14966 static void *_p_wxScrolledWindowTo_p_wxWindow(void *x
) {
14967 return (void *)((wxWindow
*) (wxPanel
*) ((wxScrolledWindow
*) x
));
14969 static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x
) {
14970 return (void *)((wxWindow
*) ((wxTopLevelWindow
*) x
));
14972 static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x
) {
14973 return (void *)((wxWindow
*) ((wxSplashScreenWindow
*) x
));
14975 static void *_p_wxSplitterWindowTo_p_wxWindow(void *x
) {
14976 return (void *)((wxWindow
*) ((wxSplitterWindow
*) x
));
14978 static void *_p_wxSashWindowTo_p_wxWindow(void *x
) {
14979 return (void *)((wxWindow
*) ((wxSashWindow
*) x
));
14981 static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x
) {
14982 return (void *)((wxWindow
*) ((wxMDIClientWindow
*) x
));
14984 static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x
) {
14985 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
14987 static void *_p_wxControlTo_p_wxWindow(void *x
) {
14988 return (void *)((wxWindow
*) ((wxControl
*) x
));
14990 static void *_p_wxPreviewFrameTo_p_wxWindow(void *x
) {
14991 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
14993 static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x
) {
14994 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
14996 static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x
) {
14997 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
14999 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
15000 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
15002 static void *_p_wxPyWindowTo_p_wxWindow(void *x
) {
15003 return (void *)((wxWindow
*) ((wxPyWindow
*) x
));
15005 static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x
) {
15006 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
15008 static void *_p_wxFloatingPaneTo_p_wxWindow(void *x
) {
15009 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
15011 static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x
) {
15012 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
15014 static void *_p_wxPyVListBoxTo_p_wxWindow(void *x
) {
15015 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
15017 static void *_p_wxAuiMultiNotebookTo_p_wxWindow(void *x
) {
15018 return (void *)((wxWindow
*) (wxControl
*) ((wxAuiMultiNotebook
*) x
));
15020 static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x
) {
15021 return (void *)((wxWindow
*) (wxPanel
*) ((wxPreviewControlBar
*) x
));
15023 static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x
) {
15024 return (void *)((wxWindow
*) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
15026 static void *_p_wxAuiTabCtrlTo_p_wxWindow(void *x
) {
15027 return (void *)((wxWindow
*) (wxControl
*) ((wxAuiTabCtrl
*) x
));
15029 static void *_p_wxFrameTo_p_wxWindow(void *x
) {
15030 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxFrame
*) x
));
15032 static void *_p_wxFontDialogTo_p_wxWindow(void *x
) {
15033 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
15035 static void *_p_wxDirDialogTo_p_wxWindow(void *x
) {
15036 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
15038 static void *_p_wxColourDialogTo_p_wxWindow(void *x
) {
15039 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
15041 static void *_p_wxDialogTo_p_wxWindow(void *x
) {
15042 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxDialog
*) x
));
15044 static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x
) {
15045 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
15047 static void *_p_p_wxSplashScreenTo_p_p_wxWindow(void *x
) {
15048 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
**) x
));
15050 static void *_p_p_wxMiniFrameTo_p_p_wxWindow(void *x
) {
15051 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
**) x
));
15053 static void *_p_p_wxPyPanelTo_p_p_wxWindow(void *x
) {
15054 return (void *)((wxWindow
**) (wxPanel
*) ((wxPyPanel
**) x
));
15056 static void *_p_p_wxMenuBarTo_p_p_wxWindow(void *x
) {
15057 return (void *)((wxWindow
**) ((wxMenuBar
**) x
));
15059 static void *_p_p_wxFindReplaceDialogTo_p_p_wxWindow(void *x
) {
15060 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
**) x
));
15062 static void *_p_p_wxProgressDialogTo_p_p_wxWindow(void *x
) {
15063 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
**) x
));
15065 static void *_p_p_wxMessageDialogTo_p_p_wxWindow(void *x
) {
15066 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
**) x
));
15068 static void *_p_p_wxNumberEntryDialogTo_p_p_wxWindow(void *x
) {
15069 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
**) x
));
15071 static void *_p_p_wxPasswordEntryDialogTo_p_p_wxWindow(void *x
) {
15072 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
**) x
));
15074 static void *_p_p_wxTextEntryDialogTo_p_p_wxWindow(void *x
) {
15075 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
**) x
));
15077 static void *_p_p_wxSingleChoiceDialogTo_p_p_wxWindow(void *x
) {
15078 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
**) x
));
15080 static void *_p_p_wxMultiChoiceDialogTo_p_p_wxWindow(void *x
) {
15081 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
**) x
));
15083 static void *_p_p_wxFileDialogTo_p_p_wxWindow(void *x
) {
15084 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
**) x
));
15086 static void *_p_p_wxPanelTo_p_p_wxWindow(void *x
) {
15087 return (void *)((wxWindow
**) ((wxPanel
**) x
));
15089 static void *_p_p_wxStatusBarTo_p_p_wxWindow(void *x
) {
15090 return (void *)((wxWindow
**) ((wxStatusBar
**) x
));
15092 static void *_p_p_wxPyVScrolledWindowTo_p_p_wxWindow(void *x
) {
15093 return (void *)((wxWindow
**) (wxPanel
*) ((wxPyVScrolledWindow
**) x
));
15095 static void *_p_p_wxTipWindowTo_p_p_wxWindow(void *x
) {
15096 return (void *)((wxWindow
**) (wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
**) x
));
15098 static void *_p_p_wxPyPopupTransientWindowTo_p_p_wxWindow(void *x
) {
15099 return (void *)((wxWindow
**) (wxPopupWindow
*) ((wxPyPopupTransientWindow
**) x
));
15101 static void *_p_p_wxPopupWindowTo_p_p_wxWindow(void *x
) {
15102 return (void *)((wxWindow
**) ((wxPopupWindow
**) x
));
15104 static void *_p_p_wxSashLayoutWindowTo_p_p_wxWindow(void *x
) {
15105 return (void *)((wxWindow
**) (wxSashWindow
*) ((wxSashLayoutWindow
**) x
));
15107 static void *_p_p_wxScrolledWindowTo_p_p_wxWindow(void *x
) {
15108 return (void *)((wxWindow
**) (wxPanel
*) ((wxScrolledWindow
**) x
));
15110 static void *_p_p_wxTopLevelWindowTo_p_p_wxWindow(void *x
) {
15111 return (void *)((wxWindow
**) ((wxTopLevelWindow
**) x
));
15113 static void *_p_p_wxSplashScreenWindowTo_p_p_wxWindow(void *x
) {
15114 return (void *)((wxWindow
**) ((wxSplashScreenWindow
**) x
));
15116 static void *_p_p_wxSplitterWindowTo_p_p_wxWindow(void *x
) {
15117 return (void *)((wxWindow
**) ((wxSplitterWindow
**) x
));
15119 static void *_p_p_wxSashWindowTo_p_p_wxWindow(void *x
) {
15120 return (void *)((wxWindow
**) ((wxSashWindow
**) x
));
15122 static void *_p_p_wxMDIClientWindowTo_p_p_wxWindow(void *x
) {
15123 return (void *)((wxWindow
**) ((wxMDIClientWindow
**) x
));
15125 static void *_p_p_wxPyScrolledWindowTo_p_p_wxWindow(void *x
) {
15126 return (void *)((wxWindow
**) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
**) x
));
15128 static void *_p_p_wxControlTo_p_p_wxWindow(void *x
) {
15129 return (void *)((wxWindow
**) ((wxControl
**) x
));
15131 static void *_p_p_wxPreviewFrameTo_p_p_wxWindow(void *x
) {
15132 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
**) x
));
15134 static void *_p_p_wxPyPreviewFrameTo_p_p_wxWindow(void *x
) {
15135 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
**) x
));
15137 static void *_p_p_wxMDIChildFrameTo_p_p_wxWindow(void *x
) {
15138 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
**) x
));
15140 static void *_p_p_wxControlWithItemsTo_p_p_wxWindow(void *x
) {
15141 return (void *)((wxWindow
**) (wxControl
*) ((wxControlWithItems
**) x
));
15143 static void *_p_p_wxPyWindowTo_p_p_wxWindow(void *x
) {
15144 return (void *)((wxWindow
**) ((wxPyWindow
**) x
));
15146 static void *_p_p_wxPreviewCanvasTo_p_p_wxWindow(void *x
) {
15147 return (void *)((wxWindow
**) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
**) x
));
15149 static void *_p_p_wxFloatingPaneTo_p_p_wxWindow(void *x
) {
15150 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
**) x
));
15152 static void *_p_p_wxPyHtmlListBoxTo_p_p_wxWindow(void *x
) {
15153 return (void *)((wxWindow
**) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
**) x
));
15155 static void *_p_p_wxPyVListBoxTo_p_p_wxWindow(void *x
) {
15156 return (void *)((wxWindow
**) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
**) x
));
15158 static void *_p_p_wxAuiMultiNotebookTo_p_p_wxWindow(void *x
) {
15159 return (void *)((wxWindow
**) (wxControl
*) ((wxAuiMultiNotebook
**) x
));
15161 static void *_p_p_wxPreviewControlBarTo_p_p_wxWindow(void *x
) {
15162 return (void *)((wxWindow
**) (wxPanel
*) ((wxPreviewControlBar
**) x
));
15164 static void *_p_p_wxPyPreviewControlBarTo_p_p_wxWindow(void *x
) {
15165 return (void *)((wxWindow
**) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
**) x
));
15167 static void *_p_p_wxAuiTabCtrlTo_p_p_wxWindow(void *x
) {
15168 return (void *)((wxWindow
**) (wxControl
*) ((wxAuiTabCtrl
**) x
));
15170 static void *_p_p_wxFrameTo_p_p_wxWindow(void *x
) {
15171 return (void *)((wxWindow
**) (wxTopLevelWindow
*) ((wxFrame
**) x
));
15173 static void *_p_p_wxFontDialogTo_p_p_wxWindow(void *x
) {
15174 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
**) x
));
15176 static void *_p_p_wxDirDialogTo_p_p_wxWindow(void *x
) {
15177 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
**) x
));
15179 static void *_p_p_wxColourDialogTo_p_p_wxWindow(void *x
) {
15180 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
**) x
));
15182 static void *_p_p_wxDialogTo_p_p_wxWindow(void *x
) {
15183 return (void *)((wxWindow
**) (wxTopLevelWindow
*) ((wxDialog
**) x
));
15185 static void *_p_p_wxMDIParentFrameTo_p_p_wxWindow(void *x
) {
15186 return (void *)((wxWindow
**) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
**) x
));
15188 static void *_p_wxControlWithItemsTo_p_wxControl(void *x
) {
15189 return (void *)((wxControl
*) ((wxControlWithItems
*) x
));
15191 static void *_p_wxAuiTabCtrlTo_p_wxControl(void *x
) {
15192 return (void *)((wxControl
*) ((wxAuiTabCtrl
*) x
));
15194 static void *_p_wxAuiMultiNotebookTo_p_wxControl(void *x
) {
15195 return (void *)((wxControl
*) ((wxAuiMultiNotebook
*) x
));
15197 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
15198 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
15200 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
15201 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
15203 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
15204 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
15206 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
15207 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
15209 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
15210 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
15212 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
15213 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
15215 static void *_p_wxSplitterEventTo_p_wxEvent(void *x
) {
15216 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
15218 static void *_p_wxFrameManagerEventTo_p_wxEvent(void *x
) {
15219 return (void *)((wxEvent
*) ((wxFrameManagerEvent
*) x
));
15221 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
15222 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
15224 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
15225 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
15227 static void *_p_wxFindDialogEventTo_p_wxEvent(void *x
) {
15228 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
15230 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
15231 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
15233 static void *_p_wxMouseCaptureLostEventTo_p_wxEvent(void *x
) {
15234 return (void *)((wxEvent
*) ((wxMouseCaptureLostEvent
*) x
));
15236 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
15237 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
15239 static void *_p_wxCalculateLayoutEventTo_p_wxEvent(void *x
) {
15240 return (void *)((wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
15242 static void *_p_wxAuiNotebookEventTo_p_wxEvent(void *x
) {
15243 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
15245 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
15246 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
15248 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
15249 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
15251 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
15252 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
15254 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
15255 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
15257 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
15258 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
15260 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
15261 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
15263 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
15264 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
15266 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
15267 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
15269 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
15270 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
15272 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
15273 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
15275 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
15276 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
15278 static void *_p_wxClipboardTextEventTo_p_wxEvent(void *x
) {
15279 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
15281 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
15282 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
15284 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
15285 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
15287 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
15288 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
15290 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
15291 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
15293 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
15294 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
15296 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
15297 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
15299 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
15300 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
15302 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
15303 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
15305 static void *_p_wxSashEventTo_p_wxEvent(void *x
) {
15306 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxSashEvent
*) x
));
15308 static void *_p_wxQueryLayoutInfoEventTo_p_wxEvent(void *x
) {
15309 return (void *)((wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
15311 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
15312 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
15314 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
15315 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
15317 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
15318 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
15320 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
15321 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
15323 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
15324 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
15326 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
15327 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
15329 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
15330 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
15332 static void *_p_wxTaskBarIconEventTo_p_wxEvent(void *x
) {
15333 return (void *)((wxEvent
*) ((wxTaskBarIconEvent
*) x
));
15335 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
15336 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
15338 static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x
) {
15339 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
15341 static void *_p_wxPreviewFrameTo_p_wxObject(void *x
) {
15342 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
15344 static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x
) {
15345 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
15347 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
15348 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
15350 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
15351 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
15353 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
15354 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
15356 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
15357 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
15359 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
15360 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
15362 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
15363 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
15365 static void *_p_wxSizerTo_p_wxObject(void *x
) {
15366 return (void *)((wxObject
*) ((wxSizer
*) x
));
15368 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
15369 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
15371 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
15372 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
15374 static void *_p_wxPyPanelTo_p_wxObject(void *x
) {
15375 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
15377 static void *_p_wxEventTo_p_wxObject(void *x
) {
15378 return (void *)((wxObject
*) ((wxEvent
*) x
));
15380 static void *_p_wxFontDataTo_p_wxObject(void *x
) {
15381 return (void *)((wxObject
*) ((wxFontData
*) x
));
15383 static void *_p_wxPrintDataTo_p_wxObject(void *x
) {
15384 return (void *)((wxObject
*) ((wxPrintData
*) x
));
15386 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
15387 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
15389 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
15390 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
15392 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
15393 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
15395 static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x
) {
15396 return (void *)((wxObject
*) ((wxLayoutAlgorithm
*) x
));
15398 static void *_p_wxPyTaskBarIconTo_p_wxObject(void *x
) {
15399 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
15401 static void *_p_wxFindDialogEventTo_p_wxObject(void *x
) {
15402 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
15404 static void *_p_wxAuiTabCtrlTo_p_wxObject(void *x
) {
15405 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxAuiTabCtrl
*) x
));
15407 static void *_p_wxClipboardTextEventTo_p_wxObject(void *x
) {
15408 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
15410 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
15411 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
15413 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
15414 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
15416 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
15417 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
15419 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
15420 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
15422 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
15423 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
15425 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
15426 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
15428 static void *_p_wxPreviewCanvasTo_p_wxObject(void *x
) {
15429 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
15431 static void *_p_wxControlTo_p_wxObject(void *x
) {
15432 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
15434 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
15435 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
15437 static void *_p_wxSplitterEventTo_p_wxObject(void *x
) {
15438 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
15440 static void *_p_wxFrameManagerEventTo_p_wxObject(void *x
) {
15441 return (void *)((wxObject
*) (wxEvent
*) ((wxFrameManagerEvent
*) x
));
15443 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
15444 return (void *)((wxObject
*) ((wxFSFile
*) x
));
15446 static void *_p_wxFindReplaceDataTo_p_wxObject(void *x
) {
15447 return (void *)((wxObject
*) ((wxFindReplaceData
*) x
));
15449 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
15450 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
15452 static void *_p_wxMDIChildFrameTo_p_wxObject(void *x
) {
15453 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
15455 static void *_p_wxAuiMultiNotebookTo_p_wxObject(void *x
) {
15456 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxAuiMultiNotebook
*) x
));
15458 static void *_p_wxColourDataTo_p_wxObject(void *x
) {
15459 return (void *)((wxObject
*) ((wxColourData
*) x
));
15461 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
15462 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
15464 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
15465 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
15467 static void *_p_wxPyWindowTo_p_wxObject(void *x
) {
15468 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPyWindow
*) x
));
15470 static void *_p_wxSplashScreenTo_p_wxObject(void *x
) {
15471 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
15473 static void *_p_wxFileDialogTo_p_wxObject(void *x
) {
15474 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
15476 static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x
) {
15477 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
15479 static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x
) {
15480 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
15482 static void *_p_wxTextEntryDialogTo_p_wxObject(void *x
) {
15483 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
15485 static void *_p_wxPasswordEntryDialogTo_p_wxObject(void *x
) {
15486 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
15488 static void *_p_wxNumberEntryDialogTo_p_wxObject(void *x
) {
15489 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
15491 static void *_p_wxMessageDialogTo_p_wxObject(void *x
) {
15492 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
15494 static void *_p_wxProgressDialogTo_p_wxObject(void *x
) {
15495 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
15497 static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x
) {
15498 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
15500 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
15501 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
15503 static void *_p_wxPrinterTo_p_wxObject(void *x
) {
15504 return (void *)((wxObject
*) ((wxPrinter
*) x
));
15506 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
15507 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
15509 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
15510 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
15512 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
15513 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
15515 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
15516 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
15518 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
15519 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
15521 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
15522 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
15524 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
15525 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
15527 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
15528 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
15530 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
15531 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
15533 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
15534 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
15536 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
15537 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
15539 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
15540 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
15542 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
15543 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
15545 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
15546 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
15548 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
15549 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
15551 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
15552 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
15554 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
15555 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
15557 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
15558 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
15560 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
15561 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
15563 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
15564 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
15566 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
15567 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
15569 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
15570 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
15572 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
15573 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
15575 static void *_p_wxTGAHandlerTo_p_wxObject(void *x
) {
15576 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTGAHandler
*) x
));
15578 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
15579 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
15581 static void *_p_wxMouseCaptureLostEventTo_p_wxObject(void *x
) {
15582 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureLostEvent
*) x
));
15584 static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x
) {
15585 return (void *)((wxObject
*) (wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
15587 static void *_p_wxPyVListBoxTo_p_wxObject(void *x
) {
15588 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
15590 static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x
) {
15591 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
15593 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
15594 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
15596 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
15597 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
15599 static void *_p_wxMiniFrameTo_p_wxObject(void *x
) {
15600 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
15602 static void *_p_wxImageTo_p_wxObject(void *x
) {
15603 return (void *)((wxObject
*) ((wxImage
*) x
));
15605 static void *_p_wxFrameTo_p_wxObject(void *x
) {
15606 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
15608 static void *_p_wxPyPrintoutTo_p_wxObject(void *x
) {
15609 return (void *)((wxObject
*) ((wxPyPrintout
*) x
));
15611 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
15612 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
15614 static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x
) {
15615 return (void *)((wxObject
*) (wxEvent
*) ((wxTaskBarIconEvent
*) x
));
15617 static void *_p_wxFloatingPaneTo_p_wxObject(void *x
) {
15618 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
15620 static void *_p_wxStatusBarTo_p_wxObject(void *x
) {
15621 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxStatusBar
*) x
));
15623 static void *_p_wxFrameManagerTo_p_wxObject(void *x
) {
15624 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxFrameManager
*) x
));
15626 static void *_p_wxMDIParentFrameTo_p_wxObject(void *x
) {
15627 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
15629 static void *_p_wxAuiNotebookEventTo_p_wxObject(void *x
) {
15630 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
15632 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
15633 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
15635 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
15636 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
15638 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
15639 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
15641 static void *_p_wxWindowTo_p_wxObject(void *x
) {
15642 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
15644 static void *_p_wxMenuTo_p_wxObject(void *x
) {
15645 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
15647 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
15648 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
15650 static void *_p_wxScrolledWindowTo_p_wxObject(void *x
) {
15651 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
15653 static void *_p_wxTopLevelWindowTo_p_wxObject(void *x
) {
15654 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxTopLevelWindow
*) x
));
15656 static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x
) {
15657 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplashScreenWindow
*) x
));
15659 static void *_p_wxSplitterWindowTo_p_wxObject(void *x
) {
15660 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplitterWindow
*) x
));
15662 static void *_p_wxSashWindowTo_p_wxObject(void *x
) {
15663 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSashWindow
*) x
));
15665 static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x
) {
15666 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
15668 static void *_p_wxPopupWindowTo_p_wxObject(void *x
) {
15669 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPopupWindow
*) x
));
15671 static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x
) {
15672 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
15674 static void *_p_wxTipWindowTo_p_wxObject(void *x
) {
15675 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
15677 static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x
) {
15678 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
15680 static void *_p_wxMDIClientWindowTo_p_wxObject(void *x
) {
15681 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMDIClientWindow
*) x
));
15683 static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x
) {
15684 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
15686 static void *_p_wxSashEventTo_p_wxObject(void *x
) {
15687 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxSashEvent
*) x
));
15689 static void *_p_wxPrintPreviewTo_p_wxObject(void *x
) {
15690 return (void *)((wxObject
*) ((wxPrintPreview
*) x
));
15692 static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x
) {
15693 return (void *)((wxObject
*) (wxPrintPreview
*) ((wxPyPrintPreview
*) x
));
15695 static void *_p_wxPanelTo_p_wxObject(void *x
) {
15696 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPanel
*) x
));
15698 static void *_p_wxDialogTo_p_wxObject(void *x
) {
15699 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
15701 static void *_p_wxColourDialogTo_p_wxObject(void *x
) {
15702 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
15704 static void *_p_wxDirDialogTo_p_wxObject(void *x
) {
15705 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
15707 static void *_p_wxFontDialogTo_p_wxObject(void *x
) {
15708 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
15710 static void *_p_wxPageSetupDialogTo_p_wxObject(void *x
) {
15711 return (void *)((wxObject
*) ((wxPageSetupDialog
*) x
));
15713 static void *_p_wxPrintDialogTo_p_wxObject(void *x
) {
15714 return (void *)((wxObject
*) ((wxPrintDialog
*) x
));
15716 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
15717 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
15719 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
15720 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
15722 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
15723 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
15725 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
15726 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
15728 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
15729 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
15731 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
15732 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
15734 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
15735 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
15737 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
15738 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
15740 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
15741 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
15743 static void *_p_wxPreviewControlBarTo_p_wxObject(void *x
) {
15744 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
15746 static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x
) {
15747 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
15749 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
15750 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
15752 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
15753 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
15755 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
15756 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
15758 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
15759 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
15761 static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x
) {
15762 return (void *)((wxObject
*) ((wxPageSetupDialogData
*) x
));
15764 static void *_p_wxPrintDialogDataTo_p_wxObject(void *x
) {
15765 return (void *)((wxObject
*) ((wxPrintDialogData
*) x
));
15767 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
15768 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
15770 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
15771 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
15773 static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x
) {
15774 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
15776 static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x
) {
15777 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
15779 static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x
) {
15780 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
15782 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
15783 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
15785 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
15786 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
15788 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
15789 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
15791 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
15792 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
15794 static void *_p_wxPasswordEntryDialogTo_p_wxEvtHandler(void *x
) {
15795 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
15797 static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x
) {
15798 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
15800 static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x
) {
15801 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
15803 static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x
) {
15804 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
15806 static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x
) {
15807 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
15809 static void *_p_wxNumberEntryDialogTo_p_wxEvtHandler(void *x
) {
15810 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxNumberEntryDialog
*) x
));
15812 static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x
) {
15813 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
15815 static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x
) {
15816 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
15818 static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x
) {
15819 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
15821 static void *_p_wxPanelTo_p_wxEvtHandler(void *x
) {
15822 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPanel
*) x
));
15824 static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x
) {
15825 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxStatusBar
*) x
));
15827 static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x
) {
15828 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
15830 static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x
) {
15831 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
15833 static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x
) {
15834 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
15836 static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x
) {
15837 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPopupWindow
*) x
));
15839 static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x
) {
15840 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
15842 static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x
) {
15843 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSashWindow
*) x
));
15845 static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x
) {
15846 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplitterWindow
*) x
));
15848 static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x
) {
15849 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplashScreenWindow
*) x
));
15851 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
15852 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
15854 static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x
) {
15855 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
15857 static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x
) {
15858 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxTopLevelWindow
*) x
));
15860 static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x
) {
15861 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMDIClientWindow
*) x
));
15863 static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x
) {
15864 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
15866 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
15867 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
15869 static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x
) {
15870 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
15872 static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x
) {
15873 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
15875 static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x
) {
15876 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
15878 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
15879 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
15881 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
15882 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
15884 static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x
) {
15885 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPyWindow
*) x
));
15887 static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x
) {
15888 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
15890 static void *_p_wxFloatingPaneTo_p_wxEvtHandler(void *x
) {
15891 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxMiniFrame
*) ((wxFloatingPane
*) x
));
15893 static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x
) {
15894 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
15896 static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x
) {
15897 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
15899 static void *_p_wxAuiMultiNotebookTo_p_wxEvtHandler(void *x
) {
15900 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxAuiMultiNotebook
*) x
));
15902 static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x
) {
15903 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
15905 static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x
) {
15906 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
15908 static void *_p_wxPyTaskBarIconTo_p_wxEvtHandler(void *x
) {
15909 return (void *)((wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
15911 static void *_p_wxAuiTabCtrlTo_p_wxEvtHandler(void *x
) {
15912 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxAuiTabCtrl
*) x
));
15914 static void *_p_wxFrameTo_p_wxEvtHandler(void *x
) {
15915 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
15917 static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x
) {
15918 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
15920 static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x
) {
15921 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
15923 static void *_p_wxDialogTo_p_wxEvtHandler(void *x
) {
15924 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
15926 static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x
) {
15927 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
15929 static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x
) {
15930 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
15932 static void *_p_wxFrameManagerTo_p_wxEvtHandler(void *x
) {
15933 return (void *)((wxEvtHandler
*) ((wxFrameManager
*) x
));
15935 static void *_p_wxAuiTabCtrlTo_p_wxAuiTabContainer(void *x
) {
15936 return (void *)((wxAuiTabContainer
*) ((wxAuiTabCtrl
*) x
));
15938 static void *_p_wxGBSizerItemTo_p_wxSizerItem(void *x
) {
15939 return (void *)((wxSizerItem
*) ((wxGBSizerItem
*) x
));
15941 static void *_p_wxMDIChildFrameTo_p_wxFrame(void *x
) {
15942 return (void *)((wxFrame
*) ((wxMDIChildFrame
*) x
));
15944 static void *_p_wxProgressDialogTo_p_wxFrame(void *x
) {
15945 return (void *)((wxFrame
*) ((wxProgressDialog
*) x
));
15947 static void *_p_wxPreviewFrameTo_p_wxFrame(void *x
) {
15948 return (void *)((wxFrame
*) ((wxPreviewFrame
*) x
));
15950 static void *_p_wxPyPreviewFrameTo_p_wxFrame(void *x
) {
15951 return (void *)((wxFrame
*) (wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
15953 static void *_p_wxFloatingPaneTo_p_wxFrame(void *x
) {
15954 return (void *)((wxFrame
*) (wxMiniFrame
*) ((wxFloatingPane
*) x
));
15956 static void *_p_wxMiniFrameTo_p_wxFrame(void *x
) {
15957 return (void *)((wxFrame
*) ((wxMiniFrame
*) x
));
15959 static void *_p_wxSplashScreenTo_p_wxFrame(void *x
) {
15960 return (void *)((wxFrame
*) ((wxSplashScreen
*) x
));
15962 static void *_p_wxMDIParentFrameTo_p_wxFrame(void *x
) {
15963 return (void *)((wxFrame
*) ((wxMDIParentFrame
*) x
));
15965 static void *_p_wxSashEventTo_p_wxCommandEvent(void *x
) {
15966 return (void *)((wxCommandEvent
*) ((wxSashEvent
*) x
));
15968 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) {
15969 return (void *)((wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
15971 static void *_p_wxSplitterEventTo_p_wxCommandEvent(void *x
) {
15972 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
15974 static void *_p_wxClipboardTextEventTo_p_wxCommandEvent(void *x
) {
15975 return (void *)((wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
15977 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) {
15978 return (void *)((wxCommandEvent
*) ((wxScrollEvent
*) x
));
15980 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) {
15981 return (void *)((wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
15983 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) {
15984 return (void *)((wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
15986 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) {
15987 return (void *)((wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
15989 static void *_p_wxAuiNotebookEventTo_p_wxCommandEvent(void *x
) {
15990 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxAuiNotebookEvent
*) x
));
15992 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) {
15993 return (void *)((wxCommandEvent
*) ((wxDateEvent
*) x
));
15995 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) {
15996 return (void *)((wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
15998 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) {
15999 return (void *)((wxCommandEvent
*) ((wxNotifyEvent
*) x
));
16001 static void *_p_wxFindDialogEventTo_p_wxCommandEvent(void *x
) {
16002 return (void *)((wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
16004 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) {
16005 return (void *)((wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
16007 static void *_p_wxDefaultDockArtTo_p_wxDockArt(void *x
) {
16008 return (void *)((wxDockArt
*) ((wxDefaultDockArt
*) x
));
16010 static void *_p_wxPyDockArtTo_p_wxDockArt(void *x
) {
16011 return (void *)((wxDockArt
*) (wxDefaultDockArt
*) ((wxPyDockArt
*) x
));
16013 static void *_p_wxPyDockArtTo_p_wxDefaultDockArt(void *x
) {
16014 return (void *)((wxDefaultDockArt
*) ((wxPyDockArt
*) x
));
16016 static void *_p_wxPyTabArtTo_p_wxDefaultTabArt(void *x
) {
16017 return (void *)((wxDefaultTabArt
*) ((wxPyTabArt
*) x
));
16019 static void *_p_wxDefaultTabArtTo_p_wxTabArt(void *x
) {
16020 return (void *)((wxTabArt
*) ((wxDefaultTabArt
*) x
));
16022 static void *_p_wxPyTabArtTo_p_wxTabArt(void *x
) {
16023 return (void *)((wxTabArt
*) (wxDefaultTabArt
*) ((wxPyTabArt
*) x
));
16025 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, (void*)0, 0};
16026 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};
16027 static swig_type_info _swigt__p_int
= {"_p_int", "int *", 0, 0, (void*)0, 0};
16028 static swig_type_info _swigt__p_p_wxAuiTabContainerButton
= {"_p_p_wxAuiTabContainerButton", "wxAuiTabContainerButton **", 0, 0, (void*)0, 0};
16029 static swig_type_info _swigt__p_p_wxWindow
= {"_p_p_wxWindow", "wxWindow **", 0, 0, (void*)0, 0};
16030 static swig_type_info _swigt__p_p_wxSplashScreen
= {"_p_p_wxSplashScreen", 0, 0, 0, 0, 0};
16031 static swig_type_info _swigt__p_p_wxMiniFrame
= {"_p_p_wxMiniFrame", 0, 0, 0, 0, 0};
16032 static swig_type_info _swigt__p_p_wxPyPanel
= {"_p_p_wxPyPanel", 0, 0, 0, 0, 0};
16033 static swig_type_info _swigt__p_p_wxMenuBar
= {"_p_p_wxMenuBar", 0, 0, 0, 0, 0};
16034 static swig_type_info _swigt__p_p_wxFindReplaceDialog
= {"_p_p_wxFindReplaceDialog", 0, 0, 0, 0, 0};
16035 static swig_type_info _swigt__p_p_wxProgressDialog
= {"_p_p_wxProgressDialog", 0, 0, 0, 0, 0};
16036 static swig_type_info _swigt__p_p_wxMessageDialog
= {"_p_p_wxMessageDialog", 0, 0, 0, 0, 0};
16037 static swig_type_info _swigt__p_p_wxNumberEntryDialog
= {"_p_p_wxNumberEntryDialog", 0, 0, 0, 0, 0};
16038 static swig_type_info _swigt__p_p_wxPasswordEntryDialog
= {"_p_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0};
16039 static swig_type_info _swigt__p_p_wxTextEntryDialog
= {"_p_p_wxTextEntryDialog", 0, 0, 0, 0, 0};
16040 static swig_type_info _swigt__p_p_wxSingleChoiceDialog
= {"_p_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0};
16041 static swig_type_info _swigt__p_p_wxMultiChoiceDialog
= {"_p_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0};
16042 static swig_type_info _swigt__p_p_wxFileDialog
= {"_p_p_wxFileDialog", 0, 0, 0, 0, 0};
16043 static swig_type_info _swigt__p_p_wxPanel
= {"_p_p_wxPanel", 0, 0, 0, 0, 0};
16044 static swig_type_info _swigt__p_p_wxStatusBar
= {"_p_p_wxStatusBar", 0, 0, 0, 0, 0};
16045 static swig_type_info _swigt__p_p_wxPyVScrolledWindow
= {"_p_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0};
16046 static swig_type_info _swigt__p_p_wxTipWindow
= {"_p_p_wxTipWindow", 0, 0, 0, 0, 0};
16047 static swig_type_info _swigt__p_p_wxPyPopupTransientWindow
= {"_p_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0};
16048 static swig_type_info _swigt__p_p_wxPopupWindow
= {"_p_p_wxPopupWindow", 0, 0, 0, 0, 0};
16049 static swig_type_info _swigt__p_p_wxSashLayoutWindow
= {"_p_p_wxSashLayoutWindow", 0, 0, 0, 0, 0};
16050 static swig_type_info _swigt__p_p_wxScrolledWindow
= {"_p_p_wxScrolledWindow", 0, 0, 0, 0, 0};
16051 static swig_type_info _swigt__p_p_wxTopLevelWindow
= {"_p_p_wxTopLevelWindow", 0, 0, 0, 0, 0};
16052 static swig_type_info _swigt__p_p_wxSplashScreenWindow
= {"_p_p_wxSplashScreenWindow", 0, 0, 0, 0, 0};
16053 static swig_type_info _swigt__p_p_wxSplitterWindow
= {"_p_p_wxSplitterWindow", 0, 0, 0, 0, 0};
16054 static swig_type_info _swigt__p_p_wxSashWindow
= {"_p_p_wxSashWindow", 0, 0, 0, 0, 0};
16055 static swig_type_info _swigt__p_p_wxMDIClientWindow
= {"_p_p_wxMDIClientWindow", 0, 0, 0, 0, 0};
16056 static swig_type_info _swigt__p_p_wxPyScrolledWindow
= {"_p_p_wxPyScrolledWindow", 0, 0, 0, 0, 0};
16057 static swig_type_info _swigt__p_p_wxPreviewFrame
= {"_p_p_wxPreviewFrame", 0, 0, 0, 0, 0};
16058 static swig_type_info _swigt__p_p_wxPyPreviewFrame
= {"_p_p_wxPyPreviewFrame", 0, 0, 0, 0, 0};
16059 static swig_type_info _swigt__p_p_wxControl
= {"_p_p_wxControl", 0, 0, 0, 0, 0};
16060 static swig_type_info _swigt__p_p_wxMDIChildFrame
= {"_p_p_wxMDIChildFrame", 0, 0, 0, 0, 0};
16061 static swig_type_info _swigt__p_p_wxControlWithItems
= {"_p_p_wxControlWithItems", 0, 0, 0, 0, 0};
16062 static swig_type_info _swigt__p_p_wxPyWindow
= {"_p_p_wxPyWindow", 0, 0, 0, 0, 0};
16063 static swig_type_info _swigt__p_p_wxPreviewCanvas
= {"_p_p_wxPreviewCanvas", 0, 0, 0, 0, 0};
16064 static swig_type_info _swigt__p_p_wxFloatingPane
= {"_p_p_wxFloatingPane", 0, 0, 0, 0, 0};
16065 static swig_type_info _swigt__p_p_wxPyHtmlListBox
= {"_p_p_wxPyHtmlListBox", 0, 0, 0, 0, 0};
16066 static swig_type_info _swigt__p_p_wxPyVListBox
= {"_p_p_wxPyVListBox", 0, 0, 0, 0, 0};
16067 static swig_type_info _swigt__p_p_wxAuiMultiNotebook
= {"_p_p_wxAuiMultiNotebook", 0, 0, 0, 0, 0};
16068 static swig_type_info _swigt__p_p_wxPreviewControlBar
= {"_p_p_wxPreviewControlBar", 0, 0, 0, 0, 0};
16069 static swig_type_info _swigt__p_p_wxPyPreviewControlBar
= {"_p_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0};
16070 static swig_type_info _swigt__p_p_wxAuiTabCtrl
= {"_p_p_wxAuiTabCtrl", 0, 0, 0, 0, 0};
16071 static swig_type_info _swigt__p_p_wxFrame
= {"_p_p_wxFrame", 0, 0, 0, 0, 0};
16072 static swig_type_info _swigt__p_p_wxFontDialog
= {"_p_p_wxFontDialog", 0, 0, 0, 0, 0};
16073 static swig_type_info _swigt__p_p_wxDirDialog
= {"_p_p_wxDirDialog", 0, 0, 0, 0, 0};
16074 static swig_type_info _swigt__p_p_wxColourDialog
= {"_p_p_wxColourDialog", 0, 0, 0, 0, 0};
16075 static swig_type_info _swigt__p_p_wxDialog
= {"_p_p_wxDialog", 0, 0, 0, 0, 0};
16076 static swig_type_info _swigt__p_p_wxMDIParentFrame
= {"_p_p_wxMDIParentFrame", 0, 0, 0, 0, 0};
16077 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0};
16078 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0};
16079 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxUIntPtr *", 0, 0, (void*)0, 0};
16080 static swig_type_info _swigt__p_wxAuiMultiNotebook
= {"_p_wxAuiMultiNotebook", "wxAuiMultiNotebook *", 0, 0, (void*)0, 0};
16081 static swig_type_info _swigt__p_wxAuiNotebookEvent
= {"_p_wxAuiNotebookEvent", "wxAuiNotebookEvent *", 0, 0, (void*)0, 0};
16082 static swig_type_info _swigt__p_wxAuiNotebookPage
= {"_p_wxAuiNotebookPage", "wxAuiNotebookPage *", 0, 0, (void*)0, 0};
16083 static swig_type_info _swigt__p_wxAuiNotebookPageArray
= {"_p_wxAuiNotebookPageArray", "wxAuiNotebookPageArray *", 0, 0, (void*)0, 0};
16084 static swig_type_info _swigt__p_wxAuiTabContainer
= {"_p_wxAuiTabContainer", "wxAuiTabContainer *", 0, 0, (void*)0, 0};
16085 static swig_type_info _swigt__p_wxAuiTabContainerButton
= {"_p_wxAuiTabContainerButton", "wxAuiTabContainerButton *", 0, 0, (void*)0, 0};
16086 static swig_type_info _swigt__p_wxAuiTabCtrl
= {"_p_wxAuiTabCtrl", "wxAuiTabCtrl *", 0, 0, (void*)0, 0};
16087 static swig_type_info _swigt__p_wxBitmap
= {"_p_wxBitmap", "wxBitmap *", 0, 0, (void*)0, 0};
16088 static swig_type_info _swigt__p_wxColor
= {"_p_wxColor", "wxColor *", 0, 0, (void*)0, 0};
16089 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0};
16090 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", "wxCommandEvent *", 0, 0, (void*)0, 0};
16091 static swig_type_info _swigt__p_wxSashEvent
= {"_p_wxSashEvent", 0, 0, 0, 0, 0};
16092 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0};
16093 static swig_type_info _swigt__p_wxSplitterEvent
= {"_p_wxSplitterEvent", 0, 0, 0, 0, 0};
16094 static swig_type_info _swigt__p_wxClipboardTextEvent
= {"_p_wxClipboardTextEvent", 0, 0, 0, 0, 0};
16095 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0};
16096 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0};
16097 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0};
16098 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0};
16099 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0, 0};
16100 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0};
16101 static swig_type_info _swigt__p_wxFindDialogEvent
= {"_p_wxFindDialogEvent", 0, 0, 0, 0, 0};
16102 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0};
16103 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", "wxControl *", 0, 0, (void*)0, 0};
16104 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0};
16105 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0};
16106 static swig_type_info _swigt__p_wxDefaultDockArt
= {"_p_wxDefaultDockArt", "wxDefaultDockArt *", 0, 0, (void*)0, 0};
16107 static swig_type_info _swigt__p_wxDefaultTabArt
= {"_p_wxDefaultTabArt", "wxDefaultTabArt *", 0, 0, (void*)0, 0};
16108 static swig_type_info _swigt__p_wxDockArt
= {"_p_wxDockArt", "wxDockArt *", 0, 0, (void*)0, 0};
16109 static swig_type_info _swigt__p_wxDockInfo
= {"_p_wxDockInfo", "wxDockInfo *", 0, 0, (void*)0, 0};
16110 static swig_type_info _swigt__p_wxDockUIPart
= {"_p_wxDockUIPart", "wxDockUIPart *", 0, 0, (void*)0, 0};
16111 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0};
16112 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0};
16113 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0, 0};
16114 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0, 0};
16115 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0};
16116 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0};
16117 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0};
16118 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0};
16119 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0, 0};
16120 static swig_type_info _swigt__p_wxMouseCaptureLostEvent
= {"_p_wxMouseCaptureLostEvent", 0, 0, 0, 0, 0};
16121 static swig_type_info _swigt__p_wxCalculateLayoutEvent
= {"_p_wxCalculateLayoutEvent", 0, 0, 0, 0, 0};
16122 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0};
16123 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0};
16124 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0};
16125 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0};
16126 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0, 0};
16127 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0};
16128 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0};
16129 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0};
16130 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0};
16131 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0};
16132 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0};
16133 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0};
16134 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0};
16135 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0};
16136 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0};
16137 static swig_type_info _swigt__p_wxQueryLayoutInfoEvent
= {"_p_wxQueryLayoutInfoEvent", 0, 0, 0, 0, 0};
16138 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0, 0};
16139 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0};
16140 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0};
16141 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", 0, 0, 0, 0, 0};
16142 static swig_type_info _swigt__p_wxTaskBarIconEvent
= {"_p_wxTaskBarIconEvent", 0, 0, 0, 0, 0};
16143 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0};
16144 static swig_type_info _swigt__p_wxSplashScreen
= {"_p_wxSplashScreen", 0, 0, 0, 0, 0};
16145 static swig_type_info _swigt__p_wxPyPanel
= {"_p_wxPyPanel", 0, 0, 0, 0, 0};
16146 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", 0, 0, 0, 0, 0};
16147 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", 0, 0, 0, 0, 0};
16148 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0, 0};
16149 static swig_type_info _swigt__p_wxNumberEntryDialog
= {"_p_wxNumberEntryDialog", 0, 0, 0, 0, 0};
16150 static swig_type_info _swigt__p_wxFileDialog
= {"_p_wxFileDialog", 0, 0, 0, 0, 0};
16151 static swig_type_info _swigt__p_wxMultiChoiceDialog
= {"_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0};
16152 static swig_type_info _swigt__p_wxFindReplaceDialog
= {"_p_wxFindReplaceDialog", 0, 0, 0, 0, 0};
16153 static swig_type_info _swigt__p_wxProgressDialog
= {"_p_wxProgressDialog", 0, 0, 0, 0, 0};
16154 static swig_type_info _swigt__p_wxMessageDialog
= {"_p_wxMessageDialog", 0, 0, 0, 0, 0};
16155 static swig_type_info _swigt__p_wxPasswordEntryDialog
= {"_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0};
16156 static swig_type_info _swigt__p_wxTextEntryDialog
= {"_p_wxTextEntryDialog", 0, 0, 0, 0, 0};
16157 static swig_type_info _swigt__p_wxSingleChoiceDialog
= {"_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0};
16158 static swig_type_info _swigt__p_wxPanel
= {"_p_wxPanel", 0, 0, 0, 0, 0};
16159 static swig_type_info _swigt__p_wxStatusBar
= {"_p_wxStatusBar", 0, 0, 0, 0, 0};
16160 static swig_type_info _swigt__p_wxSashWindow
= {"_p_wxSashWindow", 0, 0, 0, 0, 0};
16161 static swig_type_info _swigt__p_wxScrolledWindow
= {"_p_wxScrolledWindow", 0, 0, 0, 0, 0};
16162 static swig_type_info _swigt__p_wxMDIClientWindow
= {"_p_wxMDIClientWindow", 0, 0, 0, 0, 0};
16163 static swig_type_info _swigt__p_wxPyScrolledWindow
= {"_p_wxPyScrolledWindow", 0, 0, 0, 0, 0};
16164 static swig_type_info _swigt__p_wxSplitterWindow
= {"_p_wxSplitterWindow", 0, 0, 0, 0, 0};
16165 static swig_type_info _swigt__p_wxSplashScreenWindow
= {"_p_wxSplashScreenWindow", 0, 0, 0, 0, 0};
16166 static swig_type_info _swigt__p_wxSashLayoutWindow
= {"_p_wxSashLayoutWindow", 0, 0, 0, 0, 0};
16167 static swig_type_info _swigt__p_wxPopupWindow
= {"_p_wxPopupWindow", 0, 0, 0, 0, 0};
16168 static swig_type_info _swigt__p_wxPyPopupTransientWindow
= {"_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0};
16169 static swig_type_info _swigt__p_wxTipWindow
= {"_p_wxTipWindow", 0, 0, 0, 0, 0};
16170 static swig_type_info _swigt__p_wxPyVScrolledWindow
= {"_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0};
16171 static swig_type_info _swigt__p_wxPyPreviewFrame
= {"_p_wxPyPreviewFrame", 0, 0, 0, 0, 0};
16172 static swig_type_info _swigt__p_wxPreviewFrame
= {"_p_wxPreviewFrame", 0, 0, 0, 0, 0};
16173 static swig_type_info _swigt__p_wxMDIChildFrame
= {"_p_wxMDIChildFrame", 0, 0, 0, 0, 0};
16174 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0, 0};
16175 static swig_type_info _swigt__p_wxPyWindow
= {"_p_wxPyWindow", 0, 0, 0, 0, 0};
16176 static swig_type_info _swigt__p_wxPreviewCanvas
= {"_p_wxPreviewCanvas", 0, 0, 0, 0, 0};
16177 static swig_type_info _swigt__p_wxPyHtmlListBox
= {"_p_wxPyHtmlListBox", 0, 0, 0, 0, 0};
16178 static swig_type_info _swigt__p_wxPyVListBox
= {"_p_wxPyVListBox", 0, 0, 0, 0, 0};
16179 static swig_type_info _swigt__p_wxPreviewControlBar
= {"_p_wxPreviewControlBar", 0, 0, 0, 0, 0};
16180 static swig_type_info _swigt__p_wxPyPreviewControlBar
= {"_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0};
16181 static swig_type_info _swigt__p_wxPyTaskBarIcon
= {"_p_wxPyTaskBarIcon", 0, 0, 0, 0, 0};
16182 static swig_type_info _swigt__p_wxFontDialog
= {"_p_wxFontDialog", 0, 0, 0, 0, 0};
16183 static swig_type_info _swigt__p_wxDirDialog
= {"_p_wxDirDialog", 0, 0, 0, 0, 0};
16184 static swig_type_info _swigt__p_wxColourDialog
= {"_p_wxColourDialog", 0, 0, 0, 0, 0};
16185 static swig_type_info _swigt__p_wxDialog
= {"_p_wxDialog", 0, 0, 0, 0, 0};
16186 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", 0, 0, 0, 0, 0};
16187 static swig_type_info _swigt__p_wxMDIParentFrame
= {"_p_wxMDIParentFrame", 0, 0, 0, 0, 0};
16188 static swig_type_info _swigt__p_wxFloatingPane
= {"_p_wxFloatingPane", "wxFloatingPane *", 0, 0, (void*)0, 0};
16189 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0};
16190 static swig_type_info _swigt__p_wxFrame
= {"_p_wxFrame", "wxFrame *", 0, 0, (void*)0, 0};
16191 static swig_type_info _swigt__p_wxFrameManager
= {"_p_wxFrameManager", "wxFrameManager *", 0, 0, (void*)0, 0};
16192 static swig_type_info _swigt__p_wxFrameManagerEvent
= {"_p_wxFrameManagerEvent", "wxFrameManagerEvent *", 0, 0, (void*)0, 0};
16193 static swig_type_info _swigt__p_wxMiniFrame
= {"_p_wxMiniFrame", "wxMiniFrame *", 0, 0, (void*)0, 0};
16194 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", "wxNotifyEvent *", 0, 0, (void*)0, 0};
16195 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0};
16196 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0};
16197 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0};
16198 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0};
16199 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0};
16200 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0};
16201 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0};
16202 static swig_type_info _swigt__p_wxFontData
= {"_p_wxFontData", 0, 0, 0, 0, 0};
16203 static swig_type_info _swigt__p_wxPrintData
= {"_p_wxPrintData", 0, 0, 0, 0, 0};
16204 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0, 0};
16205 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0};
16206 static swig_type_info _swigt__p_wxLayoutAlgorithm
= {"_p_wxLayoutAlgorithm", 0, 0, 0, 0, 0};
16207 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0, 0};
16208 static swig_type_info _swigt__p_wxFindReplaceData
= {"_p_wxFindReplaceData", 0, 0, 0, 0, 0};
16209 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0, 0};
16210 static swig_type_info _swigt__p_wxColourData
= {"_p_wxColourData", 0, 0, 0, 0, 0};
16211 static swig_type_info _swigt__p_wxPrinter
= {"_p_wxPrinter", 0, 0, 0, 0, 0};
16212 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0, 0};
16213 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0, 0};
16214 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0};
16215 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0};
16216 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0};
16217 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0};
16218 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0};
16219 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0, 0};
16220 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0, 0};
16221 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0};
16222 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0};
16223 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0, 0};
16224 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0};
16225 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0};
16226 static swig_type_info _swigt__p_wxTGAHandler
= {"_p_wxTGAHandler", 0, 0, 0, 0, 0};
16227 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0};
16228 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0};
16229 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0, 0};
16230 static swig_type_info _swigt__p_wxPyPrintout
= {"_p_wxPyPrintout", 0, 0, 0, 0, 0};
16231 static swig_type_info _swigt__p_wxPrintPreview
= {"_p_wxPrintPreview", 0, 0, 0, 0, 0};
16232 static swig_type_info _swigt__p_wxPyPrintPreview
= {"_p_wxPyPrintPreview", 0, 0, 0, 0, 0};
16233 static swig_type_info _swigt__p_wxPageSetupDialog
= {"_p_wxPageSetupDialog", 0, 0, 0, 0, 0};
16234 static swig_type_info _swigt__p_wxPrintDialog
= {"_p_wxPrintDialog", 0, 0, 0, 0, 0};
16235 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", 0, 0, 0, 0, 0};
16236 static swig_type_info _swigt__p_wxPageSetupDialogData
= {"_p_wxPageSetupDialogData", 0, 0, 0, 0, 0};
16237 static swig_type_info _swigt__p_wxPrintDialogData
= {"_p_wxPrintDialogData", 0, 0, 0, 0, 0};
16238 static swig_type_info _swigt__p_wxPaneButton
= {"_p_wxPaneButton", "wxPaneButton *", 0, 0, (void*)0, 0};
16239 static swig_type_info _swigt__p_wxPaneButtonArray
= {"_p_wxPaneButtonArray", "wxPaneButtonArray *", 0, 0, (void*)0, 0};
16240 static swig_type_info _swigt__p_wxPaneInfo
= {"_p_wxPaneInfo", "wxPaneInfo *", 0, 0, (void*)0, 0};
16241 static swig_type_info _swigt__p_wxPaneInfoPtrArray
= {"_p_wxPaneInfoPtrArray", "wxPaneInfoPtrArray *", 0, 0, (void*)0, 0};
16242 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0};
16243 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0};
16244 static swig_type_info _swigt__p_wxPyDockArt
= {"_p_wxPyDockArt", "wxPyDockArt *", 0, 0, (void*)0, 0};
16245 static swig_type_info _swigt__p_wxPyTabArt
= {"_p_wxPyTabArt", "wxPyTabArt *", 0, 0, (void*)0, 0};
16246 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0};
16247 static swig_type_info _swigt__p_wxSize
= {"_p_wxSize", "wxSize *", 0, 0, (void*)0, 0};
16248 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", "wxSizer *", 0, 0, (void*)0, 0};
16249 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", "wxSizerItem *", 0, 0, (void*)0, 0};
16250 static swig_type_info _swigt__p_wxString
= {"_p_wxString", "wxString *", 0, 0, (void*)0, 0};
16251 static swig_type_info _swigt__p_wxTabArt
= {"_p_wxTabArt", "wxTabArt *", 0, 0, (void*)0, 0};
16252 static swig_type_info _swigt__p_wxTopLevelWindow
= {"_p_wxTopLevelWindow", "wxTopLevelWindow *", 0, 0, (void*)0, 0};
16253 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0};
16255 static swig_type_info
*swig_type_initial
[] = {
16257 &_swigt__p_form_ops_t
,
16259 &_swigt__p_p_wxAuiMultiNotebook
,
16260 &_swigt__p_p_wxAuiTabContainerButton
,
16261 &_swigt__p_p_wxAuiTabCtrl
,
16262 &_swigt__p_p_wxColourDialog
,
16263 &_swigt__p_p_wxControl
,
16264 &_swigt__p_p_wxControlWithItems
,
16265 &_swigt__p_p_wxDialog
,
16266 &_swigt__p_p_wxDirDialog
,
16267 &_swigt__p_p_wxFileDialog
,
16268 &_swigt__p_p_wxFindReplaceDialog
,
16269 &_swigt__p_p_wxFloatingPane
,
16270 &_swigt__p_p_wxFontDialog
,
16271 &_swigt__p_p_wxFrame
,
16272 &_swigt__p_p_wxMDIChildFrame
,
16273 &_swigt__p_p_wxMDIClientWindow
,
16274 &_swigt__p_p_wxMDIParentFrame
,
16275 &_swigt__p_p_wxMenuBar
,
16276 &_swigt__p_p_wxMessageDialog
,
16277 &_swigt__p_p_wxMiniFrame
,
16278 &_swigt__p_p_wxMultiChoiceDialog
,
16279 &_swigt__p_p_wxNumberEntryDialog
,
16280 &_swigt__p_p_wxPanel
,
16281 &_swigt__p_p_wxPasswordEntryDialog
,
16282 &_swigt__p_p_wxPopupWindow
,
16283 &_swigt__p_p_wxPreviewCanvas
,
16284 &_swigt__p_p_wxPreviewControlBar
,
16285 &_swigt__p_p_wxPreviewFrame
,
16286 &_swigt__p_p_wxProgressDialog
,
16287 &_swigt__p_p_wxPyHtmlListBox
,
16288 &_swigt__p_p_wxPyPanel
,
16289 &_swigt__p_p_wxPyPopupTransientWindow
,
16290 &_swigt__p_p_wxPyPreviewControlBar
,
16291 &_swigt__p_p_wxPyPreviewFrame
,
16292 &_swigt__p_p_wxPyScrolledWindow
,
16293 &_swigt__p_p_wxPyVListBox
,
16294 &_swigt__p_p_wxPyVScrolledWindow
,
16295 &_swigt__p_p_wxPyWindow
,
16296 &_swigt__p_p_wxSashLayoutWindow
,
16297 &_swigt__p_p_wxSashWindow
,
16298 &_swigt__p_p_wxScrolledWindow
,
16299 &_swigt__p_p_wxSingleChoiceDialog
,
16300 &_swigt__p_p_wxSplashScreen
,
16301 &_swigt__p_p_wxSplashScreenWindow
,
16302 &_swigt__p_p_wxSplitterWindow
,
16303 &_swigt__p_p_wxStatusBar
,
16304 &_swigt__p_p_wxTextEntryDialog
,
16305 &_swigt__p_p_wxTipWindow
,
16306 &_swigt__p_p_wxTopLevelWindow
,
16307 &_swigt__p_p_wxWindow
,
16308 &_swigt__p_unsigned_char
,
16309 &_swigt__p_unsigned_int
,
16310 &_swigt__p_unsigned_long
,
16311 &_swigt__p_wxANIHandler
,
16312 &_swigt__p_wxAcceleratorTable
,
16313 &_swigt__p_wxActivateEvent
,
16314 &_swigt__p_wxAuiMultiNotebook
,
16315 &_swigt__p_wxAuiNotebookEvent
,
16316 &_swigt__p_wxAuiNotebookPage
,
16317 &_swigt__p_wxAuiNotebookPageArray
,
16318 &_swigt__p_wxAuiTabContainer
,
16319 &_swigt__p_wxAuiTabContainerButton
,
16320 &_swigt__p_wxAuiTabCtrl
,
16321 &_swigt__p_wxBMPHandler
,
16322 &_swigt__p_wxBitmap
,
16323 &_swigt__p_wxBoxSizer
,
16324 &_swigt__p_wxCURHandler
,
16325 &_swigt__p_wxCalculateLayoutEvent
,
16326 &_swigt__p_wxChildFocusEvent
,
16327 &_swigt__p_wxClipboardTextEvent
,
16328 &_swigt__p_wxCloseEvent
,
16329 &_swigt__p_wxColor
,
16330 &_swigt__p_wxColour
,
16331 &_swigt__p_wxColourData
,
16332 &_swigt__p_wxColourDialog
,
16333 &_swigt__p_wxCommandEvent
,
16334 &_swigt__p_wxContextMenuEvent
,
16335 &_swigt__p_wxControl
,
16336 &_swigt__p_wxControlWithItems
,
16338 &_swigt__p_wxDateEvent
,
16339 &_swigt__p_wxDefaultDockArt
,
16340 &_swigt__p_wxDefaultTabArt
,
16341 &_swigt__p_wxDialog
,
16342 &_swigt__p_wxDirDialog
,
16343 &_swigt__p_wxDisplayChangedEvent
,
16344 &_swigt__p_wxDockArt
,
16345 &_swigt__p_wxDockInfo
,
16346 &_swigt__p_wxDockUIPart
,
16347 &_swigt__p_wxDropFilesEvent
,
16348 &_swigt__p_wxDuplexMode
,
16349 &_swigt__p_wxEraseEvent
,
16350 &_swigt__p_wxEvent
,
16351 &_swigt__p_wxEvtHandler
,
16352 &_swigt__p_wxFSFile
,
16353 &_swigt__p_wxFileDialog
,
16354 &_swigt__p_wxFileSystem
,
16355 &_swigt__p_wxFindDialogEvent
,
16356 &_swigt__p_wxFindReplaceData
,
16357 &_swigt__p_wxFindReplaceDialog
,
16358 &_swigt__p_wxFlexGridSizer
,
16359 &_swigt__p_wxFloatingPane
,
16360 &_swigt__p_wxFocusEvent
,
16362 &_swigt__p_wxFontData
,
16363 &_swigt__p_wxFontDialog
,
16364 &_swigt__p_wxFrame
,
16365 &_swigt__p_wxFrameManager
,
16366 &_swigt__p_wxFrameManagerEvent
,
16367 &_swigt__p_wxGBSizerItem
,
16368 &_swigt__p_wxGIFHandler
,
16369 &_swigt__p_wxGridBagSizer
,
16370 &_swigt__p_wxGridSizer
,
16371 &_swigt__p_wxICOHandler
,
16372 &_swigt__p_wxIconizeEvent
,
16373 &_swigt__p_wxIdleEvent
,
16374 &_swigt__p_wxImage
,
16375 &_swigt__p_wxImageHandler
,
16376 &_swigt__p_wxIndividualLayoutConstraint
,
16377 &_swigt__p_wxInitDialogEvent
,
16378 &_swigt__p_wxJPEGHandler
,
16379 &_swigt__p_wxKeyEvent
,
16380 &_swigt__p_wxLayoutAlgorithm
,
16381 &_swigt__p_wxLayoutConstraints
,
16382 &_swigt__p_wxMDIChildFrame
,
16383 &_swigt__p_wxMDIClientWindow
,
16384 &_swigt__p_wxMDIParentFrame
,
16385 &_swigt__p_wxMaximizeEvent
,
16387 &_swigt__p_wxMenuBar
,
16388 &_swigt__p_wxMenuEvent
,
16389 &_swigt__p_wxMenuItem
,
16390 &_swigt__p_wxMessageDialog
,
16391 &_swigt__p_wxMiniFrame
,
16392 &_swigt__p_wxMouseCaptureChangedEvent
,
16393 &_swigt__p_wxMouseCaptureLostEvent
,
16394 &_swigt__p_wxMouseEvent
,
16395 &_swigt__p_wxMoveEvent
,
16396 &_swigt__p_wxMultiChoiceDialog
,
16397 &_swigt__p_wxNavigationKeyEvent
,
16398 &_swigt__p_wxNcPaintEvent
,
16399 &_swigt__p_wxNotifyEvent
,
16400 &_swigt__p_wxNumberEntryDialog
,
16401 &_swigt__p_wxObject
,
16402 &_swigt__p_wxPCXHandler
,
16403 &_swigt__p_wxPNGHandler
,
16404 &_swigt__p_wxPNMHandler
,
16405 &_swigt__p_wxPageSetupDialog
,
16406 &_swigt__p_wxPageSetupDialogData
,
16407 &_swigt__p_wxPaintEvent
,
16408 &_swigt__p_wxPaletteChangedEvent
,
16409 &_swigt__p_wxPaneButton
,
16410 &_swigt__p_wxPaneButtonArray
,
16411 &_swigt__p_wxPaneInfo
,
16412 &_swigt__p_wxPaneInfoPtrArray
,
16413 &_swigt__p_wxPanel
,
16414 &_swigt__p_wxPaperSize
,
16415 &_swigt__p_wxPasswordEntryDialog
,
16416 &_swigt__p_wxPoint
,
16417 &_swigt__p_wxPopupWindow
,
16418 &_swigt__p_wxPreviewCanvas
,
16419 &_swigt__p_wxPreviewControlBar
,
16420 &_swigt__p_wxPreviewFrame
,
16421 &_swigt__p_wxPrintData
,
16422 &_swigt__p_wxPrintDialog
,
16423 &_swigt__p_wxPrintDialogData
,
16424 &_swigt__p_wxPrintPreview
,
16425 &_swigt__p_wxPrinter
,
16426 &_swigt__p_wxProgressDialog
,
16427 &_swigt__p_wxPyApp
,
16428 &_swigt__p_wxPyCommandEvent
,
16429 &_swigt__p_wxPyDockArt
,
16430 &_swigt__p_wxPyEvent
,
16431 &_swigt__p_wxPyHtmlListBox
,
16432 &_swigt__p_wxPyImageHandler
,
16433 &_swigt__p_wxPyPanel
,
16434 &_swigt__p_wxPyPopupTransientWindow
,
16435 &_swigt__p_wxPyPreviewControlBar
,
16436 &_swigt__p_wxPyPreviewFrame
,
16437 &_swigt__p_wxPyPrintPreview
,
16438 &_swigt__p_wxPyPrintout
,
16439 &_swigt__p_wxPyScrolledWindow
,
16440 &_swigt__p_wxPySizer
,
16441 &_swigt__p_wxPyTabArt
,
16442 &_swigt__p_wxPyTaskBarIcon
,
16443 &_swigt__p_wxPyVListBox
,
16444 &_swigt__p_wxPyVScrolledWindow
,
16445 &_swigt__p_wxPyValidator
,
16446 &_swigt__p_wxPyWindow
,
16447 &_swigt__p_wxQueryLayoutInfoEvent
,
16448 &_swigt__p_wxQueryNewPaletteEvent
,
16450 &_swigt__p_wxSashEvent
,
16451 &_swigt__p_wxSashLayoutWindow
,
16452 &_swigt__p_wxSashWindow
,
16453 &_swigt__p_wxScrollEvent
,
16454 &_swigt__p_wxScrollWinEvent
,
16455 &_swigt__p_wxScrolledWindow
,
16456 &_swigt__p_wxSetCursorEvent
,
16457 &_swigt__p_wxShowEvent
,
16458 &_swigt__p_wxSingleChoiceDialog
,
16460 &_swigt__p_wxSizeEvent
,
16461 &_swigt__p_wxSizer
,
16462 &_swigt__p_wxSizerItem
,
16463 &_swigt__p_wxSplashScreen
,
16464 &_swigt__p_wxSplashScreenWindow
,
16465 &_swigt__p_wxSplitterEvent
,
16466 &_swigt__p_wxSplitterWindow
,
16467 &_swigt__p_wxStaticBoxSizer
,
16468 &_swigt__p_wxStatusBar
,
16469 &_swigt__p_wxStdDialogButtonSizer
,
16470 &_swigt__p_wxString
,
16471 &_swigt__p_wxSysColourChangedEvent
,
16472 &_swigt__p_wxTGAHandler
,
16473 &_swigt__p_wxTIFFHandler
,
16474 &_swigt__p_wxTabArt
,
16475 &_swigt__p_wxTaskBarIconEvent
,
16476 &_swigt__p_wxTextEntryDialog
,
16477 &_swigt__p_wxTipWindow
,
16478 &_swigt__p_wxTopLevelWindow
,
16479 &_swigt__p_wxUpdateUIEvent
,
16480 &_swigt__p_wxValidator
,
16481 &_swigt__p_wxWindow
,
16482 &_swigt__p_wxWindowCreateEvent
,
16483 &_swigt__p_wxWindowDestroyEvent
,
16484 &_swigt__p_wxXPMHandler
,
16487 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
16488 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
16489 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
16490 static swig_cast_info _swigc__p_p_wxAuiTabContainerButton
[] = { {&_swigt__p_p_wxAuiTabContainerButton
, 0, 0, 0},{0, 0, 0, 0}};
16491 static swig_cast_info _swigc__p_p_wxSplashScreen
[] = {{&_swigt__p_p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
16492 static swig_cast_info _swigc__p_p_wxMiniFrame
[] = {{&_swigt__p_p_wxMiniFrame
, 0, 0, 0},{0, 0, 0, 0}};
16493 static swig_cast_info _swigc__p_p_wxPyPanel
[] = {{&_swigt__p_p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
16494 static swig_cast_info _swigc__p_p_wxMenuBar
[] = {{&_swigt__p_p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
16495 static swig_cast_info _swigc__p_p_wxFindReplaceDialog
[] = {{&_swigt__p_p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
16496 static swig_cast_info _swigc__p_p_wxProgressDialog
[] = {{&_swigt__p_p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
16497 static swig_cast_info _swigc__p_p_wxMessageDialog
[] = {{&_swigt__p_p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
16498 static swig_cast_info _swigc__p_p_wxNumberEntryDialog
[] = {{&_swigt__p_p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
16499 static swig_cast_info _swigc__p_p_wxPasswordEntryDialog
[] = {{&_swigt__p_p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
16500 static swig_cast_info _swigc__p_p_wxTextEntryDialog
[] = {{&_swigt__p_p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
16501 static swig_cast_info _swigc__p_p_wxSingleChoiceDialog
[] = {{&_swigt__p_p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
16502 static swig_cast_info _swigc__p_p_wxMultiChoiceDialog
[] = {{&_swigt__p_p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
16503 static swig_cast_info _swigc__p_p_wxFileDialog
[] = {{&_swigt__p_p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
16504 static swig_cast_info _swigc__p_p_wxPanel
[] = {{&_swigt__p_p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}};
16505 static swig_cast_info _swigc__p_p_wxStatusBar
[] = {{&_swigt__p_p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
16506 static swig_cast_info _swigc__p_p_wxPyVScrolledWindow
[] = {{&_swigt__p_p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
16507 static swig_cast_info _swigc__p_p_wxTipWindow
[] = {{&_swigt__p_p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
16508 static swig_cast_info _swigc__p_p_wxPyPopupTransientWindow
[] = {{&_swigt__p_p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}};
16509 static swig_cast_info _swigc__p_p_wxPopupWindow
[] = {{&_swigt__p_p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}};
16510 static swig_cast_info _swigc__p_p_wxSashLayoutWindow
[] = {{&_swigt__p_p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
16511 static swig_cast_info _swigc__p_p_wxScrolledWindow
[] = {{&_swigt__p_p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
16512 static swig_cast_info _swigc__p_p_wxTopLevelWindow
[] = {{&_swigt__p_p_wxTopLevelWindow
, 0, 0, 0},{0, 0, 0, 0}};
16513 static swig_cast_info _swigc__p_p_wxSplashScreenWindow
[] = {{&_swigt__p_p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
16514 static swig_cast_info _swigc__p_p_wxSplitterWindow
[] = {{&_swigt__p_p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
16515 static swig_cast_info _swigc__p_p_wxSashWindow
[] = {{&_swigt__p_p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}};
16516 static swig_cast_info _swigc__p_p_wxMDIClientWindow
[] = {{&_swigt__p_p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
16517 static swig_cast_info _swigc__p_p_wxPyScrolledWindow
[] = {{&_swigt__p_p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
16518 static swig_cast_info _swigc__p_p_wxPreviewFrame
[] = {{&_swigt__p_p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
16519 static swig_cast_info _swigc__p_p_wxPyPreviewFrame
[] = {{&_swigt__p_p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
16520 static swig_cast_info _swigc__p_p_wxControl
[] = {{&_swigt__p_p_wxControl
, 0, 0, 0},{0, 0, 0, 0}};
16521 static swig_cast_info _swigc__p_p_wxMDIChildFrame
[] = {{&_swigt__p_p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
16522 static swig_cast_info _swigc__p_p_wxControlWithItems
[] = {{&_swigt__p_p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
16523 static swig_cast_info _swigc__p_p_wxPyWindow
[] = {{&_swigt__p_p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
16524 static swig_cast_info _swigc__p_p_wxPreviewCanvas
[] = {{&_swigt__p_p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
16525 static swig_cast_info _swigc__p_p_wxFloatingPane
[] = {{&_swigt__p_p_wxFloatingPane
, 0, 0, 0},{0, 0, 0, 0}};
16526 static swig_cast_info _swigc__p_p_wxPyHtmlListBox
[] = {{&_swigt__p_p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
16527 static swig_cast_info _swigc__p_p_wxPyVListBox
[] = {{&_swigt__p_p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}};
16528 static swig_cast_info _swigc__p_p_wxAuiMultiNotebook
[] = {{&_swigt__p_p_wxAuiMultiNotebook
, 0, 0, 0},{0, 0, 0, 0}};
16529 static swig_cast_info _swigc__p_p_wxPreviewControlBar
[] = {{&_swigt__p_p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
16530 static swig_cast_info _swigc__p_p_wxPyPreviewControlBar
[] = {{&_swigt__p_p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
16531 static swig_cast_info _swigc__p_p_wxAuiTabCtrl
[] = {{&_swigt__p_p_wxAuiTabCtrl
, 0, 0, 0},{0, 0, 0, 0}};
16532 static swig_cast_info _swigc__p_p_wxFrame
[] = {{&_swigt__p_p_wxFrame
, 0, 0, 0},{0, 0, 0, 0}};
16533 static swig_cast_info _swigc__p_p_wxFontDialog
[] = {{&_swigt__p_p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
16534 static swig_cast_info _swigc__p_p_wxDirDialog
[] = {{&_swigt__p_p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
16535 static swig_cast_info _swigc__p_p_wxColourDialog
[] = {{&_swigt__p_p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
16536 static swig_cast_info _swigc__p_p_wxDialog
[] = {{&_swigt__p_p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}};
16537 static swig_cast_info _swigc__p_p_wxMDIParentFrame
[] = {{&_swigt__p_p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
16538 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_wxFloatingPane
, _p_p_wxFloatingPaneTo_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_wxAuiMultiNotebook
, _p_p_wxAuiMultiNotebookTo_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_wxMDIParentFrame
, _p_p_wxMDIParentFrameTo_p_p_wxWindow
, 0, 0},{0, 0, 0, 0}};
16539 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
16540 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
16541 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
16542 static swig_cast_info _swigc__p_wxAuiMultiNotebook
[] = { {&_swigt__p_wxAuiMultiNotebook
, 0, 0, 0},{0, 0, 0, 0}};
16543 static swig_cast_info _swigc__p_wxAuiNotebookEvent
[] = { {&_swigt__p_wxAuiNotebookEvent
, 0, 0, 0},{0, 0, 0, 0}};
16544 static swig_cast_info _swigc__p_wxAuiNotebookPage
[] = { {&_swigt__p_wxAuiNotebookPage
, 0, 0, 0},{0, 0, 0, 0}};
16545 static swig_cast_info _swigc__p_wxAuiNotebookPageArray
[] = { {&_swigt__p_wxAuiNotebookPageArray
, 0, 0, 0},{0, 0, 0, 0}};
16546 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}};
16547 static swig_cast_info _swigc__p_wxAuiTabContainerButton
[] = { {&_swigt__p_wxAuiTabContainerButton
, 0, 0, 0},{0, 0, 0, 0}};
16548 static swig_cast_info _swigc__p_wxAuiTabCtrl
[] = { {&_swigt__p_wxAuiTabCtrl
, 0, 0, 0},{0, 0, 0, 0}};
16549 static swig_cast_info _swigc__p_wxBitmap
[] = { {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}};
16550 static swig_cast_info _swigc__p_wxColor
[] = { {&_swigt__p_wxColor
, 0, 0, 0},{0, 0, 0, 0}};
16551 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
16552 static swig_cast_info _swigc__p_wxSashEvent
[] = {{&_swigt__p_wxSashEvent
, 0, 0, 0},{0, 0, 0, 0}};
16553 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
16554 static swig_cast_info _swigc__p_wxSplitterEvent
[] = {{&_swigt__p_wxSplitterEvent
, 0, 0, 0},{0, 0, 0, 0}};
16555 static swig_cast_info _swigc__p_wxClipboardTextEvent
[] = {{&_swigt__p_wxClipboardTextEvent
, 0, 0, 0},{0, 0, 0, 0}};
16556 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
16557 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
16558 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
16559 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
16560 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
16561 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
16562 static swig_cast_info _swigc__p_wxFindDialogEvent
[] = {{&_swigt__p_wxFindDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
16563 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
16564 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}};
16565 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
16566 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_wxAuiMultiNotebook
, _p_wxAuiMultiNotebookTo_p_wxControl
, 0, 0},{0, 0, 0, 0}};
16567 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
16568 static swig_cast_info _swigc__p_wxDefaultDockArt
[] = { {&_swigt__p_wxDefaultDockArt
, 0, 0, 0}, {&_swigt__p_wxPyDockArt
, _p_wxPyDockArtTo_p_wxDefaultDockArt
, 0, 0},{0, 0, 0, 0}};
16569 static swig_cast_info _swigc__p_wxDefaultTabArt
[] = { {&_swigt__p_wxDefaultTabArt
, 0, 0, 0}, {&_swigt__p_wxPyTabArt
, _p_wxPyTabArtTo_p_wxDefaultTabArt
, 0, 0},{0, 0, 0, 0}};
16570 static swig_cast_info _swigc__p_wxDockArt
[] = { {&_swigt__p_wxDockArt
, 0, 0, 0}, {&_swigt__p_wxDefaultDockArt
, _p_wxDefaultDockArtTo_p_wxDockArt
, 0, 0}, {&_swigt__p_wxPyDockArt
, _p_wxPyDockArtTo_p_wxDockArt
, 0, 0},{0, 0, 0, 0}};
16571 static swig_cast_info _swigc__p_wxDockInfo
[] = { {&_swigt__p_wxDockInfo
, 0, 0, 0},{0, 0, 0, 0}};
16572 static swig_cast_info _swigc__p_wxDockUIPart
[] = { {&_swigt__p_wxDockUIPart
, 0, 0, 0},{0, 0, 0, 0}};
16573 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
16574 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
16575 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
16576 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
16577 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
16578 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
16579 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
16580 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
16581 static swig_cast_info _swigc__p_wxMouseCaptureLostEvent
[] = {{&_swigt__p_wxMouseCaptureLostEvent
, 0, 0, 0},{0, 0, 0, 0}};
16582 static swig_cast_info _swigc__p_wxCalculateLayoutEvent
[] = {{&_swigt__p_wxCalculateLayoutEvent
, 0, 0, 0},{0, 0, 0, 0}};
16583 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
16584 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
16585 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
16586 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
16587 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
16588 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
16589 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
16590 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
16591 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
16592 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
16593 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
16594 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
16595 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
16596 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
16597 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
16598 static swig_cast_info _swigc__p_wxQueryLayoutInfoEvent
[] = {{&_swigt__p_wxQueryLayoutInfoEvent
, 0, 0, 0},{0, 0, 0, 0}};
16599 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
16600 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
16601 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
16602 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
16603 static swig_cast_info _swigc__p_wxTaskBarIconEvent
[] = {{&_swigt__p_wxTaskBarIconEvent
, 0, 0, 0},{0, 0, 0, 0}};
16604 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_wxFrameManagerEvent
, _p_wxFrameManagerEventTo_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}};
16605 static swig_cast_info _swigc__p_wxSplashScreen
[] = {{&_swigt__p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
16606 static swig_cast_info _swigc__p_wxPyPanel
[] = {{&_swigt__p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
16607 static swig_cast_info _swigc__p_wxMenuBar
[] = {{&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
16608 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}};
16609 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
16610 static swig_cast_info _swigc__p_wxNumberEntryDialog
[] = {{&_swigt__p_wxNumberEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
16611 static swig_cast_info _swigc__p_wxFileDialog
[] = {{&_swigt__p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
16612 static swig_cast_info _swigc__p_wxMultiChoiceDialog
[] = {{&_swigt__p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
16613 static swig_cast_info _swigc__p_wxFindReplaceDialog
[] = {{&_swigt__p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
16614 static swig_cast_info _swigc__p_wxProgressDialog
[] = {{&_swigt__p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
16615 static swig_cast_info _swigc__p_wxMessageDialog
[] = {{&_swigt__p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
16616 static swig_cast_info _swigc__p_wxPasswordEntryDialog
[] = {{&_swigt__p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
16617 static swig_cast_info _swigc__p_wxTextEntryDialog
[] = {{&_swigt__p_wxTextEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
16618 static swig_cast_info _swigc__p_wxSingleChoiceDialog
[] = {{&_swigt__p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
16619 static swig_cast_info _swigc__p_wxPanel
[] = {{&_swigt__p_wxPanel
, 0, 0, 0},{0, 0, 0, 0}};
16620 static swig_cast_info _swigc__p_wxStatusBar
[] = {{&_swigt__p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
16621 static swig_cast_info _swigc__p_wxSashWindow
[] = {{&_swigt__p_wxSashWindow
, 0, 0, 0},{0, 0, 0, 0}};
16622 static swig_cast_info _swigc__p_wxScrolledWindow
[] = {{&_swigt__p_wxScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
16623 static swig_cast_info _swigc__p_wxMDIClientWindow
[] = {{&_swigt__p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
16624 static swig_cast_info _swigc__p_wxPyScrolledWindow
[] = {{&_swigt__p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
16625 static swig_cast_info _swigc__p_wxSplitterWindow
[] = {{&_swigt__p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
16626 static swig_cast_info _swigc__p_wxSplashScreenWindow
[] = {{&_swigt__p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
16627 static swig_cast_info _swigc__p_wxSashLayoutWindow
[] = {{&_swigt__p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
16628 static swig_cast_info _swigc__p_wxPopupWindow
[] = {{&_swigt__p_wxPopupWindow
, 0, 0, 0},{0, 0, 0, 0}};
16629 static swig_cast_info _swigc__p_wxPyPopupTransientWindow
[] = {{&_swigt__p_wxPyPopupTransientWindow
, 0, 0, 0},{0, 0, 0, 0}};
16630 static swig_cast_info _swigc__p_wxTipWindow
[] = {{&_swigt__p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
16631 static swig_cast_info _swigc__p_wxPyVScrolledWindow
[] = {{&_swigt__p_wxPyVScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
16632 static swig_cast_info _swigc__p_wxPyPreviewFrame
[] = {{&_swigt__p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
16633 static swig_cast_info _swigc__p_wxPreviewFrame
[] = {{&_swigt__p_wxPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
16634 static swig_cast_info _swigc__p_wxMDIChildFrame
[] = {{&_swigt__p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
16635 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
16636 static swig_cast_info _swigc__p_wxPyWindow
[] = {{&_swigt__p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
16637 static swig_cast_info _swigc__p_wxPreviewCanvas
[] = {{&_swigt__p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
16638 static swig_cast_info _swigc__p_wxPyHtmlListBox
[] = {{&_swigt__p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
16639 static swig_cast_info _swigc__p_wxPyVListBox
[] = {{&_swigt__p_wxPyVListBox
, 0, 0, 0},{0, 0, 0, 0}};
16640 static swig_cast_info _swigc__p_wxPreviewControlBar
[] = {{&_swigt__p_wxPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
16641 static swig_cast_info _swigc__p_wxPyPreviewControlBar
[] = {{&_swigt__p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
16642 static swig_cast_info _swigc__p_wxPyTaskBarIcon
[] = {{&_swigt__p_wxPyTaskBarIcon
, 0, 0, 0},{0, 0, 0, 0}};
16643 static swig_cast_info _swigc__p_wxFontDialog
[] = {{&_swigt__p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
16644 static swig_cast_info _swigc__p_wxDirDialog
[] = {{&_swigt__p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
16645 static swig_cast_info _swigc__p_wxColourDialog
[] = {{&_swigt__p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
16646 static swig_cast_info _swigc__p_wxDialog
[] = {{&_swigt__p_wxDialog
, 0, 0, 0},{0, 0, 0, 0}};
16647 static swig_cast_info _swigc__p_wxMenu
[] = {{&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
16648 static swig_cast_info _swigc__p_wxMDIParentFrame
[] = {{&_swigt__p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
16649 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_wxSashWindow
, _p_wxSashWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxEvtHandler
, 0, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFloatingPane
, _p_wxFloatingPaneTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxAuiMultiNotebook
, _p_wxAuiMultiNotebookTo_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_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxFrameManager
, _p_wxFrameManagerTo_p_wxEvtHandler
, 0, 0},{0, 0, 0, 0}};
16650 static swig_cast_info _swigc__p_wxFloatingPane
[] = { {&_swigt__p_wxFloatingPane
, 0, 0, 0},{0, 0, 0, 0}};
16651 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
16652 static swig_cast_info _swigc__p_wxFrame
[] = { {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxFrame
, 0, 0}, {&_swigt__p_wxFloatingPane
, _p_wxFloatingPaneTo_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},{0, 0, 0, 0}};
16653 static swig_cast_info _swigc__p_wxFrameManager
[] = { {&_swigt__p_wxFrameManager
, 0, 0, 0},{0, 0, 0, 0}};
16654 static swig_cast_info _swigc__p_wxFrameManagerEvent
[] = { {&_swigt__p_wxFrameManagerEvent
, 0, 0, 0},{0, 0, 0, 0}};
16655 static swig_cast_info _swigc__p_wxMiniFrame
[] = { {&_swigt__p_wxFloatingPane
, _p_wxFloatingPaneTo_p_wxMiniFrame
, 0, 0}, {&_swigt__p_wxMiniFrame
, 0, 0, 0},{0, 0, 0, 0}};
16656 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}};
16657 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
16658 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
16659 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
16660 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
16661 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
16662 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
16663 static swig_cast_info _swigc__p_wxFontData
[] = {{&_swigt__p_wxFontData
, 0, 0, 0},{0, 0, 0, 0}};
16664 static swig_cast_info _swigc__p_wxPrintData
[] = {{&_swigt__p_wxPrintData
, 0, 0, 0},{0, 0, 0, 0}};
16665 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
16666 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
16667 static swig_cast_info _swigc__p_wxLayoutAlgorithm
[] = {{&_swigt__p_wxLayoutAlgorithm
, 0, 0, 0},{0, 0, 0, 0}};
16668 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
16669 static swig_cast_info _swigc__p_wxFindReplaceData
[] = {{&_swigt__p_wxFindReplaceData
, 0, 0, 0},{0, 0, 0, 0}};
16670 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
16671 static swig_cast_info _swigc__p_wxColourData
[] = {{&_swigt__p_wxColourData
, 0, 0, 0},{0, 0, 0, 0}};
16672 static swig_cast_info _swigc__p_wxPrinter
[] = {{&_swigt__p_wxPrinter
, 0, 0, 0},{0, 0, 0, 0}};
16673 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
16674 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
16675 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
16676 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
16677 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
16678 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
16679 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
16680 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
16681 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
16682 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
16683 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
16684 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
16685 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
16686 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
16687 static swig_cast_info _swigc__p_wxTGAHandler
[] = {{&_swigt__p_wxTGAHandler
, 0, 0, 0},{0, 0, 0, 0}};
16688 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
16689 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
16690 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
16691 static swig_cast_info _swigc__p_wxPyPrintout
[] = {{&_swigt__p_wxPyPrintout
, 0, 0, 0},{0, 0, 0, 0}};
16692 static swig_cast_info _swigc__p_wxPrintPreview
[] = {{&_swigt__p_wxPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
16693 static swig_cast_info _swigc__p_wxPyPrintPreview
[] = {{&_swigt__p_wxPyPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
16694 static swig_cast_info _swigc__p_wxPageSetupDialog
[] = {{&_swigt__p_wxPageSetupDialog
, 0, 0, 0},{0, 0, 0, 0}};
16695 static swig_cast_info _swigc__p_wxPrintDialog
[] = {{&_swigt__p_wxPrintDialog
, 0, 0, 0},{0, 0, 0, 0}};
16696 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
16697 static swig_cast_info _swigc__p_wxPageSetupDialogData
[] = {{&_swigt__p_wxPageSetupDialogData
, 0, 0, 0},{0, 0, 0, 0}};
16698 static swig_cast_info _swigc__p_wxPrintDialogData
[] = {{&_swigt__p_wxPrintDialogData
, 0, 0, 0},{0, 0, 0, 0}};
16699 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_wxFrameManagerEvent
, _p_wxFrameManagerEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFSFile
, _p_wxFSFileTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFindReplaceData
, _p_wxFindReplaceDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPySizer
, _p_wxPySizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAuiMultiNotebook
, _p_wxAuiMultiNotebookTo_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_wxANIHandler
, _p_wxANIHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPNGHandler
, _p_wxPNGHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGIFHandler
, _p_wxGIFHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPCXHandler
, _p_wxPCXHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxJPEGHandler
, _p_wxJPEGHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPNMHandler
, _p_wxPNMHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_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_wxFloatingPane
, _p_wxFloatingPaneTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFrameManager
, _p_wxFrameManagerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAuiNotebookEvent
, _p_wxAuiNotebookEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxObject
, 0, 0}, {&_swigt__p_wxObject
, 0, 0, 0}, {&_swigt__p_wxKeyEvent
, _p_wxKeyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNavigationKeyEvent
, _p_wxNavigationKeyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSashEvent
, _p_wxSashEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintPreview
, _p_wxPrintPreviewTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPrintPreview
, _p_wxPyPrintPreviewTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPageSetupDialog
, _p_wxPageSetupDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintDialog
, _p_wxPrintDialogTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFileSystem
, _p_wxFileSystemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuEvent
, _p_wxMenuEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCloseEvent
, _p_wxCloseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMouseEvent
, _p_wxMouseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEraseEvent
, _p_wxEraseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCommandEvent
, _p_wxCommandEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPreviewControlBar
, _p_wxPreviewControlBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyPreviewControlBar
, _p_wxPyPreviewControlBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFocusEvent
, _p_wxFocusEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDropFilesEvent
, _p_wxDropFilesEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPageSetupDialogData
, _p_wxPageSetupDialogDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPrintDialogData
, _p_wxPrintDialogDataTo_p_wxObject
, 0, 0}, {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxObject
, 0, 0},{0, 0, 0, 0}};
16700 static swig_cast_info _swigc__p_wxPaneButton
[] = { {&_swigt__p_wxPaneButton
, 0, 0, 0},{0, 0, 0, 0}};
16701 static swig_cast_info _swigc__p_wxPaneButtonArray
[] = { {&_swigt__p_wxPaneButtonArray
, 0, 0, 0},{0, 0, 0, 0}};
16702 static swig_cast_info _swigc__p_wxPaneInfo
[] = { {&_swigt__p_wxPaneInfo
, 0, 0, 0},{0, 0, 0, 0}};
16703 static swig_cast_info _swigc__p_wxPaneInfoPtrArray
[] = { {&_swigt__p_wxPaneInfoPtrArray
, 0, 0, 0},{0, 0, 0, 0}};
16704 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
16705 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
16706 static swig_cast_info _swigc__p_wxPyDockArt
[] = { {&_swigt__p_wxPyDockArt
, 0, 0, 0},{0, 0, 0, 0}};
16707 static swig_cast_info _swigc__p_wxPyTabArt
[] = { {&_swigt__p_wxPyTabArt
, 0, 0, 0},{0, 0, 0, 0}};
16708 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
16709 static swig_cast_info _swigc__p_wxSize
[] = { {&_swigt__p_wxSize
, 0, 0, 0},{0, 0, 0, 0}};
16710 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}};
16711 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}};
16712 static swig_cast_info _swigc__p_wxString
[] = { {&_swigt__p_wxString
, 0, 0, 0},{0, 0, 0, 0}};
16713 static swig_cast_info _swigc__p_wxTabArt
[] = { {&_swigt__p_wxTabArt
, 0, 0, 0}, {&_swigt__p_wxDefaultTabArt
, _p_wxDefaultTabArtTo_p_wxTabArt
, 0, 0}, {&_swigt__p_wxPyTabArt
, _p_wxPyTabArtTo_p_wxTabArt
, 0, 0},{0, 0, 0, 0}};
16714 static swig_cast_info _swigc__p_wxTopLevelWindow
[] = { {&_swigt__p_wxFrame
, _p_wxFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxFontDialog
, _p_wxFontDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxDirDialog
, _p_wxDirDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxColourDialog
, _p_wxColourDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, 0, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxFloatingPane
, _p_wxFloatingPaneTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxTopLevelWindow
, 0, 0},{0, 0, 0, 0}};
16715 static swig_cast_info _swigc__p_wxWindow
[] = { {&_swigt__p_wxSplashScreen
, _p_wxSplashScreenTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMiniFrame
, _p_wxMiniFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPanel
, _p_wxPyPanelTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFindReplaceDialog
, _p_wxFindReplaceDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMessageDialog
, _p_wxMessageDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxNumberEntryDialog
, _p_wxNumberEntryDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPasswordEntryDialog
, _p_wxPasswordEntryDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTextEntryDialog
, _p_wxTextEntryDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSingleChoiceDialog
, _p_wxSingleChoiceDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMultiChoiceDialog
, _p_wxMultiChoiceDialogTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPanel
, _p_wxPanelTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxStatusBar
, _p_wxStatusBarTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSashLayoutWindow
, _p_wxSashLayoutWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxScrolledWindow
, _p_wxScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTopLevelWindow
, _p_wxTopLevelWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSplashScreenWindow
, _p_wxSplashScreenWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSplitterWindow
, _p_wxSplitterWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxSashWindow
, _p_wxSashWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMDIClientWindow
, _p_wxMDIClientWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyScrolledWindow
, _p_wxPyScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxWindow
, 0, 0, 0}, {&_swigt__p_wxPopupWindow
, _p_wxPopupWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyVScrolledWindow
, _p_wxPyVScrolledWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyPreviewFrame
, _p_wxPyPreviewFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPreviewFrame
, _p_wxPreviewFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxControl
, _p_wxControlTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyWindow
, _p_wxPyWindowTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPreviewCanvas
, _p_wxPreviewCanvasTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxFloatingPane
, _p_wxFloatingPaneTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyHtmlListBox
, _p_wxPyHtmlListBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxPyVListBox
, _p_wxPyVListBoxTo_p_wxWindow
, 0, 0}, {&_swigt__p_wxAuiMultiNotebook
, _p_wxAuiMultiNotebookTo_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_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxWindow
, 0, 0},{0, 0, 0, 0}};
16717 static swig_cast_info
*swig_cast_initial
[] = {
16719 _swigc__p_form_ops_t
,
16721 _swigc__p_p_wxAuiMultiNotebook
,
16722 _swigc__p_p_wxAuiTabContainerButton
,
16723 _swigc__p_p_wxAuiTabCtrl
,
16724 _swigc__p_p_wxColourDialog
,
16725 _swigc__p_p_wxControl
,
16726 _swigc__p_p_wxControlWithItems
,
16727 _swigc__p_p_wxDialog
,
16728 _swigc__p_p_wxDirDialog
,
16729 _swigc__p_p_wxFileDialog
,
16730 _swigc__p_p_wxFindReplaceDialog
,
16731 _swigc__p_p_wxFloatingPane
,
16732 _swigc__p_p_wxFontDialog
,
16733 _swigc__p_p_wxFrame
,
16734 _swigc__p_p_wxMDIChildFrame
,
16735 _swigc__p_p_wxMDIClientWindow
,
16736 _swigc__p_p_wxMDIParentFrame
,
16737 _swigc__p_p_wxMenuBar
,
16738 _swigc__p_p_wxMessageDialog
,
16739 _swigc__p_p_wxMiniFrame
,
16740 _swigc__p_p_wxMultiChoiceDialog
,
16741 _swigc__p_p_wxNumberEntryDialog
,
16742 _swigc__p_p_wxPanel
,
16743 _swigc__p_p_wxPasswordEntryDialog
,
16744 _swigc__p_p_wxPopupWindow
,
16745 _swigc__p_p_wxPreviewCanvas
,
16746 _swigc__p_p_wxPreviewControlBar
,
16747 _swigc__p_p_wxPreviewFrame
,
16748 _swigc__p_p_wxProgressDialog
,
16749 _swigc__p_p_wxPyHtmlListBox
,
16750 _swigc__p_p_wxPyPanel
,
16751 _swigc__p_p_wxPyPopupTransientWindow
,
16752 _swigc__p_p_wxPyPreviewControlBar
,
16753 _swigc__p_p_wxPyPreviewFrame
,
16754 _swigc__p_p_wxPyScrolledWindow
,
16755 _swigc__p_p_wxPyVListBox
,
16756 _swigc__p_p_wxPyVScrolledWindow
,
16757 _swigc__p_p_wxPyWindow
,
16758 _swigc__p_p_wxSashLayoutWindow
,
16759 _swigc__p_p_wxSashWindow
,
16760 _swigc__p_p_wxScrolledWindow
,
16761 _swigc__p_p_wxSingleChoiceDialog
,
16762 _swigc__p_p_wxSplashScreen
,
16763 _swigc__p_p_wxSplashScreenWindow
,
16764 _swigc__p_p_wxSplitterWindow
,
16765 _swigc__p_p_wxStatusBar
,
16766 _swigc__p_p_wxTextEntryDialog
,
16767 _swigc__p_p_wxTipWindow
,
16768 _swigc__p_p_wxTopLevelWindow
,
16769 _swigc__p_p_wxWindow
,
16770 _swigc__p_unsigned_char
,
16771 _swigc__p_unsigned_int
,
16772 _swigc__p_unsigned_long
,
16773 _swigc__p_wxANIHandler
,
16774 _swigc__p_wxAcceleratorTable
,
16775 _swigc__p_wxActivateEvent
,
16776 _swigc__p_wxAuiMultiNotebook
,
16777 _swigc__p_wxAuiNotebookEvent
,
16778 _swigc__p_wxAuiNotebookPage
,
16779 _swigc__p_wxAuiNotebookPageArray
,
16780 _swigc__p_wxAuiTabContainer
,
16781 _swigc__p_wxAuiTabContainerButton
,
16782 _swigc__p_wxAuiTabCtrl
,
16783 _swigc__p_wxBMPHandler
,
16784 _swigc__p_wxBitmap
,
16785 _swigc__p_wxBoxSizer
,
16786 _swigc__p_wxCURHandler
,
16787 _swigc__p_wxCalculateLayoutEvent
,
16788 _swigc__p_wxChildFocusEvent
,
16789 _swigc__p_wxClipboardTextEvent
,
16790 _swigc__p_wxCloseEvent
,
16792 _swigc__p_wxColour
,
16793 _swigc__p_wxColourData
,
16794 _swigc__p_wxColourDialog
,
16795 _swigc__p_wxCommandEvent
,
16796 _swigc__p_wxContextMenuEvent
,
16797 _swigc__p_wxControl
,
16798 _swigc__p_wxControlWithItems
,
16800 _swigc__p_wxDateEvent
,
16801 _swigc__p_wxDefaultDockArt
,
16802 _swigc__p_wxDefaultTabArt
,
16803 _swigc__p_wxDialog
,
16804 _swigc__p_wxDirDialog
,
16805 _swigc__p_wxDisplayChangedEvent
,
16806 _swigc__p_wxDockArt
,
16807 _swigc__p_wxDockInfo
,
16808 _swigc__p_wxDockUIPart
,
16809 _swigc__p_wxDropFilesEvent
,
16810 _swigc__p_wxDuplexMode
,
16811 _swigc__p_wxEraseEvent
,
16813 _swigc__p_wxEvtHandler
,
16814 _swigc__p_wxFSFile
,
16815 _swigc__p_wxFileDialog
,
16816 _swigc__p_wxFileSystem
,
16817 _swigc__p_wxFindDialogEvent
,
16818 _swigc__p_wxFindReplaceData
,
16819 _swigc__p_wxFindReplaceDialog
,
16820 _swigc__p_wxFlexGridSizer
,
16821 _swigc__p_wxFloatingPane
,
16822 _swigc__p_wxFocusEvent
,
16824 _swigc__p_wxFontData
,
16825 _swigc__p_wxFontDialog
,
16827 _swigc__p_wxFrameManager
,
16828 _swigc__p_wxFrameManagerEvent
,
16829 _swigc__p_wxGBSizerItem
,
16830 _swigc__p_wxGIFHandler
,
16831 _swigc__p_wxGridBagSizer
,
16832 _swigc__p_wxGridSizer
,
16833 _swigc__p_wxICOHandler
,
16834 _swigc__p_wxIconizeEvent
,
16835 _swigc__p_wxIdleEvent
,
16837 _swigc__p_wxImageHandler
,
16838 _swigc__p_wxIndividualLayoutConstraint
,
16839 _swigc__p_wxInitDialogEvent
,
16840 _swigc__p_wxJPEGHandler
,
16841 _swigc__p_wxKeyEvent
,
16842 _swigc__p_wxLayoutAlgorithm
,
16843 _swigc__p_wxLayoutConstraints
,
16844 _swigc__p_wxMDIChildFrame
,
16845 _swigc__p_wxMDIClientWindow
,
16846 _swigc__p_wxMDIParentFrame
,
16847 _swigc__p_wxMaximizeEvent
,
16849 _swigc__p_wxMenuBar
,
16850 _swigc__p_wxMenuEvent
,
16851 _swigc__p_wxMenuItem
,
16852 _swigc__p_wxMessageDialog
,
16853 _swigc__p_wxMiniFrame
,
16854 _swigc__p_wxMouseCaptureChangedEvent
,
16855 _swigc__p_wxMouseCaptureLostEvent
,
16856 _swigc__p_wxMouseEvent
,
16857 _swigc__p_wxMoveEvent
,
16858 _swigc__p_wxMultiChoiceDialog
,
16859 _swigc__p_wxNavigationKeyEvent
,
16860 _swigc__p_wxNcPaintEvent
,
16861 _swigc__p_wxNotifyEvent
,
16862 _swigc__p_wxNumberEntryDialog
,
16863 _swigc__p_wxObject
,
16864 _swigc__p_wxPCXHandler
,
16865 _swigc__p_wxPNGHandler
,
16866 _swigc__p_wxPNMHandler
,
16867 _swigc__p_wxPageSetupDialog
,
16868 _swigc__p_wxPageSetupDialogData
,
16869 _swigc__p_wxPaintEvent
,
16870 _swigc__p_wxPaletteChangedEvent
,
16871 _swigc__p_wxPaneButton
,
16872 _swigc__p_wxPaneButtonArray
,
16873 _swigc__p_wxPaneInfo
,
16874 _swigc__p_wxPaneInfoPtrArray
,
16876 _swigc__p_wxPaperSize
,
16877 _swigc__p_wxPasswordEntryDialog
,
16879 _swigc__p_wxPopupWindow
,
16880 _swigc__p_wxPreviewCanvas
,
16881 _swigc__p_wxPreviewControlBar
,
16882 _swigc__p_wxPreviewFrame
,
16883 _swigc__p_wxPrintData
,
16884 _swigc__p_wxPrintDialog
,
16885 _swigc__p_wxPrintDialogData
,
16886 _swigc__p_wxPrintPreview
,
16887 _swigc__p_wxPrinter
,
16888 _swigc__p_wxProgressDialog
,
16890 _swigc__p_wxPyCommandEvent
,
16891 _swigc__p_wxPyDockArt
,
16892 _swigc__p_wxPyEvent
,
16893 _swigc__p_wxPyHtmlListBox
,
16894 _swigc__p_wxPyImageHandler
,
16895 _swigc__p_wxPyPanel
,
16896 _swigc__p_wxPyPopupTransientWindow
,
16897 _swigc__p_wxPyPreviewControlBar
,
16898 _swigc__p_wxPyPreviewFrame
,
16899 _swigc__p_wxPyPrintPreview
,
16900 _swigc__p_wxPyPrintout
,
16901 _swigc__p_wxPyScrolledWindow
,
16902 _swigc__p_wxPySizer
,
16903 _swigc__p_wxPyTabArt
,
16904 _swigc__p_wxPyTaskBarIcon
,
16905 _swigc__p_wxPyVListBox
,
16906 _swigc__p_wxPyVScrolledWindow
,
16907 _swigc__p_wxPyValidator
,
16908 _swigc__p_wxPyWindow
,
16909 _swigc__p_wxQueryLayoutInfoEvent
,
16910 _swigc__p_wxQueryNewPaletteEvent
,
16912 _swigc__p_wxSashEvent
,
16913 _swigc__p_wxSashLayoutWindow
,
16914 _swigc__p_wxSashWindow
,
16915 _swigc__p_wxScrollEvent
,
16916 _swigc__p_wxScrollWinEvent
,
16917 _swigc__p_wxScrolledWindow
,
16918 _swigc__p_wxSetCursorEvent
,
16919 _swigc__p_wxShowEvent
,
16920 _swigc__p_wxSingleChoiceDialog
,
16922 _swigc__p_wxSizeEvent
,
16924 _swigc__p_wxSizerItem
,
16925 _swigc__p_wxSplashScreen
,
16926 _swigc__p_wxSplashScreenWindow
,
16927 _swigc__p_wxSplitterEvent
,
16928 _swigc__p_wxSplitterWindow
,
16929 _swigc__p_wxStaticBoxSizer
,
16930 _swigc__p_wxStatusBar
,
16931 _swigc__p_wxStdDialogButtonSizer
,
16932 _swigc__p_wxString
,
16933 _swigc__p_wxSysColourChangedEvent
,
16934 _swigc__p_wxTGAHandler
,
16935 _swigc__p_wxTIFFHandler
,
16936 _swigc__p_wxTabArt
,
16937 _swigc__p_wxTaskBarIconEvent
,
16938 _swigc__p_wxTextEntryDialog
,
16939 _swigc__p_wxTipWindow
,
16940 _swigc__p_wxTopLevelWindow
,
16941 _swigc__p_wxUpdateUIEvent
,
16942 _swigc__p_wxValidator
,
16943 _swigc__p_wxWindow
,
16944 _swigc__p_wxWindowCreateEvent
,
16945 _swigc__p_wxWindowDestroyEvent
,
16946 _swigc__p_wxXPMHandler
,
16950 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
16952 static swig_const_info swig_const_table
[] = {
16953 {0, 0, 0, 0.0, 0, 0}};
16958 /* -----------------------------------------------------------------------------
16959 * Type initialization:
16960 * This problem is tough by the requirement that no dynamic
16961 * memory is used. Also, since swig_type_info structures store pointers to
16962 * swig_cast_info structures and swig_cast_info structures store pointers back
16963 * to swig_type_info structures, we need some lookup code at initialization.
16964 * The idea is that swig generates all the structures that are needed.
16965 * The runtime then collects these partially filled structures.
16966 * The SWIG_InitializeModule function takes these initial arrays out of
16967 * swig_module, and does all the lookup, filling in the swig_module.types
16968 * array with the correct data and linking the correct swig_cast_info
16969 * structures together.
16971 * The generated swig_type_info structures are assigned staticly to an initial
16972 * array. We just loop though that array, and handle each type individually.
16973 * First we lookup if this type has been already loaded, and if so, use the
16974 * loaded structure instead of the generated one. Then we have to fill in the
16975 * cast linked list. The cast data is initially stored in something like a
16976 * two-dimensional array. Each row corresponds to a type (there are the same
16977 * number of rows as there are in the swig_type_initial array). Each entry in
16978 * a column is one of the swig_cast_info structures for that type.
16979 * The cast_initial array is actually an array of arrays, because each row has
16980 * a variable number of columns. So to actually build the cast linked list,
16981 * we find the array of casts associated with the type, and loop through it
16982 * adding the casts to the list. The one last trick we need to do is making
16983 * sure the type pointer in the swig_cast_info struct is correct.
16985 * First off, we lookup the cast->type name to see if it is already loaded.
16986 * There are three cases to handle:
16987 * 1) If the cast->type has already been loaded AND the type we are adding
16988 * casting info to has not been loaded (it is in this module), THEN we
16989 * replace the cast->type pointer with the type pointer that has already
16991 * 2) If BOTH types (the one we are adding casting info to, and the
16992 * cast->type) are loaded, THEN the cast info has already been loaded by
16993 * the previous module so we just ignore it.
16994 * 3) Finally, if cast->type has not already been loaded, then we add that
16995 * swig_cast_info to the linked list (because the cast->type) pointer will
16997 * ----------------------------------------------------------------------------- */
17007 #define SWIGRUNTIME_DEBUG
17011 SWIG_InitializeModule(void *clientdata
) {
17013 swig_module_info
*module_head
;
17014 static int init_run
= 0;
17016 clientdata
= clientdata
;
17018 if (init_run
) return;
17021 /* Initialize the swig_module */
17022 swig_module
.type_initial
= swig_type_initial
;
17023 swig_module
.cast_initial
= swig_cast_initial
;
17025 /* Try and load any already created modules */
17026 module_head
= SWIG_GetModule(clientdata
);
17028 swig_module
.next
= module_head
->next
;
17029 module_head
->next
= &swig_module
;
17031 /* This is the first module loaded */
17032 swig_module
.next
= &swig_module
;
17033 SWIG_SetModule(clientdata
, &swig_module
);
17036 /* Now work on filling in swig_module.types */
17037 #ifdef SWIGRUNTIME_DEBUG
17038 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
17040 for (i
= 0; i
< swig_module
.size
; ++i
) {
17041 swig_type_info
*type
= 0;
17042 swig_type_info
*ret
;
17043 swig_cast_info
*cast
;
17045 #ifdef SWIGRUNTIME_DEBUG
17046 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
17049 /* if there is another module already loaded */
17050 if (swig_module
.next
!= &swig_module
) {
17051 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
17054 /* Overwrite clientdata field */
17055 #ifdef SWIGRUNTIME_DEBUG
17056 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
17058 if (swig_module
.type_initial
[i
]->clientdata
) {
17059 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
17060 #ifdef SWIGRUNTIME_DEBUG
17061 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
17065 type
= swig_module
.type_initial
[i
];
17068 /* Insert casting types */
17069 cast
= swig_module
.cast_initial
[i
];
17070 while (cast
->type
) {
17071 /* Don't need to add information already in the list */
17073 #ifdef SWIGRUNTIME_DEBUG
17074 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
17076 if (swig_module
.next
!= &swig_module
) {
17077 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
17078 #ifdef SWIGRUNTIME_DEBUG
17079 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
17083 if (type
== swig_module
.type_initial
[i
]) {
17084 #ifdef SWIGRUNTIME_DEBUG
17085 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
17090 /* Check for casting already in the list */
17091 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
17092 #ifdef SWIGRUNTIME_DEBUG
17093 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
17095 if (!ocast
) ret
= 0;
17100 #ifdef SWIGRUNTIME_DEBUG
17101 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
17104 type
->cast
->prev
= cast
;
17105 cast
->next
= type
->cast
;
17111 /* Set entry in modules->types array equal to the type */
17112 swig_module
.types
[i
] = type
;
17114 swig_module
.types
[i
] = 0;
17116 #ifdef SWIGRUNTIME_DEBUG
17117 printf("**** SWIG_InitializeModule: Cast List ******\n");
17118 for (i
= 0; i
< swig_module
.size
; ++i
) {
17120 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
17121 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
17122 while (cast
->type
) {
17123 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
17127 printf("---- Total casts: %d\n",j
);
17129 printf("**** SWIG_InitializeModule: Cast List ******\n");
17133 /* This function will propagate the clientdata field of type to
17134 * any new swig_type_info structures that have been added into the list
17135 * of equivalent types. It is like calling
17136 * SWIG_TypeClientData(type, clientdata) a second time.
17139 SWIG_PropagateClientData(void) {
17141 swig_cast_info
*equiv
;
17142 static int init_run
= 0;
17144 if (init_run
) return;
17147 for (i
= 0; i
< swig_module
.size
; i
++) {
17148 if (swig_module
.types
[i
]->clientdata
) {
17149 equiv
= swig_module
.types
[i
]->cast
;
17151 if (!equiv
->converter
) {
17152 if (equiv
->type
&& !equiv
->type
->clientdata
)
17153 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
17155 equiv
= equiv
->next
;
17175 /* Python-specific SWIG API */
17176 #define SWIG_newvarlink() SWIG_Python_newvarlink()
17177 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
17178 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
17180 /* -----------------------------------------------------------------------------
17181 * global variable support code.
17182 * ----------------------------------------------------------------------------- */
17184 typedef struct swig_globalvar
{
17185 char *name
; /* Name of global variable */
17186 PyObject
*(*get_attr
)(void); /* Return the current value */
17187 int (*set_attr
)(PyObject
*); /* Set the value */
17188 struct swig_globalvar
*next
;
17191 typedef struct swig_varlinkobject
{
17193 swig_globalvar
*vars
;
17194 } swig_varlinkobject
;
17196 SWIGINTERN PyObject
*
17197 swig_varlink_repr(swig_varlinkobject
*SWIGUNUSEDPARM(v
)) {
17198 return PyString_FromString("<Swig global variables>");
17201 SWIGINTERN PyObject
*
17202 swig_varlink_str(swig_varlinkobject
*v
) {
17203 PyObject
*str
= PyString_FromString("(");
17204 swig_globalvar
*var
;
17205 for (var
= v
->vars
; var
; var
=var
->next
) {
17206 PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
));
17207 if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", "));
17209 PyString_ConcatAndDel(&str
,PyString_FromString(")"));
17214 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) {
17215 PyObject
*str
= swig_varlink_str(v
);
17216 fprintf(fp
,"Swig global variables ");
17217 fprintf(fp
,"%s\n", PyString_AsString(str
));
17223 swig_varlink_dealloc(swig_varlinkobject
*v
) {
17224 swig_globalvar
*var
= v
->vars
;
17226 swig_globalvar
*n
= var
->next
;
17233 SWIGINTERN PyObject
*
17234 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
17235 PyObject
*res
= NULL
;
17236 swig_globalvar
*var
= v
->vars
;
17238 if (strcmp(var
->name
,n
) == 0) {
17239 res
= (*var
->get_attr
)();
17244 if (res
== NULL
&& !PyErr_Occurred()) {
17245 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
17251 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
17253 swig_globalvar
*var
= v
->vars
;
17255 if (strcmp(var
->name
,n
) == 0) {
17256 res
= (*var
->set_attr
)(p
);
17261 if (res
== 1 && !PyErr_Occurred()) {
17262 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
17267 SWIGINTERN PyTypeObject
*
17268 swig_varlink_type(void) {
17269 static char varlink__doc__
[] = "Swig var link object";
17270 static PyTypeObject varlink_type
;
17271 static int type_init
= 0;
17273 const PyTypeObject tmp
17275 PyObject_HEAD_INIT(NULL
)
17276 0, /* Number of items in variable part (ob_size) */
17277 (char *)"swigvarlink", /* Type name (tp_name) */
17278 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
17279 0, /* Itemsize (tp_itemsize) */
17280 (destructor
) swig_varlink_dealloc
, /* Deallocator (tp_dealloc) */
17281 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
17282 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
17283 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
17284 0, /* tp_compare */
17285 (reprfunc
) swig_varlink_repr
, /* tp_repr */
17286 0, /* tp_as_number */
17287 0, /* tp_as_sequence */
17288 0, /* tp_as_mapping */
17291 (reprfunc
)swig_varlink_str
, /* tp_str */
17292 0, /* tp_getattro */
17293 0, /* tp_setattro */
17294 0, /* tp_as_buffer */
17296 varlink__doc__
, /* tp_doc */
17297 0, /* tp_traverse */
17299 0, /* tp_richcompare */
17300 0, /* tp_weaklistoffset */
17301 #if PY_VERSION_HEX >= 0x02020000
17302 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
17304 #if PY_VERSION_HEX >= 0x02030000
17307 #ifdef COUNT_ALLOCS
17308 0,0,0,0 /* tp_alloc -> tp_next */
17311 varlink_type
= tmp
;
17312 varlink_type
.ob_type
= &PyType_Type
;
17315 return &varlink_type
;
17318 /* Create a variable linking object for use later */
17319 SWIGINTERN PyObject
*
17320 SWIG_Python_newvarlink(void) {
17321 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
17325 return ((PyObject
*) result
);
17329 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
17330 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
17331 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
17333 size_t size
= strlen(name
)+1;
17334 gv
->name
= (char *)malloc(size
);
17336 strncpy(gv
->name
,name
,size
);
17337 gv
->get_attr
= get_attr
;
17338 gv
->set_attr
= set_attr
;
17339 gv
->next
= v
->vars
;
17345 SWIGINTERN PyObject
*
17347 static PyObject
*_SWIG_globals
= 0;
17348 if (!_SWIG_globals
) _SWIG_globals
= SWIG_newvarlink();
17349 return _SWIG_globals
;
17352 /* -----------------------------------------------------------------------------
17353 * constants/methods manipulation
17354 * ----------------------------------------------------------------------------- */
17356 /* Install Constants */
17358 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
17361 for (i
= 0; constants
[i
].type
; ++i
) {
17362 switch(constants
[i
].type
) {
17363 case SWIG_PY_POINTER
:
17364 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
17366 case SWIG_PY_BINARY
:
17367 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
17374 PyDict_SetItemString(d
, constants
[i
].name
, obj
);
17380 /* -----------------------------------------------------------------------------*/
17381 /* Fix SwigMethods to carry the callback ptrs when needed */
17382 /* -----------------------------------------------------------------------------*/
17385 SWIG_Python_FixMethods(PyMethodDef
*methods
,
17386 swig_const_info
*const_table
,
17387 swig_type_info
**types
,
17388 swig_type_info
**types_initial
) {
17390 for (i
= 0; methods
[i
].ml_name
; ++i
) {
17391 const char *c
= methods
[i
].ml_doc
;
17392 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
17394 swig_const_info
*ci
= 0;
17395 const char *name
= c
+ 10;
17396 for (j
= 0; const_table
[j
].type
; ++j
) {
17397 if (strncmp(const_table
[j
].name
, name
,
17398 strlen(const_table
[j
].name
)) == 0) {
17399 ci
= &(const_table
[j
]);
17404 size_t shift
= (ci
->ptype
) - types
;
17405 swig_type_info
*ty
= types_initial
[shift
];
17406 size_t ldoc
= (c
- methods
[i
].ml_doc
);
17407 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
17408 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
17411 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
17413 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
17415 strncpy(buff
, "swig_ptr: ", 10);
17417 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
17418 methods
[i
].ml_doc
= ndoc
;
17430 /* -----------------------------------------------------------------------------*
17431 * Partial Init method
17432 * -----------------------------------------------------------------------------*/
17437 SWIGEXPORT
void SWIG_init(void) {
17440 /* Fix SwigMethods to carry the callback ptrs when needed */
17441 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
17443 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
17444 d
= PyModule_GetDict(m
);
17446 SWIG_InitializeModule(0);
17447 SWIG_InstallConstants(d
,swig_const_table
);
17450 SWIG_Python_SetConstant(d
, "USE_AUI",SWIG_From_int(static_cast< int >(1)));
17451 SWIG_Python_SetConstant(d
, "AUI_DOCK_NONE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_NONE
)));
17452 SWIG_Python_SetConstant(d
, "AUI_DOCK_TOP",SWIG_From_int(static_cast< int >(wxAUI_DOCK_TOP
)));
17453 SWIG_Python_SetConstant(d
, "AUI_DOCK_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_RIGHT
)));
17454 SWIG_Python_SetConstant(d
, "AUI_DOCK_BOTTOM",SWIG_From_int(static_cast< int >(wxAUI_DOCK_BOTTOM
)));
17455 SWIG_Python_SetConstant(d
, "AUI_DOCK_LEFT",SWIG_From_int(static_cast< int >(wxAUI_DOCK_LEFT
)));
17456 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTER",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTER
)));
17457 SWIG_Python_SetConstant(d
, "AUI_DOCK_CENTRE",SWIG_From_int(static_cast< int >(wxAUI_DOCK_CENTRE
)));
17458 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_FLOATING",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_FLOATING
)));
17459 SWIG_Python_SetConstant(d
, "AUI_MGR_ALLOW_ACTIVE_PANE",SWIG_From_int(static_cast< int >(wxAUI_MGR_ALLOW_ACTIVE_PANE
)));
17460 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_DRAG",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_DRAG
)));
17461 SWIG_Python_SetConstant(d
, "AUI_MGR_TRANSPARENT_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_TRANSPARENT_HINT
)));
17462 SWIG_Python_SetConstant(d
, "AUI_MGR_VENETIAN_BLINDS_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_VENETIAN_BLINDS_HINT
)));
17463 SWIG_Python_SetConstant(d
, "AUI_MGR_RECTANGLE_HINT",SWIG_From_int(static_cast< int >(wxAUI_MGR_RECTANGLE_HINT
)));
17464 SWIG_Python_SetConstant(d
, "AUI_MGR_HINT_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_HINT_FADE
)));
17465 SWIG_Python_SetConstant(d
, "AUI_MGR_NO_VENETIAN_BLINDS_FADE",SWIG_From_int(static_cast< int >(wxAUI_MGR_NO_VENETIAN_BLINDS_FADE
)));
17466 SWIG_Python_SetConstant(d
, "AUI_MGR_DEFAULT",SWIG_From_int(static_cast< int >(wxAUI_MGR_DEFAULT
)));
17467 SWIG_Python_SetConstant(d
, "AUI_ART_SASH_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_SASH_SIZE
)));
17468 SWIG_Python_SetConstant(d
, "AUI_ART_CAPTION_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_CAPTION_SIZE
)));
17469 SWIG_Python_SetConstant(d
, "AUI_ART_GRIPPER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_GRIPPER_SIZE
)));
17470 SWIG_Python_SetConstant(d
, "AUI_ART_PANE_BORDER_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_PANE_BORDER_SIZE
)));
17471 SWIG_Python_SetConstant(d
, "AUI_ART_PANE_BUTTON_SIZE",SWIG_From_int(static_cast< int >(wxAUI_ART_PANE_BUTTON_SIZE
)));
17472 SWIG_Python_SetConstant(d
, "AUI_ART_BACKGROUND_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_BACKGROUND_COLOUR
)));
17473 SWIG_Python_SetConstant(d
, "AUI_ART_SASH_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_SASH_COLOUR
)));
17474 SWIG_Python_SetConstant(d
, "AUI_ART_ACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_ACTIVE_CAPTION_COLOUR
)));
17475 SWIG_Python_SetConstant(d
, "AUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR
)));
17476 SWIG_Python_SetConstant(d
, "AUI_ART_INACTIVE_CAPTION_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_INACTIVE_CAPTION_COLOUR
)));
17477 SWIG_Python_SetConstant(d
, "AUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR
)));
17478 SWIG_Python_SetConstant(d
, "AUI_ART_ACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_ACTIVE_CAPTION_TEXT_COLOUR
)));
17479 SWIG_Python_SetConstant(d
, "AUI_ART_INACTIVE_CAPTION_TEXT_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_INACTIVE_CAPTION_TEXT_COLOUR
)));
17480 SWIG_Python_SetConstant(d
, "AUI_ART_BORDER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_BORDER_COLOUR
)));
17481 SWIG_Python_SetConstant(d
, "AUI_ART_GRIPPER_COLOUR",SWIG_From_int(static_cast< int >(wxAUI_ART_GRIPPER_COLOUR
)));
17482 SWIG_Python_SetConstant(d
, "AUI_ART_CAPTION_FONT",SWIG_From_int(static_cast< int >(wxAUI_ART_CAPTION_FONT
)));
17483 SWIG_Python_SetConstant(d
, "AUI_ART_GRADIENT_TYPE",SWIG_From_int(static_cast< int >(wxAUI_ART_GRADIENT_TYPE
)));
17484 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_NONE",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_NONE
)));
17485 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_VERTICAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_VERTICAL
)));
17486 SWIG_Python_SetConstant(d
, "AUI_GRADIENT_HORIZONTAL",SWIG_From_int(static_cast< int >(wxAUI_GRADIENT_HORIZONTAL
)));
17487 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_NORMAL",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_NORMAL
)));
17488 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_HOVER",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_HOVER
)));
17489 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_PRESSED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_PRESSED
)));
17490 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_DISABLED",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_DISABLED
)));
17491 SWIG_Python_SetConstant(d
, "AUI_BUTTON_STATE_HIDDEN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_STATE_HIDDEN
)));
17492 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CLOSE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CLOSE
)));
17493 SWIG_Python_SetConstant(d
, "AUI_BUTTON_MAXIMIZE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_MAXIMIZE
)));
17494 SWIG_Python_SetConstant(d
, "AUI_BUTTON_MINIMIZE",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_MINIMIZE
)));
17495 SWIG_Python_SetConstant(d
, "AUI_BUTTON_PIN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_PIN
)));
17496 SWIG_Python_SetConstant(d
, "AUI_BUTTON_OPTIONS",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_OPTIONS
)));
17497 SWIG_Python_SetConstant(d
, "AUI_BUTTON_LEFT",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_LEFT
)));
17498 SWIG_Python_SetConstant(d
, "AUI_BUTTON_RIGHT",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_RIGHT
)));
17499 SWIG_Python_SetConstant(d
, "AUI_BUTTON_UP",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_UP
)));
17500 SWIG_Python_SetConstant(d
, "AUI_BUTTON_DOWN",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_DOWN
)));
17501 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM1",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM1
)));
17502 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM2",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM2
)));
17503 SWIG_Python_SetConstant(d
, "AUI_BUTTON_CUSTOM3",SWIG_From_int(static_cast< int >(wxAUI_BUTTON_CUSTOM3
)));
17504 SWIG_Python_SetConstant(d
, "AUI_INSERT_PANE",SWIG_From_int(static_cast< int >(wxAUI_INSERT_PANE
)));
17505 SWIG_Python_SetConstant(d
, "AUI_INSERT_ROW",SWIG_From_int(static_cast< int >(wxAUI_INSERT_ROW
)));
17506 SWIG_Python_SetConstant(d
, "AUI_INSERT_DOCK",SWIG_From_int(static_cast< int >(wxAUI_INSERT_DOCK
)));
17507 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals());
17508 SWIG_addvarlink(SWIG_globals(),(char*)"NullDockInfo",NullDockInfo_get
, NullDockInfo_set
);
17509 SWIG_addvarlink(SWIG_globals(),(char*)"NullPaneInfo",NullPaneInfo_get
, NullPaneInfo_set
);
17510 SWIG_Python_SetConstant(d
, "PaneInfo_optionFloating",SWIG_From_int(static_cast< int >(wxPaneInfo::optionFloating
)));
17511 SWIG_Python_SetConstant(d
, "PaneInfo_optionHidden",SWIG_From_int(static_cast< int >(wxPaneInfo::optionHidden
)));
17512 SWIG_Python_SetConstant(d
, "PaneInfo_optionLeftDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionLeftDockable
)));
17513 SWIG_Python_SetConstant(d
, "PaneInfo_optionRightDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionRightDockable
)));
17514 SWIG_Python_SetConstant(d
, "PaneInfo_optionTopDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionTopDockable
)));
17515 SWIG_Python_SetConstant(d
, "PaneInfo_optionBottomDockable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionBottomDockable
)));
17516 SWIG_Python_SetConstant(d
, "PaneInfo_optionFloatable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionFloatable
)));
17517 SWIG_Python_SetConstant(d
, "PaneInfo_optionMovable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionMovable
)));
17518 SWIG_Python_SetConstant(d
, "PaneInfo_optionResizable",SWIG_From_int(static_cast< int >(wxPaneInfo::optionResizable
)));
17519 SWIG_Python_SetConstant(d
, "PaneInfo_optionPaneBorder",SWIG_From_int(static_cast< int >(wxPaneInfo::optionPaneBorder
)));
17520 SWIG_Python_SetConstant(d
, "PaneInfo_optionCaption",SWIG_From_int(static_cast< int >(wxPaneInfo::optionCaption
)));
17521 SWIG_Python_SetConstant(d
, "PaneInfo_optionGripper",SWIG_From_int(static_cast< int >(wxPaneInfo::optionGripper
)));
17522 SWIG_Python_SetConstant(d
, "PaneInfo_optionDestroyOnClose",SWIG_From_int(static_cast< int >(wxPaneInfo::optionDestroyOnClose
)));
17523 SWIG_Python_SetConstant(d
, "PaneInfo_optionToolbar",SWIG_From_int(static_cast< int >(wxPaneInfo::optionToolbar
)));
17524 SWIG_Python_SetConstant(d
, "PaneInfo_optionActive",SWIG_From_int(static_cast< int >(wxPaneInfo::optionActive
)));
17525 SWIG_Python_SetConstant(d
, "PaneInfo_optionGripperTop",SWIG_From_int(static_cast< int >(wxPaneInfo::optionGripperTop
)));
17526 SWIG_Python_SetConstant(d
, "PaneInfo_buttonClose",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonClose
)));
17527 SWIG_Python_SetConstant(d
, "PaneInfo_buttonMaximize",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonMaximize
)));
17528 SWIG_Python_SetConstant(d
, "PaneInfo_buttonMinimize",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonMinimize
)));
17529 SWIG_Python_SetConstant(d
, "PaneInfo_buttonPin",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonPin
)));
17530 SWIG_Python_SetConstant(d
, "PaneInfo_buttonCustom1",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonCustom1
)));
17531 SWIG_Python_SetConstant(d
, "PaneInfo_buttonCustom2",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonCustom2
)));
17532 SWIG_Python_SetConstant(d
, "PaneInfo_buttonCustom3",SWIG_From_int(static_cast< int >(wxPaneInfo::buttonCustom3
)));
17533 SWIG_Python_SetConstant(d
, "PaneInfo_actionPane",SWIG_From_int(static_cast< int >(wxPaneInfo::actionPane
)));
17534 SWIG_Python_SetConstant(d
, "DockUIPart_typeCaption",SWIG_From_int(static_cast< int >(wxDockUIPart::typeCaption
)));
17535 SWIG_Python_SetConstant(d
, "DockUIPart_typeGripper",SWIG_From_int(static_cast< int >(wxDockUIPart::typeGripper
)));
17536 SWIG_Python_SetConstant(d
, "DockUIPart_typeDock",SWIG_From_int(static_cast< int >(wxDockUIPart::typeDock
)));
17537 SWIG_Python_SetConstant(d
, "DockUIPart_typeDockSizer",SWIG_From_int(static_cast< int >(wxDockUIPart::typeDockSizer
)));
17538 SWIG_Python_SetConstant(d
, "DockUIPart_typePane",SWIG_From_int(static_cast< int >(wxDockUIPart::typePane
)));
17539 SWIG_Python_SetConstant(d
, "DockUIPart_typePaneSizer",SWIG_From_int(static_cast< int >(wxDockUIPart::typePaneSizer
)));
17540 SWIG_Python_SetConstant(d
, "DockUIPart_typeBackground",SWIG_From_int(static_cast< int >(wxDockUIPart::typeBackground
)));
17541 SWIG_Python_SetConstant(d
, "DockUIPart_typePaneBorder",SWIG_From_int(static_cast< int >(wxDockUIPart::typePaneBorder
)));
17542 SWIG_Python_SetConstant(d
, "DockUIPart_typePaneButton",SWIG_From_int(static_cast< int >(wxDockUIPart::typePaneButton
)));
17543 PyDict_SetItemString(d
, "wxEVT_AUI_PANEBUTTON", PyInt_FromLong(wxEVT_AUI_PANEBUTTON
));
17544 PyDict_SetItemString(d
, "wxEVT_AUI_PANECLOSE", PyInt_FromLong(wxEVT_AUI_PANECLOSE
));
17545 PyDict_SetItemString(d
, "wxEVT_AUI_RENDER", PyInt_FromLong(wxEVT_AUI_RENDER
));
17546 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED
));
17547 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING
));
17548 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_BUTTON", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_BUTTON
));
17549 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG
));
17550 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_END_DRAG", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG
));
17551 PyDict_SetItemString(d
, "wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION", PyInt_FromLong(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION
));